From e8d1fa989bad6ab50a743661e896ba62e72b1a4f Mon Sep 17 00:00:00 2001 From: David Calhoun <github@davidcalhoun.me> Date: Tue, 4 Mar 2025 17:07:49 -0500 Subject: [PATCH 1/5] refactor: Avoid private useBlockEditorSettings The `useBlockEditorSettings` function is not exported, even as a private API. Using it is brittle, at best, and the approach is not possible when sourcing WordPress package scripts from remote sites. These changes still patch the `@wordpress/block-editor` package to (1) allow the "quick inserter" to open the primary inserter and (2) enable the Media tab in the inserter. Long-term, we should remove these patches and replace them with changes to core. --- patches/@wordpress+block-editor+14.11.0.patch | 13 ++++ patches/@wordpress+editor+14.16.0.patch | 20 ------ patches/README.md | 7 +- src/components/editor/index.jsx | 69 +++++++++---------- src/components/editor/use-gbkit-settings.js | 35 +--------- 5 files changed, 52 insertions(+), 92 deletions(-) delete mode 100644 patches/@wordpress+editor+14.16.0.patch diff --git a/patches/@wordpress+block-editor+14.11.0.patch b/patches/@wordpress+block-editor+14.11.0.patch index 08e70cc0..114ca0f3 100644 --- a/patches/@wordpress+block-editor+14.11.0.patch +++ b/patches/@wordpress+block-editor+14.11.0.patch @@ -10,3 +10,16 @@ index aa2e9a5..f2d8481 100644 expandOnMobile: true, headerTitle: __('Add a block'), renderToggle: this.renderToggle, +diff --git a/node_modules/@wordpress/block-editor/build-module/components/provider/index.js b/node_modules/@wordpress/block-editor/build-module/components/provider/index.js +index e89fa49..0f14ae8 100644 +--- a/node_modules/@wordpress/block-editor/build-module/components/provider/index.js ++++ b/node_modules/@wordpress/block-editor/build-module/components/provider/index.js +@@ -104,7 +104,7 @@ export const ExperimentalBlockEditorProvider = withRegistryProvider(props => { + export const BlockEditorProvider = props => { + return /*#__PURE__*/_jsx(ExperimentalBlockEditorProvider, { + ...props, +- stripExperimentalSettings: true, ++ stripExperimentalSettings: false, + children: props.children + }); + }; diff --git a/patches/@wordpress+editor+14.16.0.patch b/patches/@wordpress+editor+14.16.0.patch deleted file mode 100644 index 500f5ffd..00000000 --- a/patches/@wordpress+editor+14.16.0.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/node_modules/@wordpress/editor/build-module/private-apis.js b/node_modules/@wordpress/editor/build-module/private-apis.js -index c45347e..ab39c50 100644 ---- a/node_modules/@wordpress/editor/build-module/private-apis.js -+++ b/node_modules/@wordpress/editor/build-module/private-apis.js -@@ -9,6 +9,7 @@ import * as interfaceApis from '@wordpress/interface'; - import { lock } from './lock-unlock'; - import { EntitiesSavedStatesExtensible } from './components/entities-saved-states'; - import EditorContentSlotFill from './components/editor-interface/content-slot-fill'; -+import useBlockEditorSettings from './components/provider/use-block-editor-settings'; - import BackButton from './components/header/back-button'; - import Editor from './components/editor'; - import PluginPostExcerpt from './components/post-excerpt/plugin'; -@@ -47,6 +48,7 @@ lock(privateApis, { - registerCoreBlockBindingsSources, - getTemplateInfo, - // This is a temporary private API while we're updating the site editor to use EditorProvider. -+ useBlockEditorSettings, - interfaceStore, - ...remainingInterfaceApis - }); diff --git a/patches/README.md b/patches/README.md index 77f14a1b..64130f63 100644 --- a/patches/README.md +++ b/patches/README.md @@ -8,8 +8,5 @@ Existing patches should be described and justified here. ### `@wordpress/block-editor` -Expose an `open` prop on the `Inserter` component, allowing toggling the inserter visibility via the quick inserter's "Browse all" button. - -### `@wordpress/editor` - -Revert https://github.com/WordPress/gutenberg/pull/64892 and export the private `useBlockEditorSettings` API as it is required for GutenbergKit's use of the block editor settings. This can be removed once GutenbergKit resides in the Gutenberg repository, where we can access all the necessary APIs—both public and private. +- Expose an `open` prop on the `Inserter` component, allowing toggling the inserter visibility via the quick inserter's "Browse all" button. +- Disable `stripExperimentalSettings` in the `BlockEditorProvider` component so that the Patterns and Media inserter tabs function. diff --git a/src/components/editor/index.jsx b/src/components/editor/index.jsx index 9ca39ed3..7e4dc967 100644 --- a/src/components/editor/index.jsx +++ b/src/components/editor/index.jsx @@ -1,10 +1,9 @@ /** * WordPress dependencies */ -import { useEntityBlockEditor } from '@wordpress/core-data'; -import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor'; +import { store as coreStore } from '@wordpress/core-data'; import { useSelect } from '@wordpress/data'; -import { store as editorStore } from '@wordpress/editor'; +import { store as editorStore, EditorProvider } from '@wordpress/editor'; import { useRef } from '@wordpress/element'; /** @@ -18,17 +17,12 @@ import { useHostExceptionLogging } from './use-host-exception-logging'; import { useEditorSetup } from './use-editor-setup'; import { useMediaUpload } from './use-media-upload'; import { useGBKitSettings } from './use-gbkit-settings'; -import { unlock } from '../../lock-unlock'; import TextEditor from '../text-editor'; /** * @typedef {import('../utils/bridge').Post} Post */ -const { ExperimentalBlockEditorProvider: BlockEditorProvider } = unlock( - blockEditorPrivateApis -); - /** * Entry component rendering the editor and surrounding UI. * @@ -47,31 +41,38 @@ export default function Editor( { post, children, hideTitle } ) { useEditorSetup( post ); useMediaUpload(); - const [ postBlocks, onInput, onChange ] = useEntityBlockEditor( - 'postType', - post.type, - { id: post.id } - ); - const settings = useGBKitSettings( post ); - const { isReady, mode, isRichEditingEnabled } = useSelect( ( select ) => { - const { __unstableIsEditorReady, getEditorSettings, getEditorMode } = - select( editorStore ); - const editorSettings = getEditorSettings(); + const { isReady, mode, isRichEditingEnabled, currentPost } = useSelect( + ( select ) => { + const { + __unstableIsEditorReady, + getEditorSettings, + getEditorMode, + } = select( editorStore ); + const editorSettings = getEditorSettings(); + const { getEntityRecord } = select( coreStore ); + const _currentPost = getEntityRecord( + 'postType', + post.type, + post.id + ); - return { - // TODO(Perf): The `__unstableIsEditorReady` selector is insufficient as - // it does not account for post type loading, which is first referenced - // within the post title component render. This results in the post title - // popping in after the editor mounted. The web editor does not experience - // this issue because the post type is loaded for "mode" selection before - // the editor is mounted. - isReady: __unstableIsEditorReady(), - mode: getEditorMode(), - isRichEditingEnabled: editorSettings.richEditingEnabled, - }; - }, [] ); + return { + // TODO(Perf): The `__unstableIsEditorReady` selector is insufficient as + // it does not account for post type loading, which is first referenced + // within the post title component render. This results in the post title + // popping in after the editor mounted. The web editor does not experience + // this issue because the post type is loaded for "mode" selection before + // the editor is mounted. + isReady: __unstableIsEditorReady(), + mode: getEditorMode(), + isRichEditingEnabled: editorSettings.richEditingEnabled, + currentPost: _currentPost, + }; + }, + [ post.id, post.type ] + ); if ( ! isReady ) { return null; @@ -79,10 +80,8 @@ export default function Editor( { post, children, hideTitle } ) { return ( <div className="gutenberg-kit-editor" ref={ editorRef }> - <BlockEditorProvider - value={ postBlocks } - onInput={ onInput } - onChange={ onChange } + <EditorProvider + post={ currentPost } settings={ settings } useSubRegistry={ false } > @@ -100,7 +99,7 @@ export default function Editor( { post, children, hideTitle } ) { ) } { children } - </BlockEditorProvider> + </EditorProvider> </div> ); } diff --git a/src/components/editor/use-gbkit-settings.js b/src/components/editor/use-gbkit-settings.js index 51078a77..b08c91a1 100644 --- a/src/components/editor/use-gbkit-settings.js +++ b/src/components/editor/use-gbkit-settings.js @@ -4,26 +4,10 @@ import { useSelect } from '@wordpress/data'; import { useMemo } from '@wordpress/element'; import { store as coreStore } from '@wordpress/core-data'; -import { - store as editorStore, - mediaUpload, - privateApis as editorPrivateApis, -} from '@wordpress/editor'; - -/** - * Internal dependencies - */ -import { unlock } from '../../lock-unlock'; - -const { useBlockEditorSettings } = unlock( editorPrivateApis ); +import { store as editorStore, mediaUpload } from '@wordpress/editor'; export function useGBKitSettings( post ) { - const { - blockPatterns, - editorSettings, - hasUploadPermissions, - reusableBlocks, - } = useSelect( + const { blockPatterns, hasUploadPermissions, reusableBlocks } = useSelect( ( select ) => { const { getEntityRecord, getEntityRecords } = select( coreStore ); const { getEditorSettings } = select( editorStore ); @@ -39,27 +23,14 @@ export function useGBKitSettings( post ) { [ post.author ] ); - const blockEditorSettings = useBlockEditorSettings( - editorSettings, - post.type, - post.id, - 'visual' - ); - const settings = useMemo( () => ( { - ...blockEditorSettings, hasFixedToolbar: true, mediaUpload: hasUploadPermissions ? mediaUpload : undefined, __experimentalReusableBlocks: reusableBlocks, __experimentalBlockPatterns: blockPatterns, } ), - [ - blockEditorSettings, - blockPatterns, - hasUploadPermissions, - reusableBlocks, - ] + [ blockPatterns, hasUploadPermissions, reusableBlocks ] ); return settings; From f7bea62112c1ad2c843daf443b3593583e300201 Mon Sep 17 00:00:00 2001 From: David Calhoun <github@davidcalhoun.me> Date: Wed, 5 Mar 2025 08:33:05 -0500 Subject: [PATCH 2/5] fix: Avoid exception from incomplete post data When a post object is unavailable, we must ensure the raw title and content fields have fallback values. Otherwise, the host bridge logic throws while referencing values on an undefined object. --- src/utils/bridge.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/utils/bridge.js b/src/utils/bridge.js index 30bd6e6f..27e1985b 100644 --- a/src/utils/bridge.js +++ b/src/utils/bridge.js @@ -165,18 +165,21 @@ export function getPost() { if ( post ) { return { id: post.id, + type: post.type || 'post', + status: post.status, title: { raw: decodeURIComponent( post.title ) }, content: { raw: decodeURIComponent( post.content ) }, - type: post.type || 'post', }; } // Since we don't use the auto-save functionality, draft posts need to have an ID. // We assign a temporary ID of -1. return { + id: -1, type: 'post', status: 'auto-draft', - id: -1, + title: { raw: '' }, + content: { raw: '' }, }; } From e74ad308373d073b8f5f2f87c05df89593431949 Mon Sep 17 00:00:00 2001 From: David Calhoun <github@davidcalhoun.me> Date: Wed, 5 Mar 2025 08:35:34 -0500 Subject: [PATCH 3/5] fix: Enforce fixed toolbar Now that we rely upon `EditorProvider` over `BlockEditorProvider`, we can no longer configure the former with the `hasFixedToolbar` prop. Instead, we must rely upon the preference store configuration. --- src/index.jsx | 6 +++++- src/remote.jsx | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/index.jsx b/src/index.jsx index 6839a597..26cd832c 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -39,7 +39,11 @@ function initializeEditor() { dispatch( editorStore ).updateEditorSettings( editorSettings ); } ); - dispatch( preferencesStore ).setDefaults( 'core/edit-post', { + const preferenceDispatch = dispatch( preferencesStore ); + preferenceDispatch.setDefaults( 'core', { + fixedToolbar: true, + } ); + preferenceDispatch.setDefaults( 'core/edit-post', { themeStyles, } ); diff --git a/src/remote.jsx b/src/remote.jsx index cc07db9d..7afbf86a 100644 --- a/src/remote.jsx +++ b/src/remote.jsx @@ -45,7 +45,11 @@ async function initalizeRemoteEditor() { dispatch( editorStore ).updateEditorSettings( editorSettings ); } ); - dispatch( preferencesStore ).setDefaults( 'core/edit-post', { + const preferenceDispatch = dispatch( preferencesStore ); + preferenceDispatch.setDefaults( 'core', { + fixedToolbar: true, + } ); + preferenceDispatch.setDefaults( 'core/edit-post', { themeStyles, } ); From a8fd55f482378d66fc192b4ed2243ad820372ac0 Mon Sep 17 00:00:00 2001 From: David Calhoun <github@davidcalhoun.me> Date: Wed, 5 Mar 2025 14:49:16 -0500 Subject: [PATCH 4/5] refactor: Remove now redundant `useGBKSettings` We now render `EditorProvider` rather than `BlockEditorProvider`, so we no longer configure the latter with explicit settings. We also do not have explicit settings we need to pass to the former, so we pass an empty object to avoid exceptions from referencing values on an undefined object. --- src/components/editor/index.jsx | 5 ++- src/components/editor/use-gbkit-settings.js | 37 --------------------- 2 files changed, 2 insertions(+), 40 deletions(-) delete mode 100644 src/components/editor/use-gbkit-settings.js diff --git a/src/components/editor/index.jsx b/src/components/editor/index.jsx index 7e4dc967..4f04b13b 100644 --- a/src/components/editor/index.jsx +++ b/src/components/editor/index.jsx @@ -16,7 +16,6 @@ import { useHostBridge } from './use-host-bridge'; import { useHostExceptionLogging } from './use-host-exception-logging'; import { useEditorSetup } from './use-editor-setup'; import { useMediaUpload } from './use-media-upload'; -import { useGBKitSettings } from './use-gbkit-settings'; import TextEditor from '../text-editor'; /** @@ -41,8 +40,6 @@ export default function Editor( { post, children, hideTitle } ) { useEditorSetup( post ); useMediaUpload(); - const settings = useGBKitSettings( post ); - const { isReady, mode, isRichEditingEnabled, currentPost } = useSelect( ( select ) => { const { @@ -103,3 +100,5 @@ export default function Editor( { post, children, hideTitle } ) { </div> ); } + +const settings = {}; diff --git a/src/components/editor/use-gbkit-settings.js b/src/components/editor/use-gbkit-settings.js deleted file mode 100644 index b08c91a1..00000000 --- a/src/components/editor/use-gbkit-settings.js +++ /dev/null @@ -1,37 +0,0 @@ -/** - * WordPress dependencies - */ -import { useSelect } from '@wordpress/data'; -import { useMemo } from '@wordpress/element'; -import { store as coreStore } from '@wordpress/core-data'; -import { store as editorStore, mediaUpload } from '@wordpress/editor'; - -export function useGBKitSettings( post ) { - const { blockPatterns, hasUploadPermissions, reusableBlocks } = useSelect( - ( select ) => { - const { getEntityRecord, getEntityRecords } = select( coreStore ); - const { getEditorSettings } = select( editorStore ); - const user = getEntityRecord( 'root', 'user', post.author ); - - return { - editorSettings: getEditorSettings(), - blockPatterns: select( coreStore ).getBlockPatterns(), - hasUploadPermissions: user?.capabilities?.upload_files ?? true, - reusableBlocks: getEntityRecords( 'postType', 'wp_block' ), - }; - }, - [ post.author ] - ); - - const settings = useMemo( - () => ( { - hasFixedToolbar: true, - mediaUpload: hasUploadPermissions ? mediaUpload : undefined, - __experimentalReusableBlocks: reusableBlocks, - __experimentalBlockPatterns: blockPatterns, - } ), - [ blockPatterns, hasUploadPermissions, reusableBlocks ] - ); - - return settings; -} From 7e1a6aab7c4b337bd01f65a1bc9652ad199f3b2a Mon Sep 17 00:00:00 2001 From: David Calhoun <github@davidcalhoun.me> Date: Wed, 5 Mar 2025 17:15:09 -0500 Subject: [PATCH 5/5] task: Capture build output --- .../{index-B5TqVEgG.js => index-BMmsRBi8.js} | 210 +++++++++--------- .../Gutenberg/assets/index-BzYJLdTZ.js | 4 + .../Gutenberg/assets/index-D84i1b9O.js | 4 - .../Gutenberg/assets/remote-CSkotQ-G.js | 3 - .../Gutenberg/assets/remote-DPWJk5ym.js | 3 + ios/Sources/GutenbergKit/Gutenberg/index.html | 2 +- .../GutenbergKit/Gutenberg/remote.html | 2 +- 7 files changed, 114 insertions(+), 114 deletions(-) rename ios/Sources/GutenbergKit/Gutenberg/assets/{index-B5TqVEgG.js => index-BMmsRBi8.js} (81%) create mode 100644 ios/Sources/GutenbergKit/Gutenberg/assets/index-BzYJLdTZ.js delete mode 100644 ios/Sources/GutenbergKit/Gutenberg/assets/index-D84i1b9O.js delete mode 100644 ios/Sources/GutenbergKit/Gutenberg/assets/remote-CSkotQ-G.js create mode 100644 ios/Sources/GutenbergKit/Gutenberg/assets/remote-DPWJk5ym.js diff --git a/ios/Sources/GutenbergKit/Gutenberg/assets/index-B5TqVEgG.js b/ios/Sources/GutenbergKit/Gutenberg/assets/index-BMmsRBi8.js similarity index 81% rename from ios/Sources/GutenbergKit/Gutenberg/assets/index-B5TqVEgG.js rename to ios/Sources/GutenbergKit/Gutenberg/assets/index-BMmsRBi8.js index 5926c275..2dc5bc15 100644 --- a/ios/Sources/GutenbergKit/Gutenberg/assets/index-B5TqVEgG.js +++ b/ios/Sources/GutenbergKit/Gutenberg/assets/index-BMmsRBi8.js @@ -1,4 +1,4 @@ -var eke=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Pmn=eke((mgn,k4)=>{function tke(e,t){for(var n=0;n<t.length;n++){const o=t[n];if(typeof o!="string"&&!Array.isArray(o)){for(const r in o)if(r!=="default"&&!(r in e)){const s=Object.getOwnPropertyDescriptor(o,r);s&&Object.defineProperty(e,r,s.get?s:{enumerable:!0,get:()=>o[r]})}}}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 r of document.querySelectorAll('link[rel="modulepreload"]'))o(r);new MutationObserver(r=>{for(const s of r)if(s.type==="childList")for(const i of s.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&o(i)}).observe(document,{childList:!0,subtree:!0});function n(r){const s={};return r.integrity&&(s.integrity=r.integrity),r.referrerPolicy&&(s.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?s.credentials="include":r.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function o(r){if(r.ep)return;r.ep=!0;const s=n(r);fetch(r.href,s)}})();var p1=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Zr(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function y5(e){if(e.__esModule)return e;var t=e.default;if(typeof t=="function"){var n=function o(){return this instanceof o?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(o){var r=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(n,o,r.get?r:{enumerable:!0,get:function(){return e[o]}})}),n}var uS={exports:{}},Og={},dS={exports:{}},Vn={};/** +var J_e=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Bmn=J_e((bgn,_4)=>{function eke(e,t){for(var n=0;n<t.length;n++){const o=t[n];if(typeof o!="string"&&!Array.isArray(o)){for(const r in o)if(r!=="default"&&!(r in e)){const s=Object.getOwnPropertyDescriptor(o,r);s&&Object.defineProperty(e,r,s.get?s:{enumerable:!0,get:()=>o[r]})}}}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 r of document.querySelectorAll('link[rel="modulepreload"]'))o(r);new MutationObserver(r=>{for(const s of r)if(s.type==="childList")for(const i of s.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&o(i)}).observe(document,{childList:!0,subtree:!0});function n(r){const s={};return r.integrity&&(s.integrity=r.integrity),r.referrerPolicy&&(s.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?s.credentials="include":r.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function o(r){if(r.ep)return;r.ep=!0;const s=n(r);fetch(r.href,s)}})();var p1=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Zr(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function O5(e){if(e.__esModule)return e;var t=e.default;if(typeof t=="function"){var n=function o(){return this instanceof o?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(o){var r=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(n,o,r.get?r:{enumerable:!0,get:function(){return e[o]}})}),n}var lS={exports:{}},Og={},uS={exports:{}},Vn={};/** * @license React * react.production.min.js * @@ -6,7 +6,7 @@ var eke=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Pmn=eke((mgn * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var GV;function nke(){if(GV)return Vn;GV=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),i=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),l=Symbol.for("react.suspense"),u=Symbol.for("react.memo"),d=Symbol.for("react.lazy"),p=Symbol.iterator;function f(V){return V===null||typeof V!="object"?null:(V=p&&V[p]||V["@@iterator"],typeof V=="function"?V:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h=Object.assign,g={};function z(V,ee,te){this.props=V,this.context=ee,this.refs=g,this.updater=te||b}z.prototype.isReactComponent={},z.prototype.setState=function(V,ee){if(typeof V!="object"&&typeof V!="function"&&V!=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,V,ee,"setState")},z.prototype.forceUpdate=function(V){this.updater.enqueueForceUpdate(this,V,"forceUpdate")};function A(){}A.prototype=z.prototype;function _(V,ee,te){this.props=V,this.context=ee,this.refs=g,this.updater=te||b}var v=_.prototype=new A;v.constructor=_,h(v,z.prototype),v.isPureReactComponent=!0;var M=Array.isArray,y=Object.prototype.hasOwnProperty,k={current:null},S={key:!0,ref:!0,__self:!0,__source:!0};function C(V,ee,te){var J,ue={},ce=null,me=null;if(ee!=null)for(J in ee.ref!==void 0&&(me=ee.ref),ee.key!==void 0&&(ce=""+ee.key),ee)y.call(ee,J)&&!S.hasOwnProperty(J)&&(ue[J]=ee[J]);var de=arguments.length-2;if(de===1)ue.children=te;else if(1<de){for(var Ae=Array(de),ye=0;ye<de;ye++)Ae[ye]=arguments[ye+2];ue.children=Ae}if(V&&V.defaultProps)for(J in de=V.defaultProps,de)ue[J]===void 0&&(ue[J]=de[J]);return{$$typeof:e,type:V,key:ce,ref:me,props:ue,_owner:k.current}}function R(V,ee){return{$$typeof:e,type:V.type,key:ee,ref:V.ref,props:V.props,_owner:V._owner}}function T(V){return typeof V=="object"&&V!==null&&V.$$typeof===e}function E(V){var ee={"=":"=0",":":"=2"};return"$"+V.replace(/[=:]/g,function(te){return ee[te]})}var B=/\/+/g;function N(V,ee){return typeof V=="object"&&V!==null&&V.key!=null?E(""+V.key):ee.toString(36)}function j(V,ee,te,J,ue){var ce=typeof V;(ce==="undefined"||ce==="boolean")&&(V=null);var me=!1;if(V===null)me=!0;else switch(ce){case"string":case"number":me=!0;break;case"object":switch(V.$$typeof){case e:case t:me=!0}}if(me)return me=V,ue=ue(me),V=J===""?"."+N(me,0):J,M(ue)?(te="",V!=null&&(te=V.replace(B,"$&/")+"/"),j(ue,ee,te,"",function(ye){return ye})):ue!=null&&(T(ue)&&(ue=R(ue,te+(!ue.key||me&&me.key===ue.key?"":(""+ue.key).replace(B,"$&/")+"/")+V)),ee.push(ue)),1;if(me=0,J=J===""?".":J+":",M(V))for(var de=0;de<V.length;de++){ce=V[de];var Ae=J+N(ce,de);me+=j(ce,ee,te,Ae,ue)}else if(Ae=f(V),typeof Ae=="function")for(V=Ae.call(V),de=0;!(ce=V.next()).done;)ce=ce.value,Ae=J+N(ce,de++),me+=j(ce,ee,te,Ae,ue);else if(ce==="object")throw ee=String(V),Error("Objects are not valid as a React child (found: "+(ee==="[object Object]"?"object with keys {"+Object.keys(V).join(", ")+"}":ee)+"). If you meant to render a collection of children, use an array instead.");return me}function I(V,ee,te){if(V==null)return V;var J=[],ue=0;return j(V,J,"","",function(ce){return ee.call(te,ce,ue++)}),J}function P(V){if(V._status===-1){var ee=V._result;ee=ee(),ee.then(function(te){(V._status===0||V._status===-1)&&(V._status=1,V._result=te)},function(te){(V._status===0||V._status===-1)&&(V._status=2,V._result=te)}),V._status===-1&&(V._status=0,V._result=ee)}if(V._status===1)return V._result.default;throw V._result}var $={current:null},F={transition:null},X={ReactCurrentDispatcher:$,ReactCurrentBatchConfig:F,ReactCurrentOwner:k};function Z(){throw Error("act(...) is not supported in production builds of React.")}return Vn.Children={map:I,forEach:function(V,ee,te){I(V,function(){ee.apply(this,arguments)},te)},count:function(V){var ee=0;return I(V,function(){ee++}),ee},toArray:function(V){return I(V,function(ee){return ee})||[]},only:function(V){if(!T(V))throw Error("React.Children.only expected to receive a single React element child.");return V}},Vn.Component=z,Vn.Fragment=n,Vn.Profiler=r,Vn.PureComponent=_,Vn.StrictMode=o,Vn.Suspense=l,Vn.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=X,Vn.act=Z,Vn.cloneElement=function(V,ee,te){if(V==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+V+".");var J=h({},V.props),ue=V.key,ce=V.ref,me=V._owner;if(ee!=null){if(ee.ref!==void 0&&(ce=ee.ref,me=k.current),ee.key!==void 0&&(ue=""+ee.key),V.type&&V.type.defaultProps)var de=V.type.defaultProps;for(Ae in ee)y.call(ee,Ae)&&!S.hasOwnProperty(Ae)&&(J[Ae]=ee[Ae]===void 0&&de!==void 0?de[Ae]:ee[Ae])}var Ae=arguments.length-2;if(Ae===1)J.children=te;else if(1<Ae){de=Array(Ae);for(var ye=0;ye<Ae;ye++)de[ye]=arguments[ye+2];J.children=de}return{$$typeof:e,type:V.type,key:ue,ref:ce,props:J,_owner:me}},Vn.createContext=function(V){return V={$$typeof:i,_currentValue:V,_currentValue2:V,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},V.Provider={$$typeof:s,_context:V},V.Consumer=V},Vn.createElement=C,Vn.createFactory=function(V){var ee=C.bind(null,V);return ee.type=V,ee},Vn.createRef=function(){return{current:null}},Vn.forwardRef=function(V){return{$$typeof:c,render:V}},Vn.isValidElement=T,Vn.lazy=function(V){return{$$typeof:d,_payload:{_status:-1,_result:V},_init:P}},Vn.memo=function(V,ee){return{$$typeof:u,type:V,compare:ee===void 0?null:ee}},Vn.startTransition=function(V){var ee=F.transition;F.transition={};try{V()}finally{F.transition=ee}},Vn.unstable_act=Z,Vn.useCallback=function(V,ee){return $.current.useCallback(V,ee)},Vn.useContext=function(V){return $.current.useContext(V)},Vn.useDebugValue=function(){},Vn.useDeferredValue=function(V){return $.current.useDeferredValue(V)},Vn.useEffect=function(V,ee){return $.current.useEffect(V,ee)},Vn.useId=function(){return $.current.useId()},Vn.useImperativeHandle=function(V,ee,te){return $.current.useImperativeHandle(V,ee,te)},Vn.useInsertionEffect=function(V,ee){return $.current.useInsertionEffect(V,ee)},Vn.useLayoutEffect=function(V,ee){return $.current.useLayoutEffect(V,ee)},Vn.useMemo=function(V,ee){return $.current.useMemo(V,ee)},Vn.useReducer=function(V,ee,te){return $.current.useReducer(V,ee,te)},Vn.useRef=function(V){return $.current.useRef(V)},Vn.useState=function(V){return $.current.useState(V)},Vn.useSyncExternalStore=function(V,ee,te){return $.current.useSyncExternalStore(V,ee,te)},Vn.useTransition=function(){return $.current.useTransition()},Vn.version="18.3.1",Vn}var KV;function i3(){return KV||(KV=1,dS.exports=nke()),dS.exports}/** + */var GV;function tke(){if(GV)return Vn;GV=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),i=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),l=Symbol.for("react.suspense"),u=Symbol.for("react.memo"),d=Symbol.for("react.lazy"),p=Symbol.iterator;function f(V){return V===null||typeof V!="object"?null:(V=p&&V[p]||V["@@iterator"],typeof V=="function"?V:null)}var b={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h=Object.assign,g={};function z(V,ee,te){this.props=V,this.context=ee,this.refs=g,this.updater=te||b}z.prototype.isReactComponent={},z.prototype.setState=function(V,ee){if(typeof V!="object"&&typeof V!="function"&&V!=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,V,ee,"setState")},z.prototype.forceUpdate=function(V){this.updater.enqueueForceUpdate(this,V,"forceUpdate")};function A(){}A.prototype=z.prototype;function _(V,ee,te){this.props=V,this.context=ee,this.refs=g,this.updater=te||b}var v=_.prototype=new A;v.constructor=_,h(v,z.prototype),v.isPureReactComponent=!0;var M=Array.isArray,y=Object.prototype.hasOwnProperty,k={current:null},S={key:!0,ref:!0,__self:!0,__source:!0};function C(V,ee,te){var J,ue={},ce=null,me=null;if(ee!=null)for(J in ee.ref!==void 0&&(me=ee.ref),ee.key!==void 0&&(ce=""+ee.key),ee)y.call(ee,J)&&!S.hasOwnProperty(J)&&(ue[J]=ee[J]);var de=arguments.length-2;if(de===1)ue.children=te;else if(1<de){for(var Ae=Array(de),ye=0;ye<de;ye++)Ae[ye]=arguments[ye+2];ue.children=Ae}if(V&&V.defaultProps)for(J in de=V.defaultProps,de)ue[J]===void 0&&(ue[J]=de[J]);return{$$typeof:e,type:V,key:ce,ref:me,props:ue,_owner:k.current}}function R(V,ee){return{$$typeof:e,type:V.type,key:ee,ref:V.ref,props:V.props,_owner:V._owner}}function T(V){return typeof V=="object"&&V!==null&&V.$$typeof===e}function E(V){var ee={"=":"=0",":":"=2"};return"$"+V.replace(/[=:]/g,function(te){return ee[te]})}var B=/\/+/g;function N(V,ee){return typeof V=="object"&&V!==null&&V.key!=null?E(""+V.key):ee.toString(36)}function j(V,ee,te,J,ue){var ce=typeof V;(ce==="undefined"||ce==="boolean")&&(V=null);var me=!1;if(V===null)me=!0;else switch(ce){case"string":case"number":me=!0;break;case"object":switch(V.$$typeof){case e:case t:me=!0}}if(me)return me=V,ue=ue(me),V=J===""?"."+N(me,0):J,M(ue)?(te="",V!=null&&(te=V.replace(B,"$&/")+"/"),j(ue,ee,te,"",function(ye){return ye})):ue!=null&&(T(ue)&&(ue=R(ue,te+(!ue.key||me&&me.key===ue.key?"":(""+ue.key).replace(B,"$&/")+"/")+V)),ee.push(ue)),1;if(me=0,J=J===""?".":J+":",M(V))for(var de=0;de<V.length;de++){ce=V[de];var Ae=J+N(ce,de);me+=j(ce,ee,te,Ae,ue)}else if(Ae=f(V),typeof Ae=="function")for(V=Ae.call(V),de=0;!(ce=V.next()).done;)ce=ce.value,Ae=J+N(ce,de++),me+=j(ce,ee,te,Ae,ue);else if(ce==="object")throw ee=String(V),Error("Objects are not valid as a React child (found: "+(ee==="[object Object]"?"object with keys {"+Object.keys(V).join(", ")+"}":ee)+"). If you meant to render a collection of children, use an array instead.");return me}function I(V,ee,te){if(V==null)return V;var J=[],ue=0;return j(V,J,"","",function(ce){return ee.call(te,ce,ue++)}),J}function P(V){if(V._status===-1){var ee=V._result;ee=ee(),ee.then(function(te){(V._status===0||V._status===-1)&&(V._status=1,V._result=te)},function(te){(V._status===0||V._status===-1)&&(V._status=2,V._result=te)}),V._status===-1&&(V._status=0,V._result=ee)}if(V._status===1)return V._result.default;throw V._result}var $={current:null},F={transition:null},X={ReactCurrentDispatcher:$,ReactCurrentBatchConfig:F,ReactCurrentOwner:k};function Z(){throw Error("act(...) is not supported in production builds of React.")}return Vn.Children={map:I,forEach:function(V,ee,te){I(V,function(){ee.apply(this,arguments)},te)},count:function(V){var ee=0;return I(V,function(){ee++}),ee},toArray:function(V){return I(V,function(ee){return ee})||[]},only:function(V){if(!T(V))throw Error("React.Children.only expected to receive a single React element child.");return V}},Vn.Component=z,Vn.Fragment=n,Vn.Profiler=r,Vn.PureComponent=_,Vn.StrictMode=o,Vn.Suspense=l,Vn.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=X,Vn.act=Z,Vn.cloneElement=function(V,ee,te){if(V==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+V+".");var J=h({},V.props),ue=V.key,ce=V.ref,me=V._owner;if(ee!=null){if(ee.ref!==void 0&&(ce=ee.ref,me=k.current),ee.key!==void 0&&(ue=""+ee.key),V.type&&V.type.defaultProps)var de=V.type.defaultProps;for(Ae in ee)y.call(ee,Ae)&&!S.hasOwnProperty(Ae)&&(J[Ae]=ee[Ae]===void 0&&de!==void 0?de[Ae]:ee[Ae])}var Ae=arguments.length-2;if(Ae===1)J.children=te;else if(1<Ae){de=Array(Ae);for(var ye=0;ye<Ae;ye++)de[ye]=arguments[ye+2];J.children=de}return{$$typeof:e,type:V.type,key:ue,ref:ce,props:J,_owner:me}},Vn.createContext=function(V){return V={$$typeof:i,_currentValue:V,_currentValue2:V,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},V.Provider={$$typeof:s,_context:V},V.Consumer=V},Vn.createElement=C,Vn.createFactory=function(V){var ee=C.bind(null,V);return ee.type=V,ee},Vn.createRef=function(){return{current:null}},Vn.forwardRef=function(V){return{$$typeof:c,render:V}},Vn.isValidElement=T,Vn.lazy=function(V){return{$$typeof:d,_payload:{_status:-1,_result:V},_init:P}},Vn.memo=function(V,ee){return{$$typeof:u,type:V,compare:ee===void 0?null:ee}},Vn.startTransition=function(V){var ee=F.transition;F.transition={};try{V()}finally{F.transition=ee}},Vn.unstable_act=Z,Vn.useCallback=function(V,ee){return $.current.useCallback(V,ee)},Vn.useContext=function(V){return $.current.useContext(V)},Vn.useDebugValue=function(){},Vn.useDeferredValue=function(V){return $.current.useDeferredValue(V)},Vn.useEffect=function(V,ee){return $.current.useEffect(V,ee)},Vn.useId=function(){return $.current.useId()},Vn.useImperativeHandle=function(V,ee,te){return $.current.useImperativeHandle(V,ee,te)},Vn.useInsertionEffect=function(V,ee){return $.current.useInsertionEffect(V,ee)},Vn.useLayoutEffect=function(V,ee){return $.current.useLayoutEffect(V,ee)},Vn.useMemo=function(V,ee){return $.current.useMemo(V,ee)},Vn.useReducer=function(V,ee,te){return $.current.useReducer(V,ee,te)},Vn.useRef=function(V){return $.current.useRef(V)},Vn.useState=function(V){return $.current.useState(V)},Vn.useSyncExternalStore=function(V,ee,te){return $.current.useSyncExternalStore(V,ee,te)},Vn.useTransition=function(){return $.current.useTransition()},Vn.version="18.3.1",Vn}var KV;function i3(){return KV||(KV=1,uS.exports=tke()),uS.exports}/** * @license React * react-jsx-runtime.production.min.js * @@ -14,7 +14,7 @@ var eke=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Pmn=eke((mgn * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var YV;function oke(){if(YV)return Og;YV=1;var e=i3(),t=Symbol.for("react.element"),n=Symbol.for("react.fragment"),o=Object.prototype.hasOwnProperty,r=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function i(c,l,u){var d,p={},f=null,b=null;u!==void 0&&(f=""+u),l.key!==void 0&&(f=""+l.key),l.ref!==void 0&&(b=l.ref);for(d in l)o.call(l,d)&&!s.hasOwnProperty(d)&&(p[d]=l[d]);if(c&&c.defaultProps)for(d in l=c.defaultProps,l)p[d]===void 0&&(p[d]=l[d]);return{$$typeof:t,type:c,key:f,ref:b,props:p,_owner:r.current}}return Og.Fragment=n,Og.jsx=i,Og.jsxs=i,Og}var ZV;function rke(){return ZV||(ZV=1,uS.exports=oke()),uS.exports}var a=rke(),x=i3();const Bo=Zr(x),hE=tke({__proto__:null,default:Bo},[x]);let ca,Xa,ad,Gu;const Ere=/<(\/)?(\w+)\s*(\/)?>/g;function pS(e,t,n,o,r){return{element:e,tokenStart:t,tokenLength:n,prevOffset:o,leadingTextStart:r,children:[]}}const cr=(e,t)=>{if(ca=e,Xa=0,ad=[],Gu=[],Ere.lastIndex=0,!ske(t))throw new TypeError("The conversionMap provided is not valid. It must be an object with values that are React Elements");do;while(ike(t));return x.createElement(x.Fragment,null,...ad)},ske=e=>{const t=typeof e=="object",n=t&&Object.values(e);return t&&n.length&&n.every(o=>x.isValidElement(o))};function ike(e){const t=ake(),[n,o,r,s]=t,i=Gu.length,c=r>Xa?Xa:null;if(!e[o])return fS(),!1;switch(n){case"no-more-tokens":if(i!==0){const{leadingTextStart:p,tokenStart:f}=Gu.pop();ad.push(ca.substr(p,f))}return fS(),!1;case"self-closed":return i===0?(c!==null&&ad.push(ca.substr(c,r-c)),ad.push(e[o]),Xa=r+s,!0):(QV(pS(e[o],r,s)),Xa=r+s,!0);case"opener":return Gu.push(pS(e[o],r,s,r+s,c)),Xa=r+s,!0;case"closer":if(i===1)return cke(r),Xa=r+s,!0;const l=Gu.pop(),u=ca.substr(l.prevOffset,r-l.prevOffset);l.children.push(u),l.prevOffset=r+s;const d=pS(l.element,l.tokenStart,l.tokenLength,r+s);return d.children=l.children,QV(d),Xa=r+s,!0;default:return fS(),!1}}function ake(){const e=Ere.exec(ca);if(e===null)return["no-more-tokens"];const t=e.index,[n,o,r,s]=e,i=n.length;return s?["self-closed",r,t,i]:o?["closer",r,t,i]:["opener",r,t,i]}function fS(){const e=ca.length-Xa;e!==0&&ad.push(ca.substr(Xa,e))}function QV(e){const{element:t,tokenStart:n,tokenLength:o,prevOffset:r,children:s}=e,i=Gu[Gu.length-1],c=ca.substr(i.prevOffset,n-i.prevOffset);c&&i.children.push(c),i.children.push(x.cloneElement(t,null,...s)),i.prevOffset=r||n+o}function cke(e){const{element:t,leadingTextStart:n,prevOffset:o,tokenStart:r,children:s}=Gu.pop(),i=e?ca.substr(o,e-o):ca.substr(o);i&&s.push(i),n!==null&&ad.push(ca.substr(n,r-n)),ad.push(x.cloneElement(t,null,...s))}var bS={exports:{}},es={},hS={exports:{}},mS={};/** + */var YV;function nke(){if(YV)return Og;YV=1;var e=i3(),t=Symbol.for("react.element"),n=Symbol.for("react.fragment"),o=Object.prototype.hasOwnProperty,r=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function i(c,l,u){var d,p={},f=null,b=null;u!==void 0&&(f=""+u),l.key!==void 0&&(f=""+l.key),l.ref!==void 0&&(b=l.ref);for(d in l)o.call(l,d)&&!s.hasOwnProperty(d)&&(p[d]=l[d]);if(c&&c.defaultProps)for(d in l=c.defaultProps,l)p[d]===void 0&&(p[d]=l[d]);return{$$typeof:t,type:c,key:f,ref:b,props:p,_owner:r.current}}return Og.Fragment=n,Og.jsx=i,Og.jsxs=i,Og}var ZV;function oke(){return ZV||(ZV=1,lS.exports=nke()),lS.exports}var a=oke(),x=i3();const Bo=Zr(x),bE=eke({__proto__:null,default:Bo},[x]);let aa,Xa,ad,Gu;const Ere=/<(\/)?(\w+)\s*(\/)?>/g;function dS(e,t,n,o,r){return{element:e,tokenStart:t,tokenLength:n,prevOffset:o,leadingTextStart:r,children:[]}}const cr=(e,t)=>{if(aa=e,Xa=0,ad=[],Gu=[],Ere.lastIndex=0,!rke(t))throw new TypeError("The conversionMap provided is not valid. It must be an object with values that are React Elements");do;while(ske(t));return x.createElement(x.Fragment,null,...ad)},rke=e=>{const t=typeof e=="object",n=t&&Object.values(e);return t&&n.length&&n.every(o=>x.isValidElement(o))};function ske(e){const t=ike(),[n,o,r,s]=t,i=Gu.length,c=r>Xa?Xa:null;if(!e[o])return pS(),!1;switch(n){case"no-more-tokens":if(i!==0){const{leadingTextStart:p,tokenStart:f}=Gu.pop();ad.push(aa.substr(p,f))}return pS(),!1;case"self-closed":return i===0?(c!==null&&ad.push(aa.substr(c,r-c)),ad.push(e[o]),Xa=r+s,!0):(QV(dS(e[o],r,s)),Xa=r+s,!0);case"opener":return Gu.push(dS(e[o],r,s,r+s,c)),Xa=r+s,!0;case"closer":if(i===1)return ake(r),Xa=r+s,!0;const l=Gu.pop(),u=aa.substr(l.prevOffset,r-l.prevOffset);l.children.push(u),l.prevOffset=r+s;const d=dS(l.element,l.tokenStart,l.tokenLength,r+s);return d.children=l.children,QV(d),Xa=r+s,!0;default:return pS(),!1}}function ike(){const e=Ere.exec(aa);if(e===null)return["no-more-tokens"];const t=e.index,[n,o,r,s]=e,i=n.length;return s?["self-closed",r,t,i]:o?["closer",r,t,i]:["opener",r,t,i]}function pS(){const e=aa.length-Xa;e!==0&&ad.push(aa.substr(Xa,e))}function QV(e){const{element:t,tokenStart:n,tokenLength:o,prevOffset:r,children:s}=e,i=Gu[Gu.length-1],c=aa.substr(i.prevOffset,n-i.prevOffset);c&&i.children.push(c),i.children.push(x.cloneElement(t,null,...s)),i.prevOffset=r||n+o}function ake(e){const{element:t,leadingTextStart:n,prevOffset:o,tokenStart:r,children:s}=Gu.pop(),i=e?aa.substr(o,e-o):aa.substr(o);i&&s.push(i),n!==null&&ad.push(aa.substr(n,r-n)),ad.push(x.cloneElement(t,null,...s))}var fS={exports:{}},es={},bS={exports:{}},hS={};/** * @license React * scheduler.production.min.js * @@ -22,7 +22,7 @@ var eke=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Pmn=eke((mgn * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var JV;function lke(){return JV||(JV=1,function(e){function t(F,X){var Z=F.length;F.push(X);e:for(;0<Z;){var V=Z-1>>>1,ee=F[V];if(0<r(ee,X))F[V]=X,F[Z]=ee,Z=V;else break e}}function n(F){return F.length===0?null:F[0]}function o(F){if(F.length===0)return null;var X=F[0],Z=F.pop();if(Z!==X){F[0]=Z;e:for(var V=0,ee=F.length,te=ee>>>1;V<te;){var J=2*(V+1)-1,ue=F[J],ce=J+1,me=F[ce];if(0>r(ue,Z))ce<ee&&0>r(me,ue)?(F[V]=me,F[ce]=Z,V=ce):(F[V]=ue,F[J]=Z,V=J);else if(ce<ee&&0>r(me,Z))F[V]=me,F[ce]=Z,V=ce;else break e}}return X}function r(F,X){var Z=F.sortIndex-X.sortIndex;return Z!==0?Z:F.id-X.id}if(typeof performance=="object"&&typeof performance.now=="function"){var s=performance;e.unstable_now=function(){return s.now()}}else{var i=Date,c=i.now();e.unstable_now=function(){return i.now()-c}}var l=[],u=[],d=1,p=null,f=3,b=!1,h=!1,g=!1,z=typeof setTimeout=="function"?setTimeout:null,A=typeof clearTimeout=="function"?clearTimeout:null,_=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function v(F){for(var X=n(u);X!==null;){if(X.callback===null)o(u);else if(X.startTime<=F)o(u),X.sortIndex=X.expirationTime,t(l,X);else break;X=n(u)}}function M(F){if(g=!1,v(F),!h)if(n(l)!==null)h=!0,P(y);else{var X=n(u);X!==null&&$(M,X.startTime-F)}}function y(F,X){h=!1,g&&(g=!1,A(C),C=-1),b=!0;var Z=f;try{for(v(X),p=n(l);p!==null&&(!(p.expirationTime>X)||F&&!E());){var V=p.callback;if(typeof V=="function"){p.callback=null,f=p.priorityLevel;var ee=V(p.expirationTime<=X);X=e.unstable_now(),typeof ee=="function"?p.callback=ee:p===n(l)&&o(l),v(X)}else o(l);p=n(l)}if(p!==null)var te=!0;else{var J=n(u);J!==null&&$(M,J.startTime-X),te=!1}return te}finally{p=null,f=Z,b=!1}}var k=!1,S=null,C=-1,R=5,T=-1;function E(){return!(e.unstable_now()-T<R)}function B(){if(S!==null){var F=e.unstable_now();T=F;var X=!0;try{X=S(!0,F)}finally{X?N():(k=!1,S=null)}}else k=!1}var N;if(typeof _=="function")N=function(){_(B)};else if(typeof MessageChannel<"u"){var j=new MessageChannel,I=j.port2;j.port1.onmessage=B,N=function(){I.postMessage(null)}}else N=function(){z(B,0)};function P(F){S=F,k||(k=!0,N())}function $(F,X){C=z(function(){F(e.unstable_now())},X)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(F){F.callback=null},e.unstable_continueExecution=function(){h||b||(h=!0,P(y))},e.unstable_forceFrameRate=function(F){0>F||125<F?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):R=0<F?Math.floor(1e3/F):5},e.unstable_getCurrentPriorityLevel=function(){return f},e.unstable_getFirstCallbackNode=function(){return n(l)},e.unstable_next=function(F){switch(f){case 1:case 2:case 3:var X=3;break;default:X=f}var Z=f;f=X;try{return F()}finally{f=Z}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(F,X){switch(F){case 1:case 2:case 3:case 4:case 5:break;default:F=3}var Z=f;f=F;try{return X()}finally{f=Z}},e.unstable_scheduleCallback=function(F,X,Z){var V=e.unstable_now();switch(typeof Z=="object"&&Z!==null?(Z=Z.delay,Z=typeof Z=="number"&&0<Z?V+Z:V):Z=V,F){case 1:var ee=-1;break;case 2:ee=250;break;case 5:ee=1073741823;break;case 4:ee=1e4;break;default:ee=5e3}return ee=Z+ee,F={id:d++,callback:X,priorityLevel:F,startTime:Z,expirationTime:ee,sortIndex:-1},Z>V?(F.sortIndex=Z,t(u,F),n(l)===null&&F===n(u)&&(g?(A(C),C=-1):g=!0,$(M,Z-V))):(F.sortIndex=ee,t(l,F),h||b||(h=!0,P(y))),F},e.unstable_shouldYield=E,e.unstable_wrapCallback=function(F){var X=f;return function(){var Z=f;f=X;try{return F.apply(this,arguments)}finally{f=Z}}}}(mS)),mS}var eH;function uke(){return eH||(eH=1,hS.exports=lke()),hS.exports}/** + */var JV;function cke(){return JV||(JV=1,function(e){function t(F,X){var Z=F.length;F.push(X);e:for(;0<Z;){var V=Z-1>>>1,ee=F[V];if(0<r(ee,X))F[V]=X,F[Z]=ee,Z=V;else break e}}function n(F){return F.length===0?null:F[0]}function o(F){if(F.length===0)return null;var X=F[0],Z=F.pop();if(Z!==X){F[0]=Z;e:for(var V=0,ee=F.length,te=ee>>>1;V<te;){var J=2*(V+1)-1,ue=F[J],ce=J+1,me=F[ce];if(0>r(ue,Z))ce<ee&&0>r(me,ue)?(F[V]=me,F[ce]=Z,V=ce):(F[V]=ue,F[J]=Z,V=J);else if(ce<ee&&0>r(me,Z))F[V]=me,F[ce]=Z,V=ce;else break e}}return X}function r(F,X){var Z=F.sortIndex-X.sortIndex;return Z!==0?Z:F.id-X.id}if(typeof performance=="object"&&typeof performance.now=="function"){var s=performance;e.unstable_now=function(){return s.now()}}else{var i=Date,c=i.now();e.unstable_now=function(){return i.now()-c}}var l=[],u=[],d=1,p=null,f=3,b=!1,h=!1,g=!1,z=typeof setTimeout=="function"?setTimeout:null,A=typeof clearTimeout=="function"?clearTimeout:null,_=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function v(F){for(var X=n(u);X!==null;){if(X.callback===null)o(u);else if(X.startTime<=F)o(u),X.sortIndex=X.expirationTime,t(l,X);else break;X=n(u)}}function M(F){if(g=!1,v(F),!h)if(n(l)!==null)h=!0,P(y);else{var X=n(u);X!==null&&$(M,X.startTime-F)}}function y(F,X){h=!1,g&&(g=!1,A(C),C=-1),b=!0;var Z=f;try{for(v(X),p=n(l);p!==null&&(!(p.expirationTime>X)||F&&!E());){var V=p.callback;if(typeof V=="function"){p.callback=null,f=p.priorityLevel;var ee=V(p.expirationTime<=X);X=e.unstable_now(),typeof ee=="function"?p.callback=ee:p===n(l)&&o(l),v(X)}else o(l);p=n(l)}if(p!==null)var te=!0;else{var J=n(u);J!==null&&$(M,J.startTime-X),te=!1}return te}finally{p=null,f=Z,b=!1}}var k=!1,S=null,C=-1,R=5,T=-1;function E(){return!(e.unstable_now()-T<R)}function B(){if(S!==null){var F=e.unstable_now();T=F;var X=!0;try{X=S(!0,F)}finally{X?N():(k=!1,S=null)}}else k=!1}var N;if(typeof _=="function")N=function(){_(B)};else if(typeof MessageChannel<"u"){var j=new MessageChannel,I=j.port2;j.port1.onmessage=B,N=function(){I.postMessage(null)}}else N=function(){z(B,0)};function P(F){S=F,k||(k=!0,N())}function $(F,X){C=z(function(){F(e.unstable_now())},X)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(F){F.callback=null},e.unstable_continueExecution=function(){h||b||(h=!0,P(y))},e.unstable_forceFrameRate=function(F){0>F||125<F?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):R=0<F?Math.floor(1e3/F):5},e.unstable_getCurrentPriorityLevel=function(){return f},e.unstable_getFirstCallbackNode=function(){return n(l)},e.unstable_next=function(F){switch(f){case 1:case 2:case 3:var X=3;break;default:X=f}var Z=f;f=X;try{return F()}finally{f=Z}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(F,X){switch(F){case 1:case 2:case 3:case 4:case 5:break;default:F=3}var Z=f;f=F;try{return X()}finally{f=Z}},e.unstable_scheduleCallback=function(F,X,Z){var V=e.unstable_now();switch(typeof Z=="object"&&Z!==null?(Z=Z.delay,Z=typeof Z=="number"&&0<Z?V+Z:V):Z=V,F){case 1:var ee=-1;break;case 2:ee=250;break;case 5:ee=1073741823;break;case 4:ee=1e4;break;default:ee=5e3}return ee=Z+ee,F={id:d++,callback:X,priorityLevel:F,startTime:Z,expirationTime:ee,sortIndex:-1},Z>V?(F.sortIndex=Z,t(u,F),n(l)===null&&F===n(u)&&(g?(A(C),C=-1):g=!0,$(M,Z-V))):(F.sortIndex=ee,t(l,F),h||b||(h=!0,P(y))),F},e.unstable_shouldYield=E,e.unstable_wrapCallback=function(F){var X=f;return function(){var Z=f;f=X;try{return F.apply(this,arguments)}finally{f=Z}}}}(hS)),hS}var eH;function lke(){return eH||(eH=1,bS.exports=cke()),bS.exports}/** * @license React * react-dom.production.min.js * @@ -30,42 +30,42 @@ var eke=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Pmn=eke((mgn * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var tH;function dke(){if(tH)return es;tH=1;var e=i3(),t=uke();function n(O){for(var w="https://reactjs.org/docs/error-decoder.html?invariant="+O,q=1;q<arguments.length;q++)w+="&args[]="+encodeURIComponent(arguments[q]);return"Minified React error #"+O+"; visit "+w+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var o=new Set,r={};function s(O,w){i(O,w),i(O+"Capture",w)}function i(O,w){for(r[O]=w,O=0;O<w.length;O++)o.add(w[O])}var c=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),l=Object.prototype.hasOwnProperty,u=/^[: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]*$/,d={},p={};function f(O){return l.call(p,O)?!0:l.call(d,O)?!1:u.test(O)?p[O]=!0:(d[O]=!0,!1)}function b(O,w,q,W){if(q!==null&&q.type===0)return!1;switch(typeof w){case"function":case"symbol":return!0;case"boolean":return W?!1:q!==null?!q.acceptsBooleans:(O=O.toLowerCase().slice(0,5),O!=="data-"&&O!=="aria-");default:return!1}}function h(O,w,q,W){if(w===null||typeof w>"u"||b(O,w,q,W))return!0;if(W)return!1;if(q!==null)switch(q.type){case 3:return!w;case 4:return w===!1;case 5:return isNaN(w);case 6:return isNaN(w)||1>w}return!1}function g(O,w,q,W,D,K,le){this.acceptsBooleans=w===2||w===3||w===4,this.attributeName=W,this.attributeNamespace=D,this.mustUseProperty=q,this.propertyName=O,this.type=w,this.sanitizeURL=K,this.removeEmptyString=le}var z={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(O){z[O]=new g(O,0,!1,O,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(O){var w=O[0];z[w]=new g(w,1,!1,O[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(O){z[O]=new g(O,2,!1,O.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(O){z[O]=new g(O,2,!1,O,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(O){z[O]=new g(O,3,!1,O.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(O){z[O]=new g(O,3,!0,O,null,!1,!1)}),["capture","download"].forEach(function(O){z[O]=new g(O,4,!1,O,null,!1,!1)}),["cols","rows","size","span"].forEach(function(O){z[O]=new g(O,6,!1,O,null,!1,!1)}),["rowSpan","start"].forEach(function(O){z[O]=new g(O,5,!1,O.toLowerCase(),null,!1,!1)});var A=/[\-:]([a-z])/g;function _(O){return O[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(O){var w=O.replace(A,_);z[w]=new g(w,1,!1,O,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(O){var w=O.replace(A,_);z[w]=new g(w,1,!1,O,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(O){var w=O.replace(A,_);z[w]=new g(w,1,!1,O,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(O){z[O]=new g(O,1,!1,O.toLowerCase(),null,!1,!1)}),z.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(O){z[O]=new g(O,1,!1,O.toLowerCase(),null,!0,!0)});function v(O,w,q,W){var D=z.hasOwnProperty(w)?z[w]:null;(D!==null?D.type!==0:W||!(2<w.length)||w[0]!=="o"&&w[0]!=="O"||w[1]!=="n"&&w[1]!=="N")&&(h(w,q,D,W)&&(q=null),W||D===null?f(w)&&(q===null?O.removeAttribute(w):O.setAttribute(w,""+q)):D.mustUseProperty?O[D.propertyName]=q===null?D.type===3?!1:"":q:(w=D.attributeName,W=D.attributeNamespace,q===null?O.removeAttribute(w):(D=D.type,q=D===3||D===4&&q===!0?"":""+q,W?O.setAttributeNS(W,w,q):O.setAttribute(w,q))))}var M=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=Symbol.for("react.element"),k=Symbol.for("react.portal"),S=Symbol.for("react.fragment"),C=Symbol.for("react.strict_mode"),R=Symbol.for("react.profiler"),T=Symbol.for("react.provider"),E=Symbol.for("react.context"),B=Symbol.for("react.forward_ref"),N=Symbol.for("react.suspense"),j=Symbol.for("react.suspense_list"),I=Symbol.for("react.memo"),P=Symbol.for("react.lazy"),$=Symbol.for("react.offscreen"),F=Symbol.iterator;function X(O){return O===null||typeof O!="object"?null:(O=F&&O[F]||O["@@iterator"],typeof O=="function"?O:null)}var Z=Object.assign,V;function ee(O){if(V===void 0)try{throw Error()}catch(q){var w=q.stack.trim().match(/\n( *(at )?)/);V=w&&w[1]||""}return` + */var tH;function uke(){if(tH)return es;tH=1;var e=i3(),t=lke();function n(O){for(var w="https://reactjs.org/docs/error-decoder.html?invariant="+O,q=1;q<arguments.length;q++)w+="&args[]="+encodeURIComponent(arguments[q]);return"Minified React error #"+O+"; visit "+w+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var o=new Set,r={};function s(O,w){i(O,w),i(O+"Capture",w)}function i(O,w){for(r[O]=w,O=0;O<w.length;O++)o.add(w[O])}var c=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),l=Object.prototype.hasOwnProperty,u=/^[: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]*$/,d={},p={};function f(O){return l.call(p,O)?!0:l.call(d,O)?!1:u.test(O)?p[O]=!0:(d[O]=!0,!1)}function b(O,w,q,W){if(q!==null&&q.type===0)return!1;switch(typeof w){case"function":case"symbol":return!0;case"boolean":return W?!1:q!==null?!q.acceptsBooleans:(O=O.toLowerCase().slice(0,5),O!=="data-"&&O!=="aria-");default:return!1}}function h(O,w,q,W){if(w===null||typeof w>"u"||b(O,w,q,W))return!0;if(W)return!1;if(q!==null)switch(q.type){case 3:return!w;case 4:return w===!1;case 5:return isNaN(w);case 6:return isNaN(w)||1>w}return!1}function g(O,w,q,W,D,K,le){this.acceptsBooleans=w===2||w===3||w===4,this.attributeName=W,this.attributeNamespace=D,this.mustUseProperty=q,this.propertyName=O,this.type=w,this.sanitizeURL=K,this.removeEmptyString=le}var z={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(O){z[O]=new g(O,0,!1,O,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(O){var w=O[0];z[w]=new g(w,1,!1,O[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(O){z[O]=new g(O,2,!1,O.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(O){z[O]=new g(O,2,!1,O,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(O){z[O]=new g(O,3,!1,O.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(O){z[O]=new g(O,3,!0,O,null,!1,!1)}),["capture","download"].forEach(function(O){z[O]=new g(O,4,!1,O,null,!1,!1)}),["cols","rows","size","span"].forEach(function(O){z[O]=new g(O,6,!1,O,null,!1,!1)}),["rowSpan","start"].forEach(function(O){z[O]=new g(O,5,!1,O.toLowerCase(),null,!1,!1)});var A=/[\-:]([a-z])/g;function _(O){return O[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(O){var w=O.replace(A,_);z[w]=new g(w,1,!1,O,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(O){var w=O.replace(A,_);z[w]=new g(w,1,!1,O,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(O){var w=O.replace(A,_);z[w]=new g(w,1,!1,O,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(O){z[O]=new g(O,1,!1,O.toLowerCase(),null,!1,!1)}),z.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(O){z[O]=new g(O,1,!1,O.toLowerCase(),null,!0,!0)});function v(O,w,q,W){var D=z.hasOwnProperty(w)?z[w]:null;(D!==null?D.type!==0:W||!(2<w.length)||w[0]!=="o"&&w[0]!=="O"||w[1]!=="n"&&w[1]!=="N")&&(h(w,q,D,W)&&(q=null),W||D===null?f(w)&&(q===null?O.removeAttribute(w):O.setAttribute(w,""+q)):D.mustUseProperty?O[D.propertyName]=q===null?D.type===3?!1:"":q:(w=D.attributeName,W=D.attributeNamespace,q===null?O.removeAttribute(w):(D=D.type,q=D===3||D===4&&q===!0?"":""+q,W?O.setAttributeNS(W,w,q):O.setAttribute(w,q))))}var M=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=Symbol.for("react.element"),k=Symbol.for("react.portal"),S=Symbol.for("react.fragment"),C=Symbol.for("react.strict_mode"),R=Symbol.for("react.profiler"),T=Symbol.for("react.provider"),E=Symbol.for("react.context"),B=Symbol.for("react.forward_ref"),N=Symbol.for("react.suspense"),j=Symbol.for("react.suspense_list"),I=Symbol.for("react.memo"),P=Symbol.for("react.lazy"),$=Symbol.for("react.offscreen"),F=Symbol.iterator;function X(O){return O===null||typeof O!="object"?null:(O=F&&O[F]||O["@@iterator"],typeof O=="function"?O:null)}var Z=Object.assign,V;function ee(O){if(V===void 0)try{throw Error()}catch(q){var w=q.stack.trim().match(/\n( *(at )?)/);V=w&&w[1]||""}return` `+V+O}var te=!1;function J(O,w){if(!O||te)return"";te=!0;var q=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(w)if(w=function(){throw Error()},Object.defineProperty(w.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(w,[])}catch(Ge){var W=Ge}Reflect.construct(O,[],w)}else{try{w.call()}catch(Ge){W=Ge}O.call(w.prototype)}else{try{throw Error()}catch(Ge){W=Ge}O()}}catch(Ge){if(Ge&&W&&typeof Ge.stack=="string"){for(var D=Ge.stack.split(` `),K=W.stack.split(` `),le=D.length-1,Te=K.length-1;1<=le&&0<=Te&&D[le]!==K[Te];)Te--;for(;1<=le&&0<=Te;le--,Te--)if(D[le]!==K[Te]){if(le!==1||Te!==1)do if(le--,Te--,0>Te||D[le]!==K[Te]){var Le=` -`+D[le].replace(" at new "," at ");return O.displayName&&Le.includes("<anonymous>")&&(Le=Le.replace("<anonymous>",O.displayName)),Le}while(1<=le&&0<=Te);break}}}finally{te=!1,Error.prepareStackTrace=q}return(O=O?O.displayName||O.name:"")?ee(O):""}function ue(O){switch(O.tag){case 5:return ee(O.type);case 16:return ee("Lazy");case 13:return ee("Suspense");case 19:return ee("SuspenseList");case 0:case 2:case 15:return O=J(O.type,!1),O;case 11:return O=J(O.type.render,!1),O;case 1:return O=J(O.type,!0),O;default:return""}}function ce(O){if(O==null)return null;if(typeof O=="function")return O.displayName||O.name||null;if(typeof O=="string")return O;switch(O){case S:return"Fragment";case k:return"Portal";case R:return"Profiler";case C:return"StrictMode";case N:return"Suspense";case j:return"SuspenseList"}if(typeof O=="object")switch(O.$$typeof){case E:return(O.displayName||"Context")+".Consumer";case T:return(O._context.displayName||"Context")+".Provider";case B:var w=O.render;return O=O.displayName,O||(O=w.displayName||w.name||"",O=O!==""?"ForwardRef("+O+")":"ForwardRef"),O;case I:return w=O.displayName||null,w!==null?w:ce(O.type)||"Memo";case P:w=O._payload,O=O._init;try{return ce(O(w))}catch{}}return null}function me(O){var w=O.type;switch(O.tag){case 24:return"Cache";case 9:return(w.displayName||"Context")+".Consumer";case 10:return(w._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return O=w.render,O=O.displayName||O.name||"",w.displayName||(O!==""?"ForwardRef("+O+")":"ForwardRef");case 7:return"Fragment";case 5:return w;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return ce(w);case 8:return w===C?"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 w=="function")return w.displayName||w.name||null;if(typeof w=="string")return w}return null}function de(O){switch(typeof O){case"boolean":case"number":case"string":case"undefined":return O;case"object":return O;default:return""}}function Ae(O){var w=O.type;return(O=O.nodeName)&&O.toLowerCase()==="input"&&(w==="checkbox"||w==="radio")}function ye(O){var w=Ae(O)?"checked":"value",q=Object.getOwnPropertyDescriptor(O.constructor.prototype,w),W=""+O[w];if(!O.hasOwnProperty(w)&&typeof q<"u"&&typeof q.get=="function"&&typeof q.set=="function"){var D=q.get,K=q.set;return Object.defineProperty(O,w,{configurable:!0,get:function(){return D.call(this)},set:function(le){W=""+le,K.call(this,le)}}),Object.defineProperty(O,w,{enumerable:q.enumerable}),{getValue:function(){return W},setValue:function(le){W=""+le},stopTracking:function(){O._valueTracker=null,delete O[w]}}}}function Ne(O){O._valueTracker||(O._valueTracker=ye(O))}function je(O){if(!O)return!1;var w=O._valueTracker;if(!w)return!0;var q=w.getValue(),W="";return O&&(W=Ae(O)?O.checked?"true":"false":O.value),O=W,O!==q?(w.setValue(O),!0):!1}function ie(O){if(O=O||(typeof document<"u"?document:void 0),typeof O>"u")return null;try{return O.activeElement||O.body}catch{return O.body}}function we(O,w){var q=w.checked;return Z({},w,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:q??O._wrapperState.initialChecked})}function re(O,w){var q=w.defaultValue==null?"":w.defaultValue,W=w.checked!=null?w.checked:w.defaultChecked;q=de(w.value!=null?w.value:q),O._wrapperState={initialChecked:W,initialValue:q,controlled:w.type==="checkbox"||w.type==="radio"?w.checked!=null:w.value!=null}}function pe(O,w){w=w.checked,w!=null&&v(O,"checked",w,!1)}function ke(O,w){pe(O,w);var q=de(w.value),W=w.type;if(q!=null)W==="number"?(q===0&&O.value===""||O.value!=q)&&(O.value=""+q):O.value!==""+q&&(O.value=""+q);else if(W==="submit"||W==="reset"){O.removeAttribute("value");return}w.hasOwnProperty("value")?se(O,w.type,q):w.hasOwnProperty("defaultValue")&&se(O,w.type,de(w.defaultValue)),w.checked==null&&w.defaultChecked!=null&&(O.defaultChecked=!!w.defaultChecked)}function Se(O,w,q){if(w.hasOwnProperty("value")||w.hasOwnProperty("defaultValue")){var W=w.type;if(!(W!=="submit"&&W!=="reset"||w.value!==void 0&&w.value!==null))return;w=""+O._wrapperState.initialValue,q||w===O.value||(O.value=w),O.defaultValue=w}q=O.name,q!==""&&(O.name=""),O.defaultChecked=!!O._wrapperState.initialChecked,q!==""&&(O.name=q)}function se(O,w,q){(w!=="number"||ie(O.ownerDocument)!==O)&&(q==null?O.defaultValue=""+O._wrapperState.initialValue:O.defaultValue!==""+q&&(O.defaultValue=""+q))}var L=Array.isArray;function U(O,w,q,W){if(O=O.options,w){w={};for(var D=0;D<q.length;D++)w["$"+q[D]]=!0;for(q=0;q<O.length;q++)D=w.hasOwnProperty("$"+O[q].value),O[q].selected!==D&&(O[q].selected=D),D&&W&&(O[q].defaultSelected=!0)}else{for(q=""+de(q),w=null,D=0;D<O.length;D++){if(O[D].value===q){O[D].selected=!0,W&&(O[D].defaultSelected=!0);return}w!==null||O[D].disabled||(w=O[D])}w!==null&&(w.selected=!0)}}function ne(O,w){if(w.dangerouslySetInnerHTML!=null)throw Error(n(91));return Z({},w,{value:void 0,defaultValue:void 0,children:""+O._wrapperState.initialValue})}function ve(O,w){var q=w.value;if(q==null){if(q=w.children,w=w.defaultValue,q!=null){if(w!=null)throw Error(n(92));if(L(q)){if(1<q.length)throw Error(n(93));q=q[0]}w=q}w==null&&(w=""),q=w}O._wrapperState={initialValue:de(q)}}function qe(O,w){var q=de(w.value),W=de(w.defaultValue);q!=null&&(q=""+q,q!==O.value&&(O.value=q),w.defaultValue==null&&O.defaultValue!==q&&(O.defaultValue=q)),W!=null&&(O.defaultValue=""+W)}function Pe(O){var w=O.textContent;w===O._wrapperState.initialValue&&w!==""&&w!==null&&(O.value=w)}function rt(O){switch(O){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function qt(O,w){return O==null||O==="http://www.w3.org/1999/xhtml"?rt(w):O==="http://www.w3.org/2000/svg"&&w==="foreignObject"?"http://www.w3.org/1999/xhtml":O}var wt,Bt=function(O){return typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(w,q,W,D){MSApp.execUnsafeLocalFunction(function(){return O(w,q,W,D)})}:O}(function(O,w){if(O.namespaceURI!=="http://www.w3.org/2000/svg"||"innerHTML"in O)O.innerHTML=w;else{for(wt=wt||document.createElement("div"),wt.innerHTML="<svg>"+w.valueOf().toString()+"</svg>",w=wt.firstChild;O.firstChild;)O.removeChild(O.firstChild);for(;w.firstChild;)O.appendChild(w.firstChild)}});function ae(O,w){if(w){var q=O.firstChild;if(q&&q===O.lastChild&&q.nodeType===3){q.nodeValue=w;return}}O.textContent=w}var H={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},Y=["Webkit","ms","Moz","O"];Object.keys(H).forEach(function(O){Y.forEach(function(w){w=w+O.charAt(0).toUpperCase()+O.substring(1),H[w]=H[O]})});function fe(O,w,q){return w==null||typeof w=="boolean"||w===""?"":q||typeof w!="number"||w===0||H.hasOwnProperty(O)&&H[O]?(""+w).trim():w+"px"}function Re(O,w){O=O.style;for(var q in w)if(w.hasOwnProperty(q)){var W=q.indexOf("--")===0,D=fe(q,w[q],W);q==="float"&&(q="cssFloat"),W?O.setProperty(q,D):O[q]=D}}var be=Z({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 ze(O,w){if(w){if(be[O]&&(w.children!=null||w.dangerouslySetInnerHTML!=null))throw Error(n(137,O));if(w.dangerouslySetInnerHTML!=null){if(w.children!=null)throw Error(n(60));if(typeof w.dangerouslySetInnerHTML!="object"||!("__html"in w.dangerouslySetInnerHTML))throw Error(n(61))}if(w.style!=null&&typeof w.style!="object")throw Error(n(62))}}function nt(O,w){if(O.indexOf("-")===-1)return typeof w.is=="string";switch(O){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 Mt=null;function ot(O){return O=O.target||O.srcElement||window,O.correspondingUseElement&&(O=O.correspondingUseElement),O.nodeType===3?O.parentNode:O}var Ue=null,yt=null,fn=null;function Pn(O){if(O=sg(O)){if(typeof Ue!="function")throw Error(n(280));var w=O.stateNode;w&&(w=gy(w),Ue(O.stateNode,O.type,w))}}function Mo(O){yt?fn?fn.push(O):fn=[O]:yt=O}function rr(){if(yt){var O=yt,w=fn;if(fn=yt=null,Pn(O),w)for(O=0;O<w.length;O++)Pn(w[O])}}function Jo(O,w){return O(w)}function To(){}var Br=!1;function Rt(O,w,q){if(Br)return O(w,q);Br=!0;try{return Jo(O,w,q)}finally{Br=!1,(yt!==null||fn!==null)&&(To(),rr())}}function Qe(O,w){var q=O.stateNode;if(q===null)return null;var W=gy(q);if(W===null)return null;q=W[w];e:switch(w){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(W=!W.disabled)||(O=O.type,W=!(O==="button"||O==="input"||O==="select"||O==="textarea")),O=!W;break e;default:O=!1}if(O)return null;if(q&&typeof q!="function")throw Error(n(231,w,typeof q));return q}var xt=!1;if(c)try{var Gt={};Object.defineProperty(Gt,"passive",{get:function(){xt=!0}}),window.addEventListener("test",Gt,Gt),window.removeEventListener("test",Gt,Gt)}catch{xt=!1}function On(O,w,q,W,D,K,le,Te,Le){var Ge=Array.prototype.slice.call(arguments,3);try{w.apply(q,Ge)}catch(at){this.onError(at)}}var $n=!1,Jn=null,pr=!1,O0=null,o1={onError:function(O){$n=!0,Jn=O}};function yr(O,w,q,W,D,K,le,Te,Le){$n=!1,Jn=null,On.apply(o1,arguments)}function Js(O,w,q,W,D,K,le,Te,Le){if(yr.apply(this,arguments),$n){if($n){var Ge=Jn;$n=!1,Jn=null}else throw Error(n(198));pr||(pr=!0,O0=Ge)}}function ao(O){var w=O,q=O;if(O.alternate)for(;w.return;)w=w.return;else{O=w;do w=O,w.flags&4098&&(q=w.return),O=w.return;while(O)}return w.tag===3?q:null}function Dc(O){if(O.tag===13){var w=O.memoizedState;if(w===null&&(O=O.alternate,O!==null&&(w=O.memoizedState)),w!==null)return w.dehydrated}return null}function Xi(O){if(ao(O)!==O)throw Error(n(188))}function _s(O){var w=O.alternate;if(!w){if(w=ao(O),w===null)throw Error(n(188));return w!==O?null:O}for(var q=O,W=w;;){var D=q.return;if(D===null)break;var K=D.alternate;if(K===null){if(W=D.return,W!==null){q=W;continue}break}if(D.child===K.child){for(K=D.child;K;){if(K===q)return Xi(D),O;if(K===W)return Xi(D),w;K=K.sibling}throw Error(n(188))}if(q.return!==W.return)q=D,W=K;else{for(var le=!1,Te=D.child;Te;){if(Te===q){le=!0,q=D,W=K;break}if(Te===W){le=!0,W=D,q=K;break}Te=Te.sibling}if(!le){for(Te=K.child;Te;){if(Te===q){le=!0,q=K,W=D;break}if(Te===W){le=!0,W=K,q=D;break}Te=Te.sibling}if(!le)throw Error(n(189))}}if(q.alternate!==W)throw Error(n(190))}if(q.tag!==3)throw Error(n(188));return q.stateNode.current===q?O:w}function Gi(O){return O=_s(O),O!==null?gb(O):null}function gb(O){if(O.tag===5||O.tag===6)return O;for(O=O.child;O!==null;){var w=gb(O);if(w!==null)return w;O=O.sibling}return null}var hp=t.unstable_scheduleCallback,QO=t.unstable_cancelCallback,JO=t.unstable_shouldYield,Sk=t.unstable_requestPaint,Ar=t.unstable_now,Ck=t.unstable_getCurrentPriorityLevel,Ta=t.unstable_ImmediatePriority,ey=t.unstable_UserBlockingPriority,Mb=t.unstable_NormalPriority,bn=t.unstable_LowPriority,vr=t.unstable_IdlePriority,T1=null,$o=null;function ei(O){if($o&&typeof $o.onCommitFiberRoot=="function")try{$o.onCommitFiberRoot(T1,O,void 0,(O.current.flags&128)===128)}catch{}}var I0=Math.clz32?Math.clz32:qk,mp=Math.log,gp=Math.LN2;function qk(O){return O>>>=0,O===0?32:31-(mp(O)/gp|0)|0}var Mp=64,Fc=4194304;function Ea(O){switch(O&-O){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 O&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return O&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return O}}function Dm(O,w){var q=O.pendingLanes;if(q===0)return 0;var W=0,D=O.suspendedLanes,K=O.pingedLanes,le=q&268435455;if(le!==0){var Te=le&~D;Te!==0?W=Ea(Te):(K&=le,K!==0&&(W=Ea(K)))}else le=q&~D,le!==0?W=Ea(le):K!==0&&(W=Ea(K));if(W===0)return 0;if(w!==0&&w!==W&&!(w&D)&&(D=W&-W,K=w&-w,D>=K||D===16&&(K&4194240)!==0))return w;if(W&4&&(W|=q&16),w=O.entangledLanes,w!==0)for(O=O.entanglements,w&=W;0<w;)q=31-I0(w),D=1<<q,W|=O[q],w&=~D;return W}function xF(O,w){switch(O){case 1:case 2:case 4:return w+250;case 8:case 16:case 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 w+5e3;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return-1;case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function ty(O,w){for(var q=O.suspendedLanes,W=O.pingedLanes,D=O.expirationTimes,K=O.pendingLanes;0<K;){var le=31-I0(K),Te=1<<le,Le=D[le];Le===-1?(!(Te&q)||Te&W)&&(D[le]=xF(Te,w)):Le<=w&&(O.expiredLanes|=Te),K&=~Te}}function Rk(O){return O=O.pendingLanes&-1073741825,O!==0?O:O&1073741824?1073741824:0}function wF(){var O=Mp;return Mp<<=1,!(Mp&4194240)&&(Mp=64),O}function Tk(O){for(var w=[],q=0;31>q;q++)w.push(O);return w}function Fm(O,w,q){O.pendingLanes|=w,w!==536870912&&(O.suspendedLanes=0,O.pingedLanes=0),O=O.eventTimes,w=31-I0(w),O[w]=q}function ywe(O,w){var q=O.pendingLanes&~w;O.pendingLanes=w,O.suspendedLanes=0,O.pingedLanes=0,O.expiredLanes&=w,O.mutableReadLanes&=w,O.entangledLanes&=w,w=O.entanglements;var W=O.eventTimes;for(O=O.expirationTimes;0<q;){var D=31-I0(q),K=1<<D;w[D]=0,W[D]=-1,O[D]=-1,q&=~K}}function Ek(O,w){var q=O.entangledLanes|=w;for(O=O.entanglements;q;){var W=31-I0(q),D=1<<W;D&w|O[W]&w&&(O[W]|=w),q&=~D}}var Eo=0;function _F(O){return O&=-O,1<O?4<O?O&268435455?16:536870912:4:1}var kF,Wk,SF,CF,qF,Nk=!1,ny=[],uu=null,du=null,pu=null,$m=new Map,Vm=new Map,fu=[],Awe="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function RF(O,w){switch(O){case"focusin":case"focusout":uu=null;break;case"dragenter":case"dragleave":du=null;break;case"mouseover":case"mouseout":pu=null;break;case"pointerover":case"pointerout":$m.delete(w.pointerId);break;case"gotpointercapture":case"lostpointercapture":Vm.delete(w.pointerId)}}function Hm(O,w,q,W,D,K){return O===null||O.nativeEvent!==K?(O={blockedOn:w,domEventName:q,eventSystemFlags:W,nativeEvent:K,targetContainers:[D]},w!==null&&(w=sg(w),w!==null&&Wk(w)),O):(O.eventSystemFlags|=W,w=O.targetContainers,D!==null&&w.indexOf(D)===-1&&w.push(D),O)}function vwe(O,w,q,W,D){switch(w){case"focusin":return uu=Hm(uu,O,w,q,W,D),!0;case"dragenter":return du=Hm(du,O,w,q,W,D),!0;case"mouseover":return pu=Hm(pu,O,w,q,W,D),!0;case"pointerover":var K=D.pointerId;return $m.set(K,Hm($m.get(K)||null,O,w,q,W,D)),!0;case"gotpointercapture":return K=D.pointerId,Vm.set(K,Hm(Vm.get(K)||null,O,w,q,W,D)),!0}return!1}function TF(O){var w=zp(O.target);if(w!==null){var q=ao(w);if(q!==null){if(w=q.tag,w===13){if(w=Dc(q),w!==null){O.blockedOn=w,qF(O.priority,function(){SF(q)});return}}else if(w===3&&q.stateNode.current.memoizedState.isDehydrated){O.blockedOn=q.tag===3?q.stateNode.containerInfo:null;return}}}O.blockedOn=null}function oy(O){if(O.blockedOn!==null)return!1;for(var w=O.targetContainers;0<w.length;){var q=Lk(O.domEventName,O.eventSystemFlags,w[0],O.nativeEvent);if(q===null){q=O.nativeEvent;var W=new q.constructor(q.type,q);Mt=W,q.target.dispatchEvent(W),Mt=null}else return w=sg(q),w!==null&&Wk(w),O.blockedOn=q,!1;w.shift()}return!0}function EF(O,w,q){oy(O)&&q.delete(w)}function xwe(){Nk=!1,uu!==null&&oy(uu)&&(uu=null),du!==null&&oy(du)&&(du=null),pu!==null&&oy(pu)&&(pu=null),$m.forEach(EF),Vm.forEach(EF)}function Um(O,w){O.blockedOn===w&&(O.blockedOn=null,Nk||(Nk=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,xwe)))}function Xm(O){function w(D){return Um(D,O)}if(0<ny.length){Um(ny[0],O);for(var q=1;q<ny.length;q++){var W=ny[q];W.blockedOn===O&&(W.blockedOn=null)}}for(uu!==null&&Um(uu,O),du!==null&&Um(du,O),pu!==null&&Um(pu,O),$m.forEach(w),Vm.forEach(w),q=0;q<fu.length;q++)W=fu[q],W.blockedOn===O&&(W.blockedOn=null);for(;0<fu.length&&(q=fu[0],q.blockedOn===null);)TF(q),q.blockedOn===null&&fu.shift()}var zb=M.ReactCurrentBatchConfig,ry=!0;function wwe(O,w,q,W){var D=Eo,K=zb.transition;zb.transition=null;try{Eo=1,Bk(O,w,q,W)}finally{Eo=D,zb.transition=K}}function _we(O,w,q,W){var D=Eo,K=zb.transition;zb.transition=null;try{Eo=4,Bk(O,w,q,W)}finally{Eo=D,zb.transition=K}}function Bk(O,w,q,W){if(ry){var D=Lk(O,w,q,W);if(D===null)e6(O,w,W,sy,q),RF(O,W);else if(vwe(D,O,w,q,W))W.stopPropagation();else if(RF(O,W),w&4&&-1<Awe.indexOf(O)){for(;D!==null;){var K=sg(D);if(K!==null&&kF(K),K=Lk(O,w,q,W),K===null&&e6(O,w,W,sy,q),K===D)break;D=K}D!==null&&W.stopPropagation()}else e6(O,w,W,null,q)}}var sy=null;function Lk(O,w,q,W){if(sy=null,O=ot(W),O=zp(O),O!==null)if(w=ao(O),w===null)O=null;else if(q=w.tag,q===13){if(O=Dc(w),O!==null)return O;O=null}else if(q===3){if(w.stateNode.current.memoizedState.isDehydrated)return w.tag===3?w.stateNode.containerInfo:null;O=null}else w!==O&&(O=null);return sy=O,null}function WF(O){switch(O){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Ck()){case Ta:return 1;case ey:return 4;case Mb:case bn:return 16;case vr:return 536870912;default:return 16}default:return 16}}var bu=null,Pk=null,iy=null;function NF(){if(iy)return iy;var O,w=Pk,q=w.length,W,D="value"in bu?bu.value:bu.textContent,K=D.length;for(O=0;O<q&&w[O]===D[O];O++);var le=q-O;for(W=1;W<=le&&w[q-W]===D[K-W];W++);return iy=D.slice(O,1<W?1-W:void 0)}function ay(O){var w=O.keyCode;return"charCode"in O?(O=O.charCode,O===0&&w===13&&(O=13)):O=w,O===10&&(O=13),32<=O||O===13?O:0}function cy(){return!0}function BF(){return!1}function ks(O){function w(q,W,D,K,le){this._reactName=q,this._targetInst=D,this.type=W,this.nativeEvent=K,this.target=le,this.currentTarget=null;for(var Te in O)O.hasOwnProperty(Te)&&(q=O[Te],this[Te]=q?q(K):K[Te]);return this.isDefaultPrevented=(K.defaultPrevented!=null?K.defaultPrevented:K.returnValue===!1)?cy:BF,this.isPropagationStopped=BF,this}return Z(w.prototype,{preventDefault:function(){this.defaultPrevented=!0;var q=this.nativeEvent;q&&(q.preventDefault?q.preventDefault():typeof q.returnValue!="unknown"&&(q.returnValue=!1),this.isDefaultPrevented=cy)},stopPropagation:function(){var q=this.nativeEvent;q&&(q.stopPropagation?q.stopPropagation():typeof q.cancelBubble!="unknown"&&(q.cancelBubble=!0),this.isPropagationStopped=cy)},persist:function(){},isPersistent:cy}),w}var Ob={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(O){return O.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},jk=ks(Ob),Gm=Z({},Ob,{view:0,detail:0}),kwe=ks(Gm),Ik,Dk,Km,ly=Z({},Gm,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:$k,button:0,buttons:0,relatedTarget:function(O){return O.relatedTarget===void 0?O.fromElement===O.srcElement?O.toElement:O.fromElement:O.relatedTarget},movementX:function(O){return"movementX"in O?O.movementX:(O!==Km&&(Km&&O.type==="mousemove"?(Ik=O.screenX-Km.screenX,Dk=O.screenY-Km.screenY):Dk=Ik=0,Km=O),Ik)},movementY:function(O){return"movementY"in O?O.movementY:Dk}}),LF=ks(ly),Swe=Z({},ly,{dataTransfer:0}),Cwe=ks(Swe),qwe=Z({},Gm,{relatedTarget:0}),Fk=ks(qwe),Rwe=Z({},Ob,{animationName:0,elapsedTime:0,pseudoElement:0}),Twe=ks(Rwe),Ewe=Z({},Ob,{clipboardData:function(O){return"clipboardData"in O?O.clipboardData:window.clipboardData}}),Wwe=ks(Ewe),Nwe=Z({},Ob,{data:0}),PF=ks(Nwe),Bwe={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Lwe={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Pwe={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function jwe(O){var w=this.nativeEvent;return w.getModifierState?w.getModifierState(O):(O=Pwe[O])?!!w[O]:!1}function $k(){return jwe}var Iwe=Z({},Gm,{key:function(O){if(O.key){var w=Bwe[O.key]||O.key;if(w!=="Unidentified")return w}return O.type==="keypress"?(O=ay(O),O===13?"Enter":String.fromCharCode(O)):O.type==="keydown"||O.type==="keyup"?Lwe[O.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:$k,charCode:function(O){return O.type==="keypress"?ay(O):0},keyCode:function(O){return O.type==="keydown"||O.type==="keyup"?O.keyCode:0},which:function(O){return O.type==="keypress"?ay(O):O.type==="keydown"||O.type==="keyup"?O.keyCode:0}}),Dwe=ks(Iwe),Fwe=Z({},ly,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),jF=ks(Fwe),$we=Z({},Gm,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:$k}),Vwe=ks($we),Hwe=Z({},Ob,{propertyName:0,elapsedTime:0,pseudoElement:0}),Uwe=ks(Hwe),Xwe=Z({},ly,{deltaX:function(O){return"deltaX"in O?O.deltaX:"wheelDeltaX"in O?-O.wheelDeltaX:0},deltaY:function(O){return"deltaY"in O?O.deltaY:"wheelDeltaY"in O?-O.wheelDeltaY:"wheelDelta"in O?-O.wheelDelta:0},deltaZ:0,deltaMode:0}),Gwe=ks(Xwe),Kwe=[9,13,27,32],Vk=c&&"CompositionEvent"in window,Ym=null;c&&"documentMode"in document&&(Ym=document.documentMode);var Ywe=c&&"TextEvent"in window&&!Ym,IF=c&&(!Vk||Ym&&8<Ym&&11>=Ym),DF=" ",FF=!1;function $F(O,w){switch(O){case"keyup":return Kwe.indexOf(w.keyCode)!==-1;case"keydown":return w.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function VF(O){return O=O.detail,typeof O=="object"&&"data"in O?O.data:null}var yb=!1;function Zwe(O,w){switch(O){case"compositionend":return VF(w);case"keypress":return w.which!==32?null:(FF=!0,DF);case"textInput":return O=w.data,O===DF&&FF?null:O;default:return null}}function Qwe(O,w){if(yb)return O==="compositionend"||!Vk&&$F(O,w)?(O=NF(),iy=Pk=bu=null,yb=!1,O):null;switch(O){case"paste":return null;case"keypress":if(!(w.ctrlKey||w.altKey||w.metaKey)||w.ctrlKey&&w.altKey){if(w.char&&1<w.char.length)return w.char;if(w.which)return String.fromCharCode(w.which)}return null;case"compositionend":return IF&&w.locale!=="ko"?null:w.data;default:return null}}var Jwe={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function HF(O){var w=O&&O.nodeName&&O.nodeName.toLowerCase();return w==="input"?!!Jwe[O.type]:w==="textarea"}function UF(O,w,q,W){Mo(W),w=by(w,"onChange"),0<w.length&&(q=new jk("onChange","change",null,q,W),O.push({event:q,listeners:w}))}var Zm=null,Qm=null;function e_e(O){u$(O,0)}function uy(O){var w=_b(O);if(je(w))return O}function t_e(O,w){if(O==="change")return w}var XF=!1;if(c){var Hk;if(c){var Uk="oninput"in document;if(!Uk){var GF=document.createElement("div");GF.setAttribute("oninput","return;"),Uk=typeof GF.oninput=="function"}Hk=Uk}else Hk=!1;XF=Hk&&(!document.documentMode||9<document.documentMode)}function KF(){Zm&&(Zm.detachEvent("onpropertychange",YF),Qm=Zm=null)}function YF(O){if(O.propertyName==="value"&&uy(Qm)){var w=[];UF(w,Qm,O,ot(O)),Rt(e_e,w)}}function n_e(O,w,q){O==="focusin"?(KF(),Zm=w,Qm=q,Zm.attachEvent("onpropertychange",YF)):O==="focusout"&&KF()}function o_e(O){if(O==="selectionchange"||O==="keyup"||O==="keydown")return uy(Qm)}function r_e(O,w){if(O==="click")return uy(w)}function s_e(O,w){if(O==="input"||O==="change")return uy(w)}function i_e(O,w){return O===w&&(O!==0||1/O===1/w)||O!==O&&w!==w}var Ki=typeof Object.is=="function"?Object.is:i_e;function Jm(O,w){if(Ki(O,w))return!0;if(typeof O!="object"||O===null||typeof w!="object"||w===null)return!1;var q=Object.keys(O),W=Object.keys(w);if(q.length!==W.length)return!1;for(W=0;W<q.length;W++){var D=q[W];if(!l.call(w,D)||!Ki(O[D],w[D]))return!1}return!0}function ZF(O){for(;O&&O.firstChild;)O=O.firstChild;return O}function QF(O,w){var q=ZF(O);O=0;for(var W;q;){if(q.nodeType===3){if(W=O+q.textContent.length,O<=w&&W>=w)return{node:q,offset:w-O};O=W}e:{for(;q;){if(q.nextSibling){q=q.nextSibling;break e}q=q.parentNode}q=void 0}q=ZF(q)}}function JF(O,w){return O&&w?O===w?!0:O&&O.nodeType===3?!1:w&&w.nodeType===3?JF(O,w.parentNode):"contains"in O?O.contains(w):O.compareDocumentPosition?!!(O.compareDocumentPosition(w)&16):!1:!1}function e$(){for(var O=window,w=ie();w instanceof O.HTMLIFrameElement;){try{var q=typeof w.contentWindow.location.href=="string"}catch{q=!1}if(q)O=w.contentWindow;else break;w=ie(O.document)}return w}function Xk(O){var w=O&&O.nodeName&&O.nodeName.toLowerCase();return w&&(w==="input"&&(O.type==="text"||O.type==="search"||O.type==="tel"||O.type==="url"||O.type==="password")||w==="textarea"||O.contentEditable==="true")}function a_e(O){var w=e$(),q=O.focusedElem,W=O.selectionRange;if(w!==q&&q&&q.ownerDocument&&JF(q.ownerDocument.documentElement,q)){if(W!==null&&Xk(q)){if(w=W.start,O=W.end,O===void 0&&(O=w),"selectionStart"in q)q.selectionStart=w,q.selectionEnd=Math.min(O,q.value.length);else if(O=(w=q.ownerDocument||document)&&w.defaultView||window,O.getSelection){O=O.getSelection();var D=q.textContent.length,K=Math.min(W.start,D);W=W.end===void 0?K:Math.min(W.end,D),!O.extend&&K>W&&(D=W,W=K,K=D),D=QF(q,K);var le=QF(q,W);D&&le&&(O.rangeCount!==1||O.anchorNode!==D.node||O.anchorOffset!==D.offset||O.focusNode!==le.node||O.focusOffset!==le.offset)&&(w=w.createRange(),w.setStart(D.node,D.offset),O.removeAllRanges(),K>W?(O.addRange(w),O.extend(le.node,le.offset)):(w.setEnd(le.node,le.offset),O.addRange(w)))}}for(w=[],O=q;O=O.parentNode;)O.nodeType===1&&w.push({element:O,left:O.scrollLeft,top:O.scrollTop});for(typeof q.focus=="function"&&q.focus(),q=0;q<w.length;q++)O=w[q],O.element.scrollLeft=O.left,O.element.scrollTop=O.top}}var c_e=c&&"documentMode"in document&&11>=document.documentMode,Ab=null,Gk=null,eg=null,Kk=!1;function t$(O,w,q){var W=q.window===q?q.document:q.nodeType===9?q:q.ownerDocument;Kk||Ab==null||Ab!==ie(W)||(W=Ab,"selectionStart"in W&&Xk(W)?W={start:W.selectionStart,end:W.selectionEnd}:(W=(W.ownerDocument&&W.ownerDocument.defaultView||window).getSelection(),W={anchorNode:W.anchorNode,anchorOffset:W.anchorOffset,focusNode:W.focusNode,focusOffset:W.focusOffset}),eg&&Jm(eg,W)||(eg=W,W=by(Gk,"onSelect"),0<W.length&&(w=new jk("onSelect","select",null,w,q),O.push({event:w,listeners:W}),w.target=Ab)))}function dy(O,w){var q={};return q[O.toLowerCase()]=w.toLowerCase(),q["Webkit"+O]="webkit"+w,q["Moz"+O]="moz"+w,q}var vb={animationend:dy("Animation","AnimationEnd"),animationiteration:dy("Animation","AnimationIteration"),animationstart:dy("Animation","AnimationStart"),transitionend:dy("Transition","TransitionEnd")},Yk={},n$={};c&&(n$=document.createElement("div").style,"AnimationEvent"in window||(delete vb.animationend.animation,delete vb.animationiteration.animation,delete vb.animationstart.animation),"TransitionEvent"in window||delete vb.transitionend.transition);function py(O){if(Yk[O])return Yk[O];if(!vb[O])return O;var w=vb[O],q;for(q in w)if(w.hasOwnProperty(q)&&q in n$)return Yk[O]=w[q];return O}var o$=py("animationend"),r$=py("animationiteration"),s$=py("animationstart"),i$=py("transitionend"),a$=new Map,c$="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function hu(O,w){a$.set(O,w),s(w,[O])}for(var Zk=0;Zk<c$.length;Zk++){var Qk=c$[Zk],l_e=Qk.toLowerCase(),u_e=Qk[0].toUpperCase()+Qk.slice(1);hu(l_e,"on"+u_e)}hu(o$,"onAnimationEnd"),hu(r$,"onAnimationIteration"),hu(s$,"onAnimationStart"),hu("dblclick","onDoubleClick"),hu("focusin","onFocus"),hu("focusout","onBlur"),hu(i$,"onTransitionEnd"),i("onMouseEnter",["mouseout","mouseover"]),i("onMouseLeave",["mouseout","mouseover"]),i("onPointerEnter",["pointerout","pointerover"]),i("onPointerLeave",["pointerout","pointerover"]),s("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),s("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),s("onBeforeInput",["compositionend","keypress","textInput","paste"]),s("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),s("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),s("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var tg="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),d_e=new Set("cancel close invalid load scroll toggle".split(" ").concat(tg));function l$(O,w,q){var W=O.type||"unknown-event";O.currentTarget=q,Js(W,w,void 0,O),O.currentTarget=null}function u$(O,w){w=(w&4)!==0;for(var q=0;q<O.length;q++){var W=O[q],D=W.event;W=W.listeners;e:{var K=void 0;if(w)for(var le=W.length-1;0<=le;le--){var Te=W[le],Le=Te.instance,Ge=Te.currentTarget;if(Te=Te.listener,Le!==K&&D.isPropagationStopped())break e;l$(D,Te,Ge),K=Le}else for(le=0;le<W.length;le++){if(Te=W[le],Le=Te.instance,Ge=Te.currentTarget,Te=Te.listener,Le!==K&&D.isPropagationStopped())break e;l$(D,Te,Ge),K=Le}}}if(pr)throw O=O0,pr=!1,O0=null,O}function sr(O,w){var q=w[i6];q===void 0&&(q=w[i6]=new Set);var W=O+"__bubble";q.has(W)||(d$(w,O,2,!1),q.add(W))}function Jk(O,w,q){var W=0;w&&(W|=4),d$(q,O,W,w)}var fy="_reactListening"+Math.random().toString(36).slice(2);function ng(O){if(!O[fy]){O[fy]=!0,o.forEach(function(q){q!=="selectionchange"&&(d_e.has(q)||Jk(q,!1,O),Jk(q,!0,O))});var w=O.nodeType===9?O:O.ownerDocument;w===null||w[fy]||(w[fy]=!0,Jk("selectionchange",!1,w))}}function d$(O,w,q,W){switch(WF(w)){case 1:var D=wwe;break;case 4:D=_we;break;default:D=Bk}q=D.bind(null,w,q,O),D=void 0,!xt||w!=="touchstart"&&w!=="touchmove"&&w!=="wheel"||(D=!0),W?D!==void 0?O.addEventListener(w,q,{capture:!0,passive:D}):O.addEventListener(w,q,!0):D!==void 0?O.addEventListener(w,q,{passive:D}):O.addEventListener(w,q,!1)}function e6(O,w,q,W,D){var K=W;if(!(w&1)&&!(w&2)&&W!==null)e:for(;;){if(W===null)return;var le=W.tag;if(le===3||le===4){var Te=W.stateNode.containerInfo;if(Te===D||Te.nodeType===8&&Te.parentNode===D)break;if(le===4)for(le=W.return;le!==null;){var Le=le.tag;if((Le===3||Le===4)&&(Le=le.stateNode.containerInfo,Le===D||Le.nodeType===8&&Le.parentNode===D))return;le=le.return}for(;Te!==null;){if(le=zp(Te),le===null)return;if(Le=le.tag,Le===5||Le===6){W=K=le;continue e}Te=Te.parentNode}}W=W.return}Rt(function(){var Ge=K,at=ot(q),ut=[];e:{var st=a$.get(O);if(st!==void 0){var Wt=jk,$t=O;switch(O){case"keypress":if(ay(q)===0)break e;case"keydown":case"keyup":Wt=Dwe;break;case"focusin":$t="focus",Wt=Fk;break;case"focusout":$t="blur",Wt=Fk;break;case"beforeblur":case"afterblur":Wt=Fk;break;case"click":if(q.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":Wt=LF;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":Wt=Cwe;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":Wt=Vwe;break;case o$:case r$:case s$:Wt=Twe;break;case i$:Wt=Uwe;break;case"scroll":Wt=kwe;break;case"wheel":Wt=Gwe;break;case"copy":case"cut":case"paste":Wt=Wwe;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":Wt=jF}var Ut=(w&4)!==0,Vr=!Ut&&O==="scroll",Fe=Ut?st!==null?st+"Capture":null:st;Ut=[];for(var De=Ge,Ve;De!==null;){Ve=De;var ft=Ve.stateNode;if(Ve.tag===5&&ft!==null&&(Ve=ft,Fe!==null&&(ft=Qe(De,Fe),ft!=null&&Ut.push(og(De,ft,Ve)))),Vr)break;De=De.return}0<Ut.length&&(st=new Wt(st,$t,null,q,at),ut.push({event:st,listeners:Ut}))}}if(!(w&7)){e:{if(st=O==="mouseover"||O==="pointerover",Wt=O==="mouseout"||O==="pointerout",st&&q!==Mt&&($t=q.relatedTarget||q.fromElement)&&(zp($t)||$t[$c]))break e;if((Wt||st)&&(st=at.window===at?at:(st=at.ownerDocument)?st.defaultView||st.parentWindow:window,Wt?($t=q.relatedTarget||q.toElement,Wt=Ge,$t=$t?zp($t):null,$t!==null&&(Vr=ao($t),$t!==Vr||$t.tag!==5&&$t.tag!==6)&&($t=null)):(Wt=null,$t=Ge),Wt!==$t)){if(Ut=LF,ft="onMouseLeave",Fe="onMouseEnter",De="mouse",(O==="pointerout"||O==="pointerover")&&(Ut=jF,ft="onPointerLeave",Fe="onPointerEnter",De="pointer"),Vr=Wt==null?st:_b(Wt),Ve=$t==null?st:_b($t),st=new Ut(ft,De+"leave",Wt,q,at),st.target=Vr,st.relatedTarget=Ve,ft=null,zp(at)===Ge&&(Ut=new Ut(Fe,De+"enter",$t,q,at),Ut.target=Ve,Ut.relatedTarget=Vr,ft=Ut),Vr=ft,Wt&&$t)t:{for(Ut=Wt,Fe=$t,De=0,Ve=Ut;Ve;Ve=xb(Ve))De++;for(Ve=0,ft=Fe;ft;ft=xb(ft))Ve++;for(;0<De-Ve;)Ut=xb(Ut),De--;for(;0<Ve-De;)Fe=xb(Fe),Ve--;for(;De--;){if(Ut===Fe||Fe!==null&&Ut===Fe.alternate)break t;Ut=xb(Ut),Fe=xb(Fe)}Ut=null}else Ut=null;Wt!==null&&p$(ut,st,Wt,Ut,!1),$t!==null&&Vr!==null&&p$(ut,Vr,$t,Ut,!0)}}e:{if(st=Ge?_b(Ge):window,Wt=st.nodeName&&st.nodeName.toLowerCase(),Wt==="select"||Wt==="input"&&st.type==="file")var Kt=t_e;else if(HF(st))if(XF)Kt=s_e;else{Kt=o_e;var cn=n_e}else(Wt=st.nodeName)&&Wt.toLowerCase()==="input"&&(st.type==="checkbox"||st.type==="radio")&&(Kt=r_e);if(Kt&&(Kt=Kt(O,Ge))){UF(ut,Kt,q,at);break e}cn&&cn(O,st,Ge),O==="focusout"&&(cn=st._wrapperState)&&cn.controlled&&st.type==="number"&&se(st,"number",st.value)}switch(cn=Ge?_b(Ge):window,O){case"focusin":(HF(cn)||cn.contentEditable==="true")&&(Ab=cn,Gk=Ge,eg=null);break;case"focusout":eg=Gk=Ab=null;break;case"mousedown":Kk=!0;break;case"contextmenu":case"mouseup":case"dragend":Kk=!1,t$(ut,q,at);break;case"selectionchange":if(c_e)break;case"keydown":case"keyup":t$(ut,q,at)}var ln;if(Vk)e:{switch(O){case"compositionstart":var yn="onCompositionStart";break e;case"compositionend":yn="onCompositionEnd";break e;case"compositionupdate":yn="onCompositionUpdate";break e}yn=void 0}else yb?$F(O,q)&&(yn="onCompositionEnd"):O==="keydown"&&q.keyCode===229&&(yn="onCompositionStart");yn&&(IF&&q.locale!=="ko"&&(yb||yn!=="onCompositionStart"?yn==="onCompositionEnd"&&yb&&(ln=NF()):(bu=at,Pk="value"in bu?bu.value:bu.textContent,yb=!0)),cn=by(Ge,yn),0<cn.length&&(yn=new PF(yn,O,null,q,at),ut.push({event:yn,listeners:cn}),ln?yn.data=ln:(ln=VF(q),ln!==null&&(yn.data=ln)))),(ln=Ywe?Zwe(O,q):Qwe(O,q))&&(Ge=by(Ge,"onBeforeInput"),0<Ge.length&&(at=new PF("onBeforeInput","beforeinput",null,q,at),ut.push({event:at,listeners:Ge}),at.data=ln))}u$(ut,w)})}function og(O,w,q){return{instance:O,listener:w,currentTarget:q}}function by(O,w){for(var q=w+"Capture",W=[];O!==null;){var D=O,K=D.stateNode;D.tag===5&&K!==null&&(D=K,K=Qe(O,q),K!=null&&W.unshift(og(O,K,D)),K=Qe(O,w),K!=null&&W.push(og(O,K,D))),O=O.return}return W}function xb(O){if(O===null)return null;do O=O.return;while(O&&O.tag!==5);return O||null}function p$(O,w,q,W,D){for(var K=w._reactName,le=[];q!==null&&q!==W;){var Te=q,Le=Te.alternate,Ge=Te.stateNode;if(Le!==null&&Le===W)break;Te.tag===5&&Ge!==null&&(Te=Ge,D?(Le=Qe(q,K),Le!=null&&le.unshift(og(q,Le,Te))):D||(Le=Qe(q,K),Le!=null&&le.push(og(q,Le,Te)))),q=q.return}le.length!==0&&O.push({event:w,listeners:le})}var p_e=/\r\n?/g,f_e=/\u0000|\uFFFD/g;function f$(O){return(typeof O=="string"?O:""+O).replace(p_e,` -`).replace(f_e,"")}function hy(O,w,q){if(w=f$(w),f$(O)!==w&&q)throw Error(n(425))}function my(){}var t6=null,n6=null;function o6(O,w){return O==="textarea"||O==="noscript"||typeof w.children=="string"||typeof w.children=="number"||typeof w.dangerouslySetInnerHTML=="object"&&w.dangerouslySetInnerHTML!==null&&w.dangerouslySetInnerHTML.__html!=null}var r6=typeof setTimeout=="function"?setTimeout:void 0,b_e=typeof clearTimeout=="function"?clearTimeout:void 0,b$=typeof Promise=="function"?Promise:void 0,h_e=typeof queueMicrotask=="function"?queueMicrotask:typeof b$<"u"?function(O){return b$.resolve(null).then(O).catch(m_e)}:r6;function m_e(O){setTimeout(function(){throw O})}function s6(O,w){var q=w,W=0;do{var D=q.nextSibling;if(O.removeChild(q),D&&D.nodeType===8)if(q=D.data,q==="/$"){if(W===0){O.removeChild(D),Xm(w);return}W--}else q!=="$"&&q!=="$?"&&q!=="$!"||W++;q=D}while(q);Xm(w)}function mu(O){for(;O!=null;O=O.nextSibling){var w=O.nodeType;if(w===1||w===3)break;if(w===8){if(w=O.data,w==="$"||w==="$!"||w==="$?")break;if(w==="/$")return null}}return O}function h$(O){O=O.previousSibling;for(var w=0;O;){if(O.nodeType===8){var q=O.data;if(q==="$"||q==="$!"||q==="$?"){if(w===0)return O;w--}else q==="/$"&&w++}O=O.previousSibling}return null}var wb=Math.random().toString(36).slice(2),Wa="__reactFiber$"+wb,rg="__reactProps$"+wb,$c="__reactContainer$"+wb,i6="__reactEvents$"+wb,g_e="__reactListeners$"+wb,M_e="__reactHandles$"+wb;function zp(O){var w=O[Wa];if(w)return w;for(var q=O.parentNode;q;){if(w=q[$c]||q[Wa]){if(q=w.alternate,w.child!==null||q!==null&&q.child!==null)for(O=h$(O);O!==null;){if(q=O[Wa])return q;O=h$(O)}return w}O=q,q=O.parentNode}return null}function sg(O){return O=O[Wa]||O[$c],!O||O.tag!==5&&O.tag!==6&&O.tag!==13&&O.tag!==3?null:O}function _b(O){if(O.tag===5||O.tag===6)return O.stateNode;throw Error(n(33))}function gy(O){return O[rg]||null}var a6=[],kb=-1;function gu(O){return{current:O}}function ir(O){0>kb||(O.current=a6[kb],a6[kb]=null,kb--)}function er(O,w){kb++,a6[kb]=O.current,O.current=w}var Mu={},r1=gu(Mu),K1=gu(!1),Op=Mu;function Sb(O,w){var q=O.type.contextTypes;if(!q)return Mu;var W=O.stateNode;if(W&&W.__reactInternalMemoizedUnmaskedChildContext===w)return W.__reactInternalMemoizedMaskedChildContext;var D={},K;for(K in q)D[K]=w[K];return W&&(O=O.stateNode,O.__reactInternalMemoizedUnmaskedChildContext=w,O.__reactInternalMemoizedMaskedChildContext=D),D}function Y1(O){return O=O.childContextTypes,O!=null}function My(){ir(K1),ir(r1)}function m$(O,w,q){if(r1.current!==Mu)throw Error(n(168));er(r1,w),er(K1,q)}function g$(O,w,q){var W=O.stateNode;if(w=w.childContextTypes,typeof W.getChildContext!="function")return q;W=W.getChildContext();for(var D in W)if(!(D in w))throw Error(n(108,me(O)||"Unknown",D));return Z({},q,W)}function zy(O){return O=(O=O.stateNode)&&O.__reactInternalMemoizedMergedChildContext||Mu,Op=r1.current,er(r1,O),er(K1,K1.current),!0}function M$(O,w,q){var W=O.stateNode;if(!W)throw Error(n(169));q?(O=g$(O,w,Op),W.__reactInternalMemoizedMergedChildContext=O,ir(K1),ir(r1),er(r1,O)):ir(K1),er(K1,q)}var Vc=null,Oy=!1,c6=!1;function z$(O){Vc===null?Vc=[O]:Vc.push(O)}function z_e(O){Oy=!0,z$(O)}function zu(){if(!c6&&Vc!==null){c6=!0;var O=0,w=Eo;try{var q=Vc;for(Eo=1;O<q.length;O++){var W=q[O];do W=W(!0);while(W!==null)}Vc=null,Oy=!1}catch(D){throw Vc!==null&&(Vc=Vc.slice(O+1)),hp(Ta,zu),D}finally{Eo=w,c6=!1}}return null}var Cb=[],qb=0,yy=null,Ay=0,ti=[],ni=0,yp=null,Hc=1,Uc="";function Ap(O,w){Cb[qb++]=Ay,Cb[qb++]=yy,yy=O,Ay=w}function O$(O,w,q){ti[ni++]=Hc,ti[ni++]=Uc,ti[ni++]=yp,yp=O;var W=Hc;O=Uc;var D=32-I0(W)-1;W&=~(1<<D),q+=1;var K=32-I0(w)+D;if(30<K){var le=D-D%5;K=(W&(1<<le)-1).toString(32),W>>=le,D-=le,Hc=1<<32-I0(w)+D|q<<D|W,Uc=K+O}else Hc=1<<K|q<<D|W,Uc=O}function l6(O){O.return!==null&&(Ap(O,1),O$(O,1,0))}function u6(O){for(;O===yy;)yy=Cb[--qb],Cb[qb]=null,Ay=Cb[--qb],Cb[qb]=null;for(;O===yp;)yp=ti[--ni],ti[ni]=null,Uc=ti[--ni],ti[ni]=null,Hc=ti[--ni],ti[ni]=null}var Ss=null,Cs=null,fr=!1,Yi=null;function y$(O,w){var q=ii(5,null,null,0);q.elementType="DELETED",q.stateNode=w,q.return=O,w=O.deletions,w===null?(O.deletions=[q],O.flags|=16):w.push(q)}function A$(O,w){switch(O.tag){case 5:var q=O.type;return w=w.nodeType!==1||q.toLowerCase()!==w.nodeName.toLowerCase()?null:w,w!==null?(O.stateNode=w,Ss=O,Cs=mu(w.firstChild),!0):!1;case 6:return w=O.pendingProps===""||w.nodeType!==3?null:w,w!==null?(O.stateNode=w,Ss=O,Cs=null,!0):!1;case 13:return w=w.nodeType!==8?null:w,w!==null?(q=yp!==null?{id:Hc,overflow:Uc}:null,O.memoizedState={dehydrated:w,treeContext:q,retryLane:1073741824},q=ii(18,null,null,0),q.stateNode=w,q.return=O,O.child=q,Ss=O,Cs=null,!0):!1;default:return!1}}function d6(O){return(O.mode&1)!==0&&(O.flags&128)===0}function p6(O){if(fr){var w=Cs;if(w){var q=w;if(!A$(O,w)){if(d6(O))throw Error(n(418));w=mu(q.nextSibling);var W=Ss;w&&A$(O,w)?y$(W,q):(O.flags=O.flags&-4097|2,fr=!1,Ss=O)}}else{if(d6(O))throw Error(n(418));O.flags=O.flags&-4097|2,fr=!1,Ss=O}}}function v$(O){for(O=O.return;O!==null&&O.tag!==5&&O.tag!==3&&O.tag!==13;)O=O.return;Ss=O}function vy(O){if(O!==Ss)return!1;if(!fr)return v$(O),fr=!0,!1;var w;if((w=O.tag!==3)&&!(w=O.tag!==5)&&(w=O.type,w=w!=="head"&&w!=="body"&&!o6(O.type,O.memoizedProps)),w&&(w=Cs)){if(d6(O))throw x$(),Error(n(418));for(;w;)y$(O,w),w=mu(w.nextSibling)}if(v$(O),O.tag===13){if(O=O.memoizedState,O=O!==null?O.dehydrated:null,!O)throw Error(n(317));e:{for(O=O.nextSibling,w=0;O;){if(O.nodeType===8){var q=O.data;if(q==="/$"){if(w===0){Cs=mu(O.nextSibling);break e}w--}else q!=="$"&&q!=="$!"&&q!=="$?"||w++}O=O.nextSibling}Cs=null}}else Cs=Ss?mu(O.stateNode.nextSibling):null;return!0}function x$(){for(var O=Cs;O;)O=mu(O.nextSibling)}function Rb(){Cs=Ss=null,fr=!1}function f6(O){Yi===null?Yi=[O]:Yi.push(O)}var O_e=M.ReactCurrentBatchConfig;function ig(O,w,q){if(O=q.ref,O!==null&&typeof O!="function"&&typeof O!="object"){if(q._owner){if(q=q._owner,q){if(q.tag!==1)throw Error(n(309));var W=q.stateNode}if(!W)throw Error(n(147,O));var D=W,K=""+O;return w!==null&&w.ref!==null&&typeof w.ref=="function"&&w.ref._stringRef===K?w.ref:(w=function(le){var Te=D.refs;le===null?delete Te[K]:Te[K]=le},w._stringRef=K,w)}if(typeof O!="string")throw Error(n(284));if(!q._owner)throw Error(n(290,O))}return O}function xy(O,w){throw O=Object.prototype.toString.call(w),Error(n(31,O==="[object Object]"?"object with keys {"+Object.keys(w).join(", ")+"}":O))}function w$(O){var w=O._init;return w(O._payload)}function _$(O){function w(Fe,De){if(O){var Ve=Fe.deletions;Ve===null?(Fe.deletions=[De],Fe.flags|=16):Ve.push(De)}}function q(Fe,De){if(!O)return null;for(;De!==null;)w(Fe,De),De=De.sibling;return null}function W(Fe,De){for(Fe=new Map;De!==null;)De.key!==null?Fe.set(De.key,De):Fe.set(De.index,De),De=De.sibling;return Fe}function D(Fe,De){return Fe=ku(Fe,De),Fe.index=0,Fe.sibling=null,Fe}function K(Fe,De,Ve){return Fe.index=Ve,O?(Ve=Fe.alternate,Ve!==null?(Ve=Ve.index,Ve<De?(Fe.flags|=2,De):Ve):(Fe.flags|=2,De)):(Fe.flags|=1048576,De)}function le(Fe){return O&&Fe.alternate===null&&(Fe.flags|=2),Fe}function Te(Fe,De,Ve,ft){return De===null||De.tag!==6?(De=rS(Ve,Fe.mode,ft),De.return=Fe,De):(De=D(De,Ve),De.return=Fe,De)}function Le(Fe,De,Ve,ft){var Kt=Ve.type;return Kt===S?at(Fe,De,Ve.props.children,ft,Ve.key):De!==null&&(De.elementType===Kt||typeof Kt=="object"&&Kt!==null&&Kt.$$typeof===P&&w$(Kt)===De.type)?(ft=D(De,Ve.props),ft.ref=ig(Fe,De,Ve),ft.return=Fe,ft):(ft=Gy(Ve.type,Ve.key,Ve.props,null,Fe.mode,ft),ft.ref=ig(Fe,De,Ve),ft.return=Fe,ft)}function Ge(Fe,De,Ve,ft){return De===null||De.tag!==4||De.stateNode.containerInfo!==Ve.containerInfo||De.stateNode.implementation!==Ve.implementation?(De=sS(Ve,Fe.mode,ft),De.return=Fe,De):(De=D(De,Ve.children||[]),De.return=Fe,De)}function at(Fe,De,Ve,ft,Kt){return De===null||De.tag!==7?(De=qp(Ve,Fe.mode,ft,Kt),De.return=Fe,De):(De=D(De,Ve),De.return=Fe,De)}function ut(Fe,De,Ve){if(typeof De=="string"&&De!==""||typeof De=="number")return De=rS(""+De,Fe.mode,Ve),De.return=Fe,De;if(typeof De=="object"&&De!==null){switch(De.$$typeof){case y:return Ve=Gy(De.type,De.key,De.props,null,Fe.mode,Ve),Ve.ref=ig(Fe,null,De),Ve.return=Fe,Ve;case k:return De=sS(De,Fe.mode,Ve),De.return=Fe,De;case P:var ft=De._init;return ut(Fe,ft(De._payload),Ve)}if(L(De)||X(De))return De=qp(De,Fe.mode,Ve,null),De.return=Fe,De;xy(Fe,De)}return null}function st(Fe,De,Ve,ft){var Kt=De!==null?De.key:null;if(typeof Ve=="string"&&Ve!==""||typeof Ve=="number")return Kt!==null?null:Te(Fe,De,""+Ve,ft);if(typeof Ve=="object"&&Ve!==null){switch(Ve.$$typeof){case y:return Ve.key===Kt?Le(Fe,De,Ve,ft):null;case k:return Ve.key===Kt?Ge(Fe,De,Ve,ft):null;case P:return Kt=Ve._init,st(Fe,De,Kt(Ve._payload),ft)}if(L(Ve)||X(Ve))return Kt!==null?null:at(Fe,De,Ve,ft,null);xy(Fe,Ve)}return null}function Wt(Fe,De,Ve,ft,Kt){if(typeof ft=="string"&&ft!==""||typeof ft=="number")return Fe=Fe.get(Ve)||null,Te(De,Fe,""+ft,Kt);if(typeof ft=="object"&&ft!==null){switch(ft.$$typeof){case y:return Fe=Fe.get(ft.key===null?Ve:ft.key)||null,Le(De,Fe,ft,Kt);case k:return Fe=Fe.get(ft.key===null?Ve:ft.key)||null,Ge(De,Fe,ft,Kt);case P:var cn=ft._init;return Wt(Fe,De,Ve,cn(ft._payload),Kt)}if(L(ft)||X(ft))return Fe=Fe.get(Ve)||null,at(De,Fe,ft,Kt,null);xy(De,ft)}return null}function $t(Fe,De,Ve,ft){for(var Kt=null,cn=null,ln=De,yn=De=0,v0=null;ln!==null&&yn<Ve.length;yn++){ln.index>yn?(v0=ln,ln=null):v0=ln.sibling;var po=st(Fe,ln,Ve[yn],ft);if(po===null){ln===null&&(ln=v0);break}O&&ln&&po.alternate===null&&w(Fe,ln),De=K(po,De,yn),cn===null?Kt=po:cn.sibling=po,cn=po,ln=v0}if(yn===Ve.length)return q(Fe,ln),fr&&Ap(Fe,yn),Kt;if(ln===null){for(;yn<Ve.length;yn++)ln=ut(Fe,Ve[yn],ft),ln!==null&&(De=K(ln,De,yn),cn===null?Kt=ln:cn.sibling=ln,cn=ln);return fr&&Ap(Fe,yn),Kt}for(ln=W(Fe,ln);yn<Ve.length;yn++)v0=Wt(ln,Fe,yn,Ve[yn],ft),v0!==null&&(O&&v0.alternate!==null&&ln.delete(v0.key===null?yn:v0.key),De=K(v0,De,yn),cn===null?Kt=v0:cn.sibling=v0,cn=v0);return O&&ln.forEach(function(Su){return w(Fe,Su)}),fr&&Ap(Fe,yn),Kt}function Ut(Fe,De,Ve,ft){var Kt=X(Ve);if(typeof Kt!="function")throw Error(n(150));if(Ve=Kt.call(Ve),Ve==null)throw Error(n(151));for(var cn=Kt=null,ln=De,yn=De=0,v0=null,po=Ve.next();ln!==null&&!po.done;yn++,po=Ve.next()){ln.index>yn?(v0=ln,ln=null):v0=ln.sibling;var Su=st(Fe,ln,po.value,ft);if(Su===null){ln===null&&(ln=v0);break}O&&ln&&Su.alternate===null&&w(Fe,ln),De=K(Su,De,yn),cn===null?Kt=Su:cn.sibling=Su,cn=Su,ln=v0}if(po.done)return q(Fe,ln),fr&&Ap(Fe,yn),Kt;if(ln===null){for(;!po.done;yn++,po=Ve.next())po=ut(Fe,po.value,ft),po!==null&&(De=K(po,De,yn),cn===null?Kt=po:cn.sibling=po,cn=po);return fr&&Ap(Fe,yn),Kt}for(ln=W(Fe,ln);!po.done;yn++,po=Ve.next())po=Wt(ln,Fe,yn,po.value,ft),po!==null&&(O&&po.alternate!==null&&ln.delete(po.key===null?yn:po.key),De=K(po,De,yn),cn===null?Kt=po:cn.sibling=po,cn=po);return O&&ln.forEach(function(J_e){return w(Fe,J_e)}),fr&&Ap(Fe,yn),Kt}function Vr(Fe,De,Ve,ft){if(typeof Ve=="object"&&Ve!==null&&Ve.type===S&&Ve.key===null&&(Ve=Ve.props.children),typeof Ve=="object"&&Ve!==null){switch(Ve.$$typeof){case y:e:{for(var Kt=Ve.key,cn=De;cn!==null;){if(cn.key===Kt){if(Kt=Ve.type,Kt===S){if(cn.tag===7){q(Fe,cn.sibling),De=D(cn,Ve.props.children),De.return=Fe,Fe=De;break e}}else if(cn.elementType===Kt||typeof Kt=="object"&&Kt!==null&&Kt.$$typeof===P&&w$(Kt)===cn.type){q(Fe,cn.sibling),De=D(cn,Ve.props),De.ref=ig(Fe,cn,Ve),De.return=Fe,Fe=De;break e}q(Fe,cn);break}else w(Fe,cn);cn=cn.sibling}Ve.type===S?(De=qp(Ve.props.children,Fe.mode,ft,Ve.key),De.return=Fe,Fe=De):(ft=Gy(Ve.type,Ve.key,Ve.props,null,Fe.mode,ft),ft.ref=ig(Fe,De,Ve),ft.return=Fe,Fe=ft)}return le(Fe);case k:e:{for(cn=Ve.key;De!==null;){if(De.key===cn)if(De.tag===4&&De.stateNode.containerInfo===Ve.containerInfo&&De.stateNode.implementation===Ve.implementation){q(Fe,De.sibling),De=D(De,Ve.children||[]),De.return=Fe,Fe=De;break e}else{q(Fe,De);break}else w(Fe,De);De=De.sibling}De=sS(Ve,Fe.mode,ft),De.return=Fe,Fe=De}return le(Fe);case P:return cn=Ve._init,Vr(Fe,De,cn(Ve._payload),ft)}if(L(Ve))return $t(Fe,De,Ve,ft);if(X(Ve))return Ut(Fe,De,Ve,ft);xy(Fe,Ve)}return typeof Ve=="string"&&Ve!==""||typeof Ve=="number"?(Ve=""+Ve,De!==null&&De.tag===6?(q(Fe,De.sibling),De=D(De,Ve),De.return=Fe,Fe=De):(q(Fe,De),De=rS(Ve,Fe.mode,ft),De.return=Fe,Fe=De),le(Fe)):q(Fe,De)}return Vr}var Tb=_$(!0),k$=_$(!1),wy=gu(null),_y=null,Eb=null,b6=null;function h6(){b6=Eb=_y=null}function m6(O){var w=wy.current;ir(wy),O._currentValue=w}function g6(O,w,q){for(;O!==null;){var W=O.alternate;if((O.childLanes&w)!==w?(O.childLanes|=w,W!==null&&(W.childLanes|=w)):W!==null&&(W.childLanes&w)!==w&&(W.childLanes|=w),O===q)break;O=O.return}}function Wb(O,w){_y=O,b6=Eb=null,O=O.dependencies,O!==null&&O.firstContext!==null&&(O.lanes&w&&(Z1=!0),O.firstContext=null)}function oi(O){var w=O._currentValue;if(b6!==O)if(O={context:O,memoizedValue:w,next:null},Eb===null){if(_y===null)throw Error(n(308));Eb=O,_y.dependencies={lanes:0,firstContext:O}}else Eb=Eb.next=O;return w}var vp=null;function M6(O){vp===null?vp=[O]:vp.push(O)}function S$(O,w,q,W){var D=w.interleaved;return D===null?(q.next=q,M6(w)):(q.next=D.next,D.next=q),w.interleaved=q,Xc(O,W)}function Xc(O,w){O.lanes|=w;var q=O.alternate;for(q!==null&&(q.lanes|=w),q=O,O=O.return;O!==null;)O.childLanes|=w,q=O.alternate,q!==null&&(q.childLanes|=w),q=O,O=O.return;return q.tag===3?q.stateNode:null}var Ou=!1;function z6(O){O.updateQueue={baseState:O.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function C$(O,w){O=O.updateQueue,w.updateQueue===O&&(w.updateQueue={baseState:O.baseState,firstBaseUpdate:O.firstBaseUpdate,lastBaseUpdate:O.lastBaseUpdate,shared:O.shared,effects:O.effects})}function Gc(O,w){return{eventTime:O,lane:w,tag:0,payload:null,callback:null,next:null}}function yu(O,w,q){var W=O.updateQueue;if(W===null)return null;if(W=W.shared,co&2){var D=W.pending;return D===null?w.next=w:(w.next=D.next,D.next=w),W.pending=w,Xc(O,q)}return D=W.interleaved,D===null?(w.next=w,M6(W)):(w.next=D.next,D.next=w),W.interleaved=w,Xc(O,q)}function ky(O,w,q){if(w=w.updateQueue,w!==null&&(w=w.shared,(q&4194240)!==0)){var W=w.lanes;W&=O.pendingLanes,q|=W,w.lanes=q,Ek(O,q)}}function q$(O,w){var q=O.updateQueue,W=O.alternate;if(W!==null&&(W=W.updateQueue,q===W)){var D=null,K=null;if(q=q.firstBaseUpdate,q!==null){do{var le={eventTime:q.eventTime,lane:q.lane,tag:q.tag,payload:q.payload,callback:q.callback,next:null};K===null?D=K=le:K=K.next=le,q=q.next}while(q!==null);K===null?D=K=w:K=K.next=w}else D=K=w;q={baseState:W.baseState,firstBaseUpdate:D,lastBaseUpdate:K,shared:W.shared,effects:W.effects},O.updateQueue=q;return}O=q.lastBaseUpdate,O===null?q.firstBaseUpdate=w:O.next=w,q.lastBaseUpdate=w}function Sy(O,w,q,W){var D=O.updateQueue;Ou=!1;var K=D.firstBaseUpdate,le=D.lastBaseUpdate,Te=D.shared.pending;if(Te!==null){D.shared.pending=null;var Le=Te,Ge=Le.next;Le.next=null,le===null?K=Ge:le.next=Ge,le=Le;var at=O.alternate;at!==null&&(at=at.updateQueue,Te=at.lastBaseUpdate,Te!==le&&(Te===null?at.firstBaseUpdate=Ge:Te.next=Ge,at.lastBaseUpdate=Le))}if(K!==null){var ut=D.baseState;le=0,at=Ge=Le=null,Te=K;do{var st=Te.lane,Wt=Te.eventTime;if((W&st)===st){at!==null&&(at=at.next={eventTime:Wt,lane:0,tag:Te.tag,payload:Te.payload,callback:Te.callback,next:null});e:{var $t=O,Ut=Te;switch(st=w,Wt=q,Ut.tag){case 1:if($t=Ut.payload,typeof $t=="function"){ut=$t.call(Wt,ut,st);break e}ut=$t;break e;case 3:$t.flags=$t.flags&-65537|128;case 0:if($t=Ut.payload,st=typeof $t=="function"?$t.call(Wt,ut,st):$t,st==null)break e;ut=Z({},ut,st);break e;case 2:Ou=!0}}Te.callback!==null&&Te.lane!==0&&(O.flags|=64,st=D.effects,st===null?D.effects=[Te]:st.push(Te))}else Wt={eventTime:Wt,lane:st,tag:Te.tag,payload:Te.payload,callback:Te.callback,next:null},at===null?(Ge=at=Wt,Le=ut):at=at.next=Wt,le|=st;if(Te=Te.next,Te===null){if(Te=D.shared.pending,Te===null)break;st=Te,Te=st.next,st.next=null,D.lastBaseUpdate=st,D.shared.pending=null}}while(!0);if(at===null&&(Le=ut),D.baseState=Le,D.firstBaseUpdate=Ge,D.lastBaseUpdate=at,w=D.shared.interleaved,w!==null){D=w;do le|=D.lane,D=D.next;while(D!==w)}else K===null&&(D.shared.lanes=0);_p|=le,O.lanes=le,O.memoizedState=ut}}function R$(O,w,q){if(O=w.effects,w.effects=null,O!==null)for(w=0;w<O.length;w++){var W=O[w],D=W.callback;if(D!==null){if(W.callback=null,W=q,typeof D!="function")throw Error(n(191,D));D.call(W)}}}var ag={},Na=gu(ag),cg=gu(ag),lg=gu(ag);function xp(O){if(O===ag)throw Error(n(174));return O}function O6(O,w){switch(er(lg,w),er(cg,O),er(Na,ag),O=w.nodeType,O){case 9:case 11:w=(w=w.documentElement)?w.namespaceURI:qt(null,"");break;default:O=O===8?w.parentNode:w,w=O.namespaceURI||null,O=O.tagName,w=qt(w,O)}ir(Na),er(Na,w)}function Nb(){ir(Na),ir(cg),ir(lg)}function T$(O){xp(lg.current);var w=xp(Na.current),q=qt(w,O.type);w!==q&&(er(cg,O),er(Na,q))}function y6(O){cg.current===O&&(ir(Na),ir(cg))}var xr=gu(0);function Cy(O){for(var w=O;w!==null;){if(w.tag===13){var q=w.memoizedState;if(q!==null&&(q=q.dehydrated,q===null||q.data==="$?"||q.data==="$!"))return w}else if(w.tag===19&&w.memoizedProps.revealOrder!==void 0){if(w.flags&128)return w}else if(w.child!==null){w.child.return=w,w=w.child;continue}if(w===O)break;for(;w.sibling===null;){if(w.return===null||w.return===O)return null;w=w.return}w.sibling.return=w.return,w=w.sibling}return null}var A6=[];function v6(){for(var O=0;O<A6.length;O++)A6[O]._workInProgressVersionPrimary=null;A6.length=0}var qy=M.ReactCurrentDispatcher,x6=M.ReactCurrentBatchConfig,wp=0,wr=null,u0=null,y0=null,Ry=!1,ug=!1,dg=0,y_e=0;function s1(){throw Error(n(321))}function w6(O,w){if(w===null)return!1;for(var q=0;q<w.length&&q<O.length;q++)if(!Ki(O[q],w[q]))return!1;return!0}function _6(O,w,q,W,D,K){if(wp=K,wr=w,w.memoizedState=null,w.updateQueue=null,w.lanes=0,qy.current=O===null||O.memoizedState===null?w_e:__e,O=q(W,D),ug){K=0;do{if(ug=!1,dg=0,25<=K)throw Error(n(301));K+=1,y0=u0=null,w.updateQueue=null,qy.current=k_e,O=q(W,D)}while(ug)}if(qy.current=Wy,w=u0!==null&&u0.next!==null,wp=0,y0=u0=wr=null,Ry=!1,w)throw Error(n(300));return O}function k6(){var O=dg!==0;return dg=0,O}function Ba(){var O={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return y0===null?wr.memoizedState=y0=O:y0=y0.next=O,y0}function ri(){if(u0===null){var O=wr.alternate;O=O!==null?O.memoizedState:null}else O=u0.next;var w=y0===null?wr.memoizedState:y0.next;if(w!==null)y0=w,u0=O;else{if(O===null)throw Error(n(310));u0=O,O={memoizedState:u0.memoizedState,baseState:u0.baseState,baseQueue:u0.baseQueue,queue:u0.queue,next:null},y0===null?wr.memoizedState=y0=O:y0=y0.next=O}return y0}function pg(O,w){return typeof w=="function"?w(O):w}function S6(O){var w=ri(),q=w.queue;if(q===null)throw Error(n(311));q.lastRenderedReducer=O;var W=u0,D=W.baseQueue,K=q.pending;if(K!==null){if(D!==null){var le=D.next;D.next=K.next,K.next=le}W.baseQueue=D=K,q.pending=null}if(D!==null){K=D.next,W=W.baseState;var Te=le=null,Le=null,Ge=K;do{var at=Ge.lane;if((wp&at)===at)Le!==null&&(Le=Le.next={lane:0,action:Ge.action,hasEagerState:Ge.hasEagerState,eagerState:Ge.eagerState,next:null}),W=Ge.hasEagerState?Ge.eagerState:O(W,Ge.action);else{var ut={lane:at,action:Ge.action,hasEagerState:Ge.hasEagerState,eagerState:Ge.eagerState,next:null};Le===null?(Te=Le=ut,le=W):Le=Le.next=ut,wr.lanes|=at,_p|=at}Ge=Ge.next}while(Ge!==null&&Ge!==K);Le===null?le=W:Le.next=Te,Ki(W,w.memoizedState)||(Z1=!0),w.memoizedState=W,w.baseState=le,w.baseQueue=Le,q.lastRenderedState=W}if(O=q.interleaved,O!==null){D=O;do K=D.lane,wr.lanes|=K,_p|=K,D=D.next;while(D!==O)}else D===null&&(q.lanes=0);return[w.memoizedState,q.dispatch]}function C6(O){var w=ri(),q=w.queue;if(q===null)throw Error(n(311));q.lastRenderedReducer=O;var W=q.dispatch,D=q.pending,K=w.memoizedState;if(D!==null){q.pending=null;var le=D=D.next;do K=O(K,le.action),le=le.next;while(le!==D);Ki(K,w.memoizedState)||(Z1=!0),w.memoizedState=K,w.baseQueue===null&&(w.baseState=K),q.lastRenderedState=K}return[K,W]}function E$(){}function W$(O,w){var q=wr,W=ri(),D=w(),K=!Ki(W.memoizedState,D);if(K&&(W.memoizedState=D,Z1=!0),W=W.queue,q6(L$.bind(null,q,W,O),[O]),W.getSnapshot!==w||K||y0!==null&&y0.memoizedState.tag&1){if(q.flags|=2048,fg(9,B$.bind(null,q,W,D,w),void 0,null),A0===null)throw Error(n(349));wp&30||N$(q,w,D)}return D}function N$(O,w,q){O.flags|=16384,O={getSnapshot:w,value:q},w=wr.updateQueue,w===null?(w={lastEffect:null,stores:null},wr.updateQueue=w,w.stores=[O]):(q=w.stores,q===null?w.stores=[O]:q.push(O))}function B$(O,w,q,W){w.value=q,w.getSnapshot=W,P$(w)&&j$(O)}function L$(O,w,q){return q(function(){P$(w)&&j$(O)})}function P$(O){var w=O.getSnapshot;O=O.value;try{var q=w();return!Ki(O,q)}catch{return!0}}function j$(O){var w=Xc(O,1);w!==null&&ea(w,O,1,-1)}function I$(O){var w=Ba();return typeof O=="function"&&(O=O()),w.memoizedState=w.baseState=O,O={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:pg,lastRenderedState:O},w.queue=O,O=O.dispatch=x_e.bind(null,wr,O),[w.memoizedState,O]}function fg(O,w,q,W){return O={tag:O,create:w,destroy:q,deps:W,next:null},w=wr.updateQueue,w===null?(w={lastEffect:null,stores:null},wr.updateQueue=w,w.lastEffect=O.next=O):(q=w.lastEffect,q===null?w.lastEffect=O.next=O:(W=q.next,q.next=O,O.next=W,w.lastEffect=O)),O}function D$(){return ri().memoizedState}function Ty(O,w,q,W){var D=Ba();wr.flags|=O,D.memoizedState=fg(1|w,q,void 0,W===void 0?null:W)}function Ey(O,w,q,W){var D=ri();W=W===void 0?null:W;var K=void 0;if(u0!==null){var le=u0.memoizedState;if(K=le.destroy,W!==null&&w6(W,le.deps)){D.memoizedState=fg(w,q,K,W);return}}wr.flags|=O,D.memoizedState=fg(1|w,q,K,W)}function F$(O,w){return Ty(8390656,8,O,w)}function q6(O,w){return Ey(2048,8,O,w)}function $$(O,w){return Ey(4,2,O,w)}function V$(O,w){return Ey(4,4,O,w)}function H$(O,w){if(typeof w=="function")return O=O(),w(O),function(){w(null)};if(w!=null)return O=O(),w.current=O,function(){w.current=null}}function U$(O,w,q){return q=q!=null?q.concat([O]):null,Ey(4,4,H$.bind(null,w,O),q)}function R6(){}function X$(O,w){var q=ri();w=w===void 0?null:w;var W=q.memoizedState;return W!==null&&w!==null&&w6(w,W[1])?W[0]:(q.memoizedState=[O,w],O)}function G$(O,w){var q=ri();w=w===void 0?null:w;var W=q.memoizedState;return W!==null&&w!==null&&w6(w,W[1])?W[0]:(O=O(),q.memoizedState=[O,w],O)}function K$(O,w,q){return wp&21?(Ki(q,w)||(q=wF(),wr.lanes|=q,_p|=q,O.baseState=!0),w):(O.baseState&&(O.baseState=!1,Z1=!0),O.memoizedState=q)}function A_e(O,w){var q=Eo;Eo=q!==0&&4>q?q:4,O(!0);var W=x6.transition;x6.transition={};try{O(!1),w()}finally{Eo=q,x6.transition=W}}function Y$(){return ri().memoizedState}function v_e(O,w,q){var W=wu(O);if(q={lane:W,action:q,hasEagerState:!1,eagerState:null,next:null},Z$(O))Q$(w,q);else if(q=S$(O,w,q,W),q!==null){var D=W1();ea(q,O,W,D),J$(q,w,W)}}function x_e(O,w,q){var W=wu(O),D={lane:W,action:q,hasEagerState:!1,eagerState:null,next:null};if(Z$(O))Q$(w,D);else{var K=O.alternate;if(O.lanes===0&&(K===null||K.lanes===0)&&(K=w.lastRenderedReducer,K!==null))try{var le=w.lastRenderedState,Te=K(le,q);if(D.hasEagerState=!0,D.eagerState=Te,Ki(Te,le)){var Le=w.interleaved;Le===null?(D.next=D,M6(w)):(D.next=Le.next,Le.next=D),w.interleaved=D;return}}catch{}finally{}q=S$(O,w,D,W),q!==null&&(D=W1(),ea(q,O,W,D),J$(q,w,W))}}function Z$(O){var w=O.alternate;return O===wr||w!==null&&w===wr}function Q$(O,w){ug=Ry=!0;var q=O.pending;q===null?w.next=w:(w.next=q.next,q.next=w),O.pending=w}function J$(O,w,q){if(q&4194240){var W=w.lanes;W&=O.pendingLanes,q|=W,w.lanes=q,Ek(O,q)}}var Wy={readContext:oi,useCallback:s1,useContext:s1,useEffect:s1,useImperativeHandle:s1,useInsertionEffect:s1,useLayoutEffect:s1,useMemo:s1,useReducer:s1,useRef:s1,useState:s1,useDebugValue:s1,useDeferredValue:s1,useTransition:s1,useMutableSource:s1,useSyncExternalStore:s1,useId:s1,unstable_isNewReconciler:!1},w_e={readContext:oi,useCallback:function(O,w){return Ba().memoizedState=[O,w===void 0?null:w],O},useContext:oi,useEffect:F$,useImperativeHandle:function(O,w,q){return q=q!=null?q.concat([O]):null,Ty(4194308,4,H$.bind(null,w,O),q)},useLayoutEffect:function(O,w){return Ty(4194308,4,O,w)},useInsertionEffect:function(O,w){return Ty(4,2,O,w)},useMemo:function(O,w){var q=Ba();return w=w===void 0?null:w,O=O(),q.memoizedState=[O,w],O},useReducer:function(O,w,q){var W=Ba();return w=q!==void 0?q(w):w,W.memoizedState=W.baseState=w,O={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:O,lastRenderedState:w},W.queue=O,O=O.dispatch=v_e.bind(null,wr,O),[W.memoizedState,O]},useRef:function(O){var w=Ba();return O={current:O},w.memoizedState=O},useState:I$,useDebugValue:R6,useDeferredValue:function(O){return Ba().memoizedState=O},useTransition:function(){var O=I$(!1),w=O[0];return O=A_e.bind(null,O[1]),Ba().memoizedState=O,[w,O]},useMutableSource:function(){},useSyncExternalStore:function(O,w,q){var W=wr,D=Ba();if(fr){if(q===void 0)throw Error(n(407));q=q()}else{if(q=w(),A0===null)throw Error(n(349));wp&30||N$(W,w,q)}D.memoizedState=q;var K={value:q,getSnapshot:w};return D.queue=K,F$(L$.bind(null,W,K,O),[O]),W.flags|=2048,fg(9,B$.bind(null,W,K,q,w),void 0,null),q},useId:function(){var O=Ba(),w=A0.identifierPrefix;if(fr){var q=Uc,W=Hc;q=(W&~(1<<32-I0(W)-1)).toString(32)+q,w=":"+w+"R"+q,q=dg++,0<q&&(w+="H"+q.toString(32)),w+=":"}else q=y_e++,w=":"+w+"r"+q.toString(32)+":";return O.memoizedState=w},unstable_isNewReconciler:!1},__e={readContext:oi,useCallback:X$,useContext:oi,useEffect:q6,useImperativeHandle:U$,useInsertionEffect:$$,useLayoutEffect:V$,useMemo:G$,useReducer:S6,useRef:D$,useState:function(){return S6(pg)},useDebugValue:R6,useDeferredValue:function(O){var w=ri();return K$(w,u0.memoizedState,O)},useTransition:function(){var O=S6(pg)[0],w=ri().memoizedState;return[O,w]},useMutableSource:E$,useSyncExternalStore:W$,useId:Y$,unstable_isNewReconciler:!1},k_e={readContext:oi,useCallback:X$,useContext:oi,useEffect:q6,useImperativeHandle:U$,useInsertionEffect:$$,useLayoutEffect:V$,useMemo:G$,useReducer:C6,useRef:D$,useState:function(){return C6(pg)},useDebugValue:R6,useDeferredValue:function(O){var w=ri();return u0===null?w.memoizedState=O:K$(w,u0.memoizedState,O)},useTransition:function(){var O=C6(pg)[0],w=ri().memoizedState;return[O,w]},useMutableSource:E$,useSyncExternalStore:W$,useId:Y$,unstable_isNewReconciler:!1};function Zi(O,w){if(O&&O.defaultProps){w=Z({},w),O=O.defaultProps;for(var q in O)w[q]===void 0&&(w[q]=O[q]);return w}return w}function T6(O,w,q,W){w=O.memoizedState,q=q(W,w),q=q==null?w:Z({},w,q),O.memoizedState=q,O.lanes===0&&(O.updateQueue.baseState=q)}var Ny={isMounted:function(O){return(O=O._reactInternals)?ao(O)===O:!1},enqueueSetState:function(O,w,q){O=O._reactInternals;var W=W1(),D=wu(O),K=Gc(W,D);K.payload=w,q!=null&&(K.callback=q),w=yu(O,K,D),w!==null&&(ea(w,O,D,W),ky(w,O,D))},enqueueReplaceState:function(O,w,q){O=O._reactInternals;var W=W1(),D=wu(O),K=Gc(W,D);K.tag=1,K.payload=w,q!=null&&(K.callback=q),w=yu(O,K,D),w!==null&&(ea(w,O,D,W),ky(w,O,D))},enqueueForceUpdate:function(O,w){O=O._reactInternals;var q=W1(),W=wu(O),D=Gc(q,W);D.tag=2,w!=null&&(D.callback=w),w=yu(O,D,W),w!==null&&(ea(w,O,W,q),ky(w,O,W))}};function eV(O,w,q,W,D,K,le){return O=O.stateNode,typeof O.shouldComponentUpdate=="function"?O.shouldComponentUpdate(W,K,le):w.prototype&&w.prototype.isPureReactComponent?!Jm(q,W)||!Jm(D,K):!0}function tV(O,w,q){var W=!1,D=Mu,K=w.contextType;return typeof K=="object"&&K!==null?K=oi(K):(D=Y1(w)?Op:r1.current,W=w.contextTypes,K=(W=W!=null)?Sb(O,D):Mu),w=new w(q,K),O.memoizedState=w.state!==null&&w.state!==void 0?w.state:null,w.updater=Ny,O.stateNode=w,w._reactInternals=O,W&&(O=O.stateNode,O.__reactInternalMemoizedUnmaskedChildContext=D,O.__reactInternalMemoizedMaskedChildContext=K),w}function nV(O,w,q,W){O=w.state,typeof w.componentWillReceiveProps=="function"&&w.componentWillReceiveProps(q,W),typeof w.UNSAFE_componentWillReceiveProps=="function"&&w.UNSAFE_componentWillReceiveProps(q,W),w.state!==O&&Ny.enqueueReplaceState(w,w.state,null)}function E6(O,w,q,W){var D=O.stateNode;D.props=q,D.state=O.memoizedState,D.refs={},z6(O);var K=w.contextType;typeof K=="object"&&K!==null?D.context=oi(K):(K=Y1(w)?Op:r1.current,D.context=Sb(O,K)),D.state=O.memoizedState,K=w.getDerivedStateFromProps,typeof K=="function"&&(T6(O,w,K,q),D.state=O.memoizedState),typeof w.getDerivedStateFromProps=="function"||typeof D.getSnapshotBeforeUpdate=="function"||typeof D.UNSAFE_componentWillMount!="function"&&typeof D.componentWillMount!="function"||(w=D.state,typeof D.componentWillMount=="function"&&D.componentWillMount(),typeof D.UNSAFE_componentWillMount=="function"&&D.UNSAFE_componentWillMount(),w!==D.state&&Ny.enqueueReplaceState(D,D.state,null),Sy(O,q,D,W),D.state=O.memoizedState),typeof D.componentDidMount=="function"&&(O.flags|=4194308)}function Bb(O,w){try{var q="",W=w;do q+=ue(W),W=W.return;while(W);var D=q}catch(K){D=` +`+D[le].replace(" at new "," at ");return O.displayName&&Le.includes("<anonymous>")&&(Le=Le.replace("<anonymous>",O.displayName)),Le}while(1<=le&&0<=Te);break}}}finally{te=!1,Error.prepareStackTrace=q}return(O=O?O.displayName||O.name:"")?ee(O):""}function ue(O){switch(O.tag){case 5:return ee(O.type);case 16:return ee("Lazy");case 13:return ee("Suspense");case 19:return ee("SuspenseList");case 0:case 2:case 15:return O=J(O.type,!1),O;case 11:return O=J(O.type.render,!1),O;case 1:return O=J(O.type,!0),O;default:return""}}function ce(O){if(O==null)return null;if(typeof O=="function")return O.displayName||O.name||null;if(typeof O=="string")return O;switch(O){case S:return"Fragment";case k:return"Portal";case R:return"Profiler";case C:return"StrictMode";case N:return"Suspense";case j:return"SuspenseList"}if(typeof O=="object")switch(O.$$typeof){case E:return(O.displayName||"Context")+".Consumer";case T:return(O._context.displayName||"Context")+".Provider";case B:var w=O.render;return O=O.displayName,O||(O=w.displayName||w.name||"",O=O!==""?"ForwardRef("+O+")":"ForwardRef"),O;case I:return w=O.displayName||null,w!==null?w:ce(O.type)||"Memo";case P:w=O._payload,O=O._init;try{return ce(O(w))}catch{}}return null}function me(O){var w=O.type;switch(O.tag){case 24:return"Cache";case 9:return(w.displayName||"Context")+".Consumer";case 10:return(w._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return O=w.render,O=O.displayName||O.name||"",w.displayName||(O!==""?"ForwardRef("+O+")":"ForwardRef");case 7:return"Fragment";case 5:return w;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return ce(w);case 8:return w===C?"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 w=="function")return w.displayName||w.name||null;if(typeof w=="string")return w}return null}function de(O){switch(typeof O){case"boolean":case"number":case"string":case"undefined":return O;case"object":return O;default:return""}}function Ae(O){var w=O.type;return(O=O.nodeName)&&O.toLowerCase()==="input"&&(w==="checkbox"||w==="radio")}function ye(O){var w=Ae(O)?"checked":"value",q=Object.getOwnPropertyDescriptor(O.constructor.prototype,w),W=""+O[w];if(!O.hasOwnProperty(w)&&typeof q<"u"&&typeof q.get=="function"&&typeof q.set=="function"){var D=q.get,K=q.set;return Object.defineProperty(O,w,{configurable:!0,get:function(){return D.call(this)},set:function(le){W=""+le,K.call(this,le)}}),Object.defineProperty(O,w,{enumerable:q.enumerable}),{getValue:function(){return W},setValue:function(le){W=""+le},stopTracking:function(){O._valueTracker=null,delete O[w]}}}}function Ne(O){O._valueTracker||(O._valueTracker=ye(O))}function je(O){if(!O)return!1;var w=O._valueTracker;if(!w)return!0;var q=w.getValue(),W="";return O&&(W=Ae(O)?O.checked?"true":"false":O.value),O=W,O!==q?(w.setValue(O),!0):!1}function ie(O){if(O=O||(typeof document<"u"?document:void 0),typeof O>"u")return null;try{return O.activeElement||O.body}catch{return O.body}}function we(O,w){var q=w.checked;return Z({},w,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:q??O._wrapperState.initialChecked})}function re(O,w){var q=w.defaultValue==null?"":w.defaultValue,W=w.checked!=null?w.checked:w.defaultChecked;q=de(w.value!=null?w.value:q),O._wrapperState={initialChecked:W,initialValue:q,controlled:w.type==="checkbox"||w.type==="radio"?w.checked!=null:w.value!=null}}function pe(O,w){w=w.checked,w!=null&&v(O,"checked",w,!1)}function ke(O,w){pe(O,w);var q=de(w.value),W=w.type;if(q!=null)W==="number"?(q===0&&O.value===""||O.value!=q)&&(O.value=""+q):O.value!==""+q&&(O.value=""+q);else if(W==="submit"||W==="reset"){O.removeAttribute("value");return}w.hasOwnProperty("value")?se(O,w.type,q):w.hasOwnProperty("defaultValue")&&se(O,w.type,de(w.defaultValue)),w.checked==null&&w.defaultChecked!=null&&(O.defaultChecked=!!w.defaultChecked)}function Se(O,w,q){if(w.hasOwnProperty("value")||w.hasOwnProperty("defaultValue")){var W=w.type;if(!(W!=="submit"&&W!=="reset"||w.value!==void 0&&w.value!==null))return;w=""+O._wrapperState.initialValue,q||w===O.value||(O.value=w),O.defaultValue=w}q=O.name,q!==""&&(O.name=""),O.defaultChecked=!!O._wrapperState.initialChecked,q!==""&&(O.name=q)}function se(O,w,q){(w!=="number"||ie(O.ownerDocument)!==O)&&(q==null?O.defaultValue=""+O._wrapperState.initialValue:O.defaultValue!==""+q&&(O.defaultValue=""+q))}var L=Array.isArray;function U(O,w,q,W){if(O=O.options,w){w={};for(var D=0;D<q.length;D++)w["$"+q[D]]=!0;for(q=0;q<O.length;q++)D=w.hasOwnProperty("$"+O[q].value),O[q].selected!==D&&(O[q].selected=D),D&&W&&(O[q].defaultSelected=!0)}else{for(q=""+de(q),w=null,D=0;D<O.length;D++){if(O[D].value===q){O[D].selected=!0,W&&(O[D].defaultSelected=!0);return}w!==null||O[D].disabled||(w=O[D])}w!==null&&(w.selected=!0)}}function ne(O,w){if(w.dangerouslySetInnerHTML!=null)throw Error(n(91));return Z({},w,{value:void 0,defaultValue:void 0,children:""+O._wrapperState.initialValue})}function ve(O,w){var q=w.value;if(q==null){if(q=w.children,w=w.defaultValue,q!=null){if(w!=null)throw Error(n(92));if(L(q)){if(1<q.length)throw Error(n(93));q=q[0]}w=q}w==null&&(w=""),q=w}O._wrapperState={initialValue:de(q)}}function qe(O,w){var q=de(w.value),W=de(w.defaultValue);q!=null&&(q=""+q,q!==O.value&&(O.value=q),w.defaultValue==null&&O.defaultValue!==q&&(O.defaultValue=q)),W!=null&&(O.defaultValue=""+W)}function Pe(O){var w=O.textContent;w===O._wrapperState.initialValue&&w!==""&&w!==null&&(O.value=w)}function rt(O){switch(O){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function qt(O,w){return O==null||O==="http://www.w3.org/1999/xhtml"?rt(w):O==="http://www.w3.org/2000/svg"&&w==="foreignObject"?"http://www.w3.org/1999/xhtml":O}var wt,Bt=function(O){return typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(w,q,W,D){MSApp.execUnsafeLocalFunction(function(){return O(w,q,W,D)})}:O}(function(O,w){if(O.namespaceURI!=="http://www.w3.org/2000/svg"||"innerHTML"in O)O.innerHTML=w;else{for(wt=wt||document.createElement("div"),wt.innerHTML="<svg>"+w.valueOf().toString()+"</svg>",w=wt.firstChild;O.firstChild;)O.removeChild(O.firstChild);for(;w.firstChild;)O.appendChild(w.firstChild)}});function ae(O,w){if(w){var q=O.firstChild;if(q&&q===O.lastChild&&q.nodeType===3){q.nodeValue=w;return}}O.textContent=w}var H={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},Y=["Webkit","ms","Moz","O"];Object.keys(H).forEach(function(O){Y.forEach(function(w){w=w+O.charAt(0).toUpperCase()+O.substring(1),H[w]=H[O]})});function fe(O,w,q){return w==null||typeof w=="boolean"||w===""?"":q||typeof w!="number"||w===0||H.hasOwnProperty(O)&&H[O]?(""+w).trim():w+"px"}function Re(O,w){O=O.style;for(var q in w)if(w.hasOwnProperty(q)){var W=q.indexOf("--")===0,D=fe(q,w[q],W);q==="float"&&(q="cssFloat"),W?O.setProperty(q,D):O[q]=D}}var be=Z({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 ze(O,w){if(w){if(be[O]&&(w.children!=null||w.dangerouslySetInnerHTML!=null))throw Error(n(137,O));if(w.dangerouslySetInnerHTML!=null){if(w.children!=null)throw Error(n(60));if(typeof w.dangerouslySetInnerHTML!="object"||!("__html"in w.dangerouslySetInnerHTML))throw Error(n(61))}if(w.style!=null&&typeof w.style!="object")throw Error(n(62))}}function nt(O,w){if(O.indexOf("-")===-1)return typeof w.is=="string";switch(O){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 Mt=null;function ot(O){return O=O.target||O.srcElement||window,O.correspondingUseElement&&(O=O.correspondingUseElement),O.nodeType===3?O.parentNode:O}var Ue=null,yt=null,fn=null;function Ln(O){if(O=sg(O)){if(typeof Ue!="function")throw Error(n(280));var w=O.stateNode;w&&(w=my(w),Ue(O.stateNode,O.type,w))}}function Mo(O){yt?fn?fn.push(O):fn=[O]:yt=O}function rr(){if(yt){var O=yt,w=fn;if(fn=yt=null,Ln(O),w)for(O=0;O<w.length;O++)Ln(w[O])}}function Jo(O,w){return O(w)}function To(){}var Br=!1;function Rt(O,w,q){if(Br)return O(w,q);Br=!0;try{return Jo(O,w,q)}finally{Br=!1,(yt!==null||fn!==null)&&(To(),rr())}}function Qe(O,w){var q=O.stateNode;if(q===null)return null;var W=my(q);if(W===null)return null;q=W[w];e:switch(w){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(W=!W.disabled)||(O=O.type,W=!(O==="button"||O==="input"||O==="select"||O==="textarea")),O=!W;break e;default:O=!1}if(O)return null;if(q&&typeof q!="function")throw Error(n(231,w,typeof q));return q}var xt=!1;if(c)try{var Gt={};Object.defineProperty(Gt,"passive",{get:function(){xt=!0}}),window.addEventListener("test",Gt,Gt),window.removeEventListener("test",Gt,Gt)}catch{xt=!1}function On(O,w,q,W,D,K,le,Te,Le){var Ge=Array.prototype.slice.call(arguments,3);try{w.apply(q,Ge)}catch(at){this.onError(at)}}var $n=!1,Jn=null,pr=!1,O0=null,o1={onError:function(O){$n=!0,Jn=O}};function yr(O,w,q,W,D,K,le,Te,Le){$n=!1,Jn=null,On.apply(o1,arguments)}function Js(O,w,q,W,D,K,le,Te,Le){if(yr.apply(this,arguments),$n){if($n){var Ge=Jn;$n=!1,Jn=null}else throw Error(n(198));pr||(pr=!0,O0=Ge)}}function ao(O){var w=O,q=O;if(O.alternate)for(;w.return;)w=w.return;else{O=w;do w=O,w.flags&4098&&(q=w.return),O=w.return;while(O)}return w.tag===3?q:null}function Ic(O){if(O.tag===13){var w=O.memoizedState;if(w===null&&(O=O.alternate,O!==null&&(w=O.memoizedState)),w!==null)return w.dehydrated}return null}function Ui(O){if(ao(O)!==O)throw Error(n(188))}function _s(O){var w=O.alternate;if(!w){if(w=ao(O),w===null)throw Error(n(188));return w!==O?null:O}for(var q=O,W=w;;){var D=q.return;if(D===null)break;var K=D.alternate;if(K===null){if(W=D.return,W!==null){q=W;continue}break}if(D.child===K.child){for(K=D.child;K;){if(K===q)return Ui(D),O;if(K===W)return Ui(D),w;K=K.sibling}throw Error(n(188))}if(q.return!==W.return)q=D,W=K;else{for(var le=!1,Te=D.child;Te;){if(Te===q){le=!0,q=D,W=K;break}if(Te===W){le=!0,W=D,q=K;break}Te=Te.sibling}if(!le){for(Te=K.child;Te;){if(Te===q){le=!0,q=K,W=D;break}if(Te===W){le=!0,W=K,q=D;break}Te=Te.sibling}if(!le)throw Error(n(189))}}if(q.alternate!==W)throw Error(n(190))}if(q.tag!==3)throw Error(n(188));return q.stateNode.current===q?O:w}function Xi(O){return O=_s(O),O!==null?gb(O):null}function gb(O){if(O.tag===5||O.tag===6)return O;for(O=O.child;O!==null;){var w=gb(O);if(w!==null)return w;O=O.sibling}return null}var hp=t.unstable_scheduleCallback,ZO=t.unstable_cancelCallback,QO=t.unstable_shouldYield,kk=t.unstable_requestPaint,Ar=t.unstable_now,Sk=t.unstable_getCurrentPriorityLevel,Ta=t.unstable_ImmediatePriority,JO=t.unstable_UserBlockingPriority,Mb=t.unstable_NormalPriority,bn=t.unstable_LowPriority,vr=t.unstable_IdlePriority,T1=null,$o=null;function ei(O){if($o&&typeof $o.onCommitFiberRoot=="function")try{$o.onCommitFiberRoot(T1,O,void 0,(O.current.flags&128)===128)}catch{}}var I0=Math.clz32?Math.clz32:Ck,mp=Math.log,gp=Math.LN2;function Ck(O){return O>>>=0,O===0?32:31-(mp(O)/gp|0)|0}var Mp=64,Dc=4194304;function Ea(O){switch(O&-O){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 O&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return O&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return O}}function Dm(O,w){var q=O.pendingLanes;if(q===0)return 0;var W=0,D=O.suspendedLanes,K=O.pingedLanes,le=q&268435455;if(le!==0){var Te=le&~D;Te!==0?W=Ea(Te):(K&=le,K!==0&&(W=Ea(K)))}else le=q&~D,le!==0?W=Ea(le):K!==0&&(W=Ea(K));if(W===0)return 0;if(w!==0&&w!==W&&!(w&D)&&(D=W&-W,K=w&-w,D>=K||D===16&&(K&4194240)!==0))return w;if(W&4&&(W|=q&16),w=O.entangledLanes,w!==0)for(O=O.entanglements,w&=W;0<w;)q=31-I0(w),D=1<<q,W|=O[q],w&=~D;return W}function xF(O,w){switch(O){case 1:case 2:case 4:return w+250;case 8:case 16:case 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 w+5e3;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return-1;case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function ey(O,w){for(var q=O.suspendedLanes,W=O.pingedLanes,D=O.expirationTimes,K=O.pendingLanes;0<K;){var le=31-I0(K),Te=1<<le,Le=D[le];Le===-1?(!(Te&q)||Te&W)&&(D[le]=xF(Te,w)):Le<=w&&(O.expiredLanes|=Te),K&=~Te}}function qk(O){return O=O.pendingLanes&-1073741825,O!==0?O:O&1073741824?1073741824:0}function wF(){var O=Mp;return Mp<<=1,!(Mp&4194240)&&(Mp=64),O}function Rk(O){for(var w=[],q=0;31>q;q++)w.push(O);return w}function Fm(O,w,q){O.pendingLanes|=w,w!==536870912&&(O.suspendedLanes=0,O.pingedLanes=0),O=O.eventTimes,w=31-I0(w),O[w]=q}function Owe(O,w){var q=O.pendingLanes&~w;O.pendingLanes=w,O.suspendedLanes=0,O.pingedLanes=0,O.expiredLanes&=w,O.mutableReadLanes&=w,O.entangledLanes&=w,w=O.entanglements;var W=O.eventTimes;for(O=O.expirationTimes;0<q;){var D=31-I0(q),K=1<<D;w[D]=0,W[D]=-1,O[D]=-1,q&=~K}}function Tk(O,w){var q=O.entangledLanes|=w;for(O=O.entanglements;q;){var W=31-I0(q),D=1<<W;D&w|O[W]&w&&(O[W]|=w),q&=~D}}var Eo=0;function _F(O){return O&=-O,1<O?4<O?O&268435455?16:536870912:4:1}var kF,Ek,SF,CF,qF,Wk=!1,ty=[],uu=null,du=null,pu=null,$m=new Map,Vm=new Map,fu=[],ywe="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function RF(O,w){switch(O){case"focusin":case"focusout":uu=null;break;case"dragenter":case"dragleave":du=null;break;case"mouseover":case"mouseout":pu=null;break;case"pointerover":case"pointerout":$m.delete(w.pointerId);break;case"gotpointercapture":case"lostpointercapture":Vm.delete(w.pointerId)}}function Hm(O,w,q,W,D,K){return O===null||O.nativeEvent!==K?(O={blockedOn:w,domEventName:q,eventSystemFlags:W,nativeEvent:K,targetContainers:[D]},w!==null&&(w=sg(w),w!==null&&Ek(w)),O):(O.eventSystemFlags|=W,w=O.targetContainers,D!==null&&w.indexOf(D)===-1&&w.push(D),O)}function Awe(O,w,q,W,D){switch(w){case"focusin":return uu=Hm(uu,O,w,q,W,D),!0;case"dragenter":return du=Hm(du,O,w,q,W,D),!0;case"mouseover":return pu=Hm(pu,O,w,q,W,D),!0;case"pointerover":var K=D.pointerId;return $m.set(K,Hm($m.get(K)||null,O,w,q,W,D)),!0;case"gotpointercapture":return K=D.pointerId,Vm.set(K,Hm(Vm.get(K)||null,O,w,q,W,D)),!0}return!1}function TF(O){var w=zp(O.target);if(w!==null){var q=ao(w);if(q!==null){if(w=q.tag,w===13){if(w=Ic(q),w!==null){O.blockedOn=w,qF(O.priority,function(){SF(q)});return}}else if(w===3&&q.stateNode.current.memoizedState.isDehydrated){O.blockedOn=q.tag===3?q.stateNode.containerInfo:null;return}}}O.blockedOn=null}function ny(O){if(O.blockedOn!==null)return!1;for(var w=O.targetContainers;0<w.length;){var q=Bk(O.domEventName,O.eventSystemFlags,w[0],O.nativeEvent);if(q===null){q=O.nativeEvent;var W=new q.constructor(q.type,q);Mt=W,q.target.dispatchEvent(W),Mt=null}else return w=sg(q),w!==null&&Ek(w),O.blockedOn=q,!1;w.shift()}return!0}function EF(O,w,q){ny(O)&&q.delete(w)}function vwe(){Wk=!1,uu!==null&&ny(uu)&&(uu=null),du!==null&&ny(du)&&(du=null),pu!==null&&ny(pu)&&(pu=null),$m.forEach(EF),Vm.forEach(EF)}function Um(O,w){O.blockedOn===w&&(O.blockedOn=null,Wk||(Wk=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,vwe)))}function Xm(O){function w(D){return Um(D,O)}if(0<ty.length){Um(ty[0],O);for(var q=1;q<ty.length;q++){var W=ty[q];W.blockedOn===O&&(W.blockedOn=null)}}for(uu!==null&&Um(uu,O),du!==null&&Um(du,O),pu!==null&&Um(pu,O),$m.forEach(w),Vm.forEach(w),q=0;q<fu.length;q++)W=fu[q],W.blockedOn===O&&(W.blockedOn=null);for(;0<fu.length&&(q=fu[0],q.blockedOn===null);)TF(q),q.blockedOn===null&&fu.shift()}var zb=M.ReactCurrentBatchConfig,oy=!0;function xwe(O,w,q,W){var D=Eo,K=zb.transition;zb.transition=null;try{Eo=1,Nk(O,w,q,W)}finally{Eo=D,zb.transition=K}}function wwe(O,w,q,W){var D=Eo,K=zb.transition;zb.transition=null;try{Eo=4,Nk(O,w,q,W)}finally{Eo=D,zb.transition=K}}function Nk(O,w,q,W){if(oy){var D=Bk(O,w,q,W);if(D===null)Jk(O,w,W,ry,q),RF(O,W);else if(Awe(D,O,w,q,W))W.stopPropagation();else if(RF(O,W),w&4&&-1<ywe.indexOf(O)){for(;D!==null;){var K=sg(D);if(K!==null&&kF(K),K=Bk(O,w,q,W),K===null&&Jk(O,w,W,ry,q),K===D)break;D=K}D!==null&&W.stopPropagation()}else Jk(O,w,W,null,q)}}var ry=null;function Bk(O,w,q,W){if(ry=null,O=ot(W),O=zp(O),O!==null)if(w=ao(O),w===null)O=null;else if(q=w.tag,q===13){if(O=Ic(w),O!==null)return O;O=null}else if(q===3){if(w.stateNode.current.memoizedState.isDehydrated)return w.tag===3?w.stateNode.containerInfo:null;O=null}else w!==O&&(O=null);return ry=O,null}function WF(O){switch(O){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Sk()){case Ta:return 1;case JO:return 4;case Mb:case bn:return 16;case vr:return 536870912;default:return 16}default:return 16}}var bu=null,Lk=null,sy=null;function NF(){if(sy)return sy;var O,w=Lk,q=w.length,W,D="value"in bu?bu.value:bu.textContent,K=D.length;for(O=0;O<q&&w[O]===D[O];O++);var le=q-O;for(W=1;W<=le&&w[q-W]===D[K-W];W++);return sy=D.slice(O,1<W?1-W:void 0)}function iy(O){var w=O.keyCode;return"charCode"in O?(O=O.charCode,O===0&&w===13&&(O=13)):O=w,O===10&&(O=13),32<=O||O===13?O:0}function ay(){return!0}function BF(){return!1}function ks(O){function w(q,W,D,K,le){this._reactName=q,this._targetInst=D,this.type=W,this.nativeEvent=K,this.target=le,this.currentTarget=null;for(var Te in O)O.hasOwnProperty(Te)&&(q=O[Te],this[Te]=q?q(K):K[Te]);return this.isDefaultPrevented=(K.defaultPrevented!=null?K.defaultPrevented:K.returnValue===!1)?ay:BF,this.isPropagationStopped=BF,this}return Z(w.prototype,{preventDefault:function(){this.defaultPrevented=!0;var q=this.nativeEvent;q&&(q.preventDefault?q.preventDefault():typeof q.returnValue!="unknown"&&(q.returnValue=!1),this.isDefaultPrevented=ay)},stopPropagation:function(){var q=this.nativeEvent;q&&(q.stopPropagation?q.stopPropagation():typeof q.cancelBubble!="unknown"&&(q.cancelBubble=!0),this.isPropagationStopped=ay)},persist:function(){},isPersistent:ay}),w}var Ob={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(O){return O.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Pk=ks(Ob),Gm=Z({},Ob,{view:0,detail:0}),_we=ks(Gm),jk,Ik,Km,cy=Z({},Gm,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Fk,button:0,buttons:0,relatedTarget:function(O){return O.relatedTarget===void 0?O.fromElement===O.srcElement?O.toElement:O.fromElement:O.relatedTarget},movementX:function(O){return"movementX"in O?O.movementX:(O!==Km&&(Km&&O.type==="mousemove"?(jk=O.screenX-Km.screenX,Ik=O.screenY-Km.screenY):Ik=jk=0,Km=O),jk)},movementY:function(O){return"movementY"in O?O.movementY:Ik}}),LF=ks(cy),kwe=Z({},cy,{dataTransfer:0}),Swe=ks(kwe),Cwe=Z({},Gm,{relatedTarget:0}),Dk=ks(Cwe),qwe=Z({},Ob,{animationName:0,elapsedTime:0,pseudoElement:0}),Rwe=ks(qwe),Twe=Z({},Ob,{clipboardData:function(O){return"clipboardData"in O?O.clipboardData:window.clipboardData}}),Ewe=ks(Twe),Wwe=Z({},Ob,{data:0}),PF=ks(Wwe),Nwe={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Bwe={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Lwe={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Pwe(O){var w=this.nativeEvent;return w.getModifierState?w.getModifierState(O):(O=Lwe[O])?!!w[O]:!1}function Fk(){return Pwe}var jwe=Z({},Gm,{key:function(O){if(O.key){var w=Nwe[O.key]||O.key;if(w!=="Unidentified")return w}return O.type==="keypress"?(O=iy(O),O===13?"Enter":String.fromCharCode(O)):O.type==="keydown"||O.type==="keyup"?Bwe[O.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Fk,charCode:function(O){return O.type==="keypress"?iy(O):0},keyCode:function(O){return O.type==="keydown"||O.type==="keyup"?O.keyCode:0},which:function(O){return O.type==="keypress"?iy(O):O.type==="keydown"||O.type==="keyup"?O.keyCode:0}}),Iwe=ks(jwe),Dwe=Z({},cy,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),jF=ks(Dwe),Fwe=Z({},Gm,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Fk}),$we=ks(Fwe),Vwe=Z({},Ob,{propertyName:0,elapsedTime:0,pseudoElement:0}),Hwe=ks(Vwe),Uwe=Z({},cy,{deltaX:function(O){return"deltaX"in O?O.deltaX:"wheelDeltaX"in O?-O.wheelDeltaX:0},deltaY:function(O){return"deltaY"in O?O.deltaY:"wheelDeltaY"in O?-O.wheelDeltaY:"wheelDelta"in O?-O.wheelDelta:0},deltaZ:0,deltaMode:0}),Xwe=ks(Uwe),Gwe=[9,13,27,32],$k=c&&"CompositionEvent"in window,Ym=null;c&&"documentMode"in document&&(Ym=document.documentMode);var Kwe=c&&"TextEvent"in window&&!Ym,IF=c&&(!$k||Ym&&8<Ym&&11>=Ym),DF=" ",FF=!1;function $F(O,w){switch(O){case"keyup":return Gwe.indexOf(w.keyCode)!==-1;case"keydown":return w.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function VF(O){return O=O.detail,typeof O=="object"&&"data"in O?O.data:null}var yb=!1;function Ywe(O,w){switch(O){case"compositionend":return VF(w);case"keypress":return w.which!==32?null:(FF=!0,DF);case"textInput":return O=w.data,O===DF&&FF?null:O;default:return null}}function Zwe(O,w){if(yb)return O==="compositionend"||!$k&&$F(O,w)?(O=NF(),sy=Lk=bu=null,yb=!1,O):null;switch(O){case"paste":return null;case"keypress":if(!(w.ctrlKey||w.altKey||w.metaKey)||w.ctrlKey&&w.altKey){if(w.char&&1<w.char.length)return w.char;if(w.which)return String.fromCharCode(w.which)}return null;case"compositionend":return IF&&w.locale!=="ko"?null:w.data;default:return null}}var Qwe={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function HF(O){var w=O&&O.nodeName&&O.nodeName.toLowerCase();return w==="input"?!!Qwe[O.type]:w==="textarea"}function UF(O,w,q,W){Mo(W),w=fy(w,"onChange"),0<w.length&&(q=new Pk("onChange","change",null,q,W),O.push({event:q,listeners:w}))}var Zm=null,Qm=null;function Jwe(O){u$(O,0)}function ly(O){var w=_b(O);if(je(w))return O}function e_e(O,w){if(O==="change")return w}var XF=!1;if(c){var Vk;if(c){var Hk="oninput"in document;if(!Hk){var GF=document.createElement("div");GF.setAttribute("oninput","return;"),Hk=typeof GF.oninput=="function"}Vk=Hk}else Vk=!1;XF=Vk&&(!document.documentMode||9<document.documentMode)}function KF(){Zm&&(Zm.detachEvent("onpropertychange",YF),Qm=Zm=null)}function YF(O){if(O.propertyName==="value"&&ly(Qm)){var w=[];UF(w,Qm,O,ot(O)),Rt(Jwe,w)}}function t_e(O,w,q){O==="focusin"?(KF(),Zm=w,Qm=q,Zm.attachEvent("onpropertychange",YF)):O==="focusout"&&KF()}function n_e(O){if(O==="selectionchange"||O==="keyup"||O==="keydown")return ly(Qm)}function o_e(O,w){if(O==="click")return ly(w)}function r_e(O,w){if(O==="input"||O==="change")return ly(w)}function s_e(O,w){return O===w&&(O!==0||1/O===1/w)||O!==O&&w!==w}var Gi=typeof Object.is=="function"?Object.is:s_e;function Jm(O,w){if(Gi(O,w))return!0;if(typeof O!="object"||O===null||typeof w!="object"||w===null)return!1;var q=Object.keys(O),W=Object.keys(w);if(q.length!==W.length)return!1;for(W=0;W<q.length;W++){var D=q[W];if(!l.call(w,D)||!Gi(O[D],w[D]))return!1}return!0}function ZF(O){for(;O&&O.firstChild;)O=O.firstChild;return O}function QF(O,w){var q=ZF(O);O=0;for(var W;q;){if(q.nodeType===3){if(W=O+q.textContent.length,O<=w&&W>=w)return{node:q,offset:w-O};O=W}e:{for(;q;){if(q.nextSibling){q=q.nextSibling;break e}q=q.parentNode}q=void 0}q=ZF(q)}}function JF(O,w){return O&&w?O===w?!0:O&&O.nodeType===3?!1:w&&w.nodeType===3?JF(O,w.parentNode):"contains"in O?O.contains(w):O.compareDocumentPosition?!!(O.compareDocumentPosition(w)&16):!1:!1}function e$(){for(var O=window,w=ie();w instanceof O.HTMLIFrameElement;){try{var q=typeof w.contentWindow.location.href=="string"}catch{q=!1}if(q)O=w.contentWindow;else break;w=ie(O.document)}return w}function Uk(O){var w=O&&O.nodeName&&O.nodeName.toLowerCase();return w&&(w==="input"&&(O.type==="text"||O.type==="search"||O.type==="tel"||O.type==="url"||O.type==="password")||w==="textarea"||O.contentEditable==="true")}function i_e(O){var w=e$(),q=O.focusedElem,W=O.selectionRange;if(w!==q&&q&&q.ownerDocument&&JF(q.ownerDocument.documentElement,q)){if(W!==null&&Uk(q)){if(w=W.start,O=W.end,O===void 0&&(O=w),"selectionStart"in q)q.selectionStart=w,q.selectionEnd=Math.min(O,q.value.length);else if(O=(w=q.ownerDocument||document)&&w.defaultView||window,O.getSelection){O=O.getSelection();var D=q.textContent.length,K=Math.min(W.start,D);W=W.end===void 0?K:Math.min(W.end,D),!O.extend&&K>W&&(D=W,W=K,K=D),D=QF(q,K);var le=QF(q,W);D&&le&&(O.rangeCount!==1||O.anchorNode!==D.node||O.anchorOffset!==D.offset||O.focusNode!==le.node||O.focusOffset!==le.offset)&&(w=w.createRange(),w.setStart(D.node,D.offset),O.removeAllRanges(),K>W?(O.addRange(w),O.extend(le.node,le.offset)):(w.setEnd(le.node,le.offset),O.addRange(w)))}}for(w=[],O=q;O=O.parentNode;)O.nodeType===1&&w.push({element:O,left:O.scrollLeft,top:O.scrollTop});for(typeof q.focus=="function"&&q.focus(),q=0;q<w.length;q++)O=w[q],O.element.scrollLeft=O.left,O.element.scrollTop=O.top}}var a_e=c&&"documentMode"in document&&11>=document.documentMode,Ab=null,Xk=null,eg=null,Gk=!1;function t$(O,w,q){var W=q.window===q?q.document:q.nodeType===9?q:q.ownerDocument;Gk||Ab==null||Ab!==ie(W)||(W=Ab,"selectionStart"in W&&Uk(W)?W={start:W.selectionStart,end:W.selectionEnd}:(W=(W.ownerDocument&&W.ownerDocument.defaultView||window).getSelection(),W={anchorNode:W.anchorNode,anchorOffset:W.anchorOffset,focusNode:W.focusNode,focusOffset:W.focusOffset}),eg&&Jm(eg,W)||(eg=W,W=fy(Xk,"onSelect"),0<W.length&&(w=new Pk("onSelect","select",null,w,q),O.push({event:w,listeners:W}),w.target=Ab)))}function uy(O,w){var q={};return q[O.toLowerCase()]=w.toLowerCase(),q["Webkit"+O]="webkit"+w,q["Moz"+O]="moz"+w,q}var vb={animationend:uy("Animation","AnimationEnd"),animationiteration:uy("Animation","AnimationIteration"),animationstart:uy("Animation","AnimationStart"),transitionend:uy("Transition","TransitionEnd")},Kk={},n$={};c&&(n$=document.createElement("div").style,"AnimationEvent"in window||(delete vb.animationend.animation,delete vb.animationiteration.animation,delete vb.animationstart.animation),"TransitionEvent"in window||delete vb.transitionend.transition);function dy(O){if(Kk[O])return Kk[O];if(!vb[O])return O;var w=vb[O],q;for(q in w)if(w.hasOwnProperty(q)&&q in n$)return Kk[O]=w[q];return O}var o$=dy("animationend"),r$=dy("animationiteration"),s$=dy("animationstart"),i$=dy("transitionend"),a$=new Map,c$="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function hu(O,w){a$.set(O,w),s(w,[O])}for(var Yk=0;Yk<c$.length;Yk++){var Zk=c$[Yk],c_e=Zk.toLowerCase(),l_e=Zk[0].toUpperCase()+Zk.slice(1);hu(c_e,"on"+l_e)}hu(o$,"onAnimationEnd"),hu(r$,"onAnimationIteration"),hu(s$,"onAnimationStart"),hu("dblclick","onDoubleClick"),hu("focusin","onFocus"),hu("focusout","onBlur"),hu(i$,"onTransitionEnd"),i("onMouseEnter",["mouseout","mouseover"]),i("onMouseLeave",["mouseout","mouseover"]),i("onPointerEnter",["pointerout","pointerover"]),i("onPointerLeave",["pointerout","pointerover"]),s("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),s("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),s("onBeforeInput",["compositionend","keypress","textInput","paste"]),s("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),s("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),s("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var tg="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),u_e=new Set("cancel close invalid load scroll toggle".split(" ").concat(tg));function l$(O,w,q){var W=O.type||"unknown-event";O.currentTarget=q,Js(W,w,void 0,O),O.currentTarget=null}function u$(O,w){w=(w&4)!==0;for(var q=0;q<O.length;q++){var W=O[q],D=W.event;W=W.listeners;e:{var K=void 0;if(w)for(var le=W.length-1;0<=le;le--){var Te=W[le],Le=Te.instance,Ge=Te.currentTarget;if(Te=Te.listener,Le!==K&&D.isPropagationStopped())break e;l$(D,Te,Ge),K=Le}else for(le=0;le<W.length;le++){if(Te=W[le],Le=Te.instance,Ge=Te.currentTarget,Te=Te.listener,Le!==K&&D.isPropagationStopped())break e;l$(D,Te,Ge),K=Le}}}if(pr)throw O=O0,pr=!1,O0=null,O}function sr(O,w){var q=w[s6];q===void 0&&(q=w[s6]=new Set);var W=O+"__bubble";q.has(W)||(d$(w,O,2,!1),q.add(W))}function Qk(O,w,q){var W=0;w&&(W|=4),d$(q,O,W,w)}var py="_reactListening"+Math.random().toString(36).slice(2);function ng(O){if(!O[py]){O[py]=!0,o.forEach(function(q){q!=="selectionchange"&&(u_e.has(q)||Qk(q,!1,O),Qk(q,!0,O))});var w=O.nodeType===9?O:O.ownerDocument;w===null||w[py]||(w[py]=!0,Qk("selectionchange",!1,w))}}function d$(O,w,q,W){switch(WF(w)){case 1:var D=xwe;break;case 4:D=wwe;break;default:D=Nk}q=D.bind(null,w,q,O),D=void 0,!xt||w!=="touchstart"&&w!=="touchmove"&&w!=="wheel"||(D=!0),W?D!==void 0?O.addEventListener(w,q,{capture:!0,passive:D}):O.addEventListener(w,q,!0):D!==void 0?O.addEventListener(w,q,{passive:D}):O.addEventListener(w,q,!1)}function Jk(O,w,q,W,D){var K=W;if(!(w&1)&&!(w&2)&&W!==null)e:for(;;){if(W===null)return;var le=W.tag;if(le===3||le===4){var Te=W.stateNode.containerInfo;if(Te===D||Te.nodeType===8&&Te.parentNode===D)break;if(le===4)for(le=W.return;le!==null;){var Le=le.tag;if((Le===3||Le===4)&&(Le=le.stateNode.containerInfo,Le===D||Le.nodeType===8&&Le.parentNode===D))return;le=le.return}for(;Te!==null;){if(le=zp(Te),le===null)return;if(Le=le.tag,Le===5||Le===6){W=K=le;continue e}Te=Te.parentNode}}W=W.return}Rt(function(){var Ge=K,at=ot(q),ut=[];e:{var st=a$.get(O);if(st!==void 0){var Wt=Pk,$t=O;switch(O){case"keypress":if(iy(q)===0)break e;case"keydown":case"keyup":Wt=Iwe;break;case"focusin":$t="focus",Wt=Dk;break;case"focusout":$t="blur",Wt=Dk;break;case"beforeblur":case"afterblur":Wt=Dk;break;case"click":if(q.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":Wt=LF;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":Wt=Swe;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":Wt=$we;break;case o$:case r$:case s$:Wt=Rwe;break;case i$:Wt=Hwe;break;case"scroll":Wt=_we;break;case"wheel":Wt=Xwe;break;case"copy":case"cut":case"paste":Wt=Ewe;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":Wt=jF}var Ut=(w&4)!==0,Vr=!Ut&&O==="scroll",Fe=Ut?st!==null?st+"Capture":null:st;Ut=[];for(var De=Ge,Ve;De!==null;){Ve=De;var ft=Ve.stateNode;if(Ve.tag===5&&ft!==null&&(Ve=ft,Fe!==null&&(ft=Qe(De,Fe),ft!=null&&Ut.push(og(De,ft,Ve)))),Vr)break;De=De.return}0<Ut.length&&(st=new Wt(st,$t,null,q,at),ut.push({event:st,listeners:Ut}))}}if(!(w&7)){e:{if(st=O==="mouseover"||O==="pointerover",Wt=O==="mouseout"||O==="pointerout",st&&q!==Mt&&($t=q.relatedTarget||q.fromElement)&&(zp($t)||$t[Fc]))break e;if((Wt||st)&&(st=at.window===at?at:(st=at.ownerDocument)?st.defaultView||st.parentWindow:window,Wt?($t=q.relatedTarget||q.toElement,Wt=Ge,$t=$t?zp($t):null,$t!==null&&(Vr=ao($t),$t!==Vr||$t.tag!==5&&$t.tag!==6)&&($t=null)):(Wt=null,$t=Ge),Wt!==$t)){if(Ut=LF,ft="onMouseLeave",Fe="onMouseEnter",De="mouse",(O==="pointerout"||O==="pointerover")&&(Ut=jF,ft="onPointerLeave",Fe="onPointerEnter",De="pointer"),Vr=Wt==null?st:_b(Wt),Ve=$t==null?st:_b($t),st=new Ut(ft,De+"leave",Wt,q,at),st.target=Vr,st.relatedTarget=Ve,ft=null,zp(at)===Ge&&(Ut=new Ut(Fe,De+"enter",$t,q,at),Ut.target=Ve,Ut.relatedTarget=Vr,ft=Ut),Vr=ft,Wt&&$t)t:{for(Ut=Wt,Fe=$t,De=0,Ve=Ut;Ve;Ve=xb(Ve))De++;for(Ve=0,ft=Fe;ft;ft=xb(ft))Ve++;for(;0<De-Ve;)Ut=xb(Ut),De--;for(;0<Ve-De;)Fe=xb(Fe),Ve--;for(;De--;){if(Ut===Fe||Fe!==null&&Ut===Fe.alternate)break t;Ut=xb(Ut),Fe=xb(Fe)}Ut=null}else Ut=null;Wt!==null&&p$(ut,st,Wt,Ut,!1),$t!==null&&Vr!==null&&p$(ut,Vr,$t,Ut,!0)}}e:{if(st=Ge?_b(Ge):window,Wt=st.nodeName&&st.nodeName.toLowerCase(),Wt==="select"||Wt==="input"&&st.type==="file")var Kt=e_e;else if(HF(st))if(XF)Kt=r_e;else{Kt=n_e;var cn=t_e}else(Wt=st.nodeName)&&Wt.toLowerCase()==="input"&&(st.type==="checkbox"||st.type==="radio")&&(Kt=o_e);if(Kt&&(Kt=Kt(O,Ge))){UF(ut,Kt,q,at);break e}cn&&cn(O,st,Ge),O==="focusout"&&(cn=st._wrapperState)&&cn.controlled&&st.type==="number"&&se(st,"number",st.value)}switch(cn=Ge?_b(Ge):window,O){case"focusin":(HF(cn)||cn.contentEditable==="true")&&(Ab=cn,Xk=Ge,eg=null);break;case"focusout":eg=Xk=Ab=null;break;case"mousedown":Gk=!0;break;case"contextmenu":case"mouseup":case"dragend":Gk=!1,t$(ut,q,at);break;case"selectionchange":if(a_e)break;case"keydown":case"keyup":t$(ut,q,at)}var ln;if($k)e:{switch(O){case"compositionstart":var yn="onCompositionStart";break e;case"compositionend":yn="onCompositionEnd";break e;case"compositionupdate":yn="onCompositionUpdate";break e}yn=void 0}else yb?$F(O,q)&&(yn="onCompositionEnd"):O==="keydown"&&q.keyCode===229&&(yn="onCompositionStart");yn&&(IF&&q.locale!=="ko"&&(yb||yn!=="onCompositionStart"?yn==="onCompositionEnd"&&yb&&(ln=NF()):(bu=at,Lk="value"in bu?bu.value:bu.textContent,yb=!0)),cn=fy(Ge,yn),0<cn.length&&(yn=new PF(yn,O,null,q,at),ut.push({event:yn,listeners:cn}),ln?yn.data=ln:(ln=VF(q),ln!==null&&(yn.data=ln)))),(ln=Kwe?Ywe(O,q):Zwe(O,q))&&(Ge=fy(Ge,"onBeforeInput"),0<Ge.length&&(at=new PF("onBeforeInput","beforeinput",null,q,at),ut.push({event:at,listeners:Ge}),at.data=ln))}u$(ut,w)})}function og(O,w,q){return{instance:O,listener:w,currentTarget:q}}function fy(O,w){for(var q=w+"Capture",W=[];O!==null;){var D=O,K=D.stateNode;D.tag===5&&K!==null&&(D=K,K=Qe(O,q),K!=null&&W.unshift(og(O,K,D)),K=Qe(O,w),K!=null&&W.push(og(O,K,D))),O=O.return}return W}function xb(O){if(O===null)return null;do O=O.return;while(O&&O.tag!==5);return O||null}function p$(O,w,q,W,D){for(var K=w._reactName,le=[];q!==null&&q!==W;){var Te=q,Le=Te.alternate,Ge=Te.stateNode;if(Le!==null&&Le===W)break;Te.tag===5&&Ge!==null&&(Te=Ge,D?(Le=Qe(q,K),Le!=null&&le.unshift(og(q,Le,Te))):D||(Le=Qe(q,K),Le!=null&&le.push(og(q,Le,Te)))),q=q.return}le.length!==0&&O.push({event:w,listeners:le})}var d_e=/\r\n?/g,p_e=/\u0000|\uFFFD/g;function f$(O){return(typeof O=="string"?O:""+O).replace(d_e,` +`).replace(p_e,"")}function by(O,w,q){if(w=f$(w),f$(O)!==w&&q)throw Error(n(425))}function hy(){}var e6=null,t6=null;function n6(O,w){return O==="textarea"||O==="noscript"||typeof w.children=="string"||typeof w.children=="number"||typeof w.dangerouslySetInnerHTML=="object"&&w.dangerouslySetInnerHTML!==null&&w.dangerouslySetInnerHTML.__html!=null}var o6=typeof setTimeout=="function"?setTimeout:void 0,f_e=typeof clearTimeout=="function"?clearTimeout:void 0,b$=typeof Promise=="function"?Promise:void 0,b_e=typeof queueMicrotask=="function"?queueMicrotask:typeof b$<"u"?function(O){return b$.resolve(null).then(O).catch(h_e)}:o6;function h_e(O){setTimeout(function(){throw O})}function r6(O,w){var q=w,W=0;do{var D=q.nextSibling;if(O.removeChild(q),D&&D.nodeType===8)if(q=D.data,q==="/$"){if(W===0){O.removeChild(D),Xm(w);return}W--}else q!=="$"&&q!=="$?"&&q!=="$!"||W++;q=D}while(q);Xm(w)}function mu(O){for(;O!=null;O=O.nextSibling){var w=O.nodeType;if(w===1||w===3)break;if(w===8){if(w=O.data,w==="$"||w==="$!"||w==="$?")break;if(w==="/$")return null}}return O}function h$(O){O=O.previousSibling;for(var w=0;O;){if(O.nodeType===8){var q=O.data;if(q==="$"||q==="$!"||q==="$?"){if(w===0)return O;w--}else q==="/$"&&w++}O=O.previousSibling}return null}var wb=Math.random().toString(36).slice(2),Wa="__reactFiber$"+wb,rg="__reactProps$"+wb,Fc="__reactContainer$"+wb,s6="__reactEvents$"+wb,m_e="__reactListeners$"+wb,g_e="__reactHandles$"+wb;function zp(O){var w=O[Wa];if(w)return w;for(var q=O.parentNode;q;){if(w=q[Fc]||q[Wa]){if(q=w.alternate,w.child!==null||q!==null&&q.child!==null)for(O=h$(O);O!==null;){if(q=O[Wa])return q;O=h$(O)}return w}O=q,q=O.parentNode}return null}function sg(O){return O=O[Wa]||O[Fc],!O||O.tag!==5&&O.tag!==6&&O.tag!==13&&O.tag!==3?null:O}function _b(O){if(O.tag===5||O.tag===6)return O.stateNode;throw Error(n(33))}function my(O){return O[rg]||null}var i6=[],kb=-1;function gu(O){return{current:O}}function ir(O){0>kb||(O.current=i6[kb],i6[kb]=null,kb--)}function er(O,w){kb++,i6[kb]=O.current,O.current=w}var Mu={},r1=gu(Mu),K1=gu(!1),Op=Mu;function Sb(O,w){var q=O.type.contextTypes;if(!q)return Mu;var W=O.stateNode;if(W&&W.__reactInternalMemoizedUnmaskedChildContext===w)return W.__reactInternalMemoizedMaskedChildContext;var D={},K;for(K in q)D[K]=w[K];return W&&(O=O.stateNode,O.__reactInternalMemoizedUnmaskedChildContext=w,O.__reactInternalMemoizedMaskedChildContext=D),D}function Y1(O){return O=O.childContextTypes,O!=null}function gy(){ir(K1),ir(r1)}function m$(O,w,q){if(r1.current!==Mu)throw Error(n(168));er(r1,w),er(K1,q)}function g$(O,w,q){var W=O.stateNode;if(w=w.childContextTypes,typeof W.getChildContext!="function")return q;W=W.getChildContext();for(var D in W)if(!(D in w))throw Error(n(108,me(O)||"Unknown",D));return Z({},q,W)}function My(O){return O=(O=O.stateNode)&&O.__reactInternalMemoizedMergedChildContext||Mu,Op=r1.current,er(r1,O),er(K1,K1.current),!0}function M$(O,w,q){var W=O.stateNode;if(!W)throw Error(n(169));q?(O=g$(O,w,Op),W.__reactInternalMemoizedMergedChildContext=O,ir(K1),ir(r1),er(r1,O)):ir(K1),er(K1,q)}var $c=null,zy=!1,a6=!1;function z$(O){$c===null?$c=[O]:$c.push(O)}function M_e(O){zy=!0,z$(O)}function zu(){if(!a6&&$c!==null){a6=!0;var O=0,w=Eo;try{var q=$c;for(Eo=1;O<q.length;O++){var W=q[O];do W=W(!0);while(W!==null)}$c=null,zy=!1}catch(D){throw $c!==null&&($c=$c.slice(O+1)),hp(Ta,zu),D}finally{Eo=w,a6=!1}}return null}var Cb=[],qb=0,Oy=null,yy=0,ti=[],ni=0,yp=null,Vc=1,Hc="";function Ap(O,w){Cb[qb++]=yy,Cb[qb++]=Oy,Oy=O,yy=w}function O$(O,w,q){ti[ni++]=Vc,ti[ni++]=Hc,ti[ni++]=yp,yp=O;var W=Vc;O=Hc;var D=32-I0(W)-1;W&=~(1<<D),q+=1;var K=32-I0(w)+D;if(30<K){var le=D-D%5;K=(W&(1<<le)-1).toString(32),W>>=le,D-=le,Vc=1<<32-I0(w)+D|q<<D|W,Hc=K+O}else Vc=1<<K|q<<D|W,Hc=O}function c6(O){O.return!==null&&(Ap(O,1),O$(O,1,0))}function l6(O){for(;O===Oy;)Oy=Cb[--qb],Cb[qb]=null,yy=Cb[--qb],Cb[qb]=null;for(;O===yp;)yp=ti[--ni],ti[ni]=null,Hc=ti[--ni],ti[ni]=null,Vc=ti[--ni],ti[ni]=null}var Ss=null,Cs=null,fr=!1,Ki=null;function y$(O,w){var q=ii(5,null,null,0);q.elementType="DELETED",q.stateNode=w,q.return=O,w=O.deletions,w===null?(O.deletions=[q],O.flags|=16):w.push(q)}function A$(O,w){switch(O.tag){case 5:var q=O.type;return w=w.nodeType!==1||q.toLowerCase()!==w.nodeName.toLowerCase()?null:w,w!==null?(O.stateNode=w,Ss=O,Cs=mu(w.firstChild),!0):!1;case 6:return w=O.pendingProps===""||w.nodeType!==3?null:w,w!==null?(O.stateNode=w,Ss=O,Cs=null,!0):!1;case 13:return w=w.nodeType!==8?null:w,w!==null?(q=yp!==null?{id:Vc,overflow:Hc}:null,O.memoizedState={dehydrated:w,treeContext:q,retryLane:1073741824},q=ii(18,null,null,0),q.stateNode=w,q.return=O,O.child=q,Ss=O,Cs=null,!0):!1;default:return!1}}function u6(O){return(O.mode&1)!==0&&(O.flags&128)===0}function d6(O){if(fr){var w=Cs;if(w){var q=w;if(!A$(O,w)){if(u6(O))throw Error(n(418));w=mu(q.nextSibling);var W=Ss;w&&A$(O,w)?y$(W,q):(O.flags=O.flags&-4097|2,fr=!1,Ss=O)}}else{if(u6(O))throw Error(n(418));O.flags=O.flags&-4097|2,fr=!1,Ss=O}}}function v$(O){for(O=O.return;O!==null&&O.tag!==5&&O.tag!==3&&O.tag!==13;)O=O.return;Ss=O}function Ay(O){if(O!==Ss)return!1;if(!fr)return v$(O),fr=!0,!1;var w;if((w=O.tag!==3)&&!(w=O.tag!==5)&&(w=O.type,w=w!=="head"&&w!=="body"&&!n6(O.type,O.memoizedProps)),w&&(w=Cs)){if(u6(O))throw x$(),Error(n(418));for(;w;)y$(O,w),w=mu(w.nextSibling)}if(v$(O),O.tag===13){if(O=O.memoizedState,O=O!==null?O.dehydrated:null,!O)throw Error(n(317));e:{for(O=O.nextSibling,w=0;O;){if(O.nodeType===8){var q=O.data;if(q==="/$"){if(w===0){Cs=mu(O.nextSibling);break e}w--}else q!=="$"&&q!=="$!"&&q!=="$?"||w++}O=O.nextSibling}Cs=null}}else Cs=Ss?mu(O.stateNode.nextSibling):null;return!0}function x$(){for(var O=Cs;O;)O=mu(O.nextSibling)}function Rb(){Cs=Ss=null,fr=!1}function p6(O){Ki===null?Ki=[O]:Ki.push(O)}var z_e=M.ReactCurrentBatchConfig;function ig(O,w,q){if(O=q.ref,O!==null&&typeof O!="function"&&typeof O!="object"){if(q._owner){if(q=q._owner,q){if(q.tag!==1)throw Error(n(309));var W=q.stateNode}if(!W)throw Error(n(147,O));var D=W,K=""+O;return w!==null&&w.ref!==null&&typeof w.ref=="function"&&w.ref._stringRef===K?w.ref:(w=function(le){var Te=D.refs;le===null?delete Te[K]:Te[K]=le},w._stringRef=K,w)}if(typeof O!="string")throw Error(n(284));if(!q._owner)throw Error(n(290,O))}return O}function vy(O,w){throw O=Object.prototype.toString.call(w),Error(n(31,O==="[object Object]"?"object with keys {"+Object.keys(w).join(", ")+"}":O))}function w$(O){var w=O._init;return w(O._payload)}function _$(O){function w(Fe,De){if(O){var Ve=Fe.deletions;Ve===null?(Fe.deletions=[De],Fe.flags|=16):Ve.push(De)}}function q(Fe,De){if(!O)return null;for(;De!==null;)w(Fe,De),De=De.sibling;return null}function W(Fe,De){for(Fe=new Map;De!==null;)De.key!==null?Fe.set(De.key,De):Fe.set(De.index,De),De=De.sibling;return Fe}function D(Fe,De){return Fe=ku(Fe,De),Fe.index=0,Fe.sibling=null,Fe}function K(Fe,De,Ve){return Fe.index=Ve,O?(Ve=Fe.alternate,Ve!==null?(Ve=Ve.index,Ve<De?(Fe.flags|=2,De):Ve):(Fe.flags|=2,De)):(Fe.flags|=1048576,De)}function le(Fe){return O&&Fe.alternate===null&&(Fe.flags|=2),Fe}function Te(Fe,De,Ve,ft){return De===null||De.tag!==6?(De=oS(Ve,Fe.mode,ft),De.return=Fe,De):(De=D(De,Ve),De.return=Fe,De)}function Le(Fe,De,Ve,ft){var Kt=Ve.type;return Kt===S?at(Fe,De,Ve.props.children,ft,Ve.key):De!==null&&(De.elementType===Kt||typeof Kt=="object"&&Kt!==null&&Kt.$$typeof===P&&w$(Kt)===De.type)?(ft=D(De,Ve.props),ft.ref=ig(Fe,De,Ve),ft.return=Fe,ft):(ft=Xy(Ve.type,Ve.key,Ve.props,null,Fe.mode,ft),ft.ref=ig(Fe,De,Ve),ft.return=Fe,ft)}function Ge(Fe,De,Ve,ft){return De===null||De.tag!==4||De.stateNode.containerInfo!==Ve.containerInfo||De.stateNode.implementation!==Ve.implementation?(De=rS(Ve,Fe.mode,ft),De.return=Fe,De):(De=D(De,Ve.children||[]),De.return=Fe,De)}function at(Fe,De,Ve,ft,Kt){return De===null||De.tag!==7?(De=qp(Ve,Fe.mode,ft,Kt),De.return=Fe,De):(De=D(De,Ve),De.return=Fe,De)}function ut(Fe,De,Ve){if(typeof De=="string"&&De!==""||typeof De=="number")return De=oS(""+De,Fe.mode,Ve),De.return=Fe,De;if(typeof De=="object"&&De!==null){switch(De.$$typeof){case y:return Ve=Xy(De.type,De.key,De.props,null,Fe.mode,Ve),Ve.ref=ig(Fe,null,De),Ve.return=Fe,Ve;case k:return De=rS(De,Fe.mode,Ve),De.return=Fe,De;case P:var ft=De._init;return ut(Fe,ft(De._payload),Ve)}if(L(De)||X(De))return De=qp(De,Fe.mode,Ve,null),De.return=Fe,De;vy(Fe,De)}return null}function st(Fe,De,Ve,ft){var Kt=De!==null?De.key:null;if(typeof Ve=="string"&&Ve!==""||typeof Ve=="number")return Kt!==null?null:Te(Fe,De,""+Ve,ft);if(typeof Ve=="object"&&Ve!==null){switch(Ve.$$typeof){case y:return Ve.key===Kt?Le(Fe,De,Ve,ft):null;case k:return Ve.key===Kt?Ge(Fe,De,Ve,ft):null;case P:return Kt=Ve._init,st(Fe,De,Kt(Ve._payload),ft)}if(L(Ve)||X(Ve))return Kt!==null?null:at(Fe,De,Ve,ft,null);vy(Fe,Ve)}return null}function Wt(Fe,De,Ve,ft,Kt){if(typeof ft=="string"&&ft!==""||typeof ft=="number")return Fe=Fe.get(Ve)||null,Te(De,Fe,""+ft,Kt);if(typeof ft=="object"&&ft!==null){switch(ft.$$typeof){case y:return Fe=Fe.get(ft.key===null?Ve:ft.key)||null,Le(De,Fe,ft,Kt);case k:return Fe=Fe.get(ft.key===null?Ve:ft.key)||null,Ge(De,Fe,ft,Kt);case P:var cn=ft._init;return Wt(Fe,De,Ve,cn(ft._payload),Kt)}if(L(ft)||X(ft))return Fe=Fe.get(Ve)||null,at(De,Fe,ft,Kt,null);vy(De,ft)}return null}function $t(Fe,De,Ve,ft){for(var Kt=null,cn=null,ln=De,yn=De=0,v0=null;ln!==null&&yn<Ve.length;yn++){ln.index>yn?(v0=ln,ln=null):v0=ln.sibling;var po=st(Fe,ln,Ve[yn],ft);if(po===null){ln===null&&(ln=v0);break}O&&ln&&po.alternate===null&&w(Fe,ln),De=K(po,De,yn),cn===null?Kt=po:cn.sibling=po,cn=po,ln=v0}if(yn===Ve.length)return q(Fe,ln),fr&&Ap(Fe,yn),Kt;if(ln===null){for(;yn<Ve.length;yn++)ln=ut(Fe,Ve[yn],ft),ln!==null&&(De=K(ln,De,yn),cn===null?Kt=ln:cn.sibling=ln,cn=ln);return fr&&Ap(Fe,yn),Kt}for(ln=W(Fe,ln);yn<Ve.length;yn++)v0=Wt(ln,Fe,yn,Ve[yn],ft),v0!==null&&(O&&v0.alternate!==null&&ln.delete(v0.key===null?yn:v0.key),De=K(v0,De,yn),cn===null?Kt=v0:cn.sibling=v0,cn=v0);return O&&ln.forEach(function(Su){return w(Fe,Su)}),fr&&Ap(Fe,yn),Kt}function Ut(Fe,De,Ve,ft){var Kt=X(Ve);if(typeof Kt!="function")throw Error(n(150));if(Ve=Kt.call(Ve),Ve==null)throw Error(n(151));for(var cn=Kt=null,ln=De,yn=De=0,v0=null,po=Ve.next();ln!==null&&!po.done;yn++,po=Ve.next()){ln.index>yn?(v0=ln,ln=null):v0=ln.sibling;var Su=st(Fe,ln,po.value,ft);if(Su===null){ln===null&&(ln=v0);break}O&&ln&&Su.alternate===null&&w(Fe,ln),De=K(Su,De,yn),cn===null?Kt=Su:cn.sibling=Su,cn=Su,ln=v0}if(po.done)return q(Fe,ln),fr&&Ap(Fe,yn),Kt;if(ln===null){for(;!po.done;yn++,po=Ve.next())po=ut(Fe,po.value,ft),po!==null&&(De=K(po,De,yn),cn===null?Kt=po:cn.sibling=po,cn=po);return fr&&Ap(Fe,yn),Kt}for(ln=W(Fe,ln);!po.done;yn++,po=Ve.next())po=Wt(ln,Fe,yn,po.value,ft),po!==null&&(O&&po.alternate!==null&&ln.delete(po.key===null?yn:po.key),De=K(po,De,yn),cn===null?Kt=po:cn.sibling=po,cn=po);return O&&ln.forEach(function(Q_e){return w(Fe,Q_e)}),fr&&Ap(Fe,yn),Kt}function Vr(Fe,De,Ve,ft){if(typeof Ve=="object"&&Ve!==null&&Ve.type===S&&Ve.key===null&&(Ve=Ve.props.children),typeof Ve=="object"&&Ve!==null){switch(Ve.$$typeof){case y:e:{for(var Kt=Ve.key,cn=De;cn!==null;){if(cn.key===Kt){if(Kt=Ve.type,Kt===S){if(cn.tag===7){q(Fe,cn.sibling),De=D(cn,Ve.props.children),De.return=Fe,Fe=De;break e}}else if(cn.elementType===Kt||typeof Kt=="object"&&Kt!==null&&Kt.$$typeof===P&&w$(Kt)===cn.type){q(Fe,cn.sibling),De=D(cn,Ve.props),De.ref=ig(Fe,cn,Ve),De.return=Fe,Fe=De;break e}q(Fe,cn);break}else w(Fe,cn);cn=cn.sibling}Ve.type===S?(De=qp(Ve.props.children,Fe.mode,ft,Ve.key),De.return=Fe,Fe=De):(ft=Xy(Ve.type,Ve.key,Ve.props,null,Fe.mode,ft),ft.ref=ig(Fe,De,Ve),ft.return=Fe,Fe=ft)}return le(Fe);case k:e:{for(cn=Ve.key;De!==null;){if(De.key===cn)if(De.tag===4&&De.stateNode.containerInfo===Ve.containerInfo&&De.stateNode.implementation===Ve.implementation){q(Fe,De.sibling),De=D(De,Ve.children||[]),De.return=Fe,Fe=De;break e}else{q(Fe,De);break}else w(Fe,De);De=De.sibling}De=rS(Ve,Fe.mode,ft),De.return=Fe,Fe=De}return le(Fe);case P:return cn=Ve._init,Vr(Fe,De,cn(Ve._payload),ft)}if(L(Ve))return $t(Fe,De,Ve,ft);if(X(Ve))return Ut(Fe,De,Ve,ft);vy(Fe,Ve)}return typeof Ve=="string"&&Ve!==""||typeof Ve=="number"?(Ve=""+Ve,De!==null&&De.tag===6?(q(Fe,De.sibling),De=D(De,Ve),De.return=Fe,Fe=De):(q(Fe,De),De=oS(Ve,Fe.mode,ft),De.return=Fe,Fe=De),le(Fe)):q(Fe,De)}return Vr}var Tb=_$(!0),k$=_$(!1),xy=gu(null),wy=null,Eb=null,f6=null;function b6(){f6=Eb=wy=null}function h6(O){var w=xy.current;ir(xy),O._currentValue=w}function m6(O,w,q){for(;O!==null;){var W=O.alternate;if((O.childLanes&w)!==w?(O.childLanes|=w,W!==null&&(W.childLanes|=w)):W!==null&&(W.childLanes&w)!==w&&(W.childLanes|=w),O===q)break;O=O.return}}function Wb(O,w){wy=O,f6=Eb=null,O=O.dependencies,O!==null&&O.firstContext!==null&&(O.lanes&w&&(Z1=!0),O.firstContext=null)}function oi(O){var w=O._currentValue;if(f6!==O)if(O={context:O,memoizedValue:w,next:null},Eb===null){if(wy===null)throw Error(n(308));Eb=O,wy.dependencies={lanes:0,firstContext:O}}else Eb=Eb.next=O;return w}var vp=null;function g6(O){vp===null?vp=[O]:vp.push(O)}function S$(O,w,q,W){var D=w.interleaved;return D===null?(q.next=q,g6(w)):(q.next=D.next,D.next=q),w.interleaved=q,Uc(O,W)}function Uc(O,w){O.lanes|=w;var q=O.alternate;for(q!==null&&(q.lanes|=w),q=O,O=O.return;O!==null;)O.childLanes|=w,q=O.alternate,q!==null&&(q.childLanes|=w),q=O,O=O.return;return q.tag===3?q.stateNode:null}var Ou=!1;function M6(O){O.updateQueue={baseState:O.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function C$(O,w){O=O.updateQueue,w.updateQueue===O&&(w.updateQueue={baseState:O.baseState,firstBaseUpdate:O.firstBaseUpdate,lastBaseUpdate:O.lastBaseUpdate,shared:O.shared,effects:O.effects})}function Xc(O,w){return{eventTime:O,lane:w,tag:0,payload:null,callback:null,next:null}}function yu(O,w,q){var W=O.updateQueue;if(W===null)return null;if(W=W.shared,co&2){var D=W.pending;return D===null?w.next=w:(w.next=D.next,D.next=w),W.pending=w,Uc(O,q)}return D=W.interleaved,D===null?(w.next=w,g6(W)):(w.next=D.next,D.next=w),W.interleaved=w,Uc(O,q)}function _y(O,w,q){if(w=w.updateQueue,w!==null&&(w=w.shared,(q&4194240)!==0)){var W=w.lanes;W&=O.pendingLanes,q|=W,w.lanes=q,Tk(O,q)}}function q$(O,w){var q=O.updateQueue,W=O.alternate;if(W!==null&&(W=W.updateQueue,q===W)){var D=null,K=null;if(q=q.firstBaseUpdate,q!==null){do{var le={eventTime:q.eventTime,lane:q.lane,tag:q.tag,payload:q.payload,callback:q.callback,next:null};K===null?D=K=le:K=K.next=le,q=q.next}while(q!==null);K===null?D=K=w:K=K.next=w}else D=K=w;q={baseState:W.baseState,firstBaseUpdate:D,lastBaseUpdate:K,shared:W.shared,effects:W.effects},O.updateQueue=q;return}O=q.lastBaseUpdate,O===null?q.firstBaseUpdate=w:O.next=w,q.lastBaseUpdate=w}function ky(O,w,q,W){var D=O.updateQueue;Ou=!1;var K=D.firstBaseUpdate,le=D.lastBaseUpdate,Te=D.shared.pending;if(Te!==null){D.shared.pending=null;var Le=Te,Ge=Le.next;Le.next=null,le===null?K=Ge:le.next=Ge,le=Le;var at=O.alternate;at!==null&&(at=at.updateQueue,Te=at.lastBaseUpdate,Te!==le&&(Te===null?at.firstBaseUpdate=Ge:Te.next=Ge,at.lastBaseUpdate=Le))}if(K!==null){var ut=D.baseState;le=0,at=Ge=Le=null,Te=K;do{var st=Te.lane,Wt=Te.eventTime;if((W&st)===st){at!==null&&(at=at.next={eventTime:Wt,lane:0,tag:Te.tag,payload:Te.payload,callback:Te.callback,next:null});e:{var $t=O,Ut=Te;switch(st=w,Wt=q,Ut.tag){case 1:if($t=Ut.payload,typeof $t=="function"){ut=$t.call(Wt,ut,st);break e}ut=$t;break e;case 3:$t.flags=$t.flags&-65537|128;case 0:if($t=Ut.payload,st=typeof $t=="function"?$t.call(Wt,ut,st):$t,st==null)break e;ut=Z({},ut,st);break e;case 2:Ou=!0}}Te.callback!==null&&Te.lane!==0&&(O.flags|=64,st=D.effects,st===null?D.effects=[Te]:st.push(Te))}else Wt={eventTime:Wt,lane:st,tag:Te.tag,payload:Te.payload,callback:Te.callback,next:null},at===null?(Ge=at=Wt,Le=ut):at=at.next=Wt,le|=st;if(Te=Te.next,Te===null){if(Te=D.shared.pending,Te===null)break;st=Te,Te=st.next,st.next=null,D.lastBaseUpdate=st,D.shared.pending=null}}while(!0);if(at===null&&(Le=ut),D.baseState=Le,D.firstBaseUpdate=Ge,D.lastBaseUpdate=at,w=D.shared.interleaved,w!==null){D=w;do le|=D.lane,D=D.next;while(D!==w)}else K===null&&(D.shared.lanes=0);_p|=le,O.lanes=le,O.memoizedState=ut}}function R$(O,w,q){if(O=w.effects,w.effects=null,O!==null)for(w=0;w<O.length;w++){var W=O[w],D=W.callback;if(D!==null){if(W.callback=null,W=q,typeof D!="function")throw Error(n(191,D));D.call(W)}}}var ag={},Na=gu(ag),cg=gu(ag),lg=gu(ag);function xp(O){if(O===ag)throw Error(n(174));return O}function z6(O,w){switch(er(lg,w),er(cg,O),er(Na,ag),O=w.nodeType,O){case 9:case 11:w=(w=w.documentElement)?w.namespaceURI:qt(null,"");break;default:O=O===8?w.parentNode:w,w=O.namespaceURI||null,O=O.tagName,w=qt(w,O)}ir(Na),er(Na,w)}function Nb(){ir(Na),ir(cg),ir(lg)}function T$(O){xp(lg.current);var w=xp(Na.current),q=qt(w,O.type);w!==q&&(er(cg,O),er(Na,q))}function O6(O){cg.current===O&&(ir(Na),ir(cg))}var xr=gu(0);function Sy(O){for(var w=O;w!==null;){if(w.tag===13){var q=w.memoizedState;if(q!==null&&(q=q.dehydrated,q===null||q.data==="$?"||q.data==="$!"))return w}else if(w.tag===19&&w.memoizedProps.revealOrder!==void 0){if(w.flags&128)return w}else if(w.child!==null){w.child.return=w,w=w.child;continue}if(w===O)break;for(;w.sibling===null;){if(w.return===null||w.return===O)return null;w=w.return}w.sibling.return=w.return,w=w.sibling}return null}var y6=[];function A6(){for(var O=0;O<y6.length;O++)y6[O]._workInProgressVersionPrimary=null;y6.length=0}var Cy=M.ReactCurrentDispatcher,v6=M.ReactCurrentBatchConfig,wp=0,wr=null,u0=null,y0=null,qy=!1,ug=!1,dg=0,O_e=0;function s1(){throw Error(n(321))}function x6(O,w){if(w===null)return!1;for(var q=0;q<w.length&&q<O.length;q++)if(!Gi(O[q],w[q]))return!1;return!0}function w6(O,w,q,W,D,K){if(wp=K,wr=w,w.memoizedState=null,w.updateQueue=null,w.lanes=0,Cy.current=O===null||O.memoizedState===null?x_e:w_e,O=q(W,D),ug){K=0;do{if(ug=!1,dg=0,25<=K)throw Error(n(301));K+=1,y0=u0=null,w.updateQueue=null,Cy.current=__e,O=q(W,D)}while(ug)}if(Cy.current=Ey,w=u0!==null&&u0.next!==null,wp=0,y0=u0=wr=null,qy=!1,w)throw Error(n(300));return O}function _6(){var O=dg!==0;return dg=0,O}function Ba(){var O={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return y0===null?wr.memoizedState=y0=O:y0=y0.next=O,y0}function ri(){if(u0===null){var O=wr.alternate;O=O!==null?O.memoizedState:null}else O=u0.next;var w=y0===null?wr.memoizedState:y0.next;if(w!==null)y0=w,u0=O;else{if(O===null)throw Error(n(310));u0=O,O={memoizedState:u0.memoizedState,baseState:u0.baseState,baseQueue:u0.baseQueue,queue:u0.queue,next:null},y0===null?wr.memoizedState=y0=O:y0=y0.next=O}return y0}function pg(O,w){return typeof w=="function"?w(O):w}function k6(O){var w=ri(),q=w.queue;if(q===null)throw Error(n(311));q.lastRenderedReducer=O;var W=u0,D=W.baseQueue,K=q.pending;if(K!==null){if(D!==null){var le=D.next;D.next=K.next,K.next=le}W.baseQueue=D=K,q.pending=null}if(D!==null){K=D.next,W=W.baseState;var Te=le=null,Le=null,Ge=K;do{var at=Ge.lane;if((wp&at)===at)Le!==null&&(Le=Le.next={lane:0,action:Ge.action,hasEagerState:Ge.hasEagerState,eagerState:Ge.eagerState,next:null}),W=Ge.hasEagerState?Ge.eagerState:O(W,Ge.action);else{var ut={lane:at,action:Ge.action,hasEagerState:Ge.hasEagerState,eagerState:Ge.eagerState,next:null};Le===null?(Te=Le=ut,le=W):Le=Le.next=ut,wr.lanes|=at,_p|=at}Ge=Ge.next}while(Ge!==null&&Ge!==K);Le===null?le=W:Le.next=Te,Gi(W,w.memoizedState)||(Z1=!0),w.memoizedState=W,w.baseState=le,w.baseQueue=Le,q.lastRenderedState=W}if(O=q.interleaved,O!==null){D=O;do K=D.lane,wr.lanes|=K,_p|=K,D=D.next;while(D!==O)}else D===null&&(q.lanes=0);return[w.memoizedState,q.dispatch]}function S6(O){var w=ri(),q=w.queue;if(q===null)throw Error(n(311));q.lastRenderedReducer=O;var W=q.dispatch,D=q.pending,K=w.memoizedState;if(D!==null){q.pending=null;var le=D=D.next;do K=O(K,le.action),le=le.next;while(le!==D);Gi(K,w.memoizedState)||(Z1=!0),w.memoizedState=K,w.baseQueue===null&&(w.baseState=K),q.lastRenderedState=K}return[K,W]}function E$(){}function W$(O,w){var q=wr,W=ri(),D=w(),K=!Gi(W.memoizedState,D);if(K&&(W.memoizedState=D,Z1=!0),W=W.queue,C6(L$.bind(null,q,W,O),[O]),W.getSnapshot!==w||K||y0!==null&&y0.memoizedState.tag&1){if(q.flags|=2048,fg(9,B$.bind(null,q,W,D,w),void 0,null),A0===null)throw Error(n(349));wp&30||N$(q,w,D)}return D}function N$(O,w,q){O.flags|=16384,O={getSnapshot:w,value:q},w=wr.updateQueue,w===null?(w={lastEffect:null,stores:null},wr.updateQueue=w,w.stores=[O]):(q=w.stores,q===null?w.stores=[O]:q.push(O))}function B$(O,w,q,W){w.value=q,w.getSnapshot=W,P$(w)&&j$(O)}function L$(O,w,q){return q(function(){P$(w)&&j$(O)})}function P$(O){var w=O.getSnapshot;O=O.value;try{var q=w();return!Gi(O,q)}catch{return!0}}function j$(O){var w=Uc(O,1);w!==null&&Ji(w,O,1,-1)}function I$(O){var w=Ba();return typeof O=="function"&&(O=O()),w.memoizedState=w.baseState=O,O={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:pg,lastRenderedState:O},w.queue=O,O=O.dispatch=v_e.bind(null,wr,O),[w.memoizedState,O]}function fg(O,w,q,W){return O={tag:O,create:w,destroy:q,deps:W,next:null},w=wr.updateQueue,w===null?(w={lastEffect:null,stores:null},wr.updateQueue=w,w.lastEffect=O.next=O):(q=w.lastEffect,q===null?w.lastEffect=O.next=O:(W=q.next,q.next=O,O.next=W,w.lastEffect=O)),O}function D$(){return ri().memoizedState}function Ry(O,w,q,W){var D=Ba();wr.flags|=O,D.memoizedState=fg(1|w,q,void 0,W===void 0?null:W)}function Ty(O,w,q,W){var D=ri();W=W===void 0?null:W;var K=void 0;if(u0!==null){var le=u0.memoizedState;if(K=le.destroy,W!==null&&x6(W,le.deps)){D.memoizedState=fg(w,q,K,W);return}}wr.flags|=O,D.memoizedState=fg(1|w,q,K,W)}function F$(O,w){return Ry(8390656,8,O,w)}function C6(O,w){return Ty(2048,8,O,w)}function $$(O,w){return Ty(4,2,O,w)}function V$(O,w){return Ty(4,4,O,w)}function H$(O,w){if(typeof w=="function")return O=O(),w(O),function(){w(null)};if(w!=null)return O=O(),w.current=O,function(){w.current=null}}function U$(O,w,q){return q=q!=null?q.concat([O]):null,Ty(4,4,H$.bind(null,w,O),q)}function q6(){}function X$(O,w){var q=ri();w=w===void 0?null:w;var W=q.memoizedState;return W!==null&&w!==null&&x6(w,W[1])?W[0]:(q.memoizedState=[O,w],O)}function G$(O,w){var q=ri();w=w===void 0?null:w;var W=q.memoizedState;return W!==null&&w!==null&&x6(w,W[1])?W[0]:(O=O(),q.memoizedState=[O,w],O)}function K$(O,w,q){return wp&21?(Gi(q,w)||(q=wF(),wr.lanes|=q,_p|=q,O.baseState=!0),w):(O.baseState&&(O.baseState=!1,Z1=!0),O.memoizedState=q)}function y_e(O,w){var q=Eo;Eo=q!==0&&4>q?q:4,O(!0);var W=v6.transition;v6.transition={};try{O(!1),w()}finally{Eo=q,v6.transition=W}}function Y$(){return ri().memoizedState}function A_e(O,w,q){var W=wu(O);if(q={lane:W,action:q,hasEagerState:!1,eagerState:null,next:null},Z$(O))Q$(w,q);else if(q=S$(O,w,q,W),q!==null){var D=W1();Ji(q,O,W,D),J$(q,w,W)}}function v_e(O,w,q){var W=wu(O),D={lane:W,action:q,hasEagerState:!1,eagerState:null,next:null};if(Z$(O))Q$(w,D);else{var K=O.alternate;if(O.lanes===0&&(K===null||K.lanes===0)&&(K=w.lastRenderedReducer,K!==null))try{var le=w.lastRenderedState,Te=K(le,q);if(D.hasEagerState=!0,D.eagerState=Te,Gi(Te,le)){var Le=w.interleaved;Le===null?(D.next=D,g6(w)):(D.next=Le.next,Le.next=D),w.interleaved=D;return}}catch{}finally{}q=S$(O,w,D,W),q!==null&&(D=W1(),Ji(q,O,W,D),J$(q,w,W))}}function Z$(O){var w=O.alternate;return O===wr||w!==null&&w===wr}function Q$(O,w){ug=qy=!0;var q=O.pending;q===null?w.next=w:(w.next=q.next,q.next=w),O.pending=w}function J$(O,w,q){if(q&4194240){var W=w.lanes;W&=O.pendingLanes,q|=W,w.lanes=q,Tk(O,q)}}var Ey={readContext:oi,useCallback:s1,useContext:s1,useEffect:s1,useImperativeHandle:s1,useInsertionEffect:s1,useLayoutEffect:s1,useMemo:s1,useReducer:s1,useRef:s1,useState:s1,useDebugValue:s1,useDeferredValue:s1,useTransition:s1,useMutableSource:s1,useSyncExternalStore:s1,useId:s1,unstable_isNewReconciler:!1},x_e={readContext:oi,useCallback:function(O,w){return Ba().memoizedState=[O,w===void 0?null:w],O},useContext:oi,useEffect:F$,useImperativeHandle:function(O,w,q){return q=q!=null?q.concat([O]):null,Ry(4194308,4,H$.bind(null,w,O),q)},useLayoutEffect:function(O,w){return Ry(4194308,4,O,w)},useInsertionEffect:function(O,w){return Ry(4,2,O,w)},useMemo:function(O,w){var q=Ba();return w=w===void 0?null:w,O=O(),q.memoizedState=[O,w],O},useReducer:function(O,w,q){var W=Ba();return w=q!==void 0?q(w):w,W.memoizedState=W.baseState=w,O={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:O,lastRenderedState:w},W.queue=O,O=O.dispatch=A_e.bind(null,wr,O),[W.memoizedState,O]},useRef:function(O){var w=Ba();return O={current:O},w.memoizedState=O},useState:I$,useDebugValue:q6,useDeferredValue:function(O){return Ba().memoizedState=O},useTransition:function(){var O=I$(!1),w=O[0];return O=y_e.bind(null,O[1]),Ba().memoizedState=O,[w,O]},useMutableSource:function(){},useSyncExternalStore:function(O,w,q){var W=wr,D=Ba();if(fr){if(q===void 0)throw Error(n(407));q=q()}else{if(q=w(),A0===null)throw Error(n(349));wp&30||N$(W,w,q)}D.memoizedState=q;var K={value:q,getSnapshot:w};return D.queue=K,F$(L$.bind(null,W,K,O),[O]),W.flags|=2048,fg(9,B$.bind(null,W,K,q,w),void 0,null),q},useId:function(){var O=Ba(),w=A0.identifierPrefix;if(fr){var q=Hc,W=Vc;q=(W&~(1<<32-I0(W)-1)).toString(32)+q,w=":"+w+"R"+q,q=dg++,0<q&&(w+="H"+q.toString(32)),w+=":"}else q=O_e++,w=":"+w+"r"+q.toString(32)+":";return O.memoizedState=w},unstable_isNewReconciler:!1},w_e={readContext:oi,useCallback:X$,useContext:oi,useEffect:C6,useImperativeHandle:U$,useInsertionEffect:$$,useLayoutEffect:V$,useMemo:G$,useReducer:k6,useRef:D$,useState:function(){return k6(pg)},useDebugValue:q6,useDeferredValue:function(O){var w=ri();return K$(w,u0.memoizedState,O)},useTransition:function(){var O=k6(pg)[0],w=ri().memoizedState;return[O,w]},useMutableSource:E$,useSyncExternalStore:W$,useId:Y$,unstable_isNewReconciler:!1},__e={readContext:oi,useCallback:X$,useContext:oi,useEffect:C6,useImperativeHandle:U$,useInsertionEffect:$$,useLayoutEffect:V$,useMemo:G$,useReducer:S6,useRef:D$,useState:function(){return S6(pg)},useDebugValue:q6,useDeferredValue:function(O){var w=ri();return u0===null?w.memoizedState=O:K$(w,u0.memoizedState,O)},useTransition:function(){var O=S6(pg)[0],w=ri().memoizedState;return[O,w]},useMutableSource:E$,useSyncExternalStore:W$,useId:Y$,unstable_isNewReconciler:!1};function Yi(O,w){if(O&&O.defaultProps){w=Z({},w),O=O.defaultProps;for(var q in O)w[q]===void 0&&(w[q]=O[q]);return w}return w}function R6(O,w,q,W){w=O.memoizedState,q=q(W,w),q=q==null?w:Z({},w,q),O.memoizedState=q,O.lanes===0&&(O.updateQueue.baseState=q)}var Wy={isMounted:function(O){return(O=O._reactInternals)?ao(O)===O:!1},enqueueSetState:function(O,w,q){O=O._reactInternals;var W=W1(),D=wu(O),K=Xc(W,D);K.payload=w,q!=null&&(K.callback=q),w=yu(O,K,D),w!==null&&(Ji(w,O,D,W),_y(w,O,D))},enqueueReplaceState:function(O,w,q){O=O._reactInternals;var W=W1(),D=wu(O),K=Xc(W,D);K.tag=1,K.payload=w,q!=null&&(K.callback=q),w=yu(O,K,D),w!==null&&(Ji(w,O,D,W),_y(w,O,D))},enqueueForceUpdate:function(O,w){O=O._reactInternals;var q=W1(),W=wu(O),D=Xc(q,W);D.tag=2,w!=null&&(D.callback=w),w=yu(O,D,W),w!==null&&(Ji(w,O,W,q),_y(w,O,W))}};function eV(O,w,q,W,D,K,le){return O=O.stateNode,typeof O.shouldComponentUpdate=="function"?O.shouldComponentUpdate(W,K,le):w.prototype&&w.prototype.isPureReactComponent?!Jm(q,W)||!Jm(D,K):!0}function tV(O,w,q){var W=!1,D=Mu,K=w.contextType;return typeof K=="object"&&K!==null?K=oi(K):(D=Y1(w)?Op:r1.current,W=w.contextTypes,K=(W=W!=null)?Sb(O,D):Mu),w=new w(q,K),O.memoizedState=w.state!==null&&w.state!==void 0?w.state:null,w.updater=Wy,O.stateNode=w,w._reactInternals=O,W&&(O=O.stateNode,O.__reactInternalMemoizedUnmaskedChildContext=D,O.__reactInternalMemoizedMaskedChildContext=K),w}function nV(O,w,q,W){O=w.state,typeof w.componentWillReceiveProps=="function"&&w.componentWillReceiveProps(q,W),typeof w.UNSAFE_componentWillReceiveProps=="function"&&w.UNSAFE_componentWillReceiveProps(q,W),w.state!==O&&Wy.enqueueReplaceState(w,w.state,null)}function T6(O,w,q,W){var D=O.stateNode;D.props=q,D.state=O.memoizedState,D.refs={},M6(O);var K=w.contextType;typeof K=="object"&&K!==null?D.context=oi(K):(K=Y1(w)?Op:r1.current,D.context=Sb(O,K)),D.state=O.memoizedState,K=w.getDerivedStateFromProps,typeof K=="function"&&(R6(O,w,K,q),D.state=O.memoizedState),typeof w.getDerivedStateFromProps=="function"||typeof D.getSnapshotBeforeUpdate=="function"||typeof D.UNSAFE_componentWillMount!="function"&&typeof D.componentWillMount!="function"||(w=D.state,typeof D.componentWillMount=="function"&&D.componentWillMount(),typeof D.UNSAFE_componentWillMount=="function"&&D.UNSAFE_componentWillMount(),w!==D.state&&Wy.enqueueReplaceState(D,D.state,null),ky(O,q,D,W),D.state=O.memoizedState),typeof D.componentDidMount=="function"&&(O.flags|=4194308)}function Bb(O,w){try{var q="",W=w;do q+=ue(W),W=W.return;while(W);var D=q}catch(K){D=` Error generating stack: `+K.message+` -`+K.stack}return{value:O,source:w,stack:D,digest:null}}function W6(O,w,q){return{value:O,source:null,stack:q??null,digest:w??null}}function N6(O,w){try{console.error(w.value)}catch(q){setTimeout(function(){throw q})}}var S_e=typeof WeakMap=="function"?WeakMap:Map;function oV(O,w,q){q=Gc(-1,q),q.tag=3,q.payload={element:null};var W=w.value;return q.callback=function(){Fy||(Fy=!0,Y6=W),N6(O,w)},q}function rV(O,w,q){q=Gc(-1,q),q.tag=3;var W=O.type.getDerivedStateFromError;if(typeof W=="function"){var D=w.value;q.payload=function(){return W(D)},q.callback=function(){N6(O,w)}}var K=O.stateNode;return K!==null&&typeof K.componentDidCatch=="function"&&(q.callback=function(){N6(O,w),typeof W!="function"&&(vu===null?vu=new Set([this]):vu.add(this));var le=w.stack;this.componentDidCatch(w.value,{componentStack:le!==null?le:""})}),q}function sV(O,w,q){var W=O.pingCache;if(W===null){W=O.pingCache=new S_e;var D=new Set;W.set(w,D)}else D=W.get(w),D===void 0&&(D=new Set,W.set(w,D));D.has(q)||(D.add(q),O=F_e.bind(null,O,w,q),w.then(O,O))}function iV(O){do{var w;if((w=O.tag===13)&&(w=O.memoizedState,w=w!==null?w.dehydrated!==null:!0),w)return O;O=O.return}while(O!==null);return null}function aV(O,w,q,W,D){return O.mode&1?(O.flags|=65536,O.lanes=D,O):(O===w?O.flags|=65536:(O.flags|=128,q.flags|=131072,q.flags&=-52805,q.tag===1&&(q.alternate===null?q.tag=17:(w=Gc(-1,1),w.tag=2,yu(q,w,1))),q.lanes|=1),O)}var C_e=M.ReactCurrentOwner,Z1=!1;function E1(O,w,q,W){w.child=O===null?k$(w,null,q,W):Tb(w,O.child,q,W)}function cV(O,w,q,W,D){q=q.render;var K=w.ref;return Wb(w,D),W=_6(O,w,q,W,K,D),q=k6(),O!==null&&!Z1?(w.updateQueue=O.updateQueue,w.flags&=-2053,O.lanes&=~D,Kc(O,w,D)):(fr&&q&&l6(w),w.flags|=1,E1(O,w,W,D),w.child)}function lV(O,w,q,W,D){if(O===null){var K=q.type;return typeof K=="function"&&!oS(K)&&K.defaultProps===void 0&&q.compare===null&&q.defaultProps===void 0?(w.tag=15,w.type=K,uV(O,w,K,W,D)):(O=Gy(q.type,null,W,w,w.mode,D),O.ref=w.ref,O.return=w,w.child=O)}if(K=O.child,!(O.lanes&D)){var le=K.memoizedProps;if(q=q.compare,q=q!==null?q:Jm,q(le,W)&&O.ref===w.ref)return Kc(O,w,D)}return w.flags|=1,O=ku(K,W),O.ref=w.ref,O.return=w,w.child=O}function uV(O,w,q,W,D){if(O!==null){var K=O.memoizedProps;if(Jm(K,W)&&O.ref===w.ref)if(Z1=!1,w.pendingProps=W=K,(O.lanes&D)!==0)O.flags&131072&&(Z1=!0);else return w.lanes=O.lanes,Kc(O,w,D)}return B6(O,w,q,W,D)}function dV(O,w,q){var W=w.pendingProps,D=W.children,K=O!==null?O.memoizedState:null;if(W.mode==="hidden")if(!(w.mode&1))w.memoizedState={baseLanes:0,cachePool:null,transitions:null},er(Pb,qs),qs|=q;else{if(!(q&1073741824))return O=K!==null?K.baseLanes|q:q,w.lanes=w.childLanes=1073741824,w.memoizedState={baseLanes:O,cachePool:null,transitions:null},w.updateQueue=null,er(Pb,qs),qs|=O,null;w.memoizedState={baseLanes:0,cachePool:null,transitions:null},W=K!==null?K.baseLanes:q,er(Pb,qs),qs|=W}else K!==null?(W=K.baseLanes|q,w.memoizedState=null):W=q,er(Pb,qs),qs|=W;return E1(O,w,D,q),w.child}function pV(O,w){var q=w.ref;(O===null&&q!==null||O!==null&&O.ref!==q)&&(w.flags|=512,w.flags|=2097152)}function B6(O,w,q,W,D){var K=Y1(q)?Op:r1.current;return K=Sb(w,K),Wb(w,D),q=_6(O,w,q,W,K,D),W=k6(),O!==null&&!Z1?(w.updateQueue=O.updateQueue,w.flags&=-2053,O.lanes&=~D,Kc(O,w,D)):(fr&&W&&l6(w),w.flags|=1,E1(O,w,q,D),w.child)}function fV(O,w,q,W,D){if(Y1(q)){var K=!0;zy(w)}else K=!1;if(Wb(w,D),w.stateNode===null)Ly(O,w),tV(w,q,W),E6(w,q,W,D),W=!0;else if(O===null){var le=w.stateNode,Te=w.memoizedProps;le.props=Te;var Le=le.context,Ge=q.contextType;typeof Ge=="object"&&Ge!==null?Ge=oi(Ge):(Ge=Y1(q)?Op:r1.current,Ge=Sb(w,Ge));var at=q.getDerivedStateFromProps,ut=typeof at=="function"||typeof le.getSnapshotBeforeUpdate=="function";ut||typeof le.UNSAFE_componentWillReceiveProps!="function"&&typeof le.componentWillReceiveProps!="function"||(Te!==W||Le!==Ge)&&nV(w,le,W,Ge),Ou=!1;var st=w.memoizedState;le.state=st,Sy(w,W,le,D),Le=w.memoizedState,Te!==W||st!==Le||K1.current||Ou?(typeof at=="function"&&(T6(w,q,at,W),Le=w.memoizedState),(Te=Ou||eV(w,q,Te,W,st,Le,Ge))?(ut||typeof le.UNSAFE_componentWillMount!="function"&&typeof le.componentWillMount!="function"||(typeof le.componentWillMount=="function"&&le.componentWillMount(),typeof le.UNSAFE_componentWillMount=="function"&&le.UNSAFE_componentWillMount()),typeof le.componentDidMount=="function"&&(w.flags|=4194308)):(typeof le.componentDidMount=="function"&&(w.flags|=4194308),w.memoizedProps=W,w.memoizedState=Le),le.props=W,le.state=Le,le.context=Ge,W=Te):(typeof le.componentDidMount=="function"&&(w.flags|=4194308),W=!1)}else{le=w.stateNode,C$(O,w),Te=w.memoizedProps,Ge=w.type===w.elementType?Te:Zi(w.type,Te),le.props=Ge,ut=w.pendingProps,st=le.context,Le=q.contextType,typeof Le=="object"&&Le!==null?Le=oi(Le):(Le=Y1(q)?Op:r1.current,Le=Sb(w,Le));var Wt=q.getDerivedStateFromProps;(at=typeof Wt=="function"||typeof le.getSnapshotBeforeUpdate=="function")||typeof le.UNSAFE_componentWillReceiveProps!="function"&&typeof le.componentWillReceiveProps!="function"||(Te!==ut||st!==Le)&&nV(w,le,W,Le),Ou=!1,st=w.memoizedState,le.state=st,Sy(w,W,le,D);var $t=w.memoizedState;Te!==ut||st!==$t||K1.current||Ou?(typeof Wt=="function"&&(T6(w,q,Wt,W),$t=w.memoizedState),(Ge=Ou||eV(w,q,Ge,W,st,$t,Le)||!1)?(at||typeof le.UNSAFE_componentWillUpdate!="function"&&typeof le.componentWillUpdate!="function"||(typeof le.componentWillUpdate=="function"&&le.componentWillUpdate(W,$t,Le),typeof le.UNSAFE_componentWillUpdate=="function"&&le.UNSAFE_componentWillUpdate(W,$t,Le)),typeof le.componentDidUpdate=="function"&&(w.flags|=4),typeof le.getSnapshotBeforeUpdate=="function"&&(w.flags|=1024)):(typeof le.componentDidUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=4),typeof le.getSnapshotBeforeUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=1024),w.memoizedProps=W,w.memoizedState=$t),le.props=W,le.state=$t,le.context=Le,W=Ge):(typeof le.componentDidUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=4),typeof le.getSnapshotBeforeUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=1024),W=!1)}return L6(O,w,q,W,K,D)}function L6(O,w,q,W,D,K){pV(O,w);var le=(w.flags&128)!==0;if(!W&&!le)return D&&M$(w,q,!1),Kc(O,w,K);W=w.stateNode,C_e.current=w;var Te=le&&typeof q.getDerivedStateFromError!="function"?null:W.render();return w.flags|=1,O!==null&&le?(w.child=Tb(w,O.child,null,K),w.child=Tb(w,null,Te,K)):E1(O,w,Te,K),w.memoizedState=W.state,D&&M$(w,q,!0),w.child}function bV(O){var w=O.stateNode;w.pendingContext?m$(O,w.pendingContext,w.pendingContext!==w.context):w.context&&m$(O,w.context,!1),O6(O,w.containerInfo)}function hV(O,w,q,W,D){return Rb(),f6(D),w.flags|=256,E1(O,w,q,W),w.child}var P6={dehydrated:null,treeContext:null,retryLane:0};function j6(O){return{baseLanes:O,cachePool:null,transitions:null}}function mV(O,w,q){var W=w.pendingProps,D=xr.current,K=!1,le=(w.flags&128)!==0,Te;if((Te=le)||(Te=O!==null&&O.memoizedState===null?!1:(D&2)!==0),Te?(K=!0,w.flags&=-129):(O===null||O.memoizedState!==null)&&(D|=1),er(xr,D&1),O===null)return p6(w),O=w.memoizedState,O!==null&&(O=O.dehydrated,O!==null)?(w.mode&1?O.data==="$!"?w.lanes=8:w.lanes=1073741824:w.lanes=1,null):(le=W.children,O=W.fallback,K?(W=w.mode,K=w.child,le={mode:"hidden",children:le},!(W&1)&&K!==null?(K.childLanes=0,K.pendingProps=le):K=Ky(le,W,0,null),O=qp(O,W,q,null),K.return=w,O.return=w,K.sibling=O,w.child=K,w.child.memoizedState=j6(q),w.memoizedState=P6,O):I6(w,le));if(D=O.memoizedState,D!==null&&(Te=D.dehydrated,Te!==null))return q_e(O,w,le,W,Te,D,q);if(K){K=W.fallback,le=w.mode,D=O.child,Te=D.sibling;var Le={mode:"hidden",children:W.children};return!(le&1)&&w.child!==D?(W=w.child,W.childLanes=0,W.pendingProps=Le,w.deletions=null):(W=ku(D,Le),W.subtreeFlags=D.subtreeFlags&14680064),Te!==null?K=ku(Te,K):(K=qp(K,le,q,null),K.flags|=2),K.return=w,W.return=w,W.sibling=K,w.child=W,W=K,K=w.child,le=O.child.memoizedState,le=le===null?j6(q):{baseLanes:le.baseLanes|q,cachePool:null,transitions:le.transitions},K.memoizedState=le,K.childLanes=O.childLanes&~q,w.memoizedState=P6,W}return K=O.child,O=K.sibling,W=ku(K,{mode:"visible",children:W.children}),!(w.mode&1)&&(W.lanes=q),W.return=w,W.sibling=null,O!==null&&(q=w.deletions,q===null?(w.deletions=[O],w.flags|=16):q.push(O)),w.child=W,w.memoizedState=null,W}function I6(O,w){return w=Ky({mode:"visible",children:w},O.mode,0,null),w.return=O,O.child=w}function By(O,w,q,W){return W!==null&&f6(W),Tb(w,O.child,null,q),O=I6(w,w.pendingProps.children),O.flags|=2,w.memoizedState=null,O}function q_e(O,w,q,W,D,K,le){if(q)return w.flags&256?(w.flags&=-257,W=W6(Error(n(422))),By(O,w,le,W)):w.memoizedState!==null?(w.child=O.child,w.flags|=128,null):(K=W.fallback,D=w.mode,W=Ky({mode:"visible",children:W.children},D,0,null),K=qp(K,D,le,null),K.flags|=2,W.return=w,K.return=w,W.sibling=K,w.child=W,w.mode&1&&Tb(w,O.child,null,le),w.child.memoizedState=j6(le),w.memoizedState=P6,K);if(!(w.mode&1))return By(O,w,le,null);if(D.data==="$!"){if(W=D.nextSibling&&D.nextSibling.dataset,W)var Te=W.dgst;return W=Te,K=Error(n(419)),W=W6(K,W,void 0),By(O,w,le,W)}if(Te=(le&O.childLanes)!==0,Z1||Te){if(W=A0,W!==null){switch(le&-le){case 4:D=2;break;case 16:D=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:D=32;break;case 536870912:D=268435456;break;default:D=0}D=D&(W.suspendedLanes|le)?0:D,D!==0&&D!==K.retryLane&&(K.retryLane=D,Xc(O,D),ea(W,O,D,-1))}return nS(),W=W6(Error(n(421))),By(O,w,le,W)}return D.data==="$?"?(w.flags|=128,w.child=O.child,w=$_e.bind(null,O),D._reactRetry=w,null):(O=K.treeContext,Cs=mu(D.nextSibling),Ss=w,fr=!0,Yi=null,O!==null&&(ti[ni++]=Hc,ti[ni++]=Uc,ti[ni++]=yp,Hc=O.id,Uc=O.overflow,yp=w),w=I6(w,W.children),w.flags|=4096,w)}function gV(O,w,q){O.lanes|=w;var W=O.alternate;W!==null&&(W.lanes|=w),g6(O.return,w,q)}function D6(O,w,q,W,D){var K=O.memoizedState;K===null?O.memoizedState={isBackwards:w,rendering:null,renderingStartTime:0,last:W,tail:q,tailMode:D}:(K.isBackwards=w,K.rendering=null,K.renderingStartTime=0,K.last=W,K.tail=q,K.tailMode=D)}function MV(O,w,q){var W=w.pendingProps,D=W.revealOrder,K=W.tail;if(E1(O,w,W.children,q),W=xr.current,W&2)W=W&1|2,w.flags|=128;else{if(O!==null&&O.flags&128)e:for(O=w.child;O!==null;){if(O.tag===13)O.memoizedState!==null&&gV(O,q,w);else if(O.tag===19)gV(O,q,w);else if(O.child!==null){O.child.return=O,O=O.child;continue}if(O===w)break e;for(;O.sibling===null;){if(O.return===null||O.return===w)break e;O=O.return}O.sibling.return=O.return,O=O.sibling}W&=1}if(er(xr,W),!(w.mode&1))w.memoizedState=null;else switch(D){case"forwards":for(q=w.child,D=null;q!==null;)O=q.alternate,O!==null&&Cy(O)===null&&(D=q),q=q.sibling;q=D,q===null?(D=w.child,w.child=null):(D=q.sibling,q.sibling=null),D6(w,!1,D,q,K);break;case"backwards":for(q=null,D=w.child,w.child=null;D!==null;){if(O=D.alternate,O!==null&&Cy(O)===null){w.child=D;break}O=D.sibling,D.sibling=q,q=D,D=O}D6(w,!0,q,null,K);break;case"together":D6(w,!1,null,null,void 0);break;default:w.memoizedState=null}return w.child}function Ly(O,w){!(w.mode&1)&&O!==null&&(O.alternate=null,w.alternate=null,w.flags|=2)}function Kc(O,w,q){if(O!==null&&(w.dependencies=O.dependencies),_p|=w.lanes,!(q&w.childLanes))return null;if(O!==null&&w.child!==O.child)throw Error(n(153));if(w.child!==null){for(O=w.child,q=ku(O,O.pendingProps),w.child=q,q.return=w;O.sibling!==null;)O=O.sibling,q=q.sibling=ku(O,O.pendingProps),q.return=w;q.sibling=null}return w.child}function R_e(O,w,q){switch(w.tag){case 3:bV(w),Rb();break;case 5:T$(w);break;case 1:Y1(w.type)&&zy(w);break;case 4:O6(w,w.stateNode.containerInfo);break;case 10:var W=w.type._context,D=w.memoizedProps.value;er(wy,W._currentValue),W._currentValue=D;break;case 13:if(W=w.memoizedState,W!==null)return W.dehydrated!==null?(er(xr,xr.current&1),w.flags|=128,null):q&w.child.childLanes?mV(O,w,q):(er(xr,xr.current&1),O=Kc(O,w,q),O!==null?O.sibling:null);er(xr,xr.current&1);break;case 19:if(W=(q&w.childLanes)!==0,O.flags&128){if(W)return MV(O,w,q);w.flags|=128}if(D=w.memoizedState,D!==null&&(D.rendering=null,D.tail=null,D.lastEffect=null),er(xr,xr.current),W)break;return null;case 22:case 23:return w.lanes=0,dV(O,w,q)}return Kc(O,w,q)}var zV,F6,OV,yV;zV=function(O,w){for(var q=w.child;q!==null;){if(q.tag===5||q.tag===6)O.appendChild(q.stateNode);else if(q.tag!==4&&q.child!==null){q.child.return=q,q=q.child;continue}if(q===w)break;for(;q.sibling===null;){if(q.return===null||q.return===w)return;q=q.return}q.sibling.return=q.return,q=q.sibling}},F6=function(){},OV=function(O,w,q,W){var D=O.memoizedProps;if(D!==W){O=w.stateNode,xp(Na.current);var K=null;switch(q){case"input":D=we(O,D),W=we(O,W),K=[];break;case"select":D=Z({},D,{value:void 0}),W=Z({},W,{value:void 0}),K=[];break;case"textarea":D=ne(O,D),W=ne(O,W),K=[];break;default:typeof D.onClick!="function"&&typeof W.onClick=="function"&&(O.onclick=my)}ze(q,W);var le;q=null;for(Ge in D)if(!W.hasOwnProperty(Ge)&&D.hasOwnProperty(Ge)&&D[Ge]!=null)if(Ge==="style"){var Te=D[Ge];for(le in Te)Te.hasOwnProperty(le)&&(q||(q={}),q[le]="")}else Ge!=="dangerouslySetInnerHTML"&&Ge!=="children"&&Ge!=="suppressContentEditableWarning"&&Ge!=="suppressHydrationWarning"&&Ge!=="autoFocus"&&(r.hasOwnProperty(Ge)?K||(K=[]):(K=K||[]).push(Ge,null));for(Ge in W){var Le=W[Ge];if(Te=D?.[Ge],W.hasOwnProperty(Ge)&&Le!==Te&&(Le!=null||Te!=null))if(Ge==="style")if(Te){for(le in Te)!Te.hasOwnProperty(le)||Le&&Le.hasOwnProperty(le)||(q||(q={}),q[le]="");for(le in Le)Le.hasOwnProperty(le)&&Te[le]!==Le[le]&&(q||(q={}),q[le]=Le[le])}else q||(K||(K=[]),K.push(Ge,q)),q=Le;else Ge==="dangerouslySetInnerHTML"?(Le=Le?Le.__html:void 0,Te=Te?Te.__html:void 0,Le!=null&&Te!==Le&&(K=K||[]).push(Ge,Le)):Ge==="children"?typeof Le!="string"&&typeof Le!="number"||(K=K||[]).push(Ge,""+Le):Ge!=="suppressContentEditableWarning"&&Ge!=="suppressHydrationWarning"&&(r.hasOwnProperty(Ge)?(Le!=null&&Ge==="onScroll"&&sr("scroll",O),K||Te===Le||(K=[])):(K=K||[]).push(Ge,Le))}q&&(K=K||[]).push("style",q);var Ge=K;(w.updateQueue=Ge)&&(w.flags|=4)}},yV=function(O,w,q,W){q!==W&&(w.flags|=4)};function bg(O,w){if(!fr)switch(O.tailMode){case"hidden":w=O.tail;for(var q=null;w!==null;)w.alternate!==null&&(q=w),w=w.sibling;q===null?O.tail=null:q.sibling=null;break;case"collapsed":q=O.tail;for(var W=null;q!==null;)q.alternate!==null&&(W=q),q=q.sibling;W===null?w||O.tail===null?O.tail=null:O.tail.sibling=null:W.sibling=null}}function i1(O){var w=O.alternate!==null&&O.alternate.child===O.child,q=0,W=0;if(w)for(var D=O.child;D!==null;)q|=D.lanes|D.childLanes,W|=D.subtreeFlags&14680064,W|=D.flags&14680064,D.return=O,D=D.sibling;else for(D=O.child;D!==null;)q|=D.lanes|D.childLanes,W|=D.subtreeFlags,W|=D.flags,D.return=O,D=D.sibling;return O.subtreeFlags|=W,O.childLanes=q,w}function T_e(O,w,q){var W=w.pendingProps;switch(u6(w),w.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return i1(w),null;case 1:return Y1(w.type)&&My(),i1(w),null;case 3:return W=w.stateNode,Nb(),ir(K1),ir(r1),v6(),W.pendingContext&&(W.context=W.pendingContext,W.pendingContext=null),(O===null||O.child===null)&&(vy(w)?w.flags|=4:O===null||O.memoizedState.isDehydrated&&!(w.flags&256)||(w.flags|=1024,Yi!==null&&(J6(Yi),Yi=null))),F6(O,w),i1(w),null;case 5:y6(w);var D=xp(lg.current);if(q=w.type,O!==null&&w.stateNode!=null)OV(O,w,q,W,D),O.ref!==w.ref&&(w.flags|=512,w.flags|=2097152);else{if(!W){if(w.stateNode===null)throw Error(n(166));return i1(w),null}if(O=xp(Na.current),vy(w)){W=w.stateNode,q=w.type;var K=w.memoizedProps;switch(W[Wa]=w,W[rg]=K,O=(w.mode&1)!==0,q){case"dialog":sr("cancel",W),sr("close",W);break;case"iframe":case"object":case"embed":sr("load",W);break;case"video":case"audio":for(D=0;D<tg.length;D++)sr(tg[D],W);break;case"source":sr("error",W);break;case"img":case"image":case"link":sr("error",W),sr("load",W);break;case"details":sr("toggle",W);break;case"input":re(W,K),sr("invalid",W);break;case"select":W._wrapperState={wasMultiple:!!K.multiple},sr("invalid",W);break;case"textarea":ve(W,K),sr("invalid",W)}ze(q,K),D=null;for(var le in K)if(K.hasOwnProperty(le)){var Te=K[le];le==="children"?typeof Te=="string"?W.textContent!==Te&&(K.suppressHydrationWarning!==!0&&hy(W.textContent,Te,O),D=["children",Te]):typeof Te=="number"&&W.textContent!==""+Te&&(K.suppressHydrationWarning!==!0&&hy(W.textContent,Te,O),D=["children",""+Te]):r.hasOwnProperty(le)&&Te!=null&&le==="onScroll"&&sr("scroll",W)}switch(q){case"input":Ne(W),Se(W,K,!0);break;case"textarea":Ne(W),Pe(W);break;case"select":case"option":break;default:typeof K.onClick=="function"&&(W.onclick=my)}W=D,w.updateQueue=W,W!==null&&(w.flags|=4)}else{le=D.nodeType===9?D:D.ownerDocument,O==="http://www.w3.org/1999/xhtml"&&(O=rt(q)),O==="http://www.w3.org/1999/xhtml"?q==="script"?(O=le.createElement("div"),O.innerHTML="<script><\/script>",O=O.removeChild(O.firstChild)):typeof W.is=="string"?O=le.createElement(q,{is:W.is}):(O=le.createElement(q),q==="select"&&(le=O,W.multiple?le.multiple=!0:W.size&&(le.size=W.size))):O=le.createElementNS(O,q),O[Wa]=w,O[rg]=W,zV(O,w,!1,!1),w.stateNode=O;e:{switch(le=nt(q,W),q){case"dialog":sr("cancel",O),sr("close",O),D=W;break;case"iframe":case"object":case"embed":sr("load",O),D=W;break;case"video":case"audio":for(D=0;D<tg.length;D++)sr(tg[D],O);D=W;break;case"source":sr("error",O),D=W;break;case"img":case"image":case"link":sr("error",O),sr("load",O),D=W;break;case"details":sr("toggle",O),D=W;break;case"input":re(O,W),D=we(O,W),sr("invalid",O);break;case"option":D=W;break;case"select":O._wrapperState={wasMultiple:!!W.multiple},D=Z({},W,{value:void 0}),sr("invalid",O);break;case"textarea":ve(O,W),D=ne(O,W),sr("invalid",O);break;default:D=W}ze(q,D),Te=D;for(K in Te)if(Te.hasOwnProperty(K)){var Le=Te[K];K==="style"?Re(O,Le):K==="dangerouslySetInnerHTML"?(Le=Le?Le.__html:void 0,Le!=null&&Bt(O,Le)):K==="children"?typeof Le=="string"?(q!=="textarea"||Le!=="")&&ae(O,Le):typeof Le=="number"&&ae(O,""+Le):K!=="suppressContentEditableWarning"&&K!=="suppressHydrationWarning"&&K!=="autoFocus"&&(r.hasOwnProperty(K)?Le!=null&&K==="onScroll"&&sr("scroll",O):Le!=null&&v(O,K,Le,le))}switch(q){case"input":Ne(O),Se(O,W,!1);break;case"textarea":Ne(O),Pe(O);break;case"option":W.value!=null&&O.setAttribute("value",""+de(W.value));break;case"select":O.multiple=!!W.multiple,K=W.value,K!=null?U(O,!!W.multiple,K,!1):W.defaultValue!=null&&U(O,!!W.multiple,W.defaultValue,!0);break;default:typeof D.onClick=="function"&&(O.onclick=my)}switch(q){case"button":case"input":case"select":case"textarea":W=!!W.autoFocus;break e;case"img":W=!0;break e;default:W=!1}}W&&(w.flags|=4)}w.ref!==null&&(w.flags|=512,w.flags|=2097152)}return i1(w),null;case 6:if(O&&w.stateNode!=null)yV(O,w,O.memoizedProps,W);else{if(typeof W!="string"&&w.stateNode===null)throw Error(n(166));if(q=xp(lg.current),xp(Na.current),vy(w)){if(W=w.stateNode,q=w.memoizedProps,W[Wa]=w,(K=W.nodeValue!==q)&&(O=Ss,O!==null))switch(O.tag){case 3:hy(W.nodeValue,q,(O.mode&1)!==0);break;case 5:O.memoizedProps.suppressHydrationWarning!==!0&&hy(W.nodeValue,q,(O.mode&1)!==0)}K&&(w.flags|=4)}else W=(q.nodeType===9?q:q.ownerDocument).createTextNode(W),W[Wa]=w,w.stateNode=W}return i1(w),null;case 13:if(ir(xr),W=w.memoizedState,O===null||O.memoizedState!==null&&O.memoizedState.dehydrated!==null){if(fr&&Cs!==null&&w.mode&1&&!(w.flags&128))x$(),Rb(),w.flags|=98560,K=!1;else if(K=vy(w),W!==null&&W.dehydrated!==null){if(O===null){if(!K)throw Error(n(318));if(K=w.memoizedState,K=K!==null?K.dehydrated:null,!K)throw Error(n(317));K[Wa]=w}else Rb(),!(w.flags&128)&&(w.memoizedState=null),w.flags|=4;i1(w),K=!1}else Yi!==null&&(J6(Yi),Yi=null),K=!0;if(!K)return w.flags&65536?w:null}return w.flags&128?(w.lanes=q,w):(W=W!==null,W!==(O!==null&&O.memoizedState!==null)&&W&&(w.child.flags|=8192,w.mode&1&&(O===null||xr.current&1?d0===0&&(d0=3):nS())),w.updateQueue!==null&&(w.flags|=4),i1(w),null);case 4:return Nb(),F6(O,w),O===null&&ng(w.stateNode.containerInfo),i1(w),null;case 10:return m6(w.type._context),i1(w),null;case 17:return Y1(w.type)&&My(),i1(w),null;case 19:if(ir(xr),K=w.memoizedState,K===null)return i1(w),null;if(W=(w.flags&128)!==0,le=K.rendering,le===null)if(W)bg(K,!1);else{if(d0!==0||O!==null&&O.flags&128)for(O=w.child;O!==null;){if(le=Cy(O),le!==null){for(w.flags|=128,bg(K,!1),W=le.updateQueue,W!==null&&(w.updateQueue=W,w.flags|=4),w.subtreeFlags=0,W=q,q=w.child;q!==null;)K=q,O=W,K.flags&=14680066,le=K.alternate,le===null?(K.childLanes=0,K.lanes=O,K.child=null,K.subtreeFlags=0,K.memoizedProps=null,K.memoizedState=null,K.updateQueue=null,K.dependencies=null,K.stateNode=null):(K.childLanes=le.childLanes,K.lanes=le.lanes,K.child=le.child,K.subtreeFlags=0,K.deletions=null,K.memoizedProps=le.memoizedProps,K.memoizedState=le.memoizedState,K.updateQueue=le.updateQueue,K.type=le.type,O=le.dependencies,K.dependencies=O===null?null:{lanes:O.lanes,firstContext:O.firstContext}),q=q.sibling;return er(xr,xr.current&1|2),w.child}O=O.sibling}K.tail!==null&&Ar()>jb&&(w.flags|=128,W=!0,bg(K,!1),w.lanes=4194304)}else{if(!W)if(O=Cy(le),O!==null){if(w.flags|=128,W=!0,q=O.updateQueue,q!==null&&(w.updateQueue=q,w.flags|=4),bg(K,!0),K.tail===null&&K.tailMode==="hidden"&&!le.alternate&&!fr)return i1(w),null}else 2*Ar()-K.renderingStartTime>jb&&q!==1073741824&&(w.flags|=128,W=!0,bg(K,!1),w.lanes=4194304);K.isBackwards?(le.sibling=w.child,w.child=le):(q=K.last,q!==null?q.sibling=le:w.child=le,K.last=le)}return K.tail!==null?(w=K.tail,K.rendering=w,K.tail=w.sibling,K.renderingStartTime=Ar(),w.sibling=null,q=xr.current,er(xr,W?q&1|2:q&1),w):(i1(w),null);case 22:case 23:return tS(),W=w.memoizedState!==null,O!==null&&O.memoizedState!==null!==W&&(w.flags|=8192),W&&w.mode&1?qs&1073741824&&(i1(w),w.subtreeFlags&6&&(w.flags|=8192)):i1(w),null;case 24:return null;case 25:return null}throw Error(n(156,w.tag))}function E_e(O,w){switch(u6(w),w.tag){case 1:return Y1(w.type)&&My(),O=w.flags,O&65536?(w.flags=O&-65537|128,w):null;case 3:return Nb(),ir(K1),ir(r1),v6(),O=w.flags,O&65536&&!(O&128)?(w.flags=O&-65537|128,w):null;case 5:return y6(w),null;case 13:if(ir(xr),O=w.memoizedState,O!==null&&O.dehydrated!==null){if(w.alternate===null)throw Error(n(340));Rb()}return O=w.flags,O&65536?(w.flags=O&-65537|128,w):null;case 19:return ir(xr),null;case 4:return Nb(),null;case 10:return m6(w.type._context),null;case 22:case 23:return tS(),null;case 24:return null;default:return null}}var Py=!1,a1=!1,W_e=typeof WeakSet=="function"?WeakSet:Set,Ft=null;function Lb(O,w){var q=O.ref;if(q!==null)if(typeof q=="function")try{q(null)}catch(W){Lr(O,w,W)}else q.current=null}function $6(O,w,q){try{q()}catch(W){Lr(O,w,W)}}var AV=!1;function N_e(O,w){if(t6=ry,O=e$(),Xk(O)){if("selectionStart"in O)var q={start:O.selectionStart,end:O.selectionEnd};else e:{q=(q=O.ownerDocument)&&q.defaultView||window;var W=q.getSelection&&q.getSelection();if(W&&W.rangeCount!==0){q=W.anchorNode;var D=W.anchorOffset,K=W.focusNode;W=W.focusOffset;try{q.nodeType,K.nodeType}catch{q=null;break e}var le=0,Te=-1,Le=-1,Ge=0,at=0,ut=O,st=null;t:for(;;){for(var Wt;ut!==q||D!==0&&ut.nodeType!==3||(Te=le+D),ut!==K||W!==0&&ut.nodeType!==3||(Le=le+W),ut.nodeType===3&&(le+=ut.nodeValue.length),(Wt=ut.firstChild)!==null;)st=ut,ut=Wt;for(;;){if(ut===O)break t;if(st===q&&++Ge===D&&(Te=le),st===K&&++at===W&&(Le=le),(Wt=ut.nextSibling)!==null)break;ut=st,st=ut.parentNode}ut=Wt}q=Te===-1||Le===-1?null:{start:Te,end:Le}}else q=null}q=q||{start:0,end:0}}else q=null;for(n6={focusedElem:O,selectionRange:q},ry=!1,Ft=w;Ft!==null;)if(w=Ft,O=w.child,(w.subtreeFlags&1028)!==0&&O!==null)O.return=w,Ft=O;else for(;Ft!==null;){w=Ft;try{var $t=w.alternate;if(w.flags&1024)switch(w.tag){case 0:case 11:case 15:break;case 1:if($t!==null){var Ut=$t.memoizedProps,Vr=$t.memoizedState,Fe=w.stateNode,De=Fe.getSnapshotBeforeUpdate(w.elementType===w.type?Ut:Zi(w.type,Ut),Vr);Fe.__reactInternalSnapshotBeforeUpdate=De}break;case 3:var Ve=w.stateNode.containerInfo;Ve.nodeType===1?Ve.textContent="":Ve.nodeType===9&&Ve.documentElement&&Ve.removeChild(Ve.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(ft){Lr(w,w.return,ft)}if(O=w.sibling,O!==null){O.return=w.return,Ft=O;break}Ft=w.return}return $t=AV,AV=!1,$t}function hg(O,w,q){var W=w.updateQueue;if(W=W!==null?W.lastEffect:null,W!==null){var D=W=W.next;do{if((D.tag&O)===O){var K=D.destroy;D.destroy=void 0,K!==void 0&&$6(w,q,K)}D=D.next}while(D!==W)}}function jy(O,w){if(w=w.updateQueue,w=w!==null?w.lastEffect:null,w!==null){var q=w=w.next;do{if((q.tag&O)===O){var W=q.create;q.destroy=W()}q=q.next}while(q!==w)}}function V6(O){var w=O.ref;if(w!==null){var q=O.stateNode;switch(O.tag){case 5:O=q;break;default:O=q}typeof w=="function"?w(O):w.current=O}}function vV(O){var w=O.alternate;w!==null&&(O.alternate=null,vV(w)),O.child=null,O.deletions=null,O.sibling=null,O.tag===5&&(w=O.stateNode,w!==null&&(delete w[Wa],delete w[rg],delete w[i6],delete w[g_e],delete w[M_e])),O.stateNode=null,O.return=null,O.dependencies=null,O.memoizedProps=null,O.memoizedState=null,O.pendingProps=null,O.stateNode=null,O.updateQueue=null}function xV(O){return O.tag===5||O.tag===3||O.tag===4}function wV(O){e:for(;;){for(;O.sibling===null;){if(O.return===null||xV(O.return))return null;O=O.return}for(O.sibling.return=O.return,O=O.sibling;O.tag!==5&&O.tag!==6&&O.tag!==18;){if(O.flags&2||O.child===null||O.tag===4)continue e;O.child.return=O,O=O.child}if(!(O.flags&2))return O.stateNode}}function H6(O,w,q){var W=O.tag;if(W===5||W===6)O=O.stateNode,w?q.nodeType===8?q.parentNode.insertBefore(O,w):q.insertBefore(O,w):(q.nodeType===8?(w=q.parentNode,w.insertBefore(O,q)):(w=q,w.appendChild(O)),q=q._reactRootContainer,q!=null||w.onclick!==null||(w.onclick=my));else if(W!==4&&(O=O.child,O!==null))for(H6(O,w,q),O=O.sibling;O!==null;)H6(O,w,q),O=O.sibling}function U6(O,w,q){var W=O.tag;if(W===5||W===6)O=O.stateNode,w?q.insertBefore(O,w):q.appendChild(O);else if(W!==4&&(O=O.child,O!==null))for(U6(O,w,q),O=O.sibling;O!==null;)U6(O,w,q),O=O.sibling}var D0=null,Qi=!1;function Au(O,w,q){for(q=q.child;q!==null;)_V(O,w,q),q=q.sibling}function _V(O,w,q){if($o&&typeof $o.onCommitFiberUnmount=="function")try{$o.onCommitFiberUnmount(T1,q)}catch{}switch(q.tag){case 5:a1||Lb(q,w);case 6:var W=D0,D=Qi;D0=null,Au(O,w,q),D0=W,Qi=D,D0!==null&&(Qi?(O=D0,q=q.stateNode,O.nodeType===8?O.parentNode.removeChild(q):O.removeChild(q)):D0.removeChild(q.stateNode));break;case 18:D0!==null&&(Qi?(O=D0,q=q.stateNode,O.nodeType===8?s6(O.parentNode,q):O.nodeType===1&&s6(O,q),Xm(O)):s6(D0,q.stateNode));break;case 4:W=D0,D=Qi,D0=q.stateNode.containerInfo,Qi=!0,Au(O,w,q),D0=W,Qi=D;break;case 0:case 11:case 14:case 15:if(!a1&&(W=q.updateQueue,W!==null&&(W=W.lastEffect,W!==null))){D=W=W.next;do{var K=D,le=K.destroy;K=K.tag,le!==void 0&&(K&2||K&4)&&$6(q,w,le),D=D.next}while(D!==W)}Au(O,w,q);break;case 1:if(!a1&&(Lb(q,w),W=q.stateNode,typeof W.componentWillUnmount=="function"))try{W.props=q.memoizedProps,W.state=q.memoizedState,W.componentWillUnmount()}catch(Te){Lr(q,w,Te)}Au(O,w,q);break;case 21:Au(O,w,q);break;case 22:q.mode&1?(a1=(W=a1)||q.memoizedState!==null,Au(O,w,q),a1=W):Au(O,w,q);break;default:Au(O,w,q)}}function kV(O){var w=O.updateQueue;if(w!==null){O.updateQueue=null;var q=O.stateNode;q===null&&(q=O.stateNode=new W_e),w.forEach(function(W){var D=V_e.bind(null,O,W);q.has(W)||(q.add(W),W.then(D,D))})}}function Ji(O,w){var q=w.deletions;if(q!==null)for(var W=0;W<q.length;W++){var D=q[W];try{var K=O,le=w,Te=le;e:for(;Te!==null;){switch(Te.tag){case 5:D0=Te.stateNode,Qi=!1;break e;case 3:D0=Te.stateNode.containerInfo,Qi=!0;break e;case 4:D0=Te.stateNode.containerInfo,Qi=!0;break e}Te=Te.return}if(D0===null)throw Error(n(160));_V(K,le,D),D0=null,Qi=!1;var Le=D.alternate;Le!==null&&(Le.return=null),D.return=null}catch(Ge){Lr(D,w,Ge)}}if(w.subtreeFlags&12854)for(w=w.child;w!==null;)SV(w,O),w=w.sibling}function SV(O,w){var q=O.alternate,W=O.flags;switch(O.tag){case 0:case 11:case 14:case 15:if(Ji(w,O),La(O),W&4){try{hg(3,O,O.return),jy(3,O)}catch(Ut){Lr(O,O.return,Ut)}try{hg(5,O,O.return)}catch(Ut){Lr(O,O.return,Ut)}}break;case 1:Ji(w,O),La(O),W&512&&q!==null&&Lb(q,q.return);break;case 5:if(Ji(w,O),La(O),W&512&&q!==null&&Lb(q,q.return),O.flags&32){var D=O.stateNode;try{ae(D,"")}catch(Ut){Lr(O,O.return,Ut)}}if(W&4&&(D=O.stateNode,D!=null)){var K=O.memoizedProps,le=q!==null?q.memoizedProps:K,Te=O.type,Le=O.updateQueue;if(O.updateQueue=null,Le!==null)try{Te==="input"&&K.type==="radio"&&K.name!=null&&pe(D,K),nt(Te,le);var Ge=nt(Te,K);for(le=0;le<Le.length;le+=2){var at=Le[le],ut=Le[le+1];at==="style"?Re(D,ut):at==="dangerouslySetInnerHTML"?Bt(D,ut):at==="children"?ae(D,ut):v(D,at,ut,Ge)}switch(Te){case"input":ke(D,K);break;case"textarea":qe(D,K);break;case"select":var st=D._wrapperState.wasMultiple;D._wrapperState.wasMultiple=!!K.multiple;var Wt=K.value;Wt!=null?U(D,!!K.multiple,Wt,!1):st!==!!K.multiple&&(K.defaultValue!=null?U(D,!!K.multiple,K.defaultValue,!0):U(D,!!K.multiple,K.multiple?[]:"",!1))}D[rg]=K}catch(Ut){Lr(O,O.return,Ut)}}break;case 6:if(Ji(w,O),La(O),W&4){if(O.stateNode===null)throw Error(n(162));D=O.stateNode,K=O.memoizedProps;try{D.nodeValue=K}catch(Ut){Lr(O,O.return,Ut)}}break;case 3:if(Ji(w,O),La(O),W&4&&q!==null&&q.memoizedState.isDehydrated)try{Xm(w.containerInfo)}catch(Ut){Lr(O,O.return,Ut)}break;case 4:Ji(w,O),La(O);break;case 13:Ji(w,O),La(O),D=O.child,D.flags&8192&&(K=D.memoizedState!==null,D.stateNode.isHidden=K,!K||D.alternate!==null&&D.alternate.memoizedState!==null||(K6=Ar())),W&4&&kV(O);break;case 22:if(at=q!==null&&q.memoizedState!==null,O.mode&1?(a1=(Ge=a1)||at,Ji(w,O),a1=Ge):Ji(w,O),La(O),W&8192){if(Ge=O.memoizedState!==null,(O.stateNode.isHidden=Ge)&&!at&&O.mode&1)for(Ft=O,at=O.child;at!==null;){for(ut=Ft=at;Ft!==null;){switch(st=Ft,Wt=st.child,st.tag){case 0:case 11:case 14:case 15:hg(4,st,st.return);break;case 1:Lb(st,st.return);var $t=st.stateNode;if(typeof $t.componentWillUnmount=="function"){W=st,q=st.return;try{w=W,$t.props=w.memoizedProps,$t.state=w.memoizedState,$t.componentWillUnmount()}catch(Ut){Lr(W,q,Ut)}}break;case 5:Lb(st,st.return);break;case 22:if(st.memoizedState!==null){RV(ut);continue}}Wt!==null?(Wt.return=st,Ft=Wt):RV(ut)}at=at.sibling}e:for(at=null,ut=O;;){if(ut.tag===5){if(at===null){at=ut;try{D=ut.stateNode,Ge?(K=D.style,typeof K.setProperty=="function"?K.setProperty("display","none","important"):K.display="none"):(Te=ut.stateNode,Le=ut.memoizedProps.style,le=Le!=null&&Le.hasOwnProperty("display")?Le.display:null,Te.style.display=fe("display",le))}catch(Ut){Lr(O,O.return,Ut)}}}else if(ut.tag===6){if(at===null)try{ut.stateNode.nodeValue=Ge?"":ut.memoizedProps}catch(Ut){Lr(O,O.return,Ut)}}else if((ut.tag!==22&&ut.tag!==23||ut.memoizedState===null||ut===O)&&ut.child!==null){ut.child.return=ut,ut=ut.child;continue}if(ut===O)break e;for(;ut.sibling===null;){if(ut.return===null||ut.return===O)break e;at===ut&&(at=null),ut=ut.return}at===ut&&(at=null),ut.sibling.return=ut.return,ut=ut.sibling}}break;case 19:Ji(w,O),La(O),W&4&&kV(O);break;case 21:break;default:Ji(w,O),La(O)}}function La(O){var w=O.flags;if(w&2){try{e:{for(var q=O.return;q!==null;){if(xV(q)){var W=q;break e}q=q.return}throw Error(n(160))}switch(W.tag){case 5:var D=W.stateNode;W.flags&32&&(ae(D,""),W.flags&=-33);var K=wV(O);U6(O,K,D);break;case 3:case 4:var le=W.stateNode.containerInfo,Te=wV(O);H6(O,Te,le);break;default:throw Error(n(161))}}catch(Le){Lr(O,O.return,Le)}O.flags&=-3}w&4096&&(O.flags&=-4097)}function B_e(O,w,q){Ft=O,CV(O)}function CV(O,w,q){for(var W=(O.mode&1)!==0;Ft!==null;){var D=Ft,K=D.child;if(D.tag===22&&W){var le=D.memoizedState!==null||Py;if(!le){var Te=D.alternate,Le=Te!==null&&Te.memoizedState!==null||a1;Te=Py;var Ge=a1;if(Py=le,(a1=Le)&&!Ge)for(Ft=D;Ft!==null;)le=Ft,Le=le.child,le.tag===22&&le.memoizedState!==null?TV(D):Le!==null?(Le.return=le,Ft=Le):TV(D);for(;K!==null;)Ft=K,CV(K),K=K.sibling;Ft=D,Py=Te,a1=Ge}qV(O)}else D.subtreeFlags&8772&&K!==null?(K.return=D,Ft=K):qV(O)}}function qV(O){for(;Ft!==null;){var w=Ft;if(w.flags&8772){var q=w.alternate;try{if(w.flags&8772)switch(w.tag){case 0:case 11:case 15:a1||jy(5,w);break;case 1:var W=w.stateNode;if(w.flags&4&&!a1)if(q===null)W.componentDidMount();else{var D=w.elementType===w.type?q.memoizedProps:Zi(w.type,q.memoizedProps);W.componentDidUpdate(D,q.memoizedState,W.__reactInternalSnapshotBeforeUpdate)}var K=w.updateQueue;K!==null&&R$(w,K,W);break;case 3:var le=w.updateQueue;if(le!==null){if(q=null,w.child!==null)switch(w.child.tag){case 5:q=w.child.stateNode;break;case 1:q=w.child.stateNode}R$(w,le,q)}break;case 5:var Te=w.stateNode;if(q===null&&w.flags&4){q=Te;var Le=w.memoizedProps;switch(w.type){case"button":case"input":case"select":case"textarea":Le.autoFocus&&q.focus();break;case"img":Le.src&&(q.src=Le.src)}}break;case 6:break;case 4:break;case 12:break;case 13:if(w.memoizedState===null){var Ge=w.alternate;if(Ge!==null){var at=Ge.memoizedState;if(at!==null){var ut=at.dehydrated;ut!==null&&Xm(ut)}}}break;case 19:case 17:case 21:case 22:case 23:case 25:break;default:throw Error(n(163))}a1||w.flags&512&&V6(w)}catch(st){Lr(w,w.return,st)}}if(w===O){Ft=null;break}if(q=w.sibling,q!==null){q.return=w.return,Ft=q;break}Ft=w.return}}function RV(O){for(;Ft!==null;){var w=Ft;if(w===O){Ft=null;break}var q=w.sibling;if(q!==null){q.return=w.return,Ft=q;break}Ft=w.return}}function TV(O){for(;Ft!==null;){var w=Ft;try{switch(w.tag){case 0:case 11:case 15:var q=w.return;try{jy(4,w)}catch(Le){Lr(w,q,Le)}break;case 1:var W=w.stateNode;if(typeof W.componentDidMount=="function"){var D=w.return;try{W.componentDidMount()}catch(Le){Lr(w,D,Le)}}var K=w.return;try{V6(w)}catch(Le){Lr(w,K,Le)}break;case 5:var le=w.return;try{V6(w)}catch(Le){Lr(w,le,Le)}}}catch(Le){Lr(w,w.return,Le)}if(w===O){Ft=null;break}var Te=w.sibling;if(Te!==null){Te.return=w.return,Ft=Te;break}Ft=w.return}}var L_e=Math.ceil,Iy=M.ReactCurrentDispatcher,X6=M.ReactCurrentOwner,si=M.ReactCurrentBatchConfig,co=0,A0=null,t0=null,F0=0,qs=0,Pb=gu(0),d0=0,mg=null,_p=0,Dy=0,G6=0,gg=null,Q1=null,K6=0,jb=1/0,Yc=null,Fy=!1,Y6=null,vu=null,$y=!1,xu=null,Vy=0,Mg=0,Z6=null,Hy=-1,Uy=0;function W1(){return co&6?Ar():Hy!==-1?Hy:Hy=Ar()}function wu(O){return O.mode&1?co&2&&F0!==0?F0&-F0:O_e.transition!==null?(Uy===0&&(Uy=wF()),Uy):(O=Eo,O!==0||(O=window.event,O=O===void 0?16:WF(O.type)),O):1}function ea(O,w,q,W){if(50<Mg)throw Mg=0,Z6=null,Error(n(185));Fm(O,q,W),(!(co&2)||O!==A0)&&(O===A0&&(!(co&2)&&(Dy|=q),d0===4&&_u(O,F0)),J1(O,W),q===1&&co===0&&!(w.mode&1)&&(jb=Ar()+500,Oy&&zu()))}function J1(O,w){var q=O.callbackNode;ty(O,w);var W=Dm(O,O===A0?F0:0);if(W===0)q!==null&&QO(q),O.callbackNode=null,O.callbackPriority=0;else if(w=W&-W,O.callbackPriority!==w){if(q!=null&&QO(q),w===1)O.tag===0?z_e(WV.bind(null,O)):z$(WV.bind(null,O)),h_e(function(){!(co&6)&&zu()}),q=null;else{switch(_F(W)){case 1:q=Ta;break;case 4:q=ey;break;case 16:q=Mb;break;case 536870912:q=vr;break;default:q=Mb}q=FV(q,EV.bind(null,O))}O.callbackPriority=w,O.callbackNode=q}}function EV(O,w){if(Hy=-1,Uy=0,co&6)throw Error(n(327));var q=O.callbackNode;if(Ib()&&O.callbackNode!==q)return null;var W=Dm(O,O===A0?F0:0);if(W===0)return null;if(W&30||W&O.expiredLanes||w)w=Xy(O,W);else{w=W;var D=co;co|=2;var K=BV();(A0!==O||F0!==w)&&(Yc=null,jb=Ar()+500,Sp(O,w));do try{I_e();break}catch(Te){NV(O,Te)}while(!0);h6(),Iy.current=K,co=D,t0!==null?w=0:(A0=null,F0=0,w=d0)}if(w!==0){if(w===2&&(D=Rk(O),D!==0&&(W=D,w=Q6(O,D))),w===1)throw q=mg,Sp(O,0),_u(O,W),J1(O,Ar()),q;if(w===6)_u(O,W);else{if(D=O.current.alternate,!(W&30)&&!P_e(D)&&(w=Xy(O,W),w===2&&(K=Rk(O),K!==0&&(W=K,w=Q6(O,K))),w===1))throw q=mg,Sp(O,0),_u(O,W),J1(O,Ar()),q;switch(O.finishedWork=D,O.finishedLanes=W,w){case 0:case 1:throw Error(n(345));case 2:Cp(O,Q1,Yc);break;case 3:if(_u(O,W),(W&130023424)===W&&(w=K6+500-Ar(),10<w)){if(Dm(O,0)!==0)break;if(D=O.suspendedLanes,(D&W)!==W){W1(),O.pingedLanes|=O.suspendedLanes&D;break}O.timeoutHandle=r6(Cp.bind(null,O,Q1,Yc),w);break}Cp(O,Q1,Yc);break;case 4:if(_u(O,W),(W&4194240)===W)break;for(w=O.eventTimes,D=-1;0<W;){var le=31-I0(W);K=1<<le,le=w[le],le>D&&(D=le),W&=~K}if(W=D,W=Ar()-W,W=(120>W?120:480>W?480:1080>W?1080:1920>W?1920:3e3>W?3e3:4320>W?4320:1960*L_e(W/1960))-W,10<W){O.timeoutHandle=r6(Cp.bind(null,O,Q1,Yc),W);break}Cp(O,Q1,Yc);break;case 5:Cp(O,Q1,Yc);break;default:throw Error(n(329))}}}return J1(O,Ar()),O.callbackNode===q?EV.bind(null,O):null}function Q6(O,w){var q=gg;return O.current.memoizedState.isDehydrated&&(Sp(O,w).flags|=256),O=Xy(O,w),O!==2&&(w=Q1,Q1=q,w!==null&&J6(w)),O}function J6(O){Q1===null?Q1=O:Q1.push.apply(Q1,O)}function P_e(O){for(var w=O;;){if(w.flags&16384){var q=w.updateQueue;if(q!==null&&(q=q.stores,q!==null))for(var W=0;W<q.length;W++){var D=q[W],K=D.getSnapshot;D=D.value;try{if(!Ki(K(),D))return!1}catch{return!1}}}if(q=w.child,w.subtreeFlags&16384&&q!==null)q.return=w,w=q;else{if(w===O)break;for(;w.sibling===null;){if(w.return===null||w.return===O)return!0;w=w.return}w.sibling.return=w.return,w=w.sibling}}return!0}function _u(O,w){for(w&=~G6,w&=~Dy,O.suspendedLanes|=w,O.pingedLanes&=~w,O=O.expirationTimes;0<w;){var q=31-I0(w),W=1<<q;O[q]=-1,w&=~W}}function WV(O){if(co&6)throw Error(n(327));Ib();var w=Dm(O,0);if(!(w&1))return J1(O,Ar()),null;var q=Xy(O,w);if(O.tag!==0&&q===2){var W=Rk(O);W!==0&&(w=W,q=Q6(O,W))}if(q===1)throw q=mg,Sp(O,0),_u(O,w),J1(O,Ar()),q;if(q===6)throw Error(n(345));return O.finishedWork=O.current.alternate,O.finishedLanes=w,Cp(O,Q1,Yc),J1(O,Ar()),null}function eS(O,w){var q=co;co|=1;try{return O(w)}finally{co=q,co===0&&(jb=Ar()+500,Oy&&zu())}}function kp(O){xu!==null&&xu.tag===0&&!(co&6)&&Ib();var w=co;co|=1;var q=si.transition,W=Eo;try{if(si.transition=null,Eo=1,O)return O()}finally{Eo=W,si.transition=q,co=w,!(co&6)&&zu()}}function tS(){qs=Pb.current,ir(Pb)}function Sp(O,w){O.finishedWork=null,O.finishedLanes=0;var q=O.timeoutHandle;if(q!==-1&&(O.timeoutHandle=-1,b_e(q)),t0!==null)for(q=t0.return;q!==null;){var W=q;switch(u6(W),W.tag){case 1:W=W.type.childContextTypes,W!=null&&My();break;case 3:Nb(),ir(K1),ir(r1),v6();break;case 5:y6(W);break;case 4:Nb();break;case 13:ir(xr);break;case 19:ir(xr);break;case 10:m6(W.type._context);break;case 22:case 23:tS()}q=q.return}if(A0=O,t0=O=ku(O.current,null),F0=qs=w,d0=0,mg=null,G6=Dy=_p=0,Q1=gg=null,vp!==null){for(w=0;w<vp.length;w++)if(q=vp[w],W=q.interleaved,W!==null){q.interleaved=null;var D=W.next,K=q.pending;if(K!==null){var le=K.next;K.next=D,W.next=le}q.pending=W}vp=null}return O}function NV(O,w){do{var q=t0;try{if(h6(),qy.current=Wy,Ry){for(var W=wr.memoizedState;W!==null;){var D=W.queue;D!==null&&(D.pending=null),W=W.next}Ry=!1}if(wp=0,y0=u0=wr=null,ug=!1,dg=0,X6.current=null,q===null||q.return===null){d0=1,mg=w,t0=null;break}e:{var K=O,le=q.return,Te=q,Le=w;if(w=F0,Te.flags|=32768,Le!==null&&typeof Le=="object"&&typeof Le.then=="function"){var Ge=Le,at=Te,ut=at.tag;if(!(at.mode&1)&&(ut===0||ut===11||ut===15)){var st=at.alternate;st?(at.updateQueue=st.updateQueue,at.memoizedState=st.memoizedState,at.lanes=st.lanes):(at.updateQueue=null,at.memoizedState=null)}var Wt=iV(le);if(Wt!==null){Wt.flags&=-257,aV(Wt,le,Te,K,w),Wt.mode&1&&sV(K,Ge,w),w=Wt,Le=Ge;var $t=w.updateQueue;if($t===null){var Ut=new Set;Ut.add(Le),w.updateQueue=Ut}else $t.add(Le);break e}else{if(!(w&1)){sV(K,Ge,w),nS();break e}Le=Error(n(426))}}else if(fr&&Te.mode&1){var Vr=iV(le);if(Vr!==null){!(Vr.flags&65536)&&(Vr.flags|=256),aV(Vr,le,Te,K,w),f6(Bb(Le,Te));break e}}K=Le=Bb(Le,Te),d0!==4&&(d0=2),gg===null?gg=[K]:gg.push(K),K=le;do{switch(K.tag){case 3:K.flags|=65536,w&=-w,K.lanes|=w;var Fe=oV(K,Le,w);q$(K,Fe);break e;case 1:Te=Le;var De=K.type,Ve=K.stateNode;if(!(K.flags&128)&&(typeof De.getDerivedStateFromError=="function"||Ve!==null&&typeof Ve.componentDidCatch=="function"&&(vu===null||!vu.has(Ve)))){K.flags|=65536,w&=-w,K.lanes|=w;var ft=rV(K,Te,w);q$(K,ft);break e}}K=K.return}while(K!==null)}PV(q)}catch(Kt){w=Kt,t0===q&&q!==null&&(t0=q=q.return);continue}break}while(!0)}function BV(){var O=Iy.current;return Iy.current=Wy,O===null?Wy:O}function nS(){(d0===0||d0===3||d0===2)&&(d0=4),A0===null||!(_p&268435455)&&!(Dy&268435455)||_u(A0,F0)}function Xy(O,w){var q=co;co|=2;var W=BV();(A0!==O||F0!==w)&&(Yc=null,Sp(O,w));do try{j_e();break}catch(D){NV(O,D)}while(!0);if(h6(),co=q,Iy.current=W,t0!==null)throw Error(n(261));return A0=null,F0=0,d0}function j_e(){for(;t0!==null;)LV(t0)}function I_e(){for(;t0!==null&&!JO();)LV(t0)}function LV(O){var w=DV(O.alternate,O,qs);O.memoizedProps=O.pendingProps,w===null?PV(O):t0=w,X6.current=null}function PV(O){var w=O;do{var q=w.alternate;if(O=w.return,w.flags&32768){if(q=E_e(q,w),q!==null){q.flags&=32767,t0=q;return}if(O!==null)O.flags|=32768,O.subtreeFlags=0,O.deletions=null;else{d0=6,t0=null;return}}else if(q=T_e(q,w,qs),q!==null){t0=q;return}if(w=w.sibling,w!==null){t0=w;return}t0=w=O}while(w!==null);d0===0&&(d0=5)}function Cp(O,w,q){var W=Eo,D=si.transition;try{si.transition=null,Eo=1,D_e(O,w,q,W)}finally{si.transition=D,Eo=W}return null}function D_e(O,w,q,W){do Ib();while(xu!==null);if(co&6)throw Error(n(327));q=O.finishedWork;var D=O.finishedLanes;if(q===null)return null;if(O.finishedWork=null,O.finishedLanes=0,q===O.current)throw Error(n(177));O.callbackNode=null,O.callbackPriority=0;var K=q.lanes|q.childLanes;if(ywe(O,K),O===A0&&(t0=A0=null,F0=0),!(q.subtreeFlags&2064)&&!(q.flags&2064)||$y||($y=!0,FV(Mb,function(){return Ib(),null})),K=(q.flags&15990)!==0,q.subtreeFlags&15990||K){K=si.transition,si.transition=null;var le=Eo;Eo=1;var Te=co;co|=4,X6.current=null,N_e(O,q),SV(q,O),a_e(n6),ry=!!t6,n6=t6=null,O.current=q,B_e(q),Sk(),co=Te,Eo=le,si.transition=K}else O.current=q;if($y&&($y=!1,xu=O,Vy=D),K=O.pendingLanes,K===0&&(vu=null),ei(q.stateNode),J1(O,Ar()),w!==null)for(W=O.onRecoverableError,q=0;q<w.length;q++)D=w[q],W(D.value,{componentStack:D.stack,digest:D.digest});if(Fy)throw Fy=!1,O=Y6,Y6=null,O;return Vy&1&&O.tag!==0&&Ib(),K=O.pendingLanes,K&1?O===Z6?Mg++:(Mg=0,Z6=O):Mg=0,zu(),null}function Ib(){if(xu!==null){var O=_F(Vy),w=si.transition,q=Eo;try{if(si.transition=null,Eo=16>O?16:O,xu===null)var W=!1;else{if(O=xu,xu=null,Vy=0,co&6)throw Error(n(331));var D=co;for(co|=4,Ft=O.current;Ft!==null;){var K=Ft,le=K.child;if(Ft.flags&16){var Te=K.deletions;if(Te!==null){for(var Le=0;Le<Te.length;Le++){var Ge=Te[Le];for(Ft=Ge;Ft!==null;){var at=Ft;switch(at.tag){case 0:case 11:case 15:hg(8,at,K)}var ut=at.child;if(ut!==null)ut.return=at,Ft=ut;else for(;Ft!==null;){at=Ft;var st=at.sibling,Wt=at.return;if(vV(at),at===Ge){Ft=null;break}if(st!==null){st.return=Wt,Ft=st;break}Ft=Wt}}}var $t=K.alternate;if($t!==null){var Ut=$t.child;if(Ut!==null){$t.child=null;do{var Vr=Ut.sibling;Ut.sibling=null,Ut=Vr}while(Ut!==null)}}Ft=K}}if(K.subtreeFlags&2064&&le!==null)le.return=K,Ft=le;else e:for(;Ft!==null;){if(K=Ft,K.flags&2048)switch(K.tag){case 0:case 11:case 15:hg(9,K,K.return)}var Fe=K.sibling;if(Fe!==null){Fe.return=K.return,Ft=Fe;break e}Ft=K.return}}var De=O.current;for(Ft=De;Ft!==null;){le=Ft;var Ve=le.child;if(le.subtreeFlags&2064&&Ve!==null)Ve.return=le,Ft=Ve;else e:for(le=De;Ft!==null;){if(Te=Ft,Te.flags&2048)try{switch(Te.tag){case 0:case 11:case 15:jy(9,Te)}}catch(Kt){Lr(Te,Te.return,Kt)}if(Te===le){Ft=null;break e}var ft=Te.sibling;if(ft!==null){ft.return=Te.return,Ft=ft;break e}Ft=Te.return}}if(co=D,zu(),$o&&typeof $o.onPostCommitFiberRoot=="function")try{$o.onPostCommitFiberRoot(T1,O)}catch{}W=!0}return W}finally{Eo=q,si.transition=w}}return!1}function jV(O,w,q){w=Bb(q,w),w=oV(O,w,1),O=yu(O,w,1),w=W1(),O!==null&&(Fm(O,1,w),J1(O,w))}function Lr(O,w,q){if(O.tag===3)jV(O,O,q);else for(;w!==null;){if(w.tag===3){jV(w,O,q);break}else if(w.tag===1){var W=w.stateNode;if(typeof w.type.getDerivedStateFromError=="function"||typeof W.componentDidCatch=="function"&&(vu===null||!vu.has(W))){O=Bb(q,O),O=rV(w,O,1),w=yu(w,O,1),O=W1(),w!==null&&(Fm(w,1,O),J1(w,O));break}}w=w.return}}function F_e(O,w,q){var W=O.pingCache;W!==null&&W.delete(w),w=W1(),O.pingedLanes|=O.suspendedLanes&q,A0===O&&(F0&q)===q&&(d0===4||d0===3&&(F0&130023424)===F0&&500>Ar()-K6?Sp(O,0):G6|=q),J1(O,w)}function IV(O,w){w===0&&(O.mode&1?(w=Fc,Fc<<=1,!(Fc&130023424)&&(Fc=4194304)):w=1);var q=W1();O=Xc(O,w),O!==null&&(Fm(O,w,q),J1(O,q))}function $_e(O){var w=O.memoizedState,q=0;w!==null&&(q=w.retryLane),IV(O,q)}function V_e(O,w){var q=0;switch(O.tag){case 13:var W=O.stateNode,D=O.memoizedState;D!==null&&(q=D.retryLane);break;case 19:W=O.stateNode;break;default:throw Error(n(314))}W!==null&&W.delete(w),IV(O,q)}var DV;DV=function(O,w,q){if(O!==null)if(O.memoizedProps!==w.pendingProps||K1.current)Z1=!0;else{if(!(O.lanes&q)&&!(w.flags&128))return Z1=!1,R_e(O,w,q);Z1=!!(O.flags&131072)}else Z1=!1,fr&&w.flags&1048576&&O$(w,Ay,w.index);switch(w.lanes=0,w.tag){case 2:var W=w.type;Ly(O,w),O=w.pendingProps;var D=Sb(w,r1.current);Wb(w,q),D=_6(null,w,W,O,D,q);var K=k6();return w.flags|=1,typeof D=="object"&&D!==null&&typeof D.render=="function"&&D.$$typeof===void 0?(w.tag=1,w.memoizedState=null,w.updateQueue=null,Y1(W)?(K=!0,zy(w)):K=!1,w.memoizedState=D.state!==null&&D.state!==void 0?D.state:null,z6(w),D.updater=Ny,w.stateNode=D,D._reactInternals=w,E6(w,W,O,q),w=L6(null,w,W,!0,K,q)):(w.tag=0,fr&&K&&l6(w),E1(null,w,D,q),w=w.child),w;case 16:W=w.elementType;e:{switch(Ly(O,w),O=w.pendingProps,D=W._init,W=D(W._payload),w.type=W,D=w.tag=U_e(W),O=Zi(W,O),D){case 0:w=B6(null,w,W,O,q);break e;case 1:w=fV(null,w,W,O,q);break e;case 11:w=cV(null,w,W,O,q);break e;case 14:w=lV(null,w,W,Zi(W.type,O),q);break e}throw Error(n(306,W,""))}return w;case 0:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Zi(W,D),B6(O,w,W,D,q);case 1:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Zi(W,D),fV(O,w,W,D,q);case 3:e:{if(bV(w),O===null)throw Error(n(387));W=w.pendingProps,K=w.memoizedState,D=K.element,C$(O,w),Sy(w,W,null,q);var le=w.memoizedState;if(W=le.element,K.isDehydrated)if(K={element:W,isDehydrated:!1,cache:le.cache,pendingSuspenseBoundaries:le.pendingSuspenseBoundaries,transitions:le.transitions},w.updateQueue.baseState=K,w.memoizedState=K,w.flags&256){D=Bb(Error(n(423)),w),w=hV(O,w,W,q,D);break e}else if(W!==D){D=Bb(Error(n(424)),w),w=hV(O,w,W,q,D);break e}else for(Cs=mu(w.stateNode.containerInfo.firstChild),Ss=w,fr=!0,Yi=null,q=k$(w,null,W,q),w.child=q;q;)q.flags=q.flags&-3|4096,q=q.sibling;else{if(Rb(),W===D){w=Kc(O,w,q);break e}E1(O,w,W,q)}w=w.child}return w;case 5:return T$(w),O===null&&p6(w),W=w.type,D=w.pendingProps,K=O!==null?O.memoizedProps:null,le=D.children,o6(W,D)?le=null:K!==null&&o6(W,K)&&(w.flags|=32),pV(O,w),E1(O,w,le,q),w.child;case 6:return O===null&&p6(w),null;case 13:return mV(O,w,q);case 4:return O6(w,w.stateNode.containerInfo),W=w.pendingProps,O===null?w.child=Tb(w,null,W,q):E1(O,w,W,q),w.child;case 11:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Zi(W,D),cV(O,w,W,D,q);case 7:return E1(O,w,w.pendingProps,q),w.child;case 8:return E1(O,w,w.pendingProps.children,q),w.child;case 12:return E1(O,w,w.pendingProps.children,q),w.child;case 10:e:{if(W=w.type._context,D=w.pendingProps,K=w.memoizedProps,le=D.value,er(wy,W._currentValue),W._currentValue=le,K!==null)if(Ki(K.value,le)){if(K.children===D.children&&!K1.current){w=Kc(O,w,q);break e}}else for(K=w.child,K!==null&&(K.return=w);K!==null;){var Te=K.dependencies;if(Te!==null){le=K.child;for(var Le=Te.firstContext;Le!==null;){if(Le.context===W){if(K.tag===1){Le=Gc(-1,q&-q),Le.tag=2;var Ge=K.updateQueue;if(Ge!==null){Ge=Ge.shared;var at=Ge.pending;at===null?Le.next=Le:(Le.next=at.next,at.next=Le),Ge.pending=Le}}K.lanes|=q,Le=K.alternate,Le!==null&&(Le.lanes|=q),g6(K.return,q,w),Te.lanes|=q;break}Le=Le.next}}else if(K.tag===10)le=K.type===w.type?null:K.child;else if(K.tag===18){if(le=K.return,le===null)throw Error(n(341));le.lanes|=q,Te=le.alternate,Te!==null&&(Te.lanes|=q),g6(le,q,w),le=K.sibling}else le=K.child;if(le!==null)le.return=K;else for(le=K;le!==null;){if(le===w){le=null;break}if(K=le.sibling,K!==null){K.return=le.return,le=K;break}le=le.return}K=le}E1(O,w,D.children,q),w=w.child}return w;case 9:return D=w.type,W=w.pendingProps.children,Wb(w,q),D=oi(D),W=W(D),w.flags|=1,E1(O,w,W,q),w.child;case 14:return W=w.type,D=Zi(W,w.pendingProps),D=Zi(W.type,D),lV(O,w,W,D,q);case 15:return uV(O,w,w.type,w.pendingProps,q);case 17:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Zi(W,D),Ly(O,w),w.tag=1,Y1(W)?(O=!0,zy(w)):O=!1,Wb(w,q),tV(w,W,D),E6(w,W,D,q),L6(null,w,W,!0,O,q);case 19:return MV(O,w,q);case 22:return dV(O,w,q)}throw Error(n(156,w.tag))};function FV(O,w){return hp(O,w)}function H_e(O,w,q,W){this.tag=O,this.key=q,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=w,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=W,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function ii(O,w,q,W){return new H_e(O,w,q,W)}function oS(O){return O=O.prototype,!(!O||!O.isReactComponent)}function U_e(O){if(typeof O=="function")return oS(O)?1:0;if(O!=null){if(O=O.$$typeof,O===B)return 11;if(O===I)return 14}return 2}function ku(O,w){var q=O.alternate;return q===null?(q=ii(O.tag,w,O.key,O.mode),q.elementType=O.elementType,q.type=O.type,q.stateNode=O.stateNode,q.alternate=O,O.alternate=q):(q.pendingProps=w,q.type=O.type,q.flags=0,q.subtreeFlags=0,q.deletions=null),q.flags=O.flags&14680064,q.childLanes=O.childLanes,q.lanes=O.lanes,q.child=O.child,q.memoizedProps=O.memoizedProps,q.memoizedState=O.memoizedState,q.updateQueue=O.updateQueue,w=O.dependencies,q.dependencies=w===null?null:{lanes:w.lanes,firstContext:w.firstContext},q.sibling=O.sibling,q.index=O.index,q.ref=O.ref,q}function Gy(O,w,q,W,D,K){var le=2;if(W=O,typeof O=="function")oS(O)&&(le=1);else if(typeof O=="string")le=5;else e:switch(O){case S:return qp(q.children,D,K,w);case C:le=8,D|=8;break;case R:return O=ii(12,q,w,D|2),O.elementType=R,O.lanes=K,O;case N:return O=ii(13,q,w,D),O.elementType=N,O.lanes=K,O;case j:return O=ii(19,q,w,D),O.elementType=j,O.lanes=K,O;case $:return Ky(q,D,K,w);default:if(typeof O=="object"&&O!==null)switch(O.$$typeof){case T:le=10;break e;case E:le=9;break e;case B:le=11;break e;case I:le=14;break e;case P:le=16,W=null;break e}throw Error(n(130,O==null?O:typeof O,""))}return w=ii(le,q,w,D),w.elementType=O,w.type=W,w.lanes=K,w}function qp(O,w,q,W){return O=ii(7,O,W,w),O.lanes=q,O}function Ky(O,w,q,W){return O=ii(22,O,W,w),O.elementType=$,O.lanes=q,O.stateNode={isHidden:!1},O}function rS(O,w,q){return O=ii(6,O,null,w),O.lanes=q,O}function sS(O,w,q){return w=ii(4,O.children!==null?O.children:[],O.key,w),w.lanes=q,w.stateNode={containerInfo:O.containerInfo,pendingChildren:null,implementation:O.implementation},w}function X_e(O,w,q,W,D){this.tag=w,this.containerInfo=O,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Tk(0),this.expirationTimes=Tk(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Tk(0),this.identifierPrefix=W,this.onRecoverableError=D,this.mutableSourceEagerHydrationData=null}function iS(O,w,q,W,D,K,le,Te,Le){return O=new X_e(O,w,q,Te,Le),w===1?(w=1,K===!0&&(w|=8)):w=0,K=ii(3,null,null,w),O.current=K,K.stateNode=O,K.memoizedState={element:W,isDehydrated:q,cache:null,transitions:null,pendingSuspenseBoundaries:null},z6(K),O}function G_e(O,w,q){var W=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:k,key:W==null?null:""+W,children:O,containerInfo:w,implementation:q}}function $V(O){if(!O)return Mu;O=O._reactInternals;e:{if(ao(O)!==O||O.tag!==1)throw Error(n(170));var w=O;do{switch(w.tag){case 3:w=w.stateNode.context;break e;case 1:if(Y1(w.type)){w=w.stateNode.__reactInternalMemoizedMergedChildContext;break e}}w=w.return}while(w!==null);throw Error(n(171))}if(O.tag===1){var q=O.type;if(Y1(q))return g$(O,q,w)}return w}function VV(O,w,q,W,D,K,le,Te,Le){return O=iS(q,W,!0,O,D,K,le,Te,Le),O.context=$V(null),q=O.current,W=W1(),D=wu(q),K=Gc(W,D),K.callback=w??null,yu(q,K,D),O.current.lanes=D,Fm(O,D,W),J1(O,W),O}function Yy(O,w,q,W){var D=w.current,K=W1(),le=wu(D);return q=$V(q),w.context===null?w.context=q:w.pendingContext=q,w=Gc(K,le),w.payload={element:O},W=W===void 0?null:W,W!==null&&(w.callback=W),O=yu(D,w,le),O!==null&&(ea(O,D,le,K),ky(O,D,le)),le}function Zy(O){if(O=O.current,!O.child)return null;switch(O.child.tag){case 5:return O.child.stateNode;default:return O.child.stateNode}}function HV(O,w){if(O=O.memoizedState,O!==null&&O.dehydrated!==null){var q=O.retryLane;O.retryLane=q!==0&&q<w?q:w}}function aS(O,w){HV(O,w),(O=O.alternate)&&HV(O,w)}function K_e(){return null}var UV=typeof reportError=="function"?reportError:function(O){console.error(O)};function cS(O){this._internalRoot=O}Qy.prototype.render=cS.prototype.render=function(O){var w=this._internalRoot;if(w===null)throw Error(n(409));Yy(O,w,null,null)},Qy.prototype.unmount=cS.prototype.unmount=function(){var O=this._internalRoot;if(O!==null){this._internalRoot=null;var w=O.containerInfo;kp(function(){Yy(null,O,null,null)}),w[$c]=null}};function Qy(O){this._internalRoot=O}Qy.prototype.unstable_scheduleHydration=function(O){if(O){var w=CF();O={blockedOn:null,target:O,priority:w};for(var q=0;q<fu.length&&w!==0&&w<fu[q].priority;q++);fu.splice(q,0,O),q===0&&TF(O)}};function lS(O){return!(!O||O.nodeType!==1&&O.nodeType!==9&&O.nodeType!==11)}function Jy(O){return!(!O||O.nodeType!==1&&O.nodeType!==9&&O.nodeType!==11&&(O.nodeType!==8||O.nodeValue!==" react-mount-point-unstable "))}function XV(){}function Y_e(O,w,q,W,D){if(D){if(typeof W=="function"){var K=W;W=function(){var Ge=Zy(le);K.call(Ge)}}var le=VV(w,W,O,0,null,!1,!1,"",XV);return O._reactRootContainer=le,O[$c]=le.current,ng(O.nodeType===8?O.parentNode:O),kp(),le}for(;D=O.lastChild;)O.removeChild(D);if(typeof W=="function"){var Te=W;W=function(){var Ge=Zy(Le);Te.call(Ge)}}var Le=iS(O,0,!1,null,null,!1,!1,"",XV);return O._reactRootContainer=Le,O[$c]=Le.current,ng(O.nodeType===8?O.parentNode:O),kp(function(){Yy(w,Le,q,W)}),Le}function eA(O,w,q,W,D){var K=q._reactRootContainer;if(K){var le=K;if(typeof D=="function"){var Te=D;D=function(){var Le=Zy(le);Te.call(Le)}}Yy(w,le,O,D)}else le=Y_e(q,w,O,D,W);return Zy(le)}kF=function(O){switch(O.tag){case 3:var w=O.stateNode;if(w.current.memoizedState.isDehydrated){var q=Ea(w.pendingLanes);q!==0&&(Ek(w,q|1),J1(w,Ar()),!(co&6)&&(jb=Ar()+500,zu()))}break;case 13:kp(function(){var W=Xc(O,1);if(W!==null){var D=W1();ea(W,O,1,D)}}),aS(O,1)}},Wk=function(O){if(O.tag===13){var w=Xc(O,134217728);if(w!==null){var q=W1();ea(w,O,134217728,q)}aS(O,134217728)}},SF=function(O){if(O.tag===13){var w=wu(O),q=Xc(O,w);if(q!==null){var W=W1();ea(q,O,w,W)}aS(O,w)}},CF=function(){return Eo},qF=function(O,w){var q=Eo;try{return Eo=O,w()}finally{Eo=q}},Ue=function(O,w,q){switch(w){case"input":if(ke(O,q),w=q.name,q.type==="radio"&&w!=null){for(q=O;q.parentNode;)q=q.parentNode;for(q=q.querySelectorAll("input[name="+JSON.stringify(""+w)+'][type="radio"]'),w=0;w<q.length;w++){var W=q[w];if(W!==O&&W.form===O.form){var D=gy(W);if(!D)throw Error(n(90));je(W),ke(W,D)}}}break;case"textarea":qe(O,q);break;case"select":w=q.value,w!=null&&U(O,!!q.multiple,w,!1)}},Jo=eS,To=kp;var Z_e={usingClientEntryPoint:!1,Events:[sg,_b,gy,Mo,rr,eS]},zg={findFiberByHostInstance:zp,bundleType:0,version:"18.3.1",rendererPackageName:"react-dom"},Q_e={bundleType:zg.bundleType,version:zg.version,rendererPackageName:zg.rendererPackageName,rendererConfig:zg.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:M.ReactCurrentDispatcher,findHostInstanceByFiber:function(O){return O=Gi(O),O===null?null:O.stateNode},findFiberByHostInstance:zg.findFiberByHostInstance||K_e,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.3.1-next-f1338f8080-20240426"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var tA=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!tA.isDisabled&&tA.supportsFiber)try{T1=tA.inject(Q_e),$o=tA}catch{}}return es.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Z_e,es.createPortal=function(O,w){var q=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!lS(w))throw Error(n(200));return G_e(O,w,null,q)},es.createRoot=function(O,w){if(!lS(O))throw Error(n(299));var q=!1,W="",D=UV;return w!=null&&(w.unstable_strictMode===!0&&(q=!0),w.identifierPrefix!==void 0&&(W=w.identifierPrefix),w.onRecoverableError!==void 0&&(D=w.onRecoverableError)),w=iS(O,1,!1,null,null,q,!1,W,D),O[$c]=w.current,ng(O.nodeType===8?O.parentNode:O),new cS(w)},es.findDOMNode=function(O){if(O==null)return null;if(O.nodeType===1)return O;var w=O._reactInternals;if(w===void 0)throw typeof O.render=="function"?Error(n(188)):(O=Object.keys(O).join(","),Error(n(268,O)));return O=Gi(w),O=O===null?null:O.stateNode,O},es.flushSync=function(O){return kp(O)},es.hydrate=function(O,w,q){if(!Jy(w))throw Error(n(200));return eA(null,O,w,!0,q)},es.hydrateRoot=function(O,w,q){if(!lS(O))throw Error(n(405));var W=q!=null&&q.hydratedSources||null,D=!1,K="",le=UV;if(q!=null&&(q.unstable_strictMode===!0&&(D=!0),q.identifierPrefix!==void 0&&(K=q.identifierPrefix),q.onRecoverableError!==void 0&&(le=q.onRecoverableError)),w=VV(w,null,O,1,q??null,D,!1,K,le),O[$c]=w.current,ng(O),W)for(O=0;O<W.length;O++)q=W[O],D=q._getVersion,D=D(q._source),w.mutableSourceEagerHydrationData==null?w.mutableSourceEagerHydrationData=[q,D]:w.mutableSourceEagerHydrationData.push(q,D);return new Qy(w)},es.render=function(O,w,q){if(!Jy(w))throw Error(n(200));return eA(null,O,w,!1,q)},es.unmountComponentAtNode=function(O){if(!Jy(O))throw Error(n(40));return O._reactRootContainer?(kp(function(){eA(null,null,O,!1,function(){O._reactRootContainer=null,O[$c]=null})}),!0):!1},es.unstable_batchedUpdates=eS,es.unstable_renderSubtreeIntoContainer=function(O,w,q,W){if(!Jy(q))throw Error(n(200));if(O==null||O._reactInternals===void 0)throw Error(n(38));return eA(O,w,q,!1,W)},es.version="18.3.1-next-f1338f8080-20240426",es}var nH;function Wre(){if(nH)return bS.exports;nH=1;function e(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}return e(),bS.exports=dke(),bS.exports}var hs=Wre(),nA={},oH;function pke(){if(oH)return nA;oH=1;var e=Wre();return nA.createRoot=e.createRoot,nA.hydrateRoot=e.hydrateRoot,nA}var Nre=pke();const fke=e=>typeof e=="number"?!1:typeof e?.valueOf()=="string"||Array.isArray(e)?!e.length:!e,f0={OS:"web",select:e=>"web"in e?e.web:e.default,isWeb:!0};/*! +`+K.stack}return{value:O,source:w,stack:D,digest:null}}function E6(O,w,q){return{value:O,source:null,stack:q??null,digest:w??null}}function W6(O,w){try{console.error(w.value)}catch(q){setTimeout(function(){throw q})}}var k_e=typeof WeakMap=="function"?WeakMap:Map;function oV(O,w,q){q=Xc(-1,q),q.tag=3,q.payload={element:null};var W=w.value;return q.callback=function(){Dy||(Dy=!0,K6=W),W6(O,w)},q}function rV(O,w,q){q=Xc(-1,q),q.tag=3;var W=O.type.getDerivedStateFromError;if(typeof W=="function"){var D=w.value;q.payload=function(){return W(D)},q.callback=function(){W6(O,w)}}var K=O.stateNode;return K!==null&&typeof K.componentDidCatch=="function"&&(q.callback=function(){W6(O,w),typeof W!="function"&&(vu===null?vu=new Set([this]):vu.add(this));var le=w.stack;this.componentDidCatch(w.value,{componentStack:le!==null?le:""})}),q}function sV(O,w,q){var W=O.pingCache;if(W===null){W=O.pingCache=new k_e;var D=new Set;W.set(w,D)}else D=W.get(w),D===void 0&&(D=new Set,W.set(w,D));D.has(q)||(D.add(q),O=D_e.bind(null,O,w,q),w.then(O,O))}function iV(O){do{var w;if((w=O.tag===13)&&(w=O.memoizedState,w=w!==null?w.dehydrated!==null:!0),w)return O;O=O.return}while(O!==null);return null}function aV(O,w,q,W,D){return O.mode&1?(O.flags|=65536,O.lanes=D,O):(O===w?O.flags|=65536:(O.flags|=128,q.flags|=131072,q.flags&=-52805,q.tag===1&&(q.alternate===null?q.tag=17:(w=Xc(-1,1),w.tag=2,yu(q,w,1))),q.lanes|=1),O)}var S_e=M.ReactCurrentOwner,Z1=!1;function E1(O,w,q,W){w.child=O===null?k$(w,null,q,W):Tb(w,O.child,q,W)}function cV(O,w,q,W,D){q=q.render;var K=w.ref;return Wb(w,D),W=w6(O,w,q,W,K,D),q=_6(),O!==null&&!Z1?(w.updateQueue=O.updateQueue,w.flags&=-2053,O.lanes&=~D,Gc(O,w,D)):(fr&&q&&c6(w),w.flags|=1,E1(O,w,W,D),w.child)}function lV(O,w,q,W,D){if(O===null){var K=q.type;return typeof K=="function"&&!nS(K)&&K.defaultProps===void 0&&q.compare===null&&q.defaultProps===void 0?(w.tag=15,w.type=K,uV(O,w,K,W,D)):(O=Xy(q.type,null,W,w,w.mode,D),O.ref=w.ref,O.return=w,w.child=O)}if(K=O.child,!(O.lanes&D)){var le=K.memoizedProps;if(q=q.compare,q=q!==null?q:Jm,q(le,W)&&O.ref===w.ref)return Gc(O,w,D)}return w.flags|=1,O=ku(K,W),O.ref=w.ref,O.return=w,w.child=O}function uV(O,w,q,W,D){if(O!==null){var K=O.memoizedProps;if(Jm(K,W)&&O.ref===w.ref)if(Z1=!1,w.pendingProps=W=K,(O.lanes&D)!==0)O.flags&131072&&(Z1=!0);else return w.lanes=O.lanes,Gc(O,w,D)}return N6(O,w,q,W,D)}function dV(O,w,q){var W=w.pendingProps,D=W.children,K=O!==null?O.memoizedState:null;if(W.mode==="hidden")if(!(w.mode&1))w.memoizedState={baseLanes:0,cachePool:null,transitions:null},er(Pb,qs),qs|=q;else{if(!(q&1073741824))return O=K!==null?K.baseLanes|q:q,w.lanes=w.childLanes=1073741824,w.memoizedState={baseLanes:O,cachePool:null,transitions:null},w.updateQueue=null,er(Pb,qs),qs|=O,null;w.memoizedState={baseLanes:0,cachePool:null,transitions:null},W=K!==null?K.baseLanes:q,er(Pb,qs),qs|=W}else K!==null?(W=K.baseLanes|q,w.memoizedState=null):W=q,er(Pb,qs),qs|=W;return E1(O,w,D,q),w.child}function pV(O,w){var q=w.ref;(O===null&&q!==null||O!==null&&O.ref!==q)&&(w.flags|=512,w.flags|=2097152)}function N6(O,w,q,W,D){var K=Y1(q)?Op:r1.current;return K=Sb(w,K),Wb(w,D),q=w6(O,w,q,W,K,D),W=_6(),O!==null&&!Z1?(w.updateQueue=O.updateQueue,w.flags&=-2053,O.lanes&=~D,Gc(O,w,D)):(fr&&W&&c6(w),w.flags|=1,E1(O,w,q,D),w.child)}function fV(O,w,q,W,D){if(Y1(q)){var K=!0;My(w)}else K=!1;if(Wb(w,D),w.stateNode===null)By(O,w),tV(w,q,W),T6(w,q,W,D),W=!0;else if(O===null){var le=w.stateNode,Te=w.memoizedProps;le.props=Te;var Le=le.context,Ge=q.contextType;typeof Ge=="object"&&Ge!==null?Ge=oi(Ge):(Ge=Y1(q)?Op:r1.current,Ge=Sb(w,Ge));var at=q.getDerivedStateFromProps,ut=typeof at=="function"||typeof le.getSnapshotBeforeUpdate=="function";ut||typeof le.UNSAFE_componentWillReceiveProps!="function"&&typeof le.componentWillReceiveProps!="function"||(Te!==W||Le!==Ge)&&nV(w,le,W,Ge),Ou=!1;var st=w.memoizedState;le.state=st,ky(w,W,le,D),Le=w.memoizedState,Te!==W||st!==Le||K1.current||Ou?(typeof at=="function"&&(R6(w,q,at,W),Le=w.memoizedState),(Te=Ou||eV(w,q,Te,W,st,Le,Ge))?(ut||typeof le.UNSAFE_componentWillMount!="function"&&typeof le.componentWillMount!="function"||(typeof le.componentWillMount=="function"&&le.componentWillMount(),typeof le.UNSAFE_componentWillMount=="function"&&le.UNSAFE_componentWillMount()),typeof le.componentDidMount=="function"&&(w.flags|=4194308)):(typeof le.componentDidMount=="function"&&(w.flags|=4194308),w.memoizedProps=W,w.memoizedState=Le),le.props=W,le.state=Le,le.context=Ge,W=Te):(typeof le.componentDidMount=="function"&&(w.flags|=4194308),W=!1)}else{le=w.stateNode,C$(O,w),Te=w.memoizedProps,Ge=w.type===w.elementType?Te:Yi(w.type,Te),le.props=Ge,ut=w.pendingProps,st=le.context,Le=q.contextType,typeof Le=="object"&&Le!==null?Le=oi(Le):(Le=Y1(q)?Op:r1.current,Le=Sb(w,Le));var Wt=q.getDerivedStateFromProps;(at=typeof Wt=="function"||typeof le.getSnapshotBeforeUpdate=="function")||typeof le.UNSAFE_componentWillReceiveProps!="function"&&typeof le.componentWillReceiveProps!="function"||(Te!==ut||st!==Le)&&nV(w,le,W,Le),Ou=!1,st=w.memoizedState,le.state=st,ky(w,W,le,D);var $t=w.memoizedState;Te!==ut||st!==$t||K1.current||Ou?(typeof Wt=="function"&&(R6(w,q,Wt,W),$t=w.memoizedState),(Ge=Ou||eV(w,q,Ge,W,st,$t,Le)||!1)?(at||typeof le.UNSAFE_componentWillUpdate!="function"&&typeof le.componentWillUpdate!="function"||(typeof le.componentWillUpdate=="function"&&le.componentWillUpdate(W,$t,Le),typeof le.UNSAFE_componentWillUpdate=="function"&&le.UNSAFE_componentWillUpdate(W,$t,Le)),typeof le.componentDidUpdate=="function"&&(w.flags|=4),typeof le.getSnapshotBeforeUpdate=="function"&&(w.flags|=1024)):(typeof le.componentDidUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=4),typeof le.getSnapshotBeforeUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=1024),w.memoizedProps=W,w.memoizedState=$t),le.props=W,le.state=$t,le.context=Le,W=Ge):(typeof le.componentDidUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=4),typeof le.getSnapshotBeforeUpdate!="function"||Te===O.memoizedProps&&st===O.memoizedState||(w.flags|=1024),W=!1)}return B6(O,w,q,W,K,D)}function B6(O,w,q,W,D,K){pV(O,w);var le=(w.flags&128)!==0;if(!W&&!le)return D&&M$(w,q,!1),Gc(O,w,K);W=w.stateNode,S_e.current=w;var Te=le&&typeof q.getDerivedStateFromError!="function"?null:W.render();return w.flags|=1,O!==null&&le?(w.child=Tb(w,O.child,null,K),w.child=Tb(w,null,Te,K)):E1(O,w,Te,K),w.memoizedState=W.state,D&&M$(w,q,!0),w.child}function bV(O){var w=O.stateNode;w.pendingContext?m$(O,w.pendingContext,w.pendingContext!==w.context):w.context&&m$(O,w.context,!1),z6(O,w.containerInfo)}function hV(O,w,q,W,D){return Rb(),p6(D),w.flags|=256,E1(O,w,q,W),w.child}var L6={dehydrated:null,treeContext:null,retryLane:0};function P6(O){return{baseLanes:O,cachePool:null,transitions:null}}function mV(O,w,q){var W=w.pendingProps,D=xr.current,K=!1,le=(w.flags&128)!==0,Te;if((Te=le)||(Te=O!==null&&O.memoizedState===null?!1:(D&2)!==0),Te?(K=!0,w.flags&=-129):(O===null||O.memoizedState!==null)&&(D|=1),er(xr,D&1),O===null)return d6(w),O=w.memoizedState,O!==null&&(O=O.dehydrated,O!==null)?(w.mode&1?O.data==="$!"?w.lanes=8:w.lanes=1073741824:w.lanes=1,null):(le=W.children,O=W.fallback,K?(W=w.mode,K=w.child,le={mode:"hidden",children:le},!(W&1)&&K!==null?(K.childLanes=0,K.pendingProps=le):K=Gy(le,W,0,null),O=qp(O,W,q,null),K.return=w,O.return=w,K.sibling=O,w.child=K,w.child.memoizedState=P6(q),w.memoizedState=L6,O):j6(w,le));if(D=O.memoizedState,D!==null&&(Te=D.dehydrated,Te!==null))return C_e(O,w,le,W,Te,D,q);if(K){K=W.fallback,le=w.mode,D=O.child,Te=D.sibling;var Le={mode:"hidden",children:W.children};return!(le&1)&&w.child!==D?(W=w.child,W.childLanes=0,W.pendingProps=Le,w.deletions=null):(W=ku(D,Le),W.subtreeFlags=D.subtreeFlags&14680064),Te!==null?K=ku(Te,K):(K=qp(K,le,q,null),K.flags|=2),K.return=w,W.return=w,W.sibling=K,w.child=W,W=K,K=w.child,le=O.child.memoizedState,le=le===null?P6(q):{baseLanes:le.baseLanes|q,cachePool:null,transitions:le.transitions},K.memoizedState=le,K.childLanes=O.childLanes&~q,w.memoizedState=L6,W}return K=O.child,O=K.sibling,W=ku(K,{mode:"visible",children:W.children}),!(w.mode&1)&&(W.lanes=q),W.return=w,W.sibling=null,O!==null&&(q=w.deletions,q===null?(w.deletions=[O],w.flags|=16):q.push(O)),w.child=W,w.memoizedState=null,W}function j6(O,w){return w=Gy({mode:"visible",children:w},O.mode,0,null),w.return=O,O.child=w}function Ny(O,w,q,W){return W!==null&&p6(W),Tb(w,O.child,null,q),O=j6(w,w.pendingProps.children),O.flags|=2,w.memoizedState=null,O}function C_e(O,w,q,W,D,K,le){if(q)return w.flags&256?(w.flags&=-257,W=E6(Error(n(422))),Ny(O,w,le,W)):w.memoizedState!==null?(w.child=O.child,w.flags|=128,null):(K=W.fallback,D=w.mode,W=Gy({mode:"visible",children:W.children},D,0,null),K=qp(K,D,le,null),K.flags|=2,W.return=w,K.return=w,W.sibling=K,w.child=W,w.mode&1&&Tb(w,O.child,null,le),w.child.memoizedState=P6(le),w.memoizedState=L6,K);if(!(w.mode&1))return Ny(O,w,le,null);if(D.data==="$!"){if(W=D.nextSibling&&D.nextSibling.dataset,W)var Te=W.dgst;return W=Te,K=Error(n(419)),W=E6(K,W,void 0),Ny(O,w,le,W)}if(Te=(le&O.childLanes)!==0,Z1||Te){if(W=A0,W!==null){switch(le&-le){case 4:D=2;break;case 16:D=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:D=32;break;case 536870912:D=268435456;break;default:D=0}D=D&(W.suspendedLanes|le)?0:D,D!==0&&D!==K.retryLane&&(K.retryLane=D,Uc(O,D),Ji(W,O,D,-1))}return tS(),W=E6(Error(n(421))),Ny(O,w,le,W)}return D.data==="$?"?(w.flags|=128,w.child=O.child,w=F_e.bind(null,O),D._reactRetry=w,null):(O=K.treeContext,Cs=mu(D.nextSibling),Ss=w,fr=!0,Ki=null,O!==null&&(ti[ni++]=Vc,ti[ni++]=Hc,ti[ni++]=yp,Vc=O.id,Hc=O.overflow,yp=w),w=j6(w,W.children),w.flags|=4096,w)}function gV(O,w,q){O.lanes|=w;var W=O.alternate;W!==null&&(W.lanes|=w),m6(O.return,w,q)}function I6(O,w,q,W,D){var K=O.memoizedState;K===null?O.memoizedState={isBackwards:w,rendering:null,renderingStartTime:0,last:W,tail:q,tailMode:D}:(K.isBackwards=w,K.rendering=null,K.renderingStartTime=0,K.last=W,K.tail=q,K.tailMode=D)}function MV(O,w,q){var W=w.pendingProps,D=W.revealOrder,K=W.tail;if(E1(O,w,W.children,q),W=xr.current,W&2)W=W&1|2,w.flags|=128;else{if(O!==null&&O.flags&128)e:for(O=w.child;O!==null;){if(O.tag===13)O.memoizedState!==null&&gV(O,q,w);else if(O.tag===19)gV(O,q,w);else if(O.child!==null){O.child.return=O,O=O.child;continue}if(O===w)break e;for(;O.sibling===null;){if(O.return===null||O.return===w)break e;O=O.return}O.sibling.return=O.return,O=O.sibling}W&=1}if(er(xr,W),!(w.mode&1))w.memoizedState=null;else switch(D){case"forwards":for(q=w.child,D=null;q!==null;)O=q.alternate,O!==null&&Sy(O)===null&&(D=q),q=q.sibling;q=D,q===null?(D=w.child,w.child=null):(D=q.sibling,q.sibling=null),I6(w,!1,D,q,K);break;case"backwards":for(q=null,D=w.child,w.child=null;D!==null;){if(O=D.alternate,O!==null&&Sy(O)===null){w.child=D;break}O=D.sibling,D.sibling=q,q=D,D=O}I6(w,!0,q,null,K);break;case"together":I6(w,!1,null,null,void 0);break;default:w.memoizedState=null}return w.child}function By(O,w){!(w.mode&1)&&O!==null&&(O.alternate=null,w.alternate=null,w.flags|=2)}function Gc(O,w,q){if(O!==null&&(w.dependencies=O.dependencies),_p|=w.lanes,!(q&w.childLanes))return null;if(O!==null&&w.child!==O.child)throw Error(n(153));if(w.child!==null){for(O=w.child,q=ku(O,O.pendingProps),w.child=q,q.return=w;O.sibling!==null;)O=O.sibling,q=q.sibling=ku(O,O.pendingProps),q.return=w;q.sibling=null}return w.child}function q_e(O,w,q){switch(w.tag){case 3:bV(w),Rb();break;case 5:T$(w);break;case 1:Y1(w.type)&&My(w);break;case 4:z6(w,w.stateNode.containerInfo);break;case 10:var W=w.type._context,D=w.memoizedProps.value;er(xy,W._currentValue),W._currentValue=D;break;case 13:if(W=w.memoizedState,W!==null)return W.dehydrated!==null?(er(xr,xr.current&1),w.flags|=128,null):q&w.child.childLanes?mV(O,w,q):(er(xr,xr.current&1),O=Gc(O,w,q),O!==null?O.sibling:null);er(xr,xr.current&1);break;case 19:if(W=(q&w.childLanes)!==0,O.flags&128){if(W)return MV(O,w,q);w.flags|=128}if(D=w.memoizedState,D!==null&&(D.rendering=null,D.tail=null,D.lastEffect=null),er(xr,xr.current),W)break;return null;case 22:case 23:return w.lanes=0,dV(O,w,q)}return Gc(O,w,q)}var zV,D6,OV,yV;zV=function(O,w){for(var q=w.child;q!==null;){if(q.tag===5||q.tag===6)O.appendChild(q.stateNode);else if(q.tag!==4&&q.child!==null){q.child.return=q,q=q.child;continue}if(q===w)break;for(;q.sibling===null;){if(q.return===null||q.return===w)return;q=q.return}q.sibling.return=q.return,q=q.sibling}},D6=function(){},OV=function(O,w,q,W){var D=O.memoizedProps;if(D!==W){O=w.stateNode,xp(Na.current);var K=null;switch(q){case"input":D=we(O,D),W=we(O,W),K=[];break;case"select":D=Z({},D,{value:void 0}),W=Z({},W,{value:void 0}),K=[];break;case"textarea":D=ne(O,D),W=ne(O,W),K=[];break;default:typeof D.onClick!="function"&&typeof W.onClick=="function"&&(O.onclick=hy)}ze(q,W);var le;q=null;for(Ge in D)if(!W.hasOwnProperty(Ge)&&D.hasOwnProperty(Ge)&&D[Ge]!=null)if(Ge==="style"){var Te=D[Ge];for(le in Te)Te.hasOwnProperty(le)&&(q||(q={}),q[le]="")}else Ge!=="dangerouslySetInnerHTML"&&Ge!=="children"&&Ge!=="suppressContentEditableWarning"&&Ge!=="suppressHydrationWarning"&&Ge!=="autoFocus"&&(r.hasOwnProperty(Ge)?K||(K=[]):(K=K||[]).push(Ge,null));for(Ge in W){var Le=W[Ge];if(Te=D?.[Ge],W.hasOwnProperty(Ge)&&Le!==Te&&(Le!=null||Te!=null))if(Ge==="style")if(Te){for(le in Te)!Te.hasOwnProperty(le)||Le&&Le.hasOwnProperty(le)||(q||(q={}),q[le]="");for(le in Le)Le.hasOwnProperty(le)&&Te[le]!==Le[le]&&(q||(q={}),q[le]=Le[le])}else q||(K||(K=[]),K.push(Ge,q)),q=Le;else Ge==="dangerouslySetInnerHTML"?(Le=Le?Le.__html:void 0,Te=Te?Te.__html:void 0,Le!=null&&Te!==Le&&(K=K||[]).push(Ge,Le)):Ge==="children"?typeof Le!="string"&&typeof Le!="number"||(K=K||[]).push(Ge,""+Le):Ge!=="suppressContentEditableWarning"&&Ge!=="suppressHydrationWarning"&&(r.hasOwnProperty(Ge)?(Le!=null&&Ge==="onScroll"&&sr("scroll",O),K||Te===Le||(K=[])):(K=K||[]).push(Ge,Le))}q&&(K=K||[]).push("style",q);var Ge=K;(w.updateQueue=Ge)&&(w.flags|=4)}},yV=function(O,w,q,W){q!==W&&(w.flags|=4)};function bg(O,w){if(!fr)switch(O.tailMode){case"hidden":w=O.tail;for(var q=null;w!==null;)w.alternate!==null&&(q=w),w=w.sibling;q===null?O.tail=null:q.sibling=null;break;case"collapsed":q=O.tail;for(var W=null;q!==null;)q.alternate!==null&&(W=q),q=q.sibling;W===null?w||O.tail===null?O.tail=null:O.tail.sibling=null:W.sibling=null}}function i1(O){var w=O.alternate!==null&&O.alternate.child===O.child,q=0,W=0;if(w)for(var D=O.child;D!==null;)q|=D.lanes|D.childLanes,W|=D.subtreeFlags&14680064,W|=D.flags&14680064,D.return=O,D=D.sibling;else for(D=O.child;D!==null;)q|=D.lanes|D.childLanes,W|=D.subtreeFlags,W|=D.flags,D.return=O,D=D.sibling;return O.subtreeFlags|=W,O.childLanes=q,w}function R_e(O,w,q){var W=w.pendingProps;switch(l6(w),w.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return i1(w),null;case 1:return Y1(w.type)&&gy(),i1(w),null;case 3:return W=w.stateNode,Nb(),ir(K1),ir(r1),A6(),W.pendingContext&&(W.context=W.pendingContext,W.pendingContext=null),(O===null||O.child===null)&&(Ay(w)?w.flags|=4:O===null||O.memoizedState.isDehydrated&&!(w.flags&256)||(w.flags|=1024,Ki!==null&&(Q6(Ki),Ki=null))),D6(O,w),i1(w),null;case 5:O6(w);var D=xp(lg.current);if(q=w.type,O!==null&&w.stateNode!=null)OV(O,w,q,W,D),O.ref!==w.ref&&(w.flags|=512,w.flags|=2097152);else{if(!W){if(w.stateNode===null)throw Error(n(166));return i1(w),null}if(O=xp(Na.current),Ay(w)){W=w.stateNode,q=w.type;var K=w.memoizedProps;switch(W[Wa]=w,W[rg]=K,O=(w.mode&1)!==0,q){case"dialog":sr("cancel",W),sr("close",W);break;case"iframe":case"object":case"embed":sr("load",W);break;case"video":case"audio":for(D=0;D<tg.length;D++)sr(tg[D],W);break;case"source":sr("error",W);break;case"img":case"image":case"link":sr("error",W),sr("load",W);break;case"details":sr("toggle",W);break;case"input":re(W,K),sr("invalid",W);break;case"select":W._wrapperState={wasMultiple:!!K.multiple},sr("invalid",W);break;case"textarea":ve(W,K),sr("invalid",W)}ze(q,K),D=null;for(var le in K)if(K.hasOwnProperty(le)){var Te=K[le];le==="children"?typeof Te=="string"?W.textContent!==Te&&(K.suppressHydrationWarning!==!0&&by(W.textContent,Te,O),D=["children",Te]):typeof Te=="number"&&W.textContent!==""+Te&&(K.suppressHydrationWarning!==!0&&by(W.textContent,Te,O),D=["children",""+Te]):r.hasOwnProperty(le)&&Te!=null&&le==="onScroll"&&sr("scroll",W)}switch(q){case"input":Ne(W),Se(W,K,!0);break;case"textarea":Ne(W),Pe(W);break;case"select":case"option":break;default:typeof K.onClick=="function"&&(W.onclick=hy)}W=D,w.updateQueue=W,W!==null&&(w.flags|=4)}else{le=D.nodeType===9?D:D.ownerDocument,O==="http://www.w3.org/1999/xhtml"&&(O=rt(q)),O==="http://www.w3.org/1999/xhtml"?q==="script"?(O=le.createElement("div"),O.innerHTML="<script><\/script>",O=O.removeChild(O.firstChild)):typeof W.is=="string"?O=le.createElement(q,{is:W.is}):(O=le.createElement(q),q==="select"&&(le=O,W.multiple?le.multiple=!0:W.size&&(le.size=W.size))):O=le.createElementNS(O,q),O[Wa]=w,O[rg]=W,zV(O,w,!1,!1),w.stateNode=O;e:{switch(le=nt(q,W),q){case"dialog":sr("cancel",O),sr("close",O),D=W;break;case"iframe":case"object":case"embed":sr("load",O),D=W;break;case"video":case"audio":for(D=0;D<tg.length;D++)sr(tg[D],O);D=W;break;case"source":sr("error",O),D=W;break;case"img":case"image":case"link":sr("error",O),sr("load",O),D=W;break;case"details":sr("toggle",O),D=W;break;case"input":re(O,W),D=we(O,W),sr("invalid",O);break;case"option":D=W;break;case"select":O._wrapperState={wasMultiple:!!W.multiple},D=Z({},W,{value:void 0}),sr("invalid",O);break;case"textarea":ve(O,W),D=ne(O,W),sr("invalid",O);break;default:D=W}ze(q,D),Te=D;for(K in Te)if(Te.hasOwnProperty(K)){var Le=Te[K];K==="style"?Re(O,Le):K==="dangerouslySetInnerHTML"?(Le=Le?Le.__html:void 0,Le!=null&&Bt(O,Le)):K==="children"?typeof Le=="string"?(q!=="textarea"||Le!=="")&&ae(O,Le):typeof Le=="number"&&ae(O,""+Le):K!=="suppressContentEditableWarning"&&K!=="suppressHydrationWarning"&&K!=="autoFocus"&&(r.hasOwnProperty(K)?Le!=null&&K==="onScroll"&&sr("scroll",O):Le!=null&&v(O,K,Le,le))}switch(q){case"input":Ne(O),Se(O,W,!1);break;case"textarea":Ne(O),Pe(O);break;case"option":W.value!=null&&O.setAttribute("value",""+de(W.value));break;case"select":O.multiple=!!W.multiple,K=W.value,K!=null?U(O,!!W.multiple,K,!1):W.defaultValue!=null&&U(O,!!W.multiple,W.defaultValue,!0);break;default:typeof D.onClick=="function"&&(O.onclick=hy)}switch(q){case"button":case"input":case"select":case"textarea":W=!!W.autoFocus;break e;case"img":W=!0;break e;default:W=!1}}W&&(w.flags|=4)}w.ref!==null&&(w.flags|=512,w.flags|=2097152)}return i1(w),null;case 6:if(O&&w.stateNode!=null)yV(O,w,O.memoizedProps,W);else{if(typeof W!="string"&&w.stateNode===null)throw Error(n(166));if(q=xp(lg.current),xp(Na.current),Ay(w)){if(W=w.stateNode,q=w.memoizedProps,W[Wa]=w,(K=W.nodeValue!==q)&&(O=Ss,O!==null))switch(O.tag){case 3:by(W.nodeValue,q,(O.mode&1)!==0);break;case 5:O.memoizedProps.suppressHydrationWarning!==!0&&by(W.nodeValue,q,(O.mode&1)!==0)}K&&(w.flags|=4)}else W=(q.nodeType===9?q:q.ownerDocument).createTextNode(W),W[Wa]=w,w.stateNode=W}return i1(w),null;case 13:if(ir(xr),W=w.memoizedState,O===null||O.memoizedState!==null&&O.memoizedState.dehydrated!==null){if(fr&&Cs!==null&&w.mode&1&&!(w.flags&128))x$(),Rb(),w.flags|=98560,K=!1;else if(K=Ay(w),W!==null&&W.dehydrated!==null){if(O===null){if(!K)throw Error(n(318));if(K=w.memoizedState,K=K!==null?K.dehydrated:null,!K)throw Error(n(317));K[Wa]=w}else Rb(),!(w.flags&128)&&(w.memoizedState=null),w.flags|=4;i1(w),K=!1}else Ki!==null&&(Q6(Ki),Ki=null),K=!0;if(!K)return w.flags&65536?w:null}return w.flags&128?(w.lanes=q,w):(W=W!==null,W!==(O!==null&&O.memoizedState!==null)&&W&&(w.child.flags|=8192,w.mode&1&&(O===null||xr.current&1?d0===0&&(d0=3):tS())),w.updateQueue!==null&&(w.flags|=4),i1(w),null);case 4:return Nb(),D6(O,w),O===null&&ng(w.stateNode.containerInfo),i1(w),null;case 10:return h6(w.type._context),i1(w),null;case 17:return Y1(w.type)&&gy(),i1(w),null;case 19:if(ir(xr),K=w.memoizedState,K===null)return i1(w),null;if(W=(w.flags&128)!==0,le=K.rendering,le===null)if(W)bg(K,!1);else{if(d0!==0||O!==null&&O.flags&128)for(O=w.child;O!==null;){if(le=Sy(O),le!==null){for(w.flags|=128,bg(K,!1),W=le.updateQueue,W!==null&&(w.updateQueue=W,w.flags|=4),w.subtreeFlags=0,W=q,q=w.child;q!==null;)K=q,O=W,K.flags&=14680066,le=K.alternate,le===null?(K.childLanes=0,K.lanes=O,K.child=null,K.subtreeFlags=0,K.memoizedProps=null,K.memoizedState=null,K.updateQueue=null,K.dependencies=null,K.stateNode=null):(K.childLanes=le.childLanes,K.lanes=le.lanes,K.child=le.child,K.subtreeFlags=0,K.deletions=null,K.memoizedProps=le.memoizedProps,K.memoizedState=le.memoizedState,K.updateQueue=le.updateQueue,K.type=le.type,O=le.dependencies,K.dependencies=O===null?null:{lanes:O.lanes,firstContext:O.firstContext}),q=q.sibling;return er(xr,xr.current&1|2),w.child}O=O.sibling}K.tail!==null&&Ar()>jb&&(w.flags|=128,W=!0,bg(K,!1),w.lanes=4194304)}else{if(!W)if(O=Sy(le),O!==null){if(w.flags|=128,W=!0,q=O.updateQueue,q!==null&&(w.updateQueue=q,w.flags|=4),bg(K,!0),K.tail===null&&K.tailMode==="hidden"&&!le.alternate&&!fr)return i1(w),null}else 2*Ar()-K.renderingStartTime>jb&&q!==1073741824&&(w.flags|=128,W=!0,bg(K,!1),w.lanes=4194304);K.isBackwards?(le.sibling=w.child,w.child=le):(q=K.last,q!==null?q.sibling=le:w.child=le,K.last=le)}return K.tail!==null?(w=K.tail,K.rendering=w,K.tail=w.sibling,K.renderingStartTime=Ar(),w.sibling=null,q=xr.current,er(xr,W?q&1|2:q&1),w):(i1(w),null);case 22:case 23:return eS(),W=w.memoizedState!==null,O!==null&&O.memoizedState!==null!==W&&(w.flags|=8192),W&&w.mode&1?qs&1073741824&&(i1(w),w.subtreeFlags&6&&(w.flags|=8192)):i1(w),null;case 24:return null;case 25:return null}throw Error(n(156,w.tag))}function T_e(O,w){switch(l6(w),w.tag){case 1:return Y1(w.type)&&gy(),O=w.flags,O&65536?(w.flags=O&-65537|128,w):null;case 3:return Nb(),ir(K1),ir(r1),A6(),O=w.flags,O&65536&&!(O&128)?(w.flags=O&-65537|128,w):null;case 5:return O6(w),null;case 13:if(ir(xr),O=w.memoizedState,O!==null&&O.dehydrated!==null){if(w.alternate===null)throw Error(n(340));Rb()}return O=w.flags,O&65536?(w.flags=O&-65537|128,w):null;case 19:return ir(xr),null;case 4:return Nb(),null;case 10:return h6(w.type._context),null;case 22:case 23:return eS(),null;case 24:return null;default:return null}}var Ly=!1,a1=!1,E_e=typeof WeakSet=="function"?WeakSet:Set,Ft=null;function Lb(O,w){var q=O.ref;if(q!==null)if(typeof q=="function")try{q(null)}catch(W){Lr(O,w,W)}else q.current=null}function F6(O,w,q){try{q()}catch(W){Lr(O,w,W)}}var AV=!1;function W_e(O,w){if(e6=oy,O=e$(),Uk(O)){if("selectionStart"in O)var q={start:O.selectionStart,end:O.selectionEnd};else e:{q=(q=O.ownerDocument)&&q.defaultView||window;var W=q.getSelection&&q.getSelection();if(W&&W.rangeCount!==0){q=W.anchorNode;var D=W.anchorOffset,K=W.focusNode;W=W.focusOffset;try{q.nodeType,K.nodeType}catch{q=null;break e}var le=0,Te=-1,Le=-1,Ge=0,at=0,ut=O,st=null;t:for(;;){for(var Wt;ut!==q||D!==0&&ut.nodeType!==3||(Te=le+D),ut!==K||W!==0&&ut.nodeType!==3||(Le=le+W),ut.nodeType===3&&(le+=ut.nodeValue.length),(Wt=ut.firstChild)!==null;)st=ut,ut=Wt;for(;;){if(ut===O)break t;if(st===q&&++Ge===D&&(Te=le),st===K&&++at===W&&(Le=le),(Wt=ut.nextSibling)!==null)break;ut=st,st=ut.parentNode}ut=Wt}q=Te===-1||Le===-1?null:{start:Te,end:Le}}else q=null}q=q||{start:0,end:0}}else q=null;for(t6={focusedElem:O,selectionRange:q},oy=!1,Ft=w;Ft!==null;)if(w=Ft,O=w.child,(w.subtreeFlags&1028)!==0&&O!==null)O.return=w,Ft=O;else for(;Ft!==null;){w=Ft;try{var $t=w.alternate;if(w.flags&1024)switch(w.tag){case 0:case 11:case 15:break;case 1:if($t!==null){var Ut=$t.memoizedProps,Vr=$t.memoizedState,Fe=w.stateNode,De=Fe.getSnapshotBeforeUpdate(w.elementType===w.type?Ut:Yi(w.type,Ut),Vr);Fe.__reactInternalSnapshotBeforeUpdate=De}break;case 3:var Ve=w.stateNode.containerInfo;Ve.nodeType===1?Ve.textContent="":Ve.nodeType===9&&Ve.documentElement&&Ve.removeChild(Ve.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(ft){Lr(w,w.return,ft)}if(O=w.sibling,O!==null){O.return=w.return,Ft=O;break}Ft=w.return}return $t=AV,AV=!1,$t}function hg(O,w,q){var W=w.updateQueue;if(W=W!==null?W.lastEffect:null,W!==null){var D=W=W.next;do{if((D.tag&O)===O){var K=D.destroy;D.destroy=void 0,K!==void 0&&F6(w,q,K)}D=D.next}while(D!==W)}}function Py(O,w){if(w=w.updateQueue,w=w!==null?w.lastEffect:null,w!==null){var q=w=w.next;do{if((q.tag&O)===O){var W=q.create;q.destroy=W()}q=q.next}while(q!==w)}}function $6(O){var w=O.ref;if(w!==null){var q=O.stateNode;switch(O.tag){case 5:O=q;break;default:O=q}typeof w=="function"?w(O):w.current=O}}function vV(O){var w=O.alternate;w!==null&&(O.alternate=null,vV(w)),O.child=null,O.deletions=null,O.sibling=null,O.tag===5&&(w=O.stateNode,w!==null&&(delete w[Wa],delete w[rg],delete w[s6],delete w[m_e],delete w[g_e])),O.stateNode=null,O.return=null,O.dependencies=null,O.memoizedProps=null,O.memoizedState=null,O.pendingProps=null,O.stateNode=null,O.updateQueue=null}function xV(O){return O.tag===5||O.tag===3||O.tag===4}function wV(O){e:for(;;){for(;O.sibling===null;){if(O.return===null||xV(O.return))return null;O=O.return}for(O.sibling.return=O.return,O=O.sibling;O.tag!==5&&O.tag!==6&&O.tag!==18;){if(O.flags&2||O.child===null||O.tag===4)continue e;O.child.return=O,O=O.child}if(!(O.flags&2))return O.stateNode}}function V6(O,w,q){var W=O.tag;if(W===5||W===6)O=O.stateNode,w?q.nodeType===8?q.parentNode.insertBefore(O,w):q.insertBefore(O,w):(q.nodeType===8?(w=q.parentNode,w.insertBefore(O,q)):(w=q,w.appendChild(O)),q=q._reactRootContainer,q!=null||w.onclick!==null||(w.onclick=hy));else if(W!==4&&(O=O.child,O!==null))for(V6(O,w,q),O=O.sibling;O!==null;)V6(O,w,q),O=O.sibling}function H6(O,w,q){var W=O.tag;if(W===5||W===6)O=O.stateNode,w?q.insertBefore(O,w):q.appendChild(O);else if(W!==4&&(O=O.child,O!==null))for(H6(O,w,q),O=O.sibling;O!==null;)H6(O,w,q),O=O.sibling}var D0=null,Zi=!1;function Au(O,w,q){for(q=q.child;q!==null;)_V(O,w,q),q=q.sibling}function _V(O,w,q){if($o&&typeof $o.onCommitFiberUnmount=="function")try{$o.onCommitFiberUnmount(T1,q)}catch{}switch(q.tag){case 5:a1||Lb(q,w);case 6:var W=D0,D=Zi;D0=null,Au(O,w,q),D0=W,Zi=D,D0!==null&&(Zi?(O=D0,q=q.stateNode,O.nodeType===8?O.parentNode.removeChild(q):O.removeChild(q)):D0.removeChild(q.stateNode));break;case 18:D0!==null&&(Zi?(O=D0,q=q.stateNode,O.nodeType===8?r6(O.parentNode,q):O.nodeType===1&&r6(O,q),Xm(O)):r6(D0,q.stateNode));break;case 4:W=D0,D=Zi,D0=q.stateNode.containerInfo,Zi=!0,Au(O,w,q),D0=W,Zi=D;break;case 0:case 11:case 14:case 15:if(!a1&&(W=q.updateQueue,W!==null&&(W=W.lastEffect,W!==null))){D=W=W.next;do{var K=D,le=K.destroy;K=K.tag,le!==void 0&&(K&2||K&4)&&F6(q,w,le),D=D.next}while(D!==W)}Au(O,w,q);break;case 1:if(!a1&&(Lb(q,w),W=q.stateNode,typeof W.componentWillUnmount=="function"))try{W.props=q.memoizedProps,W.state=q.memoizedState,W.componentWillUnmount()}catch(Te){Lr(q,w,Te)}Au(O,w,q);break;case 21:Au(O,w,q);break;case 22:q.mode&1?(a1=(W=a1)||q.memoizedState!==null,Au(O,w,q),a1=W):Au(O,w,q);break;default:Au(O,w,q)}}function kV(O){var w=O.updateQueue;if(w!==null){O.updateQueue=null;var q=O.stateNode;q===null&&(q=O.stateNode=new E_e),w.forEach(function(W){var D=$_e.bind(null,O,W);q.has(W)||(q.add(W),W.then(D,D))})}}function Qi(O,w){var q=w.deletions;if(q!==null)for(var W=0;W<q.length;W++){var D=q[W];try{var K=O,le=w,Te=le;e:for(;Te!==null;){switch(Te.tag){case 5:D0=Te.stateNode,Zi=!1;break e;case 3:D0=Te.stateNode.containerInfo,Zi=!0;break e;case 4:D0=Te.stateNode.containerInfo,Zi=!0;break e}Te=Te.return}if(D0===null)throw Error(n(160));_V(K,le,D),D0=null,Zi=!1;var Le=D.alternate;Le!==null&&(Le.return=null),D.return=null}catch(Ge){Lr(D,w,Ge)}}if(w.subtreeFlags&12854)for(w=w.child;w!==null;)SV(w,O),w=w.sibling}function SV(O,w){var q=O.alternate,W=O.flags;switch(O.tag){case 0:case 11:case 14:case 15:if(Qi(w,O),La(O),W&4){try{hg(3,O,O.return),Py(3,O)}catch(Ut){Lr(O,O.return,Ut)}try{hg(5,O,O.return)}catch(Ut){Lr(O,O.return,Ut)}}break;case 1:Qi(w,O),La(O),W&512&&q!==null&&Lb(q,q.return);break;case 5:if(Qi(w,O),La(O),W&512&&q!==null&&Lb(q,q.return),O.flags&32){var D=O.stateNode;try{ae(D,"")}catch(Ut){Lr(O,O.return,Ut)}}if(W&4&&(D=O.stateNode,D!=null)){var K=O.memoizedProps,le=q!==null?q.memoizedProps:K,Te=O.type,Le=O.updateQueue;if(O.updateQueue=null,Le!==null)try{Te==="input"&&K.type==="radio"&&K.name!=null&&pe(D,K),nt(Te,le);var Ge=nt(Te,K);for(le=0;le<Le.length;le+=2){var at=Le[le],ut=Le[le+1];at==="style"?Re(D,ut):at==="dangerouslySetInnerHTML"?Bt(D,ut):at==="children"?ae(D,ut):v(D,at,ut,Ge)}switch(Te){case"input":ke(D,K);break;case"textarea":qe(D,K);break;case"select":var st=D._wrapperState.wasMultiple;D._wrapperState.wasMultiple=!!K.multiple;var Wt=K.value;Wt!=null?U(D,!!K.multiple,Wt,!1):st!==!!K.multiple&&(K.defaultValue!=null?U(D,!!K.multiple,K.defaultValue,!0):U(D,!!K.multiple,K.multiple?[]:"",!1))}D[rg]=K}catch(Ut){Lr(O,O.return,Ut)}}break;case 6:if(Qi(w,O),La(O),W&4){if(O.stateNode===null)throw Error(n(162));D=O.stateNode,K=O.memoizedProps;try{D.nodeValue=K}catch(Ut){Lr(O,O.return,Ut)}}break;case 3:if(Qi(w,O),La(O),W&4&&q!==null&&q.memoizedState.isDehydrated)try{Xm(w.containerInfo)}catch(Ut){Lr(O,O.return,Ut)}break;case 4:Qi(w,O),La(O);break;case 13:Qi(w,O),La(O),D=O.child,D.flags&8192&&(K=D.memoizedState!==null,D.stateNode.isHidden=K,!K||D.alternate!==null&&D.alternate.memoizedState!==null||(G6=Ar())),W&4&&kV(O);break;case 22:if(at=q!==null&&q.memoizedState!==null,O.mode&1?(a1=(Ge=a1)||at,Qi(w,O),a1=Ge):Qi(w,O),La(O),W&8192){if(Ge=O.memoizedState!==null,(O.stateNode.isHidden=Ge)&&!at&&O.mode&1)for(Ft=O,at=O.child;at!==null;){for(ut=Ft=at;Ft!==null;){switch(st=Ft,Wt=st.child,st.tag){case 0:case 11:case 14:case 15:hg(4,st,st.return);break;case 1:Lb(st,st.return);var $t=st.stateNode;if(typeof $t.componentWillUnmount=="function"){W=st,q=st.return;try{w=W,$t.props=w.memoizedProps,$t.state=w.memoizedState,$t.componentWillUnmount()}catch(Ut){Lr(W,q,Ut)}}break;case 5:Lb(st,st.return);break;case 22:if(st.memoizedState!==null){RV(ut);continue}}Wt!==null?(Wt.return=st,Ft=Wt):RV(ut)}at=at.sibling}e:for(at=null,ut=O;;){if(ut.tag===5){if(at===null){at=ut;try{D=ut.stateNode,Ge?(K=D.style,typeof K.setProperty=="function"?K.setProperty("display","none","important"):K.display="none"):(Te=ut.stateNode,Le=ut.memoizedProps.style,le=Le!=null&&Le.hasOwnProperty("display")?Le.display:null,Te.style.display=fe("display",le))}catch(Ut){Lr(O,O.return,Ut)}}}else if(ut.tag===6){if(at===null)try{ut.stateNode.nodeValue=Ge?"":ut.memoizedProps}catch(Ut){Lr(O,O.return,Ut)}}else if((ut.tag!==22&&ut.tag!==23||ut.memoizedState===null||ut===O)&&ut.child!==null){ut.child.return=ut,ut=ut.child;continue}if(ut===O)break e;for(;ut.sibling===null;){if(ut.return===null||ut.return===O)break e;at===ut&&(at=null),ut=ut.return}at===ut&&(at=null),ut.sibling.return=ut.return,ut=ut.sibling}}break;case 19:Qi(w,O),La(O),W&4&&kV(O);break;case 21:break;default:Qi(w,O),La(O)}}function La(O){var w=O.flags;if(w&2){try{e:{for(var q=O.return;q!==null;){if(xV(q)){var W=q;break e}q=q.return}throw Error(n(160))}switch(W.tag){case 5:var D=W.stateNode;W.flags&32&&(ae(D,""),W.flags&=-33);var K=wV(O);H6(O,K,D);break;case 3:case 4:var le=W.stateNode.containerInfo,Te=wV(O);V6(O,Te,le);break;default:throw Error(n(161))}}catch(Le){Lr(O,O.return,Le)}O.flags&=-3}w&4096&&(O.flags&=-4097)}function N_e(O,w,q){Ft=O,CV(O)}function CV(O,w,q){for(var W=(O.mode&1)!==0;Ft!==null;){var D=Ft,K=D.child;if(D.tag===22&&W){var le=D.memoizedState!==null||Ly;if(!le){var Te=D.alternate,Le=Te!==null&&Te.memoizedState!==null||a1;Te=Ly;var Ge=a1;if(Ly=le,(a1=Le)&&!Ge)for(Ft=D;Ft!==null;)le=Ft,Le=le.child,le.tag===22&&le.memoizedState!==null?TV(D):Le!==null?(Le.return=le,Ft=Le):TV(D);for(;K!==null;)Ft=K,CV(K),K=K.sibling;Ft=D,Ly=Te,a1=Ge}qV(O)}else D.subtreeFlags&8772&&K!==null?(K.return=D,Ft=K):qV(O)}}function qV(O){for(;Ft!==null;){var w=Ft;if(w.flags&8772){var q=w.alternate;try{if(w.flags&8772)switch(w.tag){case 0:case 11:case 15:a1||Py(5,w);break;case 1:var W=w.stateNode;if(w.flags&4&&!a1)if(q===null)W.componentDidMount();else{var D=w.elementType===w.type?q.memoizedProps:Yi(w.type,q.memoizedProps);W.componentDidUpdate(D,q.memoizedState,W.__reactInternalSnapshotBeforeUpdate)}var K=w.updateQueue;K!==null&&R$(w,K,W);break;case 3:var le=w.updateQueue;if(le!==null){if(q=null,w.child!==null)switch(w.child.tag){case 5:q=w.child.stateNode;break;case 1:q=w.child.stateNode}R$(w,le,q)}break;case 5:var Te=w.stateNode;if(q===null&&w.flags&4){q=Te;var Le=w.memoizedProps;switch(w.type){case"button":case"input":case"select":case"textarea":Le.autoFocus&&q.focus();break;case"img":Le.src&&(q.src=Le.src)}}break;case 6:break;case 4:break;case 12:break;case 13:if(w.memoizedState===null){var Ge=w.alternate;if(Ge!==null){var at=Ge.memoizedState;if(at!==null){var ut=at.dehydrated;ut!==null&&Xm(ut)}}}break;case 19:case 17:case 21:case 22:case 23:case 25:break;default:throw Error(n(163))}a1||w.flags&512&&$6(w)}catch(st){Lr(w,w.return,st)}}if(w===O){Ft=null;break}if(q=w.sibling,q!==null){q.return=w.return,Ft=q;break}Ft=w.return}}function RV(O){for(;Ft!==null;){var w=Ft;if(w===O){Ft=null;break}var q=w.sibling;if(q!==null){q.return=w.return,Ft=q;break}Ft=w.return}}function TV(O){for(;Ft!==null;){var w=Ft;try{switch(w.tag){case 0:case 11:case 15:var q=w.return;try{Py(4,w)}catch(Le){Lr(w,q,Le)}break;case 1:var W=w.stateNode;if(typeof W.componentDidMount=="function"){var D=w.return;try{W.componentDidMount()}catch(Le){Lr(w,D,Le)}}var K=w.return;try{$6(w)}catch(Le){Lr(w,K,Le)}break;case 5:var le=w.return;try{$6(w)}catch(Le){Lr(w,le,Le)}}}catch(Le){Lr(w,w.return,Le)}if(w===O){Ft=null;break}var Te=w.sibling;if(Te!==null){Te.return=w.return,Ft=Te;break}Ft=w.return}}var B_e=Math.ceil,jy=M.ReactCurrentDispatcher,U6=M.ReactCurrentOwner,si=M.ReactCurrentBatchConfig,co=0,A0=null,t0=null,F0=0,qs=0,Pb=gu(0),d0=0,mg=null,_p=0,Iy=0,X6=0,gg=null,Q1=null,G6=0,jb=1/0,Kc=null,Dy=!1,K6=null,vu=null,Fy=!1,xu=null,$y=0,Mg=0,Y6=null,Vy=-1,Hy=0;function W1(){return co&6?Ar():Vy!==-1?Vy:Vy=Ar()}function wu(O){return O.mode&1?co&2&&F0!==0?F0&-F0:z_e.transition!==null?(Hy===0&&(Hy=wF()),Hy):(O=Eo,O!==0||(O=window.event,O=O===void 0?16:WF(O.type)),O):1}function Ji(O,w,q,W){if(50<Mg)throw Mg=0,Y6=null,Error(n(185));Fm(O,q,W),(!(co&2)||O!==A0)&&(O===A0&&(!(co&2)&&(Iy|=q),d0===4&&_u(O,F0)),J1(O,W),q===1&&co===0&&!(w.mode&1)&&(jb=Ar()+500,zy&&zu()))}function J1(O,w){var q=O.callbackNode;ey(O,w);var W=Dm(O,O===A0?F0:0);if(W===0)q!==null&&ZO(q),O.callbackNode=null,O.callbackPriority=0;else if(w=W&-W,O.callbackPriority!==w){if(q!=null&&ZO(q),w===1)O.tag===0?M_e(WV.bind(null,O)):z$(WV.bind(null,O)),b_e(function(){!(co&6)&&zu()}),q=null;else{switch(_F(W)){case 1:q=Ta;break;case 4:q=JO;break;case 16:q=Mb;break;case 536870912:q=vr;break;default:q=Mb}q=FV(q,EV.bind(null,O))}O.callbackPriority=w,O.callbackNode=q}}function EV(O,w){if(Vy=-1,Hy=0,co&6)throw Error(n(327));var q=O.callbackNode;if(Ib()&&O.callbackNode!==q)return null;var W=Dm(O,O===A0?F0:0);if(W===0)return null;if(W&30||W&O.expiredLanes||w)w=Uy(O,W);else{w=W;var D=co;co|=2;var K=BV();(A0!==O||F0!==w)&&(Kc=null,jb=Ar()+500,Sp(O,w));do try{j_e();break}catch(Te){NV(O,Te)}while(!0);b6(),jy.current=K,co=D,t0!==null?w=0:(A0=null,F0=0,w=d0)}if(w!==0){if(w===2&&(D=qk(O),D!==0&&(W=D,w=Z6(O,D))),w===1)throw q=mg,Sp(O,0),_u(O,W),J1(O,Ar()),q;if(w===6)_u(O,W);else{if(D=O.current.alternate,!(W&30)&&!L_e(D)&&(w=Uy(O,W),w===2&&(K=qk(O),K!==0&&(W=K,w=Z6(O,K))),w===1))throw q=mg,Sp(O,0),_u(O,W),J1(O,Ar()),q;switch(O.finishedWork=D,O.finishedLanes=W,w){case 0:case 1:throw Error(n(345));case 2:Cp(O,Q1,Kc);break;case 3:if(_u(O,W),(W&130023424)===W&&(w=G6+500-Ar(),10<w)){if(Dm(O,0)!==0)break;if(D=O.suspendedLanes,(D&W)!==W){W1(),O.pingedLanes|=O.suspendedLanes&D;break}O.timeoutHandle=o6(Cp.bind(null,O,Q1,Kc),w);break}Cp(O,Q1,Kc);break;case 4:if(_u(O,W),(W&4194240)===W)break;for(w=O.eventTimes,D=-1;0<W;){var le=31-I0(W);K=1<<le,le=w[le],le>D&&(D=le),W&=~K}if(W=D,W=Ar()-W,W=(120>W?120:480>W?480:1080>W?1080:1920>W?1920:3e3>W?3e3:4320>W?4320:1960*B_e(W/1960))-W,10<W){O.timeoutHandle=o6(Cp.bind(null,O,Q1,Kc),W);break}Cp(O,Q1,Kc);break;case 5:Cp(O,Q1,Kc);break;default:throw Error(n(329))}}}return J1(O,Ar()),O.callbackNode===q?EV.bind(null,O):null}function Z6(O,w){var q=gg;return O.current.memoizedState.isDehydrated&&(Sp(O,w).flags|=256),O=Uy(O,w),O!==2&&(w=Q1,Q1=q,w!==null&&Q6(w)),O}function Q6(O){Q1===null?Q1=O:Q1.push.apply(Q1,O)}function L_e(O){for(var w=O;;){if(w.flags&16384){var q=w.updateQueue;if(q!==null&&(q=q.stores,q!==null))for(var W=0;W<q.length;W++){var D=q[W],K=D.getSnapshot;D=D.value;try{if(!Gi(K(),D))return!1}catch{return!1}}}if(q=w.child,w.subtreeFlags&16384&&q!==null)q.return=w,w=q;else{if(w===O)break;for(;w.sibling===null;){if(w.return===null||w.return===O)return!0;w=w.return}w.sibling.return=w.return,w=w.sibling}}return!0}function _u(O,w){for(w&=~X6,w&=~Iy,O.suspendedLanes|=w,O.pingedLanes&=~w,O=O.expirationTimes;0<w;){var q=31-I0(w),W=1<<q;O[q]=-1,w&=~W}}function WV(O){if(co&6)throw Error(n(327));Ib();var w=Dm(O,0);if(!(w&1))return J1(O,Ar()),null;var q=Uy(O,w);if(O.tag!==0&&q===2){var W=qk(O);W!==0&&(w=W,q=Z6(O,W))}if(q===1)throw q=mg,Sp(O,0),_u(O,w),J1(O,Ar()),q;if(q===6)throw Error(n(345));return O.finishedWork=O.current.alternate,O.finishedLanes=w,Cp(O,Q1,Kc),J1(O,Ar()),null}function J6(O,w){var q=co;co|=1;try{return O(w)}finally{co=q,co===0&&(jb=Ar()+500,zy&&zu())}}function kp(O){xu!==null&&xu.tag===0&&!(co&6)&&Ib();var w=co;co|=1;var q=si.transition,W=Eo;try{if(si.transition=null,Eo=1,O)return O()}finally{Eo=W,si.transition=q,co=w,!(co&6)&&zu()}}function eS(){qs=Pb.current,ir(Pb)}function Sp(O,w){O.finishedWork=null,O.finishedLanes=0;var q=O.timeoutHandle;if(q!==-1&&(O.timeoutHandle=-1,f_e(q)),t0!==null)for(q=t0.return;q!==null;){var W=q;switch(l6(W),W.tag){case 1:W=W.type.childContextTypes,W!=null&&gy();break;case 3:Nb(),ir(K1),ir(r1),A6();break;case 5:O6(W);break;case 4:Nb();break;case 13:ir(xr);break;case 19:ir(xr);break;case 10:h6(W.type._context);break;case 22:case 23:eS()}q=q.return}if(A0=O,t0=O=ku(O.current,null),F0=qs=w,d0=0,mg=null,X6=Iy=_p=0,Q1=gg=null,vp!==null){for(w=0;w<vp.length;w++)if(q=vp[w],W=q.interleaved,W!==null){q.interleaved=null;var D=W.next,K=q.pending;if(K!==null){var le=K.next;K.next=D,W.next=le}q.pending=W}vp=null}return O}function NV(O,w){do{var q=t0;try{if(b6(),Cy.current=Ey,qy){for(var W=wr.memoizedState;W!==null;){var D=W.queue;D!==null&&(D.pending=null),W=W.next}qy=!1}if(wp=0,y0=u0=wr=null,ug=!1,dg=0,U6.current=null,q===null||q.return===null){d0=1,mg=w,t0=null;break}e:{var K=O,le=q.return,Te=q,Le=w;if(w=F0,Te.flags|=32768,Le!==null&&typeof Le=="object"&&typeof Le.then=="function"){var Ge=Le,at=Te,ut=at.tag;if(!(at.mode&1)&&(ut===0||ut===11||ut===15)){var st=at.alternate;st?(at.updateQueue=st.updateQueue,at.memoizedState=st.memoizedState,at.lanes=st.lanes):(at.updateQueue=null,at.memoizedState=null)}var Wt=iV(le);if(Wt!==null){Wt.flags&=-257,aV(Wt,le,Te,K,w),Wt.mode&1&&sV(K,Ge,w),w=Wt,Le=Ge;var $t=w.updateQueue;if($t===null){var Ut=new Set;Ut.add(Le),w.updateQueue=Ut}else $t.add(Le);break e}else{if(!(w&1)){sV(K,Ge,w),tS();break e}Le=Error(n(426))}}else if(fr&&Te.mode&1){var Vr=iV(le);if(Vr!==null){!(Vr.flags&65536)&&(Vr.flags|=256),aV(Vr,le,Te,K,w),p6(Bb(Le,Te));break e}}K=Le=Bb(Le,Te),d0!==4&&(d0=2),gg===null?gg=[K]:gg.push(K),K=le;do{switch(K.tag){case 3:K.flags|=65536,w&=-w,K.lanes|=w;var Fe=oV(K,Le,w);q$(K,Fe);break e;case 1:Te=Le;var De=K.type,Ve=K.stateNode;if(!(K.flags&128)&&(typeof De.getDerivedStateFromError=="function"||Ve!==null&&typeof Ve.componentDidCatch=="function"&&(vu===null||!vu.has(Ve)))){K.flags|=65536,w&=-w,K.lanes|=w;var ft=rV(K,Te,w);q$(K,ft);break e}}K=K.return}while(K!==null)}PV(q)}catch(Kt){w=Kt,t0===q&&q!==null&&(t0=q=q.return);continue}break}while(!0)}function BV(){var O=jy.current;return jy.current=Ey,O===null?Ey:O}function tS(){(d0===0||d0===3||d0===2)&&(d0=4),A0===null||!(_p&268435455)&&!(Iy&268435455)||_u(A0,F0)}function Uy(O,w){var q=co;co|=2;var W=BV();(A0!==O||F0!==w)&&(Kc=null,Sp(O,w));do try{P_e();break}catch(D){NV(O,D)}while(!0);if(b6(),co=q,jy.current=W,t0!==null)throw Error(n(261));return A0=null,F0=0,d0}function P_e(){for(;t0!==null;)LV(t0)}function j_e(){for(;t0!==null&&!QO();)LV(t0)}function LV(O){var w=DV(O.alternate,O,qs);O.memoizedProps=O.pendingProps,w===null?PV(O):t0=w,U6.current=null}function PV(O){var w=O;do{var q=w.alternate;if(O=w.return,w.flags&32768){if(q=T_e(q,w),q!==null){q.flags&=32767,t0=q;return}if(O!==null)O.flags|=32768,O.subtreeFlags=0,O.deletions=null;else{d0=6,t0=null;return}}else if(q=R_e(q,w,qs),q!==null){t0=q;return}if(w=w.sibling,w!==null){t0=w;return}t0=w=O}while(w!==null);d0===0&&(d0=5)}function Cp(O,w,q){var W=Eo,D=si.transition;try{si.transition=null,Eo=1,I_e(O,w,q,W)}finally{si.transition=D,Eo=W}return null}function I_e(O,w,q,W){do Ib();while(xu!==null);if(co&6)throw Error(n(327));q=O.finishedWork;var D=O.finishedLanes;if(q===null)return null;if(O.finishedWork=null,O.finishedLanes=0,q===O.current)throw Error(n(177));O.callbackNode=null,O.callbackPriority=0;var K=q.lanes|q.childLanes;if(Owe(O,K),O===A0&&(t0=A0=null,F0=0),!(q.subtreeFlags&2064)&&!(q.flags&2064)||Fy||(Fy=!0,FV(Mb,function(){return Ib(),null})),K=(q.flags&15990)!==0,q.subtreeFlags&15990||K){K=si.transition,si.transition=null;var le=Eo;Eo=1;var Te=co;co|=4,U6.current=null,W_e(O,q),SV(q,O),i_e(t6),oy=!!e6,t6=e6=null,O.current=q,N_e(q),kk(),co=Te,Eo=le,si.transition=K}else O.current=q;if(Fy&&(Fy=!1,xu=O,$y=D),K=O.pendingLanes,K===0&&(vu=null),ei(q.stateNode),J1(O,Ar()),w!==null)for(W=O.onRecoverableError,q=0;q<w.length;q++)D=w[q],W(D.value,{componentStack:D.stack,digest:D.digest});if(Dy)throw Dy=!1,O=K6,K6=null,O;return $y&1&&O.tag!==0&&Ib(),K=O.pendingLanes,K&1?O===Y6?Mg++:(Mg=0,Y6=O):Mg=0,zu(),null}function Ib(){if(xu!==null){var O=_F($y),w=si.transition,q=Eo;try{if(si.transition=null,Eo=16>O?16:O,xu===null)var W=!1;else{if(O=xu,xu=null,$y=0,co&6)throw Error(n(331));var D=co;for(co|=4,Ft=O.current;Ft!==null;){var K=Ft,le=K.child;if(Ft.flags&16){var Te=K.deletions;if(Te!==null){for(var Le=0;Le<Te.length;Le++){var Ge=Te[Le];for(Ft=Ge;Ft!==null;){var at=Ft;switch(at.tag){case 0:case 11:case 15:hg(8,at,K)}var ut=at.child;if(ut!==null)ut.return=at,Ft=ut;else for(;Ft!==null;){at=Ft;var st=at.sibling,Wt=at.return;if(vV(at),at===Ge){Ft=null;break}if(st!==null){st.return=Wt,Ft=st;break}Ft=Wt}}}var $t=K.alternate;if($t!==null){var Ut=$t.child;if(Ut!==null){$t.child=null;do{var Vr=Ut.sibling;Ut.sibling=null,Ut=Vr}while(Ut!==null)}}Ft=K}}if(K.subtreeFlags&2064&&le!==null)le.return=K,Ft=le;else e:for(;Ft!==null;){if(K=Ft,K.flags&2048)switch(K.tag){case 0:case 11:case 15:hg(9,K,K.return)}var Fe=K.sibling;if(Fe!==null){Fe.return=K.return,Ft=Fe;break e}Ft=K.return}}var De=O.current;for(Ft=De;Ft!==null;){le=Ft;var Ve=le.child;if(le.subtreeFlags&2064&&Ve!==null)Ve.return=le,Ft=Ve;else e:for(le=De;Ft!==null;){if(Te=Ft,Te.flags&2048)try{switch(Te.tag){case 0:case 11:case 15:Py(9,Te)}}catch(Kt){Lr(Te,Te.return,Kt)}if(Te===le){Ft=null;break e}var ft=Te.sibling;if(ft!==null){ft.return=Te.return,Ft=ft;break e}Ft=Te.return}}if(co=D,zu(),$o&&typeof $o.onPostCommitFiberRoot=="function")try{$o.onPostCommitFiberRoot(T1,O)}catch{}W=!0}return W}finally{Eo=q,si.transition=w}}return!1}function jV(O,w,q){w=Bb(q,w),w=oV(O,w,1),O=yu(O,w,1),w=W1(),O!==null&&(Fm(O,1,w),J1(O,w))}function Lr(O,w,q){if(O.tag===3)jV(O,O,q);else for(;w!==null;){if(w.tag===3){jV(w,O,q);break}else if(w.tag===1){var W=w.stateNode;if(typeof w.type.getDerivedStateFromError=="function"||typeof W.componentDidCatch=="function"&&(vu===null||!vu.has(W))){O=Bb(q,O),O=rV(w,O,1),w=yu(w,O,1),O=W1(),w!==null&&(Fm(w,1,O),J1(w,O));break}}w=w.return}}function D_e(O,w,q){var W=O.pingCache;W!==null&&W.delete(w),w=W1(),O.pingedLanes|=O.suspendedLanes&q,A0===O&&(F0&q)===q&&(d0===4||d0===3&&(F0&130023424)===F0&&500>Ar()-G6?Sp(O,0):X6|=q),J1(O,w)}function IV(O,w){w===0&&(O.mode&1?(w=Dc,Dc<<=1,!(Dc&130023424)&&(Dc=4194304)):w=1);var q=W1();O=Uc(O,w),O!==null&&(Fm(O,w,q),J1(O,q))}function F_e(O){var w=O.memoizedState,q=0;w!==null&&(q=w.retryLane),IV(O,q)}function $_e(O,w){var q=0;switch(O.tag){case 13:var W=O.stateNode,D=O.memoizedState;D!==null&&(q=D.retryLane);break;case 19:W=O.stateNode;break;default:throw Error(n(314))}W!==null&&W.delete(w),IV(O,q)}var DV;DV=function(O,w,q){if(O!==null)if(O.memoizedProps!==w.pendingProps||K1.current)Z1=!0;else{if(!(O.lanes&q)&&!(w.flags&128))return Z1=!1,q_e(O,w,q);Z1=!!(O.flags&131072)}else Z1=!1,fr&&w.flags&1048576&&O$(w,yy,w.index);switch(w.lanes=0,w.tag){case 2:var W=w.type;By(O,w),O=w.pendingProps;var D=Sb(w,r1.current);Wb(w,q),D=w6(null,w,W,O,D,q);var K=_6();return w.flags|=1,typeof D=="object"&&D!==null&&typeof D.render=="function"&&D.$$typeof===void 0?(w.tag=1,w.memoizedState=null,w.updateQueue=null,Y1(W)?(K=!0,My(w)):K=!1,w.memoizedState=D.state!==null&&D.state!==void 0?D.state:null,M6(w),D.updater=Wy,w.stateNode=D,D._reactInternals=w,T6(w,W,O,q),w=B6(null,w,W,!0,K,q)):(w.tag=0,fr&&K&&c6(w),E1(null,w,D,q),w=w.child),w;case 16:W=w.elementType;e:{switch(By(O,w),O=w.pendingProps,D=W._init,W=D(W._payload),w.type=W,D=w.tag=H_e(W),O=Yi(W,O),D){case 0:w=N6(null,w,W,O,q);break e;case 1:w=fV(null,w,W,O,q);break e;case 11:w=cV(null,w,W,O,q);break e;case 14:w=lV(null,w,W,Yi(W.type,O),q);break e}throw Error(n(306,W,""))}return w;case 0:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Yi(W,D),N6(O,w,W,D,q);case 1:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Yi(W,D),fV(O,w,W,D,q);case 3:e:{if(bV(w),O===null)throw Error(n(387));W=w.pendingProps,K=w.memoizedState,D=K.element,C$(O,w),ky(w,W,null,q);var le=w.memoizedState;if(W=le.element,K.isDehydrated)if(K={element:W,isDehydrated:!1,cache:le.cache,pendingSuspenseBoundaries:le.pendingSuspenseBoundaries,transitions:le.transitions},w.updateQueue.baseState=K,w.memoizedState=K,w.flags&256){D=Bb(Error(n(423)),w),w=hV(O,w,W,q,D);break e}else if(W!==D){D=Bb(Error(n(424)),w),w=hV(O,w,W,q,D);break e}else for(Cs=mu(w.stateNode.containerInfo.firstChild),Ss=w,fr=!0,Ki=null,q=k$(w,null,W,q),w.child=q;q;)q.flags=q.flags&-3|4096,q=q.sibling;else{if(Rb(),W===D){w=Gc(O,w,q);break e}E1(O,w,W,q)}w=w.child}return w;case 5:return T$(w),O===null&&d6(w),W=w.type,D=w.pendingProps,K=O!==null?O.memoizedProps:null,le=D.children,n6(W,D)?le=null:K!==null&&n6(W,K)&&(w.flags|=32),pV(O,w),E1(O,w,le,q),w.child;case 6:return O===null&&d6(w),null;case 13:return mV(O,w,q);case 4:return z6(w,w.stateNode.containerInfo),W=w.pendingProps,O===null?w.child=Tb(w,null,W,q):E1(O,w,W,q),w.child;case 11:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Yi(W,D),cV(O,w,W,D,q);case 7:return E1(O,w,w.pendingProps,q),w.child;case 8:return E1(O,w,w.pendingProps.children,q),w.child;case 12:return E1(O,w,w.pendingProps.children,q),w.child;case 10:e:{if(W=w.type._context,D=w.pendingProps,K=w.memoizedProps,le=D.value,er(xy,W._currentValue),W._currentValue=le,K!==null)if(Gi(K.value,le)){if(K.children===D.children&&!K1.current){w=Gc(O,w,q);break e}}else for(K=w.child,K!==null&&(K.return=w);K!==null;){var Te=K.dependencies;if(Te!==null){le=K.child;for(var Le=Te.firstContext;Le!==null;){if(Le.context===W){if(K.tag===1){Le=Xc(-1,q&-q),Le.tag=2;var Ge=K.updateQueue;if(Ge!==null){Ge=Ge.shared;var at=Ge.pending;at===null?Le.next=Le:(Le.next=at.next,at.next=Le),Ge.pending=Le}}K.lanes|=q,Le=K.alternate,Le!==null&&(Le.lanes|=q),m6(K.return,q,w),Te.lanes|=q;break}Le=Le.next}}else if(K.tag===10)le=K.type===w.type?null:K.child;else if(K.tag===18){if(le=K.return,le===null)throw Error(n(341));le.lanes|=q,Te=le.alternate,Te!==null&&(Te.lanes|=q),m6(le,q,w),le=K.sibling}else le=K.child;if(le!==null)le.return=K;else for(le=K;le!==null;){if(le===w){le=null;break}if(K=le.sibling,K!==null){K.return=le.return,le=K;break}le=le.return}K=le}E1(O,w,D.children,q),w=w.child}return w;case 9:return D=w.type,W=w.pendingProps.children,Wb(w,q),D=oi(D),W=W(D),w.flags|=1,E1(O,w,W,q),w.child;case 14:return W=w.type,D=Yi(W,w.pendingProps),D=Yi(W.type,D),lV(O,w,W,D,q);case 15:return uV(O,w,w.type,w.pendingProps,q);case 17:return W=w.type,D=w.pendingProps,D=w.elementType===W?D:Yi(W,D),By(O,w),w.tag=1,Y1(W)?(O=!0,My(w)):O=!1,Wb(w,q),tV(w,W,D),T6(w,W,D,q),B6(null,w,W,!0,O,q);case 19:return MV(O,w,q);case 22:return dV(O,w,q)}throw Error(n(156,w.tag))};function FV(O,w){return hp(O,w)}function V_e(O,w,q,W){this.tag=O,this.key=q,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=w,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=W,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function ii(O,w,q,W){return new V_e(O,w,q,W)}function nS(O){return O=O.prototype,!(!O||!O.isReactComponent)}function H_e(O){if(typeof O=="function")return nS(O)?1:0;if(O!=null){if(O=O.$$typeof,O===B)return 11;if(O===I)return 14}return 2}function ku(O,w){var q=O.alternate;return q===null?(q=ii(O.tag,w,O.key,O.mode),q.elementType=O.elementType,q.type=O.type,q.stateNode=O.stateNode,q.alternate=O,O.alternate=q):(q.pendingProps=w,q.type=O.type,q.flags=0,q.subtreeFlags=0,q.deletions=null),q.flags=O.flags&14680064,q.childLanes=O.childLanes,q.lanes=O.lanes,q.child=O.child,q.memoizedProps=O.memoizedProps,q.memoizedState=O.memoizedState,q.updateQueue=O.updateQueue,w=O.dependencies,q.dependencies=w===null?null:{lanes:w.lanes,firstContext:w.firstContext},q.sibling=O.sibling,q.index=O.index,q.ref=O.ref,q}function Xy(O,w,q,W,D,K){var le=2;if(W=O,typeof O=="function")nS(O)&&(le=1);else if(typeof O=="string")le=5;else e:switch(O){case S:return qp(q.children,D,K,w);case C:le=8,D|=8;break;case R:return O=ii(12,q,w,D|2),O.elementType=R,O.lanes=K,O;case N:return O=ii(13,q,w,D),O.elementType=N,O.lanes=K,O;case j:return O=ii(19,q,w,D),O.elementType=j,O.lanes=K,O;case $:return Gy(q,D,K,w);default:if(typeof O=="object"&&O!==null)switch(O.$$typeof){case T:le=10;break e;case E:le=9;break e;case B:le=11;break e;case I:le=14;break e;case P:le=16,W=null;break e}throw Error(n(130,O==null?O:typeof O,""))}return w=ii(le,q,w,D),w.elementType=O,w.type=W,w.lanes=K,w}function qp(O,w,q,W){return O=ii(7,O,W,w),O.lanes=q,O}function Gy(O,w,q,W){return O=ii(22,O,W,w),O.elementType=$,O.lanes=q,O.stateNode={isHidden:!1},O}function oS(O,w,q){return O=ii(6,O,null,w),O.lanes=q,O}function rS(O,w,q){return w=ii(4,O.children!==null?O.children:[],O.key,w),w.lanes=q,w.stateNode={containerInfo:O.containerInfo,pendingChildren:null,implementation:O.implementation},w}function U_e(O,w,q,W,D){this.tag=w,this.containerInfo=O,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Rk(0),this.expirationTimes=Rk(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Rk(0),this.identifierPrefix=W,this.onRecoverableError=D,this.mutableSourceEagerHydrationData=null}function sS(O,w,q,W,D,K,le,Te,Le){return O=new U_e(O,w,q,Te,Le),w===1?(w=1,K===!0&&(w|=8)):w=0,K=ii(3,null,null,w),O.current=K,K.stateNode=O,K.memoizedState={element:W,isDehydrated:q,cache:null,transitions:null,pendingSuspenseBoundaries:null},M6(K),O}function X_e(O,w,q){var W=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:k,key:W==null?null:""+W,children:O,containerInfo:w,implementation:q}}function $V(O){if(!O)return Mu;O=O._reactInternals;e:{if(ao(O)!==O||O.tag!==1)throw Error(n(170));var w=O;do{switch(w.tag){case 3:w=w.stateNode.context;break e;case 1:if(Y1(w.type)){w=w.stateNode.__reactInternalMemoizedMergedChildContext;break e}}w=w.return}while(w!==null);throw Error(n(171))}if(O.tag===1){var q=O.type;if(Y1(q))return g$(O,q,w)}return w}function VV(O,w,q,W,D,K,le,Te,Le){return O=sS(q,W,!0,O,D,K,le,Te,Le),O.context=$V(null),q=O.current,W=W1(),D=wu(q),K=Xc(W,D),K.callback=w??null,yu(q,K,D),O.current.lanes=D,Fm(O,D,W),J1(O,W),O}function Ky(O,w,q,W){var D=w.current,K=W1(),le=wu(D);return q=$V(q),w.context===null?w.context=q:w.pendingContext=q,w=Xc(K,le),w.payload={element:O},W=W===void 0?null:W,W!==null&&(w.callback=W),O=yu(D,w,le),O!==null&&(Ji(O,D,le,K),_y(O,D,le)),le}function Yy(O){if(O=O.current,!O.child)return null;switch(O.child.tag){case 5:return O.child.stateNode;default:return O.child.stateNode}}function HV(O,w){if(O=O.memoizedState,O!==null&&O.dehydrated!==null){var q=O.retryLane;O.retryLane=q!==0&&q<w?q:w}}function iS(O,w){HV(O,w),(O=O.alternate)&&HV(O,w)}function G_e(){return null}var UV=typeof reportError=="function"?reportError:function(O){console.error(O)};function aS(O){this._internalRoot=O}Zy.prototype.render=aS.prototype.render=function(O){var w=this._internalRoot;if(w===null)throw Error(n(409));Ky(O,w,null,null)},Zy.prototype.unmount=aS.prototype.unmount=function(){var O=this._internalRoot;if(O!==null){this._internalRoot=null;var w=O.containerInfo;kp(function(){Ky(null,O,null,null)}),w[Fc]=null}};function Zy(O){this._internalRoot=O}Zy.prototype.unstable_scheduleHydration=function(O){if(O){var w=CF();O={blockedOn:null,target:O,priority:w};for(var q=0;q<fu.length&&w!==0&&w<fu[q].priority;q++);fu.splice(q,0,O),q===0&&TF(O)}};function cS(O){return!(!O||O.nodeType!==1&&O.nodeType!==9&&O.nodeType!==11)}function Qy(O){return!(!O||O.nodeType!==1&&O.nodeType!==9&&O.nodeType!==11&&(O.nodeType!==8||O.nodeValue!==" react-mount-point-unstable "))}function XV(){}function K_e(O,w,q,W,D){if(D){if(typeof W=="function"){var K=W;W=function(){var Ge=Yy(le);K.call(Ge)}}var le=VV(w,W,O,0,null,!1,!1,"",XV);return O._reactRootContainer=le,O[Fc]=le.current,ng(O.nodeType===8?O.parentNode:O),kp(),le}for(;D=O.lastChild;)O.removeChild(D);if(typeof W=="function"){var Te=W;W=function(){var Ge=Yy(Le);Te.call(Ge)}}var Le=sS(O,0,!1,null,null,!1,!1,"",XV);return O._reactRootContainer=Le,O[Fc]=Le.current,ng(O.nodeType===8?O.parentNode:O),kp(function(){Ky(w,Le,q,W)}),Le}function Jy(O,w,q,W,D){var K=q._reactRootContainer;if(K){var le=K;if(typeof D=="function"){var Te=D;D=function(){var Le=Yy(le);Te.call(Le)}}Ky(w,le,O,D)}else le=K_e(q,w,O,D,W);return Yy(le)}kF=function(O){switch(O.tag){case 3:var w=O.stateNode;if(w.current.memoizedState.isDehydrated){var q=Ea(w.pendingLanes);q!==0&&(Tk(w,q|1),J1(w,Ar()),!(co&6)&&(jb=Ar()+500,zu()))}break;case 13:kp(function(){var W=Uc(O,1);if(W!==null){var D=W1();Ji(W,O,1,D)}}),iS(O,1)}},Ek=function(O){if(O.tag===13){var w=Uc(O,134217728);if(w!==null){var q=W1();Ji(w,O,134217728,q)}iS(O,134217728)}},SF=function(O){if(O.tag===13){var w=wu(O),q=Uc(O,w);if(q!==null){var W=W1();Ji(q,O,w,W)}iS(O,w)}},CF=function(){return Eo},qF=function(O,w){var q=Eo;try{return Eo=O,w()}finally{Eo=q}},Ue=function(O,w,q){switch(w){case"input":if(ke(O,q),w=q.name,q.type==="radio"&&w!=null){for(q=O;q.parentNode;)q=q.parentNode;for(q=q.querySelectorAll("input[name="+JSON.stringify(""+w)+'][type="radio"]'),w=0;w<q.length;w++){var W=q[w];if(W!==O&&W.form===O.form){var D=my(W);if(!D)throw Error(n(90));je(W),ke(W,D)}}}break;case"textarea":qe(O,q);break;case"select":w=q.value,w!=null&&U(O,!!q.multiple,w,!1)}},Jo=J6,To=kp;var Y_e={usingClientEntryPoint:!1,Events:[sg,_b,my,Mo,rr,J6]},zg={findFiberByHostInstance:zp,bundleType:0,version:"18.3.1",rendererPackageName:"react-dom"},Z_e={bundleType:zg.bundleType,version:zg.version,rendererPackageName:zg.rendererPackageName,rendererConfig:zg.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:M.ReactCurrentDispatcher,findHostInstanceByFiber:function(O){return O=Xi(O),O===null?null:O.stateNode},findFiberByHostInstance:zg.findFiberByHostInstance||G_e,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.3.1-next-f1338f8080-20240426"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var eA=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!eA.isDisabled&&eA.supportsFiber)try{T1=eA.inject(Z_e),$o=eA}catch{}}return es.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Y_e,es.createPortal=function(O,w){var q=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!cS(w))throw Error(n(200));return X_e(O,w,null,q)},es.createRoot=function(O,w){if(!cS(O))throw Error(n(299));var q=!1,W="",D=UV;return w!=null&&(w.unstable_strictMode===!0&&(q=!0),w.identifierPrefix!==void 0&&(W=w.identifierPrefix),w.onRecoverableError!==void 0&&(D=w.onRecoverableError)),w=sS(O,1,!1,null,null,q,!1,W,D),O[Fc]=w.current,ng(O.nodeType===8?O.parentNode:O),new aS(w)},es.findDOMNode=function(O){if(O==null)return null;if(O.nodeType===1)return O;var w=O._reactInternals;if(w===void 0)throw typeof O.render=="function"?Error(n(188)):(O=Object.keys(O).join(","),Error(n(268,O)));return O=Xi(w),O=O===null?null:O.stateNode,O},es.flushSync=function(O){return kp(O)},es.hydrate=function(O,w,q){if(!Qy(w))throw Error(n(200));return Jy(null,O,w,!0,q)},es.hydrateRoot=function(O,w,q){if(!cS(O))throw Error(n(405));var W=q!=null&&q.hydratedSources||null,D=!1,K="",le=UV;if(q!=null&&(q.unstable_strictMode===!0&&(D=!0),q.identifierPrefix!==void 0&&(K=q.identifierPrefix),q.onRecoverableError!==void 0&&(le=q.onRecoverableError)),w=VV(w,null,O,1,q??null,D,!1,K,le),O[Fc]=w.current,ng(O),W)for(O=0;O<W.length;O++)q=W[O],D=q._getVersion,D=D(q._source),w.mutableSourceEagerHydrationData==null?w.mutableSourceEagerHydrationData=[q,D]:w.mutableSourceEagerHydrationData.push(q,D);return new Zy(w)},es.render=function(O,w,q){if(!Qy(w))throw Error(n(200));return Jy(null,O,w,!1,q)},es.unmountComponentAtNode=function(O){if(!Qy(O))throw Error(n(40));return O._reactRootContainer?(kp(function(){Jy(null,null,O,!1,function(){O._reactRootContainer=null,O[Fc]=null})}),!0):!1},es.unstable_batchedUpdates=J6,es.unstable_renderSubtreeIntoContainer=function(O,w,q,W){if(!Qy(q))throw Error(n(200));if(O==null||O._reactInternals===void 0)throw Error(n(38));return Jy(O,w,q,!1,W)},es.version="18.3.1-next-f1338f8080-20240426",es}var nH;function Wre(){if(nH)return fS.exports;nH=1;function e(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}return e(),fS.exports=uke(),fS.exports}var hs=Wre(),tA={},oH;function dke(){if(oH)return tA;oH=1;var e=Wre();return tA.createRoot=e.createRoot,tA.hydrateRoot=e.hydrateRoot,tA}var Nre=dke();const pke=e=>typeof e=="number"?!1:typeof e?.valueOf()=="string"||Array.isArray(e)?!e.length:!e,f0={OS:"web",select:e=>"web"in e?e.web:e.default,isWeb:!0};/*! * is-plain-object <https://github.com/jonschlinkert/is-plain-object> * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. - */function rH(e){return Object.prototype.toString.call(e)==="[object Object]"}function a3(e){var t,n;return rH(e)===!1?!1:(t=e.constructor,t===void 0?!0:(n=t.prototype,!(rH(n)===!1||n.hasOwnProperty("isPrototypeOf")===!1)))}var mE=function(e,t){return mE=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(n[r]=o[r])},mE(e,t)};function bke(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");mE(e,t);function n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}var Pr=function(){return Pr=Object.assign||function(t){for(var n,o=1,r=arguments.length;o<r;o++){n=arguments[o];for(var s in n)Object.prototype.hasOwnProperty.call(n,s)&&(t[s]=n[s])}return t},Pr.apply(this,arguments)};function hke(e){return e.toLowerCase()}var mke=[/([a-z0-9])([A-Z])/g,/([A-Z])([A-Z][a-z])/g],gke=/[^A-Z0-9]+/gi;function A5(e,t){t===void 0&&(t={});for(var n=t.splitRegexp,o=n===void 0?mke:n,r=t.stripRegexp,s=r===void 0?gke:r,i=t.transform,c=i===void 0?hke:i,l=t.delimiter,u=l===void 0?" ":l,d=sH(sH(e,o,"$1\0$2"),s,"\0"),p=0,f=d.length;d.charAt(p)==="\0";)p++;for(;d.charAt(f-1)==="\0";)f--;return d.slice(p,f).split("\0").map(c).join(u)}function sH(e,t,n){return t instanceof RegExp?e.replace(t,n):t.reduce(function(o,r){return o.replace(r,n)},e)}function Bre(e,t){var n=e.charAt(0),o=e.substr(1).toLowerCase();return t>0&&n>="0"&&n<="9"?"_"+n+o:""+n.toUpperCase()+o}function S4(e,t){return t===void 0&&(t={}),A5(e,Pr({delimiter:"",transform:Bre},t))}function Mke(e,t){return t===0?e.toLowerCase():Bre(e,t)}function RN(e,t){return t===void 0&&(t={}),S4(e,Pr({transform:Mke},t))}function zke(e){return e.charAt(0).toUpperCase()+e.substr(1)}function Oke(e){return zke(e.toLowerCase())}function Lre(e,t){return t===void 0&&(t={}),A5(e,Pr({delimiter:" ",transform:Oke},t))}function yke(e,t){return t===void 0&&(t={}),A5(e,Pr({delimiter:"."},t))}function Ti(e,t){return t===void 0&&(t={}),yke(e,Pr({delimiter:"-"},t))}function Ake(e){return e.replace(/>/g,">")}const vke=/[\u007F-\u009F "'>/="\uFDD0-\uFDEF]/;function Pre(e){return e.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi,"&")}function xke(e){return e.replace(/"/g,""")}function jre(e){return e.replace(/</g,"<")}function v5(e){return Ake(xke(Pre(e)))}function gE(e){return jre(Pre(e))}function wke(e){return jre(e.replace(/&/g,"&"))}function Ire(e){return!vke.test(e)}function i0({children:e,...t}){let n="";return x.Children.toArray(e).forEach(o=>{typeof o=="string"&&o.trim()!==""&&(n+=o)}),x.createElement("div",{dangerouslySetInnerHTML:{__html:n},...t})}const{Provider:_ke,Consumer:kke}=x.createContext(void 0),Ske=x.forwardRef(()=>null),Cke=new Set(["string","boolean","number"]),qke=new Set(["area","base","br","col","command","embed","hr","img","input","keygen","link","meta","param","source","track","wbr"]),Rke=new Set(["allowfullscreen","allowpaymentrequest","allowusermedia","async","autofocus","autoplay","checked","controls","default","defer","disabled","download","formnovalidate","hidden","ismap","itemscope","loop","multiple","muted","nomodule","novalidate","open","playsinline","readonly","required","reversed","selected","typemustmatch"]),Tke=new Set(["autocapitalize","autocomplete","charset","contenteditable","crossorigin","decoding","dir","draggable","enctype","formenctype","formmethod","http-equiv","inputmode","kind","method","preload","scope","shape","spellcheck","translate","type","wrap"]),Eke=new Set(["animation","animationIterationCount","baselineShift","borderImageOutset","borderImageSlice","borderImageWidth","columnCount","cx","cy","fillOpacity","flexGrow","flexShrink","floodOpacity","fontWeight","gridColumnEnd","gridColumnStart","gridRowEnd","gridRowStart","lineHeight","opacity","order","orphans","r","rx","ry","shapeImageThreshold","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","tabSize","widows","x","y","zIndex","zoom"]);function Dre(e,t){return t.some(n=>e.indexOf(n)===0)}function Wke(e){return e==="key"||e==="children"}function Nke(e,t){switch(e){case"style":return Dke(t)}return t}const iH=["accentHeight","alignmentBaseline","arabicForm","baselineShift","capHeight","clipPath","clipRule","colorInterpolation","colorInterpolationFilters","colorProfile","colorRendering","dominantBaseline","enableBackground","fillOpacity","fillRule","floodColor","floodOpacity","fontFamily","fontSize","fontSizeAdjust","fontStretch","fontStyle","fontVariant","fontWeight","glyphName","glyphOrientationHorizontal","glyphOrientationVertical","horizAdvX","horizOriginX","imageRendering","letterSpacing","lightingColor","markerEnd","markerMid","markerStart","overlinePosition","overlineThickness","paintOrder","panose1","pointerEvents","renderingIntent","shapeRendering","stopColor","stopOpacity","strikethroughPosition","strikethroughThickness","strokeDasharray","strokeDashoffset","strokeLinecap","strokeLinejoin","strokeMiterlimit","strokeOpacity","strokeWidth","textAnchor","textDecoration","textRendering","underlinePosition","underlineThickness","unicodeBidi","unicodeRange","unitsPerEm","vAlphabetic","vHanging","vIdeographic","vMathematical","vectorEffect","vertAdvY","vertOriginX","vertOriginY","wordSpacing","writingMode","xmlnsXlink","xHeight"].reduce((e,t)=>(e[t.toLowerCase()]=t,e),{}),aH=["allowReorder","attributeName","attributeType","autoReverse","baseFrequency","baseProfile","calcMode","clipPathUnits","contentScriptType","contentStyleType","diffuseConstant","edgeMode","externalResourcesRequired","filterRes","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","suppressContentEditableWarning","suppressHydrationWarning","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector"].reduce((e,t)=>(e[t.toLowerCase()]=t,e),{}),cH=["xlink:actuate","xlink:arcrole","xlink:href","xlink:role","xlink:show","xlink:title","xlink:type","xml:base","xml:lang","xml:space","xmlns:xlink"].reduce((e,t)=>(e[t.replace(":","").toLowerCase()]=t,e),{});function Bke(e){switch(e){case"htmlFor":return"for";case"className":return"class"}const t=e.toLowerCase();return aH[t]?aH[t]:iH[t]?Ti(iH[t]):cH[t]?cH[t]:t}function Lke(e){return e.startsWith("--")?e:Dre(e,["ms","O","Moz","Webkit"])?"-"+Ti(e):Ti(e)}function Pke(e,t){return typeof t=="number"&&t!==0&&!Eke.has(e)?t+"px":t}function M1(e,t,n={}){if(e==null||e===!1)return"";if(Array.isArray(e))return hM(e,t,n);switch(typeof e){case"string":return gE(e);case"number":return e.toString()}const{type:o,props:r}=e;switch(o){case x.StrictMode:case x.Fragment:return hM(r.children,t,n);case i0:const{children:s,...i}=r;return lH(Object.keys(i).length?"div":null,{...i,dangerouslySetInnerHTML:{__html:s}},t,n)}switch(typeof o){case"string":return lH(o,r,t,n);case"function":return o.prototype&&typeof o.prototype.render=="function"?jke(o,r,t,n):M1(o(r,n),t,n)}switch(o&&o.$$typeof){case _ke.$$typeof:return hM(r.children,r.value,n);case kke.$$typeof:return M1(r.children(t||o._currentValue),t,n);case Ske.$$typeof:return M1(o.render(r),t,n)}return""}function lH(e,t,n,o={}){let r="";if(e==="textarea"&&t.hasOwnProperty("value")){r=hM(t.value,n,o);const{value:i,...c}=t;t=c}else t.dangerouslySetInnerHTML&&typeof t.dangerouslySetInnerHTML.__html=="string"?r=t.dangerouslySetInnerHTML.__html:typeof t.children<"u"&&(r=hM(t.children,n,o));if(!e)return r;const s=Ike(t);return qke.has(e)?"<"+e+s+"/>":"<"+e+s+">"+r+"</"+e+">"}function jke(e,t,n,o={}){const r=new e(t,o);return typeof r.getChildContext=="function"&&Object.assign(o,r.getChildContext()),M1(r.render(),n,o)}function hM(e,t,n={}){let o="";e=Array.isArray(e)?e:[e];for(let r=0;r<e.length;r++){const s=e[r];o+=M1(s,t,n)}return o}function Ike(e){let t="";for(const n in e){const o=Bke(n);if(!Ire(o))continue;let r=Nke(n,e[n]);if(!Cke.has(typeof r)||Wke(n))continue;const s=Rke.has(o);if(s&&r===!1)continue;const i=s||Dre(n,["data-","aria-"])||Tke.has(o);typeof r=="boolean"&&!i||(t+=" "+o,!s&&(typeof r=="string"&&(r=v5(r)),t+='="'+r+'"'))}return t}function Dke(e){if(!a3(e))return e;let t;for(const n in e){const o=e[n];if(o==null)continue;t?t+=";":t="";const r=Lke(n),s=Pke(n,o);t+=r+":"+s}return t}function Hs(e,t){var n=0,o,r;t=t||{};function s(){var i=o,c=arguments.length,l,u;e:for(;i;){if(i.args.length!==arguments.length){i=i.next;continue}for(u=0;u<c;u++)if(i.args[u]!==arguments[u]){i=i.next;continue e}return i!==o&&(i===r&&(r=i.prev),i.prev.next=i.next,i.next&&(i.next.prev=i.prev),i.next=o,i.prev=null,o.prev=i,o=i),i.val}for(l=new Array(c),u=0;u<c;u++)l[u]=arguments[u];return i={args:l,val:e.apply(null,l)},o?(o.prev=i,i.next=o):r=i,n===t.maxSize?(r=r.prev,r.next=null):n++,o=i,i.val}return s.clear=function(){o=null,r=null,n=0},s}var gS={},uH;function Fke(){return uH||(uH=1,function(e){(function(){var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function n(c){return r(i(c),arguments)}function o(c,l){return n.apply(null,[c].concat(l||[]))}function r(c,l){var u=1,d=c.length,p,f="",b,h,g,z,A,_,v,M;for(b=0;b<d;b++)if(typeof c[b]=="string")f+=c[b];else if(typeof c[b]=="object"){if(g=c[b],g.keys)for(p=l[u],h=0;h<g.keys.length;h++){if(p==null)throw new Error(n('[sprintf] Cannot access property "%s" of undefined value "%s"',g.keys[h],g.keys[h-1]));p=p[g.keys[h]]}else g.param_no?p=l[g.param_no]:p=l[u++];if(t.not_type.test(g.type)&&t.not_primitive.test(g.type)&&p instanceof Function&&(p=p()),t.numeric_arg.test(g.type)&&typeof p!="number"&&isNaN(p))throw new TypeError(n("[sprintf] expecting number but found %T",p));switch(t.number.test(g.type)&&(v=p>=0),g.type){case"b":p=parseInt(p,10).toString(2);break;case"c":p=String.fromCharCode(parseInt(p,10));break;case"d":case"i":p=parseInt(p,10);break;case"j":p=JSON.stringify(p,null,g.width?parseInt(g.width):0);break;case"e":p=g.precision?parseFloat(p).toExponential(g.precision):parseFloat(p).toExponential();break;case"f":p=g.precision?parseFloat(p).toFixed(g.precision):parseFloat(p);break;case"g":p=g.precision?String(Number(p.toPrecision(g.precision))):parseFloat(p);break;case"o":p=(parseInt(p,10)>>>0).toString(8);break;case"s":p=String(p),p=g.precision?p.substring(0,g.precision):p;break;case"t":p=String(!!p),p=g.precision?p.substring(0,g.precision):p;break;case"T":p=Object.prototype.toString.call(p).slice(8,-1).toLowerCase(),p=g.precision?p.substring(0,g.precision):p;break;case"u":p=parseInt(p,10)>>>0;break;case"v":p=p.valueOf(),p=g.precision?p.substring(0,g.precision):p;break;case"x":p=(parseInt(p,10)>>>0).toString(16);break;case"X":p=(parseInt(p,10)>>>0).toString(16).toUpperCase();break}t.json.test(g.type)?f+=p:(t.number.test(g.type)&&(!v||g.sign)?(M=v?"+":"-",p=p.toString().replace(t.sign,"")):M="",A=g.pad_char?g.pad_char==="0"?"0":g.pad_char.charAt(1):" ",_=g.width-(M+p).length,z=g.width&&_>0?A.repeat(_):"",f+=g.align?M+p+z:A==="0"?M+z+p:z+M+p)}return f}var s=Object.create(null);function i(c){if(s[c])return s[c];for(var l=c,u,d=[],p=0;l;){if((u=t.text.exec(l))!==null)d.push(u[0]);else if((u=t.modulo.exec(l))!==null)d.push("%");else if((u=t.placeholder.exec(l))!==null){if(u[2]){p|=1;var f=[],b=u[2],h=[];if((h=t.key.exec(b))!==null)for(f.push(h[1]);(b=b.substring(h[0].length))!=="";)if((h=t.key_access.exec(b))!==null)f.push(h[1]);else if((h=t.index_access.exec(b))!==null)f.push(h[1]);else throw new SyntaxError("[sprintf] failed to parse named argument key");else throw new SyntaxError("[sprintf] failed to parse named argument key");u[2]=f}else p|=2;if(p===3)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");d.push({placeholder:u[0],param_no:u[1],keys:u[2],sign:u[3],pad_char:u[4],align:u[5],width:u[6],precision:u[7],type:u[8]})}else throw new SyntaxError("[sprintf] unexpected placeholder");l=l.substring(u[0].length)}return s[c]=d}e.sprintf=n,e.vsprintf=o,typeof window<"u"&&(window.sprintf=n,window.vsprintf=o)})()}(gS)),gS}var $ke=Fke();const Vke=Zr($ke),Hke=Hs(console.error);function xe(e,...t){try{return Vke.sprintf(e,...t)}catch(n){return n instanceof Error&&Hke(`sprintf error: + */function rH(e){return Object.prototype.toString.call(e)==="[object Object]"}function a3(e){var t,n;return rH(e)===!1?!1:(t=e.constructor,t===void 0?!0:(n=t.prototype,!(rH(n)===!1||n.hasOwnProperty("isPrototypeOf")===!1)))}var hE=function(e,t){return hE=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,o){n.__proto__=o}||function(n,o){for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(n[r]=o[r])},hE(e,t)};function fke(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");hE(e,t);function n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}var Pr=function(){return Pr=Object.assign||function(t){for(var n,o=1,r=arguments.length;o<r;o++){n=arguments[o];for(var s in n)Object.prototype.hasOwnProperty.call(n,s)&&(t[s]=n[s])}return t},Pr.apply(this,arguments)};function bke(e){return e.toLowerCase()}var hke=[/([a-z0-9])([A-Z])/g,/([A-Z])([A-Z][a-z])/g],mke=/[^A-Z0-9]+/gi;function y5(e,t){t===void 0&&(t={});for(var n=t.splitRegexp,o=n===void 0?hke:n,r=t.stripRegexp,s=r===void 0?mke:r,i=t.transform,c=i===void 0?bke:i,l=t.delimiter,u=l===void 0?" ":l,d=sH(sH(e,o,"$1\0$2"),s,"\0"),p=0,f=d.length;d.charAt(p)==="\0";)p++;for(;d.charAt(f-1)==="\0";)f--;return d.slice(p,f).split("\0").map(c).join(u)}function sH(e,t,n){return t instanceof RegExp?e.replace(t,n):t.reduce(function(o,r){return o.replace(r,n)},e)}function Bre(e,t){var n=e.charAt(0),o=e.substr(1).toLowerCase();return t>0&&n>="0"&&n<="9"?"_"+n+o:""+n.toUpperCase()+o}function k4(e,t){return t===void 0&&(t={}),y5(e,Pr({delimiter:"",transform:Bre},t))}function gke(e,t){return t===0?e.toLowerCase():Bre(e,t)}function qN(e,t){return t===void 0&&(t={}),k4(e,Pr({transform:gke},t))}function Mke(e){return e.charAt(0).toUpperCase()+e.substr(1)}function zke(e){return Mke(e.toLowerCase())}function Lre(e,t){return t===void 0&&(t={}),y5(e,Pr({delimiter:" ",transform:zke},t))}function Oke(e,t){return t===void 0&&(t={}),y5(e,Pr({delimiter:"."},t))}function Ti(e,t){return t===void 0&&(t={}),Oke(e,Pr({delimiter:"-"},t))}function yke(e){return e.replace(/>/g,">")}const Ake=/[\u007F-\u009F "'>/="\uFDD0-\uFDEF]/;function Pre(e){return e.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi,"&")}function vke(e){return e.replace(/"/g,""")}function jre(e){return e.replace(/</g,"<")}function A5(e){return yke(vke(Pre(e)))}function mE(e){return jre(Pre(e))}function xke(e){return jre(e.replace(/&/g,"&"))}function Ire(e){return!Ake.test(e)}function i0({children:e,...t}){let n="";return x.Children.toArray(e).forEach(o=>{typeof o=="string"&&o.trim()!==""&&(n+=o)}),x.createElement("div",{dangerouslySetInnerHTML:{__html:n},...t})}const{Provider:wke,Consumer:_ke}=x.createContext(void 0),kke=x.forwardRef(()=>null),Ske=new Set(["string","boolean","number"]),Cke=new Set(["area","base","br","col","command","embed","hr","img","input","keygen","link","meta","param","source","track","wbr"]),qke=new Set(["allowfullscreen","allowpaymentrequest","allowusermedia","async","autofocus","autoplay","checked","controls","default","defer","disabled","download","formnovalidate","hidden","ismap","itemscope","loop","multiple","muted","nomodule","novalidate","open","playsinline","readonly","required","reversed","selected","typemustmatch"]),Rke=new Set(["autocapitalize","autocomplete","charset","contenteditable","crossorigin","decoding","dir","draggable","enctype","formenctype","formmethod","http-equiv","inputmode","kind","method","preload","scope","shape","spellcheck","translate","type","wrap"]),Tke=new Set(["animation","animationIterationCount","baselineShift","borderImageOutset","borderImageSlice","borderImageWidth","columnCount","cx","cy","fillOpacity","flexGrow","flexShrink","floodOpacity","fontWeight","gridColumnEnd","gridColumnStart","gridRowEnd","gridRowStart","lineHeight","opacity","order","orphans","r","rx","ry","shapeImageThreshold","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","tabSize","widows","x","y","zIndex","zoom"]);function Dre(e,t){return t.some(n=>e.indexOf(n)===0)}function Eke(e){return e==="key"||e==="children"}function Wke(e,t){switch(e){case"style":return Ike(t)}return t}const iH=["accentHeight","alignmentBaseline","arabicForm","baselineShift","capHeight","clipPath","clipRule","colorInterpolation","colorInterpolationFilters","colorProfile","colorRendering","dominantBaseline","enableBackground","fillOpacity","fillRule","floodColor","floodOpacity","fontFamily","fontSize","fontSizeAdjust","fontStretch","fontStyle","fontVariant","fontWeight","glyphName","glyphOrientationHorizontal","glyphOrientationVertical","horizAdvX","horizOriginX","imageRendering","letterSpacing","lightingColor","markerEnd","markerMid","markerStart","overlinePosition","overlineThickness","paintOrder","panose1","pointerEvents","renderingIntent","shapeRendering","stopColor","stopOpacity","strikethroughPosition","strikethroughThickness","strokeDasharray","strokeDashoffset","strokeLinecap","strokeLinejoin","strokeMiterlimit","strokeOpacity","strokeWidth","textAnchor","textDecoration","textRendering","underlinePosition","underlineThickness","unicodeBidi","unicodeRange","unitsPerEm","vAlphabetic","vHanging","vIdeographic","vMathematical","vectorEffect","vertAdvY","vertOriginX","vertOriginY","wordSpacing","writingMode","xmlnsXlink","xHeight"].reduce((e,t)=>(e[t.toLowerCase()]=t,e),{}),aH=["allowReorder","attributeName","attributeType","autoReverse","baseFrequency","baseProfile","calcMode","clipPathUnits","contentScriptType","contentStyleType","diffuseConstant","edgeMode","externalResourcesRequired","filterRes","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","suppressContentEditableWarning","suppressHydrationWarning","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector"].reduce((e,t)=>(e[t.toLowerCase()]=t,e),{}),cH=["xlink:actuate","xlink:arcrole","xlink:href","xlink:role","xlink:show","xlink:title","xlink:type","xml:base","xml:lang","xml:space","xmlns:xlink"].reduce((e,t)=>(e[t.replace(":","").toLowerCase()]=t,e),{});function Nke(e){switch(e){case"htmlFor":return"for";case"className":return"class"}const t=e.toLowerCase();return aH[t]?aH[t]:iH[t]?Ti(iH[t]):cH[t]?cH[t]:t}function Bke(e){return e.startsWith("--")?e:Dre(e,["ms","O","Moz","Webkit"])?"-"+Ti(e):Ti(e)}function Lke(e,t){return typeof t=="number"&&t!==0&&!Tke.has(e)?t+"px":t}function M1(e,t,n={}){if(e==null||e===!1)return"";if(Array.isArray(e))return hM(e,t,n);switch(typeof e){case"string":return mE(e);case"number":return e.toString()}const{type:o,props:r}=e;switch(o){case x.StrictMode:case x.Fragment:return hM(r.children,t,n);case i0:const{children:s,...i}=r;return lH(Object.keys(i).length?"div":null,{...i,dangerouslySetInnerHTML:{__html:s}},t,n)}switch(typeof o){case"string":return lH(o,r,t,n);case"function":return o.prototype&&typeof o.prototype.render=="function"?Pke(o,r,t,n):M1(o(r,n),t,n)}switch(o&&o.$$typeof){case wke.$$typeof:return hM(r.children,r.value,n);case _ke.$$typeof:return M1(r.children(t||o._currentValue),t,n);case kke.$$typeof:return M1(o.render(r),t,n)}return""}function lH(e,t,n,o={}){let r="";if(e==="textarea"&&t.hasOwnProperty("value")){r=hM(t.value,n,o);const{value:i,...c}=t;t=c}else t.dangerouslySetInnerHTML&&typeof t.dangerouslySetInnerHTML.__html=="string"?r=t.dangerouslySetInnerHTML.__html:typeof t.children<"u"&&(r=hM(t.children,n,o));if(!e)return r;const s=jke(t);return Cke.has(e)?"<"+e+s+"/>":"<"+e+s+">"+r+"</"+e+">"}function Pke(e,t,n,o={}){const r=new e(t,o);return typeof r.getChildContext=="function"&&Object.assign(o,r.getChildContext()),M1(r.render(),n,o)}function hM(e,t,n={}){let o="";e=Array.isArray(e)?e:[e];for(let r=0;r<e.length;r++){const s=e[r];o+=M1(s,t,n)}return o}function jke(e){let t="";for(const n in e){const o=Nke(n);if(!Ire(o))continue;let r=Wke(n,e[n]);if(!Ske.has(typeof r)||Eke(n))continue;const s=qke.has(o);if(s&&r===!1)continue;const i=s||Dre(n,["data-","aria-"])||Rke.has(o);typeof r=="boolean"&&!i||(t+=" "+o,!s&&(typeof r=="string"&&(r=A5(r)),t+='="'+r+'"'))}return t}function Ike(e){if(!a3(e))return e;let t;for(const n in e){const o=e[n];if(o==null)continue;t?t+=";":t="";const r=Bke(n),s=Lke(n,o);t+=r+":"+s}return t}function Hs(e,t){var n=0,o,r;t=t||{};function s(){var i=o,c=arguments.length,l,u;e:for(;i;){if(i.args.length!==arguments.length){i=i.next;continue}for(u=0;u<c;u++)if(i.args[u]!==arguments[u]){i=i.next;continue e}return i!==o&&(i===r&&(r=i.prev),i.prev.next=i.next,i.next&&(i.next.prev=i.prev),i.next=o,i.prev=null,o.prev=i,o=i),i.val}for(l=new Array(c),u=0;u<c;u++)l[u]=arguments[u];return i={args:l,val:e.apply(null,l)},o?(o.prev=i,i.next=o):r=i,n===t.maxSize?(r=r.prev,r.next=null):n++,o=i,i.val}return s.clear=function(){o=null,r=null,n=0},s}var mS={},uH;function Dke(){return uH||(uH=1,function(e){(function(){var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function n(c){return r(i(c),arguments)}function o(c,l){return n.apply(null,[c].concat(l||[]))}function r(c,l){var u=1,d=c.length,p,f="",b,h,g,z,A,_,v,M;for(b=0;b<d;b++)if(typeof c[b]=="string")f+=c[b];else if(typeof c[b]=="object"){if(g=c[b],g.keys)for(p=l[u],h=0;h<g.keys.length;h++){if(p==null)throw new Error(n('[sprintf] Cannot access property "%s" of undefined value "%s"',g.keys[h],g.keys[h-1]));p=p[g.keys[h]]}else g.param_no?p=l[g.param_no]:p=l[u++];if(t.not_type.test(g.type)&&t.not_primitive.test(g.type)&&p instanceof Function&&(p=p()),t.numeric_arg.test(g.type)&&typeof p!="number"&&isNaN(p))throw new TypeError(n("[sprintf] expecting number but found %T",p));switch(t.number.test(g.type)&&(v=p>=0),g.type){case"b":p=parseInt(p,10).toString(2);break;case"c":p=String.fromCharCode(parseInt(p,10));break;case"d":case"i":p=parseInt(p,10);break;case"j":p=JSON.stringify(p,null,g.width?parseInt(g.width):0);break;case"e":p=g.precision?parseFloat(p).toExponential(g.precision):parseFloat(p).toExponential();break;case"f":p=g.precision?parseFloat(p).toFixed(g.precision):parseFloat(p);break;case"g":p=g.precision?String(Number(p.toPrecision(g.precision))):parseFloat(p);break;case"o":p=(parseInt(p,10)>>>0).toString(8);break;case"s":p=String(p),p=g.precision?p.substring(0,g.precision):p;break;case"t":p=String(!!p),p=g.precision?p.substring(0,g.precision):p;break;case"T":p=Object.prototype.toString.call(p).slice(8,-1).toLowerCase(),p=g.precision?p.substring(0,g.precision):p;break;case"u":p=parseInt(p,10)>>>0;break;case"v":p=p.valueOf(),p=g.precision?p.substring(0,g.precision):p;break;case"x":p=(parseInt(p,10)>>>0).toString(16);break;case"X":p=(parseInt(p,10)>>>0).toString(16).toUpperCase();break}t.json.test(g.type)?f+=p:(t.number.test(g.type)&&(!v||g.sign)?(M=v?"+":"-",p=p.toString().replace(t.sign,"")):M="",A=g.pad_char?g.pad_char==="0"?"0":g.pad_char.charAt(1):" ",_=g.width-(M+p).length,z=g.width&&_>0?A.repeat(_):"",f+=g.align?M+p+z:A==="0"?M+z+p:z+M+p)}return f}var s=Object.create(null);function i(c){if(s[c])return s[c];for(var l=c,u,d=[],p=0;l;){if((u=t.text.exec(l))!==null)d.push(u[0]);else if((u=t.modulo.exec(l))!==null)d.push("%");else if((u=t.placeholder.exec(l))!==null){if(u[2]){p|=1;var f=[],b=u[2],h=[];if((h=t.key.exec(b))!==null)for(f.push(h[1]);(b=b.substring(h[0].length))!=="";)if((h=t.key_access.exec(b))!==null)f.push(h[1]);else if((h=t.index_access.exec(b))!==null)f.push(h[1]);else throw new SyntaxError("[sprintf] failed to parse named argument key");else throw new SyntaxError("[sprintf] failed to parse named argument key");u[2]=f}else p|=2;if(p===3)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");d.push({placeholder:u[0],param_no:u[1],keys:u[2],sign:u[3],pad_char:u[4],align:u[5],width:u[6],precision:u[7],type:u[8]})}else throw new SyntaxError("[sprintf] unexpected placeholder");l=l.substring(u[0].length)}return s[c]=d}e.sprintf=n,e.vsprintf=o,typeof window<"u"&&(window.sprintf=n,window.vsprintf=o)})()}(mS)),mS}var Fke=Dke();const $ke=Zr(Fke),Vke=Hs(console.error);function xe(e,...t){try{return $ke.sprintf(e,...t)}catch(n){return n instanceof Error&&Vke(`sprintf error: -`+n.toString()),e}}var ME,Fre,Kg,$re;ME={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1};Fre=["(","?"];Kg={")":["("],":":["?","?:"]};$re=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;function Uke(e){for(var t=[],n=[],o,r,s,i;o=e.match($re);){for(r=o[0],s=e.substr(0,o.index).trim(),s&&t.push(s);i=n.pop();){if(Kg[r]){if(Kg[r][0]===i){r=Kg[r][1]||r;break}}else if(Fre.indexOf(i)>=0||ME[i]<ME[r]){n.push(i);break}t.push(i)}Kg[r]||n.push(r),e=e.substr(o.index+r.length)}return e=e.trim(),e&&t.push(e),t.concat(n.reverse())}var Xke={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function Gke(e,t){var n=[],o,r,s,i,c,l;for(o=0;o<e.length;o++){if(c=e[o],i=Xke[c],i){for(r=i.length,s=Array(r);r--;)s[r]=n.pop();try{l=i.apply(null,s)}catch(u){return u}}else t.hasOwnProperty(c)?l=t[c]:l=+c;n.push(l)}return n[0]}function Kke(e){var t=Uke(e);return function(n){return Gke(t,n)}}function Yke(e){var t=Kke(e);return function(n){return+t({n})}}var dH={contextDelimiter:"",onMissingKey:null};function Zke(e){var t,n,o;for(t=e.split(";"),n=0;n<t.length;n++)if(o=t[n].trim(),o.indexOf("plural=")===0)return o.substr(7)}function TN(e,t){var n;this.data=e,this.pluralForms={},this.options={};for(n in dH)this.options[n]=t!==void 0&&n in t?t[n]:dH[n]}TN.prototype.getPluralForm=function(e,t){var n=this.pluralForms[e],o,r,s;return n||(o=this.data[e][""],s=o["Plural-Forms"]||o["plural-forms"]||o.plural_forms,typeof s!="function"&&(r=Zke(o["Plural-Forms"]||o["plural-forms"]||o.plural_forms),s=Yke(r)),n=this.pluralForms[e]=s),n(t)};TN.prototype.dcnpgettext=function(e,t,n,o,r){var s,i,c;return r===void 0?s=0:s=this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),c=this.data[e][i],c&&c[s]?c[s]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),s===0?n:o)};const pH={"":{plural_forms(e){return e===1?0:1}}},Qke=/^i18n\.(n?gettext|has_translation)(_|$)/,Jke=(e,t,n)=>{const o=new TN({}),r=new Set,s=()=>{r.forEach(M=>M())},i=M=>(r.add(M),()=>r.delete(M)),c=(M="default")=>o.data[M],l=(M,y="default")=>{o.data[y]={...o.data[y],...M},o.data[y][""]={...pH[""],...o.data[y]?.[""]},delete o.pluralForms[y]},u=(M,y)=>{l(M,y),s()},d=(M,y="default")=>{o.data[y]={...o.data[y],...M,"":{...pH[""],...o.data[y]?.[""],...M?.[""]}},delete o.pluralForms[y],s()},p=(M,y)=>{o.data={},o.pluralForms={},u(M,y)},f=(M="default",y,k,S,C)=>(o.data[M]||l(void 0,M),o.dcnpgettext(M,y,k,S,C)),b=(M="default")=>M,h=(M,y)=>{let k=f(y,void 0,M);return n?(k=n.applyFilters("i18n.gettext",k,M,y),n.applyFilters("i18n.gettext_"+b(y),k,M,y)):k},g=(M,y,k)=>{let S=f(k,y,M);return n?(S=n.applyFilters("i18n.gettext_with_context",S,M,y,k),n.applyFilters("i18n.gettext_with_context_"+b(k),S,M,y,k)):S},z=(M,y,k,S)=>{let C=f(S,void 0,M,y,k);return n?(C=n.applyFilters("i18n.ngettext",C,M,y,k,S),n.applyFilters("i18n.ngettext_"+b(S),C,M,y,k,S)):C},A=(M,y,k,S,C)=>{let R=f(C,S,M,y,k);return n?(R=n.applyFilters("i18n.ngettext_with_context",R,M,y,k,S,C),n.applyFilters("i18n.ngettext_with_context_"+b(C),R,M,y,k,S,C)):R},_=()=>g("ltr","text direction")==="rtl",v=(M,y,k)=>{const S=y?y+""+M:M;let C=!!o.data?.[k??"default"]?.[S];return n&&(C=n.applyFilters("i18n.has_translation",C,M,y,k),C=n.applyFilters("i18n.has_translation_"+b(k),C,M,y,k)),C};if(n){const M=y=>{Qke.test(y)&&s()};n.addAction("hookAdded","core/i18n",M),n.addAction("hookRemoved","core/i18n",M)}return{getLocaleData:c,setLocaleData:u,addLocaleData:d,resetLocaleData:p,subscribe:i,__:h,_x:g,_n:z,_nx:A,isRTL:_,hasTranslation:v}};function Vre(e){return typeof e!="string"||e===""?(console.error("The namespace must be a non-empty string."),!1):/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)?!0:(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}function EN(e){return typeof e!="string"||e===""?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)?!0:(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}function fH(e,t){return function(o,r,s,i=10){const c=e[t];if(!EN(o)||!Vre(r))return;if(typeof s!="function"){console.error("The hook callback must be a function.");return}if(typeof i!="number"){console.error("If specified, the hook priority must be a number.");return}const l={callback:s,priority:i,namespace:r};if(c[o]){const u=c[o].handlers;let d;for(d=u.length;d>0&&!(i>=u[d-1].priority);d--);d===u.length?u[d]=l:u.splice(d,0,l),c.__current.forEach(p=>{p.name===o&&p.currentIndex>=d&&p.currentIndex++})}else c[o]={handlers:[l],runs:0};o!=="hookAdded"&&e.doAction("hookAdded",o,r,s,i)}}function oA(e,t,n=!1){return function(r,s){const i=e[t];if(!EN(r)||!n&&!Vre(s))return;if(!i[r])return 0;let c=0;if(n)c=i[r].handlers.length,i[r]={runs:i[r].runs,handlers:[]};else{const l=i[r].handlers;for(let u=l.length-1;u>=0;u--)l[u].namespace===s&&(l.splice(u,1),c++,i.__current.forEach(d=>{d.name===r&&d.currentIndex>=u&&d.currentIndex--}))}return r!=="hookRemoved"&&e.doAction("hookRemoved",r,s),c}}function bH(e,t){return function(o,r){const s=e[t];return typeof r<"u"?o in s&&s[o].handlers.some(i=>i.namespace===r):o in s}}function rA(e,t,n,o){return function(s,...i){const c=e[t];c[s]||(c[s]={handlers:[],runs:0}),c[s].runs++;const l=c[s].handlers;if(!l||!l.length)return n?i[0]:void 0;const u={name:s,currentIndex:0};async function d(){try{c.__current.add(u);let f=n?i[0]:void 0;for(;u.currentIndex<l.length;)f=await l[u.currentIndex].callback.apply(null,i),n&&(i[0]=f),u.currentIndex++;return n?f:void 0}finally{c.__current.delete(u)}}function p(){try{c.__current.add(u);let f=n?i[0]:void 0;for(;u.currentIndex<l.length;)f=l[u.currentIndex].callback.apply(null,i),n&&(i[0]=f),u.currentIndex++;return n?f:void 0}finally{c.__current.delete(u)}}return(o?d:p)()}}function hH(e,t){return function(){var o;const r=e[t];return(o=Array.from(r.__current).at(-1)?.name)!==null&&o!==void 0?o:null}}function mH(e,t){return function(o){const r=e[t];return typeof o>"u"?r.__current.size>0:Array.from(r.__current).some(s=>s.name===o)}}function gH(e,t){return function(o){const r=e[t];if(EN(o))return r[o]&&r[o].runs?r[o].runs:0}}class e6e{constructor(){this.actions=Object.create(null),this.actions.__current=new Set,this.filters=Object.create(null),this.filters.__current=new Set,this.addAction=fH(this,"actions"),this.addFilter=fH(this,"filters"),this.removeAction=oA(this,"actions"),this.removeFilter=oA(this,"filters"),this.hasAction=bH(this,"actions"),this.hasFilter=bH(this,"filters"),this.removeAllActions=oA(this,"actions",!0),this.removeAllFilters=oA(this,"filters",!0),this.doAction=rA(this,"actions",!1,!1),this.doActionAsync=rA(this,"actions",!1,!0),this.applyFilters=rA(this,"filters",!0,!1),this.applyFiltersAsync=rA(this,"filters",!0,!0),this.currentAction=hH(this,"actions"),this.currentFilter=hH(this,"filters"),this.doingAction=mH(this,"actions"),this.doingFilter=mH(this,"filters"),this.didAction=gH(this,"actions"),this.didFilter=gH(this,"filters")}}function Hre(){return new e6e}const Ure=Hre(),{addAction:C4,addFilter:Bn,removeAction:zE,removeFilter:OE,hasAction:Imn,hasFilter:Xre,removeAllActions:Dmn,removeAllFilters:Fmn,doAction:WN,doActionAsync:t6e,applyFilters:gr,applyFiltersAsync:n6e,currentAction:$mn,currentFilter:Vmn,doingAction:Hmn,doingFilter:Umn,didAction:Xmn,didFilter:Gmn,actions:Kmn,filters:Ymn}=Ure,a0=Jke(void 0,void 0,Ure);a0.getLocaleData.bind(a0);a0.setLocaleData.bind(a0);a0.resetLocaleData.bind(a0);a0.subscribe.bind(a0);const m=a0.__.bind(a0),We=a0._x.bind(a0),Dn=a0._n.bind(a0);a0._nx.bind(a0);const jt=a0.isRTL.bind(a0);a0.hasTranslation.bind(a0);function o6e(e){const t=(n,o)=>{const{headers:r={}}=n;for(const s in r)if(s.toLowerCase()==="x-wp-nonce"&&r[s]===t.nonce)return o(n);return o({...n,headers:{...r,"X-WP-Nonce":t.nonce}})};return t.nonce=e,t}const Gre=(e,t)=>{let n=e.path,o,r;return typeof e.namespace=="string"&&typeof e.endpoint=="string"&&(o=e.namespace.replace(/^\/|\/$/g,""),r=e.endpoint.replace(/^\//,""),r?n=o+"/"+r:n=o),delete e.namespace,delete e.endpoint,t({...e,path:n})},r6e=e=>(t,n)=>Gre(t,o=>{let r=o.url,s=o.path,i;return typeof s=="string"&&(i=e,e.indexOf("?")!==-1&&(s=s.replace("?","&")),s=s.replace(/^\//,""),typeof i=="string"&&i.indexOf("?")!==-1&&(s=s.replace("?","&")),r=i+s),n({...o,url:r})});function Pf(e){try{return new URL(e),!0}catch{return!1}}const s6e=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i;function Kre(e){return s6e.test(e)}const i6e=/^(tel:)?(\+)?\d{6,15}$/;function a6e(e){return e=e.replace(/[-.() ]/g,""),i6e.test(e)}function x5(e){const t=/^([^\s:]+:)/.exec(e);if(t)return t[1]}function NN(e){return e?/^[a-z\-.\+]+[0-9]*:$/i.test(e):!1}function BN(e){const t=/^[^\/\s:]+:(?:\/\/)?\/?([^\/\s#?]+)[\/#?]{0,1}\S*$/.exec(e);if(t)return t[1]}function c6e(e){return e?/^[^\s#?]+$/.test(e):!1}function Aa(e){const t=/^[^\/\s:]+:(?:\/\/)?[^\/\s#?]+[\/]([^\s#?]+)[#?]{0,1}\S*$/.exec(e);if(t)return t[1]}function l6e(e){return e?/^[^\s#?]+$/.test(e):!1}function LN(e){let t;try{t=new URL(e,"http://example.com").search.substring(1)}catch{}if(t)return t}function w5(e){let t="";const n=Object.entries(e);let o;for(;o=n.shift();){let[r,s]=o;if(Array.isArray(s)||s&&s.constructor===Object){const c=Object.entries(s).reverse();for(const[l,u]of c)n.unshift([`${r}[${l}]`,u])}else s!==void 0&&(s===null&&(s=""),t+="&"+[r,s].map(encodeURIComponent).join("="))}return t.substr(1)}function u6e(e){return e?/^[^\s#?\/]+$/.test(e):!1}function d6e(e){const t=Aa(e),n=LN(e);let o="/";return t&&(o+=t),n&&(o+=`?${n}`),o}function p6e(e){const t=/^\S+?(#[^\s\?]*)/.exec(e);if(t)return t[1]}function yE(e){return e?/^#[^\s#?\/]*$/.test(e):!1}function Y2(e){try{return decodeURIComponent(e)}catch{return e}}function f6e(e,t,n){const o=t.length,r=o-1;for(let s=0;s<o;s++){let i=t[s];!i&&Array.isArray(e)&&(i=e.length.toString()),i=["__proto__","constructor","prototype"].includes(i)?i.toUpperCase():i;const c=!isNaN(Number(t[s+1]));e[i]=s===r?n:e[i]||(c?[]:{}),Array.isArray(e[i])&&!c&&(e[i]={...e[i]}),e=e[i]}}function Lh(e){return(LN(e)||"").replace(/\+/g,"%20").split("&").reduce((t,n)=>{const[o,r=""]=n.split("=").filter(Boolean).map(Y2);if(o){const s=o.replace(/\]/g,"").split("[");f6e(t,s,r)}return t},Object.create(null))}function tn(e="",t){if(!t||!Object.keys(t).length)return e;let n=e;const o=e.indexOf("?");return o!==-1&&(t=Object.assign(Lh(e),t),n=n.substr(0,o)),n+"?"+w5(t)}function AE(e,t){return Lh(e)[t]}function MH(e,t){return AE(e,t)!==void 0}function q4(e,...t){const n=e.indexOf("?");if(n===-1)return e;const o=Lh(e),r=e.substr(0,n);t.forEach(i=>delete o[i]);const s=w5(o);return s?r+"?"+s:r}const b6e=/^(?:[a-z]+:|#|\?|\.|\/)/i;function jf(e){return e&&(e=e.trim(),!b6e.test(e)&&!Kre(e)?"http://"+e:e)}function c3(e){try{return decodeURI(e)}catch{return e}}function Ph(e,t=null){if(!e)return"";let n=e.replace(/^[a-z\-.\+]+[0-9]*:(\/\/)?/i,"").replace(/^www\./i,"");n.match(/^[^\/]+\/$/)&&(n=n.replace("/",""));const o=/\/([^\/?]+)\.(?:[\w]+)(?=\?|$)/;if(!t||n.length<=t||!n.match(o))return n;n=n.split("?")[0];const r=n.split("/"),s=r[r.length-1];if(s.length<=t)return"…"+n.slice(-t);const i=s.lastIndexOf("."),[c,l]=[s.slice(0,i),s.slice(i+1)],u=c.slice(-3)+"."+l;return s.slice(0,t-u.length-1)+"…"+u}var yg={exports:{}},zH;function h6e(){if(zH)return yg.exports;zH=1;var e={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",Ấ:"A",Ắ:"A",Ẳ:"A",Ẵ:"A",Ặ:"A",Æ:"AE",Ầ:"A",Ằ:"A",Ȃ:"A",Ả:"A",Ạ:"A",Ẩ:"A",Ẫ:"A",Ậ:"A",Ç:"C",Ḉ:"C",È:"E",É:"E",Ê:"E",Ë:"E",Ế:"E",Ḗ:"E",Ề:"E",Ḕ:"E",Ḝ:"E",Ȇ:"E",Ẻ:"E",Ẽ:"E",Ẹ:"E",Ể:"E",Ễ:"E",Ệ:"E",Ì:"I",Í:"I",Î:"I",Ï:"I",Ḯ:"I",Ȋ:"I",Ỉ:"I",Ị:"I",Ð:"D",Ñ:"N",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",Ố:"O",Ṍ:"O",Ṓ:"O",Ȏ:"O",Ỏ:"O",Ọ:"O",Ổ:"O",Ỗ:"O",Ộ:"O",Ờ:"O",Ở:"O",Ỡ:"O",Ớ:"O",Ợ:"O",Ù:"U",Ú:"U",Û:"U",Ü:"U",Ủ:"U",Ụ:"U",Ử:"U",Ữ:"U",Ự:"U",Ý:"Y",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",ấ:"a",ắ:"a",ẳ:"a",ẵ:"a",ặ:"a",æ:"ae",ầ:"a",ằ:"a",ȃ:"a",ả:"a",ạ:"a",ẩ:"a",ẫ:"a",ậ:"a",ç:"c",ḉ:"c",è:"e",é:"e",ê:"e",ë:"e",ế:"e",ḗ:"e",ề:"e",ḕ:"e",ḝ:"e",ȇ:"e",ẻ:"e",ẽ:"e",ẹ:"e",ể:"e",ễ:"e",ệ:"e",ì:"i",í:"i",î:"i",ï:"i",ḯ:"i",ȋ:"i",ỉ:"i",ị:"i",ð:"d",ñ:"n",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",ố:"o",ṍ:"o",ṓ:"o",ȏ:"o",ỏ:"o",ọ:"o",ổ:"o",ỗ:"o",ộ:"o",ờ:"o",ở:"o",ỡ:"o",ớ:"o",ợ:"o",ù:"u",ú:"u",û:"u",ü:"u",ủ:"u",ụ:"u",ử:"u",ữ:"u",ự:"u",ý:"y",ÿ:"y",Ā:"A",ā:"a",Ă:"A",ă:"a",Ą:"A",ą:"a",Ć:"C",ć:"c",Ĉ:"C",ĉ:"c",Ċ:"C",ċ:"c",Č:"C",č:"c",C̆:"C",c̆:"c",Ď:"D",ď:"d",Đ:"D",đ:"d",Ē:"E",ē:"e",Ĕ:"E",ĕ:"e",Ė:"E",ė:"e",Ę:"E",ę:"e",Ě:"E",ě:"e",Ĝ:"G",Ǵ:"G",ĝ:"g",ǵ:"g",Ğ:"G",ğ:"g",Ġ:"G",ġ:"g",Ģ:"G",ģ:"g",Ĥ:"H",ĥ:"h",Ħ:"H",ħ:"h",Ḫ:"H",ḫ:"h",Ĩ:"I",ĩ:"i",Ī:"I",ī:"i",Ĭ:"I",ĭ:"i",Į:"I",į:"i",İ:"I",ı:"i",IJ:"IJ",ij:"ij",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",Ḱ:"K",ḱ:"k",K̆:"K",k̆:"k",Ĺ:"L",ĺ:"l",Ļ:"L",ļ:"l",Ľ:"L",ľ:"l",Ŀ:"L",ŀ:"l",Ł:"l",ł:"l",Ḿ:"M",ḿ:"m",M̆:"M",m̆:"m",Ń:"N",ń:"n",Ņ:"N",ņ:"n",Ň:"N",ň:"n",ʼn:"n",N̆:"N",n̆:"n",Ō:"O",ō:"o",Ŏ:"O",ŏ:"o",Ő:"O",ő:"o",Œ:"OE",œ:"oe",P̆:"P",p̆:"p",Ŕ:"R",ŕ:"r",Ŗ:"R",ŗ:"r",Ř:"R",ř:"r",R̆:"R",r̆:"r",Ȓ:"R",ȓ:"r",Ś:"S",ś:"s",Ŝ:"S",ŝ:"s",Ş:"S",Ș:"S",ș:"s",ş:"s",Š:"S",š:"s",Ţ:"T",ţ:"t",ț:"t",Ț:"T",Ť:"T",ť:"t",Ŧ:"T",ŧ:"t",T̆:"T",t̆:"t",Ũ:"U",ũ:"u",Ū:"U",ū:"u",Ŭ:"U",ŭ:"u",Ů:"U",ů:"u",Ű:"U",ű:"u",Ų:"U",ų:"u",Ȗ:"U",ȗ:"u",V̆:"V",v̆:"v",Ŵ:"W",ŵ:"w",Ẃ:"W",ẃ:"w",X̆:"X",x̆:"x",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Y̆:"Y",y̆:"y",Ź:"Z",ź:"z",Ż:"Z",ż:"z",Ž:"Z",ž:"z",ſ:"s",ƒ:"f",Ơ:"O",ơ:"o",Ư:"U",ư:"u",Ǎ:"A",ǎ:"a",Ǐ:"I",ǐ:"i",Ǒ:"O",ǒ:"o",Ǔ:"U",ǔ:"u",Ǖ:"U",ǖ:"u",Ǘ:"U",ǘ:"u",Ǚ:"U",ǚ:"u",Ǜ:"U",ǜ:"u",Ứ:"U",ứ:"u",Ṹ:"U",ṹ:"u",Ǻ:"A",ǻ:"a",Ǽ:"AE",ǽ:"ae",Ǿ:"O",ǿ:"o",Þ:"TH",þ:"th",Ṕ:"P",ṕ:"p",Ṥ:"S",ṥ:"s",X́:"X",x́:"x",Ѓ:"Г",ѓ:"г",Ќ:"К",ќ:"к",A̋:"A",a̋:"a",E̋:"E",e̋:"e",I̋:"I",i̋:"i",Ǹ:"N",ǹ:"n",Ồ:"O",ồ:"o",Ṑ:"O",ṑ:"o",Ừ:"U",ừ:"u",Ẁ:"W",ẁ:"w",Ỳ:"Y",ỳ:"y",Ȁ:"A",ȁ:"a",Ȅ:"E",ȅ:"e",Ȉ:"I",ȉ:"i",Ȍ:"O",ȍ:"o",Ȑ:"R",ȑ:"r",Ȕ:"U",ȕ:"u",B̌:"B",b̌:"b",Č̣:"C",č̣:"c",Ê̌:"E",ê̌:"e",F̌:"F",f̌:"f",Ǧ:"G",ǧ:"g",Ȟ:"H",ȟ:"h",J̌:"J",ǰ:"j",Ǩ:"K",ǩ:"k",M̌:"M",m̌:"m",P̌:"P",p̌:"p",Q̌:"Q",q̌:"q",Ř̩:"R",ř̩:"r",Ṧ:"S",ṧ:"s",V̌:"V",v̌:"v",W̌:"W",w̌:"w",X̌:"X",x̌:"x",Y̌:"Y",y̌:"y",A̧:"A",a̧:"a",B̧:"B",b̧:"b",Ḑ:"D",ḑ:"d",Ȩ:"E",ȩ:"e",Ɛ̧:"E",ɛ̧:"e",Ḩ:"H",ḩ:"h",I̧:"I",i̧:"i",Ɨ̧:"I",ɨ̧:"i",M̧:"M",m̧:"m",O̧:"O",o̧:"o",Q̧:"Q",q̧:"q",U̧:"U",u̧:"u",X̧:"X",x̧:"x",Z̧:"Z",z̧:"z",й:"и",Й:"И",ё:"е",Ё:"Е"},t=Object.keys(e).join("|"),n=new RegExp(t,"g"),o=new RegExp(t,"");function r(c){return e[c]}var s=function(c){return c.replace(n,r)},i=function(c){return!!c.match(o)};return yg.exports=s,yg.exports.has=i,yg.exports.remove=s,yg.exports}var m6e=h6e();const ms=Zr(m6e);function _5(e){return e?ms(e).replace(/[\s\./]+/g,"-").replace(/[^\p{L}\p{N}_-]+/gu,"").toLowerCase().replace(/-+/g,"-").replace(/(^-+)|(-+$)/g,""):""}function If(e){let t;if(e){try{t=new URL(e,"http://example.com").pathname.split("/").pop()}catch{}if(t)return t}}function OH(e){const t=e.split("?"),n=t[1],o=t[0];return n?o+"?"+n.split("&").map(r=>r.split("=")).map(r=>r.map(decodeURIComponent)).sort((r,s)=>r[0].localeCompare(s[0])).map(r=>r.map(encodeURIComponent)).map(r=>r.join("=")).join("&"):o}function g6e(e){const t=Object.fromEntries(Object.entries(e).map(([n,o])=>[OH(n),o]));return(n,o)=>{const{parse:r=!0}=n;let s=n.path;if(!s&&n.url){const{rest_route:l,...u}=Lh(n.url);typeof l=="string"&&(s=tn(l,u))}if(typeof s!="string")return o(n);const i=n.method||"GET",c=OH(s);if(i==="GET"&&t[c]){const l=t[c];return delete t[c],yH(l,!!r)}else if(i==="OPTIONS"&&t[i]&&t[i][c]){const l=t[i][c];return delete t[i][c],yH(l,!!r)}return o(n)}}function yH(e,t){return Promise.resolve(t?e.body:new window.Response(JSON.stringify(e.body),{status:200,statusText:"OK",headers:e.headers}))}const M6e=({path:e,url:t,...n},o)=>({...n,url:t&&tn(t,o),path:e&&tn(e,o)}),AH=e=>e.json?e.json():Promise.reject(e),z6e=e=>{if(!e)return{};const t=e.match(/<([^>]+)>; rel="next"/);return t?{next:t[1]}:{}},vH=e=>{const{next:t}=z6e(e.headers.get("link"));return t},O6e=e=>{const t=!!e.path&&e.path.indexOf("per_page=-1")!==-1,n=!!e.url&&e.url.indexOf("per_page=-1")!==-1;return t||n},Yre=async(e,t)=>{if(e.parse===!1||!O6e(e))return t(e);const n=await Tt({...M6e(e,{per_page:100}),parse:!1}),o=await AH(n);if(!Array.isArray(o))return o;let r=vH(n);if(!r)return o;let s=[].concat(o);for(;r;){const i=await Tt({...e,path:void 0,url:r,parse:!1}),c=await AH(i);s=s.concat(c),r=vH(i)}return s},y6e=new Set(["PATCH","PUT","DELETE"]),A6e="GET",v6e=(e,t)=>{const{method:n=A6e}=e;return y6e.has(n.toUpperCase())&&(e={...e,headers:{...e.headers,"X-HTTP-Method-Override":n,"Content-Type":"application/json"},method:"POST"}),t(e)},x6e=(e,t)=>(typeof e.url=="string"&&!MH(e.url,"_locale")&&(e.url=tn(e.url,{_locale:"user"})),typeof e.path=="string"&&!MH(e.path,"_locale")&&(e.path=tn(e.path,{_locale:"user"})),t(e)),w6e=(e,t=!0)=>t?e.status===204?null:e.json?e.json():Promise.reject(e):e,_6e=e=>{const t={code:"invalid_json",message:m("The response is not a valid JSON response.")};if(!e||!e.json)throw t;return e.json().catch(()=>{throw t})},Zre=(e,t=!0)=>Promise.resolve(w6e(e,t)).catch(n=>PN(n,t));function PN(e,t=!0){if(!t)throw e;return _6e(e).then(n=>{const o={code:"unknown_error",message:m("An unknown error occurred.")};throw n||o})}function k6e(e){const t=!!e.method&&e.method==="POST";return(!!e.path&&e.path.indexOf("/wp/v2/media")!==-1||!!e.url&&e.url.indexOf("/wp/v2/media")!==-1)&&t}const S6e=(e,t)=>{if(!k6e(e))return t(e);let n=0;const o=5,r=s=>(n++,t({path:`/wp/v2/media/${s}/post-process`,method:"POST",data:{action:"create-image-subsizes"},parse:!1}).catch(()=>n<o?r(s):(t({path:`/wp/v2/media/${s}?force=true`,method:"DELETE"}),Promise.reject())));return t({...e,parse:!1}).catch(s=>{if(!s.headers)return Promise.reject(s);const i=s.headers.get("x-wp-upload-attachment-id");return s.status>=500&&s.status<600&&i?r(i).catch(()=>e.parse!==!1?Promise.reject({code:"post_process",message:m("Media upload failed. If this is a photo or a large image, please scale it down and try again.")}):Promise.reject(s)):PN(s,e.parse)}).then(s=>Zre(s,e.parse))},C6e=e=>(t,n)=>{if(typeof t.url=="string"){const o=AE(t.url,"wp_theme_preview");o===void 0?t.url=tn(t.url,{wp_theme_preview:e}):o===""&&(t.url=q4(t.url,"wp_theme_preview"))}if(typeof t.path=="string"){const o=AE(t.path,"wp_theme_preview");o===void 0?t.path=tn(t.path,{wp_theme_preview:e}):o===""&&(t.path=q4(t.path,"wp_theme_preview"))}return n(t)},q6e={Accept:"application/json, */*;q=0.1"},R6e={credentials:"include"},Qre=[x6e,Gre,v6e,Yre];function T6e(e){Qre.unshift(e)}const Jre=e=>{if(e.status>=200&&e.status<300)return e;throw e},E6e=e=>{const{url:t,path:n,data:o,parse:r=!0,...s}=e;let{body:i,headers:c}=e;return c={...q6e,...c},o&&(i=JSON.stringify(o),c["Content-Type"]="application/json"),window.fetch(t||n||window.location.href,{...R6e,...s,body:i,headers:c}).then(u=>Promise.resolve(u).then(Jre).catch(d=>PN(d,r)).then(d=>Zre(d,r)),u=>{throw u&&u.name==="AbortError"?u:{code:"fetch_error",message:m("You are probably offline.")}})};let e0e=E6e;function W6e(e){e0e=e}function Tt(e){return Qre.reduceRight((n,o)=>r=>o(r,n),e0e)(e).catch(n=>n.code!=="rest_cookie_invalid_nonce"?Promise.reject(n):window.fetch(Tt.nonceEndpoint).then(Jre).then(o=>o.text()).then(o=>(Tt.nonceMiddleware.nonce=o,Tt(e))))}Tt.use=T6e;Tt.setFetchHandler=W6e;Tt.createNonceMiddleware=o6e;Tt.createPreloadingMiddleware=g6e;Tt.createRootURLMiddleware=r6e;Tt.fetchAllMiddleware=Yre;Tt.mediaUploadMiddleware=S6e;Tt.createThemePreviewMiddleware=C6e;const xH=Object.create(null);function Ke(e,t={}){const{since:n,version:o,alternative:r,plugin:s,link:i,hint:c}=t,l=s?` from ${s}`:"",u=n?` since version ${n}`:"",d=o?` and will be removed${l} in version ${o}`:"",p=r?` Please use ${r} instead.`:"",f=i?` See: ${i}`:"",b=c?` Note: ${c}`:"",h=`${e} is deprecated${u}${d}.${p}${f}${b}`;h in xH||(WN("deprecated",e,t,h),console.warn(h),xH[h]=!0)}function os(e){return`Minified Redux error #${e}; visit https://redux.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `}var N6e=typeof Symbol=="function"&&Symbol.observable||"@@observable",wH=N6e,MS=()=>Math.random().toString(36).substring(7).split("").join("."),B6e={INIT:`@@redux/INIT${MS()}`,REPLACE:`@@redux/REPLACE${MS()}`,PROBE_UNKNOWN_ACTION:()=>`@@redux/PROBE_UNKNOWN_ACTION${MS()}`},_H=B6e;function L6e(e){if(typeof e!="object"||e===null)return!1;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t||Object.getPrototypeOf(e)===null}function t0e(e,t,n){if(typeof e!="function")throw new Error(os(2));if(typeof t=="function"&&typeof n=="function"||typeof n=="function"&&typeof arguments[3]=="function")throw new Error(os(0));if(typeof t=="function"&&typeof n>"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(os(1));return n(t0e)(e,t)}let o=e,r=t,s=new Map,i=s,c=0,l=!1;function u(){i===s&&(i=new Map,s.forEach((z,A)=>{i.set(A,z)}))}function d(){if(l)throw new Error(os(3));return r}function p(z){if(typeof z!="function")throw new Error(os(4));if(l)throw new Error(os(5));let A=!0;u();const _=c++;return i.set(_,z),function(){if(A){if(l)throw new Error(os(6));A=!1,u(),i.delete(_),s=null}}}function f(z){if(!L6e(z))throw new Error(os(7));if(typeof z.type>"u")throw new Error(os(8));if(typeof z.type!="string")throw new Error(os(17));if(l)throw new Error(os(9));try{l=!0,r=o(r,z)}finally{l=!1}return(s=i).forEach(_=>{_()}),z}function b(z){if(typeof z!="function")throw new Error(os(10));o=z,f({type:_H.REPLACE})}function h(){const z=p;return{subscribe(A){if(typeof A!="object"||A===null)throw new Error(os(11));function _(){const M=A;M.next&&M.next(d())}return _(),{unsubscribe:z(_)}},[wH](){return this}}}return f({type:_H.INIT}),{dispatch:f,subscribe:p,getState:d,replaceReducer:b,[wH]:h}}function P6e(...e){return e.length===0?t=>t:e.length===1?e[0]:e.reduce((t,n)=>(...o)=>t(n(...o)))}function j6e(...e){return t=>(n,o)=>{const r=t(n,o);let s=()=>{throw new Error(os(15))};const i={getState:r.getState,dispatch:(l,...u)=>s(l,...u)},c=e.map(l=>l(i));return s=P6e(...c)(r.dispatch),{...r,dispatch:s}}}var zS,kH;function I6e(){if(kH)return zS;kH=1;function e(i){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?e=function(c){return typeof c}:e=function(c){return c&&typeof Symbol=="function"&&c.constructor===Symbol&&c!==Symbol.prototype?"symbol":typeof c},e(i)}function t(i,c){if(!(i instanceof c))throw new TypeError("Cannot call a class as a function")}function n(i,c){for(var l=0;l<c.length;l++){var u=c[l];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(i,u.key,u)}}function o(i,c,l){return c&&n(i.prototype,c),i}function r(i,c){var l=i._map,u=i._arrayTreeMap,d=i._objectTreeMap;if(l.has(c))return l.get(c);for(var p=Object.keys(c).sort(),f=Array.isArray(c)?u:d,b=0;b<p.length;b++){var h=p[b];if(f=f.get(h),f===void 0)return;var g=c[h];if(f=f.get(g),f===void 0)return}var z=f.get("_ekm_value");if(z)return l.delete(z[0]),z[0]=c,f.set("_ekm_value",z),l.set(c,z),z}var s=function(){function i(c){if(t(this,i),this.clear(),c instanceof i){var l=[];c.forEach(function(d,p){l.push([p,d])}),c=l}if(c!=null)for(var u=0;u<c.length;u++)this.set(c[u][0],c[u][1])}return o(i,[{key:"set",value:function(l,u){if(l===null||e(l)!=="object")return this._map.set(l,u),this;for(var d=Object.keys(l).sort(),p=[l,u],f=Array.isArray(l)?this._arrayTreeMap:this._objectTreeMap,b=0;b<d.length;b++){var h=d[b];f.has(h)||f.set(h,new i),f=f.get(h);var g=l[h];f.has(g)||f.set(g,new i),f=f.get(g)}var z=f.get("_ekm_value");return z&&this._map.delete(z[0]),f.set("_ekm_value",p),this._map.set(l,p),this}},{key:"get",value:function(l){if(l===null||e(l)!=="object")return this._map.get(l);var u=r(this,l);if(u)return u[1]}},{key:"has",value:function(l){return l===null||e(l)!=="object"?this._map.has(l):r(this,l)!==void 0}},{key:"delete",value:function(l){return this.has(l)?(this.set(l,void 0),!0):!1}},{key:"forEach",value:function(l){var u=this,d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this;this._map.forEach(function(p,f){f!==null&&e(f)==="object"&&(p=p[1]),l.call(d,p,f,u)})}},{key:"clear",value:function(){this._map=new Map,this._arrayTreeMap=new Map,this._objectTreeMap=new Map}},{key:"size",get:function(){return this._map.size}}]),i}();return zS=s,zS}var D6e=I6e();const Va=Zr(D6e);function F6e(e){return!!e&&typeof e[Symbol.iterator]=="function"&&typeof e.next=="function"}var OS={},Vo={},sA={},SH;function n0e(){if(SH)return sA;SH=1,Object.defineProperty(sA,"__esModule",{value:!0});var e={all:Symbol("all"),error:Symbol("error"),fork:Symbol("fork"),join:Symbol("join"),race:Symbol("race"),call:Symbol("call"),cps:Symbol("cps"),subscribe:Symbol("subscribe")};return sA.default=e,sA}var CH;function o0e(){if(CH)return Vo;CH=1,Object.defineProperty(Vo,"__esModule",{value:!0}),Vo.createChannel=Vo.subscribe=Vo.cps=Vo.apply=Vo.call=Vo.invoke=Vo.delay=Vo.race=Vo.join=Vo.fork=Vo.error=Vo.all=void 0;var e=n0e(),t=n(e);function n(o){return o&&o.__esModule?o:{default:o}}return Vo.all=function(r){return{type:t.default.all,value:r}},Vo.error=function(r){return{type:t.default.error,error:r}},Vo.fork=function(r){for(var s=arguments.length,i=Array(s>1?s-1:0),c=1;c<s;c++)i[c-1]=arguments[c];return{type:t.default.fork,iterator:r,args:i}},Vo.join=function(r){return{type:t.default.join,task:r}},Vo.race=function(r){return{type:t.default.race,competitors:r}},Vo.delay=function(r){return new Promise(function(s){setTimeout(function(){return s(!0)},r)})},Vo.invoke=function(r){for(var s=arguments.length,i=Array(s>1?s-1:0),c=1;c<s;c++)i[c-1]=arguments[c];return{type:t.default.call,func:r,context:null,args:i}},Vo.call=function(r,s){for(var i=arguments.length,c=Array(i>2?i-2:0),l=2;l<i;l++)c[l-2]=arguments[l];return{type:t.default.call,func:r,context:s,args:c}},Vo.apply=function(r,s,i){return{type:t.default.call,func:r,context:s,args:i}},Vo.cps=function(r){for(var s=arguments.length,i=Array(s>1?s-1:0),c=1;c<s;c++)i[c-1]=arguments[c];return{type:t.default.cps,func:r,args:i}},Vo.subscribe=function(r){return{type:t.default.subscribe,channel:r}},Vo.createChannel=function(r){var s=[],i=function(u){return s.push(u),function(){return s.splice(s.indexOf(u),1)}},c=function(u){return s.forEach(function(d){return d(u)})};return r(c),{subscribe:i}},Vo}var iA={},ts={},aA={},qH;function k5(){if(qH)return aA;qH=1,Object.defineProperty(aA,"__esModule",{value:!0});var e=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(s){return typeof s}:function(s){return s&&typeof Symbol=="function"&&s.constructor===Symbol?"symbol":typeof s},t=n0e(),n=o(t);function o(s){return s&&s.__esModule?s:{default:s}}var r={obj:function(i){return(typeof i>"u"?"undefined":e(i))==="object"&&!!i},all:function(i){return r.obj(i)&&i.type===n.default.all},error:function(i){return r.obj(i)&&i.type===n.default.error},array:Array.isArray,func:function(i){return typeof i=="function"},promise:function(i){return i&&r.func(i.then)},iterator:function(i){return i&&r.func(i.next)&&r.func(i.throw)},fork:function(i){return r.obj(i)&&i.type===n.default.fork},join:function(i){return r.obj(i)&&i.type===n.default.join},race:function(i){return r.obj(i)&&i.type===n.default.race},call:function(i){return r.obj(i)&&i.type===n.default.call},cps:function(i){return r.obj(i)&&i.type===n.default.cps},subscribe:function(i){return r.obj(i)&&i.type===n.default.subscribe},channel:function(i){return r.obj(i)&&r.func(i.subscribe)}};return aA.default=r,aA}var RH;function $6e(){if(RH)return ts;RH=1,Object.defineProperty(ts,"__esModule",{value:!0}),ts.iterator=ts.array=ts.object=ts.error=ts.any=void 0;var e=k5(),t=n(e);function n(l){return l&&l.__esModule?l:{default:l}}var o=ts.any=function(u,d,p,f){return f(u),!0},r=ts.error=function(u,d,p,f,b){return t.default.error(u)?(b(u.error),!0):!1},s=ts.object=function(u,d,p,f,b){if(!t.default.all(u)||!t.default.obj(u.value))return!1;var h={},g=Object.keys(u.value),z=0,A=!1,_=function(y,k){A||(h[y]=k,z++,z===g.length&&f(h))},v=function(y,k){A||(A=!0,b(k))};return g.map(function(M){p(u.value[M],function(y){return _(M,y)},function(y){return v(M,y)})}),!0},i=ts.array=function(u,d,p,f,b){if(!t.default.all(u)||!t.default.array(u.value))return!1;var h=[],g=0,z=!1,A=function(M,y){z||(h[M]=y,g++,g===u.value.length&&f(h))},_=function(M,y){z||(z=!0,b(y))};return u.value.map(function(v,M){p(v,function(y){return A(M,y)},function(y){return _(M,y)})}),!0},c=ts.iterator=function(u,d,p,f,b){return t.default.iterator(u)?(p(u,d,b),!0):!1};return ts.default=[r,c,i,s,o],ts}var TH;function V6e(){if(TH)return iA;TH=1,Object.defineProperty(iA,"__esModule",{value:!0});var e=$6e(),t=r(e),n=k5(),o=r(n);function r(c){return c&&c.__esModule?c:{default:c}}function s(c){if(Array.isArray(c)){for(var l=0,u=Array(c.length);l<c.length;l++)u[l]=c[l];return u}else return Array.from(c)}var i=function(){var l=arguments.length<=0||arguments[0]===void 0?[]:arguments[0],u=[].concat(s(l),s(t.default)),d=function p(f){var b=arguments.length<=1||arguments[1]===void 0?function(){}:arguments[1],h=arguments.length<=2||arguments[2]===void 0?function(){}:arguments[2],g=function(_){var v=function(k){return function(S){try{var C=k?_.throw(S):_.next(S),R=C.value,T=C.done;if(T)return b(R);M(R)}catch(E){return h(E)}}},M=function y(k){u.some(function(S){return S(k,y,p,v(!1),v(!0))})};v(!1)()},z=o.default.iterator(f)?f:regeneratorRuntime.mark(function A(){return regeneratorRuntime.wrap(function(v){for(;;)switch(v.prev=v.next){case 0:return v.next=2,f;case 2:return v.abrupt("return",v.sent);case 3:case"end":return v.stop()}},A,this)})();g(z)};return d};return iA.default=i,iA}var ai={},cA={},EH;function H6e(){if(EH)return cA;EH=1,Object.defineProperty(cA,"__esModule",{value:!0});var e=function(){var n=[];return{subscribe:function(r){return n.push(r),function(){n=n.filter(function(s){return s!==r})}},dispatch:function(r){n.slice().forEach(function(s){return s(r)})}}};return cA.default=e,cA}var WH;function U6e(){if(WH)return ai;WH=1,Object.defineProperty(ai,"__esModule",{value:!0}),ai.race=ai.join=ai.fork=ai.promise=void 0;var e=k5(),t=s(e),n=o0e(),o=H6e(),r=s(o);function s(f){return f&&f.__esModule?f:{default:f}}var i=ai.promise=function(b,h,g,z,A){return t.default.promise(b)?(b.then(h,A),!0):!1},c=new Map,l=ai.fork=function(b,h,g){if(!t.default.fork(b))return!1;var z=Symbol("fork"),A=(0,r.default)();c.set(z,A),g(b.iterator.apply(null,b.args),function(v){return A.dispatch(v)},function(v){return A.dispatch((0,n.error)(v))});var _=A.subscribe(function(){_(),c.delete(z)});return h(z),!0},u=ai.join=function(b,h,g,z,A){if(!t.default.join(b))return!1;var _=c.get(b.task);return _?function(){var v=_.subscribe(function(M){v(),h(M)})}():A("join error : task not found"),!0},d=ai.race=function(b,h,g,z,A){if(!t.default.race(b))return!1;var _=!1,v=function(k,S,C){_||(_=!0,k[S]=C,h(k))},M=function(k){_||A(k)};return t.default.array(b.competitors)?function(){var y=b.competitors.map(function(){return!1});b.competitors.forEach(function(k,S){g(k,function(C){return v(y,S,C)},M)})}():function(){var y=Object.keys(b.competitors).reduce(function(k,S){return k[S]=!1,k},{});Object.keys(b.competitors).forEach(function(k){g(b.competitors[k],function(S){return v(y,k,S)},M)})}(),!0},p=function(b,h){if(!t.default.subscribe(b))return!1;if(!t.default.channel(b.channel))throw new Error('the first argument of "subscribe" must be a valid channel');var g=b.channel.subscribe(function(z){g&&g(),h(z)});return!0};return ai.default=[i,l,u,d,p],ai}var Cu={},NH;function X6e(){if(NH)return Cu;NH=1,Object.defineProperty(Cu,"__esModule",{value:!0}),Cu.cps=Cu.call=void 0;var e=k5(),t=n(e);function n(i){return i&&i.__esModule?i:{default:i}}function o(i){if(Array.isArray(i)){for(var c=0,l=Array(i.length);c<i.length;c++)l[c]=i[c];return l}else return Array.from(i)}var r=Cu.call=function(c,l,u,d,p){if(!t.default.call(c))return!1;try{l(c.func.apply(c.context,c.args))}catch(f){p(f)}return!0},s=Cu.cps=function(c,l,u,d,p){var f;return t.default.cps(c)?((f=c.func).call.apply(f,[null].concat(o(c.args),[function(b,h){b?p(b):l(h)}])),!0):!1};return Cu.default=[r,s],Cu}var BH;function G6e(){return BH||(BH=1,function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.wrapControls=e.asyncControls=e.create=void 0;var t=o0e();Object.keys(t).forEach(function(u){u!=="default"&&Object.defineProperty(e,u,{enumerable:!0,get:function(){return t[u]}})});var n=V6e(),o=l(n),r=U6e(),s=l(r),i=X6e(),c=l(i);function l(u){return u&&u.__esModule?u:{default:u}}e.create=o.default,e.asyncControls=s.default,e.wrapControls=c.default}(OS)),OS}var K6e=G6e();function r0e(e){return!!e&&(typeof e=="object"||typeof e=="function")&&typeof e.then=="function"}function vE(e){return a3(e)&&typeof e.type=="string"}function Y6e(e,t){return vE(e)&&e.type===t}function Z6e(e={},t){const n=Object.entries(e).map(([s,i])=>(c,l,u,d,p)=>{if(!Y6e(c,s))return!1;const f=i(c);return r0e(f)?f.then(d,p):d(f),!0}),o=(s,i)=>vE(s)?(t(s),i(),!0):!1;n.push(o);const r=K6e.create(n);return s=>new Promise((i,c)=>r(s,l=>{vE(l)&&t(l),i(l)},c))}function Q6e(e={}){return t=>{const n=Z6e(e,t.dispatch);return o=>r=>F6e(r)?n(r):o(r)}}function Or(e,t){return n=>{const o=e(n);return o.displayName=J6e(t,n),o}}const J6e=(e,t)=>{const n=t.displayName||t.name||"Component";return`${S4(e??"")}(${n})`},F1=(e,t,n)=>{let o,r,s=0,i,c,l,u=0,d=!1,p=!1,f=!0;n&&(d=!!n.leading,p="maxWait"in n,n.maxWait!==void 0&&(s=Math.max(n.maxWait,t)),f="trailing"in n?!!n.trailing:f);function b(E){const B=o,N=r;return o=void 0,r=void 0,u=E,i=e.apply(N,B),i}function h(E,B){c=setTimeout(E,B)}function g(){c!==void 0&&clearTimeout(c)}function z(E){return u=E,h(M,t),d?b(E):i}function A(E){return E-(l||0)}function _(E){const B=A(E),N=E-u,j=t-B;return p?Math.min(j,s-N):j}function v(E){const B=A(E),N=E-u;return l===void 0||B>=t||B<0||p&&N>=s}function M(){const E=Date.now();if(v(E))return k(E);h(M,_(E))}function y(){c=void 0}function k(E){return y(),f&&o?b(E):(o=r=void 0,i)}function S(){g(),u=0,y(),o=l=r=void 0}function C(){return R()?k(Date.now()):i}function R(){return c!==void 0}function T(...E){const B=Date.now(),N=v(B);if(o=E,r=this,l=B,N){if(!R())return z(l);if(p)return h(M,t),b(l)}return R()||h(M,t),i}return T.cancel=S,T.flush=C,T.pending=R,T},jN=(e,t,n)=>{let o=!0,r=!0;return n&&(o="leading"in n?!!n.leading:o,r="trailing"in n?!!n.trailing:r),F1(e,t,{leading:o,trailing:r,maxWait:t})};function gc(){const e=new Map,t=new Map;function n(o){const r=t.get(o);if(r)for(const s of r)s()}return{get(o){return e.get(o)},set(o,r){e.set(o,r),n(o)},delete(o){e.delete(o),n(o)},subscribe(o,r){let s=t.get(o);return s||(s=new Set,t.set(o,s)),s.add(r),()=>{s.delete(r),s.size===0&&t.delete(o)}}}}const s0e=(e=!1)=>(...t)=>(...n)=>{const o=t.flat();return e&&o.reverse(),o.reduce((r,s)=>[s(...r)],n)[0]},Ku=s0e(),Co=s0e(!0);function eSe(e){return Or(t=>n=>e(n)?a.jsx(t,{...n}):null,"ifCondition")}function i0e(e,t){if(e===t)return!0;const n=Object.keys(e),o=Object.keys(t);if(n.length!==o.length)return!1;let r=0;for(;r<n.length;){const s=n[r],i=e[s];if(i===void 0&&!t.hasOwnProperty(s)||i!==t[s])return!1;r++}return!0}function tSe(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let n=0,o=e.length;n<o;n++)if(e[n]!==t[n])return!1;return!0}function ds(e,t){if(e&&t){if(e.constructor===Object&&t.constructor===Object)return i0e(e,t);if(Array.isArray(e)&&Array.isArray(t))return tSe(e,t)}return e===t}const nSe=Or(function(e){return e.prototype instanceof x.Component?class extends e{shouldComponentUpdate(t,n){return!ds(t,this.props)||!ds(n,this.state)}}:class extends x.Component{shouldComponentUpdate(t){return!ds(t,this.props)}render(){return a.jsx(e,{...this.props})}}},"pure"),LH=new WeakMap;function oSe(e){const t=LH.get(e)||0;return LH.set(e,t+1),t}function vt(e,t,n){return x.useMemo(()=>{if(n)return n;const o=oSe(e);return t?`${t}-${o}`:o},[e,n,t])}const rSe=Or(e=>t=>{const n=vt(e);return a.jsx(e,{...t,instanceId:n})},"instanceId"),sSe=Or(e=>class extends x.Component{constructor(n){super(n),this.timeouts=[],this.setTimeout=this.setTimeout.bind(this),this.clearTimeout=this.clearTimeout.bind(this)}componentWillUnmount(){this.timeouts.forEach(clearTimeout)}setTimeout(n,o){const r=setTimeout(()=>{n(),this.clearTimeout(r)},o);return this.timeouts.push(r),r}clearTimeout(n){clearTimeout(n),this.timeouts=this.timeouts.filter(o=>o!==n)}render(){return a.jsx(e,{...this.props,setTimeout:this.setTimeout,clearTimeout:this.clearTimeout})}},"withSafeTimeout");function iSe(e){return[e?'[tabindex]:not([tabindex^="-"])':"[tabindex]","a[href]","button:not([disabled])",'input:not([type="hidden"]):not([disabled])',"select:not([disabled])","textarea:not([disabled])",'iframe:not([tabindex^="-"])',"object","embed","area[href]","[contenteditable]:not([contenteditable=false])"].join(",")}function a0e(e){return e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0}function aSe(e){const t=e.closest("map[name]");if(!t)return!1;const n=e.ownerDocument.querySelector('img[usemap="#'+t.name+'"]');return!!n&&a0e(n)}function S5(e,{sequential:t=!1}={}){const n=e.querySelectorAll(iSe(t));return Array.from(n).filter(o=>{if(!a0e(o))return!1;const{nodeName:r}=o;return r==="AREA"?aSe(o):!0})}const cSe=Object.freeze(Object.defineProperty({__proto__:null,find:S5},Symbol.toStringTag,{value:"Module"}));function xE(e){const t=e.getAttribute("tabindex");return t===null?0:parseInt(t,10)}function c0e(e){return xE(e)!==-1}function lSe(){const e={};return function(n,o){const{nodeName:r,type:s,checked:i,name:c}=o;if(r!=="INPUT"||s!=="radio"||!c)return n.concat(o);const l=e.hasOwnProperty(c);if(!(i||!l))return n;if(l){const d=e[c];n=n.filter(p=>p!==d)}return e[c]=o,n.concat(o)}}function uSe(e,t){return{element:e,index:t}}function dSe(e){return e.element}function pSe(e,t){const n=xE(e.element),o=xE(t.element);return n===o?e.index-t.index:n-o}function IN(e){return e.filter(c0e).map(uSe).sort(pSe).map(dSe).reduce(lSe(),[])}function fSe(e){return IN(S5(e))}function bSe(e){return IN(S5(e.ownerDocument.body)).reverse().find(t=>e.compareDocumentPosition(t)&e.DOCUMENT_POSITION_PRECEDING)}function hSe(e){return IN(S5(e.ownerDocument.body)).find(t=>e.compareDocumentPosition(t)&e.DOCUMENT_POSITION_FOLLOWING)}const mSe=Object.freeze(Object.defineProperty({__proto__:null,find:fSe,findNext:hSe,findPrevious:bSe,isTabbableIndex:c0e},Symbol.toStringTag,{value:"Module"}));function Nv(e){if(!e.collapsed){const s=Array.from(e.getClientRects());if(s.length===1)return s[0];const i=s.filter(({width:p})=>p>1);if(i.length===0)return e.getBoundingClientRect();if(i.length===1)return i[0];let{top:c,bottom:l,left:u,right:d}=i[0];for(const{top:p,bottom:f,left:b,right:h}of i)p<c&&(c=p),f>l&&(l=f),b<u&&(u=b),h>d&&(d=h);return new window.DOMRect(u,c,d-u,l-c)}const{startContainer:t}=e,{ownerDocument:n}=t;if(t.nodeName==="BR"){const{parentNode:s}=t,i=Array.from(s.childNodes).indexOf(t);e=n.createRange(),e.setStart(s,i),e.setEnd(s,i)}const o=e.getClientRects();if(o.length>1)return null;let r=o[0];if(!r||r.height===0){const s=n.createTextNode("");e=e.cloneRange(),e.insertNode(s),r=e.getClientRects()[0],s.parentNode,s.parentNode.removeChild(s)}return r}function wE(e){const t=e.getSelection(),n=t.rangeCount?t.getRangeAt(0):null;return n?Nv(n):null}function l0e(e){e.defaultView;const t=e.defaultView.getSelection(),n=t.rangeCount?t.getRangeAt(0):null;return!!n&&!n.collapsed}function DN(e){return e?.nodeName==="INPUT"}function md(e){const t=["button","checkbox","hidden","file","radio","image","range","reset","submit","number","email","time"];return DN(e)&&e.type&&!t.includes(e.type)||e.nodeName==="TEXTAREA"||e.contentEditable==="true"}function gSe(e){if(!DN(e)&&!md(e))return!1;try{const{selectionStart:t,selectionEnd:n}=e;return t===null||t!==n}catch{return!0}}function MSe(e){return l0e(e)||!!e.activeElement&&gSe(e.activeElement)}function zSe(e){return!!e.activeElement&&(DN(e.activeElement)||md(e.activeElement)||l0e(e))}function R4(e){return e.ownerDocument.defaultView,e.ownerDocument.defaultView.getComputedStyle(e)}function ps(e,t="vertical"){if(e){if((t==="vertical"||t==="all")&&e.scrollHeight>e.clientHeight){const{overflowY:n}=R4(e);if(/(auto|scroll)/.test(n))return e}if((t==="horizontal"||t==="all")&&e.scrollWidth>e.clientWidth){const{overflowX:n}=R4(e);if(/(auto|scroll)/.test(n))return e}return e.ownerDocument===e.parentNode?e:ps(e.parentNode,t)}}function C5(e){return e.tagName==="INPUT"||e.tagName==="TEXTAREA"}function OSe(e){if(C5(e))return e.selectionStart===0&&e.value.length===e.selectionEnd;if(!e.isContentEditable)return!0;const{ownerDocument:t}=e,{defaultView:n}=t,o=n.getSelection(),r=o.rangeCount?o.getRangeAt(0):null;if(!r)return!0;const{startContainer:s,endContainer:i,startOffset:c,endOffset:l}=r;if(s===e&&i===e&&c===0&&l===e.childNodes.length)return!0;e.lastChild;const u=i.nodeType===i.TEXT_NODE?i.data.length:i.childNodes.length;return PH(s,e,"firstChild")&&PH(i,e,"lastChild")&&c===0&&l===u}function PH(e,t,n){let o=t;do{if(e===o)return!0;o=o[n]}while(o);return!1}function u0e(e){if(!e)return!1;const{tagName:t}=e;return C5(e)||t==="BUTTON"||t==="SELECT"}function FN(e){return R4(e).direction==="rtl"}function ySe(e){const t=Array.from(e.getClientRects());if(!t.length)return;const n=Math.min(...t.map(({top:r})=>r));return Math.max(...t.map(({bottom:r})=>r))-n}function d0e(e){const{anchorNode:t,focusNode:n,anchorOffset:o,focusOffset:r}=e,s=t.compareDocumentPosition(n);return s&t.DOCUMENT_POSITION_PRECEDING?!1:s&t.DOCUMENT_POSITION_FOLLOWING?!0:s===0?o<=r:!0}function ASe(e,t,n){if(e.caretRangeFromPoint)return e.caretRangeFromPoint(t,n);if(!e.caretPositionFromPoint)return null;const o=e.caretPositionFromPoint(t,n);if(!o)return null;const r=e.createRange();return r.setStart(o.offsetNode,o.offset),r.collapse(!0),r}function p0e(e,t,n,o){const r=o.style.zIndex,s=o.style.position,{position:i="static"}=R4(o);i==="static"&&(o.style.position="relative"),o.style.zIndex="10000";const c=ASe(e,t,n);return o.style.zIndex=r,o.style.position=s,c}function f0e(e,t,n){let o=n();return(!o||!o.startContainer||!e.contains(o.startContainer))&&(e.scrollIntoView(t),o=n(),!o||!o.startContainer||!e.contains(o.startContainer))?null:o}function b0e(e,t,n=!1){if(C5(e)&&typeof e.selectionStart=="number")return e.selectionStart!==e.selectionEnd?!1:t?e.selectionStart===0:e.value.length===e.selectionStart;if(!e.isContentEditable)return!0;const{ownerDocument:o}=e,{defaultView:r}=o,s=r.getSelection();if(!s||!s.rangeCount)return!1;const i=s.getRangeAt(0),c=i.cloneRange(),l=d0e(s),u=s.isCollapsed;u||c.collapse(!l);const d=Nv(c),p=Nv(i);if(!d||!p)return!1;const f=ySe(i);if(!u&&f&&f>d.height&&l===t)return!1;const b=FN(e)?!t:t,h=e.getBoundingClientRect(),g=b?h.left+1:h.right-1,z=t?h.top+1:h.bottom-1,A=f0e(e,t,()=>p0e(o,g,z,e));if(!A)return!1;const _=Nv(A);if(!_)return!1;const v=t?"top":"bottom",M=b?"left":"right",y=_[v]-p[v],k=_[M]-d[M],S=Math.abs(y)<=1,C=Math.abs(k)<=1;return n?S:S&&C}function yS(e,t){return b0e(e,t)}function jH(e,t){return b0e(e,t,!0)}function vSe(e,t,n){const{ownerDocument:o}=e,r=FN(e)?!t:t,s=e.getBoundingClientRect();n===void 0?n=t?s.right-1:s.left+1:n<=s.left?n=s.left+1:n>=s.right&&(n=s.right-1);const i=r?s.bottom-1:s.top+1;return p0e(o,n,i,e)}function h0e(e,t,n){if(!e)return;if(e.focus(),C5(e)){if(typeof e.selectionStart!="number")return;t?(e.selectionStart=e.value.length,e.selectionEnd=e.value.length):(e.selectionStart=0,e.selectionEnd=0);return}if(!e.isContentEditable)return;const o=f0e(e,t,()=>vSe(e,t,n));if(!o)return;const{ownerDocument:r}=e,{defaultView:s}=r,i=s.getSelection();i.removeAllRanges(),i.addRange(o)}function m0e(e,t){return h0e(e,t,void 0)}function xSe(e,t,n){return h0e(e,t,n?.left)}function g0e(e,t){t.parentNode,t.parentNode.insertBefore(e,t.nextSibling)}function pf(e){e.parentNode,e.parentNode.removeChild(e)}function wSe(e,t){e.parentNode,g0e(t,e.parentNode),pf(e)}function mM(e){const t=e.parentNode;for(;e.firstChild;)t.insertBefore(e.firstChild,e);t.removeChild(e)}function IH(e,t){const n=e.ownerDocument.createElement(t);for(;e.firstChild;)n.appendChild(e.firstChild);return e.parentNode,e.parentNode.replaceChild(n,e),n}function Ag(e,t){t.parentNode,t.parentNode.insertBefore(e,t),e.appendChild(t)}function q5(e){const{body:t}=document.implementation.createHTMLDocument("");t.innerHTML=e;const n=t.getElementsByTagName("*");let o=n.length;for(;o--;){const r=n[o];if(r.tagName==="SCRIPT")pf(r);else{let s=r.attributes.length;for(;s--;){const{name:i}=r.attributes[s];i.startsWith("on")&&r.removeAttribute(i)}}}return t.innerHTML}function v1(e){e=q5(e);const t=document.implementation.createHTMLDocument("");return t.body.innerHTML=e,t.body.textContent||""}function T4(e){switch(e.nodeType){case e.TEXT_NODE:return/^[ \f\n\r\t\v\u00a0]*$/.test(e.nodeValue||"");case e.ELEMENT_NODE:return e.hasAttributes()?!1:e.hasChildNodes()?Array.from(e.childNodes).every(T4):!0;default:return!0}}const gM={strong:{},em:{},s:{},del:{},ins:{},a:{attributes:["href","target","rel","id"]},code:{},abbr:{attributes:["title"]},sub:{},sup:{},br:{},small:{},q:{attributes:["cite"]},dfn:{attributes:["title"]},data:{attributes:["value"]},time:{attributes:["datetime"]},var:{},samp:{},kbd:{},i:{},b:{},u:{},mark:{},ruby:{},rt:{},rp:{},bdi:{attributes:["dir"]},bdo:{attributes:["dir"]},wbr:{},"#text":{}},_Se=["#text","br"];Object.keys(gM).filter(e=>!_Se.includes(e)).forEach(e=>{const{[e]:t,...n}=gM;gM[e].children=n});const kSe={audio:{attributes:["src","preload","autoplay","mediagroup","loop","muted"]},canvas:{attributes:["width","height"]},embed:{attributes:["src","type","width","height"]},img:{attributes:["alt","src","srcset","usemap","ismap","width","height"]},object:{attributes:["data","type","name","usemap","form","width","height"]},video:{attributes:["src","poster","preload","playsinline","autoplay","mediagroup","loop","muted","controls","width","height"]}},lA={...gM,...kSe};function R5(e){if(e!=="paste")return lA;const{u:t,abbr:n,data:o,time:r,wbr:s,bdi:i,bdo:c,...l}={...lA,ins:{children:lA.ins.children},del:{children:lA.del.children}};return l}function k2(e){const t=e.nodeName.toLowerCase();return R5().hasOwnProperty(t)||t==="span"}function M0e(e){const t=e.nodeName.toLowerCase();return gM.hasOwnProperty(t)||t==="span"}function SSe(e){return!!e&&e.nodeType===e.ELEMENT_NODE}const CSe=()=>{};function Yg(e,t,n,o){Array.from(e).forEach(r=>{const s=r.nodeName.toLowerCase();if(n.hasOwnProperty(s)&&(!n[s].isMatch||n[s].isMatch?.(r))){if(SSe(r)){const{attributes:i=[],classes:c=[],children:l,require:u=[],allowEmpty:d}=n[s];if(l&&!d&&T4(r)){pf(r);return}if(r.hasAttributes()&&(Array.from(r.attributes).forEach(({name:p})=>{p!=="class"&&!i.includes(p)&&r.removeAttribute(p)}),r.classList&&r.classList.length)){const p=c.map(f=>f==="*"?()=>!0:typeof f=="string"?b=>b===f:f instanceof RegExp?b=>f.test(b):CSe);Array.from(r.classList).forEach(f=>{p.some(b=>b(f))||r.classList.remove(f)}),r.classList.length||r.removeAttribute("class")}if(r.hasChildNodes()){if(l==="*")return;if(l)u.length&&!r.querySelector(u.join(","))?(Yg(r.childNodes,t,n,o),mM(r)):r.parentNode&&r.parentNode.nodeName==="BODY"&&k2(r)?(Yg(r.childNodes,t,n,o),Array.from(r.childNodes).some(p=>!k2(p))&&mM(r)):Yg(r.childNodes,t,l,o);else for(;r.firstChild;)pf(r.firstChild)}}}else Yg(r.childNodes,t,n,o),o&&!k2(r)&&r.nextElementSibling&&g0e(t.createElement("br"),r),mM(r)})}function _E(e,t,n){const o=document.implementation.createHTMLDocument("");return o.body.innerHTML=e,Yg(o.body.childNodes,o,t,n),o.body.innerHTML}function E4(e){const t=Array.from(e.files);return Array.from(e.items).forEach(n=>{const o=n.getAsFile();o&&!t.find(({name:r,type:s,size:i})=>r===o.name&&s===o.type&&i===o.size)&&t.push(o)}),t}const Xr={focusable:cSe,tabbable:mSe};function Mn(e,t){const n=x.useRef();return x.useCallback(o=>{o?n.current=e(o):n.current&&n.current()},t)}function $N(){return Mn(e=>{function t(n){const{key:o,shiftKey:r,target:s}=n;if(o!=="Tab")return;const i=r?"findPrevious":"findNext",c=Xr.tabbable[i](s)||null;if(s.contains(c)){n.preventDefault(),c?.focus();return}if(e.contains(c))return;const l=r?"append":"prepend",{ownerDocument:u}=e,d=u.createElement("div");d.tabIndex=-1,e[l](d),d.addEventListener("blur",()=>e.removeChild(d)),d.focus()}return e.addEventListener("keydown",t),()=>{e.removeEventListener("keydown",t)}},[])}var Bv={exports:{}};/*! +`+n.toString()),e}}var gE,Fre,Kg,$re;gE={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1};Fre=["(","?"];Kg={")":["("],":":["?","?:"]};$re=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;function Hke(e){for(var t=[],n=[],o,r,s,i;o=e.match($re);){for(r=o[0],s=e.substr(0,o.index).trim(),s&&t.push(s);i=n.pop();){if(Kg[r]){if(Kg[r][0]===i){r=Kg[r][1]||r;break}}else if(Fre.indexOf(i)>=0||gE[i]<gE[r]){n.push(i);break}t.push(i)}Kg[r]||n.push(r),e=e.substr(o.index+r.length)}return e=e.trim(),e&&t.push(e),t.concat(n.reverse())}var Uke={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function Xke(e,t){var n=[],o,r,s,i,c,l;for(o=0;o<e.length;o++){if(c=e[o],i=Uke[c],i){for(r=i.length,s=Array(r);r--;)s[r]=n.pop();try{l=i.apply(null,s)}catch(u){return u}}else t.hasOwnProperty(c)?l=t[c]:l=+c;n.push(l)}return n[0]}function Gke(e){var t=Hke(e);return function(n){return Xke(t,n)}}function Kke(e){var t=Gke(e);return function(n){return+t({n})}}var dH={contextDelimiter:"",onMissingKey:null};function Yke(e){var t,n,o;for(t=e.split(";"),n=0;n<t.length;n++)if(o=t[n].trim(),o.indexOf("plural=")===0)return o.substr(7)}function RN(e,t){var n;this.data=e,this.pluralForms={},this.options={};for(n in dH)this.options[n]=t!==void 0&&n in t?t[n]:dH[n]}RN.prototype.getPluralForm=function(e,t){var n=this.pluralForms[e],o,r,s;return n||(o=this.data[e][""],s=o["Plural-Forms"]||o["plural-forms"]||o.plural_forms,typeof s!="function"&&(r=Yke(o["Plural-Forms"]||o["plural-forms"]||o.plural_forms),s=Kke(r)),n=this.pluralForms[e]=s),n(t)};RN.prototype.dcnpgettext=function(e,t,n,o,r){var s,i,c;return r===void 0?s=0:s=this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),c=this.data[e][i],c&&c[s]?c[s]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),s===0?n:o)};const pH={"":{plural_forms(e){return e===1?0:1}}},Zke=/^i18n\.(n?gettext|has_translation)(_|$)/,Qke=(e,t,n)=>{const o=new RN({}),r=new Set,s=()=>{r.forEach(M=>M())},i=M=>(r.add(M),()=>r.delete(M)),c=(M="default")=>o.data[M],l=(M,y="default")=>{o.data[y]={...o.data[y],...M},o.data[y][""]={...pH[""],...o.data[y]?.[""]},delete o.pluralForms[y]},u=(M,y)=>{l(M,y),s()},d=(M,y="default")=>{o.data[y]={...o.data[y],...M,"":{...pH[""],...o.data[y]?.[""],...M?.[""]}},delete o.pluralForms[y],s()},p=(M,y)=>{o.data={},o.pluralForms={},u(M,y)},f=(M="default",y,k,S,C)=>(o.data[M]||l(void 0,M),o.dcnpgettext(M,y,k,S,C)),b=(M="default")=>M,h=(M,y)=>{let k=f(y,void 0,M);return n?(k=n.applyFilters("i18n.gettext",k,M,y),n.applyFilters("i18n.gettext_"+b(y),k,M,y)):k},g=(M,y,k)=>{let S=f(k,y,M);return n?(S=n.applyFilters("i18n.gettext_with_context",S,M,y,k),n.applyFilters("i18n.gettext_with_context_"+b(k),S,M,y,k)):S},z=(M,y,k,S)=>{let C=f(S,void 0,M,y,k);return n?(C=n.applyFilters("i18n.ngettext",C,M,y,k,S),n.applyFilters("i18n.ngettext_"+b(S),C,M,y,k,S)):C},A=(M,y,k,S,C)=>{let R=f(C,S,M,y,k);return n?(R=n.applyFilters("i18n.ngettext_with_context",R,M,y,k,S,C),n.applyFilters("i18n.ngettext_with_context_"+b(C),R,M,y,k,S,C)):R},_=()=>g("ltr","text direction")==="rtl",v=(M,y,k)=>{const S=y?y+""+M:M;let C=!!o.data?.[k??"default"]?.[S];return n&&(C=n.applyFilters("i18n.has_translation",C,M,y,k),C=n.applyFilters("i18n.has_translation_"+b(k),C,M,y,k)),C};if(n){const M=y=>{Zke.test(y)&&s()};n.addAction("hookAdded","core/i18n",M),n.addAction("hookRemoved","core/i18n",M)}return{getLocaleData:c,setLocaleData:u,addLocaleData:d,resetLocaleData:p,subscribe:i,__:h,_x:g,_n:z,_nx:A,isRTL:_,hasTranslation:v}};function Vre(e){return typeof e!="string"||e===""?(console.error("The namespace must be a non-empty string."),!1):/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)?!0:(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}function TN(e){return typeof e!="string"||e===""?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)?!0:(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}function fH(e,t){return function(o,r,s,i=10){const c=e[t];if(!TN(o)||!Vre(r))return;if(typeof s!="function"){console.error("The hook callback must be a function.");return}if(typeof i!="number"){console.error("If specified, the hook priority must be a number.");return}const l={callback:s,priority:i,namespace:r};if(c[o]){const u=c[o].handlers;let d;for(d=u.length;d>0&&!(i>=u[d-1].priority);d--);d===u.length?u[d]=l:u.splice(d,0,l),c.__current.forEach(p=>{p.name===o&&p.currentIndex>=d&&p.currentIndex++})}else c[o]={handlers:[l],runs:0};o!=="hookAdded"&&e.doAction("hookAdded",o,r,s,i)}}function nA(e,t,n=!1){return function(r,s){const i=e[t];if(!TN(r)||!n&&!Vre(s))return;if(!i[r])return 0;let c=0;if(n)c=i[r].handlers.length,i[r]={runs:i[r].runs,handlers:[]};else{const l=i[r].handlers;for(let u=l.length-1;u>=0;u--)l[u].namespace===s&&(l.splice(u,1),c++,i.__current.forEach(d=>{d.name===r&&d.currentIndex>=u&&d.currentIndex--}))}return r!=="hookRemoved"&&e.doAction("hookRemoved",r,s),c}}function bH(e,t){return function(o,r){const s=e[t];return typeof r<"u"?o in s&&s[o].handlers.some(i=>i.namespace===r):o in s}}function oA(e,t,n,o){return function(s,...i){const c=e[t];c[s]||(c[s]={handlers:[],runs:0}),c[s].runs++;const l=c[s].handlers;if(!l||!l.length)return n?i[0]:void 0;const u={name:s,currentIndex:0};async function d(){try{c.__current.add(u);let f=n?i[0]:void 0;for(;u.currentIndex<l.length;)f=await l[u.currentIndex].callback.apply(null,i),n&&(i[0]=f),u.currentIndex++;return n?f:void 0}finally{c.__current.delete(u)}}function p(){try{c.__current.add(u);let f=n?i[0]:void 0;for(;u.currentIndex<l.length;)f=l[u.currentIndex].callback.apply(null,i),n&&(i[0]=f),u.currentIndex++;return n?f:void 0}finally{c.__current.delete(u)}}return(o?d:p)()}}function hH(e,t){return function(){var o;const r=e[t];return(o=Array.from(r.__current).at(-1)?.name)!==null&&o!==void 0?o:null}}function mH(e,t){return function(o){const r=e[t];return typeof o>"u"?r.__current.size>0:Array.from(r.__current).some(s=>s.name===o)}}function gH(e,t){return function(o){const r=e[t];if(TN(o))return r[o]&&r[o].runs?r[o].runs:0}}class Jke{constructor(){this.actions=Object.create(null),this.actions.__current=new Set,this.filters=Object.create(null),this.filters.__current=new Set,this.addAction=fH(this,"actions"),this.addFilter=fH(this,"filters"),this.removeAction=nA(this,"actions"),this.removeFilter=nA(this,"filters"),this.hasAction=bH(this,"actions"),this.hasFilter=bH(this,"filters"),this.removeAllActions=nA(this,"actions",!0),this.removeAllFilters=nA(this,"filters",!0),this.doAction=oA(this,"actions",!1,!1),this.doActionAsync=oA(this,"actions",!1,!0),this.applyFilters=oA(this,"filters",!0,!1),this.applyFiltersAsync=oA(this,"filters",!0,!0),this.currentAction=hH(this,"actions"),this.currentFilter=hH(this,"filters"),this.doingAction=mH(this,"actions"),this.doingFilter=mH(this,"filters"),this.didAction=gH(this,"actions"),this.didFilter=gH(this,"filters")}}function Hre(){return new Jke}const Ure=Hre(),{addAction:S4,addFilter:Bn,removeAction:ME,removeFilter:zE,hasAction:Pmn,hasFilter:Xre,removeAllActions:jmn,removeAllFilters:Imn,doAction:EN,doActionAsync:e6e,applyFilters:gr,applyFiltersAsync:t6e,currentAction:Dmn,currentFilter:Fmn,doingAction:$mn,doingFilter:Vmn,didAction:Hmn,didFilter:Umn,actions:Xmn,filters:Gmn}=Ure,a0=Qke(void 0,void 0,Ure);a0.getLocaleData.bind(a0);a0.setLocaleData.bind(a0);a0.resetLocaleData.bind(a0);a0.subscribe.bind(a0);const m=a0.__.bind(a0),We=a0._x.bind(a0),Dn=a0._n.bind(a0);a0._nx.bind(a0);const jt=a0.isRTL.bind(a0);a0.hasTranslation.bind(a0);function n6e(e){const t=(n,o)=>{const{headers:r={}}=n;for(const s in r)if(s.toLowerCase()==="x-wp-nonce"&&r[s]===t.nonce)return o(n);return o({...n,headers:{...r,"X-WP-Nonce":t.nonce}})};return t.nonce=e,t}const Gre=(e,t)=>{let n=e.path,o,r;return typeof e.namespace=="string"&&typeof e.endpoint=="string"&&(o=e.namespace.replace(/^\/|\/$/g,""),r=e.endpoint.replace(/^\//,""),r?n=o+"/"+r:n=o),delete e.namespace,delete e.endpoint,t({...e,path:n})},o6e=e=>(t,n)=>Gre(t,o=>{let r=o.url,s=o.path,i;return typeof s=="string"&&(i=e,e.indexOf("?")!==-1&&(s=s.replace("?","&")),s=s.replace(/^\//,""),typeof i=="string"&&i.indexOf("?")!==-1&&(s=s.replace("?","&")),r=i+s),n({...o,url:r})});function Pf(e){try{return new URL(e),!0}catch{return!1}}const r6e=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i;function Kre(e){return r6e.test(e)}const s6e=/^(tel:)?(\+)?\d{6,15}$/;function i6e(e){return e=e.replace(/[-.() ]/g,""),s6e.test(e)}function v5(e){const t=/^([^\s:]+:)/.exec(e);if(t)return t[1]}function WN(e){return e?/^[a-z\-.\+]+[0-9]*:$/i.test(e):!1}function NN(e){const t=/^[^\/\s:]+:(?:\/\/)?\/?([^\/\s#?]+)[\/#?]{0,1}\S*$/.exec(e);if(t)return t[1]}function a6e(e){return e?/^[^\s#?]+$/.test(e):!1}function Aa(e){const t=/^[^\/\s:]+:(?:\/\/)?[^\/\s#?]+[\/]([^\s#?]+)[#?]{0,1}\S*$/.exec(e);if(t)return t[1]}function c6e(e){return e?/^[^\s#?]+$/.test(e):!1}function BN(e){let t;try{t=new URL(e,"http://example.com").search.substring(1)}catch{}if(t)return t}function x5(e){let t="";const n=Object.entries(e);let o;for(;o=n.shift();){let[r,s]=o;if(Array.isArray(s)||s&&s.constructor===Object){const c=Object.entries(s).reverse();for(const[l,u]of c)n.unshift([`${r}[${l}]`,u])}else s!==void 0&&(s===null&&(s=""),t+="&"+[r,s].map(encodeURIComponent).join("="))}return t.substr(1)}function l6e(e){return e?/^[^\s#?\/]+$/.test(e):!1}function u6e(e){const t=Aa(e),n=BN(e);let o="/";return t&&(o+=t),n&&(o+=`?${n}`),o}function d6e(e){const t=/^\S+?(#[^\s\?]*)/.exec(e);if(t)return t[1]}function OE(e){return e?/^#[^\s#?\/]*$/.test(e):!1}function Y2(e){try{return decodeURIComponent(e)}catch{return e}}function p6e(e,t,n){const o=t.length,r=o-1;for(let s=0;s<o;s++){let i=t[s];!i&&Array.isArray(e)&&(i=e.length.toString()),i=["__proto__","constructor","prototype"].includes(i)?i.toUpperCase():i;const c=!isNaN(Number(t[s+1]));e[i]=s===r?n:e[i]||(c?[]:{}),Array.isArray(e[i])&&!c&&(e[i]={...e[i]}),e=e[i]}}function Lh(e){return(BN(e)||"").replace(/\+/g,"%20").split("&").reduce((t,n)=>{const[o,r=""]=n.split("=").filter(Boolean).map(Y2);if(o){const s=o.replace(/\]/g,"").split("[");p6e(t,s,r)}return t},Object.create(null))}function tn(e="",t){if(!t||!Object.keys(t).length)return e;let n=e;const o=e.indexOf("?");return o!==-1&&(t=Object.assign(Lh(e),t),n=n.substr(0,o)),n+"?"+x5(t)}function yE(e,t){return Lh(e)[t]}function MH(e,t){return yE(e,t)!==void 0}function C4(e,...t){const n=e.indexOf("?");if(n===-1)return e;const o=Lh(e),r=e.substr(0,n);t.forEach(i=>delete o[i]);const s=x5(o);return s?r+"?"+s:r}const f6e=/^(?:[a-z]+:|#|\?|\.|\/)/i;function jf(e){return e&&(e=e.trim(),!f6e.test(e)&&!Kre(e)?"http://"+e:e)}function c3(e){try{return decodeURI(e)}catch{return e}}function Ph(e,t=null){if(!e)return"";let n=e.replace(/^[a-z\-.\+]+[0-9]*:(\/\/)?/i,"").replace(/^www\./i,"");n.match(/^[^\/]+\/$/)&&(n=n.replace("/",""));const o=/\/([^\/?]+)\.(?:[\w]+)(?=\?|$)/;if(!t||n.length<=t||!n.match(o))return n;n=n.split("?")[0];const r=n.split("/"),s=r[r.length-1];if(s.length<=t)return"…"+n.slice(-t);const i=s.lastIndexOf("."),[c,l]=[s.slice(0,i),s.slice(i+1)],u=c.slice(-3)+"."+l;return s.slice(0,t-u.length-1)+"…"+u}var yg={exports:{}},zH;function b6e(){if(zH)return yg.exports;zH=1;var e={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",Ấ:"A",Ắ:"A",Ẳ:"A",Ẵ:"A",Ặ:"A",Æ:"AE",Ầ:"A",Ằ:"A",Ȃ:"A",Ả:"A",Ạ:"A",Ẩ:"A",Ẫ:"A",Ậ:"A",Ç:"C",Ḉ:"C",È:"E",É:"E",Ê:"E",Ë:"E",Ế:"E",Ḗ:"E",Ề:"E",Ḕ:"E",Ḝ:"E",Ȇ:"E",Ẻ:"E",Ẽ:"E",Ẹ:"E",Ể:"E",Ễ:"E",Ệ:"E",Ì:"I",Í:"I",Î:"I",Ï:"I",Ḯ:"I",Ȋ:"I",Ỉ:"I",Ị:"I",Ð:"D",Ñ:"N",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",Ố:"O",Ṍ:"O",Ṓ:"O",Ȏ:"O",Ỏ:"O",Ọ:"O",Ổ:"O",Ỗ:"O",Ộ:"O",Ờ:"O",Ở:"O",Ỡ:"O",Ớ:"O",Ợ:"O",Ù:"U",Ú:"U",Û:"U",Ü:"U",Ủ:"U",Ụ:"U",Ử:"U",Ữ:"U",Ự:"U",Ý:"Y",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",ấ:"a",ắ:"a",ẳ:"a",ẵ:"a",ặ:"a",æ:"ae",ầ:"a",ằ:"a",ȃ:"a",ả:"a",ạ:"a",ẩ:"a",ẫ:"a",ậ:"a",ç:"c",ḉ:"c",è:"e",é:"e",ê:"e",ë:"e",ế:"e",ḗ:"e",ề:"e",ḕ:"e",ḝ:"e",ȇ:"e",ẻ:"e",ẽ:"e",ẹ:"e",ể:"e",ễ:"e",ệ:"e",ì:"i",í:"i",î:"i",ï:"i",ḯ:"i",ȋ:"i",ỉ:"i",ị:"i",ð:"d",ñ:"n",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",ố:"o",ṍ:"o",ṓ:"o",ȏ:"o",ỏ:"o",ọ:"o",ổ:"o",ỗ:"o",ộ:"o",ờ:"o",ở:"o",ỡ:"o",ớ:"o",ợ:"o",ù:"u",ú:"u",û:"u",ü:"u",ủ:"u",ụ:"u",ử:"u",ữ:"u",ự:"u",ý:"y",ÿ:"y",Ā:"A",ā:"a",Ă:"A",ă:"a",Ą:"A",ą:"a",Ć:"C",ć:"c",Ĉ:"C",ĉ:"c",Ċ:"C",ċ:"c",Č:"C",č:"c",C̆:"C",c̆:"c",Ď:"D",ď:"d",Đ:"D",đ:"d",Ē:"E",ē:"e",Ĕ:"E",ĕ:"e",Ė:"E",ė:"e",Ę:"E",ę:"e",Ě:"E",ě:"e",Ĝ:"G",Ǵ:"G",ĝ:"g",ǵ:"g",Ğ:"G",ğ:"g",Ġ:"G",ġ:"g",Ģ:"G",ģ:"g",Ĥ:"H",ĥ:"h",Ħ:"H",ħ:"h",Ḫ:"H",ḫ:"h",Ĩ:"I",ĩ:"i",Ī:"I",ī:"i",Ĭ:"I",ĭ:"i",Į:"I",į:"i",İ:"I",ı:"i",IJ:"IJ",ij:"ij",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",Ḱ:"K",ḱ:"k",K̆:"K",k̆:"k",Ĺ:"L",ĺ:"l",Ļ:"L",ļ:"l",Ľ:"L",ľ:"l",Ŀ:"L",ŀ:"l",Ł:"l",ł:"l",Ḿ:"M",ḿ:"m",M̆:"M",m̆:"m",Ń:"N",ń:"n",Ņ:"N",ņ:"n",Ň:"N",ň:"n",ʼn:"n",N̆:"N",n̆:"n",Ō:"O",ō:"o",Ŏ:"O",ŏ:"o",Ő:"O",ő:"o",Œ:"OE",œ:"oe",P̆:"P",p̆:"p",Ŕ:"R",ŕ:"r",Ŗ:"R",ŗ:"r",Ř:"R",ř:"r",R̆:"R",r̆:"r",Ȓ:"R",ȓ:"r",Ś:"S",ś:"s",Ŝ:"S",ŝ:"s",Ş:"S",Ș:"S",ș:"s",ş:"s",Š:"S",š:"s",Ţ:"T",ţ:"t",ț:"t",Ț:"T",Ť:"T",ť:"t",Ŧ:"T",ŧ:"t",T̆:"T",t̆:"t",Ũ:"U",ũ:"u",Ū:"U",ū:"u",Ŭ:"U",ŭ:"u",Ů:"U",ů:"u",Ű:"U",ű:"u",Ų:"U",ų:"u",Ȗ:"U",ȗ:"u",V̆:"V",v̆:"v",Ŵ:"W",ŵ:"w",Ẃ:"W",ẃ:"w",X̆:"X",x̆:"x",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Y̆:"Y",y̆:"y",Ź:"Z",ź:"z",Ż:"Z",ż:"z",Ž:"Z",ž:"z",ſ:"s",ƒ:"f",Ơ:"O",ơ:"o",Ư:"U",ư:"u",Ǎ:"A",ǎ:"a",Ǐ:"I",ǐ:"i",Ǒ:"O",ǒ:"o",Ǔ:"U",ǔ:"u",Ǖ:"U",ǖ:"u",Ǘ:"U",ǘ:"u",Ǚ:"U",ǚ:"u",Ǜ:"U",ǜ:"u",Ứ:"U",ứ:"u",Ṹ:"U",ṹ:"u",Ǻ:"A",ǻ:"a",Ǽ:"AE",ǽ:"ae",Ǿ:"O",ǿ:"o",Þ:"TH",þ:"th",Ṕ:"P",ṕ:"p",Ṥ:"S",ṥ:"s",X́:"X",x́:"x",Ѓ:"Г",ѓ:"г",Ќ:"К",ќ:"к",A̋:"A",a̋:"a",E̋:"E",e̋:"e",I̋:"I",i̋:"i",Ǹ:"N",ǹ:"n",Ồ:"O",ồ:"o",Ṑ:"O",ṑ:"o",Ừ:"U",ừ:"u",Ẁ:"W",ẁ:"w",Ỳ:"Y",ỳ:"y",Ȁ:"A",ȁ:"a",Ȅ:"E",ȅ:"e",Ȉ:"I",ȉ:"i",Ȍ:"O",ȍ:"o",Ȑ:"R",ȑ:"r",Ȕ:"U",ȕ:"u",B̌:"B",b̌:"b",Č̣:"C",č̣:"c",Ê̌:"E",ê̌:"e",F̌:"F",f̌:"f",Ǧ:"G",ǧ:"g",Ȟ:"H",ȟ:"h",J̌:"J",ǰ:"j",Ǩ:"K",ǩ:"k",M̌:"M",m̌:"m",P̌:"P",p̌:"p",Q̌:"Q",q̌:"q",Ř̩:"R",ř̩:"r",Ṧ:"S",ṧ:"s",V̌:"V",v̌:"v",W̌:"W",w̌:"w",X̌:"X",x̌:"x",Y̌:"Y",y̌:"y",A̧:"A",a̧:"a",B̧:"B",b̧:"b",Ḑ:"D",ḑ:"d",Ȩ:"E",ȩ:"e",Ɛ̧:"E",ɛ̧:"e",Ḩ:"H",ḩ:"h",I̧:"I",i̧:"i",Ɨ̧:"I",ɨ̧:"i",M̧:"M",m̧:"m",O̧:"O",o̧:"o",Q̧:"Q",q̧:"q",U̧:"U",u̧:"u",X̧:"X",x̧:"x",Z̧:"Z",z̧:"z",й:"и",Й:"И",ё:"е",Ё:"Е"},t=Object.keys(e).join("|"),n=new RegExp(t,"g"),o=new RegExp(t,"");function r(c){return e[c]}var s=function(c){return c.replace(n,r)},i=function(c){return!!c.match(o)};return yg.exports=s,yg.exports.has=i,yg.exports.remove=s,yg.exports}var h6e=b6e();const ms=Zr(h6e);function w5(e){return e?ms(e).replace(/[\s\./]+/g,"-").replace(/[^\p{L}\p{N}_-]+/gu,"").toLowerCase().replace(/-+/g,"-").replace(/(^-+)|(-+$)/g,""):""}function If(e){let t;if(e){try{t=new URL(e,"http://example.com").pathname.split("/").pop()}catch{}if(t)return t}}function OH(e){const t=e.split("?"),n=t[1],o=t[0];return n?o+"?"+n.split("&").map(r=>r.split("=")).map(r=>r.map(decodeURIComponent)).sort((r,s)=>r[0].localeCompare(s[0])).map(r=>r.map(encodeURIComponent)).map(r=>r.join("=")).join("&"):o}function m6e(e){const t=Object.fromEntries(Object.entries(e).map(([n,o])=>[OH(n),o]));return(n,o)=>{const{parse:r=!0}=n;let s=n.path;if(!s&&n.url){const{rest_route:l,...u}=Lh(n.url);typeof l=="string"&&(s=tn(l,u))}if(typeof s!="string")return o(n);const i=n.method||"GET",c=OH(s);if(i==="GET"&&t[c]){const l=t[c];return delete t[c],yH(l,!!r)}else if(i==="OPTIONS"&&t[i]&&t[i][c]){const l=t[i][c];return delete t[i][c],yH(l,!!r)}return o(n)}}function yH(e,t){return Promise.resolve(t?e.body:new window.Response(JSON.stringify(e.body),{status:200,statusText:"OK",headers:e.headers}))}const g6e=({path:e,url:t,...n},o)=>({...n,url:t&&tn(t,o),path:e&&tn(e,o)}),AH=e=>e.json?e.json():Promise.reject(e),M6e=e=>{if(!e)return{};const t=e.match(/<([^>]+)>; rel="next"/);return t?{next:t[1]}:{}},vH=e=>{const{next:t}=M6e(e.headers.get("link"));return t},z6e=e=>{const t=!!e.path&&e.path.indexOf("per_page=-1")!==-1,n=!!e.url&&e.url.indexOf("per_page=-1")!==-1;return t||n},Yre=async(e,t)=>{if(e.parse===!1||!z6e(e))return t(e);const n=await Tt({...g6e(e,{per_page:100}),parse:!1}),o=await AH(n);if(!Array.isArray(o))return o;let r=vH(n);if(!r)return o;let s=[].concat(o);for(;r;){const i=await Tt({...e,path:void 0,url:r,parse:!1}),c=await AH(i);s=s.concat(c),r=vH(i)}return s},O6e=new Set(["PATCH","PUT","DELETE"]),y6e="GET",A6e=(e,t)=>{const{method:n=y6e}=e;return O6e.has(n.toUpperCase())&&(e={...e,headers:{...e.headers,"X-HTTP-Method-Override":n,"Content-Type":"application/json"},method:"POST"}),t(e)},v6e=(e,t)=>(typeof e.url=="string"&&!MH(e.url,"_locale")&&(e.url=tn(e.url,{_locale:"user"})),typeof e.path=="string"&&!MH(e.path,"_locale")&&(e.path=tn(e.path,{_locale:"user"})),t(e)),x6e=(e,t=!0)=>t?e.status===204?null:e.json?e.json():Promise.reject(e):e,w6e=e=>{const t={code:"invalid_json",message:m("The response is not a valid JSON response.")};if(!e||!e.json)throw t;return e.json().catch(()=>{throw t})},Zre=(e,t=!0)=>Promise.resolve(x6e(e,t)).catch(n=>LN(n,t));function LN(e,t=!0){if(!t)throw e;return w6e(e).then(n=>{const o={code:"unknown_error",message:m("An unknown error occurred.")};throw n||o})}function _6e(e){const t=!!e.method&&e.method==="POST";return(!!e.path&&e.path.indexOf("/wp/v2/media")!==-1||!!e.url&&e.url.indexOf("/wp/v2/media")!==-1)&&t}const k6e=(e,t)=>{if(!_6e(e))return t(e);let n=0;const o=5,r=s=>(n++,t({path:`/wp/v2/media/${s}/post-process`,method:"POST",data:{action:"create-image-subsizes"},parse:!1}).catch(()=>n<o?r(s):(t({path:`/wp/v2/media/${s}?force=true`,method:"DELETE"}),Promise.reject())));return t({...e,parse:!1}).catch(s=>{if(!s.headers)return Promise.reject(s);const i=s.headers.get("x-wp-upload-attachment-id");return s.status>=500&&s.status<600&&i?r(i).catch(()=>e.parse!==!1?Promise.reject({code:"post_process",message:m("Media upload failed. If this is a photo or a large image, please scale it down and try again.")}):Promise.reject(s)):LN(s,e.parse)}).then(s=>Zre(s,e.parse))},S6e=e=>(t,n)=>{if(typeof t.url=="string"){const o=yE(t.url,"wp_theme_preview");o===void 0?t.url=tn(t.url,{wp_theme_preview:e}):o===""&&(t.url=C4(t.url,"wp_theme_preview"))}if(typeof t.path=="string"){const o=yE(t.path,"wp_theme_preview");o===void 0?t.path=tn(t.path,{wp_theme_preview:e}):o===""&&(t.path=C4(t.path,"wp_theme_preview"))}return n(t)},C6e={Accept:"application/json, */*;q=0.1"},q6e={credentials:"include"},Qre=[v6e,Gre,A6e,Yre];function R6e(e){Qre.unshift(e)}const Jre=e=>{if(e.status>=200&&e.status<300)return e;throw e},T6e=e=>{const{url:t,path:n,data:o,parse:r=!0,...s}=e;let{body:i,headers:c}=e;return c={...C6e,...c},o&&(i=JSON.stringify(o),c["Content-Type"]="application/json"),window.fetch(t||n||window.location.href,{...q6e,...s,body:i,headers:c}).then(u=>Promise.resolve(u).then(Jre).catch(d=>LN(d,r)).then(d=>Zre(d,r)),u=>{throw u&&u.name==="AbortError"?u:{code:"fetch_error",message:m("You are probably offline.")}})};let e0e=T6e;function E6e(e){e0e=e}function Tt(e){return Qre.reduceRight((n,o)=>r=>o(r,n),e0e)(e).catch(n=>n.code!=="rest_cookie_invalid_nonce"?Promise.reject(n):window.fetch(Tt.nonceEndpoint).then(Jre).then(o=>o.text()).then(o=>(Tt.nonceMiddleware.nonce=o,Tt(e))))}Tt.use=R6e;Tt.setFetchHandler=E6e;Tt.createNonceMiddleware=n6e;Tt.createPreloadingMiddleware=m6e;Tt.createRootURLMiddleware=o6e;Tt.fetchAllMiddleware=Yre;Tt.mediaUploadMiddleware=k6e;Tt.createThemePreviewMiddleware=S6e;const xH=Object.create(null);function Ke(e,t={}){const{since:n,version:o,alternative:r,plugin:s,link:i,hint:c}=t,l=s?` from ${s}`:"",u=n?` since version ${n}`:"",d=o?` and will be removed${l} in version ${o}`:"",p=r?` Please use ${r} instead.`:"",f=i?` See: ${i}`:"",b=c?` Note: ${c}`:"",h=`${e} is deprecated${u}${d}.${p}${f}${b}`;h in xH||(EN("deprecated",e,t,h),console.warn(h),xH[h]=!0)}function os(e){return`Minified Redux error #${e}; visit https://redux.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `}var W6e=typeof Symbol=="function"&&Symbol.observable||"@@observable",wH=W6e,gS=()=>Math.random().toString(36).substring(7).split("").join("."),N6e={INIT:`@@redux/INIT${gS()}`,REPLACE:`@@redux/REPLACE${gS()}`,PROBE_UNKNOWN_ACTION:()=>`@@redux/PROBE_UNKNOWN_ACTION${gS()}`},_H=N6e;function B6e(e){if(typeof e!="object"||e===null)return!1;let t=e;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t||Object.getPrototypeOf(e)===null}function t0e(e,t,n){if(typeof e!="function")throw new Error(os(2));if(typeof t=="function"&&typeof n=="function"||typeof n=="function"&&typeof arguments[3]=="function")throw new Error(os(0));if(typeof t=="function"&&typeof n>"u"&&(n=t,t=void 0),typeof n<"u"){if(typeof n!="function")throw new Error(os(1));return n(t0e)(e,t)}let o=e,r=t,s=new Map,i=s,c=0,l=!1;function u(){i===s&&(i=new Map,s.forEach((z,A)=>{i.set(A,z)}))}function d(){if(l)throw new Error(os(3));return r}function p(z){if(typeof z!="function")throw new Error(os(4));if(l)throw new Error(os(5));let A=!0;u();const _=c++;return i.set(_,z),function(){if(A){if(l)throw new Error(os(6));A=!1,u(),i.delete(_),s=null}}}function f(z){if(!B6e(z))throw new Error(os(7));if(typeof z.type>"u")throw new Error(os(8));if(typeof z.type!="string")throw new Error(os(17));if(l)throw new Error(os(9));try{l=!0,r=o(r,z)}finally{l=!1}return(s=i).forEach(_=>{_()}),z}function b(z){if(typeof z!="function")throw new Error(os(10));o=z,f({type:_H.REPLACE})}function h(){const z=p;return{subscribe(A){if(typeof A!="object"||A===null)throw new Error(os(11));function _(){const M=A;M.next&&M.next(d())}return _(),{unsubscribe:z(_)}},[wH](){return this}}}return f({type:_H.INIT}),{dispatch:f,subscribe:p,getState:d,replaceReducer:b,[wH]:h}}function L6e(...e){return e.length===0?t=>t:e.length===1?e[0]:e.reduce((t,n)=>(...o)=>t(n(...o)))}function P6e(...e){return t=>(n,o)=>{const r=t(n,o);let s=()=>{throw new Error(os(15))};const i={getState:r.getState,dispatch:(l,...u)=>s(l,...u)},c=e.map(l=>l(i));return s=L6e(...c)(r.dispatch),{...r,dispatch:s}}}var MS,kH;function j6e(){if(kH)return MS;kH=1;function e(i){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?e=function(c){return typeof c}:e=function(c){return c&&typeof Symbol=="function"&&c.constructor===Symbol&&c!==Symbol.prototype?"symbol":typeof c},e(i)}function t(i,c){if(!(i instanceof c))throw new TypeError("Cannot call a class as a function")}function n(i,c){for(var l=0;l<c.length;l++){var u=c[l];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(i,u.key,u)}}function o(i,c,l){return c&&n(i.prototype,c),i}function r(i,c){var l=i._map,u=i._arrayTreeMap,d=i._objectTreeMap;if(l.has(c))return l.get(c);for(var p=Object.keys(c).sort(),f=Array.isArray(c)?u:d,b=0;b<p.length;b++){var h=p[b];if(f=f.get(h),f===void 0)return;var g=c[h];if(f=f.get(g),f===void 0)return}var z=f.get("_ekm_value");if(z)return l.delete(z[0]),z[0]=c,f.set("_ekm_value",z),l.set(c,z),z}var s=function(){function i(c){if(t(this,i),this.clear(),c instanceof i){var l=[];c.forEach(function(d,p){l.push([p,d])}),c=l}if(c!=null)for(var u=0;u<c.length;u++)this.set(c[u][0],c[u][1])}return o(i,[{key:"set",value:function(l,u){if(l===null||e(l)!=="object")return this._map.set(l,u),this;for(var d=Object.keys(l).sort(),p=[l,u],f=Array.isArray(l)?this._arrayTreeMap:this._objectTreeMap,b=0;b<d.length;b++){var h=d[b];f.has(h)||f.set(h,new i),f=f.get(h);var g=l[h];f.has(g)||f.set(g,new i),f=f.get(g)}var z=f.get("_ekm_value");return z&&this._map.delete(z[0]),f.set("_ekm_value",p),this._map.set(l,p),this}},{key:"get",value:function(l){if(l===null||e(l)!=="object")return this._map.get(l);var u=r(this,l);if(u)return u[1]}},{key:"has",value:function(l){return l===null||e(l)!=="object"?this._map.has(l):r(this,l)!==void 0}},{key:"delete",value:function(l){return this.has(l)?(this.set(l,void 0),!0):!1}},{key:"forEach",value:function(l){var u=this,d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this;this._map.forEach(function(p,f){f!==null&&e(f)==="object"&&(p=p[1]),l.call(d,p,f,u)})}},{key:"clear",value:function(){this._map=new Map,this._arrayTreeMap=new Map,this._objectTreeMap=new Map}},{key:"size",get:function(){return this._map.size}}]),i}();return MS=s,MS}var I6e=j6e();const Va=Zr(I6e);function D6e(e){return!!e&&typeof e[Symbol.iterator]=="function"&&typeof e.next=="function"}var zS={},Vo={},rA={},SH;function n0e(){if(SH)return rA;SH=1,Object.defineProperty(rA,"__esModule",{value:!0});var e={all:Symbol("all"),error:Symbol("error"),fork:Symbol("fork"),join:Symbol("join"),race:Symbol("race"),call:Symbol("call"),cps:Symbol("cps"),subscribe:Symbol("subscribe")};return rA.default=e,rA}var CH;function o0e(){if(CH)return Vo;CH=1,Object.defineProperty(Vo,"__esModule",{value:!0}),Vo.createChannel=Vo.subscribe=Vo.cps=Vo.apply=Vo.call=Vo.invoke=Vo.delay=Vo.race=Vo.join=Vo.fork=Vo.error=Vo.all=void 0;var e=n0e(),t=n(e);function n(o){return o&&o.__esModule?o:{default:o}}return Vo.all=function(r){return{type:t.default.all,value:r}},Vo.error=function(r){return{type:t.default.error,error:r}},Vo.fork=function(r){for(var s=arguments.length,i=Array(s>1?s-1:0),c=1;c<s;c++)i[c-1]=arguments[c];return{type:t.default.fork,iterator:r,args:i}},Vo.join=function(r){return{type:t.default.join,task:r}},Vo.race=function(r){return{type:t.default.race,competitors:r}},Vo.delay=function(r){return new Promise(function(s){setTimeout(function(){return s(!0)},r)})},Vo.invoke=function(r){for(var s=arguments.length,i=Array(s>1?s-1:0),c=1;c<s;c++)i[c-1]=arguments[c];return{type:t.default.call,func:r,context:null,args:i}},Vo.call=function(r,s){for(var i=arguments.length,c=Array(i>2?i-2:0),l=2;l<i;l++)c[l-2]=arguments[l];return{type:t.default.call,func:r,context:s,args:c}},Vo.apply=function(r,s,i){return{type:t.default.call,func:r,context:s,args:i}},Vo.cps=function(r){for(var s=arguments.length,i=Array(s>1?s-1:0),c=1;c<s;c++)i[c-1]=arguments[c];return{type:t.default.cps,func:r,args:i}},Vo.subscribe=function(r){return{type:t.default.subscribe,channel:r}},Vo.createChannel=function(r){var s=[],i=function(u){return s.push(u),function(){return s.splice(s.indexOf(u),1)}},c=function(u){return s.forEach(function(d){return d(u)})};return r(c),{subscribe:i}},Vo}var sA={},ts={},iA={},qH;function _5(){if(qH)return iA;qH=1,Object.defineProperty(iA,"__esModule",{value:!0});var e=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(s){return typeof s}:function(s){return s&&typeof Symbol=="function"&&s.constructor===Symbol?"symbol":typeof s},t=n0e(),n=o(t);function o(s){return s&&s.__esModule?s:{default:s}}var r={obj:function(i){return(typeof i>"u"?"undefined":e(i))==="object"&&!!i},all:function(i){return r.obj(i)&&i.type===n.default.all},error:function(i){return r.obj(i)&&i.type===n.default.error},array:Array.isArray,func:function(i){return typeof i=="function"},promise:function(i){return i&&r.func(i.then)},iterator:function(i){return i&&r.func(i.next)&&r.func(i.throw)},fork:function(i){return r.obj(i)&&i.type===n.default.fork},join:function(i){return r.obj(i)&&i.type===n.default.join},race:function(i){return r.obj(i)&&i.type===n.default.race},call:function(i){return r.obj(i)&&i.type===n.default.call},cps:function(i){return r.obj(i)&&i.type===n.default.cps},subscribe:function(i){return r.obj(i)&&i.type===n.default.subscribe},channel:function(i){return r.obj(i)&&r.func(i.subscribe)}};return iA.default=r,iA}var RH;function F6e(){if(RH)return ts;RH=1,Object.defineProperty(ts,"__esModule",{value:!0}),ts.iterator=ts.array=ts.object=ts.error=ts.any=void 0;var e=_5(),t=n(e);function n(l){return l&&l.__esModule?l:{default:l}}var o=ts.any=function(u,d,p,f){return f(u),!0},r=ts.error=function(u,d,p,f,b){return t.default.error(u)?(b(u.error),!0):!1},s=ts.object=function(u,d,p,f,b){if(!t.default.all(u)||!t.default.obj(u.value))return!1;var h={},g=Object.keys(u.value),z=0,A=!1,_=function(y,k){A||(h[y]=k,z++,z===g.length&&f(h))},v=function(y,k){A||(A=!0,b(k))};return g.map(function(M){p(u.value[M],function(y){return _(M,y)},function(y){return v(M,y)})}),!0},i=ts.array=function(u,d,p,f,b){if(!t.default.all(u)||!t.default.array(u.value))return!1;var h=[],g=0,z=!1,A=function(M,y){z||(h[M]=y,g++,g===u.value.length&&f(h))},_=function(M,y){z||(z=!0,b(y))};return u.value.map(function(v,M){p(v,function(y){return A(M,y)},function(y){return _(M,y)})}),!0},c=ts.iterator=function(u,d,p,f,b){return t.default.iterator(u)?(p(u,d,b),!0):!1};return ts.default=[r,c,i,s,o],ts}var TH;function $6e(){if(TH)return sA;TH=1,Object.defineProperty(sA,"__esModule",{value:!0});var e=F6e(),t=r(e),n=_5(),o=r(n);function r(c){return c&&c.__esModule?c:{default:c}}function s(c){if(Array.isArray(c)){for(var l=0,u=Array(c.length);l<c.length;l++)u[l]=c[l];return u}else return Array.from(c)}var i=function(){var l=arguments.length<=0||arguments[0]===void 0?[]:arguments[0],u=[].concat(s(l),s(t.default)),d=function p(f){var b=arguments.length<=1||arguments[1]===void 0?function(){}:arguments[1],h=arguments.length<=2||arguments[2]===void 0?function(){}:arguments[2],g=function(_){var v=function(k){return function(S){try{var C=k?_.throw(S):_.next(S),R=C.value,T=C.done;if(T)return b(R);M(R)}catch(E){return h(E)}}},M=function y(k){u.some(function(S){return S(k,y,p,v(!1),v(!0))})};v(!1)()},z=o.default.iterator(f)?f:regeneratorRuntime.mark(function A(){return regeneratorRuntime.wrap(function(v){for(;;)switch(v.prev=v.next){case 0:return v.next=2,f;case 2:return v.abrupt("return",v.sent);case 3:case"end":return v.stop()}},A,this)})();g(z)};return d};return sA.default=i,sA}var ai={},aA={},EH;function V6e(){if(EH)return aA;EH=1,Object.defineProperty(aA,"__esModule",{value:!0});var e=function(){var n=[];return{subscribe:function(r){return n.push(r),function(){n=n.filter(function(s){return s!==r})}},dispatch:function(r){n.slice().forEach(function(s){return s(r)})}}};return aA.default=e,aA}var WH;function H6e(){if(WH)return ai;WH=1,Object.defineProperty(ai,"__esModule",{value:!0}),ai.race=ai.join=ai.fork=ai.promise=void 0;var e=_5(),t=s(e),n=o0e(),o=V6e(),r=s(o);function s(f){return f&&f.__esModule?f:{default:f}}var i=ai.promise=function(b,h,g,z,A){return t.default.promise(b)?(b.then(h,A),!0):!1},c=new Map,l=ai.fork=function(b,h,g){if(!t.default.fork(b))return!1;var z=Symbol("fork"),A=(0,r.default)();c.set(z,A),g(b.iterator.apply(null,b.args),function(v){return A.dispatch(v)},function(v){return A.dispatch((0,n.error)(v))});var _=A.subscribe(function(){_(),c.delete(z)});return h(z),!0},u=ai.join=function(b,h,g,z,A){if(!t.default.join(b))return!1;var _=c.get(b.task);return _?function(){var v=_.subscribe(function(M){v(),h(M)})}():A("join error : task not found"),!0},d=ai.race=function(b,h,g,z,A){if(!t.default.race(b))return!1;var _=!1,v=function(k,S,C){_||(_=!0,k[S]=C,h(k))},M=function(k){_||A(k)};return t.default.array(b.competitors)?function(){var y=b.competitors.map(function(){return!1});b.competitors.forEach(function(k,S){g(k,function(C){return v(y,S,C)},M)})}():function(){var y=Object.keys(b.competitors).reduce(function(k,S){return k[S]=!1,k},{});Object.keys(b.competitors).forEach(function(k){g(b.competitors[k],function(S){return v(y,k,S)},M)})}(),!0},p=function(b,h){if(!t.default.subscribe(b))return!1;if(!t.default.channel(b.channel))throw new Error('the first argument of "subscribe" must be a valid channel');var g=b.channel.subscribe(function(z){g&&g(),h(z)});return!0};return ai.default=[i,l,u,d,p],ai}var Cu={},NH;function U6e(){if(NH)return Cu;NH=1,Object.defineProperty(Cu,"__esModule",{value:!0}),Cu.cps=Cu.call=void 0;var e=_5(),t=n(e);function n(i){return i&&i.__esModule?i:{default:i}}function o(i){if(Array.isArray(i)){for(var c=0,l=Array(i.length);c<i.length;c++)l[c]=i[c];return l}else return Array.from(i)}var r=Cu.call=function(c,l,u,d,p){if(!t.default.call(c))return!1;try{l(c.func.apply(c.context,c.args))}catch(f){p(f)}return!0},s=Cu.cps=function(c,l,u,d,p){var f;return t.default.cps(c)?((f=c.func).call.apply(f,[null].concat(o(c.args),[function(b,h){b?p(b):l(h)}])),!0):!1};return Cu.default=[r,s],Cu}var BH;function X6e(){return BH||(BH=1,function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.wrapControls=e.asyncControls=e.create=void 0;var t=o0e();Object.keys(t).forEach(function(u){u!=="default"&&Object.defineProperty(e,u,{enumerable:!0,get:function(){return t[u]}})});var n=$6e(),o=l(n),r=H6e(),s=l(r),i=U6e(),c=l(i);function l(u){return u&&u.__esModule?u:{default:u}}e.create=o.default,e.asyncControls=s.default,e.wrapControls=c.default}(zS)),zS}var G6e=X6e();function r0e(e){return!!e&&(typeof e=="object"||typeof e=="function")&&typeof e.then=="function"}function AE(e){return a3(e)&&typeof e.type=="string"}function K6e(e,t){return AE(e)&&e.type===t}function Y6e(e={},t){const n=Object.entries(e).map(([s,i])=>(c,l,u,d,p)=>{if(!K6e(c,s))return!1;const f=i(c);return r0e(f)?f.then(d,p):d(f),!0}),o=(s,i)=>AE(s)?(t(s),i(),!0):!1;n.push(o);const r=G6e.create(n);return s=>new Promise((i,c)=>r(s,l=>{AE(l)&&t(l),i(l)},c))}function Z6e(e={}){return t=>{const n=Y6e(e,t.dispatch);return o=>r=>D6e(r)?n(r):o(r)}}function Or(e,t){return n=>{const o=e(n);return o.displayName=Q6e(t,n),o}}const Q6e=(e,t)=>{const n=t.displayName||t.name||"Component";return`${k4(e??"")}(${n})`},F1=(e,t,n)=>{let o,r,s=0,i,c,l,u=0,d=!1,p=!1,f=!0;n&&(d=!!n.leading,p="maxWait"in n,n.maxWait!==void 0&&(s=Math.max(n.maxWait,t)),f="trailing"in n?!!n.trailing:f);function b(E){const B=o,N=r;return o=void 0,r=void 0,u=E,i=e.apply(N,B),i}function h(E,B){c=setTimeout(E,B)}function g(){c!==void 0&&clearTimeout(c)}function z(E){return u=E,h(M,t),d?b(E):i}function A(E){return E-(l||0)}function _(E){const B=A(E),N=E-u,j=t-B;return p?Math.min(j,s-N):j}function v(E){const B=A(E),N=E-u;return l===void 0||B>=t||B<0||p&&N>=s}function M(){const E=Date.now();if(v(E))return k(E);h(M,_(E))}function y(){c=void 0}function k(E){return y(),f&&o?b(E):(o=r=void 0,i)}function S(){g(),u=0,y(),o=l=r=void 0}function C(){return R()?k(Date.now()):i}function R(){return c!==void 0}function T(...E){const B=Date.now(),N=v(B);if(o=E,r=this,l=B,N){if(!R())return z(l);if(p)return h(M,t),b(l)}return R()||h(M,t),i}return T.cancel=S,T.flush=C,T.pending=R,T},PN=(e,t,n)=>{let o=!0,r=!0;return n&&(o="leading"in n?!!n.leading:o,r="trailing"in n?!!n.trailing:r),F1(e,t,{leading:o,trailing:r,maxWait:t})};function gc(){const e=new Map,t=new Map;function n(o){const r=t.get(o);if(r)for(const s of r)s()}return{get(o){return e.get(o)},set(o,r){e.set(o,r),n(o)},delete(o){e.delete(o),n(o)},subscribe(o,r){let s=t.get(o);return s||(s=new Set,t.set(o,s)),s.add(r),()=>{s.delete(r),s.size===0&&t.delete(o)}}}}const s0e=(e=!1)=>(...t)=>(...n)=>{const o=t.flat();return e&&o.reverse(),o.reduce((r,s)=>[s(...r)],n)[0]},Ku=s0e(),Co=s0e(!0);function J6e(e){return Or(t=>n=>e(n)?a.jsx(t,{...n}):null,"ifCondition")}function i0e(e,t){if(e===t)return!0;const n=Object.keys(e),o=Object.keys(t);if(n.length!==o.length)return!1;let r=0;for(;r<n.length;){const s=n[r],i=e[s];if(i===void 0&&!t.hasOwnProperty(s)||i!==t[s])return!1;r++}return!0}function eSe(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let n=0,o=e.length;n<o;n++)if(e[n]!==t[n])return!1;return!0}function ds(e,t){if(e&&t){if(e.constructor===Object&&t.constructor===Object)return i0e(e,t);if(Array.isArray(e)&&Array.isArray(t))return eSe(e,t)}return e===t}const tSe=Or(function(e){return e.prototype instanceof x.Component?class extends e{shouldComponentUpdate(t,n){return!ds(t,this.props)||!ds(n,this.state)}}:class extends x.Component{shouldComponentUpdate(t){return!ds(t,this.props)}render(){return a.jsx(e,{...this.props})}}},"pure"),LH=new WeakMap;function nSe(e){const t=LH.get(e)||0;return LH.set(e,t+1),t}function vt(e,t,n){return x.useMemo(()=>{if(n)return n;const o=nSe(e);return t?`${t}-${o}`:o},[e,n,t])}const oSe=Or(e=>t=>{const n=vt(e);return a.jsx(e,{...t,instanceId:n})},"instanceId"),rSe=Or(e=>class extends x.Component{constructor(n){super(n),this.timeouts=[],this.setTimeout=this.setTimeout.bind(this),this.clearTimeout=this.clearTimeout.bind(this)}componentWillUnmount(){this.timeouts.forEach(clearTimeout)}setTimeout(n,o){const r=setTimeout(()=>{n(),this.clearTimeout(r)},o);return this.timeouts.push(r),r}clearTimeout(n){clearTimeout(n),this.timeouts=this.timeouts.filter(o=>o!==n)}render(){return a.jsx(e,{...this.props,setTimeout:this.setTimeout,clearTimeout:this.clearTimeout})}},"withSafeTimeout");function sSe(e){return[e?'[tabindex]:not([tabindex^="-"])':"[tabindex]","a[href]","button:not([disabled])",'input:not([type="hidden"]):not([disabled])',"select:not([disabled])","textarea:not([disabled])",'iframe:not([tabindex^="-"])',"object","embed","area[href]","[contenteditable]:not([contenteditable=false])"].join(",")}function a0e(e){return e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0}function iSe(e){const t=e.closest("map[name]");if(!t)return!1;const n=e.ownerDocument.querySelector('img[usemap="#'+t.name+'"]');return!!n&&a0e(n)}function k5(e,{sequential:t=!1}={}){const n=e.querySelectorAll(sSe(t));return Array.from(n).filter(o=>{if(!a0e(o))return!1;const{nodeName:r}=o;return r==="AREA"?iSe(o):!0})}const aSe=Object.freeze(Object.defineProperty({__proto__:null,find:k5},Symbol.toStringTag,{value:"Module"}));function vE(e){const t=e.getAttribute("tabindex");return t===null?0:parseInt(t,10)}function c0e(e){return vE(e)!==-1}function cSe(){const e={};return function(n,o){const{nodeName:r,type:s,checked:i,name:c}=o;if(r!=="INPUT"||s!=="radio"||!c)return n.concat(o);const l=e.hasOwnProperty(c);if(!(i||!l))return n;if(l){const d=e[c];n=n.filter(p=>p!==d)}return e[c]=o,n.concat(o)}}function lSe(e,t){return{element:e,index:t}}function uSe(e){return e.element}function dSe(e,t){const n=vE(e.element),o=vE(t.element);return n===o?e.index-t.index:n-o}function jN(e){return e.filter(c0e).map(lSe).sort(dSe).map(uSe).reduce(cSe(),[])}function pSe(e){return jN(k5(e))}function fSe(e){return jN(k5(e.ownerDocument.body)).reverse().find(t=>e.compareDocumentPosition(t)&e.DOCUMENT_POSITION_PRECEDING)}function bSe(e){return jN(k5(e.ownerDocument.body)).find(t=>e.compareDocumentPosition(t)&e.DOCUMENT_POSITION_FOLLOWING)}const hSe=Object.freeze(Object.defineProperty({__proto__:null,find:pSe,findNext:bSe,findPrevious:fSe,isTabbableIndex:c0e},Symbol.toStringTag,{value:"Module"}));function Wv(e){if(!e.collapsed){const s=Array.from(e.getClientRects());if(s.length===1)return s[0];const i=s.filter(({width:p})=>p>1);if(i.length===0)return e.getBoundingClientRect();if(i.length===1)return i[0];let{top:c,bottom:l,left:u,right:d}=i[0];for(const{top:p,bottom:f,left:b,right:h}of i)p<c&&(c=p),f>l&&(l=f),b<u&&(u=b),h>d&&(d=h);return new window.DOMRect(u,c,d-u,l-c)}const{startContainer:t}=e,{ownerDocument:n}=t;if(t.nodeName==="BR"){const{parentNode:s}=t,i=Array.from(s.childNodes).indexOf(t);e=n.createRange(),e.setStart(s,i),e.setEnd(s,i)}const o=e.getClientRects();if(o.length>1)return null;let r=o[0];if(!r||r.height===0){const s=n.createTextNode("");e=e.cloneRange(),e.insertNode(s),r=e.getClientRects()[0],s.parentNode,s.parentNode.removeChild(s)}return r}function xE(e){const t=e.getSelection(),n=t.rangeCount?t.getRangeAt(0):null;return n?Wv(n):null}function l0e(e){e.defaultView;const t=e.defaultView.getSelection(),n=t.rangeCount?t.getRangeAt(0):null;return!!n&&!n.collapsed}function IN(e){return e?.nodeName==="INPUT"}function md(e){const t=["button","checkbox","hidden","file","radio","image","range","reset","submit","number","email","time"];return IN(e)&&e.type&&!t.includes(e.type)||e.nodeName==="TEXTAREA"||e.contentEditable==="true"}function mSe(e){if(!IN(e)&&!md(e))return!1;try{const{selectionStart:t,selectionEnd:n}=e;return t===null||t!==n}catch{return!0}}function gSe(e){return l0e(e)||!!e.activeElement&&mSe(e.activeElement)}function MSe(e){return!!e.activeElement&&(IN(e.activeElement)||md(e.activeElement)||l0e(e))}function q4(e){return e.ownerDocument.defaultView,e.ownerDocument.defaultView.getComputedStyle(e)}function ps(e,t="vertical"){if(e){if((t==="vertical"||t==="all")&&e.scrollHeight>e.clientHeight){const{overflowY:n}=q4(e);if(/(auto|scroll)/.test(n))return e}if((t==="horizontal"||t==="all")&&e.scrollWidth>e.clientWidth){const{overflowX:n}=q4(e);if(/(auto|scroll)/.test(n))return e}return e.ownerDocument===e.parentNode?e:ps(e.parentNode,t)}}function S5(e){return e.tagName==="INPUT"||e.tagName==="TEXTAREA"}function zSe(e){if(S5(e))return e.selectionStart===0&&e.value.length===e.selectionEnd;if(!e.isContentEditable)return!0;const{ownerDocument:t}=e,{defaultView:n}=t,o=n.getSelection(),r=o.rangeCount?o.getRangeAt(0):null;if(!r)return!0;const{startContainer:s,endContainer:i,startOffset:c,endOffset:l}=r;if(s===e&&i===e&&c===0&&l===e.childNodes.length)return!0;e.lastChild;const u=i.nodeType===i.TEXT_NODE?i.data.length:i.childNodes.length;return PH(s,e,"firstChild")&&PH(i,e,"lastChild")&&c===0&&l===u}function PH(e,t,n){let o=t;do{if(e===o)return!0;o=o[n]}while(o);return!1}function u0e(e){if(!e)return!1;const{tagName:t}=e;return S5(e)||t==="BUTTON"||t==="SELECT"}function DN(e){return q4(e).direction==="rtl"}function OSe(e){const t=Array.from(e.getClientRects());if(!t.length)return;const n=Math.min(...t.map(({top:r})=>r));return Math.max(...t.map(({bottom:r})=>r))-n}function d0e(e){const{anchorNode:t,focusNode:n,anchorOffset:o,focusOffset:r}=e,s=t.compareDocumentPosition(n);return s&t.DOCUMENT_POSITION_PRECEDING?!1:s&t.DOCUMENT_POSITION_FOLLOWING?!0:s===0?o<=r:!0}function ySe(e,t,n){if(e.caretRangeFromPoint)return e.caretRangeFromPoint(t,n);if(!e.caretPositionFromPoint)return null;const o=e.caretPositionFromPoint(t,n);if(!o)return null;const r=e.createRange();return r.setStart(o.offsetNode,o.offset),r.collapse(!0),r}function p0e(e,t,n,o){const r=o.style.zIndex,s=o.style.position,{position:i="static"}=q4(o);i==="static"&&(o.style.position="relative"),o.style.zIndex="10000";const c=ySe(e,t,n);return o.style.zIndex=r,o.style.position=s,c}function f0e(e,t,n){let o=n();return(!o||!o.startContainer||!e.contains(o.startContainer))&&(e.scrollIntoView(t),o=n(),!o||!o.startContainer||!e.contains(o.startContainer))?null:o}function b0e(e,t,n=!1){if(S5(e)&&typeof e.selectionStart=="number")return e.selectionStart!==e.selectionEnd?!1:t?e.selectionStart===0:e.value.length===e.selectionStart;if(!e.isContentEditable)return!0;const{ownerDocument:o}=e,{defaultView:r}=o,s=r.getSelection();if(!s||!s.rangeCount)return!1;const i=s.getRangeAt(0),c=i.cloneRange(),l=d0e(s),u=s.isCollapsed;u||c.collapse(!l);const d=Wv(c),p=Wv(i);if(!d||!p)return!1;const f=OSe(i);if(!u&&f&&f>d.height&&l===t)return!1;const b=DN(e)?!t:t,h=e.getBoundingClientRect(),g=b?h.left+1:h.right-1,z=t?h.top+1:h.bottom-1,A=f0e(e,t,()=>p0e(o,g,z,e));if(!A)return!1;const _=Wv(A);if(!_)return!1;const v=t?"top":"bottom",M=b?"left":"right",y=_[v]-p[v],k=_[M]-d[M],S=Math.abs(y)<=1,C=Math.abs(k)<=1;return n?S:S&&C}function OS(e,t){return b0e(e,t)}function jH(e,t){return b0e(e,t,!0)}function ASe(e,t,n){const{ownerDocument:o}=e,r=DN(e)?!t:t,s=e.getBoundingClientRect();n===void 0?n=t?s.right-1:s.left+1:n<=s.left?n=s.left+1:n>=s.right&&(n=s.right-1);const i=r?s.bottom-1:s.top+1;return p0e(o,n,i,e)}function h0e(e,t,n){if(!e)return;if(e.focus(),S5(e)){if(typeof e.selectionStart!="number")return;t?(e.selectionStart=e.value.length,e.selectionEnd=e.value.length):(e.selectionStart=0,e.selectionEnd=0);return}if(!e.isContentEditable)return;const o=f0e(e,t,()=>ASe(e,t,n));if(!o)return;const{ownerDocument:r}=e,{defaultView:s}=r,i=s.getSelection();i.removeAllRanges(),i.addRange(o)}function m0e(e,t){return h0e(e,t,void 0)}function vSe(e,t,n){return h0e(e,t,n?.left)}function g0e(e,t){t.parentNode,t.parentNode.insertBefore(e,t.nextSibling)}function pf(e){e.parentNode,e.parentNode.removeChild(e)}function xSe(e,t){e.parentNode,g0e(t,e.parentNode),pf(e)}function mM(e){const t=e.parentNode;for(;e.firstChild;)t.insertBefore(e.firstChild,e);t.removeChild(e)}function IH(e,t){const n=e.ownerDocument.createElement(t);for(;e.firstChild;)n.appendChild(e.firstChild);return e.parentNode,e.parentNode.replaceChild(n,e),n}function Ag(e,t){t.parentNode,t.parentNode.insertBefore(e,t),e.appendChild(t)}function C5(e){const{body:t}=document.implementation.createHTMLDocument("");t.innerHTML=e;const n=t.getElementsByTagName("*");let o=n.length;for(;o--;){const r=n[o];if(r.tagName==="SCRIPT")pf(r);else{let s=r.attributes.length;for(;s--;){const{name:i}=r.attributes[s];i.startsWith("on")&&r.removeAttribute(i)}}}return t.innerHTML}function v1(e){e=C5(e);const t=document.implementation.createHTMLDocument("");return t.body.innerHTML=e,t.body.textContent||""}function R4(e){switch(e.nodeType){case e.TEXT_NODE:return/^[ \f\n\r\t\v\u00a0]*$/.test(e.nodeValue||"");case e.ELEMENT_NODE:return e.hasAttributes()?!1:e.hasChildNodes()?Array.from(e.childNodes).every(R4):!0;default:return!0}}const gM={strong:{},em:{},s:{},del:{},ins:{},a:{attributes:["href","target","rel","id"]},code:{},abbr:{attributes:["title"]},sub:{},sup:{},br:{},small:{},q:{attributes:["cite"]},dfn:{attributes:["title"]},data:{attributes:["value"]},time:{attributes:["datetime"]},var:{},samp:{},kbd:{},i:{},b:{},u:{},mark:{},ruby:{},rt:{},rp:{},bdi:{attributes:["dir"]},bdo:{attributes:["dir"]},wbr:{},"#text":{}},wSe=["#text","br"];Object.keys(gM).filter(e=>!wSe.includes(e)).forEach(e=>{const{[e]:t,...n}=gM;gM[e].children=n});const _Se={audio:{attributes:["src","preload","autoplay","mediagroup","loop","muted"]},canvas:{attributes:["width","height"]},embed:{attributes:["src","type","width","height"]},img:{attributes:["alt","src","srcset","usemap","ismap","width","height"]},object:{attributes:["data","type","name","usemap","form","width","height"]},video:{attributes:["src","poster","preload","playsinline","autoplay","mediagroup","loop","muted","controls","width","height"]}},cA={...gM,..._Se};function q5(e){if(e!=="paste")return cA;const{u:t,abbr:n,data:o,time:r,wbr:s,bdi:i,bdo:c,...l}={...cA,ins:{children:cA.ins.children},del:{children:cA.del.children}};return l}function k2(e){const t=e.nodeName.toLowerCase();return q5().hasOwnProperty(t)||t==="span"}function M0e(e){const t=e.nodeName.toLowerCase();return gM.hasOwnProperty(t)||t==="span"}function kSe(e){return!!e&&e.nodeType===e.ELEMENT_NODE}const SSe=()=>{};function Yg(e,t,n,o){Array.from(e).forEach(r=>{const s=r.nodeName.toLowerCase();if(n.hasOwnProperty(s)&&(!n[s].isMatch||n[s].isMatch?.(r))){if(kSe(r)){const{attributes:i=[],classes:c=[],children:l,require:u=[],allowEmpty:d}=n[s];if(l&&!d&&R4(r)){pf(r);return}if(r.hasAttributes()&&(Array.from(r.attributes).forEach(({name:p})=>{p!=="class"&&!i.includes(p)&&r.removeAttribute(p)}),r.classList&&r.classList.length)){const p=c.map(f=>f==="*"?()=>!0:typeof f=="string"?b=>b===f:f instanceof RegExp?b=>f.test(b):SSe);Array.from(r.classList).forEach(f=>{p.some(b=>b(f))||r.classList.remove(f)}),r.classList.length||r.removeAttribute("class")}if(r.hasChildNodes()){if(l==="*")return;if(l)u.length&&!r.querySelector(u.join(","))?(Yg(r.childNodes,t,n,o),mM(r)):r.parentNode&&r.parentNode.nodeName==="BODY"&&k2(r)?(Yg(r.childNodes,t,n,o),Array.from(r.childNodes).some(p=>!k2(p))&&mM(r)):Yg(r.childNodes,t,l,o);else for(;r.firstChild;)pf(r.firstChild)}}}else Yg(r.childNodes,t,n,o),o&&!k2(r)&&r.nextElementSibling&&g0e(t.createElement("br"),r),mM(r)})}function wE(e,t,n){const o=document.implementation.createHTMLDocument("");return o.body.innerHTML=e,Yg(o.body.childNodes,o,t,n),o.body.innerHTML}function T4(e){const t=Array.from(e.files);return Array.from(e.items).forEach(n=>{const o=n.getAsFile();o&&!t.find(({name:r,type:s,size:i})=>r===o.name&&s===o.type&&i===o.size)&&t.push(o)}),t}const Xr={focusable:aSe,tabbable:hSe};function Mn(e,t){const n=x.useRef();return x.useCallback(o=>{o?n.current=e(o):n.current&&n.current()},t)}function FN(){return Mn(e=>{function t(n){const{key:o,shiftKey:r,target:s}=n;if(o!=="Tab")return;const i=r?"findPrevious":"findNext",c=Xr.tabbable[i](s)||null;if(s.contains(c)){n.preventDefault(),c?.focus();return}if(e.contains(c))return;const l=r?"append":"prepend",{ownerDocument:u}=e,d=u.createElement("div");d.tabIndex=-1,e[l](d),d.addEventListener("blur",()=>e.removeChild(d)),d.focus()}return e.addEventListener("keydown",t),()=>{e.removeEventListener("keydown",t)}},[])}var Nv={exports:{}};/*! * clipboard.js v2.0.11 * https://clipboardjs.com/ * * Licensed MIT © Zeno Rocha - */var qSe=Bv.exports,DH;function RSe(){return DH||(DH=1,function(e,t){(function(o,r){e.exports=r()})(qSe,function(){return function(){var n={686:function(s,i,c){c.d(i,{default:function(){return V}});var l=c(279),u=c.n(l),d=c(370),p=c.n(d),f=c(817),b=c.n(f);function h(ee){try{return document.execCommand(ee)}catch{return!1}}var g=function(te){var J=b()(te);return h("cut"),J},z=g;function A(ee){var te=document.documentElement.getAttribute("dir")==="rtl",J=document.createElement("textarea");J.style.fontSize="12pt",J.style.border="0",J.style.padding="0",J.style.margin="0",J.style.position="absolute",J.style[te?"right":"left"]="-9999px";var ue=window.pageYOffset||document.documentElement.scrollTop;return J.style.top="".concat(ue,"px"),J.setAttribute("readonly",""),J.value=ee,J}var _=function(te,J){var ue=A(te);J.container.appendChild(ue);var ce=b()(ue);return h("copy"),ue.remove(),ce},v=function(te){var J=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body},ue="";return typeof te=="string"?ue=_(te,J):te instanceof HTMLInputElement&&!["text","search","url","tel","password"].includes(te?.type)?ue=_(te.value,J):(ue=b()(te),h("copy")),ue},M=v;function y(ee){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?y=function(J){return typeof J}:y=function(J){return J&&typeof Symbol=="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J},y(ee)}var k=function(){var te=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},J=te.action,ue=J===void 0?"copy":J,ce=te.container,me=te.target,de=te.text;if(ue!=="copy"&&ue!=="cut")throw new Error('Invalid "action" value, use either "copy" or "cut"');if(me!==void 0)if(me&&y(me)==="object"&&me.nodeType===1){if(ue==="copy"&&me.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if(ue==="cut"&&(me.hasAttribute("readonly")||me.hasAttribute("disabled")))throw new Error(`Invalid "target" attribute. You can't cut text from elements with "readonly" or "disabled" attributes`)}else throw new Error('Invalid "target" value, use a valid Element');if(de)return M(de,{container:ce});if(me)return ue==="cut"?z(me):M(me,{container:ce})},S=k;function C(ee){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?C=function(J){return typeof J}:C=function(J){return J&&typeof Symbol=="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J},C(ee)}function R(ee,te){if(!(ee instanceof te))throw new TypeError("Cannot call a class as a function")}function T(ee,te){for(var J=0;J<te.length;J++){var ue=te[J];ue.enumerable=ue.enumerable||!1,ue.configurable=!0,"value"in ue&&(ue.writable=!0),Object.defineProperty(ee,ue.key,ue)}}function E(ee,te,J){return te&&T(ee.prototype,te),J&&T(ee,J),ee}function B(ee,te){if(typeof te!="function"&&te!==null)throw new TypeError("Super expression must either be null or a function");ee.prototype=Object.create(te&&te.prototype,{constructor:{value:ee,writable:!0,configurable:!0}}),te&&N(ee,te)}function N(ee,te){return N=Object.setPrototypeOf||function(ue,ce){return ue.__proto__=ce,ue},N(ee,te)}function j(ee){var te=$();return function(){var ue=F(ee),ce;if(te){var me=F(this).constructor;ce=Reflect.construct(ue,arguments,me)}else ce=ue.apply(this,arguments);return I(this,ce)}}function I(ee,te){return te&&(C(te)==="object"||typeof te=="function")?te:P(ee)}function P(ee){if(ee===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return ee}function $(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch{return!1}}function F(ee){return F=Object.setPrototypeOf?Object.getPrototypeOf:function(J){return J.__proto__||Object.getPrototypeOf(J)},F(ee)}function X(ee,te){var J="data-clipboard-".concat(ee);if(te.hasAttribute(J))return te.getAttribute(J)}var Z=function(ee){B(J,ee);var te=j(J);function J(ue,ce){var me;return R(this,J),me=te.call(this),me.resolveOptions(ce),me.listenClick(ue),me}return E(J,[{key:"resolveOptions",value:function(){var ce=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};this.action=typeof ce.action=="function"?ce.action:this.defaultAction,this.target=typeof ce.target=="function"?ce.target:this.defaultTarget,this.text=typeof ce.text=="function"?ce.text:this.defaultText,this.container=C(ce.container)==="object"?ce.container:document.body}},{key:"listenClick",value:function(ce){var me=this;this.listener=p()(ce,"click",function(de){return me.onClick(de)})}},{key:"onClick",value:function(ce){var me=ce.delegateTarget||ce.currentTarget,de=this.action(me)||"copy",Ae=S({action:de,container:this.container,target:this.target(me),text:this.text(me)});this.emit(Ae?"success":"error",{action:de,text:Ae,trigger:me,clearSelection:function(){me&&me.focus(),window.getSelection().removeAllRanges()}})}},{key:"defaultAction",value:function(ce){return X("action",ce)}},{key:"defaultTarget",value:function(ce){var me=X("target",ce);if(me)return document.querySelector(me)}},{key:"defaultText",value:function(ce){return X("text",ce)}},{key:"destroy",value:function(){this.listener.destroy()}}],[{key:"copy",value:function(ce){var me=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body};return M(ce,me)}},{key:"cut",value:function(ce){return z(ce)}},{key:"isSupported",value:function(){var ce=arguments.length>0&&arguments[0]!==void 0?arguments[0]:["copy","cut"],me=typeof ce=="string"?[ce]:ce,de=!!document.queryCommandSupported;return me.forEach(function(Ae){de=de&&!!document.queryCommandSupported(Ae)}),de}}]),J}(u()),V=Z},828:function(s){var i=9;if(typeof Element<"u"&&!Element.prototype.matches){var c=Element.prototype;c.matches=c.matchesSelector||c.mozMatchesSelector||c.msMatchesSelector||c.oMatchesSelector||c.webkitMatchesSelector}function l(u,d){for(;u&&u.nodeType!==i;){if(typeof u.matches=="function"&&u.matches(d))return u;u=u.parentNode}}s.exports=l},438:function(s,i,c){var l=c(828);function u(f,b,h,g,z){var A=p.apply(this,arguments);return f.addEventListener(h,A,z),{destroy:function(){f.removeEventListener(h,A,z)}}}function d(f,b,h,g,z){return typeof f.addEventListener=="function"?u.apply(null,arguments):typeof h=="function"?u.bind(null,document).apply(null,arguments):(typeof f=="string"&&(f=document.querySelectorAll(f)),Array.prototype.map.call(f,function(A){return u(A,b,h,g,z)}))}function p(f,b,h,g){return function(z){z.delegateTarget=l(z.target,b),z.delegateTarget&&g.call(f,z)}}s.exports=d},879:function(s,i){i.node=function(c){return c!==void 0&&c instanceof HTMLElement&&c.nodeType===1},i.nodeList=function(c){var l=Object.prototype.toString.call(c);return c!==void 0&&(l==="[object NodeList]"||l==="[object HTMLCollection]")&&"length"in c&&(c.length===0||i.node(c[0]))},i.string=function(c){return typeof c=="string"||c instanceof String},i.fn=function(c){var l=Object.prototype.toString.call(c);return l==="[object Function]"}},370:function(s,i,c){var l=c(879),u=c(438);function d(h,g,z){if(!h&&!g&&!z)throw new Error("Missing required arguments");if(!l.string(g))throw new TypeError("Second argument must be a String");if(!l.fn(z))throw new TypeError("Third argument must be a Function");if(l.node(h))return p(h,g,z);if(l.nodeList(h))return f(h,g,z);if(l.string(h))return b(h,g,z);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function p(h,g,z){return h.addEventListener(g,z),{destroy:function(){h.removeEventListener(g,z)}}}function f(h,g,z){return Array.prototype.forEach.call(h,function(A){A.addEventListener(g,z)}),{destroy:function(){Array.prototype.forEach.call(h,function(A){A.removeEventListener(g,z)})}}}function b(h,g,z){return u(document.body,h,g,z)}s.exports=d},817:function(s){function i(c){var l;if(c.nodeName==="SELECT")c.focus(),l=c.value;else if(c.nodeName==="INPUT"||c.nodeName==="TEXTAREA"){var u=c.hasAttribute("readonly");u||c.setAttribute("readonly",""),c.select(),c.setSelectionRange(0,c.value.length),u||c.removeAttribute("readonly"),l=c.value}else{c.hasAttribute("contenteditable")&&c.focus();var d=window.getSelection(),p=document.createRange();p.selectNodeContents(c),d.removeAllRanges(),d.addRange(p),l=d.toString()}return l}s.exports=i},279:function(s){function i(){}i.prototype={on:function(c,l,u){var d=this.e||(this.e={});return(d[c]||(d[c]=[])).push({fn:l,ctx:u}),this},once:function(c,l,u){var d=this;function p(){d.off(c,p),l.apply(u,arguments)}return p._=l,this.on(c,p,u)},emit:function(c){var l=[].slice.call(arguments,1),u=((this.e||(this.e={}))[c]||[]).slice(),d=0,p=u.length;for(d;d<p;d++)u[d].fn.apply(u[d].ctx,l);return this},off:function(c,l){var u=this.e||(this.e={}),d=u[c],p=[];if(d&&l)for(var f=0,b=d.length;f<b;f++)d[f].fn!==l&&d[f].fn._!==l&&p.push(d[f]);return p.length?u[c]=p:delete u[c],this}},s.exports=i,s.exports.TinyEmitter=i}},o={};function r(s){if(o[s])return o[s].exports;var i=o[s]={exports:{}};return n[s](i,i.exports,r),i.exports}return function(){r.n=function(s){var i=s&&s.__esModule?function(){return s.default}:function(){return s};return r.d(i,{a:i}),i}}(),function(){r.d=function(s,i){for(var c in i)r.o(i,c)&&!r.o(s,c)&&Object.defineProperty(s,c,{enumerable:!0,get:i[c]})}}(),function(){r.o=function(s,i){return Object.prototype.hasOwnProperty.call(s,i)}}(),r(686)}().default})}(Bv)),Bv.exports}var TSe=RSe();const ESe=Zr(TSe);function FH(e){const t=x.useRef(e);return x.useLayoutEffect(()=>{t.current=e},[e]),t}function Ul(e,t){const n=FH(e),o=FH(t);return Mn(r=>{const s=new ESe(r,{text(){return typeof n.current=="function"?n.current():n.current||""}});return s.on("success",({clearSelection:i})=>{i(),o.current&&o.current()}),()=>{s.destroy()}},[])}function pa(e=null){if(!e){if(typeof window>"u")return!1;e=window}const{platform:t}=e.navigator;return t.indexOf("Mac")!==-1||["iPad","iPhone"].includes(t)}const Mc=8,Z2=9,Gr=13,gd=27,VN=32,WSe=33,NSe=34,FM=35,S2=36,wi=37,cc=38,_i=39,Ps=40,Ol=46,BSe=121,ta="alt",Ga="ctrl",Up="meta",na="shift";function z0e(e){return e.length<2?e.toUpperCase():e.charAt(0).toUpperCase()+e.slice(1)}function l3(e,t){return Object.fromEntries(Object.entries(e).map(([n,o])=>[n,t(o)]))}const T5={primary:e=>e()?[Up]:[Ga],primaryShift:e=>e()?[na,Up]:[Ga,na],primaryAlt:e=>e()?[ta,Up]:[Ga,ta],secondary:e=>e()?[na,ta,Up]:[Ga,na,ta],access:e=>e()?[Ga,ta]:[na,ta],ctrl:()=>[Ga],alt:()=>[ta],ctrlShift:()=>[Ga,na],shift:()=>[na],shiftAlt:()=>[na,ta],undefined:()=>[]},LSe=l3(T5,e=>(t,n=pa)=>[...e(n),t.toLowerCase()].join("+")),O0e=l3(T5,e=>(t,n=pa)=>{const o=n(),r={[ta]:o?"⌥":"Alt",[Ga]:o?"⌃":"Ctrl",[Up]:"⌘",[na]:o?"⇧":"Shift"};return[...e(n).reduce((i,c)=>{var l;const u=(l=r[c])!==null&&l!==void 0?l:c;return o?[...i,u]:[...i,u,"+"]},[]),z0e(t)]}),j1=l3(O0e,e=>(t,n=pa)=>e(t,n).join("")),y0e=l3(T5,e=>(t,n=pa)=>{const o=n(),r={[na]:"Shift",[Up]:o?"Command":"Control",[Ga]:"Control",[ta]:o?"Option":"Alt",",":m("Comma"),".":m("Period"),"`":m("Backtick"),"~":m("Tilde")};return[...e(n),t].map(s=>{var i;return z0e((i=r[s])!==null&&i!==void 0?i:s)}).join(o?" ":" + ")});function PSe(e){return[ta,Ga,Up,na].filter(t=>e[`${t}Key`])}const lc=l3(T5,e=>(t,n,o=pa)=>{const r=e(o),s=PSe(t),i={Comma:",",Backslash:"\\",IntlRo:"\\",IntlYen:"\\"},c=r.filter(d=>!s.includes(d)),l=s.filter(d=>!r.includes(d));if(c.length>0||l.length>0)return!1;let u=t.key.toLowerCase();return n?(t.altKey&&n.length===1&&(u=String.fromCharCode(t.keyCode).toLowerCase()),t.shiftKey&&n.length===1&&i[t.code]&&(u=i[t.code]),n==="del"&&(n="delete"),u===n.toLowerCase()):r.includes(u)});function E5(e="firstElement"){const t=x.useRef(e),n=r=>{r.focus({preventScroll:!0})},o=x.useRef();return x.useEffect(()=>{t.current=e},[e]),Mn(r=>{var s;if(!(!r||t.current===!1)&&!r.contains((s=r.ownerDocument?.activeElement)!==null&&s!==void 0?s:null)){if(t.current!=="firstElement"){n(r);return}return o.current=setTimeout(()=>{const i=Xr.tabbable.find(r)[0];i&&n(i)},0),()=>{o.current&&clearTimeout(o.current)}}},[])}let uA=null;function HN(e){const t=x.useRef(null),n=x.useRef(null),o=x.useRef(e);return x.useEffect(()=>{o.current=e},[e]),x.useCallback(r=>{if(r){var s;if(t.current=r,n.current)return;const c=r.ownerDocument.activeElement instanceof window.HTMLIFrameElement?r.ownerDocument.activeElement.contentDocument:r.ownerDocument;n.current=(s=c?.activeElement)!==null&&s!==void 0?s:null}else if(n.current){const c=t.current?.contains(t.current?.ownerDocument.activeElement);if(t.current?.isConnected&&!c){var i;(i=uA)!==null&&i!==void 0||(uA=n.current);return}o.current?o.current():(n.current.isConnected?n.current:uA)?.focus(),uA=null}},[])}const jSe=["button","submit"];function ISe(e){if(!(e instanceof window.HTMLElement))return!1;switch(e.nodeName){case"A":case"BUTTON":return!0;case"INPUT":return jSe.includes(e.type)}return!1}function A0e(e){const t=x.useRef(e);x.useEffect(()=>{t.current=e},[e]);const n=x.useRef(!1),o=x.useRef(),r=x.useCallback(()=>{clearTimeout(o.current)},[]);x.useEffect(()=>()=>r(),[]),x.useEffect(()=>{e||r()},[e,r]);const s=x.useCallback(c=>{const{type:l,target:u}=c;["mouseup","touchend"].includes(l)?n.current=!1:ISe(u)&&(n.current=!0)},[]),i=x.useCallback(c=>{if(c.persist(),n.current)return;const l=c.target.getAttribute("data-unstable-ignore-focus-outside-for-relatedtarget");l&&c.relatedTarget?.closest(l)||(o.current=setTimeout(()=>{if(!document.hasFocus()){c.preventDefault();return}typeof t.current=="function"&&t.current(c)},0))},[]);return{onFocus:r,onMouseDown:s,onMouseUp:s,onTouchStart:s,onTouchEnd:s,onBlur:i}}function dA(e,t){typeof e=="function"?e(t):e&&e.hasOwnProperty("current")&&(e.current=t)}function xn(e){const t=x.useRef(),n=x.useRef(!1),o=x.useRef(!1),r=x.useRef([]),s=x.useRef(e);return s.current=e,x.useLayoutEffect(()=>{o.current===!1&&n.current===!0&&e.forEach((i,c)=>{const l=r.current[c];i!==l&&(dA(l,null),dA(i,t.current))}),r.current=e},e),x.useLayoutEffect(()=>{o.current=!1}),x.useCallback(i=>{dA(t,i),o.current=!0,n.current=i!==null;const c=i?s.current:r.current;for(const l of c)dA(l,i)},[])}function v0e(e){const t=x.useRef(),{constrainTabbing:n=e.focusOnMount!==!1}=e;x.useEffect(()=>{t.current=e},Object.values(e));const o=$N(),r=E5(e.focusOnMount),s=HN(),i=A0e(l=>{t.current?.__unstableOnClose?t.current.__unstableOnClose("focus-outside",l):t.current?.onClose&&t.current.onClose()}),c=x.useCallback(l=>{l&&l.addEventListener("keydown",u=>{u.keyCode===gd&&!u.defaultPrevented&&t.current?.onClose&&(u.preventDefault(),t.current.onClose())})},[]);return[xn([n?o:null,e.focusOnMount!==!1?s:null,e.focusOnMount!==!1?r:null,c]),{...i,tabIndex:-1}]}function UN({isDisabled:e=!1}={}){return Mn(t=>{if(e)return;const n=t?.ownerDocument?.defaultView;if(!n)return;const o=[],r=()=>{t.childNodes.forEach(c=>{c instanceof n.HTMLElement&&(c.getAttribute("inert")||(c.setAttribute("inert","true"),o.push(()=>{c.removeAttribute("inert")})))})},s=F1(r,0,{leading:!0});r();const i=new window.MutationObserver(s);return i.observe(t,{childList:!0}),()=>{i&&i.disconnect(),s.cancel(),o.forEach(c=>c())}},[e])}function Ts(e){const t=x.useRef(()=>{throw new Error("Callbacks created with `useEvent` cannot be called during rendering.")});return x.useInsertionEffect(()=>{t.current=e}),x.useCallback((...n)=>t.current?.(...n),[])}const XN=typeof window<"u"?x.useLayoutEffect:x.useEffect;function x0e({onDragStart:e,onDragMove:t,onDragEnd:n}){const[o,r]=x.useState(!1),s=x.useRef({onDragStart:e,onDragMove:t,onDragEnd:n});XN(()=>{s.current.onDragStart=e,s.current.onDragMove=t,s.current.onDragEnd=n},[e,t,n]);const i=x.useCallback(u=>s.current.onDragMove&&s.current.onDragMove(u),[]),c=x.useCallback(u=>{s.current.onDragEnd&&s.current.onDragEnd(u),document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",c),r(!1)},[]),l=x.useCallback(u=>{s.current.onDragStart&&s.current.onDragStart(u),document.addEventListener("mousemove",i),document.addEventListener("mouseup",c),r(!0)},[]);return x.useEffect(()=>()=>{o&&(document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",c))},[o]),{startDrag:l,endDrag:c,isDragging:o}}const $H=new Map;function DSe(e){if(!e)return null;let t=$H.get(e);return t||(typeof window<"u"&&typeof window.matchMedia=="function"?(t=window.matchMedia(e),$H.set(e,t),t):null)}function GN(e){const t=x.useMemo(()=>{const n=DSe(e);return{subscribe(o){return n?(n.addEventListener?.("change",o),()=>{n.removeEventListener?.("change",o)}):()=>{}},getValue(){var o;return(o=n?.matches)!==null&&o!==void 0?o:!1}}},[e]);return x.useSyncExternalStore(t.subscribe,t.getValue,()=>!1)}function Fr(e){const t=x.useRef();return x.useEffect(()=>{t.current=e},[e]),t.current}const $1=()=>GN("(prefers-reduced-motion: reduce)");function FSe(e,t){const n={...e};return Object.entries(t).forEach(([o,r])=>{n[o]?n[o]={...n[o],to:r.to}:n[o]=r}),n}const VH=(e,t)=>{const n=e?.findIndex(({id:r})=>typeof r=="string"?r===t.id:ds(r,t.id)),o=[...e];return n!==-1?o[n]={id:t.id,changes:FSe(o[n].changes,t.changes)}:o.push(t),o};function $Se(){let e=[],t=[],n=0;const o=()=>{e=e.slice(0,n||void 0),n=0},r=()=>{var i;const c=e.length===0?0:e.length-1;let l=(i=e[c])!==null&&i!==void 0?i:[];t.forEach(u=>{l=VH(l,u)}),t=[],e[c]=l},s=i=>!i.filter(({changes:l})=>Object.values(l).some(({from:u,to:d})=>typeof u!="function"&&typeof d!="function"&&!ds(u,d))).length;return{addRecord(i,c=!1){const l=!i||s(i);if(c){if(l)return;i.forEach(u=>{t=VH(t,u)})}else{if(o(),t.length&&r(),l)return;e.push(i)}},undo(){t.length&&(o(),r());const i=e[e.length-1+n];if(i)return n-=1,i},redo(){const i=e[e.length+n];if(i)return n+=1,i},hasUndo(){return!!e[e.length-1+n]},hasRedo(){return!!e[e.length+n]}}}const HH={xhuge:1920,huge:1440,wide:1280,xlarge:1080,large:960,medium:782,small:600,mobile:480},VSe={">=":"min-width","<":"max-width"},HSe={">=":(e,t)=>t>=e,"<":(e,t)=>t<e},w0e=x.createContext(null),Yn=(e,t=">=")=>{const n=x.useContext(w0e),o=!n&&`(${VSe[t]}: ${HH[e]}px)`,r=GN(o||void 0);return n?HSe[t](HH[e],n):r};Yn.__experimentalWidthProvider=w0e.Provider;function _0e(e,t={}){const n=Ts(e),o=x.useRef(),r=x.useRef();return Ts(s=>{var i;if(s===o.current)return;(i=r.current)!==null&&i!==void 0||(r.current=new ResizeObserver(n));const{current:c}=r;o.current&&c.unobserve(o.current),o.current=s,s&&c.observe(s,t)})}const USe=e=>{let t;if(!e.contentBoxSize)t=[e.contentRect.width,e.contentRect.height];else if(e.contentBoxSize[0]){const r=e.contentBoxSize[0];t=[r.inlineSize,r.blockSize]}else{const r=e.contentBoxSize;t=[r.inlineSize,r.blockSize]}const[n,o]=t.map(r=>Math.round(r));return{width:n,height:o}},XSe={position:"absolute",top:0,left:0,right:0,bottom:0,pointerEvents:"none",opacity:0,overflow:"hidden",zIndex:-1};function GSe({onResize:e}){const t=_0e(n=>{const o=USe(n.at(-1));e(o)});return a.jsx("div",{ref:t,style:XSe,"aria-hidden":"true"})}function KSe(e,t){return e.width===t.width&&e.height===t.height}const UH={width:null,height:null};function YSe(){const[e,t]=x.useState(UH),n=x.useRef(UH),o=x.useCallback(s=>{KSe(n.current,s)||(n.current=s,t(s))},[]);return[a.jsx(GSe,{onResize:o}),e]}function js(e,t={}){return e?_0e(e,t):YSe()}var AS={exports:{}},XH;function ZSe(){return XH||(XH=1,function(e){(function(t){e.exports?e.exports=t():window.idleCallbackShim=t()})(function(){var t,n,o,r,s=typeof window<"u"?window:typeof p1!=null?p1:this||{},i=s.cancelRequestAnimationFrame&&s.requestAnimationFrame||setTimeout,c=s.cancelRequestAnimationFrame||clearTimeout,l=[],u=0,d=!1,p=7,f=35,b=125,h=0,g=0,z=0,A={get didTimeout(){return!1},timeRemaining:function(){var B=p-(Date.now()-g);return B<0?0:B}},_=v(function(){p=22,b=66,f=0});function v(B){var N,j,I=99,P=function(){var $=Date.now()-j;$<I?N=setTimeout(P,I-$):(N=null,B())};return function(){j=Date.now(),N||(N=setTimeout(P,I))}}function M(){d&&(r&&c(r),o&&clearTimeout(o),d=!1)}function y(){b!=125&&(p=7,b=125,f=35,d&&(M(),C())),_()}function k(){r=null,o=setTimeout(R,0)}function S(){o=null,i(k)}function C(){d||(n=b-(Date.now()-g),t=Date.now(),d=!0,f&&n<f&&(n=f),n>9?o=setTimeout(S,n):(n=0,S()))}function R(){var B,N,j,I=p>9?9:1;if(g=Date.now(),d=!1,o=null,u>2||g-n-50<t)for(N=0,j=l.length;N<j&&A.timeRemaining()>I;N++)B=l.shift(),z++,B&&B(A);l.length?C():u=0}function T(B){return h++,l.push(B),C(),h}function E(B){var N=B-1-z;l[N]&&(l[N]=null)}if(!s.requestIdleCallback||!s.cancelIdleCallback)s.requestIdleCallback=T,s.cancelIdleCallback=E,s.document&&document.addEventListener&&(s.addEventListener("scroll",y,!0),s.addEventListener("resize",y),document.addEventListener("focus",y,!0),document.addEventListener("mouseover",y,!0),["click","keypress","touchstart","mousedown"].forEach(function(B){document.addEventListener(B,y,{capture:!0,passive:!0})}),s.MutationObserver&&new MutationObserver(y).observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0}));else try{s.requestIdleCallback(function(){},{timeout:0})}catch{(function(N){var j,I;if(s.requestIdleCallback=function(P,$){return $&&typeof $.timeout=="number"?N(P,$.timeout):N(P)},s.IdleCallbackDeadline&&(j=IdleCallbackDeadline.prototype)){if(I=Object.getOwnPropertyDescriptor(j,"timeRemaining"),!I||!I.configurable||!I.get)return;Object.defineProperty(j,"timeRemaining",{value:function(){return I.get.call(this)},enumerable:!0,configurable:!0})}})(s.requestIdleCallback)}return{request:T,cancel:E}})}(AS)),AS.exports}ZSe();function QSe(){return typeof window>"u"?e=>{setTimeout(()=>e(Date.now()),0)}:window.requestIdleCallback}const GH=QSe(),KN=()=>{const e=new Map;let t=!1;const n=c=>{for(const[l,u]of e)if(e.delete(l),u(),typeof c=="number"||c.timeRemaining()<=0)break;if(e.size===0){t=!1;return}GH(n)};return{add:(c,l)=>{e.set(c,l),t||(t=!0,GH(n))},flush:c=>{const l=e.get(c);return l===void 0?!1:(e.delete(c),l(),!0)},cancel:c=>e.delete(c),reset:()=>{e.clear(),t=!1}}};function JSe(e,t){const n=[];for(let o=0;o<e.length;o++){const r=e[o];if(!t.includes(r))break;n.push(r)}return n}function W4(e,t={step:1}){const{step:n=1}=t,[o,r]=x.useState([]);return x.useEffect(()=>{let s=JSe(e,o);s.length<n&&(s=s.concat(e.slice(s.length,n))),r(s);const i=KN();for(let c=s.length;c<e.length;c+=n)i.add({},()=>{hs.flushSync(()=>{r(l=>[...l,...e.slice(c,c+n)])})});return()=>i.reset()},[e]),o}function eCe(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}function k0e(e,t){var n=x.useState(function(){return{inputs:t,result:e()}})[0],o=x.useRef(!0),r=x.useRef(n),s=o.current||!!(t&&r.current.inputs&&eCe(t,r.current.inputs)),i=s?r.current:{inputs:t,result:e()};return x.useEffect(function(){o.current=!1,r.current=i},[i]),i.result}function C1(e,t,n){const o=k0e(()=>F1(e,t??0,n),[e,t,n]);return x.useEffect(()=>()=>o.cancel(),[o]),o}function S0e(e=""){const[t,n]=x.useState(e),[o,r]=x.useState(e),s=C1(r,250);return x.useEffect(()=>{s(t)},[t,s]),[t,n,o]}function kE(e,t,n){const o=k0e(()=>jN(e,t??0,n),[e,t,n]);return x.useEffect(()=>()=>o.cancel(),[o]),o}function W5({dropZoneElement:e,isDisabled:t,onDrop:n,onDragStart:o,onDragEnter:r,onDragLeave:s,onDragEnd:i,onDragOver:c}){const l=Ts(n),u=Ts(o),d=Ts(r),p=Ts(s),f=Ts(i),b=Ts(c);return Mn(h=>{if(t)return;const g=e??h;let z=!1;const{ownerDocument:A}=g;function _(R){const{defaultView:T}=A;if(!R||!T||!(R instanceof T.HTMLElement)||!g.contains(R))return!1;let E=R;do if(E.dataset.isDropZone)return E===g;while(E=E.parentElement);return!1}function v(R){z||(z=!0,A.addEventListener("dragend",C),A.addEventListener("mousemove",C),o&&u(R))}function M(R){R.preventDefault(),!g.contains(R.relatedTarget)&&r&&d(R)}function y(R){!R.defaultPrevented&&c&&b(R),R.preventDefault()}function k(R){_(R.relatedTarget)||s&&p(R)}function S(R){R.defaultPrevented||(R.preventDefault(),R.dataTransfer&&R.dataTransfer.files.length,n&&l(R),C(R))}function C(R){z&&(z=!1,A.removeEventListener("dragend",C),A.removeEventListener("mousemove",C),i&&f(R))}return g.setAttribute("data-is-drop-zone","true"),g.addEventListener("drop",S),g.addEventListener("dragenter",M),g.addEventListener("dragover",y),g.addEventListener("dragleave",k),A.addEventListener("dragenter",v),()=>{g.removeAttribute("data-is-drop-zone"),g.removeEventListener("drop",S),g.removeEventListener("dragenter",M),g.removeEventListener("dragover",y),g.removeEventListener("dragleave",k),A.removeEventListener("dragend",C),A.removeEventListener("mousemove",C),A.removeEventListener("dragenter",v)}},[t,e])}function C0e(){return Mn(e=>{const{ownerDocument:t}=e;if(!t)return;const{defaultView:n}=t;if(!n)return;function o(){t&&t.activeElement===e&&e.focus()}return n.addEventListener("blur",o),()=>{n.removeEventListener("blur",o)}},[])}const tCe=30;function nCe(e,t,n,o){var r,s;const i=(r=o?.initWindowSize)!==null&&r!==void 0?r:tCe,c=(s=o?.useWindowing)!==null&&s!==void 0?s:!0,[l,u]=x.useState({visibleItems:i,start:0,end:i,itemInView:d=>d>=0&&d<=i});return x.useLayoutEffect(()=>{if(!c)return;const d=ps(e.current),p=b=>{var h;if(!d)return;const g=Math.ceil(d.clientHeight/t),z=b?g:(h=o?.windowOverscan)!==null&&h!==void 0?h:g,A=Math.floor(d.scrollTop/t),_=Math.max(0,A-z),v=Math.min(n-1,A+g+z);u(M=>{const y={visibleItems:g,start:_,end:v,itemInView:k=>_<=k&&k<=v};return M.start!==y.start||M.end!==y.end||M.visibleItems!==y.visibleItems?y:M})};p(!0);const f=F1(()=>{p()},16);return d?.addEventListener("scroll",f),d?.ownerDocument?.defaultView?.addEventListener("resize",f),d?.ownerDocument?.defaultView?.addEventListener("resize",f),()=>{d?.removeEventListener("scroll",f),d?.ownerDocument?.defaultView?.removeEventListener("resize",f)}},[t,e,n,o?.expandedState,o?.windowOverscan,c]),x.useLayoutEffect(()=>{if(!c)return;const d=ps(e.current),p=f=>{switch(f.keyCode){case S2:return d?.scrollTo({top:0});case FM:return d?.scrollTo({top:n*t});case WSe:return d?.scrollTo({top:d.scrollTop-l.visibleItems*t});case NSe:return d?.scrollTo({top:d.scrollTop+l.visibleItems*t})}};return d?.ownerDocument?.defaultView?.addEventListener("keydown",p),()=>{d?.ownerDocument?.defaultView?.removeEventListener("keydown",p)}},[n,t,e,l.visibleItems,c,o?.expandedState]),[l,u]}function $M(e,t){const[n,o]=x.useMemo(()=>[r=>e.subscribe(t,r),()=>e.get(t)],[e,t]);return x.useSyncExternalStore(n,o,o)}function q0e(e){const t=Object.keys(e);return function(o={},r){const s={};let i=!1;for(const c of t){const l=e[c],u=o[c],d=l(u,r);s[c]=d,i=i||d!==u}return i?s:o}}function At(e){const t=new WeakMap,n=(...o)=>{let r=t.get(n.registry);return r||(r=e(n.registry.select),t.set(n.registry,r)),r(...o)};return n.isRegistrySelector=!0,n}function vS(e){return e.isRegistryControl=!0,e}const oCe="@@data/SELECT",rCe="@@data/RESOLVE_SELECT",sCe="@@data/DISPATCH",iCe={[oCe]:vS(e=>({storeKey:t,selectorName:n,args:o})=>e.select(t)[n](...o)),[rCe]:vS(e=>({storeKey:t,selectorName:n,args:o})=>{const r=e.select(t)[n].hasResolver?"resolveSelect":"select";return e[r](t)[n](...o)}),[sCe]:vS(e=>({storeKey:t,actionName:n,args:o})=>e.dispatch(t)[n](...o))},aCe=["@wordpress/block-directory","@wordpress/block-editor","@wordpress/block-library","@wordpress/blocks","@wordpress/commands","@wordpress/components","@wordpress/core-commands","@wordpress/core-data","@wordpress/customize-widgets","@wordpress/data","@wordpress/edit-post","@wordpress/edit-site","@wordpress/edit-widgets","@wordpress/editor","@wordpress/format-library","@wordpress/patterns","@wordpress/preferences","@wordpress/reusable-blocks","@wordpress/router","@wordpress/dataviews","@wordpress/fields","@wordpress/media-utils","@wordpress/upload-media"],KH=[],cCe=!globalThis.IS_WORDPRESS_CORE,P0=(e,t)=>{if(!aCe.includes(t))throw new Error(`You tried to opt-in to unstable APIs as module "${t}". This feature is only for JavaScript modules shipped with WordPress core. Please do not use it in plugins and themes as the unstable APIs will be removed without a warning. If you ignore this error and depend on unstable features, your product will inevitably break on one of the next WordPress releases.`);if(!cCe&&KH.includes(t))throw new Error(`You tried to opt-in to unstable APIs as module "${t}" which is already registered. This feature is only for JavaScript modules shipped with WordPress core. Please do not use it in plugins and themes as the unstable APIs will be removed without a warning. If you ignore this error and depend on unstable features, your product will inevitably break on one of the next WordPress releases.`);return KH.push(t),{lock:lCe,unlock:uCe}};function lCe(e,t){if(!e)throw new Error("Cannot lock an undefined object.");const n=e;MM in n||(n[MM]={}),R0e.set(n[MM],t)}function uCe(e){if(!e)throw new Error("Cannot unlock an undefined object.");const t=e;if(!(MM in t))throw new Error("Cannot unlock an object that was not locked before. ");return R0e.get(t[MM])}const R0e=new WeakMap,MM=Symbol("Private API ID"),{lock:Zg,unlock:Db}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/data"),dCe=()=>e=>t=>r0e(t)?t.then(n=>{if(n)return e(n)}):e(t),pCe=(e,t)=>()=>n=>o=>{const r=e.select(t).getCachedResolvers();return Object.entries(r).forEach(([i,c])=>{const l=e.stores[t]?.resolvers?.[i];!l||!l.shouldInvalidate||c.forEach((u,d)=>{u!==void 0&&(u.status!=="finished"&&u.status!=="error"||l.shouldInvalidate(o,...d)&&e.dispatch(t).invalidateResolution(i,d))})}),n(o)};function fCe(e){return()=>t=>n=>typeof n=="function"?n(e):t(n)}const bCe=e=>t=>(n={},o)=>{const r=o[e];if(r===void 0)return n;const s=t(n[r],o);return s===n[r]?n:{...n,[r]:s}};function Lu(e){if(e==null)return[];const t=e.length;let n=t;for(;n>0&&e[n-1]===void 0;)n--;return n===t?e:e.slice(0,n)}const hCe=bCe("selectorName")((e=new Va,t)=>{switch(t.type){case"START_RESOLUTION":{const n=new Va(e);return n.set(Lu(t.args),{status:"resolving"}),n}case"FINISH_RESOLUTION":{const n=new Va(e);return n.set(Lu(t.args),{status:"finished"}),n}case"FAIL_RESOLUTION":{const n=new Va(e);return n.set(Lu(t.args),{status:"error",error:t.error}),n}case"START_RESOLUTIONS":{const n=new Va(e);for(const o of t.args)n.set(Lu(o),{status:"resolving"});return n}case"FINISH_RESOLUTIONS":{const n=new Va(e);for(const o of t.args)n.set(Lu(o),{status:"finished"});return n}case"FAIL_RESOLUTIONS":{const n=new Va(e);return t.args.forEach((o,r)=>{const s={status:"error",error:void 0},i=t.errors[r];i&&(s.error=i),n.set(Lu(o),s)}),n}case"INVALIDATE_RESOLUTION":{const n=new Va(e);return n.delete(Lu(t.args)),n}}return e}),mCe=(e={},t)=>{switch(t.type){case"INVALIDATE_RESOLUTION_FOR_STORE":return{};case"INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR":{if(t.selectorName in e){const{[t.selectorName]:n,...o}=e;return o}return e}case"START_RESOLUTION":case"FINISH_RESOLUTION":case"FAIL_RESOLUTION":case"START_RESOLUTIONS":case"FINISH_RESOLUTIONS":case"FAIL_RESOLUTIONS":case"INVALIDATE_RESOLUTION":return hCe(e,t)}return e};var xS={};function gCe(e){return[e]}function MCe(e){return!!e&&typeof e=="object"}function zCe(){var e={clear:function(){e.head=null}};return e}function YH(e,t,n){var o;if(e.length!==t.length)return!1;for(o=n;o<e.length;o++)if(e[o]!==t[o])return!1;return!0}function It(e,t){var n,o=t||gCe;function r(c){var l=n,u=!0,d,p,f,b;for(d=0;d<c.length;d++){if(p=c[d],!MCe(p)){u=!1;break}l.has(p)?l=l.get(p):(f=new WeakMap,l.set(p,f),l=f)}return l.has(xS)||(b=zCe(),b.isUniqueByDependants=u,l.set(xS,b)),l.get(xS)}function s(){n=new WeakMap}function i(){var c=arguments.length,l,u,d,p,f;for(p=new Array(c),d=0;d<c;d++)p[d]=arguments[d];for(f=o.apply(null,p),l=r(f),l.isUniqueByDependants||(l.lastDependants&&!YH(f,l.lastDependants,0)&&l.clear(),l.lastDependants=f),u=l.head;u;){if(!YH(u.args,p,1)){u=u.next;continue}return u!==l.head&&(u.prev.next=u.next,u.next&&(u.next.prev=u.prev),u.next=l.head,u.prev=null,l.head.prev=u,l.head=u),u.val}return u={val:e.apply(null,p)},p[0]=null,u.args=p,l.head&&(l.head.prev=u,u.next=l.head),l.head=u,u.val}return i.getDependants=o,i.clear=s,s(),i}function Df(e,t,n){const o=e[t];if(o)return o.get(Lu(n))}function OCe(e,t,n){Ke("wp.data.select( store ).getIsResolving",{since:"6.6",version:"6.8",alternative:"wp.data.select( store ).getResolutionState"});const o=Df(e,t,n);return o&&o.status==="resolving"}function T0e(e,t,n){return Df(e,t,n)!==void 0}function yCe(e,t,n){const o=Df(e,t,n)?.status;return o==="finished"||o==="error"}function ACe(e,t,n){return Df(e,t,n)?.status==="error"}function vCe(e,t,n){const o=Df(e,t,n);return o?.status==="error"?o.error:null}function xCe(e,t,n){return Df(e,t,n)?.status==="resolving"}function wCe(e){return e}function _Ce(e){return Object.values(e).some(t=>Array.from(t._map.values()).some(n=>n[1]?.status==="resolving"))}const kCe=It(e=>{const t={};return Object.values(e).forEach(n=>Array.from(n._map.values()).forEach(o=>{var r;const s=(r=o[1]?.status)!==null&&r!==void 0?r:"error";t[s]||(t[s]=0),t[s]++})),t},e=>[e]),SCe=Object.freeze(Object.defineProperty({__proto__:null,countSelectorsByStatus:kCe,getCachedResolvers:wCe,getIsResolving:OCe,getResolutionError:vCe,getResolutionState:Df,hasFinishedResolution:yCe,hasResolutionFailed:ACe,hasResolvingSelectors:_Ce,hasStartedResolution:T0e,isResolving:xCe},Symbol.toStringTag,{value:"Module"}));function E0e(e,t){return{type:"START_RESOLUTION",selectorName:e,args:t}}function W0e(e,t){return{type:"FINISH_RESOLUTION",selectorName:e,args:t}}function N0e(e,t,n){return{type:"FAIL_RESOLUTION",selectorName:e,args:t,error:n}}function CCe(e,t){return{type:"START_RESOLUTIONS",selectorName:e,args:t}}function qCe(e,t){return{type:"FINISH_RESOLUTIONS",selectorName:e,args:t}}function RCe(e,t,n){return{type:"FAIL_RESOLUTIONS",selectorName:e,args:t,errors:n}}function TCe(e,t){return{type:"INVALIDATE_RESOLUTION",selectorName:e,args:t}}function ECe(){return{type:"INVALIDATE_RESOLUTION_FOR_STORE"}}function WCe(e){return{type:"INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR",selectorName:e}}const NCe=Object.freeze(Object.defineProperty({__proto__:null,failResolution:N0e,failResolutions:RCe,finishResolution:W0e,finishResolutions:qCe,invalidateResolution:TCe,invalidateResolutionForStore:ECe,invalidateResolutionForStoreSelector:WCe,startResolution:E0e,startResolutions:CCe},Symbol.toStringTag,{value:"Module"})),wS=e=>{const t=[...e];for(let n=t.length-1;n>=0;n--)t[n]===void 0&&t.splice(n,1);return t},Yu=(e,t)=>Object.fromEntries(Object.entries(e??{}).map(([n,o])=>[n,t(o,n)])),BCe=(e,t)=>t instanceof Map?Object.fromEntries(t):t instanceof window.HTMLElement?null:t;function LCe(){const e={};return{isRunning(t,n){return e[t]&&e[t].get(wS(n))},clear(t,n){e[t]&&e[t].delete(wS(n))},markAsRunning(t,n){e[t]||(e[t]=new Va),e[t].set(wS(n),!0)}}}function ZH(e){const t=new WeakMap;return{get(n,o){let r=t.get(n);return r||(r=e(n,o),t.set(n,r)),r}}}function x1(e,t){const n={},o={},r={privateActions:n,registerPrivateActions:i=>{Object.assign(n,i)},privateSelectors:o,registerPrivateSelectors:i=>{Object.assign(o,i)}},s={name:e,instantiate:i=>{const c=new Set,l=t.reducer,d=PCe(e,t,i,{registry:i,get dispatch(){return z},get select(){return S},get resolveSelect(){return B()}});Zg(d,r);const p=LCe();function f(P){return(...$)=>Promise.resolve(d.dispatch(P(...$)))}const b={...Yu(NCe,f),...Yu(t.actions,f)},h=ZH(f),g=new Proxy(()=>{},{get:(P,$)=>{const F=n[$];return F?h.get(F,$):b[$]}}),z=new Proxy(g,{apply:(P,$,[F])=>d.dispatch(F)});Zg(b,g);const A=t.resolvers?DCe(t.resolvers):{};function _(P,$){P.isRegistrySelector&&(P.registry=i);const F=(...Z)=>{Z=SE(P,Z);const V=d.__unstableOriginalGetState();return P.isRegistrySelector&&(P.registry=i),P(V.root,...Z)};F.__unstableNormalizeArgs=P.__unstableNormalizeArgs;const X=A[$];return X?FCe(F,$,X,d,p):(F.hasResolver=!1,F)}function v(P){const $=(...F)=>{const X=d.__unstableOriginalGetState(),Z=F&&F[0],V=F&&F[1],ee=t?.selectors?.[Z];return Z&&ee&&(F[1]=SE(ee,V)),P(X.metadata,...F)};return $.hasResolver=!1,$}const M={...Yu(SCe,v),...Yu(t.selectors,_)},y=ZH(_);for(const[P,$]of Object.entries(o))y.get($,P);const k=new Proxy(()=>{},{get:(P,$)=>{const F=o[$];return F?y.get(F,$):M[$]}}),S=new Proxy(k,{apply:(P,$,[F])=>F(d.__unstableOriginalGetState())});Zg(M,k);const C=jCe(M,d),R=ICe(M,d),T=()=>M,E=()=>b,B=()=>C,N=()=>R;d.__unstableOriginalGetState=d.getState,d.getState=()=>d.__unstableOriginalGetState().root;const j=d&&(P=>(c.add(P),()=>c.delete(P)));let I=d.__unstableOriginalGetState();return d.subscribe(()=>{const P=d.__unstableOriginalGetState(),$=P!==I;if(I=P,$)for(const F of c)F()}),{reducer:l,store:d,actions:b,selectors:M,resolvers:A,getSelectors:T,getResolveSelectors:B,getSuspendSelectors:N,getActions:E,subscribe:j}}};return Zg(s,r),s}function PCe(e,t,n,o){const r={...t.controls,...iCe},s=Yu(r,p=>p.isRegistryControl?p(n):p),i=[pCe(n,e),dCe,Q6e(s),fCe(o)],c=[j6e(...i)];typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__&&c.push(window.__REDUX_DEVTOOLS_EXTENSION__({name:e,instanceId:e,serialize:{replacer:BCe}}));const{reducer:l,initialState:u}=t,d=q0e({metadata:mCe,root:l});return t0e(d,{root:u},Co(c))}function jCe(e,t){const{getIsResolving:n,hasStartedResolution:o,hasFinishedResolution:r,hasResolutionFailed:s,isResolving:i,getCachedResolvers:c,getResolutionState:l,getResolutionError:u,hasResolvingSelectors:d,countSelectorsByStatus:p,...f}=e;return Yu(f,(b,h)=>b.hasResolver?(...g)=>new Promise((z,A)=>{const _=()=>e.hasFinishedResolution(h,g),v=S=>{if(e.hasResolutionFailed(h,g)){const R=e.getResolutionError(h,g);A(R)}else z(S)},M=()=>b.apply(null,g),y=M();if(_())return v(y);const k=t.subscribe(()=>{_()&&(k(),v(M()))})}):async(...g)=>b.apply(null,g))}function ICe(e,t){return Yu(e,(n,o)=>n.hasResolver?(...r)=>{const s=n.apply(null,r);if(e.hasFinishedResolution(o,r)){if(e.hasResolutionFailed(o,r))throw e.getResolutionError(o,r);return s}throw new Promise(i=>{const c=t.subscribe(()=>{e.hasFinishedResolution(o,r)&&(i(),c())})})}:n)}function DCe(e){return Yu(e,t=>t.fulfill?t:{...t,fulfill:t})}function FCe(e,t,n,o,r){function s(c){const l=o.getState();if(r.isRunning(t,c)||typeof n.isFulfilled=="function"&&n.isFulfilled(l,...c))return;const{metadata:u}=o.__unstableOriginalGetState();T0e(u,t,c)||(r.markAsRunning(t,c),setTimeout(async()=>{r.clear(t,c),o.dispatch(E0e(t,c));try{const d=n.fulfill(...c);d&&await o.dispatch(d),o.dispatch(W0e(t,c))}catch(d){o.dispatch(N0e(t,c,d))}},0))}const i=(...c)=>(c=SE(e,c),s(c),e(...c));return i.hasResolver=!0,i}function SE(e,t){return e.__unstableNormalizeArgs&&typeof e.__unstableNormalizeArgs=="function"&&t?.length?e.__unstableNormalizeArgs(t):t}const $Ce={name:"core/data",instantiate(e){const t=o=>(r,...s)=>e.select(r)[o](...s),n=o=>(r,...s)=>e.dispatch(r)[o](...s);return{getSelectors(){return Object.fromEntries(["getIsResolving","hasStartedResolution","hasFinishedResolution","isResolving","getCachedResolvers"].map(o=>[o,t(o)]))},getActions(){return Object.fromEntries(["startResolution","finishResolution","invalidateResolution","invalidateResolutionForStore","invalidateResolutionForStoreSelector"].map(o=>[o,n(o)]))},subscribe(){return()=>()=>{}}}}};function QH(){let e=!1,t=!1;const n=new Set,o=()=>Array.from(n).forEach(r=>r());return{get isPaused(){return e},subscribe(r){return n.add(r),()=>n.delete(r)},pause(){e=!0},resume(){e=!1,t&&(t=!1,o())},emit(){if(e){t=!0;return}o()}}}function vg(e){return typeof e=="string"?e:e.name}function N5(e={},t=null){const n={},o=QH();let r=null;function s(){o.emit()}const i=(y,k)=>{if(!k)return o.subscribe(y);const S=vg(k),C=n[S];return C?C.subscribe(y):t?t.subscribe(y,k):o.subscribe(y)};function c(y){const k=vg(y);r?.add(k);const S=n[k];return S?S.getSelectors():t?.select(k)}function l(y,k){r=new Set;try{return y.call(this)}finally{k.current=Array.from(r),r=null}}function u(y){const k=vg(y);r?.add(k);const S=n[k];return S?S.getResolveSelectors():t&&t.resolveSelect(k)}function d(y){const k=vg(y);r?.add(k);const S=n[k];return S?S.getSuspendSelectors():t&&t.suspendSelect(k)}function p(y){const k=vg(y),S=n[k];return S?S.getActions():t&&t.dispatch(k)}function f(y){return Object.fromEntries(Object.entries(y).map(([k,S])=>typeof S!="function"?[k,S]:[k,function(){return _[k].apply(null,arguments)}]))}function b(y,k){if(n[y])return console.error('Store "'+y+'" is already registered.'),n[y];const S=k();if(typeof S.getSelectors!="function")throw new TypeError("store.getSelectors must be a function");if(typeof S.getActions!="function")throw new TypeError("store.getActions must be a function");if(typeof S.subscribe!="function")throw new TypeError("store.subscribe must be a function");S.emitter=QH();const C=S.subscribe;if(S.subscribe=R=>{const T=S.emitter.subscribe(R),E=C(()=>{if(S.emitter.isPaused){S.emitter.emit();return}R()});return()=>{E?.(),T?.()}},n[y]=S,S.subscribe(s),t)try{Db(S.store).registerPrivateActions(Db(t).privateActionsOf(y)),Db(S.store).registerPrivateSelectors(Db(t).privateSelectorsOf(y))}catch{}return S}function h(y){b(y.name,()=>y.instantiate(_))}function g(y,k){Ke("wp.data.registerGenericStore",{since:"5.9",alternative:"wp.data.register( storeDescriptor )"}),b(y,()=>k)}function z(y,k){if(!k.reducer)throw new TypeError("Must specify store reducer");return b(y,()=>x1(y,k).instantiate(_)).store}function A(y){if(o.isPaused){y();return}o.pause(),Object.values(n).forEach(k=>k.emitter.pause());try{y()}finally{o.resume(),Object.values(n).forEach(k=>k.emitter.resume())}}let _={batch:A,stores:n,namespaces:n,subscribe:i,select:c,resolveSelect:u,suspendSelect:d,dispatch:p,use:v,register:h,registerGenericStore:g,registerStore:z,__unstableMarkListeningStores:l};function v(y,k){if(y)return _={..._,...y(_,k)},_}_.register($Ce);for(const[y,k]of Object.entries(e))_.register(x1(y,k));t&&t.subscribe(s);const M=f(_);return Zg(M,{privateActionsOf:y=>{try{return Db(n[y].store).privateActions}catch{return{}}},privateSelectorsOf:y=>{try{return Db(n[y].store).privateSelectors}catch{return{}}}}),M}const qc=N5();var _S,JH;function VCe(){if(JH)return _S;JH=1;var e=function(_){return t(_)&&!n(_)};function t(A){return!!A&&typeof A=="object"}function n(A){var _=Object.prototype.toString.call(A);return _==="[object RegExp]"||_==="[object Date]"||s(A)}var o=typeof Symbol=="function"&&Symbol.for,r=o?Symbol.for("react.element"):60103;function s(A){return A.$$typeof===r}function i(A){return Array.isArray(A)?[]:{}}function c(A,_){return _.clone!==!1&&_.isMergeableObject(A)?g(i(A),A,_):A}function l(A,_,v){return A.concat(_).map(function(M){return c(M,v)})}function u(A,_){if(!_.customMerge)return g;var v=_.customMerge(A);return typeof v=="function"?v:g}function d(A){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(A).filter(function(_){return Object.propertyIsEnumerable.call(A,_)}):[]}function p(A){return Object.keys(A).concat(d(A))}function f(A,_){try{return _ in A}catch{return!1}}function b(A,_){return f(A,_)&&!(Object.hasOwnProperty.call(A,_)&&Object.propertyIsEnumerable.call(A,_))}function h(A,_,v){var M={};return v.isMergeableObject(A)&&p(A).forEach(function(y){M[y]=c(A[y],v)}),p(_).forEach(function(y){b(A,y)||(f(A,y)&&v.isMergeableObject(_[y])?M[y]=u(y,v)(A[y],_[y],v):M[y]=c(_[y],v))}),M}function g(A,_,v){v=v||{},v.arrayMerge=v.arrayMerge||l,v.isMergeableObject=v.isMergeableObject||e,v.cloneUnlessOtherwiseSpecified=c;var M=Array.isArray(_),y=Array.isArray(A),k=M===y;return k?M?v.arrayMerge(A,_,v):h(A,_,v):c(_,v)}g.all=function(_,v){if(!Array.isArray(_))throw new Error("first argument should be an array");return _.reduce(function(M,y){return g(M,y,v)},{})};var z=g;return _S=z,_S}var HCe=VCe();const B0e=Zr(HCe),L0e=x.createContext(qc),{Consumer:Qmn,Provider:YN}=L0e;function Fn(){return x.useContext(L0e)}const P0e=x.createContext(!1),{Consumer:Jmn,Provider:B5}=P0e;function UCe(){return x.useContext(P0e)}const kS=KN();function XCe(e,t){if(!e||!t)return;const n=typeof e=="object"&&typeof t=="object"?Object.keys(e).filter(o=>e[o]!==t[o]):[];console.warn(`The \`useSelect\` hook returns different values when called with the same state and parameters. + */var CSe=Nv.exports,DH;function qSe(){return DH||(DH=1,function(e,t){(function(o,r){e.exports=r()})(CSe,function(){return function(){var n={686:function(s,i,c){c.d(i,{default:function(){return V}});var l=c(279),u=c.n(l),d=c(370),p=c.n(d),f=c(817),b=c.n(f);function h(ee){try{return document.execCommand(ee)}catch{return!1}}var g=function(te){var J=b()(te);return h("cut"),J},z=g;function A(ee){var te=document.documentElement.getAttribute("dir")==="rtl",J=document.createElement("textarea");J.style.fontSize="12pt",J.style.border="0",J.style.padding="0",J.style.margin="0",J.style.position="absolute",J.style[te?"right":"left"]="-9999px";var ue=window.pageYOffset||document.documentElement.scrollTop;return J.style.top="".concat(ue,"px"),J.setAttribute("readonly",""),J.value=ee,J}var _=function(te,J){var ue=A(te);J.container.appendChild(ue);var ce=b()(ue);return h("copy"),ue.remove(),ce},v=function(te){var J=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body},ue="";return typeof te=="string"?ue=_(te,J):te instanceof HTMLInputElement&&!["text","search","url","tel","password"].includes(te?.type)?ue=_(te.value,J):(ue=b()(te),h("copy")),ue},M=v;function y(ee){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?y=function(J){return typeof J}:y=function(J){return J&&typeof Symbol=="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J},y(ee)}var k=function(){var te=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},J=te.action,ue=J===void 0?"copy":J,ce=te.container,me=te.target,de=te.text;if(ue!=="copy"&&ue!=="cut")throw new Error('Invalid "action" value, use either "copy" or "cut"');if(me!==void 0)if(me&&y(me)==="object"&&me.nodeType===1){if(ue==="copy"&&me.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if(ue==="cut"&&(me.hasAttribute("readonly")||me.hasAttribute("disabled")))throw new Error(`Invalid "target" attribute. You can't cut text from elements with "readonly" or "disabled" attributes`)}else throw new Error('Invalid "target" value, use a valid Element');if(de)return M(de,{container:ce});if(me)return ue==="cut"?z(me):M(me,{container:ce})},S=k;function C(ee){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?C=function(J){return typeof J}:C=function(J){return J&&typeof Symbol=="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J},C(ee)}function R(ee,te){if(!(ee instanceof te))throw new TypeError("Cannot call a class as a function")}function T(ee,te){for(var J=0;J<te.length;J++){var ue=te[J];ue.enumerable=ue.enumerable||!1,ue.configurable=!0,"value"in ue&&(ue.writable=!0),Object.defineProperty(ee,ue.key,ue)}}function E(ee,te,J){return te&&T(ee.prototype,te),J&&T(ee,J),ee}function B(ee,te){if(typeof te!="function"&&te!==null)throw new TypeError("Super expression must either be null or a function");ee.prototype=Object.create(te&&te.prototype,{constructor:{value:ee,writable:!0,configurable:!0}}),te&&N(ee,te)}function N(ee,te){return N=Object.setPrototypeOf||function(ue,ce){return ue.__proto__=ce,ue},N(ee,te)}function j(ee){var te=$();return function(){var ue=F(ee),ce;if(te){var me=F(this).constructor;ce=Reflect.construct(ue,arguments,me)}else ce=ue.apply(this,arguments);return I(this,ce)}}function I(ee,te){return te&&(C(te)==="object"||typeof te=="function")?te:P(ee)}function P(ee){if(ee===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return ee}function $(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch{return!1}}function F(ee){return F=Object.setPrototypeOf?Object.getPrototypeOf:function(J){return J.__proto__||Object.getPrototypeOf(J)},F(ee)}function X(ee,te){var J="data-clipboard-".concat(ee);if(te.hasAttribute(J))return te.getAttribute(J)}var Z=function(ee){B(J,ee);var te=j(J);function J(ue,ce){var me;return R(this,J),me=te.call(this),me.resolveOptions(ce),me.listenClick(ue),me}return E(J,[{key:"resolveOptions",value:function(){var ce=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};this.action=typeof ce.action=="function"?ce.action:this.defaultAction,this.target=typeof ce.target=="function"?ce.target:this.defaultTarget,this.text=typeof ce.text=="function"?ce.text:this.defaultText,this.container=C(ce.container)==="object"?ce.container:document.body}},{key:"listenClick",value:function(ce){var me=this;this.listener=p()(ce,"click",function(de){return me.onClick(de)})}},{key:"onClick",value:function(ce){var me=ce.delegateTarget||ce.currentTarget,de=this.action(me)||"copy",Ae=S({action:de,container:this.container,target:this.target(me),text:this.text(me)});this.emit(Ae?"success":"error",{action:de,text:Ae,trigger:me,clearSelection:function(){me&&me.focus(),window.getSelection().removeAllRanges()}})}},{key:"defaultAction",value:function(ce){return X("action",ce)}},{key:"defaultTarget",value:function(ce){var me=X("target",ce);if(me)return document.querySelector(me)}},{key:"defaultText",value:function(ce){return X("text",ce)}},{key:"destroy",value:function(){this.listener.destroy()}}],[{key:"copy",value:function(ce){var me=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{container:document.body};return M(ce,me)}},{key:"cut",value:function(ce){return z(ce)}},{key:"isSupported",value:function(){var ce=arguments.length>0&&arguments[0]!==void 0?arguments[0]:["copy","cut"],me=typeof ce=="string"?[ce]:ce,de=!!document.queryCommandSupported;return me.forEach(function(Ae){de=de&&!!document.queryCommandSupported(Ae)}),de}}]),J}(u()),V=Z},828:function(s){var i=9;if(typeof Element<"u"&&!Element.prototype.matches){var c=Element.prototype;c.matches=c.matchesSelector||c.mozMatchesSelector||c.msMatchesSelector||c.oMatchesSelector||c.webkitMatchesSelector}function l(u,d){for(;u&&u.nodeType!==i;){if(typeof u.matches=="function"&&u.matches(d))return u;u=u.parentNode}}s.exports=l},438:function(s,i,c){var l=c(828);function u(f,b,h,g,z){var A=p.apply(this,arguments);return f.addEventListener(h,A,z),{destroy:function(){f.removeEventListener(h,A,z)}}}function d(f,b,h,g,z){return typeof f.addEventListener=="function"?u.apply(null,arguments):typeof h=="function"?u.bind(null,document).apply(null,arguments):(typeof f=="string"&&(f=document.querySelectorAll(f)),Array.prototype.map.call(f,function(A){return u(A,b,h,g,z)}))}function p(f,b,h,g){return function(z){z.delegateTarget=l(z.target,b),z.delegateTarget&&g.call(f,z)}}s.exports=d},879:function(s,i){i.node=function(c){return c!==void 0&&c instanceof HTMLElement&&c.nodeType===1},i.nodeList=function(c){var l=Object.prototype.toString.call(c);return c!==void 0&&(l==="[object NodeList]"||l==="[object HTMLCollection]")&&"length"in c&&(c.length===0||i.node(c[0]))},i.string=function(c){return typeof c=="string"||c instanceof String},i.fn=function(c){var l=Object.prototype.toString.call(c);return l==="[object Function]"}},370:function(s,i,c){var l=c(879),u=c(438);function d(h,g,z){if(!h&&!g&&!z)throw new Error("Missing required arguments");if(!l.string(g))throw new TypeError("Second argument must be a String");if(!l.fn(z))throw new TypeError("Third argument must be a Function");if(l.node(h))return p(h,g,z);if(l.nodeList(h))return f(h,g,z);if(l.string(h))return b(h,g,z);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function p(h,g,z){return h.addEventListener(g,z),{destroy:function(){h.removeEventListener(g,z)}}}function f(h,g,z){return Array.prototype.forEach.call(h,function(A){A.addEventListener(g,z)}),{destroy:function(){Array.prototype.forEach.call(h,function(A){A.removeEventListener(g,z)})}}}function b(h,g,z){return u(document.body,h,g,z)}s.exports=d},817:function(s){function i(c){var l;if(c.nodeName==="SELECT")c.focus(),l=c.value;else if(c.nodeName==="INPUT"||c.nodeName==="TEXTAREA"){var u=c.hasAttribute("readonly");u||c.setAttribute("readonly",""),c.select(),c.setSelectionRange(0,c.value.length),u||c.removeAttribute("readonly"),l=c.value}else{c.hasAttribute("contenteditable")&&c.focus();var d=window.getSelection(),p=document.createRange();p.selectNodeContents(c),d.removeAllRanges(),d.addRange(p),l=d.toString()}return l}s.exports=i},279:function(s){function i(){}i.prototype={on:function(c,l,u){var d=this.e||(this.e={});return(d[c]||(d[c]=[])).push({fn:l,ctx:u}),this},once:function(c,l,u){var d=this;function p(){d.off(c,p),l.apply(u,arguments)}return p._=l,this.on(c,p,u)},emit:function(c){var l=[].slice.call(arguments,1),u=((this.e||(this.e={}))[c]||[]).slice(),d=0,p=u.length;for(d;d<p;d++)u[d].fn.apply(u[d].ctx,l);return this},off:function(c,l){var u=this.e||(this.e={}),d=u[c],p=[];if(d&&l)for(var f=0,b=d.length;f<b;f++)d[f].fn!==l&&d[f].fn._!==l&&p.push(d[f]);return p.length?u[c]=p:delete u[c],this}},s.exports=i,s.exports.TinyEmitter=i}},o={};function r(s){if(o[s])return o[s].exports;var i=o[s]={exports:{}};return n[s](i,i.exports,r),i.exports}return function(){r.n=function(s){var i=s&&s.__esModule?function(){return s.default}:function(){return s};return r.d(i,{a:i}),i}}(),function(){r.d=function(s,i){for(var c in i)r.o(i,c)&&!r.o(s,c)&&Object.defineProperty(s,c,{enumerable:!0,get:i[c]})}}(),function(){r.o=function(s,i){return Object.prototype.hasOwnProperty.call(s,i)}}(),r(686)}().default})}(Nv)),Nv.exports}var RSe=qSe();const TSe=Zr(RSe);function FH(e){const t=x.useRef(e);return x.useLayoutEffect(()=>{t.current=e},[e]),t}function Hl(e,t){const n=FH(e),o=FH(t);return Mn(r=>{const s=new TSe(r,{text(){return typeof n.current=="function"?n.current():n.current||""}});return s.on("success",({clearSelection:i})=>{i(),o.current&&o.current()}),()=>{s.destroy()}},[])}function da(e=null){if(!e){if(typeof window>"u")return!1;e=window}const{platform:t}=e.navigator;return t.indexOf("Mac")!==-1||["iPad","iPhone"].includes(t)}const Mc=8,Z2=9,Gr=13,gd=27,$N=32,ESe=33,WSe=34,FM=35,S2=36,wi=37,cc=38,_i=39,Ps=40,zl=46,NSe=121,ea="alt",Ga="ctrl",Up="meta",ta="shift";function z0e(e){return e.length<2?e.toUpperCase():e.charAt(0).toUpperCase()+e.slice(1)}function l3(e,t){return Object.fromEntries(Object.entries(e).map(([n,o])=>[n,t(o)]))}const R5={primary:e=>e()?[Up]:[Ga],primaryShift:e=>e()?[ta,Up]:[Ga,ta],primaryAlt:e=>e()?[ea,Up]:[Ga,ea],secondary:e=>e()?[ta,ea,Up]:[Ga,ta,ea],access:e=>e()?[Ga,ea]:[ta,ea],ctrl:()=>[Ga],alt:()=>[ea],ctrlShift:()=>[Ga,ta],shift:()=>[ta],shiftAlt:()=>[ta,ea],undefined:()=>[]},BSe=l3(R5,e=>(t,n=da)=>[...e(n),t.toLowerCase()].join("+")),O0e=l3(R5,e=>(t,n=da)=>{const o=n(),r={[ea]:o?"⌥":"Alt",[Ga]:o?"⌃":"Ctrl",[Up]:"⌘",[ta]:o?"⇧":"Shift"};return[...e(n).reduce((i,c)=>{var l;const u=(l=r[c])!==null&&l!==void 0?l:c;return o?[...i,u]:[...i,u,"+"]},[]),z0e(t)]}),j1=l3(O0e,e=>(t,n=da)=>e(t,n).join("")),y0e=l3(R5,e=>(t,n=da)=>{const o=n(),r={[ta]:"Shift",[Up]:o?"Command":"Control",[Ga]:"Control",[ea]:o?"Option":"Alt",",":m("Comma"),".":m("Period"),"`":m("Backtick"),"~":m("Tilde")};return[...e(n),t].map(s=>{var i;return z0e((i=r[s])!==null&&i!==void 0?i:s)}).join(o?" ":" + ")});function LSe(e){return[ea,Ga,Up,ta].filter(t=>e[`${t}Key`])}const lc=l3(R5,e=>(t,n,o=da)=>{const r=e(o),s=LSe(t),i={Comma:",",Backslash:"\\",IntlRo:"\\",IntlYen:"\\"},c=r.filter(d=>!s.includes(d)),l=s.filter(d=>!r.includes(d));if(c.length>0||l.length>0)return!1;let u=t.key.toLowerCase();return n?(t.altKey&&n.length===1&&(u=String.fromCharCode(t.keyCode).toLowerCase()),t.shiftKey&&n.length===1&&i[t.code]&&(u=i[t.code]),n==="del"&&(n="delete"),u===n.toLowerCase()):r.includes(u)});function T5(e="firstElement"){const t=x.useRef(e),n=r=>{r.focus({preventScroll:!0})},o=x.useRef();return x.useEffect(()=>{t.current=e},[e]),Mn(r=>{var s;if(!(!r||t.current===!1)&&!r.contains((s=r.ownerDocument?.activeElement)!==null&&s!==void 0?s:null)){if(t.current!=="firstElement"){n(r);return}return o.current=setTimeout(()=>{const i=Xr.tabbable.find(r)[0];i&&n(i)},0),()=>{o.current&&clearTimeout(o.current)}}},[])}let lA=null;function VN(e){const t=x.useRef(null),n=x.useRef(null),o=x.useRef(e);return x.useEffect(()=>{o.current=e},[e]),x.useCallback(r=>{if(r){var s;if(t.current=r,n.current)return;const c=r.ownerDocument.activeElement instanceof window.HTMLIFrameElement?r.ownerDocument.activeElement.contentDocument:r.ownerDocument;n.current=(s=c?.activeElement)!==null&&s!==void 0?s:null}else if(n.current){const c=t.current?.contains(t.current?.ownerDocument.activeElement);if(t.current?.isConnected&&!c){var i;(i=lA)!==null&&i!==void 0||(lA=n.current);return}o.current?o.current():(n.current.isConnected?n.current:lA)?.focus(),lA=null}},[])}const PSe=["button","submit"];function jSe(e){if(!(e instanceof window.HTMLElement))return!1;switch(e.nodeName){case"A":case"BUTTON":return!0;case"INPUT":return PSe.includes(e.type)}return!1}function A0e(e){const t=x.useRef(e);x.useEffect(()=>{t.current=e},[e]);const n=x.useRef(!1),o=x.useRef(),r=x.useCallback(()=>{clearTimeout(o.current)},[]);x.useEffect(()=>()=>r(),[]),x.useEffect(()=>{e||r()},[e,r]);const s=x.useCallback(c=>{const{type:l,target:u}=c;["mouseup","touchend"].includes(l)?n.current=!1:jSe(u)&&(n.current=!0)},[]),i=x.useCallback(c=>{if(c.persist(),n.current)return;const l=c.target.getAttribute("data-unstable-ignore-focus-outside-for-relatedtarget");l&&c.relatedTarget?.closest(l)||(o.current=setTimeout(()=>{if(!document.hasFocus()){c.preventDefault();return}typeof t.current=="function"&&t.current(c)},0))},[]);return{onFocus:r,onMouseDown:s,onMouseUp:s,onTouchStart:s,onTouchEnd:s,onBlur:i}}function uA(e,t){typeof e=="function"?e(t):e&&e.hasOwnProperty("current")&&(e.current=t)}function xn(e){const t=x.useRef(),n=x.useRef(!1),o=x.useRef(!1),r=x.useRef([]),s=x.useRef(e);return s.current=e,x.useLayoutEffect(()=>{o.current===!1&&n.current===!0&&e.forEach((i,c)=>{const l=r.current[c];i!==l&&(uA(l,null),uA(i,t.current))}),r.current=e},e),x.useLayoutEffect(()=>{o.current=!1}),x.useCallback(i=>{uA(t,i),o.current=!0,n.current=i!==null;const c=i?s.current:r.current;for(const l of c)uA(l,i)},[])}function v0e(e){const t=x.useRef(),{constrainTabbing:n=e.focusOnMount!==!1}=e;x.useEffect(()=>{t.current=e},Object.values(e));const o=FN(),r=T5(e.focusOnMount),s=VN(),i=A0e(l=>{t.current?.__unstableOnClose?t.current.__unstableOnClose("focus-outside",l):t.current?.onClose&&t.current.onClose()}),c=x.useCallback(l=>{l&&l.addEventListener("keydown",u=>{u.keyCode===gd&&!u.defaultPrevented&&t.current?.onClose&&(u.preventDefault(),t.current.onClose())})},[]);return[xn([n?o:null,e.focusOnMount!==!1?s:null,e.focusOnMount!==!1?r:null,c]),{...i,tabIndex:-1}]}function HN({isDisabled:e=!1}={}){return Mn(t=>{if(e)return;const n=t?.ownerDocument?.defaultView;if(!n)return;const o=[],r=()=>{t.childNodes.forEach(c=>{c instanceof n.HTMLElement&&(c.getAttribute("inert")||(c.setAttribute("inert","true"),o.push(()=>{c.removeAttribute("inert")})))})},s=F1(r,0,{leading:!0});r();const i=new window.MutationObserver(s);return i.observe(t,{childList:!0}),()=>{i&&i.disconnect(),s.cancel(),o.forEach(c=>c())}},[e])}function Ts(e){const t=x.useRef(()=>{throw new Error("Callbacks created with `useEvent` cannot be called during rendering.")});return x.useInsertionEffect(()=>{t.current=e}),x.useCallback((...n)=>t.current?.(...n),[])}const UN=typeof window<"u"?x.useLayoutEffect:x.useEffect;function x0e({onDragStart:e,onDragMove:t,onDragEnd:n}){const[o,r]=x.useState(!1),s=x.useRef({onDragStart:e,onDragMove:t,onDragEnd:n});UN(()=>{s.current.onDragStart=e,s.current.onDragMove=t,s.current.onDragEnd=n},[e,t,n]);const i=x.useCallback(u=>s.current.onDragMove&&s.current.onDragMove(u),[]),c=x.useCallback(u=>{s.current.onDragEnd&&s.current.onDragEnd(u),document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",c),r(!1)},[]),l=x.useCallback(u=>{s.current.onDragStart&&s.current.onDragStart(u),document.addEventListener("mousemove",i),document.addEventListener("mouseup",c),r(!0)},[]);return x.useEffect(()=>()=>{o&&(document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",c))},[o]),{startDrag:l,endDrag:c,isDragging:o}}const $H=new Map;function ISe(e){if(!e)return null;let t=$H.get(e);return t||(typeof window<"u"&&typeof window.matchMedia=="function"?(t=window.matchMedia(e),$H.set(e,t),t):null)}function XN(e){const t=x.useMemo(()=>{const n=ISe(e);return{subscribe(o){return n?(n.addEventListener?.("change",o),()=>{n.removeEventListener?.("change",o)}):()=>{}},getValue(){var o;return(o=n?.matches)!==null&&o!==void 0?o:!1}}},[e]);return x.useSyncExternalStore(t.subscribe,t.getValue,()=>!1)}function Fr(e){const t=x.useRef();return x.useEffect(()=>{t.current=e},[e]),t.current}const $1=()=>XN("(prefers-reduced-motion: reduce)");function DSe(e,t){const n={...e};return Object.entries(t).forEach(([o,r])=>{n[o]?n[o]={...n[o],to:r.to}:n[o]=r}),n}const VH=(e,t)=>{const n=e?.findIndex(({id:r})=>typeof r=="string"?r===t.id:ds(r,t.id)),o=[...e];return n!==-1?o[n]={id:t.id,changes:DSe(o[n].changes,t.changes)}:o.push(t),o};function FSe(){let e=[],t=[],n=0;const o=()=>{e=e.slice(0,n||void 0),n=0},r=()=>{var i;const c=e.length===0?0:e.length-1;let l=(i=e[c])!==null&&i!==void 0?i:[];t.forEach(u=>{l=VH(l,u)}),t=[],e[c]=l},s=i=>!i.filter(({changes:l})=>Object.values(l).some(({from:u,to:d})=>typeof u!="function"&&typeof d!="function"&&!ds(u,d))).length;return{addRecord(i,c=!1){const l=!i||s(i);if(c){if(l)return;i.forEach(u=>{t=VH(t,u)})}else{if(o(),t.length&&r(),l)return;e.push(i)}},undo(){t.length&&(o(),r());const i=e[e.length-1+n];if(i)return n-=1,i},redo(){const i=e[e.length+n];if(i)return n+=1,i},hasUndo(){return!!e[e.length-1+n]},hasRedo(){return!!e[e.length+n]}}}const HH={xhuge:1920,huge:1440,wide:1280,xlarge:1080,large:960,medium:782,small:600,mobile:480},$Se={">=":"min-width","<":"max-width"},VSe={">=":(e,t)=>t>=e,"<":(e,t)=>t<e},w0e=x.createContext(null),Yn=(e,t=">=")=>{const n=x.useContext(w0e),o=!n&&`(${$Se[t]}: ${HH[e]}px)`,r=XN(o||void 0);return n?VSe[t](HH[e],n):r};Yn.__experimentalWidthProvider=w0e.Provider;function _0e(e,t={}){const n=Ts(e),o=x.useRef(),r=x.useRef();return Ts(s=>{var i;if(s===o.current)return;(i=r.current)!==null&&i!==void 0||(r.current=new ResizeObserver(n));const{current:c}=r;o.current&&c.unobserve(o.current),o.current=s,s&&c.observe(s,t)})}const HSe=e=>{let t;if(!e.contentBoxSize)t=[e.contentRect.width,e.contentRect.height];else if(e.contentBoxSize[0]){const r=e.contentBoxSize[0];t=[r.inlineSize,r.blockSize]}else{const r=e.contentBoxSize;t=[r.inlineSize,r.blockSize]}const[n,o]=t.map(r=>Math.round(r));return{width:n,height:o}},USe={position:"absolute",top:0,left:0,right:0,bottom:0,pointerEvents:"none",opacity:0,overflow:"hidden",zIndex:-1};function XSe({onResize:e}){const t=_0e(n=>{const o=HSe(n.at(-1));e(o)});return a.jsx("div",{ref:t,style:USe,"aria-hidden":"true"})}function GSe(e,t){return e.width===t.width&&e.height===t.height}const UH={width:null,height:null};function KSe(){const[e,t]=x.useState(UH),n=x.useRef(UH),o=x.useCallback(s=>{GSe(n.current,s)||(n.current=s,t(s))},[]);return[a.jsx(XSe,{onResize:o}),e]}function js(e,t={}){return e?_0e(e,t):KSe()}var yS={exports:{}},XH;function YSe(){return XH||(XH=1,function(e){(function(t){e.exports?e.exports=t():window.idleCallbackShim=t()})(function(){var t,n,o,r,s=typeof window<"u"?window:typeof p1!=null?p1:this||{},i=s.cancelRequestAnimationFrame&&s.requestAnimationFrame||setTimeout,c=s.cancelRequestAnimationFrame||clearTimeout,l=[],u=0,d=!1,p=7,f=35,b=125,h=0,g=0,z=0,A={get didTimeout(){return!1},timeRemaining:function(){var B=p-(Date.now()-g);return B<0?0:B}},_=v(function(){p=22,b=66,f=0});function v(B){var N,j,I=99,P=function(){var $=Date.now()-j;$<I?N=setTimeout(P,I-$):(N=null,B())};return function(){j=Date.now(),N||(N=setTimeout(P,I))}}function M(){d&&(r&&c(r),o&&clearTimeout(o),d=!1)}function y(){b!=125&&(p=7,b=125,f=35,d&&(M(),C())),_()}function k(){r=null,o=setTimeout(R,0)}function S(){o=null,i(k)}function C(){d||(n=b-(Date.now()-g),t=Date.now(),d=!0,f&&n<f&&(n=f),n>9?o=setTimeout(S,n):(n=0,S()))}function R(){var B,N,j,I=p>9?9:1;if(g=Date.now(),d=!1,o=null,u>2||g-n-50<t)for(N=0,j=l.length;N<j&&A.timeRemaining()>I;N++)B=l.shift(),z++,B&&B(A);l.length?C():u=0}function T(B){return h++,l.push(B),C(),h}function E(B){var N=B-1-z;l[N]&&(l[N]=null)}if(!s.requestIdleCallback||!s.cancelIdleCallback)s.requestIdleCallback=T,s.cancelIdleCallback=E,s.document&&document.addEventListener&&(s.addEventListener("scroll",y,!0),s.addEventListener("resize",y),document.addEventListener("focus",y,!0),document.addEventListener("mouseover",y,!0),["click","keypress","touchstart","mousedown"].forEach(function(B){document.addEventListener(B,y,{capture:!0,passive:!0})}),s.MutationObserver&&new MutationObserver(y).observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0}));else try{s.requestIdleCallback(function(){},{timeout:0})}catch{(function(N){var j,I;if(s.requestIdleCallback=function(P,$){return $&&typeof $.timeout=="number"?N(P,$.timeout):N(P)},s.IdleCallbackDeadline&&(j=IdleCallbackDeadline.prototype)){if(I=Object.getOwnPropertyDescriptor(j,"timeRemaining"),!I||!I.configurable||!I.get)return;Object.defineProperty(j,"timeRemaining",{value:function(){return I.get.call(this)},enumerable:!0,configurable:!0})}})(s.requestIdleCallback)}return{request:T,cancel:E}})}(yS)),yS.exports}YSe();function ZSe(){return typeof window>"u"?e=>{setTimeout(()=>e(Date.now()),0)}:window.requestIdleCallback}const GH=ZSe(),GN=()=>{const e=new Map;let t=!1;const n=c=>{for(const[l,u]of e)if(e.delete(l),u(),typeof c=="number"||c.timeRemaining()<=0)break;if(e.size===0){t=!1;return}GH(n)};return{add:(c,l)=>{e.set(c,l),t||(t=!0,GH(n))},flush:c=>{const l=e.get(c);return l===void 0?!1:(e.delete(c),l(),!0)},cancel:c=>e.delete(c),reset:()=>{e.clear(),t=!1}}};function QSe(e,t){const n=[];for(let o=0;o<e.length;o++){const r=e[o];if(!t.includes(r))break;n.push(r)}return n}function E4(e,t={step:1}){const{step:n=1}=t,[o,r]=x.useState([]);return x.useEffect(()=>{let s=QSe(e,o);s.length<n&&(s=s.concat(e.slice(s.length,n))),r(s);const i=GN();for(let c=s.length;c<e.length;c+=n)i.add({},()=>{hs.flushSync(()=>{r(l=>[...l,...e.slice(c,c+n)])})});return()=>i.reset()},[e]),o}function JSe(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}function k0e(e,t){var n=x.useState(function(){return{inputs:t,result:e()}})[0],o=x.useRef(!0),r=x.useRef(n),s=o.current||!!(t&&r.current.inputs&&JSe(t,r.current.inputs)),i=s?r.current:{inputs:t,result:e()};return x.useEffect(function(){o.current=!1,r.current=i},[i]),i.result}function C1(e,t,n){const o=k0e(()=>F1(e,t??0,n),[e,t,n]);return x.useEffect(()=>()=>o.cancel(),[o]),o}function S0e(e=""){const[t,n]=x.useState(e),[o,r]=x.useState(e),s=C1(r,250);return x.useEffect(()=>{s(t)},[t,s]),[t,n,o]}function _E(e,t,n){const o=k0e(()=>PN(e,t??0,n),[e,t,n]);return x.useEffect(()=>()=>o.cancel(),[o]),o}function E5({dropZoneElement:e,isDisabled:t,onDrop:n,onDragStart:o,onDragEnter:r,onDragLeave:s,onDragEnd:i,onDragOver:c}){const l=Ts(n),u=Ts(o),d=Ts(r),p=Ts(s),f=Ts(i),b=Ts(c);return Mn(h=>{if(t)return;const g=e??h;let z=!1;const{ownerDocument:A}=g;function _(R){const{defaultView:T}=A;if(!R||!T||!(R instanceof T.HTMLElement)||!g.contains(R))return!1;let E=R;do if(E.dataset.isDropZone)return E===g;while(E=E.parentElement);return!1}function v(R){z||(z=!0,A.addEventListener("dragend",C),A.addEventListener("mousemove",C),o&&u(R))}function M(R){R.preventDefault(),!g.contains(R.relatedTarget)&&r&&d(R)}function y(R){!R.defaultPrevented&&c&&b(R),R.preventDefault()}function k(R){_(R.relatedTarget)||s&&p(R)}function S(R){R.defaultPrevented||(R.preventDefault(),R.dataTransfer&&R.dataTransfer.files.length,n&&l(R),C(R))}function C(R){z&&(z=!1,A.removeEventListener("dragend",C),A.removeEventListener("mousemove",C),i&&f(R))}return g.setAttribute("data-is-drop-zone","true"),g.addEventListener("drop",S),g.addEventListener("dragenter",M),g.addEventListener("dragover",y),g.addEventListener("dragleave",k),A.addEventListener("dragenter",v),()=>{g.removeAttribute("data-is-drop-zone"),g.removeEventListener("drop",S),g.removeEventListener("dragenter",M),g.removeEventListener("dragover",y),g.removeEventListener("dragleave",k),A.removeEventListener("dragend",C),A.removeEventListener("mousemove",C),A.removeEventListener("dragenter",v)}},[t,e])}function C0e(){return Mn(e=>{const{ownerDocument:t}=e;if(!t)return;const{defaultView:n}=t;if(!n)return;function o(){t&&t.activeElement===e&&e.focus()}return n.addEventListener("blur",o),()=>{n.removeEventListener("blur",o)}},[])}const eCe=30;function tCe(e,t,n,o){var r,s;const i=(r=o?.initWindowSize)!==null&&r!==void 0?r:eCe,c=(s=o?.useWindowing)!==null&&s!==void 0?s:!0,[l,u]=x.useState({visibleItems:i,start:0,end:i,itemInView:d=>d>=0&&d<=i});return x.useLayoutEffect(()=>{if(!c)return;const d=ps(e.current),p=b=>{var h;if(!d)return;const g=Math.ceil(d.clientHeight/t),z=b?g:(h=o?.windowOverscan)!==null&&h!==void 0?h:g,A=Math.floor(d.scrollTop/t),_=Math.max(0,A-z),v=Math.min(n-1,A+g+z);u(M=>{const y={visibleItems:g,start:_,end:v,itemInView:k=>_<=k&&k<=v};return M.start!==y.start||M.end!==y.end||M.visibleItems!==y.visibleItems?y:M})};p(!0);const f=F1(()=>{p()},16);return d?.addEventListener("scroll",f),d?.ownerDocument?.defaultView?.addEventListener("resize",f),d?.ownerDocument?.defaultView?.addEventListener("resize",f),()=>{d?.removeEventListener("scroll",f),d?.ownerDocument?.defaultView?.removeEventListener("resize",f)}},[t,e,n,o?.expandedState,o?.windowOverscan,c]),x.useLayoutEffect(()=>{if(!c)return;const d=ps(e.current),p=f=>{switch(f.keyCode){case S2:return d?.scrollTo({top:0});case FM:return d?.scrollTo({top:n*t});case ESe:return d?.scrollTo({top:d.scrollTop-l.visibleItems*t});case WSe:return d?.scrollTo({top:d.scrollTop+l.visibleItems*t})}};return d?.ownerDocument?.defaultView?.addEventListener("keydown",p),()=>{d?.ownerDocument?.defaultView?.removeEventListener("keydown",p)}},[n,t,e,l.visibleItems,c,o?.expandedState]),[l,u]}function $M(e,t){const[n,o]=x.useMemo(()=>[r=>e.subscribe(t,r),()=>e.get(t)],[e,t]);return x.useSyncExternalStore(n,o,o)}function q0e(e){const t=Object.keys(e);return function(o={},r){const s={};let i=!1;for(const c of t){const l=e[c],u=o[c],d=l(u,r);s[c]=d,i=i||d!==u}return i?s:o}}function At(e){const t=new WeakMap,n=(...o)=>{let r=t.get(n.registry);return r||(r=e(n.registry.select),t.set(n.registry,r)),r(...o)};return n.isRegistrySelector=!0,n}function AS(e){return e.isRegistryControl=!0,e}const nCe="@@data/SELECT",oCe="@@data/RESOLVE_SELECT",rCe="@@data/DISPATCH",sCe={[nCe]:AS(e=>({storeKey:t,selectorName:n,args:o})=>e.select(t)[n](...o)),[oCe]:AS(e=>({storeKey:t,selectorName:n,args:o})=>{const r=e.select(t)[n].hasResolver?"resolveSelect":"select";return e[r](t)[n](...o)}),[rCe]:AS(e=>({storeKey:t,actionName:n,args:o})=>e.dispatch(t)[n](...o))},iCe=["@wordpress/block-directory","@wordpress/block-editor","@wordpress/block-library","@wordpress/blocks","@wordpress/commands","@wordpress/components","@wordpress/core-commands","@wordpress/core-data","@wordpress/customize-widgets","@wordpress/data","@wordpress/edit-post","@wordpress/edit-site","@wordpress/edit-widgets","@wordpress/editor","@wordpress/format-library","@wordpress/patterns","@wordpress/preferences","@wordpress/reusable-blocks","@wordpress/router","@wordpress/dataviews","@wordpress/fields","@wordpress/media-utils","@wordpress/upload-media"],KH=[],aCe=!globalThis.IS_WORDPRESS_CORE,P0=(e,t)=>{if(!iCe.includes(t))throw new Error(`You tried to opt-in to unstable APIs as module "${t}". This feature is only for JavaScript modules shipped with WordPress core. Please do not use it in plugins and themes as the unstable APIs will be removed without a warning. If you ignore this error and depend on unstable features, your product will inevitably break on one of the next WordPress releases.`);if(!aCe&&KH.includes(t))throw new Error(`You tried to opt-in to unstable APIs as module "${t}" which is already registered. This feature is only for JavaScript modules shipped with WordPress core. Please do not use it in plugins and themes as the unstable APIs will be removed without a warning. If you ignore this error and depend on unstable features, your product will inevitably break on one of the next WordPress releases.`);return KH.push(t),{lock:cCe,unlock:lCe}};function cCe(e,t){if(!e)throw new Error("Cannot lock an undefined object.");const n=e;MM in n||(n[MM]={}),R0e.set(n[MM],t)}function lCe(e){if(!e)throw new Error("Cannot unlock an undefined object.");const t=e;if(!(MM in t))throw new Error("Cannot unlock an object that was not locked before. ");return R0e.get(t[MM])}const R0e=new WeakMap,MM=Symbol("Private API ID"),{lock:Zg,unlock:Db}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/data"),uCe=()=>e=>t=>r0e(t)?t.then(n=>{if(n)return e(n)}):e(t),dCe=(e,t)=>()=>n=>o=>{const r=e.select(t).getCachedResolvers();return Object.entries(r).forEach(([i,c])=>{const l=e.stores[t]?.resolvers?.[i];!l||!l.shouldInvalidate||c.forEach((u,d)=>{u!==void 0&&(u.status!=="finished"&&u.status!=="error"||l.shouldInvalidate(o,...d)&&e.dispatch(t).invalidateResolution(i,d))})}),n(o)};function pCe(e){return()=>t=>n=>typeof n=="function"?n(e):t(n)}const fCe=e=>t=>(n={},o)=>{const r=o[e];if(r===void 0)return n;const s=t(n[r],o);return s===n[r]?n:{...n,[r]:s}};function Lu(e){if(e==null)return[];const t=e.length;let n=t;for(;n>0&&e[n-1]===void 0;)n--;return n===t?e:e.slice(0,n)}const bCe=fCe("selectorName")((e=new Va,t)=>{switch(t.type){case"START_RESOLUTION":{const n=new Va(e);return n.set(Lu(t.args),{status:"resolving"}),n}case"FINISH_RESOLUTION":{const n=new Va(e);return n.set(Lu(t.args),{status:"finished"}),n}case"FAIL_RESOLUTION":{const n=new Va(e);return n.set(Lu(t.args),{status:"error",error:t.error}),n}case"START_RESOLUTIONS":{const n=new Va(e);for(const o of t.args)n.set(Lu(o),{status:"resolving"});return n}case"FINISH_RESOLUTIONS":{const n=new Va(e);for(const o of t.args)n.set(Lu(o),{status:"finished"});return n}case"FAIL_RESOLUTIONS":{const n=new Va(e);return t.args.forEach((o,r)=>{const s={status:"error",error:void 0},i=t.errors[r];i&&(s.error=i),n.set(Lu(o),s)}),n}case"INVALIDATE_RESOLUTION":{const n=new Va(e);return n.delete(Lu(t.args)),n}}return e}),hCe=(e={},t)=>{switch(t.type){case"INVALIDATE_RESOLUTION_FOR_STORE":return{};case"INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR":{if(t.selectorName in e){const{[t.selectorName]:n,...o}=e;return o}return e}case"START_RESOLUTION":case"FINISH_RESOLUTION":case"FAIL_RESOLUTION":case"START_RESOLUTIONS":case"FINISH_RESOLUTIONS":case"FAIL_RESOLUTIONS":case"INVALIDATE_RESOLUTION":return bCe(e,t)}return e};var vS={};function mCe(e){return[e]}function gCe(e){return!!e&&typeof e=="object"}function MCe(){var e={clear:function(){e.head=null}};return e}function YH(e,t,n){var o;if(e.length!==t.length)return!1;for(o=n;o<e.length;o++)if(e[o]!==t[o])return!1;return!0}function It(e,t){var n,o=t||mCe;function r(c){var l=n,u=!0,d,p,f,b;for(d=0;d<c.length;d++){if(p=c[d],!gCe(p)){u=!1;break}l.has(p)?l=l.get(p):(f=new WeakMap,l.set(p,f),l=f)}return l.has(vS)||(b=MCe(),b.isUniqueByDependants=u,l.set(vS,b)),l.get(vS)}function s(){n=new WeakMap}function i(){var c=arguments.length,l,u,d,p,f;for(p=new Array(c),d=0;d<c;d++)p[d]=arguments[d];for(f=o.apply(null,p),l=r(f),l.isUniqueByDependants||(l.lastDependants&&!YH(f,l.lastDependants,0)&&l.clear(),l.lastDependants=f),u=l.head;u;){if(!YH(u.args,p,1)){u=u.next;continue}return u!==l.head&&(u.prev.next=u.next,u.next&&(u.next.prev=u.prev),u.next=l.head,u.prev=null,l.head.prev=u,l.head=u),u.val}return u={val:e.apply(null,p)},p[0]=null,u.args=p,l.head&&(l.head.prev=u,u.next=l.head),l.head=u,u.val}return i.getDependants=o,i.clear=s,s(),i}function Df(e,t,n){const o=e[t];if(o)return o.get(Lu(n))}function zCe(e,t,n){Ke("wp.data.select( store ).getIsResolving",{since:"6.6",version:"6.8",alternative:"wp.data.select( store ).getResolutionState"});const o=Df(e,t,n);return o&&o.status==="resolving"}function T0e(e,t,n){return Df(e,t,n)!==void 0}function OCe(e,t,n){const o=Df(e,t,n)?.status;return o==="finished"||o==="error"}function yCe(e,t,n){return Df(e,t,n)?.status==="error"}function ACe(e,t,n){const o=Df(e,t,n);return o?.status==="error"?o.error:null}function vCe(e,t,n){return Df(e,t,n)?.status==="resolving"}function xCe(e){return e}function wCe(e){return Object.values(e).some(t=>Array.from(t._map.values()).some(n=>n[1]?.status==="resolving"))}const _Ce=It(e=>{const t={};return Object.values(e).forEach(n=>Array.from(n._map.values()).forEach(o=>{var r;const s=(r=o[1]?.status)!==null&&r!==void 0?r:"error";t[s]||(t[s]=0),t[s]++})),t},e=>[e]),kCe=Object.freeze(Object.defineProperty({__proto__:null,countSelectorsByStatus:_Ce,getCachedResolvers:xCe,getIsResolving:zCe,getResolutionError:ACe,getResolutionState:Df,hasFinishedResolution:OCe,hasResolutionFailed:yCe,hasResolvingSelectors:wCe,hasStartedResolution:T0e,isResolving:vCe},Symbol.toStringTag,{value:"Module"}));function E0e(e,t){return{type:"START_RESOLUTION",selectorName:e,args:t}}function W0e(e,t){return{type:"FINISH_RESOLUTION",selectorName:e,args:t}}function N0e(e,t,n){return{type:"FAIL_RESOLUTION",selectorName:e,args:t,error:n}}function SCe(e,t){return{type:"START_RESOLUTIONS",selectorName:e,args:t}}function CCe(e,t){return{type:"FINISH_RESOLUTIONS",selectorName:e,args:t}}function qCe(e,t,n){return{type:"FAIL_RESOLUTIONS",selectorName:e,args:t,errors:n}}function RCe(e,t){return{type:"INVALIDATE_RESOLUTION",selectorName:e,args:t}}function TCe(){return{type:"INVALIDATE_RESOLUTION_FOR_STORE"}}function ECe(e){return{type:"INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR",selectorName:e}}const WCe=Object.freeze(Object.defineProperty({__proto__:null,failResolution:N0e,failResolutions:qCe,finishResolution:W0e,finishResolutions:CCe,invalidateResolution:RCe,invalidateResolutionForStore:TCe,invalidateResolutionForStoreSelector:ECe,startResolution:E0e,startResolutions:SCe},Symbol.toStringTag,{value:"Module"})),xS=e=>{const t=[...e];for(let n=t.length-1;n>=0;n--)t[n]===void 0&&t.splice(n,1);return t},Yu=(e,t)=>Object.fromEntries(Object.entries(e??{}).map(([n,o])=>[n,t(o,n)])),NCe=(e,t)=>t instanceof Map?Object.fromEntries(t):t instanceof window.HTMLElement?null:t;function BCe(){const e={};return{isRunning(t,n){return e[t]&&e[t].get(xS(n))},clear(t,n){e[t]&&e[t].delete(xS(n))},markAsRunning(t,n){e[t]||(e[t]=new Va),e[t].set(xS(n),!0)}}}function ZH(e){const t=new WeakMap;return{get(n,o){let r=t.get(n);return r||(r=e(n,o),t.set(n,r)),r}}}function x1(e,t){const n={},o={},r={privateActions:n,registerPrivateActions:i=>{Object.assign(n,i)},privateSelectors:o,registerPrivateSelectors:i=>{Object.assign(o,i)}},s={name:e,instantiate:i=>{const c=new Set,l=t.reducer,d=LCe(e,t,i,{registry:i,get dispatch(){return z},get select(){return S},get resolveSelect(){return B()}});Zg(d,r);const p=BCe();function f(P){return(...$)=>Promise.resolve(d.dispatch(P(...$)))}const b={...Yu(WCe,f),...Yu(t.actions,f)},h=ZH(f),g=new Proxy(()=>{},{get:(P,$)=>{const F=n[$];return F?h.get(F,$):b[$]}}),z=new Proxy(g,{apply:(P,$,[F])=>d.dispatch(F)});Zg(b,g);const A=t.resolvers?ICe(t.resolvers):{};function _(P,$){P.isRegistrySelector&&(P.registry=i);const F=(...Z)=>{Z=kE(P,Z);const V=d.__unstableOriginalGetState();return P.isRegistrySelector&&(P.registry=i),P(V.root,...Z)};F.__unstableNormalizeArgs=P.__unstableNormalizeArgs;const X=A[$];return X?DCe(F,$,X,d,p):(F.hasResolver=!1,F)}function v(P){const $=(...F)=>{const X=d.__unstableOriginalGetState(),Z=F&&F[0],V=F&&F[1],ee=t?.selectors?.[Z];return Z&&ee&&(F[1]=kE(ee,V)),P(X.metadata,...F)};return $.hasResolver=!1,$}const M={...Yu(kCe,v),...Yu(t.selectors,_)},y=ZH(_);for(const[P,$]of Object.entries(o))y.get($,P);const k=new Proxy(()=>{},{get:(P,$)=>{const F=o[$];return F?y.get(F,$):M[$]}}),S=new Proxy(k,{apply:(P,$,[F])=>F(d.__unstableOriginalGetState())});Zg(M,k);const C=PCe(M,d),R=jCe(M,d),T=()=>M,E=()=>b,B=()=>C,N=()=>R;d.__unstableOriginalGetState=d.getState,d.getState=()=>d.__unstableOriginalGetState().root;const j=d&&(P=>(c.add(P),()=>c.delete(P)));let I=d.__unstableOriginalGetState();return d.subscribe(()=>{const P=d.__unstableOriginalGetState(),$=P!==I;if(I=P,$)for(const F of c)F()}),{reducer:l,store:d,actions:b,selectors:M,resolvers:A,getSelectors:T,getResolveSelectors:B,getSuspendSelectors:N,getActions:E,subscribe:j}}};return Zg(s,r),s}function LCe(e,t,n,o){const r={...t.controls,...sCe},s=Yu(r,p=>p.isRegistryControl?p(n):p),i=[dCe(n,e),uCe,Z6e(s),pCe(o)],c=[P6e(...i)];typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION__&&c.push(window.__REDUX_DEVTOOLS_EXTENSION__({name:e,instanceId:e,serialize:{replacer:NCe}}));const{reducer:l,initialState:u}=t,d=q0e({metadata:hCe,root:l});return t0e(d,{root:u},Co(c))}function PCe(e,t){const{getIsResolving:n,hasStartedResolution:o,hasFinishedResolution:r,hasResolutionFailed:s,isResolving:i,getCachedResolvers:c,getResolutionState:l,getResolutionError:u,hasResolvingSelectors:d,countSelectorsByStatus:p,...f}=e;return Yu(f,(b,h)=>b.hasResolver?(...g)=>new Promise((z,A)=>{const _=()=>e.hasFinishedResolution(h,g),v=S=>{if(e.hasResolutionFailed(h,g)){const R=e.getResolutionError(h,g);A(R)}else z(S)},M=()=>b.apply(null,g),y=M();if(_())return v(y);const k=t.subscribe(()=>{_()&&(k(),v(M()))})}):async(...g)=>b.apply(null,g))}function jCe(e,t){return Yu(e,(n,o)=>n.hasResolver?(...r)=>{const s=n.apply(null,r);if(e.hasFinishedResolution(o,r)){if(e.hasResolutionFailed(o,r))throw e.getResolutionError(o,r);return s}throw new Promise(i=>{const c=t.subscribe(()=>{e.hasFinishedResolution(o,r)&&(i(),c())})})}:n)}function ICe(e){return Yu(e,t=>t.fulfill?t:{...t,fulfill:t})}function DCe(e,t,n,o,r){function s(c){const l=o.getState();if(r.isRunning(t,c)||typeof n.isFulfilled=="function"&&n.isFulfilled(l,...c))return;const{metadata:u}=o.__unstableOriginalGetState();T0e(u,t,c)||(r.markAsRunning(t,c),setTimeout(async()=>{r.clear(t,c),o.dispatch(E0e(t,c));try{const d=n.fulfill(...c);d&&await o.dispatch(d),o.dispatch(W0e(t,c))}catch(d){o.dispatch(N0e(t,c,d))}},0))}const i=(...c)=>(c=kE(e,c),s(c),e(...c));return i.hasResolver=!0,i}function kE(e,t){return e.__unstableNormalizeArgs&&typeof e.__unstableNormalizeArgs=="function"&&t?.length?e.__unstableNormalizeArgs(t):t}const FCe={name:"core/data",instantiate(e){const t=o=>(r,...s)=>e.select(r)[o](...s),n=o=>(r,...s)=>e.dispatch(r)[o](...s);return{getSelectors(){return Object.fromEntries(["getIsResolving","hasStartedResolution","hasFinishedResolution","isResolving","getCachedResolvers"].map(o=>[o,t(o)]))},getActions(){return Object.fromEntries(["startResolution","finishResolution","invalidateResolution","invalidateResolutionForStore","invalidateResolutionForStoreSelector"].map(o=>[o,n(o)]))},subscribe(){return()=>()=>{}}}}};function QH(){let e=!1,t=!1;const n=new Set,o=()=>Array.from(n).forEach(r=>r());return{get isPaused(){return e},subscribe(r){return n.add(r),()=>n.delete(r)},pause(){e=!0},resume(){e=!1,t&&(t=!1,o())},emit(){if(e){t=!0;return}o()}}}function vg(e){return typeof e=="string"?e:e.name}function W5(e={},t=null){const n={},o=QH();let r=null;function s(){o.emit()}const i=(y,k)=>{if(!k)return o.subscribe(y);const S=vg(k),C=n[S];return C?C.subscribe(y):t?t.subscribe(y,k):o.subscribe(y)};function c(y){const k=vg(y);r?.add(k);const S=n[k];return S?S.getSelectors():t?.select(k)}function l(y,k){r=new Set;try{return y.call(this)}finally{k.current=Array.from(r),r=null}}function u(y){const k=vg(y);r?.add(k);const S=n[k];return S?S.getResolveSelectors():t&&t.resolveSelect(k)}function d(y){const k=vg(y);r?.add(k);const S=n[k];return S?S.getSuspendSelectors():t&&t.suspendSelect(k)}function p(y){const k=vg(y),S=n[k];return S?S.getActions():t&&t.dispatch(k)}function f(y){return Object.fromEntries(Object.entries(y).map(([k,S])=>typeof S!="function"?[k,S]:[k,function(){return _[k].apply(null,arguments)}]))}function b(y,k){if(n[y])return console.error('Store "'+y+'" is already registered.'),n[y];const S=k();if(typeof S.getSelectors!="function")throw new TypeError("store.getSelectors must be a function");if(typeof S.getActions!="function")throw new TypeError("store.getActions must be a function");if(typeof S.subscribe!="function")throw new TypeError("store.subscribe must be a function");S.emitter=QH();const C=S.subscribe;if(S.subscribe=R=>{const T=S.emitter.subscribe(R),E=C(()=>{if(S.emitter.isPaused){S.emitter.emit();return}R()});return()=>{E?.(),T?.()}},n[y]=S,S.subscribe(s),t)try{Db(S.store).registerPrivateActions(Db(t).privateActionsOf(y)),Db(S.store).registerPrivateSelectors(Db(t).privateSelectorsOf(y))}catch{}return S}function h(y){b(y.name,()=>y.instantiate(_))}function g(y,k){Ke("wp.data.registerGenericStore",{since:"5.9",alternative:"wp.data.register( storeDescriptor )"}),b(y,()=>k)}function z(y,k){if(!k.reducer)throw new TypeError("Must specify store reducer");return b(y,()=>x1(y,k).instantiate(_)).store}function A(y){if(o.isPaused){y();return}o.pause(),Object.values(n).forEach(k=>k.emitter.pause());try{y()}finally{o.resume(),Object.values(n).forEach(k=>k.emitter.resume())}}let _={batch:A,stores:n,namespaces:n,subscribe:i,select:c,resolveSelect:u,suspendSelect:d,dispatch:p,use:v,register:h,registerGenericStore:g,registerStore:z,__unstableMarkListeningStores:l};function v(y,k){if(y)return _={..._,...y(_,k)},_}_.register(FCe);for(const[y,k]of Object.entries(e))_.register(x1(y,k));t&&t.subscribe(s);const M=f(_);return Zg(M,{privateActionsOf:y=>{try{return Db(n[y].store).privateActions}catch{return{}}},privateSelectorsOf:y=>{try{return Db(n[y].store).privateSelectors}catch{return{}}}}),M}const qc=W5();var wS,JH;function $Ce(){if(JH)return wS;JH=1;var e=function(_){return t(_)&&!n(_)};function t(A){return!!A&&typeof A=="object"}function n(A){var _=Object.prototype.toString.call(A);return _==="[object RegExp]"||_==="[object Date]"||s(A)}var o=typeof Symbol=="function"&&Symbol.for,r=o?Symbol.for("react.element"):60103;function s(A){return A.$$typeof===r}function i(A){return Array.isArray(A)?[]:{}}function c(A,_){return _.clone!==!1&&_.isMergeableObject(A)?g(i(A),A,_):A}function l(A,_,v){return A.concat(_).map(function(M){return c(M,v)})}function u(A,_){if(!_.customMerge)return g;var v=_.customMerge(A);return typeof v=="function"?v:g}function d(A){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(A).filter(function(_){return Object.propertyIsEnumerable.call(A,_)}):[]}function p(A){return Object.keys(A).concat(d(A))}function f(A,_){try{return _ in A}catch{return!1}}function b(A,_){return f(A,_)&&!(Object.hasOwnProperty.call(A,_)&&Object.propertyIsEnumerable.call(A,_))}function h(A,_,v){var M={};return v.isMergeableObject(A)&&p(A).forEach(function(y){M[y]=c(A[y],v)}),p(_).forEach(function(y){b(A,y)||(f(A,y)&&v.isMergeableObject(_[y])?M[y]=u(y,v)(A[y],_[y],v):M[y]=c(_[y],v))}),M}function g(A,_,v){v=v||{},v.arrayMerge=v.arrayMerge||l,v.isMergeableObject=v.isMergeableObject||e,v.cloneUnlessOtherwiseSpecified=c;var M=Array.isArray(_),y=Array.isArray(A),k=M===y;return k?M?v.arrayMerge(A,_,v):h(A,_,v):c(_,v)}g.all=function(_,v){if(!Array.isArray(_))throw new Error("first argument should be an array");return _.reduce(function(M,y){return g(M,y,v)},{})};var z=g;return wS=z,wS}var VCe=$Ce();const B0e=Zr(VCe),L0e=x.createContext(qc),{Consumer:Ymn,Provider:KN}=L0e;function Fn(){return x.useContext(L0e)}const P0e=x.createContext(!1),{Consumer:Zmn,Provider:N5}=P0e;function HCe(){return x.useContext(P0e)}const _S=GN();function UCe(e,t){if(!e||!t)return;const n=typeof e=="object"&&typeof t=="object"?Object.keys(e).filter(o=>e[o]!==t[o]):[];console.warn(`The \`useSelect\` hook returns different values when called with the same state and parameters. This can lead to unnecessary re-renders and performance issues if not fixed. Non-equal value keys: %s -`,n.join(", "))}function GCe(e,t){const n=e.select,o={};let r,s,i=!1,c,l,u;const d=new Map;function p(b){var h;return(h=e.stores[b]?.store?.getState?.())!==null&&h!==void 0?h:{}}const f=b=>{const h=[...b],g=new Set;function z(_){if(i)for(const S of h)d.get(S)!==p(S)&&(i=!1);d.clear();const v=()=>{i=!1,_()},M=()=>{c?kS.add(o,v):v()},y=[];function k(S){y.push(e.subscribe(M,S))}for(const S of h)k(S);return g.add(k),()=>{g.delete(k);for(const S of y.values())S?.();kS.cancel(o)}}function A(_){for(const v of _)if(!h.includes(v)){h.push(v);for(const M of g)M(v)}}return{subscribe:z,updateStores:A}};return(b,h)=>{function g(){if(i&&b===r)return s;const A={current:null},_=e.__unstableMarkListeningStores(()=>b(n,e),A);if(globalThis.SCRIPT_DEBUG&&!u){const v=b(n,e);ds(_,v)||(XCe(_,v),u=!0)}if(l)l.updateStores(A.current);else{for(const v of A.current)d.set(v,p(v));l=f(A.current)}ds(s,_)||(s=_),r=b,i=!0}function z(){return g(),s}return c&&!h&&(i=!1,kS.cancel(o)),g(),c=h,{subscribe:l.subscribe,getValue:z}}}function KCe(e){return Fn().select(e)}function YCe(e,t,n){const o=Fn(),r=UCe(),s=x.useMemo(()=>GCe(o),[o,e]),i=x.useCallback(t,n),{subscribe:c,getValue:l}=s(i,r),u=x.useSyncExternalStore(c,l,l);return x.useDebugValue(u),u}function G(e,t){const n=typeof e!="function",o=x.useRef(n);if(n!==o.current){const r=o.current?"static":"mapping",s=n?"static":"mapping";throw new Error(`Switching useSelect from ${r} to ${s} is not allowed`)}return n?KCe(e):YCe(!1,e,t)}const Xl=e=>Or(t=>nSe(n=>{const r=G((s,i)=>e(s,n,i));return a.jsx(t,{...n,...r})}),"withSelect"),Oe=e=>{const{dispatch:t}=Fn();return e===void 0?t:t(e)},ZCe=(e,t)=>{const n=Fn(),o=x.useRef(e);return XN(()=>{o.current=e}),x.useMemo(()=>{const r=o.current(n.dispatch,n);return Object.fromEntries(Object.entries(r).map(([s,i])=>(typeof i!="function"&&console.warn(`Property ${s} returned from dispatchMap in useDispatchWithMap must be a function.`),[s,(...c)=>o.current(n.dispatch,n)[s](...c)])))},[n,...t])},Ff=e=>Or(t=>n=>{const r=ZCe((s,i)=>e(s,n,i),[]);return a.jsx(t,{...n,...r})},"withDispatch");function kr(e){return qc.dispatch(e)}function uo(e){return qc.select(e)}const J0=q0e,j0e=qc.resolveSelect;qc.suspendSelect;const QCe=qc.subscribe;qc.registerGenericStore;const JCe=qc.registerStore;qc.use;const Us=qc.register;var SS,eU;function eqe(){return eU||(eU=1,SS=function e(t,n){if(t===n)return!0;if(t&&n&&typeof t=="object"&&typeof n=="object"){if(t.constructor!==n.constructor)return!1;var o,r,s;if(Array.isArray(t)){if(o=t.length,o!=n.length)return!1;for(r=o;r--!==0;)if(!e(t[r],n[r]))return!1;return!0}if(t instanceof Map&&n instanceof Map){if(t.size!==n.size)return!1;for(r of t.entries())if(!n.has(r[0]))return!1;for(r of t.entries())if(!e(r[1],n.get(r[0])))return!1;return!0}if(t instanceof Set&&n instanceof Set){if(t.size!==n.size)return!1;for(r of t.entries())if(!n.has(r[0]))return!1;return!0}if(ArrayBuffer.isView(t)&&ArrayBuffer.isView(n)){if(o=t.length,o!=n.length)return!1;for(r=o;r--!==0;)if(t[r]!==n[r])return!1;return!0}if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if(s=Object.keys(t),o=s.length,o!==Object.keys(n).length)return!1;for(r=o;r--!==0;)if(!Object.prototype.hasOwnProperty.call(n,s[r]))return!1;for(r=o;r--!==0;){var i=s[r];if(!e(t[i],n[i]))return!1}return!0}return t!==t&&n!==n}),SS}var tqe=eqe();const N0=Zr(tqe);function nqe(e,t){if(!e)return t;let n=!1;const o={};for(const r in t)N0(e[r],t[r])?o[r]=e[r]:(n=!0,o[r]=t[r]);if(!n)return e;for(const r in e)o.hasOwnProperty(r)||(o[r]=e[r]);return o}function Md(e){return typeof e=="string"?e.split(","):Array.isArray(e)?e:null}const I0e=e=>t=>(n,o)=>n===void 0||e(o)?t(n,o):n,ZN=e=>(...t)=>async({resolveSelect:n})=>{await n[e](...t)},tU=e=>t=>(n={},o)=>{const r=o[e];if(r===void 0)return n;const s=t(n[r],o);return s===n[r]?n:{...n,[r]:s}},D0e=e=>t=>(n,o)=>t(n,e(o));function oqe(e){const t=new WeakMap;return n=>{let o;return t.has(n)?o=t.get(n):(o=e(n),n!==null&&typeof n=="object"&&t.set(n,o)),o}}function rqe(e,t){return(e.rawAttributes||[]).includes(t)}function L5(e,t,n){if(!e||typeof e!="object")return e;const o=Array.isArray(t)?t:t.split(".");return o.reduce((r,s,i)=>(r[s]===void 0&&(Number.isInteger(o[i+1])?r[s]=[]:r[s]={}),i===o.length-1&&(r[s]=n),r[s]),e),e}function sqe(e,t,n){if(!e||typeof e!="object"||typeof t!="string"&&!Array.isArray(t))return e;const o=Array.isArray(t)?t:t.split(".");let r=e;return o.forEach(s=>{r=r?.[s]}),r!==void 0?r:n}function iqe(e){return/^\s*\d+\s*$/.test(e)}const zM=["create","read","update","delete"];function QN(e){const t={};if(!e)return t;const n={create:"POST",read:"GET",update:"PUT",delete:"DELETE"};for(const[o,r]of Object.entries(n))t[o]=e.includes(r);return t}function P5(e,t,n){return(typeof t=="object"?[e,t.kind,t.name,t.id]:[e,t,n]).filter(Boolean).join("/")}const F0e=Symbol("RECEIVE_INTERMEDIATE_RESULTS");function $0e(e,t,n){return{type:"RECEIVE_ITEMS",items:Array.isArray(e)?e:[e],persistedEdits:t,meta:n}}function aqe(e,t,n,o=!1){return{type:"REMOVE_ITEMS",itemIds:Array.isArray(n)?n:[n],kind:e,name:t,invalidateCache:o}}function cqe(e,t={},n,o){return{...$0e(e,n,o),query:t}}function lqe(e){const t={stableKey:"",page:1,perPage:10,fields:null,include:null,context:"default"},n=Object.keys(e).sort();for(let s=0;s<n.length;s++){const i=n[s];let c=e[i];switch(i){case"page":t[i]=Number(c);break;case"per_page":t.perPage=Number(c);break;case"context":t.context=c;break;default:if(i==="_fields"){var o;t.fields=(o=Md(c))!==null&&o!==void 0?o:[],c=t.fields.join()}if(i==="include"){var r;typeof c=="number"&&(c=c.toString()),t.include=((r=Md(c))!==null&&r!==void 0?r:[]).map(Number),c=t.include.join()}t.stableKey+=(t.stableKey?"&":"")+tn("",{[i]:c}).slice(1)}}return t}const jh=oqe(lqe),nU=new WeakMap;function uqe(e,t){const{stableKey:n,page:o,perPage:r,include:s,fields:i,context:c}=jh(t);let l;if(e.queries?.[c]?.[n]&&(l=e.queries[c][n].itemIds),!l)return null;const u=r===-1?0:(o-1)*r,d=r===-1?l.length:Math.min(u+r,l.length),p=[];for(let f=u;f<d;f++){const b=l[f];if(Array.isArray(s)&&!s.includes(b)||b===void 0)continue;if(!e.items[c]?.hasOwnProperty(b))return null;const h=e.items[c][b];let g;if(Array.isArray(i)){g={};for(let z=0;z<i.length;z++){const A=i[z].split(".");let _=h;A.forEach(v=>{_=_?.[v]}),L5(g,A,_)}}else{if(!e.itemIsComplete[c]?.[b])return null;g=h}p.push(g)}return p}const V0e=It((e,t={})=>{let n=nU.get(e);if(n){const r=n.get(t);if(r!==void 0)return r}else n=new Va,nU.set(e,n);const o=uqe(e,t);return n.set(t,o),o});function H0e(e,t={}){var n;const{stableKey:o,context:r}=jh(t);return(n=e.queries?.[r]?.[o]?.meta?.totalItems)!==null&&n!==void 0?n:null}function dqe(e,t={}){var n;const{stableKey:o,context:r}=jh(t);return(n=e.queries?.[r]?.[o]?.meta?.totalPages)!==null&&n!==void 0?n:null}function pqe(e={},t){switch(t.type){case"ADD_FORMAT_TYPES":return{...e,...t.formatTypes.reduce((n,o)=>({...n,[o.name]:o}),{})};case"REMOVE_FORMAT_TYPES":return Object.fromEntries(Object.entries(e).filter(([n])=>!t.names.includes(n)))}return e}const fqe=J0({formatTypes:pqe}),JN=It(e=>Object.values(e.formatTypes),e=>[e.formatTypes]);function bqe(e,t){return e.formatTypes[t]}function hqe(e,t){const n=JN(e);return n.find(({className:o,tagName:r})=>o===null&&t===r)||n.find(({className:o,tagName:r})=>o===null&&r==="*")}function mqe(e,t){return JN(e).find(({className:n})=>n===null?!1:` ${t} `.indexOf(` ${n} `)>=0)}const gqe=Object.freeze(Object.defineProperty({__proto__:null,getFormatType:bqe,getFormatTypeForBareElement:hqe,getFormatTypeForClassName:mqe,getFormatTypes:JN},Symbol.toStringTag,{value:"Module"}));function Mqe(e){return{type:"ADD_FORMAT_TYPES",formatTypes:Array.isArray(e)?e:[e]}}function zqe(e){return{type:"REMOVE_FORMAT_TYPES",names:Array.isArray(e)?e:[e]}}const Oqe=Object.freeze(Object.defineProperty({__proto__:null,addFormatTypes:Mqe,removeFormatTypes:zqe},Symbol.toStringTag,{value:"Module"})),yqe="core/rich-text",dl=x1(yqe,{reducer:fqe,selectors:gqe,actions:Oqe});Us(dl);function N4(e,t){if(e===t)return!0;if(!e||!t||e.type!==t.type)return!1;const n=e.attributes,o=t.attributes;if(n===o)return!0;if(!n||!o)return!1;const r=Object.keys(n),s=Object.keys(o);if(r.length!==s.length)return!1;const i=r.length;for(let c=0;c<i;c++){const l=r[c];if(n[l]!==o[l])return!1}return!0}function Ih(e){const t=e.formats.slice();return t.forEach((n,o)=>{const r=t[o-1];if(r){const s=n.slice();s.forEach((i,c)=>{const l=r[c];N4(i,l)&&(s[c]=l)}),t[o]=s}}),{...e,formats:t}}function oU(e,t,n){return e=e.slice(),e[t]=n,e}function qi(e,t,n=e.start,o=e.end){const{formats:r,activeFormats:s}=e,i=r.slice();if(n===o){const c=i[n]?.find(({type:l})=>l===t.type);if(c){const l=i[n].indexOf(c);for(;i[n]&&i[n][l]===c;)i[n]=oU(i[n],l,t),n--;for(o++;i[o]&&i[o][l]===c;)i[o]=oU(i[o],l,t),o++}}else{let c=1/0;for(let l=n;l<o;l++)if(i[l]){i[l]=i[l].filter(({type:d})=>d!==t.type);const u=i[l].length;u<c&&(c=u)}else i[l]=[],c=0;for(let l=n;l<o;l++)i[l].splice(c,0,t)}return Ih({...e,formats:i,activeFormats:[...s?.filter(({type:c})=>c!==t.type)||[],t]})}function pl({implementation:e},t){return pl.body||(pl.body=e.createHTMLDocument("").body),pl.body.innerHTML=t,pl.body}const fl="",U0e="\uFEFF";function eB(e,t=[]){const{formats:n,start:o,end:r,activeFormats:s}=e;if(o===void 0)return t;if(o===r){if(s)return s;const u=n[o-1]||t,d=n[o]||t;return u.length<d.length?u:d}if(!n[o])return t;const i=n.slice(o,r),c=[...i[0]];let l=i.length;for(;l--;){const u=i[l];if(!u)return t;let d=c.length;for(;d--;){const p=c[d];u.find(f=>N4(p,f))||c.splice(d,1)}if(c.length===0)return t}return c||t}function X0e(e){return uo(dl).getFormatType(e)}function rU(e,t){if(t)return e;const n={};for(const o in e){let r=o;o.startsWith("data-disable-rich-text-")&&(r=o.slice(23)),n[r]=e[o]}return n}function pA({type:e,tagName:t,attributes:n,unregisteredAttributes:o,object:r,boundaryClass:s,isEditableTree:i}){const c=X0e(e);let l={};if(s&&i&&(l["data-rich-text-format-boundary"]="true"),!c)return n&&(l={...n,...l}),{type:e,attributes:rU(l,i),object:r};l={...o,...l};for(const u in n){const d=c.attributes?c.attributes[u]:!1;d?l[d]=n[u]:l[u]=n[u]}return c.className&&(l.class?l.class=`${c.className} ${l.class}`:l.class=c.className),i&&c.contentEditable===!1&&(l.contenteditable="false"),{type:t||c.tagName,object:c.object,attributes:rU(l,i)}}function Aqe(e,t,n){do if(e[n]!==t[n])return!1;while(n--);return!0}function G0e({value:e,preserveWhiteSpace:t,createEmpty:n,append:o,getLastChild:r,getParent:s,isText:i,getText:c,remove:l,appendText:u,onStartIndex:d,onEndIndex:p,isEditableTree:f,placeholder:b}){const{formats:h,replacements:g,text:z,start:A,end:_}=e,v=h.length+1,M=n(),y=eB(e),k=y[y.length-1];let S,C;o(M,"");for(let R=0;R<v;R++){const T=z.charAt(R),E=f&&(!C||C===` -`),B=h[R];let N=r(M);if(B&&B.forEach((j,I)=>{if(N&&S&&Aqe(B,S,I)){N=r(N);return}const{type:P,tagName:$,attributes:F,unregisteredAttributes:X}=j,Z=f&&j===k,V=s(N),ee=o(V,pA({type:P,tagName:$,attributes:F,unregisteredAttributes:X,boundaryClass:Z,isEditableTree:f}));i(N)&&c(N).length===0&&l(N),N=o(ee,"")}),R===0&&(d&&A===0&&d(M,N),p&&_===0&&p(M,N)),T===fl){const j=g[R];if(!j)continue;const{type:I,attributes:P,innerHTML:$}=j,F=X0e(I);f&&I==="#comment"?(N=o(s(N),{type:"span",attributes:{contenteditable:"false","data-rich-text-comment":P["data-rich-text-comment"]}}),o(o(N,{type:"span"}),P["data-rich-text-comment"].trim())):!f&&I==="script"?(N=o(s(N),pA({type:"script",isEditableTree:f})),o(N,{html:decodeURIComponent(P["data-rich-text-script"])})):F?.contentEditable===!1?(N=o(s(N),pA({...j,isEditableTree:f,boundaryClass:A===R&&_===R+1})),$&&o(N,{html:$})):N=o(s(N),pA({...j,object:!0,isEditableTree:f})),N=o(s(N),"")}else!t&&T===` -`?(N=o(s(N),{type:"br",attributes:f?{"data-rich-text-line-break":"true"}:void 0,object:!0}),N=o(s(N),"")):i(N)?u(N,T):N=o(s(N),T);d&&A===R+1&&d(M,N),p&&_===R+1&&p(M,N),E&&R===z.length&&(o(s(N),U0e),b&&z.length===0&&o(s(N),{type:"span",attributes:{"data-rich-text-placeholder":b,style:"pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;"}})),S=B,C=T}return M}function T0({value:e,preserveWhiteSpace:t}){const n=G0e({value:e,preserveWhiteSpace:t,createEmpty:vqe,append:wqe,getLastChild:xqe,getParent:kqe,isText:Sqe,getText:Cqe,remove:qqe,appendText:_qe});return K0e(n.children)}function vqe(){return{}}function xqe({children:e}){return e&&e[e.length-1]}function wqe(e,t){return typeof t=="string"&&(t={text:t}),t.parent=e,e.children=e.children||[],e.children.push(t),t}function _qe(e,t){e.text+=t}function kqe({parent:e}){return e}function Sqe({text:e}){return typeof e=="string"}function Cqe({text:e}){return e}function qqe(e){const t=e.parent.children.indexOf(e);return t!==-1&&e.parent.children.splice(t,1),e}function Rqe({type:e,attributes:t,object:n,children:o}){if(e==="#comment")return`<!--${t["data-rich-text-comment"]}-->`;let r="";for(const s in t)Ire(s)&&(r+=` ${s}="${v5(t[s])}"`);return n?`<${e}${r}>`:`<${e}${r}>${K0e(o)}</${e}>`}function K0e(e=[]){return e.map(t=>t.html!==void 0?t.html:t.text===void 0?Rqe(t):wke(t.text)).join("")}function Jp({text:e}){return e.replace(fl,"")}function $p(){return{formats:[],replacements:[],text:""}}function Tqe({tagName:e,attributes:t}){let n;if(t&&t.class&&(n=uo(dl).getFormatTypeForClassName(t.class),n&&(t.class=` ${t.class} `.replace(` ${n.className} `," ").trim(),t.class||delete t.class)),n||(n=uo(dl).getFormatTypeForBareElement(e)),!n)return t?{type:e,attributes:t}:{type:e};if(n.__experimentalCreatePrepareEditableTree&&!n.__experimentalCreateOnChangeEditableValue)return null;if(!t)return{formatType:n,type:n.name,tagName:e};const o={},r={},s={...t};for(const i in n.attributes){const c=n.attributes[i];o[i]=s[c],delete s[c],typeof o[i]>"u"&&delete o[i]}for(const i in s)r[i]=t[i];return n.contentEditable===!1&&delete r.contenteditable,{formatType:n,type:n.name,tagName:e,attributes:o,unregisteredAttributes:r}}class Xo{#e;static empty(){return new Xo}static fromPlainText(t){return new Xo(eo({text:t}))}static fromHTMLString(t){return new Xo(eo({html:t}))}static fromHTMLElement(t,n={}){const{preserveWhiteSpace:o=!1}=n,r=o?t:Y0e(t),s=new Xo(eo({element:r}));return Object.defineProperty(s,"originalHTML",{value:t.innerHTML}),s}constructor(t=$p()){this.#e=t}toPlainText(){return Jp(this.#e)}toHTMLString({preserveWhiteSpace:t}={}){return this.originalHTML||T0({value:this.#e,preserveWhiteSpace:t})}valueOf(){return this.toHTMLString()}toString(){return this.toHTMLString()}toJSON(){return this.toHTMLString()}get length(){return this.text.length}get formats(){return this.#e.formats}get replacements(){return this.#e.replacements}get text(){return this.#e.text}}for(const e of Object.getOwnPropertyNames(String.prototype))Xo.prototype.hasOwnProperty(e)||Object.defineProperty(Xo.prototype,e,{value(...t){return this.toHTMLString()[e](...t)}});function eo({element:e,text:t,html:n,range:o,__unstableIsEditableTree:r}={}){return n instanceof Xo?{text:n.text,formats:n.formats,replacements:n.replacements}:typeof t=="string"&&t.length>0?{formats:Array(t.length),replacements:Array(t.length),text:t}:(typeof n=="string"&&n.length>0&&(e=pl(document,n)),typeof e!="object"?$p():Z0e({element:e,range:o,isEditableTree:r}))}function qu(e,t,n,o){if(!n)return;const{parentNode:r}=t,{startContainer:s,startOffset:i,endContainer:c,endOffset:l}=n,u=e.text.length;o.start!==void 0?e.start=u+o.start:t===s&&t.nodeType===t.TEXT_NODE?e.start=u+i:r===s&&t===s.childNodes[i]?e.start=u:r===s&&t===s.childNodes[i-1]?e.start=u+o.text.length:t===s&&(e.start=u),o.end!==void 0?e.end=u+o.end:t===c&&t.nodeType===t.TEXT_NODE?e.end=u+l:r===c&&t===c.childNodes[l-1]?e.end=u+o.text.length:r===c&&t===c.childNodes[l]?e.end=u:t===c&&(e.end=u+l)}function Eqe(e,t,n){if(!t)return;const{startContainer:o,endContainer:r}=t;let{startOffset:s,endOffset:i}=t;return e===o&&(s=n(e.nodeValue.slice(0,s)).length),e===r&&(i=n(e.nodeValue.slice(0,i)).length),{startContainer:o,startOffset:s,endContainer:r,endOffset:i}}function Y0e(e,t=!0){const n=e.cloneNode(!0);return n.normalize(),Array.from(n.childNodes).forEach((o,r,s)=>{if(o.nodeType===o.TEXT_NODE){let i=o.nodeValue;/[\n\t\r\f]/.test(i)&&(i=i.replace(/[\n\t\r\f]+/g," ")),i.indexOf(" ")!==-1&&(i=i.replace(/ {2,}/g," ")),r===0&&i.startsWith(" ")?i=i.slice(1):t&&r===s.length-1&&i.endsWith(" ")&&(i=i.slice(0,-1)),o.nodeValue=i}else o.nodeType===o.ELEMENT_NODE&&Y0e(o,!1)}),n}const Wqe="\r";function sU(e){return e.replace(new RegExp(`[${U0e}${fl}${Wqe}]`,"gu"),"")}function Z0e({element:e,range:t,isEditableTree:n}){const o=$p();if(!e)return o;if(!e.hasChildNodes())return qu(o,e,t,$p()),o;const r=e.childNodes.length;for(let i=0;i<r;i++){const c=e.childNodes[i],l=c.nodeName.toLowerCase();if(c.nodeType===c.TEXT_NODE){const p=sU(c.nodeValue);t=Eqe(c,t,sU),qu(o,c,t,{text:p}),o.formats.length+=p.length,o.replacements.length+=p.length,o.text+=p;continue}if(c.nodeType===c.COMMENT_NODE||c.nodeType===c.ELEMENT_NODE&&c.tagName==="SPAN"&&c.hasAttribute("data-rich-text-comment")){const p={formats:[,],replacements:[{type:"#comment",attributes:{"data-rich-text-comment":c.nodeType===c.COMMENT_NODE?c.nodeValue:c.getAttribute("data-rich-text-comment")}}],text:fl};qu(o,c,t,p),Pu(o,p);continue}if(c.nodeType!==c.ELEMENT_NODE)continue;if(n&&l==="br"&&!c.getAttribute("data-rich-text-line-break")){qu(o,c,t,$p());continue}if(l==="script"){const p={formats:[,],replacements:[{type:l,attributes:{"data-rich-text-script":c.getAttribute("data-rich-text-script")||encodeURIComponent(c.innerHTML)}}],text:fl};qu(o,c,t,p),Pu(o,p);continue}if(l==="br"){qu(o,c,t,$p()),Pu(o,eo({text:` -`}));continue}const u=Tqe({tagName:l,attributes:Nqe({element:c})});if(u?.formatType?.contentEditable===!1){delete u.formatType,qu(o,c,t,$p()),Pu(o,{formats:[,],replacements:[{...u,innerHTML:c.innerHTML}],text:fl});continue}u&&delete u.formatType;const d=Z0e({element:c,range:t,isEditableTree:n});if(qu(o,c,t,d),!u||c.getAttribute("data-rich-text-placeholder"))Pu(o,d);else if(d.text.length===0)u.attributes&&Pu(o,{formats:[,],replacements:[u],text:fl});else{let p=function(f){if(p.formats===f)return p.newFormats;const b=f?[u,...f]:[u];return p.formats=f,p.newFormats=b,b};var s=p;p.newFormats=[u],Pu(o,{...d,formats:Array.from(d.formats,p)})}}return o}function Nqe({element:e}){if(!e.hasAttributes())return;const t=e.attributes.length;let n;for(let o=0;o<t;o++){const{name:r,value:s}=e.attributes[o];if(r.indexOf("data-rich-text-")===0)continue;const i=/^on/i.test(r)?"data-disable-rich-text-"+r:r;n=n||{},n[i]=s}return n}function Pu(e,t){return e.formats=e.formats.concat(t.formats),e.replacements=e.replacements.concat(t.replacements),e.text+=t.text,e}function Bqe(...e){return Ih(e.reduce(Pu,eo()))}function tB(e,t){return eB(e).find(({type:n})=>n===t)}function Lqe({start:e,end:t,replacements:n,text:o}){if(!(e+1!==t||o[e]!==fl))return n[e]}function Gl({start:e,end:t}){if(!(e===void 0||t===void 0))return e===t}function CE({text:e}){return e.length===0}function Pqe(e,t=""){return typeof t=="string"&&(t=eo({text:t})),Ih(e.reduce((n,{formats:o,replacements:r,text:s})=>({formats:n.formats.concat(t.formats,o),replacements:n.replacements.concat(t.replacements,r),text:n.text+t.text+s})))}function Q0e(e,t){if(t={name:e,...t},typeof t.name!="string"){window.console.error("Format names must be strings.");return}if(!/^[a-z][a-z0-9-]*\/[a-z][a-z0-9-]*$/.test(t.name)){window.console.error("Format names must contain a namespace prefix, include only lowercase alphanumeric characters or dashes, and start with a letter. Example: my-plugin/my-custom-format");return}if(uo(dl).getFormatType(t.name)){window.console.error('Format "'+t.name+'" is already registered.');return}if(typeof t.tagName!="string"||t.tagName===""){window.console.error("Format tag names must be a string.");return}if((typeof t.className!="string"||t.className==="")&&t.className!==null){window.console.error("Format class names must be a string, or null to handle bare elements.");return}if(!/^[_a-zA-Z]+[a-zA-Z0-9_-]*$/.test(t.className)){window.console.error("A class name must begin with a letter, followed by any number of hyphens, underscores, letters, or numbers.");return}if(t.className===null){const n=uo(dl).getFormatTypeForBareElement(t.tagName);if(n&&n.name!=="core/unknown"){window.console.error(`Format "${n.name}" is already registered to handle bare tag name "${t.tagName}".`);return}}else{const n=uo(dl).getFormatTypeForClassName(t.className);if(n){window.console.error(`Format "${n.name}" is already registered to handle class name "${t.className}".`);return}}if(!("title"in t)||t.title===""){window.console.error('The format "'+t.name+'" must have a title.');return}if("keywords"in t&&t.keywords.length>3){window.console.error('The format "'+t.name+'" can have a maximum of 3 keywords.');return}if(typeof t.title!="string"){window.console.error("Format titles must be strings.");return}return kr(dl).addFormatTypes(t),t}function Yd(e,t,n=e.start,o=e.end){const{formats:r,activeFormats:s}=e,i=r.slice();if(n===o){const c=i[n]?.find(({type:l})=>l===t);if(c){for(;i[n]?.find(l=>l===c);)CS(i,n,t),n--;for(o++;i[o]?.find(l=>l===c);)CS(i,o,t),o++}}else for(let c=n;c<o;c++)i[c]&&CS(i,c,t);return Ih({...e,formats:i,activeFormats:s?.filter(({type:c})=>c!==t)||[]})}function CS(e,t,n){const o=e[t].filter(({type:r})=>r!==n);o.length?e[t]=o:delete e[t]}function E0(e,t,n=e.start,o=e.end){const{formats:r,replacements:s,text:i}=e;typeof t=="string"&&(t=eo({text:t}));const c=n+t.text.length;return Ih({formats:r.slice(0,n).concat(t.formats,r.slice(o)),replacements:s.slice(0,n).concat(t.replacements,s.slice(o)),text:i.slice(0,n)+t.text+i.slice(o),start:c,end:c})}function fa(e,t,n){return E0(e,eo(),t,n)}function jqe({formats:e,replacements:t,text:n,start:o,end:r},s,i){return n=n.replace(s,(c,...l)=>{const u=l[l.length-2];let d=i,p,f;return typeof d=="function"&&(d=i(c,...l)),typeof d=="object"?(p=d.formats,f=d.replacements,d=d.text):(p=Array(d.length),f=Array(d.length),e[u]&&(p=p.fill(e[u]))),e=e.slice(0,u).concat(p,e.slice(u+c.length)),t=t.slice(0,u).concat(f,t.slice(u+c.length)),o&&(o=r=u+d.length),d}),Ih({formats:e,replacements:t,text:n,start:o,end:r})}function J0e(e,t,n,o){return E0(e,{formats:[,],replacements:[t],text:fl},n,o)}function Q2(e,t=e.start,n=e.end){const{formats:o,replacements:r,text:s}=e;return t===void 0||n===void 0?{...e}:{formats:o.slice(t,n),replacements:r.slice(t,n),text:s.slice(t,n)}}function nB({formats:e,replacements:t,text:n,start:o,end:r},s){if(typeof s!="string")return Iqe(...arguments);let i=0;return n.split(s).map(c=>{const l=i,u={formats:e.slice(l,l+c.length),replacements:t.slice(l,l+c.length),text:c};return i+=s.length+c.length,o!==void 0&&r!==void 0&&(o>=l&&o<i?u.start=o-l:o<l&&r>l&&(u.start=0),r>=l&&r<i?u.end=r-l:o<i&&r>i&&(u.end=c.length)),u})}function Iqe({formats:e,replacements:t,text:n,start:o,end:r},s=o,i=r){if(o===void 0||r===void 0)return;const c={formats:e.slice(0,s),replacements:t.slice(0,s),text:n.slice(0,s)},l={formats:e.slice(i),replacements:t.slice(i),text:n.slice(i),start:0,end:0};return[c,l]}function e1e(e,t){return e===t||e&&t&&e.startContainer===t.startContainer&&e.startOffset===t.startOffset&&e.endContainer===t.endContainer&&e.endOffset===t.endOffset}function qE(e,t,n){const o=e.parentNode;let r=0;for(;e=e.previousSibling;)r++;return n=[r,...n],o!==t&&(n=qE(o,t,n)),n}function iU(e,t){for(t=[...t];e&&t.length>1;)e=e.childNodes[t.shift()];return{node:e,offset:t[0]}}function Dqe(e,t){if(t.html!==void 0)return e.innerHTML+=t.html;typeof t=="string"&&(t=e.ownerDocument.createTextNode(t));const{type:n,attributes:o}=t;if(n)if(n==="#comment")t=e.ownerDocument.createComment(o["data-rich-text-comment"]);else{t=e.ownerDocument.createElement(n);for(const r in o)t.setAttribute(r,o[r])}return e.appendChild(t)}function Fqe(e,t){e.appendData(t)}function $qe({lastChild:e}){return e}function Vqe({parentNode:e}){return e}function Hqe(e){return e.nodeType===e.TEXT_NODE}function Uqe({nodeValue:e}){return e}function Xqe(e){return e.parentNode.removeChild(e)}function Gqe({value:e,prepareEditableTree:t,isEditableTree:n=!0,placeholder:o,doc:r=document}){let s=[],i=[];return t&&(e={...e,formats:t(e)}),{body:G0e({value:e,createEmpty:()=>pl(r,""),append:Dqe,getLastChild:$qe,getParent:Vqe,isText:Hqe,getText:Uqe,remove:Xqe,appendText:Fqe,onStartIndex(u,d){s=qE(d,u,[d.nodeValue.length])},onEndIndex(u,d){i=qE(d,u,[d.nodeValue.length])},isEditableTree:n,placeholder:o}),selection:{startPath:s,endPath:i}}}function Kqe({value:e,current:t,prepareEditableTree:n,__unstableDomOnly:o,placeholder:r}){const{body:s,selection:i}=Gqe({value:e,prepareEditableTree:n,placeholder:r,doc:t.ownerDocument});t1e(s,t),e.start!==void 0&&!o&&Yqe(i,t)}function t1e(e,t){let n=0,o;for(;o=e.firstChild;){const r=t.childNodes[n];if(!r)t.appendChild(o);else if(r.isEqualNode(o))e.removeChild(o);else if(r.nodeName!==o.nodeName||r.nodeType===r.TEXT_NODE&&r.data!==o.data)t.replaceChild(o,r);else{const s=r.attributes,i=o.attributes;if(s){let c=s.length;for(;c--;){const{name:l}=s[c];o.getAttribute(l)||r.removeAttribute(l)}}if(i)for(let c=0;c<i.length;c++){const{name:l,value:u}=i[c];r.getAttribute(l)!==u&&r.setAttribute(l,u)}t1e(o,r),e.removeChild(o)}n++}for(;t.childNodes[n];)t.removeChild(t.childNodes[n])}function Yqe({startPath:e,endPath:t},n){const{node:o,offset:r}=iU(n,e),{node:s,offset:i}=iU(n,t),{ownerDocument:c}=n,{defaultView:l}=c,u=l.getSelection(),d=c.createRange();d.setStart(o,r),d.setEnd(s,i);const{activeElement:p}=c;if(u.rangeCount>0){if(e1e(d,u.getRangeAt(0)))return;u.removeAllRanges()}u.addRange(d),p!==c.activeElement&&p instanceof l.HTMLElement&&p.focus()}function Zqe(e){if(!(typeof document>"u")){if(document.readyState==="complete"||document.readyState==="interactive")return void e();document.addEventListener("DOMContentLoaded",e)}}function aU(e="polite"){const t=document.createElement("div");t.id=`a11y-speak-${e}`,t.className="a11y-speak-region",t.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),t.setAttribute("aria-live",e),t.setAttribute("aria-relevant","additions text"),t.setAttribute("aria-atomic","true");const{body:n}=document;return n&&n.appendChild(t),t}function Qqe(){const e=document.createElement("p");e.id="a11y-speak-intro-text",e.className="a11y-speak-intro-text",e.textContent=m("Notifications"),e.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),e.setAttribute("hidden","hidden");const{body:t}=document;return t&&t.appendChild(e),e}function Jqe(){const e=document.getElementsByClassName("a11y-speak-region"),t=document.getElementById("a11y-speak-intro-text");for(let n=0;n<e.length;n++)e[n].textContent="";t&&t.setAttribute("hidden","hidden")}let cU="";function eRe(e){return e=e.replace(/<[^<>]+>/g," "),cU===e&&(e+=" "),cU=e,e}function Yt(e,t){Jqe(),e=eRe(e);const n=document.getElementById("a11y-speak-intro-text"),o=document.getElementById("a11y-speak-assertive"),r=document.getElementById("a11y-speak-polite");o&&t==="assertive"?o.textContent=e:r&&(r.textContent=e),n&&n.removeAttribute("hidden")}function tRe(){const e=document.getElementById("a11y-speak-intro-text"),t=document.getElementById("a11y-speak-assertive"),n=document.getElementById("a11y-speak-polite");e===null&&Qqe(),t===null&&aU("assertive"),n===null&&aU("polite")}Zqe(tRe);function zc(e,t){return tB(e,t.type)?(t.title&&Yt(xe(m("%s removed."),t.title),"assertive"),Yd(e,t.type)):(t.title&&Yt(xe(m("%s applied."),t.title),"assertive"),qi(e,t))}function nRe(e,t,n,o){let r=e.startContainer;if(r.nodeType===r.TEXT_NODE&&e.startOffset===r.length&&r.nextSibling)for(r=r.nextSibling;r.firstChild;)r=r.firstChild;if(r.nodeType!==r.ELEMENT_NODE&&(r=r.parentElement),!r||r===t||!t.contains(r))return;const s=n+(o?"."+o:"");for(;r!==t;){if(r.matches(s))return r;r=r.parentElement}}function oRe(e,t){return{contextElement:t,getBoundingClientRect(){return t.contains(e.startContainer)?e.getBoundingClientRect():t.getBoundingClientRect()}}}function qS(e,t,n){if(!e)return;const{ownerDocument:o}=e,{defaultView:r}=o,s=r.getSelection();if(!s||!s.rangeCount)return;const i=s.getRangeAt(0);if(!i||!i.startContainer)return;const c=nRe(i,e,t,n);return c||oRe(i,e)}function u3({editableContentElement:e,settings:t={}}){const{tagName:n,className:o,isActive:r}=t,[s,i]=x.useState(()=>qS(e,n,o)),c=Fr(r);return x.useLayoutEffect(()=>{if(!e)return;function l(){i(qS(e,n,o))}function u(){p.addEventListener("selectionchange",l)}function d(){p.removeEventListener("selectionchange",l)}const{ownerDocument:p}=e;return(e===p.activeElement||!c&&r||c&&!r)&&(i(qS(e,n,o)),u()),e.addEventListener("focusin",u),e.addEventListener("focusout",d),()=>{d(),e.removeEventListener("focusin",u),e.removeEventListener("focusout",d)}},[e,n,o,r,c]),s}const rRe="pre-wrap",sRe="1px";function iRe(){return x.useCallback(e=>{e&&(e.style.whiteSpace=rRe,e.style.minWidth=sRe)},[])}function aRe({record:e}){const t=x.useRef(),{activeFormats:n=[],replacements:o,start:r}=e.current,s=o[r];return x.useEffect(()=>{if((!n||!n.length)&&!s)return;const i="*[data-rich-text-format-boundary]",c=t.current.querySelector(i);if(!c)return;const{ownerDocument:l}=c,{defaultView:u}=l,p=u.getComputedStyle(c).color.replace(")",", 0.2)").replace("rgb","rgba"),f=`.rich-text:focus ${i}`,b=`background-color: ${p}`,h=`${f} {${b}}`,g="rich-text-boundary-style";let z=l.getElementById(g);z||(z=l.createElement("style"),z.id=g,l.head.appendChild(z)),z.innerHTML!==h&&(z.innerHTML=h)},[n,s]),t}const cRe=e=>t=>{function n(r){const{record:s}=e.current,{ownerDocument:i}=t;if(Gl(s.current)||!t.contains(i.activeElement))return;const c=Q2(s.current),l=Jp(c),u=T0({value:c});r.clipboardData.setData("text/plain",l),r.clipboardData.setData("text/html",u),r.clipboardData.setData("rich-text","true"),r.preventDefault(),r.type==="cut"&&i.execCommand("delete")}const{defaultView:o}=t.ownerDocument;return o.addEventListener("copy",n),o.addEventListener("cut",n),()=>{o.removeEventListener("copy",n),o.removeEventListener("cut",n)}},lRe=()=>e=>{function t(o){const{target:r}=o;if(r===e||r.textContent&&r.isContentEditable)return;const{ownerDocument:s}=r,{defaultView:i}=s,c=i.getSelection();if(c.containsNode(r))return;const l=s.createRange(),u=r.isContentEditable?r:r.closest("[contenteditable]");l.selectNode(u),c.removeAllRanges(),c.addRange(l),o.preventDefault()}function n(o){o.relatedTarget&&!e.contains(o.relatedTarget)&&o.relatedTarget.tagName==="A"&&t(o)}return e.addEventListener("click",t),e.addEventListener("focusin",n),()=>{e.removeEventListener("click",t),e.removeEventListener("focusin",n)}},lU=[],uRe=e=>t=>{function n(o){const{keyCode:r,shiftKey:s,altKey:i,metaKey:c,ctrlKey:l}=o;if(s||i||c||l||r!==wi&&r!==_i)return;const{record:u,applyRecord:d,forceRender:p}=e.current,{text:f,formats:b,start:h,end:g,activeFormats:z=[]}=u.current,A=Gl(u.current),{ownerDocument:_}=t,{defaultView:v}=_,{direction:M}=v.getComputedStyle(t),y=M==="rtl"?_i:wi,k=o.keyCode===y;if(A&&z.length===0&&(h===0&&k||g===f.length&&!k)||!A)return;const S=b[h-1]||lU,C=b[h]||lU,R=k?S:C,T=z.every((P,$)=>P===R[$]);let E=z.length;if(T?E<R.length&&E++:E--,E===z.length){u.current._newActiveFormats=R;return}o.preventDefault();const j=(T?R:k?C:S).slice(0,E),I={...u.current,activeFormats:j};u.current=I,d(I),p()}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}},dRe=e=>t=>{function n(o){const{keyCode:r}=o,{createRecord:s,handleChange:i}=e.current;if(o.defaultPrevented||r!==Ol&&r!==Mc)return;const c=s(),{start:l,end:u,text:d}=c;l===0&&u!==0&&u===d.length&&(i(fa(c)),o.preventDefault())}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}};function pRe({value:e,start:t,end:n,formats:o}){const r=Math.min(t,n),s=Math.max(t,n),i=e.formats[r-1]||[],c=e.formats[s]||[];for(e.activeFormats=o.map((l,u)=>{if(i[u]){if(N4(l,i[u]))return i[u]}else if(c[u]&&N4(l,c[u]))return c[u];return l});--n>=t;)e.activeFormats.length>0?e.formats[n]=e.activeFormats:delete e.formats[n];return e}const fRe=new Set(["insertParagraph","insertOrderedList","insertUnorderedList","insertHorizontalRule","insertLink"]),uU=[],n1e="data-rich-text-placeholder";function bRe(e){const t=e.getSelection(),{anchorNode:n,anchorOffset:o}=t;if(n.nodeType!==n.ELEMENT_NODE)return;const r=n.childNodes[o];!r||r.nodeType!==r.ELEMENT_NODE||!r.hasAttribute(n1e)||t.collapseToStart()}const hRe=e=>t=>{const{ownerDocument:n}=t,{defaultView:o}=n;let r=!1;function s(d){if(r)return;let p;d&&(p=d.inputType);const{record:f,applyRecord:b,createRecord:h,handleChange:g}=e.current;if(p&&(p.indexOf("format")===0||fRe.has(p))){b(f.current);return}const z=h(),{start:A,activeFormats:_=[]}=f.current,v=pRe({value:z,start:A,end:z.start,formats:_});g(v)}function i(){const{record:d,applyRecord:p,createRecord:f,onSelectionChange:b}=e.current;if(t.contentEditable!=="true")return;if(n.activeElement!==t){n.removeEventListener("selectionchange",i);return}if(r)return;const{start:h,end:g,text:z}=f(),A=d.current;if(z!==A.text){s();return}if(h===A.start&&g===A.end){A.text.length===0&&h===0&&bRe(o);return}const _={...A,start:h,end:g,activeFormats:A._newActiveFormats,_newActiveFormats:void 0},v=eB(_,uU);_.activeFormats=v,d.current=_,p(_,{domOnly:!0}),b(h,g)}function c(){r=!0,n.removeEventListener("selectionchange",i),t.querySelector(`[${n1e}]`)?.remove()}function l(){r=!1,s({inputType:"insertText"}),n.addEventListener("selectionchange",i)}function u(){const{record:d,isSelected:p,onSelectionChange:f,applyRecord:b}=e.current;t.parentElement.closest('[contenteditable="true"]')||(p?b(d.current,{domOnly:!0}):d.current={...d.current,start:void 0,end:void 0,activeFormats:uU},f(d.current.start,d.current.end),window.queueMicrotask(i),n.addEventListener("selectionchange",i))}return t.addEventListener("input",s),t.addEventListener("compositionstart",c),t.addEventListener("compositionend",l),t.addEventListener("focus",u),()=>{t.removeEventListener("input",s),t.removeEventListener("compositionstart",c),t.removeEventListener("compositionend",l),t.removeEventListener("focus",u)}},mRe=()=>e=>{const{ownerDocument:t}=e,{defaultView:n}=t,o=n?.getSelection();let r;function s(){return o.rangeCount?o.getRangeAt(0):null}function i(c){const l=c.type==="keydown"?"keyup":"pointerup";function u(){t.removeEventListener(l,d),t.removeEventListener("selectionchange",u),t.removeEventListener("input",u)}function d(){u(),!e1e(r,s())&&t.dispatchEvent(new Event("selectionchange"))}t.addEventListener(l,d),t.addEventListener("selectionchange",u),t.addEventListener("input",u),r=s()}return e.addEventListener("pointerdown",i),e.addEventListener("keydown",i),()=>{e.removeEventListener("pointerdown",i),e.removeEventListener("keydown",i)}};function gRe(){return e=>{const{ownerDocument:t}=e,{defaultView:n}=t;let o=null;function r(i){i.defaultPrevented||i.target!==e&&i.target.contains(e)&&(o=e.getAttribute("contenteditable"),e.setAttribute("contenteditable","false"),n.getSelection().removeAllRanges())}function s(){o!==null&&(e.setAttribute("contenteditable",o),o=null)}return n.addEventListener("pointerdown",r),n.addEventListener("pointerup",s),()=>{n.removeEventListener("pointerdown",r),n.removeEventListener("pointerup",s)}}}const MRe=[cRe,lRe,uRe,dRe,hRe,mRe,gRe];function zRe(e){const t=x.useRef(e);x.useInsertionEffect(()=>{t.current=e});const n=x.useMemo(()=>MRe.map(o=>o(t)),[t]);return Mn(o=>{const r=n.map(s=>s(o));return()=>{r.forEach(s=>s())}},[n])}function o1e({value:e="",selectionStart:t,selectionEnd:n,placeholder:o,onSelectionChange:r,preserveWhiteSpace:s,onChange:i,__unstableDisableFormats:c,__unstableIsSelected:l,__unstableDependencies:u=[],__unstableAfterParse:d,__unstableBeforeSerialize:p,__unstableAddInvisibleFormats:f}){const b=Fn(),[,h]=x.useReducer(()=>({})),g=x.useRef();function z(){const{ownerDocument:{defaultView:T}}=g.current,E=T.getSelection(),B=E.rangeCount>0?E.getRangeAt(0):null;return eo({element:g.current,range:B,__unstableIsEditableTree:!0})}function A(T,{domOnly:E}={}){Kqe({value:T,current:g.current,prepareEditableTree:f,__unstableDomOnly:E,placeholder:o})}const _=x.useRef(e),v=x.useRef();function M(){_.current=e,v.current=e,e instanceof Xo||(v.current=e?Xo.fromHTMLString(e,{preserveWhiteSpace:s}):Xo.empty()),v.current={text:v.current.text,formats:v.current.formats,replacements:v.current.replacements},c&&(v.current.formats=Array(e.length),v.current.replacements=Array(e.length)),d&&(v.current.formats=d(v.current)),v.current.start=t,v.current.end=n}const y=x.useRef(!1);v.current?(t!==v.current.start||n!==v.current.end)&&(y.current=l,v.current={...v.current,start:t,end:n,activeFormats:void 0}):(y.current=l,M());function k(T){if(v.current=T,A(T),c)_.current=T.text;else{const I=p?p(T):T.formats;T={...T,formats:I},typeof e=="string"?_.current=T0({value:T,preserveWhiteSpace:s}):_.current=new Xo(T)}const{start:E,end:B,formats:N,text:j}=v.current;b.batch(()=>{r(E,B),i(_.current,{__unstableFormats:N,__unstableText:j})}),h()}function S(){M(),A(v.current)}const C=x.useRef(!1);x.useLayoutEffect(()=>{C.current&&e!==_.current&&(S(),h())},[e]),x.useLayoutEffect(()=>{y.current&&(g.current.ownerDocument.activeElement!==g.current&&g.current.focus(),A(v.current),y.current=!1)},[y.current]);const R=xn([g,iRe(),aRe({record:v}),zRe({record:v,handleChange:k,applyRecord:A,createRecord:z,isSelected:l,onSelectionChange:r,forceRender:h}),Mn(()=>{S(),C.current=!0},[o,...u])]);return{value:v.current,getValue:()=>v.current,onChange:k,ref:R}}const e1="id",ORe=["title","excerpt","content"],r1e=[{label:m("Base"),kind:"root",name:"__unstableBase",baseURL:"/",baseURLParams:{_fields:["description","gmt_offset","home","name","site_icon","site_icon_url","site_logo","timezone_string","default_template_part_areas","default_template_types","url"].join(",")},plural:"__unstableBases",syncConfig:{fetch:async()=>Tt({path:"/"}),applyChangesToDoc:(e,t)=>{const n=e.getMap("document");Object.entries(t).forEach(([o,r])=>{n.get(o)!==r&&n.set(o,r)})},fromCRDTDoc:e=>e.getMap("document").toJSON()},syncObjectType:"root/base",getSyncObjectId:()=>"index"},{label:m("Post Type"),name:"postType",kind:"root",key:"slug",baseURL:"/wp/v2/types",baseURLParams:{context:"edit"},plural:"postTypes",syncConfig:{fetch:async e=>Tt({path:`/wp/v2/types/${e}?context=edit`}),applyChangesToDoc:(e,t)=>{const n=e.getMap("document");Object.entries(t).forEach(([o,r])=>{n.get(o)!==r&&n.set(o,r)})},fromCRDTDoc:e=>e.getMap("document").toJSON()},syncObjectType:"root/postType",getSyncObjectId:e=>e},{name:"media",kind:"root",baseURL:"/wp/v2/media",baseURLParams:{context:"edit"},plural:"mediaItems",label:m("Media"),rawAttributes:["caption","title","description"],supportsPagination:!0},{name:"taxonomy",kind:"root",key:"slug",baseURL:"/wp/v2/taxonomies",baseURLParams:{context:"edit"},plural:"taxonomies",label:m("Taxonomy")},{name:"sidebar",kind:"root",baseURL:"/wp/v2/sidebars",baseURLParams:{context:"edit"},plural:"sidebars",transientEdits:{blocks:!0},label:m("Widget areas")},{name:"widget",kind:"root",baseURL:"/wp/v2/widgets",baseURLParams:{context:"edit"},plural:"widgets",transientEdits:{blocks:!0},label:m("Widgets")},{name:"widgetType",kind:"root",baseURL:"/wp/v2/widget-types",baseURLParams:{context:"edit"},plural:"widgetTypes",label:m("Widget types")},{label:m("User"),name:"user",kind:"root",baseURL:"/wp/v2/users",baseURLParams:{context:"edit"},plural:"users"},{name:"comment",kind:"root",baseURL:"/wp/v2/comments",baseURLParams:{context:"edit"},plural:"comments",label:m("Comment")},{name:"menu",kind:"root",baseURL:"/wp/v2/menus",baseURLParams:{context:"edit"},plural:"menus",label:m("Menu")},{name:"menuItem",kind:"root",baseURL:"/wp/v2/menu-items",baseURLParams:{context:"edit"},plural:"menuItems",label:m("Menu Item"),rawAttributes:["title"]},{name:"menuLocation",kind:"root",baseURL:"/wp/v2/menu-locations",baseURLParams:{context:"edit"},plural:"menuLocations",label:m("Menu Location"),key:"name"},{label:m("Global Styles"),name:"globalStyles",kind:"root",baseURL:"/wp/v2/global-styles",baseURLParams:{context:"edit"},plural:"globalStylesVariations",getTitle:e=>e?.title?.rendered||e?.title,getRevisionsUrl:(e,t)=>`/wp/v2/global-styles/${e}/revisions${t?"/"+t:""}`,supportsPagination:!0},{label:m("Themes"),name:"theme",kind:"root",baseURL:"/wp/v2/themes",baseURLParams:{context:"edit"},plural:"themes",key:"stylesheet"},{label:m("Plugins"),name:"plugin",kind:"root",baseURL:"/wp/v2/plugins",baseURLParams:{context:"edit"},plural:"plugins",key:"plugin"},{label:m("Status"),name:"status",kind:"root",baseURL:"/wp/v2/statuses",baseURLParams:{context:"edit"},plural:"statuses",key:"slug"}],s1e=[{kind:"postType",loadEntities:vRe},{kind:"taxonomy",loadEntities:xRe},{kind:"root",name:"site",plural:"sites",loadEntities:wRe}],yRe=(e,t)=>{const n={};return e?.status==="auto-draft"&&(!t.status&&!n.status&&(n.status="draft"),(!t.title||t.title==="Auto Draft")&&!n.title&&(!e?.title||e?.title==="Auto Draft")&&(n.title="")),n},RS=new WeakMap;function ARe(e){const t={...e};for(const[n,o]of Object.entries(e))o instanceof Xo&&(t[n]=o.valueOf());return t}function i1e(e){return e.map(t=>{const{innerBlocks:n,attributes:o,...r}=t;return{...r,attributes:ARe(o),innerBlocks:i1e(n)}})}async function vRe(){const e=await Tt({path:"/wp/v2/types?context=view"});return Object.entries(e??{}).map(([t,n])=>{var o;const r=["wp_template","wp_template_part"].includes(t),s=(o=n?.rest_namespace)!==null&&o!==void 0?o:"wp/v2";return{kind:"postType",baseURL:`/${s}/${n.rest_base}`,baseURLParams:{context:"edit"},name:t,label:n.name,transientEdits:{blocks:!0,selection:!0},mergedEdits:{meta:!0},rawAttributes:ORe,getTitle:i=>{var c;return i?.title?.rendered||i?.title||(r?Lre((c=i.slug)!==null&&c!==void 0?c:""):String(i.id))},__unstablePrePersist:r?void 0:yRe,__unstable_rest_base:n.rest_base,syncConfig:{fetch:async i=>Tt({path:`/${s}/${n.rest_base}/${i}?context=edit`}),applyChangesToDoc:(i,c)=>{const l=i.getMap("document");Object.entries(c).forEach(([u,d])=>{typeof d!="function"&&(u==="blocks"&&(RS.has(d)||RS.set(d,i1e(d)),d=RS.get(d)),l.get(u)!==d&&l.set(u,d))})},fromCRDTDoc:i=>i.getMap("document").toJSON()},syncObjectType:"postType/"+n.name,getSyncObjectId:i=>i,supportsPagination:!0,getRevisionsUrl:(i,c)=>`/${s}/${n.rest_base}/${i}/revisions${c?"/"+c:""}`,revisionKey:r?"wp_id":e1}})}async function xRe(){const e=await Tt({path:"/wp/v2/taxonomies?context=view"});return Object.entries(e??{}).map(([t,n])=>{var o;return{kind:"taxonomy",baseURL:`/${(o=n?.rest_namespace)!==null&&o!==void 0?o:"wp/v2"}/${n.rest_base}`,baseURLParams:{context:"edit"},name:t,label:n.name}})}async function wRe(){var e;const t={label:m("Site"),name:"site",kind:"root",baseURL:"/wp/v2/settings",syncConfig:{fetch:async()=>Tt({path:"/wp/v2/settings"}),applyChangesToDoc:(r,s)=>{const i=r.getMap("document");Object.entries(s).forEach(([c,l])=>{i.get(c)!==l&&i.set(c,l)})},fromCRDTDoc:r=>r.getMap("document").toJSON()},syncObjectType:"root/site",getSyncObjectId:()=>"index",meta:{}},n=await Tt({path:t.baseURL,method:"OPTIONS"}),o={};return Object.entries((e=n?.schema?.properties)!==null&&e!==void 0?e:{}).forEach(([r,s])=>{typeof s=="object"&&s.title&&(o[r]=s.title)}),[{...t,meta:{labels:o}}]}const J2=(e,t,n="get")=>{const o=e==="root"?"":S4(e),r=S4(t);return`${n}${o}${r}`};function a1e(e){const{query:t}=e;return t?jh(t).context:"default"}function _Re(e,t,n,o){var r;if(n===1&&o===-1)return t;const i=(n-1)*o,c=Math.max((r=e?.length)!==null&&r!==void 0?r:0,i+t.length),l=new Array(c);for(let u=0;u<c;u++){const d=u>=i&&u<i+o;l[u]=d?t[u-i]:e?.[u]}return l}function c1e(e,t){return Object.fromEntries(Object.entries(e).filter(([n])=>!t.some(o=>Number.isInteger(o)?o===+n:o===n)))}function kRe(e={},t){switch(t.type){case"RECEIVE_ITEMS":{const n=a1e(t),o=t.key||e1;return{...e,[n]:{...e[n],...t.items.reduce((r,s)=>{const i=s?.[o];return r[i]=nqe(e?.[n]?.[i],s),r},{})}}}case"REMOVE_ITEMS":return Object.fromEntries(Object.entries(e).map(([n,o])=>[n,c1e(o,t.itemIds)]))}return e}function SRe(e={},t){switch(t.type){case"RECEIVE_ITEMS":{const n=a1e(t),{query:o,key:r=e1}=t,s=o?jh(o):{},i=!o||!Array.isArray(s.fields);return{...e,[n]:{...e[n],...t.items.reduce((c,l)=>{const u=l?.[r];return c[u]=e?.[n]?.[u]||i,c},{})}}}case"REMOVE_ITEMS":return Object.fromEntries(Object.entries(e).map(([n,o])=>[n,c1e(o,t.itemIds)]))}return e}const CRe=Co([I0e(e=>"query"in e),D0e(e=>e.query?{...e,...jh(e.query)}:e),tU("context"),tU("stableKey")])((e={},t)=>{const{type:n,page:o,perPage:r,key:s=e1}=t;return n!=="RECEIVE_ITEMS"?e:{itemIds:_Re(e?.itemIds||[],t.items.map(i=>i?.[s]).filter(Boolean),o,r),meta:t.meta}}),qRe=(e={},t)=>{switch(t.type){case"RECEIVE_ITEMS":return CRe(e,t);case"REMOVE_ITEMS":const n=t.itemIds.reduce((o,r)=>(o[r]=!0,o),{});return Object.fromEntries(Object.entries(e).map(([o,r])=>[o,Object.fromEntries(Object.entries(r).map(([s,i])=>[s,{...i,itemIds:i.itemIds.filter(c=>!n[c])}]))]));default:return e}},dU=J0({items:kRe,itemIsComplete:SRe,queries:qRe});function RRe(e={},t){switch(t.type){case"RECEIVE_TERMS":return{...e,[t.taxonomy]:t.terms}}return e}function TRe(e={byId:{},queries:{}},t){switch(t.type){case"RECEIVE_USER_QUERY":return{byId:{...e.byId,...t.users.reduce((n,o)=>({...n,[o.id]:o}),{})},queries:{...e.queries,[t.queryID]:t.users.map(n=>n.id)}}}return e}function ERe(e={},t){switch(t.type){case"RECEIVE_CURRENT_USER":return t.currentUser}return e}function WRe(e=[],t){switch(t.type){case"RECEIVE_TAXONOMIES":return t.taxonomies}return e}function NRe(e=void 0,t){switch(t.type){case"RECEIVE_CURRENT_THEME":return t.currentTheme.stylesheet}return e}function BRe(e=void 0,t){switch(t.type){case"RECEIVE_CURRENT_GLOBAL_STYLES_ID":return t.id}return e}function LRe(e={},t){switch(t.type){case"RECEIVE_THEME_GLOBAL_STYLES":return{...e,[t.stylesheet]:t.globalStyles}}return e}function PRe(e={},t){switch(t.type){case"RECEIVE_THEME_GLOBAL_STYLE_VARIATIONS":return{...e,[t.stylesheet]:t.variations}}return e}const jRe=e=>(t,n)=>{if(n.type==="UNDO"||n.type==="REDO"){const{record:o}=n;let r=t;return o.forEach(({id:{kind:s,name:i,recordId:c},changes:l})=>{r=e(r,{type:"EDIT_ENTITY_RECORD",kind:s,name:i,recordId:c,edits:Object.entries(l).reduce((u,[d,p])=>(u[d]=n.type==="UNDO"?p.from:p.to,u),{})})}),r}return e(t,n)};function IRe(e){return Co([jRe,I0e(t=>t.name&&t.kind&&t.name===e.name&&t.kind===e.kind),D0e(t=>({key:e.key||e1,...t}))])(J0({queriedData:dU,edits:(t={},n)=>{var o;switch(n.type){case"RECEIVE_ITEMS":if(((o=n?.query?.context)!==null&&o!==void 0?o:"default")!=="default")return t;const s={...t};for(const c of n.items){const l=c?.[n.key],u=s[l];if(!u)continue;const d=Object.keys(u).reduce((p,f)=>{var b;return!N0(u[f],(b=c[f]?.raw)!==null&&b!==void 0?b:c[f])&&(!n.persistedEdits||!N0(u[f],n.persistedEdits[f]))&&(p[f]=u[f]),p},{});Object.keys(d).length?s[l]=d:delete s[l]}return s;case"EDIT_ENTITY_RECORD":const i={...t[n.recordId],...n.edits};return Object.keys(i).forEach(c=>{i[c]===void 0&&delete i[c]}),{...t,[n.recordId]:i}}return t},saving:(t={},n)=>{switch(n.type){case"SAVE_ENTITY_RECORD_START":case"SAVE_ENTITY_RECORD_FINISH":return{...t,[n.recordId]:{pending:n.type==="SAVE_ENTITY_RECORD_START",error:n.error,isAutosave:n.isAutosave}}}return t},deleting:(t={},n)=>{switch(n.type){case"DELETE_ENTITY_RECORD_START":case"DELETE_ENTITY_RECORD_FINISH":return{...t,[n.recordId]:{pending:n.type==="DELETE_ENTITY_RECORD_START",error:n.error}}}return t},revisions:(t={},n)=>{if(n.type==="RECEIVE_ITEM_REVISIONS"){const o=n.recordKey;delete n.recordKey;const r=dU(t[o],{...n,type:"RECEIVE_ITEMS"});return{...t,[o]:r}}return n.type==="REMOVE_ITEMS"?Object.fromEntries(Object.entries(t).filter(([o])=>!n.itemIds.some(r=>Number.isInteger(r)?r===+o:r===o))):t}}))}function DRe(e=r1e,t){switch(t.type){case"ADD_ENTITIES":return[...e,...t.entities]}return e}const FRe=(e={},t)=>{const n=DRe(e.config,t);let o=e.reducer;if(!o||n!==e.config){const s=n.reduce((i,c)=>{const{kind:l}=c;return i[l]||(i[l]=[]),i[l].push(c),i},{});o=J0(Object.entries(s).reduce((i,[c,l])=>{const u=J0(l.reduce((d,p)=>({...d,[p.name]:IRe(p)}),{}));return i[c]=u,i},{}))}const r=o(e.records,t);return r===e.records&&n===e.config&&o===e.reducer?e:{reducer:o,records:r,config:n}};function $Re(e=$Se()){return e}function VRe(e={},t){switch(t.type){case"EDIT_ENTITY_RECORD":case"UNDO":case"REDO":return{}}return e}function HRe(e={},t){switch(t.type){case"RECEIVE_EMBED_PREVIEW":const{url:n,preview:o}=t;return{...e,[n]:o}}return e}function URe(e={},t){switch(t.type){case"RECEIVE_USER_PERMISSION":return{...e,[t.key]:t.isAllowed};case"RECEIVE_USER_PERMISSIONS":return{...e,...t.permissions}}return e}function XRe(e={},t){switch(t.type){case"RECEIVE_AUTOSAVES":const{postId:n,autosaves:o}=t;return{...e,[n]:o}}return e}function GRe(e=[],t){switch(t.type){case"RECEIVE_BLOCK_PATTERNS":return t.patterns}return e}function KRe(e=[],t){switch(t.type){case"RECEIVE_BLOCK_PATTERN_CATEGORIES":return t.categories}return e}function YRe(e=[],t){switch(t.type){case"RECEIVE_USER_PATTERN_CATEGORIES":return t.patternCategories}return e}function ZRe(e=null,t){switch(t.type){case"RECEIVE_NAVIGATION_FALLBACK_ID":return t.fallbackId}return e}function QRe(e={},t){switch(t.type){case"RECEIVE_THEME_GLOBAL_STYLE_REVISIONS":return{...e,[t.currentId]:t.revisions}}return e}function JRe(e={},t){switch(t.type){case"RECEIVE_DEFAULT_TEMPLATE":return{...e,[JSON.stringify(t.query)]:t.templateId}}return e}function eTe(e={},t){switch(t.type){case"RECEIVE_REGISTERED_POST_META":return{...e,[t.postType]:t.registeredPostMeta}}return e}const tTe=J0({terms:RRe,users:TRe,currentTheme:NRe,currentGlobalStylesId:BRe,currentUser:ERe,themeGlobalStyleVariations:PRe,themeBaseGlobalStyles:LRe,themeGlobalStyleRevisions:QRe,taxonomies:WRe,entities:FRe,editsReference:VRe,undoManager:$Re,embedPreviews:HRe,userPermissions:URe,autosaves:XRe,blockPatterns:GRe,blockPatternCategories:KRe,userPatternCategories:YRe,navigationFallbackId:ZRe,defaultTemplates:JRe,registeredPostMeta:eTe}),No="core",nTe={},oTe=At(e=>(t,n)=>e(No).isResolving("getEmbedPreview",[n]));function rTe(e,t){Ke("select( 'core' ).getAuthors()",{since:"5.9",alternative:"select( 'core' ).getUsers({ who: 'authors' })"});const n=tn("/wp/v2/users/?who=authors&per_page=100",t);return l1e(e,n)}function sTe(e){return e.currentUser}const l1e=It((e,t)=>{var n;return((n=e.users.queries[t])!==null&&n!==void 0?n:[]).map(r=>e.users.byId[r])},(e,t)=>[e.users.queries[t],e.users.byId]);function iTe(e,t){return Ke("wp.data.select( 'core' ).getEntitiesByKind()",{since:"6.0",alternative:"wp.data.select( 'core' ).getEntitiesConfig()"}),u1e(e,t)}const u1e=It((e,t)=>e.entities.config.filter(n=>n.kind===t),(e,t)=>e.entities.config);function aTe(e,t,n){return Ke("wp.data.select( 'core' ).getEntity()",{since:"6.0",alternative:"wp.data.select( 'core' ).getEntityConfig()"}),Dh(e,t,n)}function Dh(e,t,n){return e.entities.config?.find(o=>o.kind===t&&o.name===n)}const Zd=It((e,t,n,o,r)=>{var s;const i=e.entities.records?.[t]?.[n]?.queriedData;if(!i)return;const c=(s=r?.context)!==null&&s!==void 0?s:"default";if(r===void 0)return i.itemIsComplete[c]?.[o]?i.items[c][o]:void 0;const l=i.items[c]?.[o];if(l&&r._fields){var u;const d={},p=(u=Md(r._fields))!==null&&u!==void 0?u:[];for(let f=0;f<p.length;f++){const b=p[f].split(".");let h=l;b.forEach(g=>{h=h?.[g]}),L5(d,b,h)}return d}return l},(e,t,n,o,r)=>{var s;const i=(s=r?.context)!==null&&s!==void 0?s:"default";return[e.entities.records?.[t]?.[n]?.queriedData?.items[i]?.[o],e.entities.records?.[t]?.[n]?.queriedData?.itemIsComplete[i]?.[o]]});Zd.__unstableNormalizeArgs=e=>{const t=[...e],n=t?.[2];return t[2]=iqe(n)?Number(n):n,t};function cTe(e,t,n,o){return Zd(e,t,n,o)}const d1e=It((e,t,n,o)=>{const r=Zd(e,t,n,o);return r&&Object.keys(r).reduce((s,i)=>{if(rqe(Dh(e,t,n),i)){var c;s[i]=(c=r[i]?.raw)!==null&&c!==void 0?c:r[i]}else s[i]=r[i];return s},{})},(e,t,n,o,r)=>{var s;const i=(s=r?.context)!==null&&s!==void 0?s:"default";return[e.entities.config,e.entities.records?.[t]?.[n]?.queriedData?.items[i]?.[o],e.entities.records?.[t]?.[n]?.queriedData?.itemIsComplete[i]?.[o]]});function lTe(e,t,n,o){return Array.isArray(oB(e,t,n,o))}const oB=(e,t,n,o)=>{const r=e.entities.records?.[t]?.[n]?.queriedData;return r?V0e(r,o):null},uTe=(e,t,n,o)=>{const r=e.entities.records?.[t]?.[n]?.queriedData;return r?H0e(r,o):null},dTe=(e,t,n,o)=>{const r=e.entities.records?.[t]?.[n]?.queriedData;if(!r)return null;if(o.per_page===-1)return 1;const s=H0e(r,o);return s&&(o.per_page?Math.ceil(s/o.per_page):dqe(r,o))},pTe=It(e=>{const{entities:{records:t}}=e,n=[];return Object.keys(t).forEach(o=>{Object.keys(t[o]).forEach(r=>{const s=Object.keys(t[o][r].edits).filter(i=>Zd(e,o,r,i)&&f1e(e,o,r,i));if(s.length){const i=Dh(e,o,r);s.forEach(c=>{const l=sB(e,o,r,c);n.push({key:l?l[i.key||e1]:void 0,title:i?.getTitle?.(l)||"",name:r,kind:o})})}})}),n},e=>[e.entities.records]),fTe=It(e=>{const{entities:{records:t}}=e,n=[];return Object.keys(t).forEach(o=>{Object.keys(t[o]).forEach(r=>{const s=Object.keys(t[o][r].saving).filter(i=>iB(e,o,r,i));if(s.length){const i=Dh(e,o,r);s.forEach(c=>{const l=sB(e,o,r,c);n.push({key:l?l[i.key||e1]:void 0,title:i?.getTitle?.(l)||"",name:r,kind:o})})}})}),n},e=>[e.entities.records]);function rB(e,t,n,o){return e.entities.records?.[t]?.[n]?.edits?.[o]}const p1e=It((e,t,n,o)=>{const{transientEdits:r}=Dh(e,t,n)||{},s=rB(e,t,n,o)||{};return r?Object.keys(s).reduce((i,c)=>(r[c]||(i[c]=s[c]),i),{}):s},(e,t,n,o)=>[e.entities.config,e.entities.records?.[t]?.[n]?.edits?.[o]]);function f1e(e,t,n,o){return iB(e,t,n,o)||Object.keys(p1e(e,t,n,o)).length>0}const sB=It((e,t,n,o)=>{const r=d1e(e,t,n,o),s=rB(e,t,n,o);return!r&&!s?!1:{...r,...s}},(e,t,n,o,r)=>{var s;const i=(s=r?.context)!==null&&s!==void 0?s:"default";return[e.entities.config,e.entities.records?.[t]?.[n]?.queriedData.items[i]?.[o],e.entities.records?.[t]?.[n]?.queriedData.itemIsComplete[i]?.[o],e.entities.records?.[t]?.[n]?.edits?.[o]]});function bTe(e,t,n,o){var r;const{pending:s,isAutosave:i}=(r=e.entities.records?.[t]?.[n]?.saving?.[o])!==null&&r!==void 0?r:{};return!!(s&&i)}function iB(e,t,n,o){var r;return(r=e.entities.records?.[t]?.[n]?.saving?.[o]?.pending)!==null&&r!==void 0?r:!1}function hTe(e,t,n,o){var r;return(r=e.entities.records?.[t]?.[n]?.deleting?.[o]?.pending)!==null&&r!==void 0?r:!1}function mTe(e,t,n,o){return e.entities.records?.[t]?.[n]?.saving?.[o]?.error}function gTe(e,t,n,o){return e.entities.records?.[t]?.[n]?.deleting?.[o]?.error}function MTe(e){Ke("select( 'core' ).getUndoEdit()",{since:"6.3"})}function zTe(e){Ke("select( 'core' ).getRedoEdit()",{since:"6.3"})}function OTe(e){return e.undoManager.hasUndo()}function yTe(e){return e.undoManager.hasRedo()}function j5(e){return e.currentTheme?Zd(e,"root","theme",e.currentTheme):null}function b1e(e){return e.currentGlobalStylesId}function ATe(e){var t;return(t=j5(e)?.theme_supports)!==null&&t!==void 0?t:nTe}function vTe(e,t){return e.embedPreviews[t]}function xTe(e,t){const n=e.embedPreviews[t],o='<a href="'+t+'">'+t+"</a>";return n?n.html===o:!1}function aB(e,t,n,o){if(typeof n=="object"&&(!n.kind||!n.name))return!1;const s=P5(t,n,o);return e.userPermissions[s]}function wTe(e,t,n,o){return Ke("wp.data.select( 'core' ).canUserEditEntityRecord()",{since:"6.7",alternative:"wp.data.select( 'core' ).canUser( 'update', { kind, name, id } )"}),aB(e,"update",{kind:t,name:n,id:o})}function _Te(e,t,n){return e.autosaves[n]}function kTe(e,t,n,o){return o===void 0?void 0:e.autosaves[n]?.find(s=>s.author===o)}const STe=At(e=>(t,n,o)=>e(No).hasFinishedResolution("getAutosaves",[n,o]));function CTe(e){return e.editsReference}function qTe(e){const t=j5(e);return t?e.themeBaseGlobalStyles[t.stylesheet]:null}function RTe(e){const t=j5(e);return t?e.themeGlobalStyleVariations[t.stylesheet]:null}function TTe(e){return e.blockPatterns}function ETe(e){return e.blockPatternCategories}function WTe(e){return e.userPatternCategories}function NTe(e){Ke("select( 'core' ).getCurrentThemeGlobalStylesRevisions()",{since:"6.5.0",alternative:"select( 'core' ).getRevisions( 'root', 'globalStyles', ${ recordKey } )"});const t=b1e(e);return t?e.themeGlobalStyleRevisions[t]:null}function h1e(e,t){return e.defaultTemplates[JSON.stringify(t)]}const BTe=(e,t,n,o,r)=>{const s=e.entities.records?.[t]?.[n]?.revisions?.[o];return s?V0e(s,r):null},LTe=It((e,t,n,o,r,s)=>{var i;const c=e.entities.records?.[t]?.[n]?.revisions?.[o];if(!c)return;const l=(i=s?.context)!==null&&i!==void 0?i:"default";if(s===void 0)return c.itemIsComplete[l]?.[r]?c.items[l][r]:void 0;const u=c.items[l]?.[r];if(u&&s._fields){var d;const p={},f=(d=Md(s._fields))!==null&&d!==void 0?d:[];for(let b=0;b<f.length;b++){const h=f[b].split(".");let g=u;h.forEach(z=>{g=g?.[z]}),L5(p,h,g)}return p}return u},(e,t,n,o,r,s)=>{var i;const c=(i=s?.context)!==null&&i!==void 0?i:"default";return[e.entities.records?.[t]?.[n]?.revisions?.[o]?.items?.[c]?.[r],e.entities.records?.[t]?.[n]?.revisions?.[o]?.itemIsComplete?.[c]?.[r]]}),PTe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetCurrentGlobalStylesId:b1e,__experimentalGetCurrentThemeBaseGlobalStyles:qTe,__experimentalGetCurrentThemeGlobalStylesVariations:RTe,__experimentalGetDirtyEntityRecords:pTe,__experimentalGetEntitiesBeingSaved:fTe,__experimentalGetEntityRecordNoResolver:cTe,canUser:aB,canUserEditEntityRecord:wTe,getAuthors:rTe,getAutosave:kTe,getAutosaves:_Te,getBlockPatternCategories:ETe,getBlockPatterns:TTe,getCurrentTheme:j5,getCurrentThemeGlobalStylesRevisions:NTe,getCurrentUser:sTe,getDefaultTemplateId:h1e,getEditedEntityRecord:sB,getEmbedPreview:vTe,getEntitiesByKind:iTe,getEntitiesConfig:u1e,getEntity:aTe,getEntityConfig:Dh,getEntityRecord:Zd,getEntityRecordEdits:rB,getEntityRecordNonTransientEdits:p1e,getEntityRecords:oB,getEntityRecordsTotalItems:uTe,getEntityRecordsTotalPages:dTe,getLastEntityDeleteError:gTe,getLastEntitySaveError:mTe,getRawEntityRecord:d1e,getRedoEdit:zTe,getReferenceByDistinctEdits:CTe,getRevision:LTe,getRevisions:BTe,getThemeSupports:ATe,getUndoEdit:MTe,getUserPatternCategories:WTe,getUserQueryResults:l1e,hasEditsForEntityRecord:f1e,hasEntityRecords:lTe,hasFetchedAutosaves:STe,hasRedo:yTe,hasUndo:OTe,isAutosavingEntityRecord:bTe,isDeletingEntityRecord:hTe,isPreviewEmbedFallback:xTe,isRequestingEmbedPreview:oTe,isSavingEntityRecord:iB},Symbol.toStringTag,{value:"Module"})),{lock:jTe,unlock:eh}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/core-data");function ITe(e){return e.undoManager}function DTe(e){return e.navigationFallbackId}const FTe=At(e=>It((t,n)=>e(No).getBlockPatterns().filter(({postTypes:o})=>!o||Array.isArray(o)&&o.includes(n)),()=>[e(No).getBlockPatterns()])),m1e=At(e=>It((t,n,o,r)=>(Array.isArray(r)?r:[r]).map(i=>({delete:e(No).canUser("delete",{kind:n,name:o,id:i}),update:e(No).canUser("update",{kind:n,name:o,id:i})})),t=>[t.userPermissions]));function $Te(e,t,n,o){return m1e(e,t,n,o)[0]}function VTe(e,t){var n;return(n=e.registeredPostMeta?.[t])!==null&&n!==void 0?n:{}}function g1e(e){return!e||!["number","string"].includes(typeof e)||Number(e)===0?null:e.toString()}const HTe=At(e=>It(()=>{if(!e(No).canUser("read",{kind:"root",name:"site"}))return null;const n=e(No).getEntityRecord("root","site");if(!n)return null;const o=n?.show_on_front==="page"?g1e(n.page_on_front):null;return o?{postType:"page",postId:o}:{postType:"wp_template",postId:e(No).getDefaultTemplateId({slug:"front-page"})}},t=>[aB(t,"read",{kind:"root",name:"site"})&&Zd(t,"root","site"),h1e(t,{slug:"front-page"})])),UTe=At(e=>()=>{if(!e(No).canUser("read",{kind:"root",name:"site"}))return null;const n=e(No).getEntityRecord("root","site");return n?.show_on_front==="page"?g1e(n.page_for_posts):null}),XTe=At(e=>(t,n,o)=>{const r=eh(e(No)).getHomePage();if(!r)return;if(n==="page"&&n===r?.postType&&o.toString()===r?.postId){const u=e(No).getEntityRecords("postType","wp_template",{per_page:-1});if(!u)return;const d=u.find(({slug:p})=>p==="front-page")?.id;if(d)return d}const s=e(No).getEditedEntityRecord("postType",n,o);if(!s)return;const i=eh(e(No)).getPostsPageId();if(n==="page"&&i===o.toString())return e(No).getDefaultTemplateId({slug:"home"});const c=s.template;if(c){const u=e(No).getEntityRecords("postType","wp_template",{per_page:-1})?.find(({slug:d})=>d===c);if(u)return u.id}let l;return s.slug?l=n==="page"?`${n}-${s.slug}`:`single-${n}-${s.slug}`:l=n==="page"?"page":`single-${n}`,e(No).getDefaultTemplateId({slug:l})}),GTe=Object.freeze(Object.defineProperty({__proto__:null,getBlockPatternsForPostType:FTe,getEntityRecordPermissions:$Te,getEntityRecordsPermissions:m1e,getHomePage:HTe,getNavigationFallbackId:DTe,getPostsPageId:UTe,getRegisteredPostMeta:VTe,getTemplateId:XTe,getUndoManager:ITe},Symbol.toStringTag,{value:"Module"}));let fA;const KTe=new Uint8Array(16);function YTe(){if(!fA&&(fA=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!fA))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return fA(KTe)}const $0=[];for(let e=0;e<256;++e)$0.push((e+256).toString(16).slice(1));function ZTe(e,t=0){return $0[e[t+0]]+$0[e[t+1]]+$0[e[t+2]]+$0[e[t+3]]+"-"+$0[e[t+4]]+$0[e[t+5]]+"-"+$0[e[t+6]]+$0[e[t+7]]+"-"+$0[e[t+8]]+$0[e[t+9]]+"-"+$0[e[t+10]]+$0[e[t+11]]+$0[e[t+12]]+$0[e[t+13]]+$0[e[t+14]]+$0[e[t+15]]}const QTe=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),pU={randomUUID:QTe};function Is(e,t,n){if(pU.randomUUID&&!t&&!e)return pU.randomUUID();e=e||{};const o=e.random||(e.rng||YTe)();return o[6]=o[6]&15|64,o[8]=o[8]&63|128,ZTe(o)}let TS=null;function JTe(e,t){const n=[...e],o=[];for(;n.length;)o.push(n.splice(0,t));return o}async function eEe(e){TS===null&&(TS=(await Tt({path:"/batch/v1",method:"OPTIONS"})).endpoints[0].args.requests.maxItems);const t=[];for(const n of JTe(e,TS)){const o=await Tt({path:"/batch/v1",method:"POST",data:{validation:"require-all-validate",requests:n.map(s=>({path:s.path,body:s.data,method:s.method,headers:s.headers}))}});let r;o.failed?r=o.responses.map(s=>({error:s?.body})):r=o.responses.map(s=>{const i={};return s.status>=200&&s.status<300?i.output=s.body:i.error=s.body,i}),t.push(...r)}return t}function tEe(e=eEe){let t=0,n=[];const o=new nEe;return{add(r){const s=++t;o.add(s);const i=c=>new Promise((l,u)=>{n.push({input:c,resolve:l,reject:u}),o.delete(s)});return typeof r=="function"?Promise.resolve(r(i)).finally(()=>{o.delete(s)}):i(r)},async run(){o.size&&await new Promise(i=>{const c=o.subscribe(()=>{o.size||(c(),i(void 0))})});let r;try{if(r=await e(n.map(({input:i})=>i)),r.length!==n.length)throw new Error("run: Array returned by processor must be same size as input array.")}catch(i){for(const{reject:c}of n)c(i);throw i}let s=!0;return r.forEach((i,c)=>{const l=n[c];if(i?.error)l?.reject(i.error),s=!1;else{var u;l?.resolve((u=i?.output)!==null&&u!==void 0?u:i)}}),n=[],s}}}class nEe{constructor(...t){this.set=new Set(...t),this.subscribers=new Set}get size(){return this.set.size}add(t){return this.set.add(t),this.subscribers.forEach(n=>n()),this}delete(t){const n=this.set.delete(t);return this.subscribers.forEach(o=>o()),n}subscribe(t){return this.subscribers.add(t),()=>{this.subscribers.delete(t)}}}const fU=globalThis||void 0||self,fs=()=>new Map,RE=e=>{const t=fs();return e.forEach((n,o)=>{t.set(o,n)}),t},w1=(e,t,n)=>{let o=e.get(t);return o===void 0&&e.set(t,o=n()),o},oEe=(e,t)=>{const n=[];for(const[o,r]of e)n.push(t(r,o));return n},rEe=(e,t)=>{for(const[n,o]of e)if(t(o,n))return!0;return!1},zd=()=>new Set,ES=e=>e[e.length-1],sEe=(e,t)=>{for(let n=0;n<t.length;n++)e.push(t[n])},Tl=Array.from,iEe=Array.isArray;class aEe{constructor(){this._observers=fs()}on(t,n){return w1(this._observers,t,zd).add(n),n}once(t,n){const o=(...r)=>{this.off(t,o),n(...r)};this.on(t,o)}off(t,n){const o=this._observers.get(t);o!==void 0&&(o.delete(n),o.size===0&&this._observers.delete(t))}emit(t,n){return Tl((this._observers.get(t)||fs()).values()).forEach(o=>o(...n))}destroy(){this._observers=fs()}}class d3{constructor(){this._observers=fs()}on(t,n){w1(this._observers,t,zd).add(n)}once(t,n){const o=(...r)=>{this.off(t,o),n(...r)};this.on(t,o)}off(t,n){const o=this._observers.get(t);o!==void 0&&(o.delete(n),o.size===0&&this._observers.delete(t))}emit(t,n){return Tl((this._observers.get(t)||fs()).values()).forEach(o=>o(...n))}destroy(){this._observers=fs()}}const Oc=Math.floor,Lv=Math.abs,cEe=Math.log10,cB=(e,t)=>e<t?e:t,$f=(e,t)=>e>t?e:t,M1e=e=>e!==0?e<0:1/e<0,bU=1,hU=2,WS=4,NS=8,VM=32,yl=64,Ns=128,I5=31,TE=63,ef=127,lEe=2147483647,z1e=Number.MAX_SAFE_INTEGER,uEe=Number.isInteger||(e=>typeof e=="number"&&isFinite(e)&&Oc(e)===e),dEe=String.fromCharCode,pEe=e=>e.toLowerCase(),fEe=/^\s*/g,bEe=e=>e.replace(fEe,""),hEe=/([A-Z])/g,mU=(e,t)=>bEe(e.replace(hEe,n=>`${t}${pEe(n)}`)),mEe=e=>{const t=unescape(encodeURIComponent(e)),n=t.length,o=new Uint8Array(n);for(let r=0;r<n;r++)o[r]=t.codePointAt(r);return o},HM=typeof TextEncoder<"u"?new TextEncoder:null,gEe=e=>HM.encode(e),EE=HM?gEe:mEe;let OM=typeof TextDecoder>"u"?null:new TextDecoder("utf-8",{fatal:!0,ignoreBOM:!0});OM&&OM.decode(new Uint8Array).length===1&&(OM=null);class p3{constructor(){this.cpos=0,this.cbuf=new Uint8Array(100),this.bufs=[]}}const k0=()=>new p3,MEe=e=>{let t=e.cpos;for(let n=0;n<e.bufs.length;n++)t+=e.bufs[n].length;return t},Sr=e=>{const t=new Uint8Array(MEe(e));let n=0;for(let o=0;o<e.bufs.length;o++){const r=e.bufs[o];t.set(r,n),n+=r.length}return t.set(new Uint8Array(e.cbuf.buffer,0,e.cpos),n),t},zEe=(e,t)=>{const n=e.cbuf.length;n-e.cpos<t&&(e.bufs.push(new Uint8Array(e.cbuf.buffer,0,e.cpos)),e.cbuf=new Uint8Array($f(n,t)*2),e.cpos=0)},x0=(e,t)=>{const n=e.cbuf.length;e.cpos===n&&(e.bufs.push(e.cbuf),e.cbuf=new Uint8Array(n*2),e.cpos=0),e.cbuf[e.cpos++]=t},UM=x0,sn=(e,t)=>{for(;t>ef;)x0(e,Ns|ef&t),t=Oc(t/128);x0(e,ef&t)},lB=(e,t)=>{const n=M1e(t);for(n&&(t=-t),x0(e,(t>TE?Ns:0)|(n?yl:0)|TE&t),t=Oc(t/64);t>0;)x0(e,(t>ef?Ns:0)|ef&t),t=Oc(t/128)},WE=new Uint8Array(3e4),OEe=WE.length/3,yEe=(e,t)=>{if(t.length<OEe){const n=HM.encodeInto(t,WE).written||0;sn(e,n);for(let o=0;o<n;o++)x0(e,WE[o])}else jr(e,EE(t))},AEe=(e,t)=>{const n=unescape(encodeURIComponent(t)),o=n.length;sn(e,o);for(let r=0;r<o;r++)x0(e,n.codePointAt(r))},uc=HM&&HM.encodeInto?yEe:AEe,D5=(e,t)=>{const n=e.cbuf.length,o=e.cpos,r=cB(n-o,t.length),s=t.length-r;e.cbuf.set(t.subarray(0,r),o),e.cpos+=r,s>0&&(e.bufs.push(e.cbuf),e.cbuf=new Uint8Array($f(n*2,s)),e.cbuf.set(t.subarray(r)),e.cpos=s)},jr=(e,t)=>{sn(e,t.byteLength),D5(e,t)},uB=(e,t)=>{zEe(e,t);const n=new DataView(e.cbuf.buffer,e.cpos,t);return e.cpos+=t,n},vEe=(e,t)=>uB(e,4).setFloat32(0,t,!1),xEe=(e,t)=>uB(e,8).setFloat64(0,t,!1),wEe=(e,t)=>uB(e,8).setBigInt64(0,t,!1),gU=new DataView(new ArrayBuffer(4)),_Ee=e=>(gU.setFloat32(0,e),gU.getFloat32(0)===e),th=(e,t)=>{switch(typeof t){case"string":x0(e,119),uc(e,t);break;case"number":uEe(t)&&Lv(t)<=lEe?(x0(e,125),lB(e,t)):_Ee(t)?(x0(e,124),vEe(e,t)):(x0(e,123),xEe(e,t));break;case"bigint":x0(e,122),wEe(e,t);break;case"object":if(t===null)x0(e,126);else if(iEe(t)){x0(e,117),sn(e,t.length);for(let n=0;n<t.length;n++)th(e,t[n])}else if(t instanceof Uint8Array)x0(e,116),jr(e,t);else{x0(e,118);const n=Object.keys(t);sn(e,n.length);for(let o=0;o<n.length;o++){const r=n[o];uc(e,r),th(e,t[r])}}break;case"boolean":x0(e,t?120:121);break;default:x0(e,127)}};class MU extends p3{constructor(t){super(),this.w=t,this.s=null,this.count=0}write(t){this.s===t?this.count++:(this.count>0&&sn(this,this.count-1),this.count=1,this.w(this,t),this.s=t)}}const zU=e=>{e.count>0&&(lB(e.encoder,e.count===1?e.s:-e.s),e.count>1&&sn(e.encoder,e.count-2))};class Pv{constructor(){this.encoder=new p3,this.s=0,this.count=0}write(t){this.s===t?this.count++:(zU(this),this.count=1,this.s=t)}toUint8Array(){return zU(this),Sr(this.encoder)}}const OU=e=>{if(e.count>0){const t=e.diff*2+(e.count===1?0:1);lB(e.encoder,t),e.count>1&&sn(e.encoder,e.count-2)}};class BS{constructor(){this.encoder=new p3,this.s=0,this.count=0,this.diff=0}write(t){this.diff===t-this.s?(this.s=t,this.count++):(OU(this),this.count=1,this.diff=t-this.s,this.s=t)}toUint8Array(){return OU(this),Sr(this.encoder)}}class kEe{constructor(){this.sarr=[],this.s="",this.lensE=new Pv}write(t){this.s+=t,this.s.length>19&&(this.sarr.push(this.s),this.s=""),this.lensE.write(t.length)}toUint8Array(){const t=new p3;return this.sarr.push(this.s),this.s="",uc(t,this.sarr.join("")),D5(t,this.lensE.toUint8Array()),Sr(t)}}const ba=e=>new Error(e),dc=()=>{throw ba("Method unimplemented")},yc=()=>{throw ba("Unexpected case")},O1e=ba("Unexpected end of array"),y1e=ba("Integer out of Range");class F5{constructor(t){this.arr=t,this.pos=0}}const Rc=e=>new F5(e),SEe=e=>e.pos!==e.arr.length,CEe=(e,t)=>{const n=new Uint8Array(e.arr.buffer,e.pos+e.arr.byteOffset,t);return e.pos+=t,n},w0=e=>CEe(e,_n(e)),ff=e=>e.arr[e.pos++],_n=e=>{let t=0,n=1;const o=e.arr.length;for(;e.pos<o;){const r=e.arr[e.pos++];if(t=t+(r&ef)*n,n*=128,r<Ns)return t;if(t>z1e)throw y1e}throw O1e},dB=e=>{let t=e.arr[e.pos++],n=t&TE,o=64;const r=(t&yl)>0?-1:1;if(!(t&Ns))return r*n;const s=e.arr.length;for(;e.pos<s;){if(t=e.arr[e.pos++],n=n+(t&ef)*o,o*=128,t<Ns)return r*n;if(n>z1e)throw y1e}throw O1e},qEe=e=>{let t=_n(e);if(t===0)return"";{let n=String.fromCodePoint(ff(e));if(--t<100)for(;t--;)n+=String.fromCodePoint(ff(e));else for(;t>0;){const o=t<1e4?t:1e4,r=e.arr.subarray(e.pos,e.pos+o);e.pos+=o,n+=String.fromCodePoint.apply(null,r),t-=o}return decodeURIComponent(escape(n))}},REe=e=>OM.decode(w0(e)),Al=OM?REe:qEe,pB=(e,t)=>{const n=new DataView(e.arr.buffer,e.arr.byteOffset+e.pos,t);return e.pos+=t,n},TEe=e=>pB(e,4).getFloat32(0,!1),EEe=e=>pB(e,8).getFloat64(0,!1),WEe=e=>pB(e,8).getBigInt64(0,!1),NEe=[e=>{},e=>null,dB,TEe,EEe,WEe,e=>!1,e=>!0,Al,e=>{const t=_n(e),n={};for(let o=0;o<t;o++){const r=Al(e);n[r]=nh(e)}return n},e=>{const t=_n(e),n=[];for(let o=0;o<t;o++)n.push(nh(e));return n},w0],nh=e=>NEe[127-ff(e)](e);class yU extends F5{constructor(t,n){super(t),this.reader=n,this.s=null,this.count=0}read(){return this.count===0&&(this.s=this.reader(this),SEe(this)?this.count=_n(this)+1:this.count=-1),this.count--,this.s}}class jv extends F5{constructor(t){super(t),this.s=0,this.count=0}read(){if(this.count===0){this.s=dB(this);const t=M1e(this.s);this.count=1,t&&(this.s=-this.s,this.count=_n(this)+2)}return this.count--,this.s}}class LS extends F5{constructor(t){super(t),this.s=0,this.count=0,this.diff=0}read(){if(this.count===0){const t=dB(this),n=t&1;this.diff=Oc(t/2),this.count=1,n&&(this.count=_n(this)+2)}return this.s+=this.diff,this.count--,this.s}}class BEe{constructor(t){this.decoder=new jv(t),this.str=Al(this.decoder),this.spos=0}read(){const t=this.spos+this.decoder.read(),n=this.str.slice(this.spos,t);return this.spos=t,n}}const LEe=crypto.getRandomValues.bind(crypto),PEe=Math.random,A1e=()=>LEe(new Uint32Array(1))[0],jEe="10000000-1000-4000-8000"+-1e11,v1e=()=>jEe.replace(/[018]/g,e=>(e^A1e()&15>>e/4).toString(16)),El=Date.now,oh=e=>new Promise(e);Promise.all.bind(Promise);const IEe=e=>Promise.reject(e),fB=e=>Promise.resolve(e);var x1e={},$5={};$5.byteLength=$Ee;$5.toByteArray=HEe;$5.fromByteArray=GEe;var rc=[],fi=[],DEe=typeof Uint8Array<"u"?Uint8Array:Array,PS="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(var Fb=0,FEe=PS.length;Fb<FEe;++Fb)rc[Fb]=PS[Fb],fi[PS.charCodeAt(Fb)]=Fb;fi[45]=62;fi[95]=63;function w1e(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");n===-1&&(n=t);var o=n===t?0:4-n%4;return[n,o]}function $Ee(e){var t=w1e(e),n=t[0],o=t[1];return(n+o)*3/4-o}function VEe(e,t,n){return(t+n)*3/4-n}function HEe(e){var t,n=w1e(e),o=n[0],r=n[1],s=new DEe(VEe(e,o,r)),i=0,c=r>0?o-4:o,l;for(l=0;l<c;l+=4)t=fi[e.charCodeAt(l)]<<18|fi[e.charCodeAt(l+1)]<<12|fi[e.charCodeAt(l+2)]<<6|fi[e.charCodeAt(l+3)],s[i++]=t>>16&255,s[i++]=t>>8&255,s[i++]=t&255;return r===2&&(t=fi[e.charCodeAt(l)]<<2|fi[e.charCodeAt(l+1)]>>4,s[i++]=t&255),r===1&&(t=fi[e.charCodeAt(l)]<<10|fi[e.charCodeAt(l+1)]<<4|fi[e.charCodeAt(l+2)]>>2,s[i++]=t>>8&255,s[i++]=t&255),s}function UEe(e){return rc[e>>18&63]+rc[e>>12&63]+rc[e>>6&63]+rc[e&63]}function XEe(e,t,n){for(var o,r=[],s=t;s<n;s+=3)o=(e[s]<<16&16711680)+(e[s+1]<<8&65280)+(e[s+2]&255),r.push(UEe(o));return r.join("")}function GEe(e){for(var t,n=e.length,o=n%3,r=[],s=16383,i=0,c=n-o;i<c;i+=s)r.push(XEe(e,i,i+s>c?c:i+s));return o===1?(t=e[n-1],r.push(rc[t>>2]+rc[t<<4&63]+"==")):o===2&&(t=(e[n-2]<<8)+e[n-1],r.push(rc[t>>10]+rc[t>>4&63]+rc[t<<2&63]+"=")),r.join("")}var bB={};/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */bB.read=function(e,t,n,o,r){var s,i,c=r*8-o-1,l=(1<<c)-1,u=l>>1,d=-7,p=n?r-1:0,f=n?-1:1,b=e[t+p];for(p+=f,s=b&(1<<-d)-1,b>>=-d,d+=c;d>0;s=s*256+e[t+p],p+=f,d-=8);for(i=s&(1<<-d)-1,s>>=-d,d+=o;d>0;i=i*256+e[t+p],p+=f,d-=8);if(s===0)s=1-u;else{if(s===l)return i?NaN:(b?-1:1)*(1/0);i=i+Math.pow(2,o),s=s-u}return(b?-1:1)*i*Math.pow(2,s-o)};bB.write=function(e,t,n,o,r,s){var i,c,l,u=s*8-r-1,d=(1<<u)-1,p=d>>1,f=r===23?Math.pow(2,-24)-Math.pow(2,-77):0,b=o?0:s-1,h=o?1:-1,g=t<0||t===0&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(c=isNaN(t)?1:0,i=d):(i=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-i))<1&&(i--,l*=2),i+p>=1?t+=f/l:t+=f*Math.pow(2,1-p),t*l>=2&&(i++,l/=2),i+p>=d?(c=0,i=d):i+p>=1?(c=(t*l-1)*Math.pow(2,r),i=i+p):(c=t*Math.pow(2,p-1)*Math.pow(2,r),i=0));r>=8;e[n+b]=c&255,b+=h,c/=256,r-=8);for(i=i<<r|c,u+=r;u>0;e[n+b]=i&255,b+=h,i/=256,u-=8);e[n+b-h]|=g*128};/*! +`,n.join(", "))}function XCe(e,t){const n=e.select,o={};let r,s,i=!1,c,l,u;const d=new Map;function p(b){var h;return(h=e.stores[b]?.store?.getState?.())!==null&&h!==void 0?h:{}}const f=b=>{const h=[...b],g=new Set;function z(_){if(i)for(const S of h)d.get(S)!==p(S)&&(i=!1);d.clear();const v=()=>{i=!1,_()},M=()=>{c?_S.add(o,v):v()},y=[];function k(S){y.push(e.subscribe(M,S))}for(const S of h)k(S);return g.add(k),()=>{g.delete(k);for(const S of y.values())S?.();_S.cancel(o)}}function A(_){for(const v of _)if(!h.includes(v)){h.push(v);for(const M of g)M(v)}}return{subscribe:z,updateStores:A}};return(b,h)=>{function g(){if(i&&b===r)return s;const A={current:null},_=e.__unstableMarkListeningStores(()=>b(n,e),A);if(globalThis.SCRIPT_DEBUG&&!u){const v=b(n,e);ds(_,v)||(UCe(_,v),u=!0)}if(l)l.updateStores(A.current);else{for(const v of A.current)d.set(v,p(v));l=f(A.current)}ds(s,_)||(s=_),r=b,i=!0}function z(){return g(),s}return c&&!h&&(i=!1,_S.cancel(o)),g(),c=h,{subscribe:l.subscribe,getValue:z}}}function GCe(e){return Fn().select(e)}function KCe(e,t,n){const o=Fn(),r=HCe(),s=x.useMemo(()=>XCe(o),[o,e]),i=x.useCallback(t,n),{subscribe:c,getValue:l}=s(i,r),u=x.useSyncExternalStore(c,l,l);return x.useDebugValue(u),u}function G(e,t){const n=typeof e!="function",o=x.useRef(n);if(n!==o.current){const r=o.current?"static":"mapping",s=n?"static":"mapping";throw new Error(`Switching useSelect from ${r} to ${s} is not allowed`)}return n?GCe(e):KCe(!1,e,t)}const Ul=e=>Or(t=>tSe(n=>{const r=G((s,i)=>e(s,n,i));return a.jsx(t,{...n,...r})}),"withSelect"),Oe=e=>{const{dispatch:t}=Fn();return e===void 0?t:t(e)},YCe=(e,t)=>{const n=Fn(),o=x.useRef(e);return UN(()=>{o.current=e}),x.useMemo(()=>{const r=o.current(n.dispatch,n);return Object.fromEntries(Object.entries(r).map(([s,i])=>(typeof i!="function"&&console.warn(`Property ${s} returned from dispatchMap in useDispatchWithMap must be a function.`),[s,(...c)=>o.current(n.dispatch,n)[s](...c)])))},[n,...t])},Ff=e=>Or(t=>n=>{const r=YCe((s,i)=>e(s,n,i),[]);return a.jsx(t,{...n,...r})},"withDispatch");function kr(e){return qc.dispatch(e)}function uo(e){return qc.select(e)}const J0=q0e,j0e=qc.resolveSelect;qc.suspendSelect;const ZCe=qc.subscribe;qc.registerGenericStore;const QCe=qc.registerStore;qc.use;const Us=qc.register;var kS,eU;function JCe(){return eU||(eU=1,kS=function e(t,n){if(t===n)return!0;if(t&&n&&typeof t=="object"&&typeof n=="object"){if(t.constructor!==n.constructor)return!1;var o,r,s;if(Array.isArray(t)){if(o=t.length,o!=n.length)return!1;for(r=o;r--!==0;)if(!e(t[r],n[r]))return!1;return!0}if(t instanceof Map&&n instanceof Map){if(t.size!==n.size)return!1;for(r of t.entries())if(!n.has(r[0]))return!1;for(r of t.entries())if(!e(r[1],n.get(r[0])))return!1;return!0}if(t instanceof Set&&n instanceof Set){if(t.size!==n.size)return!1;for(r of t.entries())if(!n.has(r[0]))return!1;return!0}if(ArrayBuffer.isView(t)&&ArrayBuffer.isView(n)){if(o=t.length,o!=n.length)return!1;for(r=o;r--!==0;)if(t[r]!==n[r])return!1;return!0}if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if(s=Object.keys(t),o=s.length,o!==Object.keys(n).length)return!1;for(r=o;r--!==0;)if(!Object.prototype.hasOwnProperty.call(n,s[r]))return!1;for(r=o;r--!==0;){var i=s[r];if(!e(t[i],n[i]))return!1}return!0}return t!==t&&n!==n}),kS}var eqe=JCe();const N0=Zr(eqe);function tqe(e,t){if(!e)return t;let n=!1;const o={};for(const r in t)N0(e[r],t[r])?o[r]=e[r]:(n=!0,o[r]=t[r]);if(!n)return e;for(const r in e)o.hasOwnProperty(r)||(o[r]=e[r]);return o}function Md(e){return typeof e=="string"?e.split(","):Array.isArray(e)?e:null}const I0e=e=>t=>(n,o)=>n===void 0||e(o)?t(n,o):n,YN=e=>(...t)=>async({resolveSelect:n})=>{await n[e](...t)},tU=e=>t=>(n={},o)=>{const r=o[e];if(r===void 0)return n;const s=t(n[r],o);return s===n[r]?n:{...n,[r]:s}},D0e=e=>t=>(n,o)=>t(n,e(o));function nqe(e){const t=new WeakMap;return n=>{let o;return t.has(n)?o=t.get(n):(o=e(n),n!==null&&typeof n=="object"&&t.set(n,o)),o}}function oqe(e,t){return(e.rawAttributes||[]).includes(t)}function B5(e,t,n){if(!e||typeof e!="object")return e;const o=Array.isArray(t)?t:t.split(".");return o.reduce((r,s,i)=>(r[s]===void 0&&(Number.isInteger(o[i+1])?r[s]=[]:r[s]={}),i===o.length-1&&(r[s]=n),r[s]),e),e}function rqe(e,t,n){if(!e||typeof e!="object"||typeof t!="string"&&!Array.isArray(t))return e;const o=Array.isArray(t)?t:t.split(".");let r=e;return o.forEach(s=>{r=r?.[s]}),r!==void 0?r:n}function sqe(e){return/^\s*\d+\s*$/.test(e)}const zM=["create","read","update","delete"];function ZN(e){const t={};if(!e)return t;const n={create:"POST",read:"GET",update:"PUT",delete:"DELETE"};for(const[o,r]of Object.entries(n))t[o]=e.includes(r);return t}function L5(e,t,n){return(typeof t=="object"?[e,t.kind,t.name,t.id]:[e,t,n]).filter(Boolean).join("/")}const F0e=Symbol("RECEIVE_INTERMEDIATE_RESULTS");function $0e(e,t,n){return{type:"RECEIVE_ITEMS",items:Array.isArray(e)?e:[e],persistedEdits:t,meta:n}}function iqe(e,t,n,o=!1){return{type:"REMOVE_ITEMS",itemIds:Array.isArray(n)?n:[n],kind:e,name:t,invalidateCache:o}}function aqe(e,t={},n,o){return{...$0e(e,n,o),query:t}}function cqe(e){const t={stableKey:"",page:1,perPage:10,fields:null,include:null,context:"default"},n=Object.keys(e).sort();for(let s=0;s<n.length;s++){const i=n[s];let c=e[i];switch(i){case"page":t[i]=Number(c);break;case"per_page":t.perPage=Number(c);break;case"context":t.context=c;break;default:if(i==="_fields"){var o;t.fields=(o=Md(c))!==null&&o!==void 0?o:[],c=t.fields.join()}if(i==="include"){var r;typeof c=="number"&&(c=c.toString()),t.include=((r=Md(c))!==null&&r!==void 0?r:[]).map(Number),c=t.include.join()}t.stableKey+=(t.stableKey?"&":"")+tn("",{[i]:c}).slice(1)}}return t}const jh=nqe(cqe),nU=new WeakMap;function lqe(e,t){const{stableKey:n,page:o,perPage:r,include:s,fields:i,context:c}=jh(t);let l;if(e.queries?.[c]?.[n]&&(l=e.queries[c][n].itemIds),!l)return null;const u=r===-1?0:(o-1)*r,d=r===-1?l.length:Math.min(u+r,l.length),p=[];for(let f=u;f<d;f++){const b=l[f];if(Array.isArray(s)&&!s.includes(b)||b===void 0)continue;if(!e.items[c]?.hasOwnProperty(b))return null;const h=e.items[c][b];let g;if(Array.isArray(i)){g={};for(let z=0;z<i.length;z++){const A=i[z].split(".");let _=h;A.forEach(v=>{_=_?.[v]}),B5(g,A,_)}}else{if(!e.itemIsComplete[c]?.[b])return null;g=h}p.push(g)}return p}const V0e=It((e,t={})=>{let n=nU.get(e);if(n){const r=n.get(t);if(r!==void 0)return r}else n=new Va,nU.set(e,n);const o=lqe(e,t);return n.set(t,o),o});function H0e(e,t={}){var n;const{stableKey:o,context:r}=jh(t);return(n=e.queries?.[r]?.[o]?.meta?.totalItems)!==null&&n!==void 0?n:null}function uqe(e,t={}){var n;const{stableKey:o,context:r}=jh(t);return(n=e.queries?.[r]?.[o]?.meta?.totalPages)!==null&&n!==void 0?n:null}function dqe(e={},t){switch(t.type){case"ADD_FORMAT_TYPES":return{...e,...t.formatTypes.reduce((n,o)=>({...n,[o.name]:o}),{})};case"REMOVE_FORMAT_TYPES":return Object.fromEntries(Object.entries(e).filter(([n])=>!t.names.includes(n)))}return e}const pqe=J0({formatTypes:dqe}),QN=It(e=>Object.values(e.formatTypes),e=>[e.formatTypes]);function fqe(e,t){return e.formatTypes[t]}function bqe(e,t){const n=QN(e);return n.find(({className:o,tagName:r})=>o===null&&t===r)||n.find(({className:o,tagName:r})=>o===null&&r==="*")}function hqe(e,t){return QN(e).find(({className:n})=>n===null?!1:` ${t} `.indexOf(` ${n} `)>=0)}const mqe=Object.freeze(Object.defineProperty({__proto__:null,getFormatType:fqe,getFormatTypeForBareElement:bqe,getFormatTypeForClassName:hqe,getFormatTypes:QN},Symbol.toStringTag,{value:"Module"}));function gqe(e){return{type:"ADD_FORMAT_TYPES",formatTypes:Array.isArray(e)?e:[e]}}function Mqe(e){return{type:"REMOVE_FORMAT_TYPES",names:Array.isArray(e)?e:[e]}}const zqe=Object.freeze(Object.defineProperty({__proto__:null,addFormatTypes:gqe,removeFormatTypes:Mqe},Symbol.toStringTag,{value:"Module"})),Oqe="core/rich-text",ul=x1(Oqe,{reducer:pqe,selectors:mqe,actions:zqe});Us(ul);function W4(e,t){if(e===t)return!0;if(!e||!t||e.type!==t.type)return!1;const n=e.attributes,o=t.attributes;if(n===o)return!0;if(!n||!o)return!1;const r=Object.keys(n),s=Object.keys(o);if(r.length!==s.length)return!1;const i=r.length;for(let c=0;c<i;c++){const l=r[c];if(n[l]!==o[l])return!1}return!0}function Ih(e){const t=e.formats.slice();return t.forEach((n,o)=>{const r=t[o-1];if(r){const s=n.slice();s.forEach((i,c)=>{const l=r[c];W4(i,l)&&(s[c]=l)}),t[o]=s}}),{...e,formats:t}}function oU(e,t,n){return e=e.slice(),e[t]=n,e}function qi(e,t,n=e.start,o=e.end){const{formats:r,activeFormats:s}=e,i=r.slice();if(n===o){const c=i[n]?.find(({type:l})=>l===t.type);if(c){const l=i[n].indexOf(c);for(;i[n]&&i[n][l]===c;)i[n]=oU(i[n],l,t),n--;for(o++;i[o]&&i[o][l]===c;)i[o]=oU(i[o],l,t),o++}}else{let c=1/0;for(let l=n;l<o;l++)if(i[l]){i[l]=i[l].filter(({type:d})=>d!==t.type);const u=i[l].length;u<c&&(c=u)}else i[l]=[],c=0;for(let l=n;l<o;l++)i[l].splice(c,0,t)}return Ih({...e,formats:i,activeFormats:[...s?.filter(({type:c})=>c!==t.type)||[],t]})}function dl({implementation:e},t){return dl.body||(dl.body=e.createHTMLDocument("").body),dl.body.innerHTML=t,dl.body}const pl="",U0e="\uFEFF";function JN(e,t=[]){const{formats:n,start:o,end:r,activeFormats:s}=e;if(o===void 0)return t;if(o===r){if(s)return s;const u=n[o-1]||t,d=n[o]||t;return u.length<d.length?u:d}if(!n[o])return t;const i=n.slice(o,r),c=[...i[0]];let l=i.length;for(;l--;){const u=i[l];if(!u)return t;let d=c.length;for(;d--;){const p=c[d];u.find(f=>W4(p,f))||c.splice(d,1)}if(c.length===0)return t}return c||t}function X0e(e){return uo(ul).getFormatType(e)}function rU(e,t){if(t)return e;const n={};for(const o in e){let r=o;o.startsWith("data-disable-rich-text-")&&(r=o.slice(23)),n[r]=e[o]}return n}function dA({type:e,tagName:t,attributes:n,unregisteredAttributes:o,object:r,boundaryClass:s,isEditableTree:i}){const c=X0e(e);let l={};if(s&&i&&(l["data-rich-text-format-boundary"]="true"),!c)return n&&(l={...n,...l}),{type:e,attributes:rU(l,i),object:r};l={...o,...l};for(const u in n){const d=c.attributes?c.attributes[u]:!1;d?l[d]=n[u]:l[u]=n[u]}return c.className&&(l.class?l.class=`${c.className} ${l.class}`:l.class=c.className),i&&c.contentEditable===!1&&(l.contenteditable="false"),{type:t||c.tagName,object:c.object,attributes:rU(l,i)}}function yqe(e,t,n){do if(e[n]!==t[n])return!1;while(n--);return!0}function G0e({value:e,preserveWhiteSpace:t,createEmpty:n,append:o,getLastChild:r,getParent:s,isText:i,getText:c,remove:l,appendText:u,onStartIndex:d,onEndIndex:p,isEditableTree:f,placeholder:b}){const{formats:h,replacements:g,text:z,start:A,end:_}=e,v=h.length+1,M=n(),y=JN(e),k=y[y.length-1];let S,C;o(M,"");for(let R=0;R<v;R++){const T=z.charAt(R),E=f&&(!C||C===` +`),B=h[R];let N=r(M);if(B&&B.forEach((j,I)=>{if(N&&S&&yqe(B,S,I)){N=r(N);return}const{type:P,tagName:$,attributes:F,unregisteredAttributes:X}=j,Z=f&&j===k,V=s(N),ee=o(V,dA({type:P,tagName:$,attributes:F,unregisteredAttributes:X,boundaryClass:Z,isEditableTree:f}));i(N)&&c(N).length===0&&l(N),N=o(ee,"")}),R===0&&(d&&A===0&&d(M,N),p&&_===0&&p(M,N)),T===pl){const j=g[R];if(!j)continue;const{type:I,attributes:P,innerHTML:$}=j,F=X0e(I);f&&I==="#comment"?(N=o(s(N),{type:"span",attributes:{contenteditable:"false","data-rich-text-comment":P["data-rich-text-comment"]}}),o(o(N,{type:"span"}),P["data-rich-text-comment"].trim())):!f&&I==="script"?(N=o(s(N),dA({type:"script",isEditableTree:f})),o(N,{html:decodeURIComponent(P["data-rich-text-script"])})):F?.contentEditable===!1?(N=o(s(N),dA({...j,isEditableTree:f,boundaryClass:A===R&&_===R+1})),$&&o(N,{html:$})):N=o(s(N),dA({...j,object:!0,isEditableTree:f})),N=o(s(N),"")}else!t&&T===` +`?(N=o(s(N),{type:"br",attributes:f?{"data-rich-text-line-break":"true"}:void 0,object:!0}),N=o(s(N),"")):i(N)?u(N,T):N=o(s(N),T);d&&A===R+1&&d(M,N),p&&_===R+1&&p(M,N),E&&R===z.length&&(o(s(N),U0e),b&&z.length===0&&o(s(N),{type:"span",attributes:{"data-rich-text-placeholder":b,style:"pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;"}})),S=B,C=T}return M}function T0({value:e,preserveWhiteSpace:t}){const n=G0e({value:e,preserveWhiteSpace:t,createEmpty:Aqe,append:xqe,getLastChild:vqe,getParent:_qe,isText:kqe,getText:Sqe,remove:Cqe,appendText:wqe});return K0e(n.children)}function Aqe(){return{}}function vqe({children:e}){return e&&e[e.length-1]}function xqe(e,t){return typeof t=="string"&&(t={text:t}),t.parent=e,e.children=e.children||[],e.children.push(t),t}function wqe(e,t){e.text+=t}function _qe({parent:e}){return e}function kqe({text:e}){return typeof e=="string"}function Sqe({text:e}){return e}function Cqe(e){const t=e.parent.children.indexOf(e);return t!==-1&&e.parent.children.splice(t,1),e}function qqe({type:e,attributes:t,object:n,children:o}){if(e==="#comment")return`<!--${t["data-rich-text-comment"]}-->`;let r="";for(const s in t)Ire(s)&&(r+=` ${s}="${A5(t[s])}"`);return n?`<${e}${r}>`:`<${e}${r}>${K0e(o)}</${e}>`}function K0e(e=[]){return e.map(t=>t.html!==void 0?t.html:t.text===void 0?qqe(t):xke(t.text)).join("")}function Jp({text:e}){return e.replace(pl,"")}function $p(){return{formats:[],replacements:[],text:""}}function Rqe({tagName:e,attributes:t}){let n;if(t&&t.class&&(n=uo(ul).getFormatTypeForClassName(t.class),n&&(t.class=` ${t.class} `.replace(` ${n.className} `," ").trim(),t.class||delete t.class)),n||(n=uo(ul).getFormatTypeForBareElement(e)),!n)return t?{type:e,attributes:t}:{type:e};if(n.__experimentalCreatePrepareEditableTree&&!n.__experimentalCreateOnChangeEditableValue)return null;if(!t)return{formatType:n,type:n.name,tagName:e};const o={},r={},s={...t};for(const i in n.attributes){const c=n.attributes[i];o[i]=s[c],delete s[c],typeof o[i]>"u"&&delete o[i]}for(const i in s)r[i]=t[i];return n.contentEditable===!1&&delete r.contenteditable,{formatType:n,type:n.name,tagName:e,attributes:o,unregisteredAttributes:r}}class Xo{#e;static empty(){return new Xo}static fromPlainText(t){return new Xo(eo({text:t}))}static fromHTMLString(t){return new Xo(eo({html:t}))}static fromHTMLElement(t,n={}){const{preserveWhiteSpace:o=!1}=n,r=o?t:Y0e(t),s=new Xo(eo({element:r}));return Object.defineProperty(s,"originalHTML",{value:t.innerHTML}),s}constructor(t=$p()){this.#e=t}toPlainText(){return Jp(this.#e)}toHTMLString({preserveWhiteSpace:t}={}){return this.originalHTML||T0({value:this.#e,preserveWhiteSpace:t})}valueOf(){return this.toHTMLString()}toString(){return this.toHTMLString()}toJSON(){return this.toHTMLString()}get length(){return this.text.length}get formats(){return this.#e.formats}get replacements(){return this.#e.replacements}get text(){return this.#e.text}}for(const e of Object.getOwnPropertyNames(String.prototype))Xo.prototype.hasOwnProperty(e)||Object.defineProperty(Xo.prototype,e,{value(...t){return this.toHTMLString()[e](...t)}});function eo({element:e,text:t,html:n,range:o,__unstableIsEditableTree:r}={}){return n instanceof Xo?{text:n.text,formats:n.formats,replacements:n.replacements}:typeof t=="string"&&t.length>0?{formats:Array(t.length),replacements:Array(t.length),text:t}:(typeof n=="string"&&n.length>0&&(e=dl(document,n)),typeof e!="object"?$p():Z0e({element:e,range:o,isEditableTree:r}))}function qu(e,t,n,o){if(!n)return;const{parentNode:r}=t,{startContainer:s,startOffset:i,endContainer:c,endOffset:l}=n,u=e.text.length;o.start!==void 0?e.start=u+o.start:t===s&&t.nodeType===t.TEXT_NODE?e.start=u+i:r===s&&t===s.childNodes[i]?e.start=u:r===s&&t===s.childNodes[i-1]?e.start=u+o.text.length:t===s&&(e.start=u),o.end!==void 0?e.end=u+o.end:t===c&&t.nodeType===t.TEXT_NODE?e.end=u+l:r===c&&t===c.childNodes[l-1]?e.end=u+o.text.length:r===c&&t===c.childNodes[l]?e.end=u:t===c&&(e.end=u+l)}function Tqe(e,t,n){if(!t)return;const{startContainer:o,endContainer:r}=t;let{startOffset:s,endOffset:i}=t;return e===o&&(s=n(e.nodeValue.slice(0,s)).length),e===r&&(i=n(e.nodeValue.slice(0,i)).length),{startContainer:o,startOffset:s,endContainer:r,endOffset:i}}function Y0e(e,t=!0){const n=e.cloneNode(!0);return n.normalize(),Array.from(n.childNodes).forEach((o,r,s)=>{if(o.nodeType===o.TEXT_NODE){let i=o.nodeValue;/[\n\t\r\f]/.test(i)&&(i=i.replace(/[\n\t\r\f]+/g," ")),i.indexOf(" ")!==-1&&(i=i.replace(/ {2,}/g," ")),r===0&&i.startsWith(" ")?i=i.slice(1):t&&r===s.length-1&&i.endsWith(" ")&&(i=i.slice(0,-1)),o.nodeValue=i}else o.nodeType===o.ELEMENT_NODE&&Y0e(o,!1)}),n}const Eqe="\r";function sU(e){return e.replace(new RegExp(`[${U0e}${pl}${Eqe}]`,"gu"),"")}function Z0e({element:e,range:t,isEditableTree:n}){const o=$p();if(!e)return o;if(!e.hasChildNodes())return qu(o,e,t,$p()),o;const r=e.childNodes.length;for(let i=0;i<r;i++){const c=e.childNodes[i],l=c.nodeName.toLowerCase();if(c.nodeType===c.TEXT_NODE){const p=sU(c.nodeValue);t=Tqe(c,t,sU),qu(o,c,t,{text:p}),o.formats.length+=p.length,o.replacements.length+=p.length,o.text+=p;continue}if(c.nodeType===c.COMMENT_NODE||c.nodeType===c.ELEMENT_NODE&&c.tagName==="SPAN"&&c.hasAttribute("data-rich-text-comment")){const p={formats:[,],replacements:[{type:"#comment",attributes:{"data-rich-text-comment":c.nodeType===c.COMMENT_NODE?c.nodeValue:c.getAttribute("data-rich-text-comment")}}],text:pl};qu(o,c,t,p),Pu(o,p);continue}if(c.nodeType!==c.ELEMENT_NODE)continue;if(n&&l==="br"&&!c.getAttribute("data-rich-text-line-break")){qu(o,c,t,$p());continue}if(l==="script"){const p={formats:[,],replacements:[{type:l,attributes:{"data-rich-text-script":c.getAttribute("data-rich-text-script")||encodeURIComponent(c.innerHTML)}}],text:pl};qu(o,c,t,p),Pu(o,p);continue}if(l==="br"){qu(o,c,t,$p()),Pu(o,eo({text:` +`}));continue}const u=Rqe({tagName:l,attributes:Wqe({element:c})});if(u?.formatType?.contentEditable===!1){delete u.formatType,qu(o,c,t,$p()),Pu(o,{formats:[,],replacements:[{...u,innerHTML:c.innerHTML}],text:pl});continue}u&&delete u.formatType;const d=Z0e({element:c,range:t,isEditableTree:n});if(qu(o,c,t,d),!u||c.getAttribute("data-rich-text-placeholder"))Pu(o,d);else if(d.text.length===0)u.attributes&&Pu(o,{formats:[,],replacements:[u],text:pl});else{let p=function(f){if(p.formats===f)return p.newFormats;const b=f?[u,...f]:[u];return p.formats=f,p.newFormats=b,b};var s=p;p.newFormats=[u],Pu(o,{...d,formats:Array.from(d.formats,p)})}}return o}function Wqe({element:e}){if(!e.hasAttributes())return;const t=e.attributes.length;let n;for(let o=0;o<t;o++){const{name:r,value:s}=e.attributes[o];if(r.indexOf("data-rich-text-")===0)continue;const i=/^on/i.test(r)?"data-disable-rich-text-"+r:r;n=n||{},n[i]=s}return n}function Pu(e,t){return e.formats=e.formats.concat(t.formats),e.replacements=e.replacements.concat(t.replacements),e.text+=t.text,e}function Nqe(...e){return Ih(e.reduce(Pu,eo()))}function eB(e,t){return JN(e).find(({type:n})=>n===t)}function Bqe({start:e,end:t,replacements:n,text:o}){if(!(e+1!==t||o[e]!==pl))return n[e]}function Xl({start:e,end:t}){if(!(e===void 0||t===void 0))return e===t}function SE({text:e}){return e.length===0}function Lqe(e,t=""){return typeof t=="string"&&(t=eo({text:t})),Ih(e.reduce((n,{formats:o,replacements:r,text:s})=>({formats:n.formats.concat(t.formats,o),replacements:n.replacements.concat(t.replacements,r),text:n.text+t.text+s})))}function Q0e(e,t){if(t={name:e,...t},typeof t.name!="string"){window.console.error("Format names must be strings.");return}if(!/^[a-z][a-z0-9-]*\/[a-z][a-z0-9-]*$/.test(t.name)){window.console.error("Format names must contain a namespace prefix, include only lowercase alphanumeric characters or dashes, and start with a letter. Example: my-plugin/my-custom-format");return}if(uo(ul).getFormatType(t.name)){window.console.error('Format "'+t.name+'" is already registered.');return}if(typeof t.tagName!="string"||t.tagName===""){window.console.error("Format tag names must be a string.");return}if((typeof t.className!="string"||t.className==="")&&t.className!==null){window.console.error("Format class names must be a string, or null to handle bare elements.");return}if(!/^[_a-zA-Z]+[a-zA-Z0-9_-]*$/.test(t.className)){window.console.error("A class name must begin with a letter, followed by any number of hyphens, underscores, letters, or numbers.");return}if(t.className===null){const n=uo(ul).getFormatTypeForBareElement(t.tagName);if(n&&n.name!=="core/unknown"){window.console.error(`Format "${n.name}" is already registered to handle bare tag name "${t.tagName}".`);return}}else{const n=uo(ul).getFormatTypeForClassName(t.className);if(n){window.console.error(`Format "${n.name}" is already registered to handle class name "${t.className}".`);return}}if(!("title"in t)||t.title===""){window.console.error('The format "'+t.name+'" must have a title.');return}if("keywords"in t&&t.keywords.length>3){window.console.error('The format "'+t.name+'" can have a maximum of 3 keywords.');return}if(typeof t.title!="string"){window.console.error("Format titles must be strings.");return}return kr(ul).addFormatTypes(t),t}function Yd(e,t,n=e.start,o=e.end){const{formats:r,activeFormats:s}=e,i=r.slice();if(n===o){const c=i[n]?.find(({type:l})=>l===t);if(c){for(;i[n]?.find(l=>l===c);)SS(i,n,t),n--;for(o++;i[o]?.find(l=>l===c);)SS(i,o,t),o++}}else for(let c=n;c<o;c++)i[c]&&SS(i,c,t);return Ih({...e,formats:i,activeFormats:s?.filter(({type:c})=>c!==t)||[]})}function SS(e,t,n){const o=e[t].filter(({type:r})=>r!==n);o.length?e[t]=o:delete e[t]}function E0(e,t,n=e.start,o=e.end){const{formats:r,replacements:s,text:i}=e;typeof t=="string"&&(t=eo({text:t}));const c=n+t.text.length;return Ih({formats:r.slice(0,n).concat(t.formats,r.slice(o)),replacements:s.slice(0,n).concat(t.replacements,s.slice(o)),text:i.slice(0,n)+t.text+i.slice(o),start:c,end:c})}function pa(e,t,n){return E0(e,eo(),t,n)}function Pqe({formats:e,replacements:t,text:n,start:o,end:r},s,i){return n=n.replace(s,(c,...l)=>{const u=l[l.length-2];let d=i,p,f;return typeof d=="function"&&(d=i(c,...l)),typeof d=="object"?(p=d.formats,f=d.replacements,d=d.text):(p=Array(d.length),f=Array(d.length),e[u]&&(p=p.fill(e[u]))),e=e.slice(0,u).concat(p,e.slice(u+c.length)),t=t.slice(0,u).concat(f,t.slice(u+c.length)),o&&(o=r=u+d.length),d}),Ih({formats:e,replacements:t,text:n,start:o,end:r})}function J0e(e,t,n,o){return E0(e,{formats:[,],replacements:[t],text:pl},n,o)}function Q2(e,t=e.start,n=e.end){const{formats:o,replacements:r,text:s}=e;return t===void 0||n===void 0?{...e}:{formats:o.slice(t,n),replacements:r.slice(t,n),text:s.slice(t,n)}}function tB({formats:e,replacements:t,text:n,start:o,end:r},s){if(typeof s!="string")return jqe(...arguments);let i=0;return n.split(s).map(c=>{const l=i,u={formats:e.slice(l,l+c.length),replacements:t.slice(l,l+c.length),text:c};return i+=s.length+c.length,o!==void 0&&r!==void 0&&(o>=l&&o<i?u.start=o-l:o<l&&r>l&&(u.start=0),r>=l&&r<i?u.end=r-l:o<i&&r>i&&(u.end=c.length)),u})}function jqe({formats:e,replacements:t,text:n,start:o,end:r},s=o,i=r){if(o===void 0||r===void 0)return;const c={formats:e.slice(0,s),replacements:t.slice(0,s),text:n.slice(0,s)},l={formats:e.slice(i),replacements:t.slice(i),text:n.slice(i),start:0,end:0};return[c,l]}function e1e(e,t){return e===t||e&&t&&e.startContainer===t.startContainer&&e.startOffset===t.startOffset&&e.endContainer===t.endContainer&&e.endOffset===t.endOffset}function CE(e,t,n){const o=e.parentNode;let r=0;for(;e=e.previousSibling;)r++;return n=[r,...n],o!==t&&(n=CE(o,t,n)),n}function iU(e,t){for(t=[...t];e&&t.length>1;)e=e.childNodes[t.shift()];return{node:e,offset:t[0]}}function Iqe(e,t){if(t.html!==void 0)return e.innerHTML+=t.html;typeof t=="string"&&(t=e.ownerDocument.createTextNode(t));const{type:n,attributes:o}=t;if(n)if(n==="#comment")t=e.ownerDocument.createComment(o["data-rich-text-comment"]);else{t=e.ownerDocument.createElement(n);for(const r in o)t.setAttribute(r,o[r])}return e.appendChild(t)}function Dqe(e,t){e.appendData(t)}function Fqe({lastChild:e}){return e}function $qe({parentNode:e}){return e}function Vqe(e){return e.nodeType===e.TEXT_NODE}function Hqe({nodeValue:e}){return e}function Uqe(e){return e.parentNode.removeChild(e)}function Xqe({value:e,prepareEditableTree:t,isEditableTree:n=!0,placeholder:o,doc:r=document}){let s=[],i=[];return t&&(e={...e,formats:t(e)}),{body:G0e({value:e,createEmpty:()=>dl(r,""),append:Iqe,getLastChild:Fqe,getParent:$qe,isText:Vqe,getText:Hqe,remove:Uqe,appendText:Dqe,onStartIndex(u,d){s=CE(d,u,[d.nodeValue.length])},onEndIndex(u,d){i=CE(d,u,[d.nodeValue.length])},isEditableTree:n,placeholder:o}),selection:{startPath:s,endPath:i}}}function Gqe({value:e,current:t,prepareEditableTree:n,__unstableDomOnly:o,placeholder:r}){const{body:s,selection:i}=Xqe({value:e,prepareEditableTree:n,placeholder:r,doc:t.ownerDocument});t1e(s,t),e.start!==void 0&&!o&&Kqe(i,t)}function t1e(e,t){let n=0,o;for(;o=e.firstChild;){const r=t.childNodes[n];if(!r)t.appendChild(o);else if(r.isEqualNode(o))e.removeChild(o);else if(r.nodeName!==o.nodeName||r.nodeType===r.TEXT_NODE&&r.data!==o.data)t.replaceChild(o,r);else{const s=r.attributes,i=o.attributes;if(s){let c=s.length;for(;c--;){const{name:l}=s[c];o.getAttribute(l)||r.removeAttribute(l)}}if(i)for(let c=0;c<i.length;c++){const{name:l,value:u}=i[c];r.getAttribute(l)!==u&&r.setAttribute(l,u)}t1e(o,r),e.removeChild(o)}n++}for(;t.childNodes[n];)t.removeChild(t.childNodes[n])}function Kqe({startPath:e,endPath:t},n){const{node:o,offset:r}=iU(n,e),{node:s,offset:i}=iU(n,t),{ownerDocument:c}=n,{defaultView:l}=c,u=l.getSelection(),d=c.createRange();d.setStart(o,r),d.setEnd(s,i);const{activeElement:p}=c;if(u.rangeCount>0){if(e1e(d,u.getRangeAt(0)))return;u.removeAllRanges()}u.addRange(d),p!==c.activeElement&&p instanceof l.HTMLElement&&p.focus()}function Yqe(e){if(!(typeof document>"u")){if(document.readyState==="complete"||document.readyState==="interactive")return void e();document.addEventListener("DOMContentLoaded",e)}}function aU(e="polite"){const t=document.createElement("div");t.id=`a11y-speak-${e}`,t.className="a11y-speak-region",t.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),t.setAttribute("aria-live",e),t.setAttribute("aria-relevant","additions text"),t.setAttribute("aria-atomic","true");const{body:n}=document;return n&&n.appendChild(t),t}function Zqe(){const e=document.createElement("p");e.id="a11y-speak-intro-text",e.className="a11y-speak-intro-text",e.textContent=m("Notifications"),e.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),e.setAttribute("hidden","hidden");const{body:t}=document;return t&&t.appendChild(e),e}function Qqe(){const e=document.getElementsByClassName("a11y-speak-region"),t=document.getElementById("a11y-speak-intro-text");for(let n=0;n<e.length;n++)e[n].textContent="";t&&t.setAttribute("hidden","hidden")}let cU="";function Jqe(e){return e=e.replace(/<[^<>]+>/g," "),cU===e&&(e+=" "),cU=e,e}function Yt(e,t){Qqe(),e=Jqe(e);const n=document.getElementById("a11y-speak-intro-text"),o=document.getElementById("a11y-speak-assertive"),r=document.getElementById("a11y-speak-polite");o&&t==="assertive"?o.textContent=e:r&&(r.textContent=e),n&&n.removeAttribute("hidden")}function eRe(){const e=document.getElementById("a11y-speak-intro-text"),t=document.getElementById("a11y-speak-assertive"),n=document.getElementById("a11y-speak-polite");e===null&&Zqe(),t===null&&aU("assertive"),n===null&&aU("polite")}Yqe(eRe);function zc(e,t){return eB(e,t.type)?(t.title&&Yt(xe(m("%s removed."),t.title),"assertive"),Yd(e,t.type)):(t.title&&Yt(xe(m("%s applied."),t.title),"assertive"),qi(e,t))}function tRe(e,t,n,o){let r=e.startContainer;if(r.nodeType===r.TEXT_NODE&&e.startOffset===r.length&&r.nextSibling)for(r=r.nextSibling;r.firstChild;)r=r.firstChild;if(r.nodeType!==r.ELEMENT_NODE&&(r=r.parentElement),!r||r===t||!t.contains(r))return;const s=n+(o?"."+o:"");for(;r!==t;){if(r.matches(s))return r;r=r.parentElement}}function nRe(e,t){return{contextElement:t,getBoundingClientRect(){return t.contains(e.startContainer)?e.getBoundingClientRect():t.getBoundingClientRect()}}}function CS(e,t,n){if(!e)return;const{ownerDocument:o}=e,{defaultView:r}=o,s=r.getSelection();if(!s||!s.rangeCount)return;const i=s.getRangeAt(0);if(!i||!i.startContainer)return;const c=tRe(i,e,t,n);return c||nRe(i,e)}function u3({editableContentElement:e,settings:t={}}){const{tagName:n,className:o,isActive:r}=t,[s,i]=x.useState(()=>CS(e,n,o)),c=Fr(r);return x.useLayoutEffect(()=>{if(!e)return;function l(){i(CS(e,n,o))}function u(){p.addEventListener("selectionchange",l)}function d(){p.removeEventListener("selectionchange",l)}const{ownerDocument:p}=e;return(e===p.activeElement||!c&&r||c&&!r)&&(i(CS(e,n,o)),u()),e.addEventListener("focusin",u),e.addEventListener("focusout",d),()=>{d(),e.removeEventListener("focusin",u),e.removeEventListener("focusout",d)}},[e,n,o,r,c]),s}const oRe="pre-wrap",rRe="1px";function sRe(){return x.useCallback(e=>{e&&(e.style.whiteSpace=oRe,e.style.minWidth=rRe)},[])}function iRe({record:e}){const t=x.useRef(),{activeFormats:n=[],replacements:o,start:r}=e.current,s=o[r];return x.useEffect(()=>{if((!n||!n.length)&&!s)return;const i="*[data-rich-text-format-boundary]",c=t.current.querySelector(i);if(!c)return;const{ownerDocument:l}=c,{defaultView:u}=l,p=u.getComputedStyle(c).color.replace(")",", 0.2)").replace("rgb","rgba"),f=`.rich-text:focus ${i}`,b=`background-color: ${p}`,h=`${f} {${b}}`,g="rich-text-boundary-style";let z=l.getElementById(g);z||(z=l.createElement("style"),z.id=g,l.head.appendChild(z)),z.innerHTML!==h&&(z.innerHTML=h)},[n,s]),t}const aRe=e=>t=>{function n(r){const{record:s}=e.current,{ownerDocument:i}=t;if(Xl(s.current)||!t.contains(i.activeElement))return;const c=Q2(s.current),l=Jp(c),u=T0({value:c});r.clipboardData.setData("text/plain",l),r.clipboardData.setData("text/html",u),r.clipboardData.setData("rich-text","true"),r.preventDefault(),r.type==="cut"&&i.execCommand("delete")}const{defaultView:o}=t.ownerDocument;return o.addEventListener("copy",n),o.addEventListener("cut",n),()=>{o.removeEventListener("copy",n),o.removeEventListener("cut",n)}},cRe=()=>e=>{function t(o){const{target:r}=o;if(r===e||r.textContent&&r.isContentEditable)return;const{ownerDocument:s}=r,{defaultView:i}=s,c=i.getSelection();if(c.containsNode(r))return;const l=s.createRange(),u=r.isContentEditable?r:r.closest("[contenteditable]");l.selectNode(u),c.removeAllRanges(),c.addRange(l),o.preventDefault()}function n(o){o.relatedTarget&&!e.contains(o.relatedTarget)&&o.relatedTarget.tagName==="A"&&t(o)}return e.addEventListener("click",t),e.addEventListener("focusin",n),()=>{e.removeEventListener("click",t),e.removeEventListener("focusin",n)}},lU=[],lRe=e=>t=>{function n(o){const{keyCode:r,shiftKey:s,altKey:i,metaKey:c,ctrlKey:l}=o;if(s||i||c||l||r!==wi&&r!==_i)return;const{record:u,applyRecord:d,forceRender:p}=e.current,{text:f,formats:b,start:h,end:g,activeFormats:z=[]}=u.current,A=Xl(u.current),{ownerDocument:_}=t,{defaultView:v}=_,{direction:M}=v.getComputedStyle(t),y=M==="rtl"?_i:wi,k=o.keyCode===y;if(A&&z.length===0&&(h===0&&k||g===f.length&&!k)||!A)return;const S=b[h-1]||lU,C=b[h]||lU,R=k?S:C,T=z.every((P,$)=>P===R[$]);let E=z.length;if(T?E<R.length&&E++:E--,E===z.length){u.current._newActiveFormats=R;return}o.preventDefault();const j=(T?R:k?C:S).slice(0,E),I={...u.current,activeFormats:j};u.current=I,d(I),p()}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}},uRe=e=>t=>{function n(o){const{keyCode:r}=o,{createRecord:s,handleChange:i}=e.current;if(o.defaultPrevented||r!==zl&&r!==Mc)return;const c=s(),{start:l,end:u,text:d}=c;l===0&&u!==0&&u===d.length&&(i(pa(c)),o.preventDefault())}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}};function dRe({value:e,start:t,end:n,formats:o}){const r=Math.min(t,n),s=Math.max(t,n),i=e.formats[r-1]||[],c=e.formats[s]||[];for(e.activeFormats=o.map((l,u)=>{if(i[u]){if(W4(l,i[u]))return i[u]}else if(c[u]&&W4(l,c[u]))return c[u];return l});--n>=t;)e.activeFormats.length>0?e.formats[n]=e.activeFormats:delete e.formats[n];return e}const pRe=new Set(["insertParagraph","insertOrderedList","insertUnorderedList","insertHorizontalRule","insertLink"]),uU=[],n1e="data-rich-text-placeholder";function fRe(e){const t=e.getSelection(),{anchorNode:n,anchorOffset:o}=t;if(n.nodeType!==n.ELEMENT_NODE)return;const r=n.childNodes[o];!r||r.nodeType!==r.ELEMENT_NODE||!r.hasAttribute(n1e)||t.collapseToStart()}const bRe=e=>t=>{const{ownerDocument:n}=t,{defaultView:o}=n;let r=!1;function s(d){if(r)return;let p;d&&(p=d.inputType);const{record:f,applyRecord:b,createRecord:h,handleChange:g}=e.current;if(p&&(p.indexOf("format")===0||pRe.has(p))){b(f.current);return}const z=h(),{start:A,activeFormats:_=[]}=f.current,v=dRe({value:z,start:A,end:z.start,formats:_});g(v)}function i(){const{record:d,applyRecord:p,createRecord:f,onSelectionChange:b}=e.current;if(t.contentEditable!=="true")return;if(n.activeElement!==t){n.removeEventListener("selectionchange",i);return}if(r)return;const{start:h,end:g,text:z}=f(),A=d.current;if(z!==A.text){s();return}if(h===A.start&&g===A.end){A.text.length===0&&h===0&&fRe(o);return}const _={...A,start:h,end:g,activeFormats:A._newActiveFormats,_newActiveFormats:void 0},v=JN(_,uU);_.activeFormats=v,d.current=_,p(_,{domOnly:!0}),b(h,g)}function c(){r=!0,n.removeEventListener("selectionchange",i),t.querySelector(`[${n1e}]`)?.remove()}function l(){r=!1,s({inputType:"insertText"}),n.addEventListener("selectionchange",i)}function u(){const{record:d,isSelected:p,onSelectionChange:f,applyRecord:b}=e.current;t.parentElement.closest('[contenteditable="true"]')||(p?b(d.current,{domOnly:!0}):d.current={...d.current,start:void 0,end:void 0,activeFormats:uU},f(d.current.start,d.current.end),window.queueMicrotask(i),n.addEventListener("selectionchange",i))}return t.addEventListener("input",s),t.addEventListener("compositionstart",c),t.addEventListener("compositionend",l),t.addEventListener("focus",u),()=>{t.removeEventListener("input",s),t.removeEventListener("compositionstart",c),t.removeEventListener("compositionend",l),t.removeEventListener("focus",u)}},hRe=()=>e=>{const{ownerDocument:t}=e,{defaultView:n}=t,o=n?.getSelection();let r;function s(){return o.rangeCount?o.getRangeAt(0):null}function i(c){const l=c.type==="keydown"?"keyup":"pointerup";function u(){t.removeEventListener(l,d),t.removeEventListener("selectionchange",u),t.removeEventListener("input",u)}function d(){u(),!e1e(r,s())&&t.dispatchEvent(new Event("selectionchange"))}t.addEventListener(l,d),t.addEventListener("selectionchange",u),t.addEventListener("input",u),r=s()}return e.addEventListener("pointerdown",i),e.addEventListener("keydown",i),()=>{e.removeEventListener("pointerdown",i),e.removeEventListener("keydown",i)}};function mRe(){return e=>{const{ownerDocument:t}=e,{defaultView:n}=t;let o=null;function r(i){i.defaultPrevented||i.target!==e&&i.target.contains(e)&&(o=e.getAttribute("contenteditable"),e.setAttribute("contenteditable","false"),n.getSelection().removeAllRanges())}function s(){o!==null&&(e.setAttribute("contenteditable",o),o=null)}return n.addEventListener("pointerdown",r),n.addEventListener("pointerup",s),()=>{n.removeEventListener("pointerdown",r),n.removeEventListener("pointerup",s)}}}const gRe=[aRe,cRe,lRe,uRe,bRe,hRe,mRe];function MRe(e){const t=x.useRef(e);x.useInsertionEffect(()=>{t.current=e});const n=x.useMemo(()=>gRe.map(o=>o(t)),[t]);return Mn(o=>{const r=n.map(s=>s(o));return()=>{r.forEach(s=>s())}},[n])}function o1e({value:e="",selectionStart:t,selectionEnd:n,placeholder:o,onSelectionChange:r,preserveWhiteSpace:s,onChange:i,__unstableDisableFormats:c,__unstableIsSelected:l,__unstableDependencies:u=[],__unstableAfterParse:d,__unstableBeforeSerialize:p,__unstableAddInvisibleFormats:f}){const b=Fn(),[,h]=x.useReducer(()=>({})),g=x.useRef();function z(){const{ownerDocument:{defaultView:T}}=g.current,E=T.getSelection(),B=E.rangeCount>0?E.getRangeAt(0):null;return eo({element:g.current,range:B,__unstableIsEditableTree:!0})}function A(T,{domOnly:E}={}){Gqe({value:T,current:g.current,prepareEditableTree:f,__unstableDomOnly:E,placeholder:o})}const _=x.useRef(e),v=x.useRef();function M(){_.current=e,v.current=e,e instanceof Xo||(v.current=e?Xo.fromHTMLString(e,{preserveWhiteSpace:s}):Xo.empty()),v.current={text:v.current.text,formats:v.current.formats,replacements:v.current.replacements},c&&(v.current.formats=Array(e.length),v.current.replacements=Array(e.length)),d&&(v.current.formats=d(v.current)),v.current.start=t,v.current.end=n}const y=x.useRef(!1);v.current?(t!==v.current.start||n!==v.current.end)&&(y.current=l,v.current={...v.current,start:t,end:n,activeFormats:void 0}):(y.current=l,M());function k(T){if(v.current=T,A(T),c)_.current=T.text;else{const I=p?p(T):T.formats;T={...T,formats:I},typeof e=="string"?_.current=T0({value:T,preserveWhiteSpace:s}):_.current=new Xo(T)}const{start:E,end:B,formats:N,text:j}=v.current;b.batch(()=>{r(E,B),i(_.current,{__unstableFormats:N,__unstableText:j})}),h()}function S(){M(),A(v.current)}const C=x.useRef(!1);x.useLayoutEffect(()=>{C.current&&e!==_.current&&(S(),h())},[e]),x.useLayoutEffect(()=>{y.current&&(g.current.ownerDocument.activeElement!==g.current&&g.current.focus(),A(v.current),y.current=!1)},[y.current]);const R=xn([g,sRe(),iRe({record:v}),MRe({record:v,handleChange:k,applyRecord:A,createRecord:z,isSelected:l,onSelectionChange:r,forceRender:h}),Mn(()=>{S(),C.current=!0},[o,...u])]);return{value:v.current,getValue:()=>v.current,onChange:k,ref:R}}const e1="id",zRe=["title","excerpt","content"],r1e=[{label:m("Base"),kind:"root",name:"__unstableBase",baseURL:"/",baseURLParams:{_fields:["description","gmt_offset","home","name","site_icon","site_icon_url","site_logo","timezone_string","default_template_part_areas","default_template_types","url"].join(",")},plural:"__unstableBases",syncConfig:{fetch:async()=>Tt({path:"/"}),applyChangesToDoc:(e,t)=>{const n=e.getMap("document");Object.entries(t).forEach(([o,r])=>{n.get(o)!==r&&n.set(o,r)})},fromCRDTDoc:e=>e.getMap("document").toJSON()},syncObjectType:"root/base",getSyncObjectId:()=>"index"},{label:m("Post Type"),name:"postType",kind:"root",key:"slug",baseURL:"/wp/v2/types",baseURLParams:{context:"edit"},plural:"postTypes",syncConfig:{fetch:async e=>Tt({path:`/wp/v2/types/${e}?context=edit`}),applyChangesToDoc:(e,t)=>{const n=e.getMap("document");Object.entries(t).forEach(([o,r])=>{n.get(o)!==r&&n.set(o,r)})},fromCRDTDoc:e=>e.getMap("document").toJSON()},syncObjectType:"root/postType",getSyncObjectId:e=>e},{name:"media",kind:"root",baseURL:"/wp/v2/media",baseURLParams:{context:"edit"},plural:"mediaItems",label:m("Media"),rawAttributes:["caption","title","description"],supportsPagination:!0},{name:"taxonomy",kind:"root",key:"slug",baseURL:"/wp/v2/taxonomies",baseURLParams:{context:"edit"},plural:"taxonomies",label:m("Taxonomy")},{name:"sidebar",kind:"root",baseURL:"/wp/v2/sidebars",baseURLParams:{context:"edit"},plural:"sidebars",transientEdits:{blocks:!0},label:m("Widget areas")},{name:"widget",kind:"root",baseURL:"/wp/v2/widgets",baseURLParams:{context:"edit"},plural:"widgets",transientEdits:{blocks:!0},label:m("Widgets")},{name:"widgetType",kind:"root",baseURL:"/wp/v2/widget-types",baseURLParams:{context:"edit"},plural:"widgetTypes",label:m("Widget types")},{label:m("User"),name:"user",kind:"root",baseURL:"/wp/v2/users",baseURLParams:{context:"edit"},plural:"users"},{name:"comment",kind:"root",baseURL:"/wp/v2/comments",baseURLParams:{context:"edit"},plural:"comments",label:m("Comment")},{name:"menu",kind:"root",baseURL:"/wp/v2/menus",baseURLParams:{context:"edit"},plural:"menus",label:m("Menu")},{name:"menuItem",kind:"root",baseURL:"/wp/v2/menu-items",baseURLParams:{context:"edit"},plural:"menuItems",label:m("Menu Item"),rawAttributes:["title"]},{name:"menuLocation",kind:"root",baseURL:"/wp/v2/menu-locations",baseURLParams:{context:"edit"},plural:"menuLocations",label:m("Menu Location"),key:"name"},{label:m("Global Styles"),name:"globalStyles",kind:"root",baseURL:"/wp/v2/global-styles",baseURLParams:{context:"edit"},plural:"globalStylesVariations",getTitle:e=>e?.title?.rendered||e?.title,getRevisionsUrl:(e,t)=>`/wp/v2/global-styles/${e}/revisions${t?"/"+t:""}`,supportsPagination:!0},{label:m("Themes"),name:"theme",kind:"root",baseURL:"/wp/v2/themes",baseURLParams:{context:"edit"},plural:"themes",key:"stylesheet"},{label:m("Plugins"),name:"plugin",kind:"root",baseURL:"/wp/v2/plugins",baseURLParams:{context:"edit"},plural:"plugins",key:"plugin"},{label:m("Status"),name:"status",kind:"root",baseURL:"/wp/v2/statuses",baseURLParams:{context:"edit"},plural:"statuses",key:"slug"}],s1e=[{kind:"postType",loadEntities:ARe},{kind:"taxonomy",loadEntities:vRe},{kind:"root",name:"site",plural:"sites",loadEntities:xRe}],ORe=(e,t)=>{const n={};return e?.status==="auto-draft"&&(!t.status&&!n.status&&(n.status="draft"),(!t.title||t.title==="Auto Draft")&&!n.title&&(!e?.title||e?.title==="Auto Draft")&&(n.title="")),n},qS=new WeakMap;function yRe(e){const t={...e};for(const[n,o]of Object.entries(e))o instanceof Xo&&(t[n]=o.valueOf());return t}function i1e(e){return e.map(t=>{const{innerBlocks:n,attributes:o,...r}=t;return{...r,attributes:yRe(o),innerBlocks:i1e(n)}})}async function ARe(){const e=await Tt({path:"/wp/v2/types?context=view"});return Object.entries(e??{}).map(([t,n])=>{var o;const r=["wp_template","wp_template_part"].includes(t),s=(o=n?.rest_namespace)!==null&&o!==void 0?o:"wp/v2";return{kind:"postType",baseURL:`/${s}/${n.rest_base}`,baseURLParams:{context:"edit"},name:t,label:n.name,transientEdits:{blocks:!0,selection:!0},mergedEdits:{meta:!0},rawAttributes:zRe,getTitle:i=>{var c;return i?.title?.rendered||i?.title||(r?Lre((c=i.slug)!==null&&c!==void 0?c:""):String(i.id))},__unstablePrePersist:r?void 0:ORe,__unstable_rest_base:n.rest_base,syncConfig:{fetch:async i=>Tt({path:`/${s}/${n.rest_base}/${i}?context=edit`}),applyChangesToDoc:(i,c)=>{const l=i.getMap("document");Object.entries(c).forEach(([u,d])=>{typeof d!="function"&&(u==="blocks"&&(qS.has(d)||qS.set(d,i1e(d)),d=qS.get(d)),l.get(u)!==d&&l.set(u,d))})},fromCRDTDoc:i=>i.getMap("document").toJSON()},syncObjectType:"postType/"+n.name,getSyncObjectId:i=>i,supportsPagination:!0,getRevisionsUrl:(i,c)=>`/${s}/${n.rest_base}/${i}/revisions${c?"/"+c:""}`,revisionKey:r?"wp_id":e1}})}async function vRe(){const e=await Tt({path:"/wp/v2/taxonomies?context=view"});return Object.entries(e??{}).map(([t,n])=>{var o;return{kind:"taxonomy",baseURL:`/${(o=n?.rest_namespace)!==null&&o!==void 0?o:"wp/v2"}/${n.rest_base}`,baseURLParams:{context:"edit"},name:t,label:n.name}})}async function xRe(){var e;const t={label:m("Site"),name:"site",kind:"root",baseURL:"/wp/v2/settings",syncConfig:{fetch:async()=>Tt({path:"/wp/v2/settings"}),applyChangesToDoc:(r,s)=>{const i=r.getMap("document");Object.entries(s).forEach(([c,l])=>{i.get(c)!==l&&i.set(c,l)})},fromCRDTDoc:r=>r.getMap("document").toJSON()},syncObjectType:"root/site",getSyncObjectId:()=>"index",meta:{}},n=await Tt({path:t.baseURL,method:"OPTIONS"}),o={};return Object.entries((e=n?.schema?.properties)!==null&&e!==void 0?e:{}).forEach(([r,s])=>{typeof s=="object"&&s.title&&(o[r]=s.title)}),[{...t,meta:{labels:o}}]}const J2=(e,t,n="get")=>{const o=e==="root"?"":k4(e),r=k4(t);return`${n}${o}${r}`};function a1e(e){const{query:t}=e;return t?jh(t).context:"default"}function wRe(e,t,n,o){var r;if(n===1&&o===-1)return t;const i=(n-1)*o,c=Math.max((r=e?.length)!==null&&r!==void 0?r:0,i+t.length),l=new Array(c);for(let u=0;u<c;u++){const d=u>=i&&u<i+o;l[u]=d?t[u-i]:e?.[u]}return l}function c1e(e,t){return Object.fromEntries(Object.entries(e).filter(([n])=>!t.some(o=>Number.isInteger(o)?o===+n:o===n)))}function _Re(e={},t){switch(t.type){case"RECEIVE_ITEMS":{const n=a1e(t),o=t.key||e1;return{...e,[n]:{...e[n],...t.items.reduce((r,s)=>{const i=s?.[o];return r[i]=tqe(e?.[n]?.[i],s),r},{})}}}case"REMOVE_ITEMS":return Object.fromEntries(Object.entries(e).map(([n,o])=>[n,c1e(o,t.itemIds)]))}return e}function kRe(e={},t){switch(t.type){case"RECEIVE_ITEMS":{const n=a1e(t),{query:o,key:r=e1}=t,s=o?jh(o):{},i=!o||!Array.isArray(s.fields);return{...e,[n]:{...e[n],...t.items.reduce((c,l)=>{const u=l?.[r];return c[u]=e?.[n]?.[u]||i,c},{})}}}case"REMOVE_ITEMS":return Object.fromEntries(Object.entries(e).map(([n,o])=>[n,c1e(o,t.itemIds)]))}return e}const SRe=Co([I0e(e=>"query"in e),D0e(e=>e.query?{...e,...jh(e.query)}:e),tU("context"),tU("stableKey")])((e={},t)=>{const{type:n,page:o,perPage:r,key:s=e1}=t;return n!=="RECEIVE_ITEMS"?e:{itemIds:wRe(e?.itemIds||[],t.items.map(i=>i?.[s]).filter(Boolean),o,r),meta:t.meta}}),CRe=(e={},t)=>{switch(t.type){case"RECEIVE_ITEMS":return SRe(e,t);case"REMOVE_ITEMS":const n=t.itemIds.reduce((o,r)=>(o[r]=!0,o),{});return Object.fromEntries(Object.entries(e).map(([o,r])=>[o,Object.fromEntries(Object.entries(r).map(([s,i])=>[s,{...i,itemIds:i.itemIds.filter(c=>!n[c])}]))]));default:return e}},dU=J0({items:_Re,itemIsComplete:kRe,queries:CRe});function qRe(e={},t){switch(t.type){case"RECEIVE_TERMS":return{...e,[t.taxonomy]:t.terms}}return e}function RRe(e={byId:{},queries:{}},t){switch(t.type){case"RECEIVE_USER_QUERY":return{byId:{...e.byId,...t.users.reduce((n,o)=>({...n,[o.id]:o}),{})},queries:{...e.queries,[t.queryID]:t.users.map(n=>n.id)}}}return e}function TRe(e={},t){switch(t.type){case"RECEIVE_CURRENT_USER":return t.currentUser}return e}function ERe(e=[],t){switch(t.type){case"RECEIVE_TAXONOMIES":return t.taxonomies}return e}function WRe(e=void 0,t){switch(t.type){case"RECEIVE_CURRENT_THEME":return t.currentTheme.stylesheet}return e}function NRe(e=void 0,t){switch(t.type){case"RECEIVE_CURRENT_GLOBAL_STYLES_ID":return t.id}return e}function BRe(e={},t){switch(t.type){case"RECEIVE_THEME_GLOBAL_STYLES":return{...e,[t.stylesheet]:t.globalStyles}}return e}function LRe(e={},t){switch(t.type){case"RECEIVE_THEME_GLOBAL_STYLE_VARIATIONS":return{...e,[t.stylesheet]:t.variations}}return e}const PRe=e=>(t,n)=>{if(n.type==="UNDO"||n.type==="REDO"){const{record:o}=n;let r=t;return o.forEach(({id:{kind:s,name:i,recordId:c},changes:l})=>{r=e(r,{type:"EDIT_ENTITY_RECORD",kind:s,name:i,recordId:c,edits:Object.entries(l).reduce((u,[d,p])=>(u[d]=n.type==="UNDO"?p.from:p.to,u),{})})}),r}return e(t,n)};function jRe(e){return Co([PRe,I0e(t=>t.name&&t.kind&&t.name===e.name&&t.kind===e.kind),D0e(t=>({key:e.key||e1,...t}))])(J0({queriedData:dU,edits:(t={},n)=>{var o;switch(n.type){case"RECEIVE_ITEMS":if(((o=n?.query?.context)!==null&&o!==void 0?o:"default")!=="default")return t;const s={...t};for(const c of n.items){const l=c?.[n.key],u=s[l];if(!u)continue;const d=Object.keys(u).reduce((p,f)=>{var b;return!N0(u[f],(b=c[f]?.raw)!==null&&b!==void 0?b:c[f])&&(!n.persistedEdits||!N0(u[f],n.persistedEdits[f]))&&(p[f]=u[f]),p},{});Object.keys(d).length?s[l]=d:delete s[l]}return s;case"EDIT_ENTITY_RECORD":const i={...t[n.recordId],...n.edits};return Object.keys(i).forEach(c=>{i[c]===void 0&&delete i[c]}),{...t,[n.recordId]:i}}return t},saving:(t={},n)=>{switch(n.type){case"SAVE_ENTITY_RECORD_START":case"SAVE_ENTITY_RECORD_FINISH":return{...t,[n.recordId]:{pending:n.type==="SAVE_ENTITY_RECORD_START",error:n.error,isAutosave:n.isAutosave}}}return t},deleting:(t={},n)=>{switch(n.type){case"DELETE_ENTITY_RECORD_START":case"DELETE_ENTITY_RECORD_FINISH":return{...t,[n.recordId]:{pending:n.type==="DELETE_ENTITY_RECORD_START",error:n.error}}}return t},revisions:(t={},n)=>{if(n.type==="RECEIVE_ITEM_REVISIONS"){const o=n.recordKey;delete n.recordKey;const r=dU(t[o],{...n,type:"RECEIVE_ITEMS"});return{...t,[o]:r}}return n.type==="REMOVE_ITEMS"?Object.fromEntries(Object.entries(t).filter(([o])=>!n.itemIds.some(r=>Number.isInteger(r)?r===+o:r===o))):t}}))}function IRe(e=r1e,t){switch(t.type){case"ADD_ENTITIES":return[...e,...t.entities]}return e}const DRe=(e={},t)=>{const n=IRe(e.config,t);let o=e.reducer;if(!o||n!==e.config){const s=n.reduce((i,c)=>{const{kind:l}=c;return i[l]||(i[l]=[]),i[l].push(c),i},{});o=J0(Object.entries(s).reduce((i,[c,l])=>{const u=J0(l.reduce((d,p)=>({...d,[p.name]:jRe(p)}),{}));return i[c]=u,i},{}))}const r=o(e.records,t);return r===e.records&&n===e.config&&o===e.reducer?e:{reducer:o,records:r,config:n}};function FRe(e=FSe()){return e}function $Re(e={},t){switch(t.type){case"EDIT_ENTITY_RECORD":case"UNDO":case"REDO":return{}}return e}function VRe(e={},t){switch(t.type){case"RECEIVE_EMBED_PREVIEW":const{url:n,preview:o}=t;return{...e,[n]:o}}return e}function HRe(e={},t){switch(t.type){case"RECEIVE_USER_PERMISSION":return{...e,[t.key]:t.isAllowed};case"RECEIVE_USER_PERMISSIONS":return{...e,...t.permissions}}return e}function URe(e={},t){switch(t.type){case"RECEIVE_AUTOSAVES":const{postId:n,autosaves:o}=t;return{...e,[n]:o}}return e}function XRe(e=[],t){switch(t.type){case"RECEIVE_BLOCK_PATTERNS":return t.patterns}return e}function GRe(e=[],t){switch(t.type){case"RECEIVE_BLOCK_PATTERN_CATEGORIES":return t.categories}return e}function KRe(e=[],t){switch(t.type){case"RECEIVE_USER_PATTERN_CATEGORIES":return t.patternCategories}return e}function YRe(e=null,t){switch(t.type){case"RECEIVE_NAVIGATION_FALLBACK_ID":return t.fallbackId}return e}function ZRe(e={},t){switch(t.type){case"RECEIVE_THEME_GLOBAL_STYLE_REVISIONS":return{...e,[t.currentId]:t.revisions}}return e}function QRe(e={},t){switch(t.type){case"RECEIVE_DEFAULT_TEMPLATE":return{...e,[JSON.stringify(t.query)]:t.templateId}}return e}function JRe(e={},t){switch(t.type){case"RECEIVE_REGISTERED_POST_META":return{...e,[t.postType]:t.registeredPostMeta}}return e}const eTe=J0({terms:qRe,users:RRe,currentTheme:WRe,currentGlobalStylesId:NRe,currentUser:TRe,themeGlobalStyleVariations:LRe,themeBaseGlobalStyles:BRe,themeGlobalStyleRevisions:ZRe,taxonomies:ERe,entities:DRe,editsReference:$Re,undoManager:FRe,embedPreviews:VRe,userPermissions:HRe,autosaves:URe,blockPatterns:XRe,blockPatternCategories:GRe,userPatternCategories:KRe,navigationFallbackId:YRe,defaultTemplates:QRe,registeredPostMeta:JRe}),No="core",tTe={},nTe=At(e=>(t,n)=>e(No).isResolving("getEmbedPreview",[n]));function oTe(e,t){Ke("select( 'core' ).getAuthors()",{since:"5.9",alternative:"select( 'core' ).getUsers({ who: 'authors' })"});const n=tn("/wp/v2/users/?who=authors&per_page=100",t);return l1e(e,n)}function rTe(e){return e.currentUser}const l1e=It((e,t)=>{var n;return((n=e.users.queries[t])!==null&&n!==void 0?n:[]).map(r=>e.users.byId[r])},(e,t)=>[e.users.queries[t],e.users.byId]);function sTe(e,t){return Ke("wp.data.select( 'core' ).getEntitiesByKind()",{since:"6.0",alternative:"wp.data.select( 'core' ).getEntitiesConfig()"}),u1e(e,t)}const u1e=It((e,t)=>e.entities.config.filter(n=>n.kind===t),(e,t)=>e.entities.config);function iTe(e,t,n){return Ke("wp.data.select( 'core' ).getEntity()",{since:"6.0",alternative:"wp.data.select( 'core' ).getEntityConfig()"}),Dh(e,t,n)}function Dh(e,t,n){return e.entities.config?.find(o=>o.kind===t&&o.name===n)}const Zd=It((e,t,n,o,r)=>{var s;const i=e.entities.records?.[t]?.[n]?.queriedData;if(!i)return;const c=(s=r?.context)!==null&&s!==void 0?s:"default";if(r===void 0)return i.itemIsComplete[c]?.[o]?i.items[c][o]:void 0;const l=i.items[c]?.[o];if(l&&r._fields){var u;const d={},p=(u=Md(r._fields))!==null&&u!==void 0?u:[];for(let f=0;f<p.length;f++){const b=p[f].split(".");let h=l;b.forEach(g=>{h=h?.[g]}),B5(d,b,h)}return d}return l},(e,t,n,o,r)=>{var s;const i=(s=r?.context)!==null&&s!==void 0?s:"default";return[e.entities.records?.[t]?.[n]?.queriedData?.items[i]?.[o],e.entities.records?.[t]?.[n]?.queriedData?.itemIsComplete[i]?.[o]]});Zd.__unstableNormalizeArgs=e=>{const t=[...e],n=t?.[2];return t[2]=sqe(n)?Number(n):n,t};function aTe(e,t,n,o){return Zd(e,t,n,o)}const d1e=It((e,t,n,o)=>{const r=Zd(e,t,n,o);return r&&Object.keys(r).reduce((s,i)=>{if(oqe(Dh(e,t,n),i)){var c;s[i]=(c=r[i]?.raw)!==null&&c!==void 0?c:r[i]}else s[i]=r[i];return s},{})},(e,t,n,o,r)=>{var s;const i=(s=r?.context)!==null&&s!==void 0?s:"default";return[e.entities.config,e.entities.records?.[t]?.[n]?.queriedData?.items[i]?.[o],e.entities.records?.[t]?.[n]?.queriedData?.itemIsComplete[i]?.[o]]});function cTe(e,t,n,o){return Array.isArray(nB(e,t,n,o))}const nB=(e,t,n,o)=>{const r=e.entities.records?.[t]?.[n]?.queriedData;return r?V0e(r,o):null},lTe=(e,t,n,o)=>{const r=e.entities.records?.[t]?.[n]?.queriedData;return r?H0e(r,o):null},uTe=(e,t,n,o)=>{const r=e.entities.records?.[t]?.[n]?.queriedData;if(!r)return null;if(o.per_page===-1)return 1;const s=H0e(r,o);return s&&(o.per_page?Math.ceil(s/o.per_page):uqe(r,o))},dTe=It(e=>{const{entities:{records:t}}=e,n=[];return Object.keys(t).forEach(o=>{Object.keys(t[o]).forEach(r=>{const s=Object.keys(t[o][r].edits).filter(i=>Zd(e,o,r,i)&&f1e(e,o,r,i));if(s.length){const i=Dh(e,o,r);s.forEach(c=>{const l=rB(e,o,r,c);n.push({key:l?l[i.key||e1]:void 0,title:i?.getTitle?.(l)||"",name:r,kind:o})})}})}),n},e=>[e.entities.records]),pTe=It(e=>{const{entities:{records:t}}=e,n=[];return Object.keys(t).forEach(o=>{Object.keys(t[o]).forEach(r=>{const s=Object.keys(t[o][r].saving).filter(i=>sB(e,o,r,i));if(s.length){const i=Dh(e,o,r);s.forEach(c=>{const l=rB(e,o,r,c);n.push({key:l?l[i.key||e1]:void 0,title:i?.getTitle?.(l)||"",name:r,kind:o})})}})}),n},e=>[e.entities.records]);function oB(e,t,n,o){return e.entities.records?.[t]?.[n]?.edits?.[o]}const p1e=It((e,t,n,o)=>{const{transientEdits:r}=Dh(e,t,n)||{},s=oB(e,t,n,o)||{};return r?Object.keys(s).reduce((i,c)=>(r[c]||(i[c]=s[c]),i),{}):s},(e,t,n,o)=>[e.entities.config,e.entities.records?.[t]?.[n]?.edits?.[o]]);function f1e(e,t,n,o){return sB(e,t,n,o)||Object.keys(p1e(e,t,n,o)).length>0}const rB=It((e,t,n,o)=>{const r=d1e(e,t,n,o),s=oB(e,t,n,o);return!r&&!s?!1:{...r,...s}},(e,t,n,o,r)=>{var s;const i=(s=r?.context)!==null&&s!==void 0?s:"default";return[e.entities.config,e.entities.records?.[t]?.[n]?.queriedData.items[i]?.[o],e.entities.records?.[t]?.[n]?.queriedData.itemIsComplete[i]?.[o],e.entities.records?.[t]?.[n]?.edits?.[o]]});function fTe(e,t,n,o){var r;const{pending:s,isAutosave:i}=(r=e.entities.records?.[t]?.[n]?.saving?.[o])!==null&&r!==void 0?r:{};return!!(s&&i)}function sB(e,t,n,o){var r;return(r=e.entities.records?.[t]?.[n]?.saving?.[o]?.pending)!==null&&r!==void 0?r:!1}function bTe(e,t,n,o){var r;return(r=e.entities.records?.[t]?.[n]?.deleting?.[o]?.pending)!==null&&r!==void 0?r:!1}function hTe(e,t,n,o){return e.entities.records?.[t]?.[n]?.saving?.[o]?.error}function mTe(e,t,n,o){return e.entities.records?.[t]?.[n]?.deleting?.[o]?.error}function gTe(e){Ke("select( 'core' ).getUndoEdit()",{since:"6.3"})}function MTe(e){Ke("select( 'core' ).getRedoEdit()",{since:"6.3"})}function zTe(e){return e.undoManager.hasUndo()}function OTe(e){return e.undoManager.hasRedo()}function P5(e){return e.currentTheme?Zd(e,"root","theme",e.currentTheme):null}function b1e(e){return e.currentGlobalStylesId}function yTe(e){var t;return(t=P5(e)?.theme_supports)!==null&&t!==void 0?t:tTe}function ATe(e,t){return e.embedPreviews[t]}function vTe(e,t){const n=e.embedPreviews[t],o='<a href="'+t+'">'+t+"</a>";return n?n.html===o:!1}function iB(e,t,n,o){if(typeof n=="object"&&(!n.kind||!n.name))return!1;const s=L5(t,n,o);return e.userPermissions[s]}function xTe(e,t,n,o){return Ke("wp.data.select( 'core' ).canUserEditEntityRecord()",{since:"6.7",alternative:"wp.data.select( 'core' ).canUser( 'update', { kind, name, id } )"}),iB(e,"update",{kind:t,name:n,id:o})}function wTe(e,t,n){return e.autosaves[n]}function _Te(e,t,n,o){return o===void 0?void 0:e.autosaves[n]?.find(s=>s.author===o)}const kTe=At(e=>(t,n,o)=>e(No).hasFinishedResolution("getAutosaves",[n,o]));function STe(e){return e.editsReference}function CTe(e){const t=P5(e);return t?e.themeBaseGlobalStyles[t.stylesheet]:null}function qTe(e){const t=P5(e);return t?e.themeGlobalStyleVariations[t.stylesheet]:null}function RTe(e){return e.blockPatterns}function TTe(e){return e.blockPatternCategories}function ETe(e){return e.userPatternCategories}function WTe(e){Ke("select( 'core' ).getCurrentThemeGlobalStylesRevisions()",{since:"6.5.0",alternative:"select( 'core' ).getRevisions( 'root', 'globalStyles', ${ recordKey } )"});const t=b1e(e);return t?e.themeGlobalStyleRevisions[t]:null}function h1e(e,t){return e.defaultTemplates[JSON.stringify(t)]}const NTe=(e,t,n,o,r)=>{const s=e.entities.records?.[t]?.[n]?.revisions?.[o];return s?V0e(s,r):null},BTe=It((e,t,n,o,r,s)=>{var i;const c=e.entities.records?.[t]?.[n]?.revisions?.[o];if(!c)return;const l=(i=s?.context)!==null&&i!==void 0?i:"default";if(s===void 0)return c.itemIsComplete[l]?.[r]?c.items[l][r]:void 0;const u=c.items[l]?.[r];if(u&&s._fields){var d;const p={},f=(d=Md(s._fields))!==null&&d!==void 0?d:[];for(let b=0;b<f.length;b++){const h=f[b].split(".");let g=u;h.forEach(z=>{g=g?.[z]}),B5(p,h,g)}return p}return u},(e,t,n,o,r,s)=>{var i;const c=(i=s?.context)!==null&&i!==void 0?i:"default";return[e.entities.records?.[t]?.[n]?.revisions?.[o]?.items?.[c]?.[r],e.entities.records?.[t]?.[n]?.revisions?.[o]?.itemIsComplete?.[c]?.[r]]}),LTe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetCurrentGlobalStylesId:b1e,__experimentalGetCurrentThemeBaseGlobalStyles:CTe,__experimentalGetCurrentThemeGlobalStylesVariations:qTe,__experimentalGetDirtyEntityRecords:dTe,__experimentalGetEntitiesBeingSaved:pTe,__experimentalGetEntityRecordNoResolver:aTe,canUser:iB,canUserEditEntityRecord:xTe,getAuthors:oTe,getAutosave:_Te,getAutosaves:wTe,getBlockPatternCategories:TTe,getBlockPatterns:RTe,getCurrentTheme:P5,getCurrentThemeGlobalStylesRevisions:WTe,getCurrentUser:rTe,getDefaultTemplateId:h1e,getEditedEntityRecord:rB,getEmbedPreview:ATe,getEntitiesByKind:sTe,getEntitiesConfig:u1e,getEntity:iTe,getEntityConfig:Dh,getEntityRecord:Zd,getEntityRecordEdits:oB,getEntityRecordNonTransientEdits:p1e,getEntityRecords:nB,getEntityRecordsTotalItems:lTe,getEntityRecordsTotalPages:uTe,getLastEntityDeleteError:mTe,getLastEntitySaveError:hTe,getRawEntityRecord:d1e,getRedoEdit:MTe,getReferenceByDistinctEdits:STe,getRevision:BTe,getRevisions:NTe,getThemeSupports:yTe,getUndoEdit:gTe,getUserPatternCategories:ETe,getUserQueryResults:l1e,hasEditsForEntityRecord:f1e,hasEntityRecords:cTe,hasFetchedAutosaves:kTe,hasRedo:OTe,hasUndo:zTe,isAutosavingEntityRecord:fTe,isDeletingEntityRecord:bTe,isPreviewEmbedFallback:vTe,isRequestingEmbedPreview:nTe,isSavingEntityRecord:sB},Symbol.toStringTag,{value:"Module"})),{lock:PTe,unlock:eh}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/core-data");function jTe(e){return e.undoManager}function ITe(e){return e.navigationFallbackId}const DTe=At(e=>It((t,n)=>e(No).getBlockPatterns().filter(({postTypes:o})=>!o||Array.isArray(o)&&o.includes(n)),()=>[e(No).getBlockPatterns()])),m1e=At(e=>It((t,n,o,r)=>(Array.isArray(r)?r:[r]).map(i=>({delete:e(No).canUser("delete",{kind:n,name:o,id:i}),update:e(No).canUser("update",{kind:n,name:o,id:i})})),t=>[t.userPermissions]));function FTe(e,t,n,o){return m1e(e,t,n,o)[0]}function $Te(e,t){var n;return(n=e.registeredPostMeta?.[t])!==null&&n!==void 0?n:{}}function g1e(e){return!e||!["number","string"].includes(typeof e)||Number(e)===0?null:e.toString()}const VTe=At(e=>It(()=>{if(!e(No).canUser("read",{kind:"root",name:"site"}))return null;const n=e(No).getEntityRecord("root","site");if(!n)return null;const o=n?.show_on_front==="page"?g1e(n.page_on_front):null;return o?{postType:"page",postId:o}:{postType:"wp_template",postId:e(No).getDefaultTemplateId({slug:"front-page"})}},t=>[iB(t,"read",{kind:"root",name:"site"})&&Zd(t,"root","site"),h1e(t,{slug:"front-page"})])),HTe=At(e=>()=>{if(!e(No).canUser("read",{kind:"root",name:"site"}))return null;const n=e(No).getEntityRecord("root","site");return n?.show_on_front==="page"?g1e(n.page_for_posts):null}),UTe=At(e=>(t,n,o)=>{const r=eh(e(No)).getHomePage();if(!r)return;if(n==="page"&&n===r?.postType&&o.toString()===r?.postId){const u=e(No).getEntityRecords("postType","wp_template",{per_page:-1});if(!u)return;const d=u.find(({slug:p})=>p==="front-page")?.id;if(d)return d}const s=e(No).getEditedEntityRecord("postType",n,o);if(!s)return;const i=eh(e(No)).getPostsPageId();if(n==="page"&&i===o.toString())return e(No).getDefaultTemplateId({slug:"home"});const c=s.template;if(c){const u=e(No).getEntityRecords("postType","wp_template",{per_page:-1})?.find(({slug:d})=>d===c);if(u)return u.id}let l;return s.slug?l=n==="page"?`${n}-${s.slug}`:`single-${n}-${s.slug}`:l=n==="page"?"page":`single-${n}`,e(No).getDefaultTemplateId({slug:l})}),XTe=Object.freeze(Object.defineProperty({__proto__:null,getBlockPatternsForPostType:DTe,getEntityRecordPermissions:FTe,getEntityRecordsPermissions:m1e,getHomePage:VTe,getNavigationFallbackId:ITe,getPostsPageId:HTe,getRegisteredPostMeta:$Te,getTemplateId:UTe,getUndoManager:jTe},Symbol.toStringTag,{value:"Module"}));let pA;const GTe=new Uint8Array(16);function KTe(){if(!pA&&(pA=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!pA))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return pA(GTe)}const $0=[];for(let e=0;e<256;++e)$0.push((e+256).toString(16).slice(1));function YTe(e,t=0){return $0[e[t+0]]+$0[e[t+1]]+$0[e[t+2]]+$0[e[t+3]]+"-"+$0[e[t+4]]+$0[e[t+5]]+"-"+$0[e[t+6]]+$0[e[t+7]]+"-"+$0[e[t+8]]+$0[e[t+9]]+"-"+$0[e[t+10]]+$0[e[t+11]]+$0[e[t+12]]+$0[e[t+13]]+$0[e[t+14]]+$0[e[t+15]]}const ZTe=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),pU={randomUUID:ZTe};function Is(e,t,n){if(pU.randomUUID&&!t&&!e)return pU.randomUUID();e=e||{};const o=e.random||(e.rng||KTe)();return o[6]=o[6]&15|64,o[8]=o[8]&63|128,YTe(o)}let RS=null;function QTe(e,t){const n=[...e],o=[];for(;n.length;)o.push(n.splice(0,t));return o}async function JTe(e){RS===null&&(RS=(await Tt({path:"/batch/v1",method:"OPTIONS"})).endpoints[0].args.requests.maxItems);const t=[];for(const n of QTe(e,RS)){const o=await Tt({path:"/batch/v1",method:"POST",data:{validation:"require-all-validate",requests:n.map(s=>({path:s.path,body:s.data,method:s.method,headers:s.headers}))}});let r;o.failed?r=o.responses.map(s=>({error:s?.body})):r=o.responses.map(s=>{const i={};return s.status>=200&&s.status<300?i.output=s.body:i.error=s.body,i}),t.push(...r)}return t}function eEe(e=JTe){let t=0,n=[];const o=new tEe;return{add(r){const s=++t;o.add(s);const i=c=>new Promise((l,u)=>{n.push({input:c,resolve:l,reject:u}),o.delete(s)});return typeof r=="function"?Promise.resolve(r(i)).finally(()=>{o.delete(s)}):i(r)},async run(){o.size&&await new Promise(i=>{const c=o.subscribe(()=>{o.size||(c(),i(void 0))})});let r;try{if(r=await e(n.map(({input:i})=>i)),r.length!==n.length)throw new Error("run: Array returned by processor must be same size as input array.")}catch(i){for(const{reject:c}of n)c(i);throw i}let s=!0;return r.forEach((i,c)=>{const l=n[c];if(i?.error)l?.reject(i.error),s=!1;else{var u;l?.resolve((u=i?.output)!==null&&u!==void 0?u:i)}}),n=[],s}}}class tEe{constructor(...t){this.set=new Set(...t),this.subscribers=new Set}get size(){return this.set.size}add(t){return this.set.add(t),this.subscribers.forEach(n=>n()),this}delete(t){const n=this.set.delete(t);return this.subscribers.forEach(o=>o()),n}subscribe(t){return this.subscribers.add(t),()=>{this.subscribers.delete(t)}}}const fU=globalThis||void 0||self,fs=()=>new Map,qE=e=>{const t=fs();return e.forEach((n,o)=>{t.set(o,n)}),t},w1=(e,t,n)=>{let o=e.get(t);return o===void 0&&e.set(t,o=n()),o},nEe=(e,t)=>{const n=[];for(const[o,r]of e)n.push(t(r,o));return n},oEe=(e,t)=>{for(const[n,o]of e)if(t(o,n))return!0;return!1},zd=()=>new Set,TS=e=>e[e.length-1],rEe=(e,t)=>{for(let n=0;n<t.length;n++)e.push(t[n])},Rl=Array.from,sEe=Array.isArray;class iEe{constructor(){this._observers=fs()}on(t,n){return w1(this._observers,t,zd).add(n),n}once(t,n){const o=(...r)=>{this.off(t,o),n(...r)};this.on(t,o)}off(t,n){const o=this._observers.get(t);o!==void 0&&(o.delete(n),o.size===0&&this._observers.delete(t))}emit(t,n){return Rl((this._observers.get(t)||fs()).values()).forEach(o=>o(...n))}destroy(){this._observers=fs()}}class d3{constructor(){this._observers=fs()}on(t,n){w1(this._observers,t,zd).add(n)}once(t,n){const o=(...r)=>{this.off(t,o),n(...r)};this.on(t,o)}off(t,n){const o=this._observers.get(t);o!==void 0&&(o.delete(n),o.size===0&&this._observers.delete(t))}emit(t,n){return Rl((this._observers.get(t)||fs()).values()).forEach(o=>o(...n))}destroy(){this._observers=fs()}}const Oc=Math.floor,Bv=Math.abs,aEe=Math.log10,aB=(e,t)=>e<t?e:t,$f=(e,t)=>e>t?e:t,M1e=e=>e!==0?e<0:1/e<0,bU=1,hU=2,ES=4,WS=8,VM=32,Ol=64,Ns=128,j5=31,RE=63,ef=127,cEe=2147483647,z1e=Number.MAX_SAFE_INTEGER,lEe=Number.isInteger||(e=>typeof e=="number"&&isFinite(e)&&Oc(e)===e),uEe=String.fromCharCode,dEe=e=>e.toLowerCase(),pEe=/^\s*/g,fEe=e=>e.replace(pEe,""),bEe=/([A-Z])/g,mU=(e,t)=>fEe(e.replace(bEe,n=>`${t}${dEe(n)}`)),hEe=e=>{const t=unescape(encodeURIComponent(e)),n=t.length,o=new Uint8Array(n);for(let r=0;r<n;r++)o[r]=t.codePointAt(r);return o},HM=typeof TextEncoder<"u"?new TextEncoder:null,mEe=e=>HM.encode(e),TE=HM?mEe:hEe;let OM=typeof TextDecoder>"u"?null:new TextDecoder("utf-8",{fatal:!0,ignoreBOM:!0});OM&&OM.decode(new Uint8Array).length===1&&(OM=null);class p3{constructor(){this.cpos=0,this.cbuf=new Uint8Array(100),this.bufs=[]}}const k0=()=>new p3,gEe=e=>{let t=e.cpos;for(let n=0;n<e.bufs.length;n++)t+=e.bufs[n].length;return t},Sr=e=>{const t=new Uint8Array(gEe(e));let n=0;for(let o=0;o<e.bufs.length;o++){const r=e.bufs[o];t.set(r,n),n+=r.length}return t.set(new Uint8Array(e.cbuf.buffer,0,e.cpos),n),t},MEe=(e,t)=>{const n=e.cbuf.length;n-e.cpos<t&&(e.bufs.push(new Uint8Array(e.cbuf.buffer,0,e.cpos)),e.cbuf=new Uint8Array($f(n,t)*2),e.cpos=0)},x0=(e,t)=>{const n=e.cbuf.length;e.cpos===n&&(e.bufs.push(e.cbuf),e.cbuf=new Uint8Array(n*2),e.cpos=0),e.cbuf[e.cpos++]=t},UM=x0,sn=(e,t)=>{for(;t>ef;)x0(e,Ns|ef&t),t=Oc(t/128);x0(e,ef&t)},cB=(e,t)=>{const n=M1e(t);for(n&&(t=-t),x0(e,(t>RE?Ns:0)|(n?Ol:0)|RE&t),t=Oc(t/64);t>0;)x0(e,(t>ef?Ns:0)|ef&t),t=Oc(t/128)},EE=new Uint8Array(3e4),zEe=EE.length/3,OEe=(e,t)=>{if(t.length<zEe){const n=HM.encodeInto(t,EE).written||0;sn(e,n);for(let o=0;o<n;o++)x0(e,EE[o])}else jr(e,TE(t))},yEe=(e,t)=>{const n=unescape(encodeURIComponent(t)),o=n.length;sn(e,o);for(let r=0;r<o;r++)x0(e,n.codePointAt(r))},uc=HM&&HM.encodeInto?OEe:yEe,I5=(e,t)=>{const n=e.cbuf.length,o=e.cpos,r=aB(n-o,t.length),s=t.length-r;e.cbuf.set(t.subarray(0,r),o),e.cpos+=r,s>0&&(e.bufs.push(e.cbuf),e.cbuf=new Uint8Array($f(n*2,s)),e.cbuf.set(t.subarray(r)),e.cpos=s)},jr=(e,t)=>{sn(e,t.byteLength),I5(e,t)},lB=(e,t)=>{MEe(e,t);const n=new DataView(e.cbuf.buffer,e.cpos,t);return e.cpos+=t,n},AEe=(e,t)=>lB(e,4).setFloat32(0,t,!1),vEe=(e,t)=>lB(e,8).setFloat64(0,t,!1),xEe=(e,t)=>lB(e,8).setBigInt64(0,t,!1),gU=new DataView(new ArrayBuffer(4)),wEe=e=>(gU.setFloat32(0,e),gU.getFloat32(0)===e),th=(e,t)=>{switch(typeof t){case"string":x0(e,119),uc(e,t);break;case"number":lEe(t)&&Bv(t)<=cEe?(x0(e,125),cB(e,t)):wEe(t)?(x0(e,124),AEe(e,t)):(x0(e,123),vEe(e,t));break;case"bigint":x0(e,122),xEe(e,t);break;case"object":if(t===null)x0(e,126);else if(sEe(t)){x0(e,117),sn(e,t.length);for(let n=0;n<t.length;n++)th(e,t[n])}else if(t instanceof Uint8Array)x0(e,116),jr(e,t);else{x0(e,118);const n=Object.keys(t);sn(e,n.length);for(let o=0;o<n.length;o++){const r=n[o];uc(e,r),th(e,t[r])}}break;case"boolean":x0(e,t?120:121);break;default:x0(e,127)}};class MU extends p3{constructor(t){super(),this.w=t,this.s=null,this.count=0}write(t){this.s===t?this.count++:(this.count>0&&sn(this,this.count-1),this.count=1,this.w(this,t),this.s=t)}}const zU=e=>{e.count>0&&(cB(e.encoder,e.count===1?e.s:-e.s),e.count>1&&sn(e.encoder,e.count-2))};class Lv{constructor(){this.encoder=new p3,this.s=0,this.count=0}write(t){this.s===t?this.count++:(zU(this),this.count=1,this.s=t)}toUint8Array(){return zU(this),Sr(this.encoder)}}const OU=e=>{if(e.count>0){const t=e.diff*2+(e.count===1?0:1);cB(e.encoder,t),e.count>1&&sn(e.encoder,e.count-2)}};class NS{constructor(){this.encoder=new p3,this.s=0,this.count=0,this.diff=0}write(t){this.diff===t-this.s?(this.s=t,this.count++):(OU(this),this.count=1,this.diff=t-this.s,this.s=t)}toUint8Array(){return OU(this),Sr(this.encoder)}}class _Ee{constructor(){this.sarr=[],this.s="",this.lensE=new Lv}write(t){this.s+=t,this.s.length>19&&(this.sarr.push(this.s),this.s=""),this.lensE.write(t.length)}toUint8Array(){const t=new p3;return this.sarr.push(this.s),this.s="",uc(t,this.sarr.join("")),I5(t,this.lensE.toUint8Array()),Sr(t)}}const fa=e=>new Error(e),dc=()=>{throw fa("Method unimplemented")},yc=()=>{throw fa("Unexpected case")},O1e=fa("Unexpected end of array"),y1e=fa("Integer out of Range");class D5{constructor(t){this.arr=t,this.pos=0}}const Rc=e=>new D5(e),kEe=e=>e.pos!==e.arr.length,SEe=(e,t)=>{const n=new Uint8Array(e.arr.buffer,e.pos+e.arr.byteOffset,t);return e.pos+=t,n},w0=e=>SEe(e,_n(e)),ff=e=>e.arr[e.pos++],_n=e=>{let t=0,n=1;const o=e.arr.length;for(;e.pos<o;){const r=e.arr[e.pos++];if(t=t+(r&ef)*n,n*=128,r<Ns)return t;if(t>z1e)throw y1e}throw O1e},uB=e=>{let t=e.arr[e.pos++],n=t&RE,o=64;const r=(t&Ol)>0?-1:1;if(!(t&Ns))return r*n;const s=e.arr.length;for(;e.pos<s;){if(t=e.arr[e.pos++],n=n+(t&ef)*o,o*=128,t<Ns)return r*n;if(n>z1e)throw y1e}throw O1e},CEe=e=>{let t=_n(e);if(t===0)return"";{let n=String.fromCodePoint(ff(e));if(--t<100)for(;t--;)n+=String.fromCodePoint(ff(e));else for(;t>0;){const o=t<1e4?t:1e4,r=e.arr.subarray(e.pos,e.pos+o);e.pos+=o,n+=String.fromCodePoint.apply(null,r),t-=o}return decodeURIComponent(escape(n))}},qEe=e=>OM.decode(w0(e)),yl=OM?qEe:CEe,dB=(e,t)=>{const n=new DataView(e.arr.buffer,e.arr.byteOffset+e.pos,t);return e.pos+=t,n},REe=e=>dB(e,4).getFloat32(0,!1),TEe=e=>dB(e,8).getFloat64(0,!1),EEe=e=>dB(e,8).getBigInt64(0,!1),WEe=[e=>{},e=>null,uB,REe,TEe,EEe,e=>!1,e=>!0,yl,e=>{const t=_n(e),n={};for(let o=0;o<t;o++){const r=yl(e);n[r]=nh(e)}return n},e=>{const t=_n(e),n=[];for(let o=0;o<t;o++)n.push(nh(e));return n},w0],nh=e=>WEe[127-ff(e)](e);class yU extends D5{constructor(t,n){super(t),this.reader=n,this.s=null,this.count=0}read(){return this.count===0&&(this.s=this.reader(this),kEe(this)?this.count=_n(this)+1:this.count=-1),this.count--,this.s}}class Pv extends D5{constructor(t){super(t),this.s=0,this.count=0}read(){if(this.count===0){this.s=uB(this);const t=M1e(this.s);this.count=1,t&&(this.s=-this.s,this.count=_n(this)+2)}return this.count--,this.s}}class BS extends D5{constructor(t){super(t),this.s=0,this.count=0,this.diff=0}read(){if(this.count===0){const t=uB(this),n=t&1;this.diff=Oc(t/2),this.count=1,n&&(this.count=_n(this)+2)}return this.s+=this.diff,this.count--,this.s}}class NEe{constructor(t){this.decoder=new Pv(t),this.str=yl(this.decoder),this.spos=0}read(){const t=this.spos+this.decoder.read(),n=this.str.slice(this.spos,t);return this.spos=t,n}}const BEe=crypto.getRandomValues.bind(crypto),LEe=Math.random,A1e=()=>BEe(new Uint32Array(1))[0],PEe="10000000-1000-4000-8000"+-1e11,v1e=()=>PEe.replace(/[018]/g,e=>(e^A1e()&15>>e/4).toString(16)),Tl=Date.now,oh=e=>new Promise(e);Promise.all.bind(Promise);const jEe=e=>Promise.reject(e),pB=e=>Promise.resolve(e);var x1e={},F5={};F5.byteLength=FEe;F5.toByteArray=VEe;F5.fromByteArray=XEe;var rc=[],fi=[],IEe=typeof Uint8Array<"u"?Uint8Array:Array,LS="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(var Fb=0,DEe=LS.length;Fb<DEe;++Fb)rc[Fb]=LS[Fb],fi[LS.charCodeAt(Fb)]=Fb;fi[45]=62;fi[95]=63;function w1e(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");n===-1&&(n=t);var o=n===t?0:4-n%4;return[n,o]}function FEe(e){var t=w1e(e),n=t[0],o=t[1];return(n+o)*3/4-o}function $Ee(e,t,n){return(t+n)*3/4-n}function VEe(e){var t,n=w1e(e),o=n[0],r=n[1],s=new IEe($Ee(e,o,r)),i=0,c=r>0?o-4:o,l;for(l=0;l<c;l+=4)t=fi[e.charCodeAt(l)]<<18|fi[e.charCodeAt(l+1)]<<12|fi[e.charCodeAt(l+2)]<<6|fi[e.charCodeAt(l+3)],s[i++]=t>>16&255,s[i++]=t>>8&255,s[i++]=t&255;return r===2&&(t=fi[e.charCodeAt(l)]<<2|fi[e.charCodeAt(l+1)]>>4,s[i++]=t&255),r===1&&(t=fi[e.charCodeAt(l)]<<10|fi[e.charCodeAt(l+1)]<<4|fi[e.charCodeAt(l+2)]>>2,s[i++]=t>>8&255,s[i++]=t&255),s}function HEe(e){return rc[e>>18&63]+rc[e>>12&63]+rc[e>>6&63]+rc[e&63]}function UEe(e,t,n){for(var o,r=[],s=t;s<n;s+=3)o=(e[s]<<16&16711680)+(e[s+1]<<8&65280)+(e[s+2]&255),r.push(HEe(o));return r.join("")}function XEe(e){for(var t,n=e.length,o=n%3,r=[],s=16383,i=0,c=n-o;i<c;i+=s)r.push(UEe(e,i,i+s>c?c:i+s));return o===1?(t=e[n-1],r.push(rc[t>>2]+rc[t<<4&63]+"==")):o===2&&(t=(e[n-2]<<8)+e[n-1],r.push(rc[t>>10]+rc[t>>4&63]+rc[t<<2&63]+"=")),r.join("")}var fB={};/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */fB.read=function(e,t,n,o,r){var s,i,c=r*8-o-1,l=(1<<c)-1,u=l>>1,d=-7,p=n?r-1:0,f=n?-1:1,b=e[t+p];for(p+=f,s=b&(1<<-d)-1,b>>=-d,d+=c;d>0;s=s*256+e[t+p],p+=f,d-=8);for(i=s&(1<<-d)-1,s>>=-d,d+=o;d>0;i=i*256+e[t+p],p+=f,d-=8);if(s===0)s=1-u;else{if(s===l)return i?NaN:(b?-1:1)*(1/0);i=i+Math.pow(2,o),s=s-u}return(b?-1:1)*i*Math.pow(2,s-o)};fB.write=function(e,t,n,o,r,s){var i,c,l,u=s*8-r-1,d=(1<<u)-1,p=d>>1,f=r===23?Math.pow(2,-24)-Math.pow(2,-77):0,b=o?0:s-1,h=o?1:-1,g=t<0||t===0&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(c=isNaN(t)?1:0,i=d):(i=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-i))<1&&(i--,l*=2),i+p>=1?t+=f/l:t+=f*Math.pow(2,1-p),t*l>=2&&(i++,l/=2),i+p>=d?(c=0,i=d):i+p>=1?(c=(t*l-1)*Math.pow(2,r),i=i+p):(c=t*Math.pow(2,p-1)*Math.pow(2,r),i=0));r>=8;e[n+b]=c&255,b+=h,c/=256,r-=8);for(i=i<<r|c,u+=r;u>0;e[n+b]=i&255,b+=h,i/=256,u-=8);e[n+b-h]|=g*128};/*! * The buffer module from node.js, for the browser. * * @author Feross Aboukhadijeh <https://feross.org> * @license MIT - */(function(e){const t=$5,n=bB,o=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=d,e.SlowBuffer=y,e.INSPECT_MAX_BYTES=50;const r=2147483647;e.kMaxLength=r;const{Uint8Array:s,ArrayBuffer:i,SharedArrayBuffer:c}=globalThis;d.TYPED_ARRAY_SUPPORT=l(),!d.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function l(){try{const ae=new s(1),H={foo:function(){return 42}};return Object.setPrototypeOf(H,s.prototype),Object.setPrototypeOf(ae,H),ae.foo()===42}catch{return!1}}Object.defineProperty(d.prototype,"parent",{enumerable:!0,get:function(){if(d.isBuffer(this))return this.buffer}}),Object.defineProperty(d.prototype,"offset",{enumerable:!0,get:function(){if(d.isBuffer(this))return this.byteOffset}});function u(ae){if(ae>r)throw new RangeError('The value "'+ae+'" is invalid for option "size"');const H=new s(ae);return Object.setPrototypeOf(H,d.prototype),H}function d(ae,H,Y){if(typeof ae=="number"){if(typeof H=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return h(ae)}return p(ae,H,Y)}d.poolSize=8192;function p(ae,H,Y){if(typeof ae=="string")return g(ae,H);if(i.isView(ae))return A(ae);if(ae==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof ae);if(Pe(ae,i)||ae&&Pe(ae.buffer,i)||typeof c<"u"&&(Pe(ae,c)||ae&&Pe(ae.buffer,c)))return _(ae,H,Y);if(typeof ae=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const fe=ae.valueOf&&ae.valueOf();if(fe!=null&&fe!==ae)return d.from(fe,H,Y);const Re=v(ae);if(Re)return Re;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof ae[Symbol.toPrimitive]=="function")return d.from(ae[Symbol.toPrimitive]("string"),H,Y);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof ae)}d.from=function(ae,H,Y){return p(ae,H,Y)},Object.setPrototypeOf(d.prototype,s.prototype),Object.setPrototypeOf(d,s);function f(ae){if(typeof ae!="number")throw new TypeError('"size" argument must be of type number');if(ae<0)throw new RangeError('The value "'+ae+'" is invalid for option "size"')}function b(ae,H,Y){return f(ae),ae<=0?u(ae):H!==void 0?typeof Y=="string"?u(ae).fill(H,Y):u(ae).fill(H):u(ae)}d.alloc=function(ae,H,Y){return b(ae,H,Y)};function h(ae){return f(ae),u(ae<0?0:M(ae)|0)}d.allocUnsafe=function(ae){return h(ae)},d.allocUnsafeSlow=function(ae){return h(ae)};function g(ae,H){if((typeof H!="string"||H==="")&&(H="utf8"),!d.isEncoding(H))throw new TypeError("Unknown encoding: "+H);const Y=k(ae,H)|0;let fe=u(Y);const Re=fe.write(ae,H);return Re!==Y&&(fe=fe.slice(0,Re)),fe}function z(ae){const H=ae.length<0?0:M(ae.length)|0,Y=u(H);for(let fe=0;fe<H;fe+=1)Y[fe]=ae[fe]&255;return Y}function A(ae){if(Pe(ae,s)){const H=new s(ae);return _(H.buffer,H.byteOffset,H.byteLength)}return z(ae)}function _(ae,H,Y){if(H<0||ae.byteLength<H)throw new RangeError('"offset" is outside of buffer bounds');if(ae.byteLength<H+(Y||0))throw new RangeError('"length" is outside of buffer bounds');let fe;return H===void 0&&Y===void 0?fe=new s(ae):Y===void 0?fe=new s(ae,H):fe=new s(ae,H,Y),Object.setPrototypeOf(fe,d.prototype),fe}function v(ae){if(d.isBuffer(ae)){const H=M(ae.length)|0,Y=u(H);return Y.length===0||ae.copy(Y,0,0,H),Y}if(ae.length!==void 0)return typeof ae.length!="number"||rt(ae.length)?u(0):z(ae);if(ae.type==="Buffer"&&Array.isArray(ae.data))return z(ae.data)}function M(ae){if(ae>=r)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+r.toString(16)+" bytes");return ae|0}function y(ae){return+ae!=ae&&(ae=0),d.alloc(+ae)}d.isBuffer=function(H){return H!=null&&H._isBuffer===!0&&H!==d.prototype},d.compare=function(H,Y){if(Pe(H,s)&&(H=d.from(H,H.offset,H.byteLength)),Pe(Y,s)&&(Y=d.from(Y,Y.offset,Y.byteLength)),!d.isBuffer(H)||!d.isBuffer(Y))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(H===Y)return 0;let fe=H.length,Re=Y.length;for(let be=0,ze=Math.min(fe,Re);be<ze;++be)if(H[be]!==Y[be]){fe=H[be],Re=Y[be];break}return fe<Re?-1:Re<fe?1:0},d.isEncoding=function(H){switch(String(H).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},d.concat=function(H,Y){if(!Array.isArray(H))throw new TypeError('"list" argument must be an Array of Buffers');if(H.length===0)return d.alloc(0);let fe;if(Y===void 0)for(Y=0,fe=0;fe<H.length;++fe)Y+=H[fe].length;const Re=d.allocUnsafe(Y);let be=0;for(fe=0;fe<H.length;++fe){let ze=H[fe];if(Pe(ze,s))be+ze.length>Re.length?(d.isBuffer(ze)||(ze=d.from(ze)),ze.copy(Re,be)):s.prototype.set.call(Re,ze,be);else if(d.isBuffer(ze))ze.copy(Re,be);else throw new TypeError('"list" argument must be an Array of Buffers');be+=ze.length}return Re};function k(ae,H){if(d.isBuffer(ae))return ae.length;if(i.isView(ae)||Pe(ae,i))return ae.byteLength;if(typeof ae!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof ae);const Y=ae.length,fe=arguments.length>2&&arguments[2]===!0;if(!fe&&Y===0)return 0;let Re=!1;for(;;)switch(H){case"ascii":case"latin1":case"binary":return Y;case"utf8":case"utf-8":return L(ae).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Y*2;case"hex":return Y>>>1;case"base64":return ve(ae).length;default:if(Re)return fe?-1:L(ae).length;H=(""+H).toLowerCase(),Re=!0}}d.byteLength=k;function S(ae,H,Y){let fe=!1;if((H===void 0||H<0)&&(H=0),H>this.length||((Y===void 0||Y>this.length)&&(Y=this.length),Y<=0)||(Y>>>=0,H>>>=0,Y<=H))return"";for(ae||(ae="utf8");;)switch(ae){case"hex":return ee(this,H,Y);case"utf8":case"utf-8":return $(this,H,Y);case"ascii":return Z(this,H,Y);case"latin1":case"binary":return V(this,H,Y);case"base64":return P(this,H,Y);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return te(this,H,Y);default:if(fe)throw new TypeError("Unknown encoding: "+ae);ae=(ae+"").toLowerCase(),fe=!0}}d.prototype._isBuffer=!0;function C(ae,H,Y){const fe=ae[H];ae[H]=ae[Y],ae[Y]=fe}d.prototype.swap16=function(){const H=this.length;if(H%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let Y=0;Y<H;Y+=2)C(this,Y,Y+1);return this},d.prototype.swap32=function(){const H=this.length;if(H%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let Y=0;Y<H;Y+=4)C(this,Y,Y+3),C(this,Y+1,Y+2);return this},d.prototype.swap64=function(){const H=this.length;if(H%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let Y=0;Y<H;Y+=8)C(this,Y,Y+7),C(this,Y+1,Y+6),C(this,Y+2,Y+5),C(this,Y+3,Y+4);return this},d.prototype.toString=function(){const H=this.length;return H===0?"":arguments.length===0?$(this,0,H):S.apply(this,arguments)},d.prototype.toLocaleString=d.prototype.toString,d.prototype.equals=function(H){if(!d.isBuffer(H))throw new TypeError("Argument must be a Buffer");return this===H?!0:d.compare(this,H)===0},d.prototype.inspect=function(){let H="";const Y=e.INSPECT_MAX_BYTES;return H=this.toString("hex",0,Y).replace(/(.{2})/g,"$1 ").trim(),this.length>Y&&(H+=" ... "),"<Buffer "+H+">"},o&&(d.prototype[o]=d.prototype.inspect),d.prototype.compare=function(H,Y,fe,Re,be){if(Pe(H,s)&&(H=d.from(H,H.offset,H.byteLength)),!d.isBuffer(H))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof H);if(Y===void 0&&(Y=0),fe===void 0&&(fe=H?H.length:0),Re===void 0&&(Re=0),be===void 0&&(be=this.length),Y<0||fe>H.length||Re<0||be>this.length)throw new RangeError("out of range index");if(Re>=be&&Y>=fe)return 0;if(Re>=be)return-1;if(Y>=fe)return 1;if(Y>>>=0,fe>>>=0,Re>>>=0,be>>>=0,this===H)return 0;let ze=be-Re,nt=fe-Y;const Mt=Math.min(ze,nt),ot=this.slice(Re,be),Ue=H.slice(Y,fe);for(let yt=0;yt<Mt;++yt)if(ot[yt]!==Ue[yt]){ze=ot[yt],nt=Ue[yt];break}return ze<nt?-1:nt<ze?1:0};function R(ae,H,Y,fe,Re){if(ae.length===0)return-1;if(typeof Y=="string"?(fe=Y,Y=0):Y>2147483647?Y=2147483647:Y<-2147483648&&(Y=-2147483648),Y=+Y,rt(Y)&&(Y=Re?0:ae.length-1),Y<0&&(Y=ae.length+Y),Y>=ae.length){if(Re)return-1;Y=ae.length-1}else if(Y<0)if(Re)Y=0;else return-1;if(typeof H=="string"&&(H=d.from(H,fe)),d.isBuffer(H))return H.length===0?-1:T(ae,H,Y,fe,Re);if(typeof H=="number")return H=H&255,typeof s.prototype.indexOf=="function"?Re?s.prototype.indexOf.call(ae,H,Y):s.prototype.lastIndexOf.call(ae,H,Y):T(ae,[H],Y,fe,Re);throw new TypeError("val must be string, number or Buffer")}function T(ae,H,Y,fe,Re){let be=1,ze=ae.length,nt=H.length;if(fe!==void 0&&(fe=String(fe).toLowerCase(),fe==="ucs2"||fe==="ucs-2"||fe==="utf16le"||fe==="utf-16le")){if(ae.length<2||H.length<2)return-1;be=2,ze/=2,nt/=2,Y/=2}function Mt(Ue,yt){return be===1?Ue[yt]:Ue.readUInt16BE(yt*be)}let ot;if(Re){let Ue=-1;for(ot=Y;ot<ze;ot++)if(Mt(ae,ot)===Mt(H,Ue===-1?0:ot-Ue)){if(Ue===-1&&(Ue=ot),ot-Ue+1===nt)return Ue*be}else Ue!==-1&&(ot-=ot-Ue),Ue=-1}else for(Y+nt>ze&&(Y=ze-nt),ot=Y;ot>=0;ot--){let Ue=!0;for(let yt=0;yt<nt;yt++)if(Mt(ae,ot+yt)!==Mt(H,yt)){Ue=!1;break}if(Ue)return ot}return-1}d.prototype.includes=function(H,Y,fe){return this.indexOf(H,Y,fe)!==-1},d.prototype.indexOf=function(H,Y,fe){return R(this,H,Y,fe,!0)},d.prototype.lastIndexOf=function(H,Y,fe){return R(this,H,Y,fe,!1)};function E(ae,H,Y,fe){Y=Number(Y)||0;const Re=ae.length-Y;fe?(fe=Number(fe),fe>Re&&(fe=Re)):fe=Re;const be=H.length;fe>be/2&&(fe=be/2);let ze;for(ze=0;ze<fe;++ze){const nt=parseInt(H.substr(ze*2,2),16);if(rt(nt))return ze;ae[Y+ze]=nt}return ze}function B(ae,H,Y,fe){return qe(L(H,ae.length-Y),ae,Y,fe)}function N(ae,H,Y,fe){return qe(U(H),ae,Y,fe)}function j(ae,H,Y,fe){return qe(ve(H),ae,Y,fe)}function I(ae,H,Y,fe){return qe(ne(H,ae.length-Y),ae,Y,fe)}d.prototype.write=function(H,Y,fe,Re){if(Y===void 0)Re="utf8",fe=this.length,Y=0;else if(fe===void 0&&typeof Y=="string")Re=Y,fe=this.length,Y=0;else if(isFinite(Y))Y=Y>>>0,isFinite(fe)?(fe=fe>>>0,Re===void 0&&(Re="utf8")):(Re=fe,fe=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const be=this.length-Y;if((fe===void 0||fe>be)&&(fe=be),H.length>0&&(fe<0||Y<0)||Y>this.length)throw new RangeError("Attempt to write outside buffer bounds");Re||(Re="utf8");let ze=!1;for(;;)switch(Re){case"hex":return E(this,H,Y,fe);case"utf8":case"utf-8":return B(this,H,Y,fe);case"ascii":case"latin1":case"binary":return N(this,H,Y,fe);case"base64":return j(this,H,Y,fe);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,H,Y,fe);default:if(ze)throw new TypeError("Unknown encoding: "+Re);Re=(""+Re).toLowerCase(),ze=!0}},d.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function P(ae,H,Y){return H===0&&Y===ae.length?t.fromByteArray(ae):t.fromByteArray(ae.slice(H,Y))}function $(ae,H,Y){Y=Math.min(ae.length,Y);const fe=[];let Re=H;for(;Re<Y;){const be=ae[Re];let ze=null,nt=be>239?4:be>223?3:be>191?2:1;if(Re+nt<=Y){let Mt,ot,Ue,yt;switch(nt){case 1:be<128&&(ze=be);break;case 2:Mt=ae[Re+1],(Mt&192)===128&&(yt=(be&31)<<6|Mt&63,yt>127&&(ze=yt));break;case 3:Mt=ae[Re+1],ot=ae[Re+2],(Mt&192)===128&&(ot&192)===128&&(yt=(be&15)<<12|(Mt&63)<<6|ot&63,yt>2047&&(yt<55296||yt>57343)&&(ze=yt));break;case 4:Mt=ae[Re+1],ot=ae[Re+2],Ue=ae[Re+3],(Mt&192)===128&&(ot&192)===128&&(Ue&192)===128&&(yt=(be&15)<<18|(Mt&63)<<12|(ot&63)<<6|Ue&63,yt>65535&&yt<1114112&&(ze=yt))}}ze===null?(ze=65533,nt=1):ze>65535&&(ze-=65536,fe.push(ze>>>10&1023|55296),ze=56320|ze&1023),fe.push(ze),Re+=nt}return X(fe)}const F=4096;function X(ae){const H=ae.length;if(H<=F)return String.fromCharCode.apply(String,ae);let Y="",fe=0;for(;fe<H;)Y+=String.fromCharCode.apply(String,ae.slice(fe,fe+=F));return Y}function Z(ae,H,Y){let fe="";Y=Math.min(ae.length,Y);for(let Re=H;Re<Y;++Re)fe+=String.fromCharCode(ae[Re]&127);return fe}function V(ae,H,Y){let fe="";Y=Math.min(ae.length,Y);for(let Re=H;Re<Y;++Re)fe+=String.fromCharCode(ae[Re]);return fe}function ee(ae,H,Y){const fe=ae.length;(!H||H<0)&&(H=0),(!Y||Y<0||Y>fe)&&(Y=fe);let Re="";for(let be=H;be<Y;++be)Re+=qt[ae[be]];return Re}function te(ae,H,Y){const fe=ae.slice(H,Y);let Re="";for(let be=0;be<fe.length-1;be+=2)Re+=String.fromCharCode(fe[be]+fe[be+1]*256);return Re}d.prototype.slice=function(H,Y){const fe=this.length;H=~~H,Y=Y===void 0?fe:~~Y,H<0?(H+=fe,H<0&&(H=0)):H>fe&&(H=fe),Y<0?(Y+=fe,Y<0&&(Y=0)):Y>fe&&(Y=fe),Y<H&&(Y=H);const Re=this.subarray(H,Y);return Object.setPrototypeOf(Re,d.prototype),Re};function J(ae,H,Y){if(ae%1!==0||ae<0)throw new RangeError("offset is not uint");if(ae+H>Y)throw new RangeError("Trying to access beyond buffer length")}d.prototype.readUintLE=d.prototype.readUIntLE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=this[H],be=1,ze=0;for(;++ze<Y&&(be*=256);)Re+=this[H+ze]*be;return Re},d.prototype.readUintBE=d.prototype.readUIntBE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=this[H+--Y],be=1;for(;Y>0&&(be*=256);)Re+=this[H+--Y]*be;return Re},d.prototype.readUint8=d.prototype.readUInt8=function(H,Y){return H=H>>>0,Y||J(H,1,this.length),this[H]},d.prototype.readUint16LE=d.prototype.readUInt16LE=function(H,Y){return H=H>>>0,Y||J(H,2,this.length),this[H]|this[H+1]<<8},d.prototype.readUint16BE=d.prototype.readUInt16BE=function(H,Y){return H=H>>>0,Y||J(H,2,this.length),this[H]<<8|this[H+1]},d.prototype.readUint32LE=d.prototype.readUInt32LE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),(this[H]|this[H+1]<<8|this[H+2]<<16)+this[H+3]*16777216},d.prototype.readUint32BE=d.prototype.readUInt32BE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),this[H]*16777216+(this[H+1]<<16|this[H+2]<<8|this[H+3])},d.prototype.readBigUInt64LE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=Y+this[++H]*2**8+this[++H]*2**16+this[++H]*2**24,be=this[++H]+this[++H]*2**8+this[++H]*2**16+fe*2**24;return BigInt(Re)+(BigInt(be)<<BigInt(32))}),d.prototype.readBigUInt64BE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=Y*2**24+this[++H]*2**16+this[++H]*2**8+this[++H],be=this[++H]*2**24+this[++H]*2**16+this[++H]*2**8+fe;return(BigInt(Re)<<BigInt(32))+BigInt(be)}),d.prototype.readIntLE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=this[H],be=1,ze=0;for(;++ze<Y&&(be*=256);)Re+=this[H+ze]*be;return be*=128,Re>=be&&(Re-=Math.pow(2,8*Y)),Re},d.prototype.readIntBE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=Y,be=1,ze=this[H+--Re];for(;Re>0&&(be*=256);)ze+=this[H+--Re]*be;return be*=128,ze>=be&&(ze-=Math.pow(2,8*Y)),ze},d.prototype.readInt8=function(H,Y){return H=H>>>0,Y||J(H,1,this.length),this[H]&128?(255-this[H]+1)*-1:this[H]},d.prototype.readInt16LE=function(H,Y){H=H>>>0,Y||J(H,2,this.length);const fe=this[H]|this[H+1]<<8;return fe&32768?fe|4294901760:fe},d.prototype.readInt16BE=function(H,Y){H=H>>>0,Y||J(H,2,this.length);const fe=this[H+1]|this[H]<<8;return fe&32768?fe|4294901760:fe},d.prototype.readInt32LE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),this[H]|this[H+1]<<8|this[H+2]<<16|this[H+3]<<24},d.prototype.readInt32BE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),this[H]<<24|this[H+1]<<16|this[H+2]<<8|this[H+3]},d.prototype.readBigInt64LE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=this[H+4]+this[H+5]*2**8+this[H+6]*2**16+(fe<<24);return(BigInt(Re)<<BigInt(32))+BigInt(Y+this[++H]*2**8+this[++H]*2**16+this[++H]*2**24)}),d.prototype.readBigInt64BE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=(Y<<24)+this[++H]*2**16+this[++H]*2**8+this[++H];return(BigInt(Re)<<BigInt(32))+BigInt(this[++H]*2**24+this[++H]*2**16+this[++H]*2**8+fe)}),d.prototype.readFloatLE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),n.read(this,H,!0,23,4)},d.prototype.readFloatBE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),n.read(this,H,!1,23,4)},d.prototype.readDoubleLE=function(H,Y){return H=H>>>0,Y||J(H,8,this.length),n.read(this,H,!0,52,8)},d.prototype.readDoubleBE=function(H,Y){return H=H>>>0,Y||J(H,8,this.length),n.read(this,H,!1,52,8)};function ue(ae,H,Y,fe,Re,be){if(!d.isBuffer(ae))throw new TypeError('"buffer" argument must be a Buffer instance');if(H>Re||H<be)throw new RangeError('"value" argument is out of bounds');if(Y+fe>ae.length)throw new RangeError("Index out of range")}d.prototype.writeUintLE=d.prototype.writeUIntLE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,fe=fe>>>0,!Re){const nt=Math.pow(2,8*fe)-1;ue(this,H,Y,fe,nt,0)}let be=1,ze=0;for(this[Y]=H&255;++ze<fe&&(be*=256);)this[Y+ze]=H/be&255;return Y+fe},d.prototype.writeUintBE=d.prototype.writeUIntBE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,fe=fe>>>0,!Re){const nt=Math.pow(2,8*fe)-1;ue(this,H,Y,fe,nt,0)}let be=fe-1,ze=1;for(this[Y+be]=H&255;--be>=0&&(ze*=256);)this[Y+be]=H/ze&255;return Y+fe},d.prototype.writeUint8=d.prototype.writeUInt8=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,1,255,0),this[Y]=H&255,Y+1},d.prototype.writeUint16LE=d.prototype.writeUInt16LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,65535,0),this[Y]=H&255,this[Y+1]=H>>>8,Y+2},d.prototype.writeUint16BE=d.prototype.writeUInt16BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,65535,0),this[Y]=H>>>8,this[Y+1]=H&255,Y+2},d.prototype.writeUint32LE=d.prototype.writeUInt32LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,4294967295,0),this[Y+3]=H>>>24,this[Y+2]=H>>>16,this[Y+1]=H>>>8,this[Y]=H&255,Y+4},d.prototype.writeUint32BE=d.prototype.writeUInt32BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,4294967295,0),this[Y]=H>>>24,this[Y+1]=H>>>16,this[Y+2]=H>>>8,this[Y+3]=H&255,Y+4};function ce(ae,H,Y,fe,Re){re(H,fe,Re,ae,Y,7);let be=Number(H&BigInt(4294967295));ae[Y++]=be,be=be>>8,ae[Y++]=be,be=be>>8,ae[Y++]=be,be=be>>8,ae[Y++]=be;let ze=Number(H>>BigInt(32)&BigInt(4294967295));return ae[Y++]=ze,ze=ze>>8,ae[Y++]=ze,ze=ze>>8,ae[Y++]=ze,ze=ze>>8,ae[Y++]=ze,Y}function me(ae,H,Y,fe,Re){re(H,fe,Re,ae,Y,7);let be=Number(H&BigInt(4294967295));ae[Y+7]=be,be=be>>8,ae[Y+6]=be,be=be>>8,ae[Y+5]=be,be=be>>8,ae[Y+4]=be;let ze=Number(H>>BigInt(32)&BigInt(4294967295));return ae[Y+3]=ze,ze=ze>>8,ae[Y+2]=ze,ze=ze>>8,ae[Y+1]=ze,ze=ze>>8,ae[Y]=ze,Y+8}d.prototype.writeBigUInt64LE=wt(function(H,Y=0){return ce(this,H,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),d.prototype.writeBigUInt64BE=wt(function(H,Y=0){return me(this,H,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),d.prototype.writeIntLE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,!Re){const Mt=Math.pow(2,8*fe-1);ue(this,H,Y,fe,Mt-1,-Mt)}let be=0,ze=1,nt=0;for(this[Y]=H&255;++be<fe&&(ze*=256);)H<0&&nt===0&&this[Y+be-1]!==0&&(nt=1),this[Y+be]=(H/ze>>0)-nt&255;return Y+fe},d.prototype.writeIntBE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,!Re){const Mt=Math.pow(2,8*fe-1);ue(this,H,Y,fe,Mt-1,-Mt)}let be=fe-1,ze=1,nt=0;for(this[Y+be]=H&255;--be>=0&&(ze*=256);)H<0&&nt===0&&this[Y+be+1]!==0&&(nt=1),this[Y+be]=(H/ze>>0)-nt&255;return Y+fe},d.prototype.writeInt8=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,1,127,-128),H<0&&(H=255+H+1),this[Y]=H&255,Y+1},d.prototype.writeInt16LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,32767,-32768),this[Y]=H&255,this[Y+1]=H>>>8,Y+2},d.prototype.writeInt16BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,32767,-32768),this[Y]=H>>>8,this[Y+1]=H&255,Y+2},d.prototype.writeInt32LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,2147483647,-2147483648),this[Y]=H&255,this[Y+1]=H>>>8,this[Y+2]=H>>>16,this[Y+3]=H>>>24,Y+4},d.prototype.writeInt32BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,2147483647,-2147483648),H<0&&(H=4294967295+H+1),this[Y]=H>>>24,this[Y+1]=H>>>16,this[Y+2]=H>>>8,this[Y+3]=H&255,Y+4},d.prototype.writeBigInt64LE=wt(function(H,Y=0){return ce(this,H,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),d.prototype.writeBigInt64BE=wt(function(H,Y=0){return me(this,H,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function de(ae,H,Y,fe,Re,be){if(Y+fe>ae.length)throw new RangeError("Index out of range");if(Y<0)throw new RangeError("Index out of range")}function Ae(ae,H,Y,fe,Re){return H=+H,Y=Y>>>0,Re||de(ae,H,Y,4),n.write(ae,H,Y,fe,23,4),Y+4}d.prototype.writeFloatLE=function(H,Y,fe){return Ae(this,H,Y,!0,fe)},d.prototype.writeFloatBE=function(H,Y,fe){return Ae(this,H,Y,!1,fe)};function ye(ae,H,Y,fe,Re){return H=+H,Y=Y>>>0,Re||de(ae,H,Y,8),n.write(ae,H,Y,fe,52,8),Y+8}d.prototype.writeDoubleLE=function(H,Y,fe){return ye(this,H,Y,!0,fe)},d.prototype.writeDoubleBE=function(H,Y,fe){return ye(this,H,Y,!1,fe)},d.prototype.copy=function(H,Y,fe,Re){if(!d.isBuffer(H))throw new TypeError("argument should be a Buffer");if(fe||(fe=0),!Re&&Re!==0&&(Re=this.length),Y>=H.length&&(Y=H.length),Y||(Y=0),Re>0&&Re<fe&&(Re=fe),Re===fe||H.length===0||this.length===0)return 0;if(Y<0)throw new RangeError("targetStart out of bounds");if(fe<0||fe>=this.length)throw new RangeError("Index out of range");if(Re<0)throw new RangeError("sourceEnd out of bounds");Re>this.length&&(Re=this.length),H.length-Y<Re-fe&&(Re=H.length-Y+fe);const be=Re-fe;return this===H&&typeof s.prototype.copyWithin=="function"?this.copyWithin(Y,fe,Re):s.prototype.set.call(H,this.subarray(fe,Re),Y),be},d.prototype.fill=function(H,Y,fe,Re){if(typeof H=="string"){if(typeof Y=="string"?(Re=Y,Y=0,fe=this.length):typeof fe=="string"&&(Re=fe,fe=this.length),Re!==void 0&&typeof Re!="string")throw new TypeError("encoding must be a string");if(typeof Re=="string"&&!d.isEncoding(Re))throw new TypeError("Unknown encoding: "+Re);if(H.length===1){const ze=H.charCodeAt(0);(Re==="utf8"&&ze<128||Re==="latin1")&&(H=ze)}}else typeof H=="number"?H=H&255:typeof H=="boolean"&&(H=Number(H));if(Y<0||this.length<Y||this.length<fe)throw new RangeError("Out of range index");if(fe<=Y)return this;Y=Y>>>0,fe=fe===void 0?this.length:fe>>>0,H||(H=0);let be;if(typeof H=="number")for(be=Y;be<fe;++be)this[be]=H;else{const ze=d.isBuffer(H)?H:d.from(H,Re),nt=ze.length;if(nt===0)throw new TypeError('The value "'+H+'" is invalid for argument "value"');for(be=0;be<fe-Y;++be)this[be+Y]=ze[be%nt]}return this};const Ne={};function je(ae,H,Y){Ne[ae]=class extends Y{constructor(){super(),Object.defineProperty(this,"message",{value:H.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${ae}]`,this.stack,delete this.name}get code(){return ae}set code(Re){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:Re,writable:!0})}toString(){return`${this.name} [${ae}]: ${this.message}`}}}je("ERR_BUFFER_OUT_OF_BOUNDS",function(ae){return ae?`${ae} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),je("ERR_INVALID_ARG_TYPE",function(ae,H){return`The "${ae}" argument must be of type number. Received type ${typeof H}`},TypeError),je("ERR_OUT_OF_RANGE",function(ae,H,Y){let fe=`The value of "${ae}" is out of range.`,Re=Y;return Number.isInteger(Y)&&Math.abs(Y)>2**32?Re=ie(String(Y)):typeof Y=="bigint"&&(Re=String(Y),(Y>BigInt(2)**BigInt(32)||Y<-(BigInt(2)**BigInt(32)))&&(Re=ie(Re)),Re+="n"),fe+=` It must be ${H}. Received ${Re}`,fe},RangeError);function ie(ae){let H="",Y=ae.length;const fe=ae[0]==="-"?1:0;for(;Y>=fe+4;Y-=3)H=`_${ae.slice(Y-3,Y)}${H}`;return`${ae.slice(0,Y)}${H}`}function we(ae,H,Y){pe(H,"offset"),(ae[H]===void 0||ae[H+Y]===void 0)&&ke(H,ae.length-(Y+1))}function re(ae,H,Y,fe,Re,be){if(ae>Y||ae<H){const ze=typeof H=="bigint"?"n":"";let nt;throw H===0||H===BigInt(0)?nt=`>= 0${ze} and < 2${ze} ** ${(be+1)*8}${ze}`:nt=`>= -(2${ze} ** ${(be+1)*8-1}${ze}) and < 2 ** ${(be+1)*8-1}${ze}`,new Ne.ERR_OUT_OF_RANGE("value",nt,ae)}we(fe,Re,be)}function pe(ae,H){if(typeof ae!="number")throw new Ne.ERR_INVALID_ARG_TYPE(H,"number",ae)}function ke(ae,H,Y){throw Math.floor(ae)!==ae?(pe(ae,Y),new Ne.ERR_OUT_OF_RANGE("offset","an integer",ae)):H<0?new Ne.ERR_BUFFER_OUT_OF_BOUNDS:new Ne.ERR_OUT_OF_RANGE("offset",`>= 0 and <= ${H}`,ae)}const Se=/[^+/0-9A-Za-z-_]/g;function se(ae){if(ae=ae.split("=")[0],ae=ae.trim().replace(Se,""),ae.length<2)return"";for(;ae.length%4!==0;)ae=ae+"=";return ae}function L(ae,H){H=H||1/0;let Y;const fe=ae.length;let Re=null;const be=[];for(let ze=0;ze<fe;++ze){if(Y=ae.charCodeAt(ze),Y>55295&&Y<57344){if(!Re){if(Y>56319){(H-=3)>-1&&be.push(239,191,189);continue}else if(ze+1===fe){(H-=3)>-1&&be.push(239,191,189);continue}Re=Y;continue}if(Y<56320){(H-=3)>-1&&be.push(239,191,189),Re=Y;continue}Y=(Re-55296<<10|Y-56320)+65536}else Re&&(H-=3)>-1&&be.push(239,191,189);if(Re=null,Y<128){if((H-=1)<0)break;be.push(Y)}else if(Y<2048){if((H-=2)<0)break;be.push(Y>>6|192,Y&63|128)}else if(Y<65536){if((H-=3)<0)break;be.push(Y>>12|224,Y>>6&63|128,Y&63|128)}else if(Y<1114112){if((H-=4)<0)break;be.push(Y>>18|240,Y>>12&63|128,Y>>6&63|128,Y&63|128)}else throw new Error("Invalid code point")}return be}function U(ae){const H=[];for(let Y=0;Y<ae.length;++Y)H.push(ae.charCodeAt(Y)&255);return H}function ne(ae,H){let Y,fe,Re;const be=[];for(let ze=0;ze<ae.length&&!((H-=2)<0);++ze)Y=ae.charCodeAt(ze),fe=Y>>8,Re=Y%256,be.push(Re),be.push(fe);return be}function ve(ae){return t.toByteArray(se(ae))}function qe(ae,H,Y,fe){let Re;for(Re=0;Re<fe&&!(Re+Y>=H.length||Re>=ae.length);++Re)H[Re+Y]=ae[Re];return Re}function Pe(ae,H){return ae instanceof H||ae!=null&&ae.constructor!=null&&ae.constructor.name!=null&&ae.constructor.name===H.name}function rt(ae){return ae!==ae}const qt=function(){const ae="0123456789abcdef",H=new Array(256);for(let Y=0;Y<16;++Y){const fe=Y*16;for(let Re=0;Re<16;++Re)H[fe+Re]=ae[Y]+ae[Re]}return H}();function wt(ae){return typeof BigInt>"u"?Bt:ae}function Bt(){throw new Error("BigInt not supported")}})(x1e);const rh=x1e.Buffer;function KEe(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var _1e={exports:{}},Qr=_1e.exports={},Ka,Ya;function NE(){throw new Error("setTimeout has not been defined")}function BE(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?Ka=setTimeout:Ka=NE}catch{Ka=NE}try{typeof clearTimeout=="function"?Ya=clearTimeout:Ya=BE}catch{Ya=BE}})();function k1e(e){if(Ka===setTimeout)return setTimeout(e,0);if((Ka===NE||!Ka)&&setTimeout)return Ka=setTimeout,setTimeout(e,0);try{return Ka(e,0)}catch{try{return Ka.call(null,e,0)}catch{return Ka.call(this,e,0)}}}function YEe(e){if(Ya===clearTimeout)return clearTimeout(e);if((Ya===BE||!Ya)&&clearTimeout)return Ya=clearTimeout,clearTimeout(e);try{return Ya(e)}catch{try{return Ya.call(null,e)}catch{return Ya.call(this,e)}}}var bl=[],C2=!1,Xp,Iv=-1;function ZEe(){!C2||!Xp||(C2=!1,Xp.length?bl=Xp.concat(bl):Iv=-1,bl.length&&S1e())}function S1e(){if(!C2){var e=k1e(ZEe);C2=!0;for(var t=bl.length;t;){for(Xp=bl,bl=[];++Iv<t;)Xp&&Xp[Iv].run();Iv=-1,t=bl.length}Xp=null,C2=!1,YEe(e)}}Qr.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];bl.push(new C1e(e,t)),bl.length===1&&!C2&&k1e(S1e)};function C1e(e,t){this.fun=e,this.array=t}C1e.prototype.run=function(){this.fun.apply(null,this.array)};Qr.title="browser";Qr.browser=!0;Qr.env={};Qr.argv=[];Qr.version="";Qr.versions={};function Kl(){}Qr.on=Kl;Qr.addListener=Kl;Qr.once=Kl;Qr.off=Kl;Qr.removeListener=Kl;Qr.removeAllListeners=Kl;Qr.emit=Kl;Qr.prependListener=Kl;Qr.prependOnceListener=Kl;Qr.listeners=function(e){return[]};Qr.binding=function(e){throw new Error("process.binding is not supported")};Qr.cwd=function(){return"/"};Qr.chdir=function(e){throw new Error("process.chdir is not supported")};Qr.umask=function(){return 0};var QEe=_1e.exports;const Oi=KEe(QEe),AU=e=>e===void 0?null:e;class JEe{constructor(){this.map=new Map}setItem(t,n){this.map.set(t,n)}getItem(t){return this.map.get(t)}}let q1e=new JEe,hB=!0;try{typeof localStorage<"u"&&localStorage&&(q1e=localStorage,hB=!1)}catch{}const R1e=q1e,e8e=e=>hB||addEventListener("storage",e),t8e=e=>hB||removeEventListener("storage",e),n8e=Object.assign,T1e=Object.keys,o8e=(e,t)=>{for(const n in e)t(e[n],n)},vU=e=>T1e(e).length,xU=e=>T1e(e).length,r8e=e=>{for(const t in e)return!1;return!0},s8e=(e,t)=>{for(const n in e)if(!t(e[n],n))return!1;return!0},E1e=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),i8e=(e,t)=>e===t||xU(e)===xU(t)&&s8e(e,(n,o)=>(n!==void 0||E1e(t,o))&&t[o]===n),a8e=Object.freeze,W1e=e=>{for(const t in e){const n=e[t];(typeof n=="object"||typeof n=="function")&&W1e(e[t])}return a8e(e)},mB=(e,t,n=0)=>{try{for(;n<e.length;n++)e[n](...t)}finally{n<e.length&&mB(e,t,n+1)}},c8e=()=>{},l8e=e=>e,u8e=(e,t)=>e===t,yM=(e,t)=>{if(e==null||t==null)return u8e(e,t);if(e.constructor!==t.constructor)return!1;if(e===t)return!0;switch(e.constructor){case ArrayBuffer:e=new Uint8Array(e),t=new Uint8Array(t);case Uint8Array:{if(e.byteLength!==t.byteLength)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;break}case Set:{if(e.size!==t.size)return!1;for(const n of e)if(!t.has(n))return!1;break}case Map:{if(e.size!==t.size)return!1;for(const n of e.keys())if(!t.has(n)||!yM(e.get(n),t.get(n)))return!1;break}case Object:if(vU(e)!==vU(t))return!1;for(const n in e)if(!E1e(e,n)||!yM(e[n],t[n]))return!1;break;case Array:if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!yM(e[n],t[n]))return!1;break;default:return!1}return!0},d8e=(e,t)=>t.includes(e);var N1e={};const sh=typeof Oi<"u"&&Oi.release&&/node|io\.js/.test(Oi.release.name)&&Object.prototype.toString.call(typeof Oi<"u"?Oi:0)==="[object process]",B1e=typeof window<"u"&&typeof document<"u"&&!sh;let Pa;const p8e=()=>{if(Pa===void 0)if(sh){Pa=fs();const e=Oi.argv;let t=null;for(let n=0;n<e.length;n++){const o=e[n];o[0]==="-"?(t!==null&&Pa.set(t,""),t=o):t!==null&&(Pa.set(t,o),t=null)}t!==null&&Pa.set(t,"")}else typeof location=="object"?(Pa=fs(),(location.search||"?").slice(1).split("&").forEach(e=>{if(e.length!==0){const[t,n]=e.split("=");Pa.set(`--${mU(t,"-")}`,n),Pa.set(`-${mU(t,"-")}`,n)}})):Pa=fs();return Pa},LE=e=>p8e().has(e),XM=e=>AU(sh?N1e[e.toUpperCase().replaceAll("-","_")]:R1e.getItem(e)),L1e=e=>LE("--"+e)||XM(e)!==null;L1e("production");const f8e=sh&&d8e(N1e.FORCE_COLOR,["true","1","2"]),b8e=f8e||!LE("--no-colors")&&!L1e("no-color")&&(!sh||Oi.stdout.isTTY)&&(!sh||LE("--color")||XM("COLORTERM")!==null||(XM("TERM")||"").includes("color")),P1e=e=>new Uint8Array(e),h8e=(e,t,n)=>new Uint8Array(e,t,n),m8e=e=>new Uint8Array(e),g8e=e=>{let t="";for(let n=0;n<e.byteLength;n++)t+=dEe(e[n]);return btoa(t)},M8e=e=>rh.from(e.buffer,e.byteOffset,e.byteLength).toString("base64"),z8e=e=>{const t=atob(e),n=P1e(t.length);for(let o=0;o<t.length;o++)n[o]=t.charCodeAt(o);return n},O8e=e=>{const t=rh.from(e,"base64");return h8e(t.buffer,t.byteOffset,t.byteLength)},j1e=B1e?g8e:M8e,gB=B1e?z8e:O8e,y8e=e=>{const t=P1e(e.byteLength);return t.set(e),t};class A8e{constructor(t,n){this.left=t,this.right=n}}const Zc=(e,t)=>new A8e(e,t);typeof DOMParser<"u"&&new DOMParser;const v8e=e=>oEe(e,(t,n)=>`${n}:${t};`).join(""),x8e=JSON.stringify,Yl=Symbol,ki=Yl(),bf=Yl(),I1e=Yl(),MB=Yl(),D1e=Yl(),F1e=Yl(),$1e=Yl(),V5=Yl(),H5=Yl(),w8e=e=>{e.length===1&&e[0]?.constructor===Function&&(e=e[0]());const t=[],n=[];let o=0;for(;o<e.length;o++){const r=e[o];if(r===void 0)break;if(r.constructor===String||r.constructor===Number)t.push(r);else if(r.constructor===Object)break}for(o>0&&n.push(t.join(""));o<e.length;o++){const r=e[o];r instanceof Symbol||n.push(r)}return n},wU=[D1e,$1e,V5,I1e];let jS=0,_U=El();const _8e=(e,t)=>{const n=wU[jS],o=XM("log"),r=o!==null&&(o==="*"||o==="true"||new RegExp(o,"gi").test(t));return jS=(jS+1)%wU.length,t+=": ",r?(...s)=>{s.length===1&&s[0]?.constructor===Function&&(s=s[0]());const i=El(),c=i-_U;_U=i,e(n,t,H5,...s.map(l=>{switch(l!=null&&l.constructor===Uint8Array&&(l=Array.from(l)),typeof l){case"string":case"symbol":return l;default:return x8e(l)}}),n," +"+c+"ms")}:c8e},k8e={[ki]:Zc("font-weight","bold"),[bf]:Zc("font-weight","normal"),[I1e]:Zc("color","blue"),[D1e]:Zc("color","green"),[MB]:Zc("color","grey"),[F1e]:Zc("color","red"),[$1e]:Zc("color","purple"),[V5]:Zc("color","orange"),[H5]:Zc("color","black")},S8e=e=>{e.length===1&&e[0]?.constructor===Function&&(e=e[0]());const t=[],n=[],o=fs();let r=[],s=0;for(;s<e.length;s++){const i=e[s],c=k8e[i];if(c!==void 0)o.set(c.left,c.right);else{if(i===void 0)break;if(i.constructor===String||i.constructor===Number){const l=v8e(o);s>0||l.length>0?(t.push("%c"+i),n.push(l)):t.push(i)}else break}}for(s>0&&(r=n,r.unshift(t.join("")));s<e.length;s++){const i=e[s];i instanceof Symbol||r.push(i)}return r},V1e=b8e?S8e:w8e,H1e=(...e)=>{console.log(...V1e(e)),U1e.forEach(t=>t.print(e))},C8e=(...e)=>{console.warn(...V1e(e)),e.unshift(V5),U1e.forEach(t=>t.print(e))},U1e=zd(),q8e=e=>_8e(H1e,e),X1e=e=>({[Symbol.iterator](){return this},next:e}),R8e=(e,t)=>X1e(()=>{let n;do n=e.next();while(!n.done&&!t(n.value));return n}),IS=(e,t)=>X1e(()=>{const{done:n,value:o}=e.next();return{done:n,value:n?void 0:t(o)}});class zB{constructor(t,n){this.clock=t,this.len=n}}class f3{constructor(){this.clients=new Map}}const G1e=(e,t,n)=>t.clients.forEach((o,r)=>{const s=e.doc.store.clients.get(r);for(let i=0;i<o.length;i++){const c=o[i];cse(e,s,c.clock,c.len,n)}}),T8e=(e,t)=>{let n=0,o=e.length-1;for(;n<=o;){const r=Oc((n+o)/2),s=e[r],i=s.clock;if(i<=t){if(t<i+s.len)return r;n=r+1}else o=r-1}return null},K1e=(e,t)=>{const n=e.clients.get(t.client);return n!==void 0&&T8e(n,t.clock)!==null},OB=e=>{e.clients.forEach(t=>{t.sort((r,s)=>r.clock-s.clock);let n,o;for(n=1,o=1;n<t.length;n++){const r=t[o-1],s=t[n];r.clock+r.len>=s.clock?r.len=$f(r.len,s.clock+s.len-r.clock):(o<n&&(t[o]=s),o++)}t.length=o})},E8e=e=>{const t=new f3;for(let n=0;n<e.length;n++)e[n].clients.forEach((o,r)=>{if(!t.clients.has(r)){const s=o.slice();for(let i=n+1;i<e.length;i++)sEe(s,e[i].clients.get(r)||[]);t.clients.set(r,s)}});return OB(t),t},B4=(e,t,n,o)=>{w1(e.clients,t,()=>[]).push(new zB(n,o))},W8e=()=>new f3,N8e=e=>{const t=W8e();return e.clients.forEach((n,o)=>{const r=[];for(let s=0;s<n.length;s++){const i=n[s];if(i.deleted){const c=i.id.clock;let l=i.length;if(s+1<n.length)for(let u=n[s+1];s+1<n.length&&u.deleted;u=n[++s+1])l+=u.length;r.push(new zB(c,l))}}r.length>0&&t.clients.set(o,r)}),t},Fh=(e,t)=>{sn(e.restEncoder,t.clients.size),Tl(t.clients.entries()).sort((n,o)=>o[0]-n[0]).forEach(([n,o])=>{e.resetDsCurVal(),sn(e.restEncoder,n);const r=o.length;sn(e.restEncoder,r);for(let s=0;s<r;s++){const i=o[s];e.writeDsClock(i.clock),e.writeDsLen(i.len)}})},yB=e=>{const t=new f3,n=_n(e.restDecoder);for(let o=0;o<n;o++){e.resetDsCurVal();const r=_n(e.restDecoder),s=_n(e.restDecoder);if(s>0){const i=w1(t.clients,r,()=>[]);for(let c=0;c<s;c++)i.push(new zB(e.readDsClock(),e.readDsLen()))}}return t},kU=(e,t,n)=>{const o=new f3,r=_n(e.restDecoder);for(let s=0;s<r;s++){e.resetDsCurVal();const i=_n(e.restDecoder),c=_n(e.restDecoder),l=n.clients.get(i)||[],u=q0(n,i);for(let d=0;d<c;d++){const p=e.readDsClock(),f=p+e.readDsLen();if(p<u){u<f&&B4(o,i,u,f-u);let b=Ac(l,p),h=l[b];for(!h.deleted&&h.id.clock<p&&(l.splice(b+1,0,$4(t,h,p-h.id.clock)),b++);b<l.length&&(h=l[b++],h.id.clock<f);)h.deleted||(f<h.id.clock+h.length&&l.splice(b,0,$4(t,h,f-h.id.clock)),h.delete(t))}else B4(o,i,p,f-p)}}if(o.clients.size>0){const s=new hf;return sn(s.restEncoder,0),Fh(s,o),s.toUint8Array()}return null},Y1e=A1e;class $h extends aEe{constructor({guid:t=v1e(),collectionid:n=null,gc:o=!0,gcFilter:r=()=>!0,meta:s=null,autoLoad:i=!1,shouldLoad:c=!0}={}){super(),this.gc=o,this.gcFilter=r,this.clientID=Y1e(),this.guid=t,this.collectionid=n,this.share=new Map,this.store=new ise,this._transaction=null,this._transactionCleanups=[],this.subdocs=new Set,this._item=null,this.shouldLoad=c,this.autoLoad=i,this.meta=s,this.isLoaded=!1,this.isSynced=!1,this.isDestroyed=!1,this.whenLoaded=oh(u=>{this.on("load",()=>{this.isLoaded=!0,u(this)})});const l=()=>oh(u=>{const d=p=>{(p===void 0||p===!0)&&(this.off("sync",d),u())};this.on("sync",d)});this.on("sync",u=>{u===!1&&this.isSynced&&(this.whenSynced=l()),this.isSynced=u===void 0||u===!0,this.isSynced&&!this.isLoaded&&this.emit("load",[this])}),this.whenSynced=l()}load(){const t=this._item;t!==null&&!this.shouldLoad&&Ho(t.parent.doc,n=>{n.subdocsLoaded.add(this)},null,!0),this.shouldLoad=!0}getSubdocs(){return this.subdocs}getSubdocGuids(){return new Set(Tl(this.subdocs).map(t=>t.guid))}transact(t,n=null){return Ho(this,t,n)}get(t,n=Y0){const o=w1(this.share,t,()=>{const s=new n;return s._integrate(this,null),s}),r=o.constructor;if(n!==Y0&&r!==n)if(r===Y0){const s=new n;s._map=o._map,o._map.forEach(i=>{for(;i!==null;i=i.left)i.parent=s}),s._start=o._start;for(let i=s._start;i!==null;i=i.right)i.parent=s;return s._length=o._length,this.share.set(t,s),s._integrate(this,null),s}else throw new Error(`Type with the name ${t} has already been defined with a different constructor`);return o}getArray(t=""){return this.get(t,R2)}getText(t=""){return this.get(t,ch)}getMap(t=""){return this.get(t,ah)}getXmlElement(t=""){return this.get(t,lh)}getXmlFragment(t=""){return this.get(t,mf)}toJSON(){const t={};return this.share.forEach((n,o)=>{t[o]=n.toJSON()}),t}destroy(){this.isDestroyed=!0,Tl(this.subdocs).forEach(n=>n.destroy());const t=this._item;if(t!==null){this._item=null;const n=t.content;n.doc=new $h({guid:this.guid,...n.opts,shouldLoad:!1}),n.doc._item=t,Ho(t.parent.doc,o=>{const r=n.doc;t.deleted||o.subdocsAdded.add(r),o.subdocsRemoved.add(this)},null,!0)}this.emit("destroyed",[!0]),this.emit("destroy",[this]),super.destroy()}}class Z1e{constructor(t){this.restDecoder=t}resetDsCurVal(){}readDsClock(){return _n(this.restDecoder)}readDsLen(){return _n(this.restDecoder)}}class Q1e extends Z1e{readLeftID(){return to(_n(this.restDecoder),_n(this.restDecoder))}readRightID(){return to(_n(this.restDecoder),_n(this.restDecoder))}readClient(){return _n(this.restDecoder)}readInfo(){return ff(this.restDecoder)}readString(){return Al(this.restDecoder)}readParentInfo(){return _n(this.restDecoder)===1}readTypeRef(){return _n(this.restDecoder)}readLen(){return _n(this.restDecoder)}readAny(){return nh(this.restDecoder)}readBuf(){return y8e(w0(this.restDecoder))}readJSON(){return JSON.parse(Al(this.restDecoder))}readKey(){return Al(this.restDecoder)}}class B8e{constructor(t){this.dsCurrVal=0,this.restDecoder=t}resetDsCurVal(){this.dsCurrVal=0}readDsClock(){return this.dsCurrVal+=_n(this.restDecoder),this.dsCurrVal}readDsLen(){const t=_n(this.restDecoder)+1;return this.dsCurrVal+=t,t}}class ih extends B8e{constructor(t){super(t),this.keys=[],_n(t),this.keyClockDecoder=new LS(w0(t)),this.clientDecoder=new jv(w0(t)),this.leftClockDecoder=new LS(w0(t)),this.rightClockDecoder=new LS(w0(t)),this.infoDecoder=new yU(w0(t),ff),this.stringDecoder=new BEe(w0(t)),this.parentInfoDecoder=new yU(w0(t),ff),this.typeRefDecoder=new jv(w0(t)),this.lenDecoder=new jv(w0(t))}readLeftID(){return new q2(this.clientDecoder.read(),this.leftClockDecoder.read())}readRightID(){return new q2(this.clientDecoder.read(),this.rightClockDecoder.read())}readClient(){return this.clientDecoder.read()}readInfo(){return this.infoDecoder.read()}readString(){return this.stringDecoder.read()}readParentInfo(){return this.parentInfoDecoder.read()===1}readTypeRef(){return this.typeRefDecoder.read()}readLen(){return this.lenDecoder.read()}readAny(){return nh(this.restDecoder)}readBuf(){return w0(this.restDecoder)}readJSON(){return nh(this.restDecoder)}readKey(){const t=this.keyClockDecoder.read();if(t<this.keys.length)return this.keys[t];{const n=this.stringDecoder.read();return this.keys.push(n),n}}}class J1e{constructor(){this.restEncoder=k0()}toUint8Array(){return Sr(this.restEncoder)}resetDsCurVal(){}writeDsClock(t){sn(this.restEncoder,t)}writeDsLen(t){sn(this.restEncoder,t)}}class b3 extends J1e{writeLeftID(t){sn(this.restEncoder,t.client),sn(this.restEncoder,t.clock)}writeRightID(t){sn(this.restEncoder,t.client),sn(this.restEncoder,t.clock)}writeClient(t){sn(this.restEncoder,t)}writeInfo(t){UM(this.restEncoder,t)}writeString(t){uc(this.restEncoder,t)}writeParentInfo(t){sn(this.restEncoder,t?1:0)}writeTypeRef(t){sn(this.restEncoder,t)}writeLen(t){sn(this.restEncoder,t)}writeAny(t){th(this.restEncoder,t)}writeBuf(t){jr(this.restEncoder,t)}writeJSON(t){uc(this.restEncoder,JSON.stringify(t))}writeKey(t){uc(this.restEncoder,t)}}class ese{constructor(){this.restEncoder=k0(),this.dsCurrVal=0}toUint8Array(){return Sr(this.restEncoder)}resetDsCurVal(){this.dsCurrVal=0}writeDsClock(t){const n=t-this.dsCurrVal;this.dsCurrVal=t,sn(this.restEncoder,n)}writeDsLen(t){t===0&&yc(),sn(this.restEncoder,t-1),this.dsCurrVal+=t}}class hf extends ese{constructor(){super(),this.keyMap=new Map,this.keyClock=0,this.keyClockEncoder=new BS,this.clientEncoder=new Pv,this.leftClockEncoder=new BS,this.rightClockEncoder=new BS,this.infoEncoder=new MU(UM),this.stringEncoder=new kEe,this.parentInfoEncoder=new MU(UM),this.typeRefEncoder=new Pv,this.lenEncoder=new Pv}toUint8Array(){const t=k0();return sn(t,0),jr(t,this.keyClockEncoder.toUint8Array()),jr(t,this.clientEncoder.toUint8Array()),jr(t,this.leftClockEncoder.toUint8Array()),jr(t,this.rightClockEncoder.toUint8Array()),jr(t,Sr(this.infoEncoder)),jr(t,this.stringEncoder.toUint8Array()),jr(t,Sr(this.parentInfoEncoder)),jr(t,this.typeRefEncoder.toUint8Array()),jr(t,this.lenEncoder.toUint8Array()),D5(t,Sr(this.restEncoder)),Sr(t)}writeLeftID(t){this.clientEncoder.write(t.client),this.leftClockEncoder.write(t.clock)}writeRightID(t){this.clientEncoder.write(t.client),this.rightClockEncoder.write(t.clock)}writeClient(t){this.clientEncoder.write(t)}writeInfo(t){this.infoEncoder.write(t)}writeString(t){this.stringEncoder.write(t)}writeParentInfo(t){this.parentInfoEncoder.write(t?1:0)}writeTypeRef(t){this.typeRefEncoder.write(t)}writeLen(t){this.lenEncoder.write(t)}writeAny(t){th(this.restEncoder,t)}writeBuf(t){jr(this.restEncoder,t)}writeJSON(t){th(this.restEncoder,t)}writeKey(t){const n=this.keyMap.get(t);n===void 0?(this.keyClockEncoder.write(this.keyClock++),this.stringEncoder.write(t)):this.keyClockEncoder.write(n)}}const L8e=(e,t,n,o)=>{o=$f(o,t[0].id.clock);const r=Ac(t,o);sn(e.restEncoder,t.length-r),e.writeClient(n),sn(e.restEncoder,o);const s=t[r];s.write(e,o-s.id.clock);for(let i=r+1;i<t.length;i++)t[i].write(e,0)},AB=(e,t,n)=>{const o=new Map;n.forEach((r,s)=>{q0(t,s)>r&&o.set(s,r)}),U5(t).forEach((r,s)=>{n.has(s)||o.set(s,0)}),sn(e.restEncoder,o.size),Tl(o.entries()).sort((r,s)=>s[0]-r[0]).forEach(([r,s])=>{L8e(e,t.clients.get(r),r,s)})},P8e=(e,t)=>{const n=fs(),o=_n(e.restDecoder);for(let r=0;r<o;r++){const s=_n(e.restDecoder),i=new Array(s),c=e.readClient();let l=_n(e.restDecoder);n.set(c,{i:0,refs:i});for(let u=0;u<s;u++){const d=e.readInfo();switch(I5&d){case 0:{const p=e.readLen();i[u]=new yi(to(c,l),p),l+=p;break}case 10:{const p=_n(e.restDecoder);i[u]=new Ai(to(c,l),p),l+=p;break}default:{const p=(d&(yl|Ns))===0,f=new b1(to(c,l),null,(d&Ns)===Ns?e.readLeftID():null,null,(d&yl)===yl?e.readRightID():null,p?e.readParentInfo()?t.get(e.readString()):e.readLeftID():null,p&&(d&VM)===VM?e.readString():null,kse(e,d));i[u]=f,l+=f.length}}}}return n},j8e=(e,t,n)=>{const o=[];let r=Tl(n.keys()).sort((b,h)=>b-h);if(r.length===0)return null;const s=()=>{if(r.length===0)return null;let b=n.get(r[r.length-1]);for(;b.refs.length===b.i;)if(r.pop(),r.length>0)b=n.get(r[r.length-1]);else return null;return b};let i=s();if(i===null)return null;const c=new ise,l=new Map,u=(b,h)=>{const g=l.get(b);(g==null||g>h)&&l.set(b,h)};let d=i.refs[i.i++];const p=new Map,f=()=>{for(const b of o){const h=b.id.client,g=n.get(h);g?(g.i--,c.clients.set(h,g.refs.slice(g.i)),n.delete(h),g.i=0,g.refs=[]):c.clients.set(h,[b]),r=r.filter(z=>z!==h)}o.length=0};for(;;){if(d.constructor!==Ai){const h=w1(p,d.id.client,()=>q0(t,d.id.client))-d.id.clock;if(h<0)o.push(d),u(d.id.client,d.id.clock-1),f();else{const g=d.getMissing(e,t);if(g!==null){o.push(d);const z=n.get(g)||{refs:[],i:0};if(z.refs.length===z.i)u(g,q0(t,g)),f();else{d=z.refs[z.i++];continue}}else(h===0||h<d.length)&&(d.integrate(e,h),p.set(d.id.client,d.id.clock+d.length))}}if(o.length>0)d=o.pop();else if(i!==null&&i.i<i.refs.length)d=i.refs[i.i++];else{if(i=s(),i===null)break;d=i.refs[i.i++]}}if(c.clients.size>0){const b=new hf;return AB(b,c,new Map),sn(b.restEncoder,0),{missing:l,update:b.toUint8Array()}}return null},I8e=(e,t)=>AB(e,t.doc.store,t.beforeState),D8e=(e,t,n,o=new ih(e))=>Ho(t,r=>{r.local=!1;let s=!1;const i=r.doc,c=i.store,l=P8e(o,i),u=j8e(r,c,l),d=c.pendingStructs;if(d){for(const[f,b]of d.missing)if(b<q0(c,f)){s=!0;break}if(u){for(const[f,b]of u.missing){const h=d.missing.get(f);(h==null||h>b)&&d.missing.set(f,b)}d.update=L4([d.update,u.update])}}else c.pendingStructs=u;const p=kU(o,r,c);if(c.pendingDs){const f=new ih(Rc(c.pendingDs));_n(f.restDecoder);const b=kU(f,r,c);p&&b?c.pendingDs=L4([p,b]):c.pendingDs=p||b}else c.pendingDs=p;if(s){const f=c.pendingStructs.update;c.pendingStructs=null,tse(r.doc,f)}},n,!1),tse=(e,t,n,o=ih)=>{const r=Rc(t);D8e(r,e,n,new o(r))},nse=(e,t,n)=>tse(e,t,n,Q1e),F8e=(e,t,n=new Map)=>{AB(e,t.store,n),Fh(e,N8e(t.store))},$8e=(e,t=new Uint8Array([0]),n=new hf)=>{const o=ose(t);F8e(n,e,o);const r=[n.toUint8Array()];if(e.store.pendingDs&&r.push(e.store.pendingDs),e.store.pendingStructs&&r.push(rWe(e.store.pendingStructs.update,t)),r.length>1){if(n.constructor===b3)return nWe(r.map((s,i)=>i===0?s:iWe(s)));if(n.constructor===hf)return L4(r)}return r[0]},vB=(e,t)=>$8e(e,t,new b3),V8e=e=>{const t=new Map,n=_n(e.restDecoder);for(let o=0;o<n;o++){const r=_n(e.restDecoder),s=_n(e.restDecoder);t.set(r,s)}return t},ose=e=>V8e(new Z1e(Rc(e))),rse=(e,t)=>(sn(e.restEncoder,t.size),Tl(t.entries()).sort((n,o)=>o[0]-n[0]).forEach(([n,o])=>{sn(e.restEncoder,n),sn(e.restEncoder,o)}),e),H8e=(e,t)=>rse(e,U5(t.store)),U8e=(e,t=new ese)=>(e instanceof Map?rse(t,e):H8e(t,e),t.toUint8Array()),X8e=e=>U8e(e,new J1e);class G8e{constructor(){this.l=[]}}const SU=()=>new G8e,CU=(e,t)=>e.l.push(t),qU=(e,t)=>{const n=e.l,o=n.length;e.l=n.filter(r=>t!==r),o===e.l.length&&console.error("[yjs] Tried to remove event handler that doesn't exist.")},sse=(e,t,n)=>mB(e.l,[t,n]);class q2{constructor(t,n){this.client=t,this.clock=n}}const bA=(e,t)=>e===t||e!==null&&t!==null&&e.client===t.client&&e.clock===t.clock,to=(e,t)=>new q2(e,t),K8e=e=>{for(const[t,n]of e.doc.share.entries())if(n===e)return t;throw yc()},o2=(e,t)=>t===void 0?!e.deleted:t.sv.has(e.id.client)&&(t.sv.get(e.id.client)||0)>e.id.clock&&!K1e(t.ds,e.id),PE=(e,t)=>{const n=w1(e.meta,PE,zd),o=e.doc.store;n.has(t)||(t.sv.forEach((r,s)=>{r<q0(o,s)&&Od(e,to(s,r))}),G1e(e,t.ds,r=>{}),n.add(t))};class ise{constructor(){this.clients=new Map,this.pendingStructs=null,this.pendingDs=null}}const U5=e=>{const t=new Map;return e.clients.forEach((n,o)=>{const r=n[n.length-1];t.set(o,r.id.clock+r.length)}),t},q0=(e,t)=>{const n=e.clients.get(t);if(n===void 0)return 0;const o=n[n.length-1];return o.id.clock+o.length},ase=(e,t)=>{let n=e.clients.get(t.id.client);if(n===void 0)n=[],e.clients.set(t.id.client,n);else{const o=n[n.length-1];if(o.id.clock+o.length!==t.id.clock)throw yc()}n.push(t)},Ac=(e,t)=>{let n=0,o=e.length-1,r=e[o],s=r.id.clock;if(s===t)return o;let i=Oc(t/(s+r.length-1)*o);for(;n<=o;){if(r=e[i],s=r.id.clock,s<=t){if(t<s+r.length)return i;n=i+1}else o=i-1;i=Oc((n+o)/2)}throw yc()},Y8e=(e,t)=>{const n=e.clients.get(t.client);return n[Ac(n,t.clock)]},DS=Y8e,jE=(e,t,n)=>{const o=Ac(t,n),r=t[o];return r.id.clock<n&&r instanceof b1?(t.splice(o+1,0,$4(e,r,n-r.id.clock)),o+1):o},Od=(e,t)=>{const n=e.doc.store.clients.get(t.client);return n[jE(e,n,t.clock)]},RU=(e,t,n)=>{const o=t.clients.get(n.client),r=Ac(o,n.clock),s=o[r];return n.clock!==s.id.clock+s.length-1&&s.constructor!==yi&&o.splice(r+1,0,$4(e,s,n.clock-s.id.clock+1)),s},Z8e=(e,t,n)=>{const o=e.clients.get(t.id.client);o[Ac(o,t.id.clock)]=n},cse=(e,t,n,o,r)=>{if(o===0)return;const s=n+o;let i=jE(e,t,n),c;do c=t[i++],s<c.id.clock+c.length&&jE(e,t,s),r(c);while(i<t.length&&t[i].id.clock<s)};class Q8e{constructor(t,n,o){this.doc=t,this.deleteSet=new f3,this.beforeState=U5(t.store),this.afterState=new Map,this.changed=new Map,this.changedParentTypes=new Map,this._mergeStructs=[],this.origin=n,this.meta=new Map,this.local=o,this.subdocsAdded=new Set,this.subdocsRemoved=new Set,this.subdocsLoaded=new Set,this._needFormattingCleanup=!1}}const TU=(e,t)=>t.deleteSet.clients.size===0&&!rEe(t.afterState,(n,o)=>t.beforeState.get(o)!==n)?!1:(OB(t.deleteSet),I8e(e,t),Fh(e,t.deleteSet),!0),EU=(e,t,n)=>{const o=t._item;(o===null||o.id.clock<(e.beforeState.get(o.id.client)||0)&&!o.deleted)&&w1(e.changed,t,zd).add(n)},Dv=(e,t)=>{let n=e[t],o=e[t-1],r=t;for(;r>0;n=o,o=e[--r-1]){if(o.deleted===n.deleted&&o.constructor===n.constructor&&o.mergeWith(n)){n instanceof b1&&n.parentSub!==null&&n.parent._map.get(n.parentSub)===n&&n.parent._map.set(n.parentSub,o);continue}break}const s=t-r;return s&&e.splice(t+1-s,s),s},J8e=(e,t,n)=>{for(const[o,r]of e.clients.entries()){const s=t.clients.get(o);for(let i=r.length-1;i>=0;i--){const c=r[i],l=c.clock+c.len;for(let u=Ac(s,c.clock),d=s[u];u<s.length&&d.id.clock<l;d=s[++u]){const p=s[u];if(c.clock+c.len<=p.id.clock)break;p instanceof b1&&p.deleted&&!p.keep&&n(p)&&p.gc(t,!1)}}}},eWe=(e,t)=>{e.clients.forEach((n,o)=>{const r=t.clients.get(o);for(let s=n.length-1;s>=0;s--){const i=n[s],c=cB(r.length-1,1+Ac(r,i.clock+i.len-1));for(let l=c,u=r[l];l>0&&u.id.clock>=i.clock;u=r[l])l-=1+Dv(r,l)}})},lse=(e,t)=>{if(t<e.length){const n=e[t],o=n.doc,r=o.store,s=n.deleteSet,i=n._mergeStructs;try{OB(s),n.afterState=U5(n.doc.store),o.emit("beforeObserverCalls",[n,o]);const c=[];n.changed.forEach((l,u)=>c.push(()=>{(u._item===null||!u._item.deleted)&&u._callObserver(n,l)})),c.push(()=>{n.changedParentTypes.forEach((l,u)=>{u._dEH.l.length>0&&(u._item===null||!u._item.deleted)&&(l=l.filter(d=>d.target._item===null||!d.target._item.deleted),l.forEach(d=>{d.currentTarget=u,d._path=null}),l.sort((d,p)=>d.path.length-p.path.length),sse(u._dEH,l,n))})}),c.push(()=>o.emit("afterTransaction",[n,o])),mB(c,[]),n._needFormattingCleanup&&OWe(n)}finally{o.gc&&J8e(s,r,o.gcFilter),eWe(s,r),n.afterState.forEach((d,p)=>{const f=n.beforeState.get(p)||0;if(f!==d){const b=r.clients.get(p),h=$f(Ac(b,f),1);for(let g=b.length-1;g>=h;)g-=1+Dv(b,g)}});for(let d=i.length-1;d>=0;d--){const{client:p,clock:f}=i[d].id,b=r.clients.get(p),h=Ac(b,f);h+1<b.length&&Dv(b,h+1)>1||h>0&&Dv(b,h)}if(!n.local&&n.afterState.get(o.clientID)!==n.beforeState.get(o.clientID)&&(H1e(V5,ki,"[yjs] ",bf,F1e,"Changed the client-id because another client seems to be using it."),o.clientID=Y1e()),o.emit("afterTransactionCleanup",[n,o]),o._observers.has("update")){const d=new b3;TU(d,n)&&o.emit("update",[d.toUint8Array(),n.origin,o,n])}if(o._observers.has("updateV2")){const d=new hf;TU(d,n)&&o.emit("updateV2",[d.toUint8Array(),n.origin,o,n])}const{subdocsAdded:c,subdocsLoaded:l,subdocsRemoved:u}=n;(c.size>0||u.size>0||l.size>0)&&(c.forEach(d=>{d.clientID=o.clientID,d.collectionid==null&&(d.collectionid=o.collectionid),o.subdocs.add(d)}),u.forEach(d=>o.subdocs.delete(d)),o.emit("subdocs",[{loaded:l,added:c,removed:u},o,n]),u.forEach(d=>d.destroy())),e.length<=t+1?(o._transactionCleanups=[],o.emit("afterAllTransactions",[o,e])):lse(e,t+1)}}},Ho=(e,t,n=null,o=!0)=>{const r=e._transactionCleanups;let s=!1,i=null;e._transaction===null&&(s=!0,e._transaction=new Q8e(e,n,o),r.push(e._transaction),r.length===1&&e.emit("beforeAllTransactions",[e]),e.emit("beforeTransaction",[e._transaction,e]));try{i=t(e._transaction)}finally{if(s){const c=e._transaction===r[0];e._transaction=null,c&&lse(r,0)}}return i};function*tWe(e){const t=_n(e.restDecoder);for(let n=0;n<t;n++){const o=_n(e.restDecoder),r=e.readClient();let s=_n(e.restDecoder);for(let i=0;i<o;i++){const c=e.readInfo();if(c===10){const l=_n(e.restDecoder);yield new Ai(to(r,s),l),s+=l}else if(I5&c){const l=(c&(yl|Ns))===0,u=new b1(to(r,s),null,(c&Ns)===Ns?e.readLeftID():null,null,(c&yl)===yl?e.readRightID():null,l?e.readParentInfo()?e.readString():e.readLeftID():null,l&&(c&VM)===VM?e.readString():null,kse(e,c));yield u,s+=u.length}else{const l=e.readLen();yield new yi(to(r,s),l),s+=l}}}}class xB{constructor(t,n){this.gen=tWe(t),this.curr=null,this.done=!1,this.filterSkips=n,this.next()}next(){do this.curr=this.gen.next().value||null;while(this.filterSkips&&this.curr!==null&&this.curr.constructor===Ai);return this.curr}}class wB{constructor(t){this.currClient=0,this.startClock=0,this.written=0,this.encoder=t,this.clientStructs=[]}}const nWe=e=>L4(e,Q1e,b3),oWe=(e,t)=>{if(e.constructor===yi){const{client:n,clock:o}=e.id;return new yi(to(n,o+t),e.length-t)}else if(e.constructor===Ai){const{client:n,clock:o}=e.id;return new Ai(to(n,o+t),e.length-t)}else{const n=e,{client:o,clock:r}=n.id;return new b1(to(o,r+t),null,to(o,r+t-1),null,n.rightOrigin,n.parent,n.parentSub,n.content.splice(t))}},L4=(e,t=ih,n=hf)=>{if(e.length===1)return e[0];const o=e.map(d=>new t(Rc(d)));let r=o.map(d=>new xB(d,!0)),s=null;const i=new n,c=new wB(i);for(;r=r.filter(f=>f.curr!==null),r.sort((f,b)=>{if(f.curr.id.client===b.curr.id.client){const h=f.curr.id.clock-b.curr.id.clock;return h===0?f.curr.constructor===b.curr.constructor?0:f.curr.constructor===Ai?1:-1:h}else return b.curr.id.client-f.curr.id.client}),r.length!==0;){const d=r[0],p=d.curr.id.client;if(s!==null){let f=d.curr,b=!1;for(;f!==null&&f.id.clock+f.length<=s.struct.id.clock+s.struct.length&&f.id.client>=s.struct.id.client;)f=d.next(),b=!0;if(f===null||f.id.client!==p||b&&f.id.clock>s.struct.id.clock+s.struct.length)continue;if(p!==s.struct.id.client)Hu(c,s.struct,s.offset),s={struct:f,offset:0},d.next();else if(s.struct.id.clock+s.struct.length<f.id.clock)if(s.struct.constructor===Ai)s.struct.length=f.id.clock+f.length-s.struct.id.clock;else{Hu(c,s.struct,s.offset);const h=f.id.clock-s.struct.id.clock-s.struct.length;s={struct:new Ai(to(p,s.struct.id.clock+s.struct.length),h),offset:0}}else{const h=s.struct.id.clock+s.struct.length-f.id.clock;h>0&&(s.struct.constructor===Ai?s.struct.length-=h:f=oWe(f,h)),s.struct.mergeWith(f)||(Hu(c,s.struct,s.offset),s={struct:f,offset:0},d.next())}}else s={struct:d.curr,offset:0},d.next();for(let f=d.curr;f!==null&&f.id.client===p&&f.id.clock===s.struct.id.clock+s.struct.length&&f.constructor!==Ai;f=d.next())Hu(c,s.struct,s.offset),s={struct:f,offset:0}}s!==null&&(Hu(c,s.struct,s.offset),s=null),_B(c);const l=o.map(d=>yB(d)),u=E8e(l);return Fh(i,u),i.toUint8Array()},rWe=(e,t,n=ih,o=hf)=>{const r=ose(t),s=new o,i=new wB(s),c=new n(Rc(e)),l=new xB(c,!1);for(;l.curr;){const d=l.curr,p=d.id.client,f=r.get(p)||0;if(l.curr.constructor===Ai){l.next();continue}if(d.id.clock+d.length>f)for(Hu(i,d,$f(f-d.id.clock,0)),l.next();l.curr&&l.curr.id.client===p;)Hu(i,l.curr,0),l.next();else for(;l.curr&&l.curr.id.client===p&&l.curr.id.clock+l.curr.length<=f;)l.next()}_B(i);const u=yB(c);return Fh(s,u),s.toUint8Array()},use=e=>{e.written>0&&(e.clientStructs.push({written:e.written,restEncoder:Sr(e.encoder.restEncoder)}),e.encoder.restEncoder=k0(),e.written=0)},Hu=(e,t,n)=>{e.written>0&&e.currClient!==t.id.client&&use(e),e.written===0&&(e.currClient=t.id.client,e.encoder.writeClient(t.id.client),sn(e.encoder.restEncoder,t.id.clock+n)),t.write(e.encoder,n),e.written++},_B=e=>{use(e);const t=e.encoder.restEncoder;sn(t,e.clientStructs.length);for(let n=0;n<e.clientStructs.length;n++){const o=e.clientStructs[n];sn(t,o.written),D5(t,o.restEncoder)}},sWe=(e,t,n,o)=>{const r=new n(Rc(e)),s=new xB(r,!1),i=new o,c=new wB(i);for(let u=s.curr;u!==null;u=s.next())Hu(c,t(u),0);_B(c);const l=yB(r);return Fh(i,l),i.toUint8Array()},iWe=e=>sWe(e,l8e,ih,b3),WU="You must not compute changes after the event-handler fired.";class X5{constructor(t,n){this.target=t,this.currentTarget=t,this.transaction=n,this._changes=null,this._keys=null,this._delta=null,this._path=null}get path(){return this._path||(this._path=aWe(this.currentTarget,this.target))}deletes(t){return K1e(this.transaction.deleteSet,t.id)}get keys(){if(this._keys===null){if(this.transaction.doc._transactionCleanups.length===0)throw ba(WU);const t=new Map,n=this.target;this.transaction.changed.get(n).forEach(r=>{if(r!==null){const s=n._map.get(r);let i,c;if(this.adds(s)){let l=s.left;for(;l!==null&&this.adds(l);)l=l.left;if(this.deletes(s))if(l!==null&&this.deletes(l))i="delete",c=ES(l.content.getContent());else return;else l!==null&&this.deletes(l)?(i="update",c=ES(l.content.getContent())):(i="add",c=void 0)}else if(this.deletes(s))i="delete",c=ES(s.content.getContent());else return;t.set(r,{action:i,oldValue:c})}}),this._keys=t}return this._keys}get delta(){return this.changes.delta}adds(t){return t.id.clock>=(this.transaction.beforeState.get(t.id.client)||0)}get changes(){let t=this._changes;if(t===null){if(this.transaction.doc._transactionCleanups.length===0)throw ba(WU);const n=this.target,o=zd(),r=zd(),s=[];if(t={added:o,deleted:r,delta:s,keys:this.keys},this.transaction.changed.get(n).has(null)){let c=null;const l=()=>{c&&s.push(c)};for(let u=n._start;u!==null;u=u.right)u.deleted?this.deletes(u)&&!this.adds(u)&&((c===null||c.delete===void 0)&&(l(),c={delete:0}),c.delete+=u.length,r.add(u)):this.adds(u)?((c===null||c.insert===void 0)&&(l(),c={insert:[]}),c.insert=c.insert.concat(u.content.getContent()),o.add(u)):((c===null||c.retain===void 0)&&(l(),c={retain:0}),c.retain+=u.length);c!==null&&c.retain===void 0&&l()}this._changes=t}return t}}const aWe=(e,t)=>{const n=[];for(;t._item!==null&&t!==e;){if(t._item.parentSub!==null)n.unshift(t._item.parentSub);else{let o=0,r=t._item.parent._start;for(;r!==t._item&&r!==null;)!r.deleted&&r.countable&&(o+=r.length),r=r.right;n.unshift(o)}t=t._item.parent}return n},z1=()=>{C8e("Invalid access: Add Yjs type to a document before reading data.")},dse=80;let kB=0;class cWe{constructor(t,n){t.marker=!0,this.p=t,this.index=n,this.timestamp=kB++}}const lWe=e=>{e.timestamp=kB++},pse=(e,t,n)=>{e.p.marker=!1,e.p=t,t.marker=!0,e.index=n,e.timestamp=kB++},uWe=(e,t,n)=>{if(e.length>=dse){const o=e.reduce((r,s)=>r.timestamp<s.timestamp?r:s);return pse(o,t,n),o}else{const o=new cWe(t,n);return e.push(o),o}},G5=(e,t)=>{if(e._start===null||t===0||e._searchMarker===null)return null;const n=e._searchMarker.length===0?null:e._searchMarker.reduce((s,i)=>Lv(t-s.index)<Lv(t-i.index)?s:i);let o=e._start,r=0;for(n!==null&&(o=n.p,r=n.index,lWe(n));o.right!==null&&r<t;){if(!o.deleted&&o.countable){if(t<r+o.length)break;r+=o.length}o=o.right}for(;o.left!==null&&r>t;)o=o.left,!o.deleted&&o.countable&&(r-=o.length);for(;o.left!==null&&o.left.id.client===o.id.client&&o.left.id.clock+o.left.length===o.id.clock;)o=o.left,!o.deleted&&o.countable&&(r-=o.length);return n!==null&&Lv(n.index-r)<o.parent.length/dse?(pse(n,o,r),n):uWe(e._searchMarker,o,r)},GM=(e,t,n)=>{for(let o=e.length-1;o>=0;o--){const r=e[o];if(n>0){let s=r.p;for(s.marker=!1;s&&(s.deleted||!s.countable);)s=s.left,s&&!s.deleted&&s.countable&&(r.index-=s.length);if(s===null||s.marker===!0){e.splice(o,1);continue}r.p=s,s.marker=!0}(t<r.index||n>0&&t===r.index)&&(r.index=$f(t,r.index+n))}},K5=(e,t,n)=>{const o=e,r=t.changedParentTypes;for(;w1(r,e,()=>[]).push(n),e._item!==null;)e=e._item.parent;sse(o._eH,n,t)};class Y0{constructor(){this._item=null,this._map=new Map,this._start=null,this.doc=null,this._length=0,this._eH=SU(),this._dEH=SU(),this._searchMarker=null}get parent(){return this._item?this._item.parent:null}_integrate(t,n){this.doc=t,this._item=n}_copy(){throw dc()}clone(){throw dc()}_write(t){}get _first(){let t=this._start;for(;t!==null&&t.deleted;)t=t.right;return t}_callObserver(t,n){!t.local&&this._searchMarker&&(this._searchMarker.length=0)}observe(t){CU(this._eH,t)}observeDeep(t){CU(this._dEH,t)}unobserve(t){qU(this._eH,t)}unobserveDeep(t){qU(this._dEH,t)}toJSON(){}}const fse=(e,t,n)=>{e.doc??z1(),t<0&&(t=e._length+t),n<0&&(n=e._length+n);let o=n-t;const r=[];let s=e._start;for(;s!==null&&o>0;){if(s.countable&&!s.deleted){const i=s.content.getContent();if(i.length<=t)t-=i.length;else{for(let c=t;c<i.length&&o>0;c++)r.push(i[c]),o--;t=0}}s=s.right}return r},bse=e=>{e.doc??z1();const t=[];let n=e._start;for(;n!==null;){if(n.countable&&!n.deleted){const o=n.content.getContent();for(let r=0;r<o.length;r++)t.push(o[r])}n=n.right}return t},KM=(e,t)=>{let n=0,o=e._start;for(e.doc??z1();o!==null;){if(o.countable&&!o.deleted){const r=o.content.getContent();for(let s=0;s<r.length;s++)t(r[s],n++,e)}o=o.right}},hse=(e,t)=>{const n=[];return KM(e,(o,r)=>{n.push(t(o,r,e))}),n},dWe=e=>{let t=e._start,n=null,o=0;return{[Symbol.iterator](){return this},next:()=>{if(n===null){for(;t!==null&&t.deleted;)t=t.right;if(t===null)return{done:!0,value:void 0};n=t.content.getContent(),o=0,t=t.right}const r=n[o++];return n.length<=o&&(n=null),{done:!1,value:r}}}},mse=(e,t)=>{e.doc??z1();const n=G5(e,t);let o=e._start;for(n!==null&&(o=n.p,t-=n.index);o!==null;o=o.right)if(!o.deleted&&o.countable){if(t<o.length)return o.content.getContent()[t];t-=o.length}},P4=(e,t,n,o)=>{let r=n;const s=e.doc,i=s.clientID,c=s.store,l=n===null?t._start:n.right;let u=[];const d=()=>{u.length>0&&(r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new gf(u)),r.integrate(e,0),u=[])};o.forEach(p=>{if(p===null)u.push(p);else switch(p.constructor){case Number:case Object:case Boolean:case Array:case String:u.push(p);break;default:switch(d(),p.constructor){case Uint8Array:case ArrayBuffer:r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new h3(new Uint8Array(p))),r.integrate(e,0);break;case $h:r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new m3(p)),r.integrate(e,0);break;default:if(p instanceof Y0)r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new Zl(p)),r.integrate(e,0);else throw new Error("Unexpected content type in insert operation")}}}),d()},gse=()=>ba("Length exceeded!"),Mse=(e,t,n,o)=>{if(n>t._length)throw gse();if(n===0)return t._searchMarker&&GM(t._searchMarker,n,o.length),P4(e,t,null,o);const r=n,s=G5(t,n);let i=t._start;for(s!==null&&(i=s.p,n-=s.index,n===0&&(i=i.prev,n+=i&&i.countable&&!i.deleted?i.length:0));i!==null;i=i.right)if(!i.deleted&&i.countable){if(n<=i.length){n<i.length&&Od(e,to(i.id.client,i.id.clock+n));break}n-=i.length}return t._searchMarker&&GM(t._searchMarker,r,o.length),P4(e,t,i,o)},pWe=(e,t,n)=>{let r=(t._searchMarker||[]).reduce((s,i)=>i.index>s.index?i:s,{index:0,p:t._start}).p;if(r)for(;r.right;)r=r.right;return P4(e,t,r,n)},zse=(e,t,n,o)=>{if(o===0)return;const r=n,s=o,i=G5(t,n);let c=t._start;for(i!==null&&(c=i.p,n-=i.index);c!==null&&n>0;c=c.right)!c.deleted&&c.countable&&(n<c.length&&Od(e,to(c.id.client,c.id.clock+n)),n-=c.length);for(;o>0&&c!==null;)c.deleted||(o<c.length&&Od(e,to(c.id.client,c.id.clock+o)),c.delete(e),o-=c.length),c=c.right;if(o>0)throw gse();t._searchMarker&&GM(t._searchMarker,r,-s+o)},j4=(e,t,n)=>{const o=t._map.get(n);o!==void 0&&o.delete(e)},SB=(e,t,n,o)=>{const r=t._map.get(n)||null,s=e.doc,i=s.clientID;let c;if(o==null)c=new gf([o]);else switch(o.constructor){case Number:case Object:case Boolean:case Array:case String:c=new gf([o]);break;case Uint8Array:c=new h3(o);break;case $h:c=new m3(o);break;default:if(o instanceof Y0)c=new Zl(o);else throw new Error("Unexpected content type")}new b1(to(i,q0(s.store,i)),r,r&&r.lastId,null,null,t,n,c).integrate(e,0)},CB=(e,t)=>{e.doc??z1();const n=e._map.get(t);return n!==void 0&&!n.deleted?n.content.getContent()[n.length-1]:void 0},Ose=e=>{const t={};return e.doc??z1(),e._map.forEach((n,o)=>{n.deleted||(t[o]=n.content.getContent()[n.length-1])}),t},yse=(e,t)=>{e.doc??z1();const n=e._map.get(t);return n!==void 0&&!n.deleted},fWe=(e,t)=>{const n={};return e._map.forEach((o,r)=>{let s=o;for(;s!==null&&(!t.sv.has(s.id.client)||s.id.clock>=(t.sv.get(s.id.client)||0));)s=s.left;s!==null&&o2(s,t)&&(n[r]=s.content.getContent()[s.length-1])}),n},hA=e=>(e.doc??z1(),R8e(e._map.entries(),t=>!t[1].deleted));class bWe extends X5{}class R2 extends Y0{constructor(){super(),this._prelimContent=[],this._searchMarker=[]}static from(t){const n=new R2;return n.push(t),n}_integrate(t,n){super._integrate(t,n),this.insert(0,this._prelimContent),this._prelimContent=null}_copy(){return new R2}clone(){const t=new R2;return t.insert(0,this.toArray().map(n=>n instanceof Y0?n.clone():n)),t}get length(){return this.doc??z1(),this._length}_callObserver(t,n){super._callObserver(t,n),K5(this,t,new bWe(this,t))}insert(t,n){this.doc!==null?Ho(this.doc,o=>{Mse(o,this,t,n)}):this._prelimContent.splice(t,0,...n)}push(t){this.doc!==null?Ho(this.doc,n=>{pWe(n,this,t)}):this._prelimContent.push(...t)}unshift(t){this.insert(0,t)}delete(t,n=1){this.doc!==null?Ho(this.doc,o=>{zse(o,this,t,n)}):this._prelimContent.splice(t,n)}get(t){return mse(this,t)}toArray(){return bse(this)}slice(t=0,n=this.length){return fse(this,t,n)}toJSON(){return this.map(t=>t instanceof Y0?t.toJSON():t)}map(t){return hse(this,t)}forEach(t){KM(this,t)}[Symbol.iterator](){return dWe(this)}_write(t){t.writeTypeRef(jWe)}}const hWe=e=>new R2;class mWe extends X5{constructor(t,n,o){super(t,n),this.keysChanged=o}}class ah extends Y0{constructor(t){super(),this._prelimContent=null,t===void 0?this._prelimContent=new Map:this._prelimContent=new Map(t)}_integrate(t,n){super._integrate(t,n),this._prelimContent.forEach((o,r)=>{this.set(r,o)}),this._prelimContent=null}_copy(){return new ah}clone(){const t=new ah;return this.forEach((n,o)=>{t.set(o,n instanceof Y0?n.clone():n)}),t}_callObserver(t,n){K5(this,t,new mWe(this,t,n))}toJSON(){this.doc??z1();const t={};return this._map.forEach((n,o)=>{if(!n.deleted){const r=n.content.getContent()[n.length-1];t[o]=r instanceof Y0?r.toJSON():r}}),t}get size(){return[...hA(this)].length}keys(){return IS(hA(this),t=>t[0])}values(){return IS(hA(this),t=>t[1].content.getContent()[t[1].length-1])}entries(){return IS(hA(this),t=>[t[0],t[1].content.getContent()[t[1].length-1]])}forEach(t){this.doc??z1(),this._map.forEach((n,o)=>{n.deleted||t(n.content.getContent()[n.length-1],o,this)})}[Symbol.iterator](){return this.entries()}delete(t){this.doc!==null?Ho(this.doc,n=>{j4(n,this,t)}):this._prelimContent.delete(t)}set(t,n){return this.doc!==null?Ho(this.doc,o=>{SB(o,this,t,n)}):this._prelimContent.set(t,n),n}get(t){return CB(this,t)}has(t){return yse(this,t)}clear(){this.doc!==null?Ho(this.doc,t=>{this.forEach(function(n,o,r){j4(t,r,o)})}):this._prelimContent.clear()}_write(t){t.writeTypeRef(IWe)}}const gWe=e=>new ah,Zu=(e,t)=>e===t||typeof e=="object"&&typeof t=="object"&&e&&t&&i8e(e,t);class IE{constructor(t,n,o,r){this.left=t,this.right=n,this.index=o,this.currentAttributes=r}forward(){switch(this.right===null&&yc(),this.right.content.constructor){case m0:this.right.deleted||Vh(this.currentAttributes,this.right.content);break;default:this.right.deleted||(this.index+=this.right.length);break}this.left=this.right,this.right=this.right.right}}const NU=(e,t,n)=>{for(;t.right!==null&&n>0;){switch(t.right.content.constructor){case m0:t.right.deleted||Vh(t.currentAttributes,t.right.content);break;default:t.right.deleted||(n<t.right.length&&Od(e,to(t.right.id.client,t.right.id.clock+n)),t.index+=t.right.length,n-=t.right.length);break}t.left=t.right,t.right=t.right.right}return t},mA=(e,t,n,o)=>{const r=new Map,s=o?G5(t,n):null;if(s){const i=new IE(s.p.left,s.p,s.index,r);return NU(e,i,n-s.index)}else{const i=new IE(null,t._start,0,r);return NU(e,i,n)}},Ase=(e,t,n,o)=>{for(;n.right!==null&&(n.right.deleted===!0||n.right.content.constructor===m0&&Zu(o.get(n.right.content.key),n.right.content.value));)n.right.deleted||o.delete(n.right.content.key),n.forward();const r=e.doc,s=r.clientID;o.forEach((i,c)=>{const l=n.left,u=n.right,d=new b1(to(s,q0(r.store,s)),l,l&&l.lastId,u,u&&u.id,t,null,new m0(c,i));d.integrate(e,0),n.right=d,n.forward()})},Vh=(e,t)=>{const{key:n,value:o}=t;o===null?e.delete(n):e.set(n,o)},vse=(e,t)=>{for(;e.right!==null;){if(!(e.right.deleted||e.right.content.constructor===m0&&Zu(t[e.right.content.key]??null,e.right.content.value)))break;e.forward()}},xse=(e,t,n,o)=>{const r=e.doc,s=r.clientID,i=new Map;for(const c in o){const l=o[c],u=n.currentAttributes.get(c)??null;if(!Zu(u,l)){i.set(c,u);const{left:d,right:p}=n;n.right=new b1(to(s,q0(r.store,s)),d,d&&d.lastId,p,p&&p.id,t,null,new m0(c,l)),n.right.integrate(e,0),n.forward()}}return i},FS=(e,t,n,o,r)=>{n.currentAttributes.forEach((f,b)=>{r[b]===void 0&&(r[b]=null)});const s=e.doc,i=s.clientID;vse(n,r);const c=xse(e,t,n,r),l=o.constructor===String?new vc(o):o instanceof Y0?new Zl(o):new Vf(o);let{left:u,right:d,index:p}=n;t._searchMarker&&GM(t._searchMarker,n.index,l.getLength()),d=new b1(to(i,q0(s.store,i)),u,u&&u.lastId,d,d&&d.id,t,null,l),d.integrate(e,0),n.right=d,n.index=p,n.forward(),Ase(e,t,n,c)},BU=(e,t,n,o,r)=>{const s=e.doc,i=s.clientID;vse(n,r);const c=xse(e,t,n,r);e:for(;n.right!==null&&(o>0||c.size>0&&(n.right.deleted||n.right.content.constructor===m0));){if(!n.right.deleted)switch(n.right.content.constructor){case m0:{const{key:l,value:u}=n.right.content,d=r[l];if(d!==void 0){if(Zu(d,u))c.delete(l);else{if(o===0)break e;c.set(l,u)}n.right.delete(e)}else n.currentAttributes.set(l,u);break}default:o<n.right.length&&Od(e,to(n.right.id.client,n.right.id.clock+o)),o-=n.right.length;break}n.forward()}if(o>0){let l="";for(;o>0;o--)l+=` -`;n.right=new b1(to(i,q0(s.store,i)),n.left,n.left&&n.left.lastId,n.right,n.right&&n.right.id,t,null,new vc(l)),n.right.integrate(e,0),n.forward()}Ase(e,t,n,c)},wse=(e,t,n,o,r)=>{let s=t;const i=fs();for(;s&&(!s.countable||s.deleted);){if(!s.deleted&&s.content.constructor===m0){const u=s.content;i.set(u.key,u)}s=s.right}let c=0,l=!1;for(;t!==s;){if(n===t&&(l=!0),!t.deleted){const u=t.content;switch(u.constructor){case m0:{const{key:d,value:p}=u,f=o.get(d)??null;(i.get(d)!==u||f===p)&&(t.delete(e),c++,!l&&(r.get(d)??null)===p&&f!==p&&(f===null?r.delete(d):r.set(d,f))),!l&&!t.deleted&&Vh(r,u);break}}}t=t.right}return c},MWe=(e,t)=>{for(;t&&t.right&&(t.right.deleted||!t.right.countable);)t=t.right;const n=new Set;for(;t&&(t.deleted||!t.countable);){if(!t.deleted&&t.content.constructor===m0){const o=t.content.key;n.has(o)?t.delete(e):n.add(o)}t=t.left}},zWe=e=>{let t=0;return Ho(e.doc,n=>{let o=e._start,r=e._start,s=fs();const i=RE(s);for(;r;){if(r.deleted===!1)switch(r.content.constructor){case m0:Vh(i,r.content);break;default:t+=wse(n,o,r,s,i),s=RE(i),o=r;break}r=r.right}}),t},OWe=e=>{const t=new Set,n=e.doc;for(const[o,r]of e.afterState.entries()){const s=e.beforeState.get(o)||0;r!==s&&cse(e,n.store.clients.get(o),s,r,i=>{!i.deleted&&i.content.constructor===m0&&i.constructor!==yi&&t.add(i.parent)})}Ho(n,o=>{G1e(e,e.deleteSet,r=>{if(r instanceof yi||!r.parent._hasFormatting||t.has(r.parent))return;const s=r.parent;r.content.constructor===m0?t.add(s):MWe(o,r)});for(const r of t)zWe(r)})},LU=(e,t,n)=>{const o=n,r=RE(t.currentAttributes),s=t.right;for(;n>0&&t.right!==null;){if(t.right.deleted===!1)switch(t.right.content.constructor){case Zl:case Vf:case vc:n<t.right.length&&Od(e,to(t.right.id.client,t.right.id.clock+n)),n-=t.right.length,t.right.delete(e);break}t.forward()}s&&wse(e,s,t.right,r,t.currentAttributes);const i=(t.left||t.right).parent;return i._searchMarker&&GM(i._searchMarker,t.index,-o+n),t};class yWe extends X5{constructor(t,n,o){super(t,n),this.childListChanged=!1,this.keysChanged=new Set,o.forEach(r=>{r===null?this.childListChanged=!0:this.keysChanged.add(r)})}get changes(){if(this._changes===null){const t={keys:this.keys,delta:this.delta,added:new Set,deleted:new Set};this._changes=t}return this._changes}get delta(){if(this._delta===null){const t=this.target.doc,n=[];Ho(t,o=>{const r=new Map,s=new Map;let i=this.target._start,c=null;const l={};let u="",d=0,p=0;const f=()=>{if(c!==null){let b=null;switch(c){case"delete":p>0&&(b={delete:p}),p=0;break;case"insert":(typeof u=="object"||u.length>0)&&(b={insert:u},r.size>0&&(b.attributes={},r.forEach((h,g)=>{h!==null&&(b.attributes[g]=h)}))),u="";break;case"retain":d>0&&(b={retain:d},r8e(l)||(b.attributes=n8e({},l))),d=0;break}b&&n.push(b),c=null}};for(;i!==null;){switch(i.content.constructor){case Zl:case Vf:this.adds(i)?this.deletes(i)||(f(),c="insert",u=i.content.getContent()[0],f()):this.deletes(i)?(c!=="delete"&&(f(),c="delete"),p+=1):i.deleted||(c!=="retain"&&(f(),c="retain"),d+=1);break;case vc:this.adds(i)?this.deletes(i)||(c!=="insert"&&(f(),c="insert"),u+=i.content.str):this.deletes(i)?(c!=="delete"&&(f(),c="delete"),p+=i.length):i.deleted||(c!=="retain"&&(f(),c="retain"),d+=i.length);break;case m0:{const{key:b,value:h}=i.content;if(this.adds(i)){if(!this.deletes(i)){const g=r.get(b)??null;Zu(g,h)?h!==null&&i.delete(o):(c==="retain"&&f(),Zu(h,s.get(b)??null)?delete l[b]:l[b]=h)}}else if(this.deletes(i)){s.set(b,h);const g=r.get(b)??null;Zu(g,h)||(c==="retain"&&f(),l[b]=g)}else if(!i.deleted){s.set(b,h);const g=l[b];g!==void 0&&(Zu(g,h)?g!==null&&i.delete(o):(c==="retain"&&f(),h===null?delete l[b]:l[b]=h))}i.deleted||(c==="insert"&&f(),Vh(r,i.content));break}}i=i.right}for(f();n.length>0;){const b=n[n.length-1];if(b.retain!==void 0&&b.attributes===void 0)n.pop();else break}}),this._delta=n}return this._delta}}class ch extends Y0{constructor(t){super(),this._pending=t!==void 0?[()=>this.insert(0,t)]:[],this._searchMarker=[],this._hasFormatting=!1}get length(){return this.doc??z1(),this._length}_integrate(t,n){super._integrate(t,n);try{this._pending.forEach(o=>o())}catch(o){console.error(o)}this._pending=null}_copy(){return new ch}clone(){const t=new ch;return t.applyDelta(this.toDelta()),t}_callObserver(t,n){super._callObserver(t,n);const o=new yWe(this,t,n);K5(this,t,o),!t.local&&this._hasFormatting&&(t._needFormattingCleanup=!0)}toString(){this.doc??z1();let t="",n=this._start;for(;n!==null;)!n.deleted&&n.countable&&n.content.constructor===vc&&(t+=n.content.str),n=n.right;return t}toJSON(){return this.toString()}applyDelta(t,{sanitize:n=!0}={}){this.doc!==null?Ho(this.doc,o=>{const r=new IE(null,this._start,0,new Map);for(let s=0;s<t.length;s++){const i=t[s];if(i.insert!==void 0){const c=!n&&typeof i.insert=="string"&&s===t.length-1&&r.right===null&&i.insert.slice(-1)===` -`?i.insert.slice(0,-1):i.insert;(typeof c!="string"||c.length>0)&&FS(o,this,r,c,i.attributes||{})}else i.retain!==void 0?BU(o,this,r,i.retain,i.attributes||{}):i.delete!==void 0&&LU(o,r,i.delete)}}):this._pending.push(()=>this.applyDelta(t))}toDelta(t,n,o){this.doc??z1();const r=[],s=new Map,i=this.doc;let c="",l=this._start;function u(){if(c.length>0){const p={};let f=!1;s.forEach((h,g)=>{f=!0,p[g]=h});const b={insert:c};f&&(b.attributes=p),r.push(b),c=""}}const d=()=>{for(;l!==null;){if(o2(l,t)||n!==void 0&&o2(l,n))switch(l.content.constructor){case vc:{const p=s.get("ychange");t!==void 0&&!o2(l,t)?(p===void 0||p.user!==l.id.client||p.type!=="removed")&&(u(),s.set("ychange",o?o("removed",l.id):{type:"removed"})):n!==void 0&&!o2(l,n)?(p===void 0||p.user!==l.id.client||p.type!=="added")&&(u(),s.set("ychange",o?o("added",l.id):{type:"added"})):p!==void 0&&(u(),s.delete("ychange")),c+=l.content.str;break}case Zl:case Vf:{u();const p={insert:l.content.getContent()[0]};if(s.size>0){const f={};p.attributes=f,s.forEach((b,h)=>{f[h]=b})}r.push(p);break}case m0:o2(l,t)&&(u(),Vh(s,l.content));break}l=l.right}u()};return t||n?Ho(i,p=>{t&&PE(p,t),n&&PE(p,n),d()},"cleanup"):d(),r}insert(t,n,o){if(n.length<=0)return;const r=this.doc;r!==null?Ho(r,s=>{const i=mA(s,this,t,!o);o||(o={},i.currentAttributes.forEach((c,l)=>{o[l]=c})),FS(s,this,i,n,o)}):this._pending.push(()=>this.insert(t,n,o))}insertEmbed(t,n,o){const r=this.doc;r!==null?Ho(r,s=>{const i=mA(s,this,t,!o);FS(s,this,i,n,o||{})}):this._pending.push(()=>this.insertEmbed(t,n,o||{}))}delete(t,n){if(n===0)return;const o=this.doc;o!==null?Ho(o,r=>{LU(r,mA(r,this,t,!0),n)}):this._pending.push(()=>this.delete(t,n))}format(t,n,o){if(n===0)return;const r=this.doc;r!==null?Ho(r,s=>{const i=mA(s,this,t,!1);i.right!==null&&BU(s,this,i,n,o)}):this._pending.push(()=>this.format(t,n,o))}removeAttribute(t){this.doc!==null?Ho(this.doc,n=>{j4(n,this,t)}):this._pending.push(()=>this.removeAttribute(t))}setAttribute(t,n){this.doc!==null?Ho(this.doc,o=>{SB(o,this,t,n)}):this._pending.push(()=>this.setAttribute(t,n))}getAttribute(t){return CB(this,t)}getAttributes(){return Ose(this)}_write(t){t.writeTypeRef(DWe)}}const AWe=e=>new ch;class $S{constructor(t,n=()=>!0){this._filter=n,this._root=t,this._currentNode=t._start,this._firstCall=!0,t.doc??z1()}[Symbol.iterator](){return this}next(){let t=this._currentNode,n=t&&t.content&&t.content.type;if(t!==null&&(!this._firstCall||t.deleted||!this._filter(n)))do if(n=t.content.type,!t.deleted&&(n.constructor===lh||n.constructor===mf)&&n._start!==null)t=n._start;else for(;t!==null;)if(t.right!==null){t=t.right;break}else t.parent===this._root?t=null:t=t.parent._item;while(t!==null&&(t.deleted||!this._filter(t.content.type)));return this._firstCall=!1,t===null?{value:void 0,done:!0}:(this._currentNode=t,{value:t.content.type,done:!1})}}class mf extends Y0{constructor(){super(),this._prelimContent=[]}get firstChild(){const t=this._first;return t?t.content.getContent()[0]:null}_integrate(t,n){super._integrate(t,n),this.insert(0,this._prelimContent),this._prelimContent=null}_copy(){return new mf}clone(){const t=new mf;return t.insert(0,this.toArray().map(n=>n instanceof Y0?n.clone():n)),t}get length(){return this.doc??z1(),this._prelimContent===null?this._length:this._prelimContent.length}createTreeWalker(t){return new $S(this,t)}querySelector(t){t=t.toUpperCase();const o=new $S(this,r=>r.nodeName&&r.nodeName.toUpperCase()===t).next();return o.done?null:o.value}querySelectorAll(t){return t=t.toUpperCase(),Tl(new $S(this,n=>n.nodeName&&n.nodeName.toUpperCase()===t))}_callObserver(t,n){K5(this,t,new wWe(this,n,t))}toString(){return hse(this,t=>t.toString()).join("")}toJSON(){return this.toString()}toDOM(t=document,n={},o){const r=t.createDocumentFragment();return o!==void 0&&o._createAssociation(r,this),KM(this,s=>{r.insertBefore(s.toDOM(t,n,o),null)}),r}insert(t,n){this.doc!==null?Ho(this.doc,o=>{Mse(o,this,t,n)}):this._prelimContent.splice(t,0,...n)}insertAfter(t,n){if(this.doc!==null)Ho(this.doc,o=>{const r=t&&t instanceof Y0?t._item:t;P4(o,this,r,n)});else{const o=this._prelimContent,r=t===null?0:o.findIndex(s=>s===t)+1;if(r===0&&t!==null)throw ba("Reference item not found");o.splice(r,0,...n)}}delete(t,n=1){this.doc!==null?Ho(this.doc,o=>{zse(o,this,t,n)}):this._prelimContent.splice(t,n)}toArray(){return bse(this)}push(t){this.insert(this.length,t)}unshift(t){this.insert(0,t)}get(t){return mse(this,t)}slice(t=0,n=this.length){return fse(this,t,n)}forEach(t){KM(this,t)}_write(t){t.writeTypeRef($We)}}const vWe=e=>new mf;class lh extends mf{constructor(t="UNDEFINED"){super(),this.nodeName=t,this._prelimAttrs=new Map}get nextSibling(){const t=this._item?this._item.next:null;return t?t.content.type:null}get prevSibling(){const t=this._item?this._item.prev:null;return t?t.content.type:null}_integrate(t,n){super._integrate(t,n),this._prelimAttrs.forEach((o,r)=>{this.setAttribute(r,o)}),this._prelimAttrs=null}_copy(){return new lh(this.nodeName)}clone(){const t=new lh(this.nodeName),n=this.getAttributes();return o8e(n,(o,r)=>{typeof o=="string"&&t.setAttribute(r,o)}),t.insert(0,this.toArray().map(o=>o instanceof Y0?o.clone():o)),t}toString(){const t=this.getAttributes(),n=[],o=[];for(const c in t)o.push(c);o.sort();const r=o.length;for(let c=0;c<r;c++){const l=o[c];n.push(l+'="'+t[l]+'"')}const s=this.nodeName.toLocaleLowerCase(),i=n.length>0?" "+n.join(" "):"";return`<${s}${i}>${super.toString()}</${s}>`}removeAttribute(t){this.doc!==null?Ho(this.doc,n=>{j4(n,this,t)}):this._prelimAttrs.delete(t)}setAttribute(t,n){this.doc!==null?Ho(this.doc,o=>{SB(o,this,t,n)}):this._prelimAttrs.set(t,n)}getAttribute(t){return CB(this,t)}hasAttribute(t){return yse(this,t)}getAttributes(t){return t?fWe(this,t):Ose(this)}toDOM(t=document,n={},o){const r=t.createElement(this.nodeName),s=this.getAttributes();for(const i in s){const c=s[i];typeof c=="string"&&r.setAttribute(i,c)}return KM(this,i=>{r.appendChild(i.toDOM(t,n,o))}),o!==void 0&&o._createAssociation(r,this),r}_write(t){t.writeTypeRef(FWe),t.writeKey(this.nodeName)}}const xWe=e=>new lh(e.readKey());class wWe extends X5{constructor(t,n,o){super(t,o),this.childListChanged=!1,this.attributesChanged=new Set,n.forEach(r=>{r===null?this.childListChanged=!0:this.attributesChanged.add(r)})}}class I4 extends ah{constructor(t){super(),this.hookName=t}_copy(){return new I4(this.hookName)}clone(){const t=new I4(this.hookName);return this.forEach((n,o)=>{t.set(o,n)}),t}toDOM(t=document,n={},o){const r=n[this.hookName];let s;return r!==void 0?s=r.createDom(this):s=document.createElement(this.hookName),s.setAttribute("data-yjs-hook",this.hookName),o!==void 0&&o._createAssociation(s,this),s}_write(t){t.writeTypeRef(VWe),t.writeKey(this.hookName)}}const _We=e=>new I4(e.readKey());class D4 extends ch{get nextSibling(){const t=this._item?this._item.next:null;return t?t.content.type:null}get prevSibling(){const t=this._item?this._item.prev:null;return t?t.content.type:null}_copy(){return new D4}clone(){const t=new D4;return t.applyDelta(this.toDelta()),t}toDOM(t=document,n,o){const r=t.createTextNode(this.toString());return o!==void 0&&o._createAssociation(r,this),r}toString(){return this.toDelta().map(t=>{const n=[];for(const r in t.attributes){const s=[];for(const i in t.attributes[r])s.push({key:i,value:t.attributes[r][i]});s.sort((i,c)=>i.key<c.key?-1:1),n.push({nodeName:r,attrs:s})}n.sort((r,s)=>r.nodeName<s.nodeName?-1:1);let o="";for(let r=0;r<n.length;r++){const s=n[r];o+=`<${s.nodeName}`;for(let i=0;i<s.attrs.length;i++){const c=s.attrs[i];o+=` ${c.key}="${c.value}"`}o+=">"}o+=t.insert;for(let r=n.length-1;r>=0;r--)o+=`</${n[r].nodeName}>`;return o}).join("")}toJSON(){return this.toString()}_write(t){t.writeTypeRef(HWe)}}const kWe=e=>new D4;class qB{constructor(t,n){this.id=t,this.length=n}get deleted(){throw dc()}mergeWith(t){return!1}write(t,n,o){throw dc()}integrate(t,n){throw dc()}}const SWe=0;class yi extends qB{get deleted(){return!0}delete(){}mergeWith(t){return this.constructor!==t.constructor?!1:(this.length+=t.length,!0)}integrate(t,n){n>0&&(this.id.clock+=n,this.length-=n),ase(t.doc.store,this)}write(t,n){t.writeInfo(SWe),t.writeLen(this.length-n)}getMissing(t,n){return null}}class h3{constructor(t){this.content=t}getLength(){return 1}getContent(){return[this.content]}isCountable(){return!0}copy(){return new h3(this.content)}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){}delete(t){}gc(t){}write(t,n){t.writeBuf(this.content)}getRef(){return 3}}const CWe=e=>new h3(e.readBuf());class YM{constructor(t){this.len=t}getLength(){return this.len}getContent(){return[]}isCountable(){return!1}copy(){return new YM(this.len)}splice(t){const n=new YM(this.len-t);return this.len=t,n}mergeWith(t){return this.len+=t.len,!0}integrate(t,n){B4(t.deleteSet,n.id.client,n.id.clock,this.len),n.markDeleted()}delete(t){}gc(t){}write(t,n){t.writeLen(this.len-n)}getRef(){return 1}}const qWe=e=>new YM(e.readLen()),_se=(e,t)=>new $h({guid:e,...t,shouldLoad:t.shouldLoad||t.autoLoad||!1});class m3{constructor(t){t._item&&console.error("This document was already integrated as a sub-document. You should create a second instance instead with the same guid."),this.doc=t;const n={};this.opts=n,t.gc||(n.gc=!1),t.autoLoad&&(n.autoLoad=!0),t.meta!==null&&(n.meta=t.meta)}getLength(){return 1}getContent(){return[this.doc]}isCountable(){return!0}copy(){return new m3(_se(this.doc.guid,this.opts))}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){this.doc._item=n,t.subdocsAdded.add(this.doc),this.doc.shouldLoad&&t.subdocsLoaded.add(this.doc)}delete(t){t.subdocsAdded.has(this.doc)?t.subdocsAdded.delete(this.doc):t.subdocsRemoved.add(this.doc)}gc(t){}write(t,n){t.writeString(this.doc.guid),t.writeAny(this.opts)}getRef(){return 9}}const RWe=e=>new m3(_se(e.readString(),e.readAny()));class Vf{constructor(t){this.embed=t}getLength(){return 1}getContent(){return[this.embed]}isCountable(){return!0}copy(){return new Vf(this.embed)}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){}delete(t){}gc(t){}write(t,n){t.writeJSON(this.embed)}getRef(){return 5}}const TWe=e=>new Vf(e.readJSON());class m0{constructor(t,n){this.key=t,this.value=n}getLength(){return 1}getContent(){return[]}isCountable(){return!1}copy(){return new m0(this.key,this.value)}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){const o=n.parent;o._searchMarker=null,o._hasFormatting=!0}delete(t){}gc(t){}write(t,n){t.writeKey(this.key),t.writeJSON(this.value)}getRef(){return 6}}const EWe=e=>new m0(e.readKey(),e.readJSON());class F4{constructor(t){this.arr=t}getLength(){return this.arr.length}getContent(){return this.arr}isCountable(){return!0}copy(){return new F4(this.arr)}splice(t){const n=new F4(this.arr.slice(t));return this.arr=this.arr.slice(0,t),n}mergeWith(t){return this.arr=this.arr.concat(t.arr),!0}integrate(t,n){}delete(t){}gc(t){}write(t,n){const o=this.arr.length;t.writeLen(o-n);for(let r=n;r<o;r++){const s=this.arr[r];t.writeString(s===void 0?"undefined":JSON.stringify(s))}}getRef(){return 2}}const WWe=e=>{const t=e.readLen(),n=[];for(let o=0;o<t;o++){const r=e.readString();r==="undefined"?n.push(void 0):n.push(JSON.parse(r))}return new F4(n)},NWe=XM("node_env")==="development";class gf{constructor(t){this.arr=t,NWe&&W1e(t)}getLength(){return this.arr.length}getContent(){return this.arr}isCountable(){return!0}copy(){return new gf(this.arr)}splice(t){const n=new gf(this.arr.slice(t));return this.arr=this.arr.slice(0,t),n}mergeWith(t){return this.arr=this.arr.concat(t.arr),!0}integrate(t,n){}delete(t){}gc(t){}write(t,n){const o=this.arr.length;t.writeLen(o-n);for(let r=n;r<o;r++){const s=this.arr[r];t.writeAny(s)}}getRef(){return 8}}const BWe=e=>{const t=e.readLen(),n=[];for(let o=0;o<t;o++)n.push(e.readAny());return new gf(n)};class vc{constructor(t){this.str=t}getLength(){return this.str.length}getContent(){return this.str.split("")}isCountable(){return!0}copy(){return new vc(this.str)}splice(t){const n=new vc(this.str.slice(t));this.str=this.str.slice(0,t);const o=this.str.charCodeAt(t-1);return o>=55296&&o<=56319&&(this.str=this.str.slice(0,t-1)+"�",n.str="�"+n.str.slice(1)),n}mergeWith(t){return this.str+=t.str,!0}integrate(t,n){}delete(t){}gc(t){}write(t,n){t.writeString(n===0?this.str:this.str.slice(n))}getRef(){return 4}}const LWe=e=>new vc(e.readString()),PWe=[hWe,gWe,AWe,xWe,vWe,_We,kWe],jWe=0,IWe=1,DWe=2,FWe=3,$We=4,VWe=5,HWe=6;class Zl{constructor(t){this.type=t}getLength(){return 1}getContent(){return[this.type]}isCountable(){return!0}copy(){return new Zl(this.type._copy())}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){this.type._integrate(t.doc,n)}delete(t){let n=this.type._start;for(;n!==null;)n.deleted?n.id.clock<(t.beforeState.get(n.id.client)||0)&&t._mergeStructs.push(n):n.delete(t),n=n.right;this.type._map.forEach(o=>{o.deleted?o.id.clock<(t.beforeState.get(o.id.client)||0)&&t._mergeStructs.push(o):o.delete(t)}),t.changed.delete(this.type)}gc(t){let n=this.type._start;for(;n!==null;)n.gc(t,!0),n=n.right;this.type._start=null,this.type._map.forEach(o=>{for(;o!==null;)o.gc(t,!0),o=o.left}),this.type._map=new Map}write(t,n){this.type._write(t)}getRef(){return 7}}const UWe=e=>new Zl(PWe[e.readTypeRef()](e)),$4=(e,t,n)=>{const{client:o,clock:r}=t.id,s=new b1(to(o,r+n),t,to(o,r+n-1),t.right,t.rightOrigin,t.parent,t.parentSub,t.content.splice(n));return t.deleted&&s.markDeleted(),t.keep&&(s.keep=!0),t.redone!==null&&(s.redone=to(t.redone.client,t.redone.clock+n)),t.right=s,s.right!==null&&(s.right.left=s),e._mergeStructs.push(s),s.parentSub!==null&&s.right===null&&s.parent._map.set(s.parentSub,s),t.length=n,s};let b1=class DE extends qB{constructor(t,n,o,r,s,i,c,l){super(t,l.getLength()),this.origin=o,this.left=n,this.right=r,this.rightOrigin=s,this.parent=i,this.parentSub=c,this.redone=null,this.content=l,this.info=this.content.isCountable()?hU:0}set marker(t){(this.info&NS)>0!==t&&(this.info^=NS)}get marker(){return(this.info&NS)>0}get keep(){return(this.info&bU)>0}set keep(t){this.keep!==t&&(this.info^=bU)}get countable(){return(this.info&hU)>0}get deleted(){return(this.info&WS)>0}set deleted(t){this.deleted!==t&&(this.info^=WS)}markDeleted(){this.info|=WS}getMissing(t,n){if(this.origin&&this.origin.client!==this.id.client&&this.origin.clock>=q0(n,this.origin.client))return this.origin.client;if(this.rightOrigin&&this.rightOrigin.client!==this.id.client&&this.rightOrigin.clock>=q0(n,this.rightOrigin.client))return this.rightOrigin.client;if(this.parent&&this.parent.constructor===q2&&this.id.client!==this.parent.client&&this.parent.clock>=q0(n,this.parent.client))return this.parent.client;if(this.origin&&(this.left=RU(t,n,this.origin),this.origin=this.left.lastId),this.rightOrigin&&(this.right=Od(t,this.rightOrigin),this.rightOrigin=this.right.id),this.left&&this.left.constructor===yi||this.right&&this.right.constructor===yi)this.parent=null;else if(!this.parent)this.left&&this.left.constructor===DE&&(this.parent=this.left.parent,this.parentSub=this.left.parentSub),this.right&&this.right.constructor===DE&&(this.parent=this.right.parent,this.parentSub=this.right.parentSub);else if(this.parent.constructor===q2){const o=DS(n,this.parent);o.constructor===yi?this.parent=null:this.parent=o.content.type}return null}integrate(t,n){if(n>0&&(this.id.clock+=n,this.left=RU(t,t.doc.store,to(this.id.client,this.id.clock-1)),this.origin=this.left.lastId,this.content=this.content.splice(n),this.length-=n),this.parent){if(!this.left&&(!this.right||this.right.left!==null)||this.left&&this.left.right!==this.right){let o=this.left,r;if(o!==null)r=o.right;else if(this.parentSub!==null)for(r=this.parent._map.get(this.parentSub)||null;r!==null&&r.left!==null;)r=r.left;else r=this.parent._start;const s=new Set,i=new Set;for(;r!==null&&r!==this.right;){if(i.add(r),s.add(r),bA(this.origin,r.origin)){if(r.id.client<this.id.client)o=r,s.clear();else if(bA(this.rightOrigin,r.rightOrigin))break}else if(r.origin!==null&&i.has(DS(t.doc.store,r.origin)))s.has(DS(t.doc.store,r.origin))||(o=r,s.clear());else break;r=r.right}this.left=o}if(this.left!==null){const o=this.left.right;this.right=o,this.left.right=this}else{let o;if(this.parentSub!==null)for(o=this.parent._map.get(this.parentSub)||null;o!==null&&o.left!==null;)o=o.left;else o=this.parent._start,this.parent._start=this;this.right=o}this.right!==null?this.right.left=this:this.parentSub!==null&&(this.parent._map.set(this.parentSub,this),this.left!==null&&this.left.delete(t)),this.parentSub===null&&this.countable&&!this.deleted&&(this.parent._length+=this.length),ase(t.doc.store,this),this.content.integrate(t,this),EU(t,this.parent,this.parentSub),(this.parent._item!==null&&this.parent._item.deleted||this.parentSub!==null&&this.right!==null)&&this.delete(t)}else new yi(this.id,this.length).integrate(t,0)}get next(){let t=this.right;for(;t!==null&&t.deleted;)t=t.right;return t}get prev(){let t=this.left;for(;t!==null&&t.deleted;)t=t.left;return t}get lastId(){return this.length===1?this.id:to(this.id.client,this.id.clock+this.length-1)}mergeWith(t){if(this.constructor===t.constructor&&bA(t.origin,this.lastId)&&this.right===t&&bA(this.rightOrigin,t.rightOrigin)&&this.id.client===t.id.client&&this.id.clock+this.length===t.id.clock&&this.deleted===t.deleted&&this.redone===null&&t.redone===null&&this.content.constructor===t.content.constructor&&this.content.mergeWith(t.content)){const n=this.parent._searchMarker;return n&&n.forEach(o=>{o.p===t&&(o.p=this,!this.deleted&&this.countable&&(o.index-=this.length))}),t.keep&&(this.keep=!0),this.right=t.right,this.right!==null&&(this.right.left=this),this.length+=t.length,!0}return!1}delete(t){if(!this.deleted){const n=this.parent;this.countable&&this.parentSub===null&&(n._length-=this.length),this.markDeleted(),B4(t.deleteSet,this.id.client,this.id.clock,this.length),EU(t,n,this.parentSub),this.content.delete(t)}}gc(t,n){if(!this.deleted)throw yc();this.content.gc(t),n?Z8e(t,this,new yi(this.id,this.length)):this.content=new YM(this.length)}write(t,n){const o=n>0?to(this.id.client,this.id.clock+n-1):this.origin,r=this.rightOrigin,s=this.parentSub,i=this.content.getRef()&I5|(o===null?0:Ns)|(r===null?0:yl)|(s===null?0:VM);if(t.writeInfo(i),o!==null&&t.writeLeftID(o),r!==null&&t.writeRightID(r),o===null&&r===null){const c=this.parent;if(c._item!==void 0){const l=c._item;if(l===null){const u=K8e(c);t.writeParentInfo(!0),t.writeString(u)}else t.writeParentInfo(!1),t.writeLeftID(l.id)}else c.constructor===String?(t.writeParentInfo(!0),t.writeString(c)):c.constructor===q2?(t.writeParentInfo(!1),t.writeLeftID(c)):yc();s!==null&&t.writeString(s)}this.content.write(t,n)}};const kse=(e,t)=>XWe[t&I5](e),XWe=[()=>{yc()},qWe,WWe,CWe,LWe,TWe,EWe,UWe,BWe,RWe,()=>{yc()}],GWe=10;class Ai extends qB{get deleted(){return!0}delete(){}mergeWith(t){return this.constructor!==t.constructor?!1:(this.length+=t.length,!0)}integrate(t,n){yc()}write(t,n){t.writeInfo(GWe),sn(t.restEncoder,this.length-n)}getMissing(t,n){return null}}const Sse=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof fU<"u"?fU:{},Cse="__ $YJS$ __";Sse[Cse]===!0&&console.error("Yjs was already imported. This breaks constructor checks and will lead to issues! - https://github.com/yjs/yjs/issues/438");Sse[Cse]=!0;const Hf=e=>oh((t,n)=>{e.onerror=o=>n(new Error(o.target.error)),e.onsuccess=o=>t(o.target.result)}),KWe=(e,t)=>oh((n,o)=>{const r=indexedDB.open(e);r.onupgradeneeded=s=>t(s.target.result),r.onerror=s=>o(ba(s.target.error)),r.onsuccess=s=>{const i=s.target.result;i.onversionchange=()=>{i.close()},n(i)}}),YWe=e=>Hf(indexedDB.deleteDatabase(e)),ZWe=(e,t)=>t.forEach(n=>e.createObjectStore.apply(e,n)),Qg=(e,t,n="readwrite")=>{const o=e.transaction(t,n);return t.map(r=>sNe(o,r))},qse=(e,t)=>Hf(e.count(t)),QWe=(e,t)=>Hf(e.get(t)),Rse=(e,t)=>Hf(e.delete(t)),JWe=(e,t,n)=>Hf(e.put(t,n)),FE=(e,t)=>Hf(e.add(t)),eNe=(e,t,n)=>Hf(e.getAll(t,n)),tNe=(e,t,n)=>{let o=null;return rNe(e,t,r=>(o=r,!1),n).then(()=>o)},nNe=(e,t=null)=>tNe(e,t,"prev"),oNe=(e,t)=>oh((n,o)=>{e.onerror=o,e.onsuccess=async r=>{const s=r.target.result;if(s===null||await t(s)===!1)return n();s.continue()}}),rNe=(e,t,n,o="next")=>oNe(e.openKeyCursor(t,o),r=>n(r.key)),sNe=(e,t)=>e.objectStore(t),iNe=(e,t)=>IDBKeyRange.upperBound(e,t),aNe=(e,t)=>IDBKeyRange.lowerBound(e,t),VS="custom",Tse="updates",Ese=500,Wse=(e,t=()=>{},n=()=>{})=>{const[o]=Qg(e.db,[Tse]);return eNe(o,aNe(e._dbref,!1)).then(r=>{e._destroyed||(t(o),Ho(e.doc,()=>{r.forEach(s=>nse(e.doc,s))},e,!1),n(o))}).then(()=>nNe(o).then(r=>{e._dbref=r+1})).then(()=>qse(o).then(r=>{e._dbsize=r})).then(()=>o)},cNe=(e,t=!0)=>Wse(e).then(n=>{(t||e._dbsize>=Ese)&&FE(n,vB(e.doc)).then(()=>Rse(n,iNe(e._dbref,!0))).then(()=>qse(n).then(o=>{e._dbsize=o}))});class lNe extends d3{constructor(t,n){super(),this.doc=n,this.name=t,this._dbref=0,this._dbsize=0,this._destroyed=!1,this.db=null,this.synced=!1,this._db=KWe(t,o=>ZWe(o,[["updates",{autoIncrement:!0}],["custom"]])),this.whenSynced=oh(o=>this.on("synced",()=>o(this))),this._db.then(o=>{this.db=o,Wse(this,i=>FE(i,vB(n)),()=>{if(this._destroyed)return this;this.synced=!0,this.emit("synced",[this])})}),this._storeTimeout=1e3,this._storeTimeoutId=null,this._storeUpdate=(o,r)=>{if(this.db&&r!==this){const[s]=Qg(this.db,[Tse]);FE(s,o),++this._dbsize>=Ese&&(this._storeTimeoutId!==null&&clearTimeout(this._storeTimeoutId),this._storeTimeoutId=setTimeout(()=>{cNe(this,!1),this._storeTimeoutId=null},this._storeTimeout))}},n.on("update",this._storeUpdate),this.destroy=this.destroy.bind(this),n.on("destroy",this.destroy)}destroy(){return this._storeTimeoutId&&clearTimeout(this._storeTimeoutId),this.doc.off("update",this._storeUpdate),this.doc.off("destroy",this.destroy),this._destroyed=!0,this._db.then(t=>{t.close()})}clearData(){return this.destroy().then(()=>{YWe(this.name)})}get(t){return this._db.then(n=>{const[o]=Qg(n,[VS],"readonly");return QWe(o,t)})}set(t,n){return this._db.then(o=>{const[r]=Qg(o,[VS]);return JWe(r,n,t)})}del(t){return this._db.then(n=>{const[o]=Qg(n,[VS]);return Rse(o,t)})}}function uNe(e,t,n){const o=`${t}-${e}`,r=new lNe(o,n);return new Promise(s=>{r.on("synced",()=>{s(()=>r.destroy())})})}const dNe=1200,pNe=2500,V4=3e4,$E=e=>{if(e.shouldConnect&&e.ws===null){const t=new WebSocket(e.url),n=e.binaryType;let o=null;n&&(t.binaryType=n),e.ws=t,e.connecting=!0,e.connected=!1,t.onmessage=i=>{e.lastMessageReceived=El();const c=i.data,l=typeof c=="string"?JSON.parse(c):c;l&&l.type==="pong"&&(clearTimeout(o),o=setTimeout(s,V4/2)),e.emit("message",[l,e])};const r=i=>{e.ws!==null&&(e.ws=null,e.connecting=!1,e.connected?(e.connected=!1,e.emit("disconnect",[{type:"disconnect",error:i},e])):e.unsuccessfulReconnects++,setTimeout($E,cB(cEe(e.unsuccessfulReconnects+1)*dNe,pNe),e)),clearTimeout(o)},s=()=>{e.ws===t&&e.send({type:"ping"})};t.onclose=()=>r(null),t.onerror=i=>r(i),t.onopen=()=>{e.lastMessageReceived=El(),e.connecting=!1,e.connected=!0,e.unsuccessfulReconnects=0,e.emit("connect",[{type:"connect"},e]),o=setTimeout(s,V4/2)}}};class fNe extends d3{constructor(t,{binaryType:n}={}){super(),this.url=t,this.ws=null,this.binaryType=n||null,this.connected=!1,this.connecting=!1,this.unsuccessfulReconnects=0,this.lastMessageReceived=0,this.shouldConnect=!0,this._checkInterval=setInterval(()=>{this.connected&&V4<El()-this.lastMessageReceived&&this.ws.close()},V4/2),$E(this)}send(t){this.ws&&this.ws.send(JSON.stringify(t))}destroy(){clearInterval(this._checkInterval),this.disconnect(),super.destroy()}disconnect(){this.shouldConnect=!1,this.ws!==null&&this.ws.close()}connect(){this.shouldConnect=!0,!this.connected&&this.ws===null&&$E(this)}}const Nse=new Map;class bNe{constructor(t){this.room=t,this.onmessage=null,this._onChange=n=>n.key===t&&this.onmessage!==null&&this.onmessage({data:gB(n.newValue||"")}),e8e(this._onChange)}postMessage(t){R1e.setItem(this.room,j1e(m8e(t)))}close(){t8e(this._onChange)}}const hNe=typeof BroadcastChannel>"u"?bNe:BroadcastChannel,RB=e=>w1(Nse,e,()=>{const t=zd(),n=new hNe(e);return n.onmessage=o=>t.forEach(r=>r(o.data,"broadcastchannel")),{bc:n,subs:t}}),mNe=(e,t)=>(RB(e).subs.add(t),t),gNe=(e,t)=>{const n=RB(e),o=n.subs.delete(t);return o&&n.subs.size===0&&(n.bc.close(),Nse.delete(e)),o},MNe=(e,t,n=null)=>{const o=RB(e);o.bc.postMessage(t),o.subs.forEach(r=>r(t,n))},zNe=()=>{let e=!0;return(t,n)=>{if(e){e=!1;try{t()}finally{e=!0}}else n!==void 0&&n()}};function gA(e){throw new Error('Could not dynamically require "'+e+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var HS={exports:{}},PU;function ONe(){return PU||(PU=1,function(e,t){(function(n){e.exports=n()})(function(){var n=Math.floor,o=Math.abs,r=Math.pow;return function(){function s(i,c,l){function u(f,b){if(!c[f]){if(!i[f]){var h=typeof gA=="function"&&gA;if(!b&&h)return h(f,!0);if(d)return d(f,!0);var g=new Error("Cannot find module '"+f+"'");throw g.code="MODULE_NOT_FOUND",g}var z=c[f]={exports:{}};i[f][0].call(z.exports,function(A){var _=i[f][1][A];return u(_||A)},z,z.exports,s,i,c,l)}return c[f].exports}for(var d=typeof gA=="function"&&gA,p=0;p<l.length;p++)u(l[p]);return u}return s}()({1:[function(s,i,c){function l(M){var y=M.length;if(0<y%4)throw new Error("Invalid string. Length must be a multiple of 4");var k=M.indexOf("=");k===-1&&(k=y);var S=k===y?0:4-k%4;return[k,S]}function u(M,y,k){return 3*(y+k)/4-k}function d(M){var y,k,S=l(M),C=S[0],R=S[1],T=new z(u(M,C,R)),E=0,B=0<R?C-4:C;for(k=0;k<B;k+=4)y=g[M.charCodeAt(k)]<<18|g[M.charCodeAt(k+1)]<<12|g[M.charCodeAt(k+2)]<<6|g[M.charCodeAt(k+3)],T[E++]=255&y>>16,T[E++]=255&y>>8,T[E++]=255&y;return R===2&&(y=g[M.charCodeAt(k)]<<2|g[M.charCodeAt(k+1)]>>4,T[E++]=255&y),R===1&&(y=g[M.charCodeAt(k)]<<10|g[M.charCodeAt(k+1)]<<4|g[M.charCodeAt(k+2)]>>2,T[E++]=255&y>>8,T[E++]=255&y),T}function p(M){return h[63&M>>18]+h[63&M>>12]+h[63&M>>6]+h[63&M]}function f(M,y,k){for(var S,C=[],R=y;R<k;R+=3)S=(16711680&M[R]<<16)+(65280&M[R+1]<<8)+(255&M[R+2]),C.push(p(S));return C.join("")}function b(M){for(var y,k=M.length,S=k%3,C=[],R=16383,T=0,E=k-S;T<E;T+=R)C.push(f(M,T,T+R>E?E:T+R));return S===1?(y=M[k-1],C.push(h[y>>2]+h[63&y<<4]+"==")):S===2&&(y=(M[k-2]<<8)+M[k-1],C.push(h[y>>10]+h[63&y>>4]+h[63&y<<2]+"=")),C.join("")}c.byteLength=function(M){var y=l(M),k=y[0],S=y[1];return 3*(k+S)/4-S},c.toByteArray=d,c.fromByteArray=b;for(var h=[],g=[],z=typeof Uint8Array>"u"?Array:Uint8Array,A="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",_=0,v=A.length;_<v;++_)h[_]=A[_],g[A.charCodeAt(_)]=_;g[45]=62,g[95]=63},{}],2:[function(){},{}],3:[function(s,i,c){(function(){(function(){var l=String.fromCharCode,u=Math.min;function d(L){if(2147483647<L)throw new RangeError('The value "'+L+'" is invalid for option "size"');var U=new Uint8Array(L);return U.__proto__=p.prototype,U}function p(L,U,ne){if(typeof L=="number"){if(typeof U=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return g(L)}return f(L,U,ne)}function f(L,U,ne){if(typeof L=="string")return z(L,U);if(ArrayBuffer.isView(L))return A(L);if(L==null)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof L);if(re(L,ArrayBuffer)||L&&re(L.buffer,ArrayBuffer))return _(L,U,ne);if(typeof L=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var ve=L.valueOf&&L.valueOf();if(ve!=null&&ve!==L)return p.from(ve,U,ne);var qe=v(L);if(qe)return qe;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof L[Symbol.toPrimitive]=="function")return p.from(L[Symbol.toPrimitive]("string"),U,ne);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof L)}function b(L){if(typeof L!="number")throw new TypeError('"size" argument must be of type number');if(0>L)throw new RangeError('The value "'+L+'" is invalid for option "size"')}function h(L,U,ne){return b(L),0>=L||U===void 0?d(L):typeof ne=="string"?d(L).fill(U,ne):d(L).fill(U)}function g(L){return b(L),d(0>L?0:0|M(L))}function z(L,U){if((typeof U!="string"||U==="")&&(U="utf8"),!p.isEncoding(U))throw new TypeError("Unknown encoding: "+U);var ne=0|y(L,U),ve=d(ne),qe=ve.write(L,U);return qe!==ne&&(ve=ve.slice(0,qe)),ve}function A(L){for(var U=0>L.length?0:0|M(L.length),ne=d(U),ve=0;ve<U;ve+=1)ne[ve]=255&L[ve];return ne}function _(L,U,ne){if(0>U||L.byteLength<U)throw new RangeError('"offset" is outside of buffer bounds');if(L.byteLength<U+(ne||0))throw new RangeError('"length" is outside of buffer bounds');var ve;return ve=U===void 0&&ne===void 0?new Uint8Array(L):ne===void 0?new Uint8Array(L,U):new Uint8Array(L,U,ne),ve.__proto__=p.prototype,ve}function v(L){if(p.isBuffer(L)){var U=0|M(L.length),ne=d(U);return ne.length===0||L.copy(ne,0,0,U),ne}return L.length===void 0?L.type==="Buffer"&&Array.isArray(L.data)?A(L.data):void 0:typeof L.length!="number"||pe(L.length)?d(0):A(L)}function M(L){if(L>=2147483647)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|L}function y(L,U){if(p.isBuffer(L))return L.length;if(ArrayBuffer.isView(L)||re(L,ArrayBuffer))return L.byteLength;if(typeof L!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof L);var ne=L.length,ve=2<arguments.length&&arguments[2]===!0;if(!ve&&ne===0)return 0;for(var qe=!1;;)switch(U){case"ascii":case"latin1":case"binary":return ne;case"utf8":case"utf-8":return ye(L).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*ne;case"hex":return ne>>>1;case"base64":return ie(L).length;default:if(qe)return ve?-1:ye(L).length;U=(""+U).toLowerCase(),qe=!0}}function k(L,U,ne){var ve=!1;if((U===void 0||0>U)&&(U=0),U>this.length||((ne===void 0||ne>this.length)&&(ne=this.length),0>=ne)||(ne>>>=0,U>>>=0,ne<=U))return"";for(L||(L="utf8");;)switch(L){case"hex":return V(this,U,ne);case"utf8":case"utf-8":return $(this,U,ne);case"ascii":return X(this,U,ne);case"latin1":case"binary":return Z(this,U,ne);case"base64":return P(this,U,ne);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ee(this,U,ne);default:if(ve)throw new TypeError("Unknown encoding: "+L);L=(L+"").toLowerCase(),ve=!0}}function S(L,U,ne){var ve=L[U];L[U]=L[ne],L[ne]=ve}function C(L,U,ne,ve,qe){if(L.length===0)return-1;if(typeof ne=="string"?(ve=ne,ne=0):2147483647<ne?ne=2147483647:-2147483648>ne&&(ne=-2147483648),ne=+ne,pe(ne)&&(ne=qe?0:L.length-1),0>ne&&(ne=L.length+ne),ne>=L.length){if(qe)return-1;ne=L.length-1}else if(0>ne)if(qe)ne=0;else return-1;if(typeof U=="string"&&(U=p.from(U,ve)),p.isBuffer(U))return U.length===0?-1:R(L,U,ne,ve,qe);if(typeof U=="number")return U&=255,typeof Uint8Array.prototype.indexOf=="function"?qe?Uint8Array.prototype.indexOf.call(L,U,ne):Uint8Array.prototype.lastIndexOf.call(L,U,ne):R(L,[U],ne,ve,qe);throw new TypeError("val must be string, number or Buffer")}function R(L,U,ne,ve,qe){function Pe(fe,Re){return rt===1?fe[Re]:fe.readUInt16BE(Re*rt)}var rt=1,qt=L.length,wt=U.length;if(ve!==void 0&&(ve=(ve+"").toLowerCase(),ve==="ucs2"||ve==="ucs-2"||ve==="utf16le"||ve==="utf-16le")){if(2>L.length||2>U.length)return-1;rt=2,qt/=2,wt/=2,ne/=2}var Bt;if(qe){var ae=-1;for(Bt=ne;Bt<qt;Bt++)if(Pe(L,Bt)!==Pe(U,ae===-1?0:Bt-ae))ae!==-1&&(Bt-=Bt-ae),ae=-1;else if(ae===-1&&(ae=Bt),Bt-ae+1===wt)return ae*rt}else for(ne+wt>qt&&(ne=qt-wt),Bt=ne;0<=Bt;Bt--){for(var H=!0,Y=0;Y<wt;Y++)if(Pe(L,Bt+Y)!==Pe(U,Y)){H=!1;break}if(H)return Bt}return-1}function T(L,U,ne,ve){ne=+ne||0;var qe=L.length-ne;ve?(ve=+ve,ve>qe&&(ve=qe)):ve=qe;var Pe=U.length;ve>Pe/2&&(ve=Pe/2);for(var rt,qt=0;qt<ve;++qt){if(rt=parseInt(U.substr(2*qt,2),16),pe(rt))return qt;L[ne+qt]=rt}return qt}function E(L,U,ne,ve){return we(ye(U,L.length-ne),L,ne,ve)}function B(L,U,ne,ve){return we(Ne(U),L,ne,ve)}function N(L,U,ne,ve){return B(L,U,ne,ve)}function j(L,U,ne,ve){return we(ie(U),L,ne,ve)}function I(L,U,ne,ve){return we(je(U,L.length-ne),L,ne,ve)}function P(L,U,ne){return U===0&&ne===L.length?ke.fromByteArray(L):ke.fromByteArray(L.slice(U,ne))}function $(L,U,ne){ne=u(L.length,ne);for(var ve=[],qe=U;qe<ne;){var Pe=L[qe],rt=null,qt=239<Pe?4:223<Pe?3:191<Pe?2:1;if(qe+qt<=ne){var wt,Bt,ae,H;qt===1?128>Pe&&(rt=Pe):qt===2?(wt=L[qe+1],(192&wt)==128&&(H=(31&Pe)<<6|63&wt,127<H&&(rt=H))):qt===3?(wt=L[qe+1],Bt=L[qe+2],(192&wt)==128&&(192&Bt)==128&&(H=(15&Pe)<<12|(63&wt)<<6|63&Bt,2047<H&&(55296>H||57343<H)&&(rt=H))):qt===4&&(wt=L[qe+1],Bt=L[qe+2],ae=L[qe+3],(192&wt)==128&&(192&Bt)==128&&(192&ae)==128&&(H=(15&Pe)<<18|(63&wt)<<12|(63&Bt)<<6|63&ae,65535<H&&1114112>H&&(rt=H)))}rt===null?(rt=65533,qt=1):65535<rt&&(rt-=65536,ve.push(55296|1023&rt>>>10),rt=56320|1023&rt),ve.push(rt),qe+=qt}return F(ve)}function F(L){var U=L.length;if(U<=4096)return l.apply(String,L);for(var ne="",ve=0;ve<U;)ne+=l.apply(String,L.slice(ve,ve+=4096));return ne}function X(L,U,ne){var ve="";ne=u(L.length,ne);for(var qe=U;qe<ne;++qe)ve+=l(127&L[qe]);return ve}function Z(L,U,ne){var ve="";ne=u(L.length,ne);for(var qe=U;qe<ne;++qe)ve+=l(L[qe]);return ve}function V(L,U,ne){var ve=L.length;(!U||0>U)&&(U=0),(!ne||0>ne||ne>ve)&&(ne=ve);for(var qe="",Pe=U;Pe<ne;++Pe)qe+=Ae(L[Pe]);return qe}function ee(L,U,ne){for(var ve=L.slice(U,ne),qe="",Pe=0;Pe<ve.length;Pe+=2)qe+=l(ve[Pe]+256*ve[Pe+1]);return qe}function te(L,U,ne){if(L%1!=0||0>L)throw new RangeError("offset is not uint");if(L+U>ne)throw new RangeError("Trying to access beyond buffer length")}function J(L,U,ne,ve,qe,Pe){if(!p.isBuffer(L))throw new TypeError('"buffer" argument must be a Buffer instance');if(U>qe||U<Pe)throw new RangeError('"value" argument is out of bounds');if(ne+ve>L.length)throw new RangeError("Index out of range")}function ue(L,U,ne,ve){if(ne+ve>L.length)throw new RangeError("Index out of range");if(0>ne)throw new RangeError("Index out of range")}function ce(L,U,ne,ve,qe){return U=+U,ne>>>=0,qe||ue(L,U,ne,4),Se.write(L,U,ne,ve,23,4),ne+4}function me(L,U,ne,ve,qe){return U=+U,ne>>>=0,qe||ue(L,U,ne,8),Se.write(L,U,ne,ve,52,8),ne+8}function de(L){if(L=L.split("=")[0],L=L.trim().replace(se,""),2>L.length)return"";for(;L.length%4!=0;)L+="=";return L}function Ae(L){return 16>L?"0"+L.toString(16):L.toString(16)}function ye(L,U){U=U||1/0;for(var ne,ve=L.length,qe=null,Pe=[],rt=0;rt<ve;++rt){if(ne=L.charCodeAt(rt),55295<ne&&57344>ne){if(!qe){if(56319<ne){-1<(U-=3)&&Pe.push(239,191,189);continue}else if(rt+1===ve){-1<(U-=3)&&Pe.push(239,191,189);continue}qe=ne;continue}if(56320>ne){-1<(U-=3)&&Pe.push(239,191,189),qe=ne;continue}ne=(qe-55296<<10|ne-56320)+65536}else qe&&-1<(U-=3)&&Pe.push(239,191,189);if(qe=null,128>ne){if(0>(U-=1))break;Pe.push(ne)}else if(2048>ne){if(0>(U-=2))break;Pe.push(192|ne>>6,128|63&ne)}else if(65536>ne){if(0>(U-=3))break;Pe.push(224|ne>>12,128|63&ne>>6,128|63&ne)}else if(1114112>ne){if(0>(U-=4))break;Pe.push(240|ne>>18,128|63&ne>>12,128|63&ne>>6,128|63&ne)}else throw new Error("Invalid code point")}return Pe}function Ne(L){for(var U=[],ne=0;ne<L.length;++ne)U.push(255&L.charCodeAt(ne));return U}function je(L,U){for(var ne,ve,qe,Pe=[],rt=0;rt<L.length&&!(0>(U-=2));++rt)ne=L.charCodeAt(rt),ve=ne>>8,qe=ne%256,Pe.push(qe),Pe.push(ve);return Pe}function ie(L){return ke.toByteArray(de(L))}function we(L,U,ne,ve){for(var qe=0;qe<ve&&!(qe+ne>=U.length||qe>=L.length);++qe)U[qe+ne]=L[qe];return qe}function re(L,U){return L instanceof U||L!=null&&L.constructor!=null&&L.constructor.name!=null&&L.constructor.name===U.name}function pe(L){return L!==L}var ke=s("base64-js"),Se=s("ieee754");c.Buffer=p,c.SlowBuffer=function(L){return+L!=L&&(L=0),p.alloc(+L)},c.INSPECT_MAX_BYTES=50,c.kMaxLength=2147483647,p.TYPED_ARRAY_SUPPORT=function(){try{var L=new Uint8Array(1);return L.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},L.foo()===42}catch{return!1}}(),p.TYPED_ARRAY_SUPPORT||typeof console>"u"||typeof console.error!="function"||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(p.prototype,"parent",{enumerable:!0,get:function(){return p.isBuffer(this)?this.buffer:void 0}}),Object.defineProperty(p.prototype,"offset",{enumerable:!0,get:function(){return p.isBuffer(this)?this.byteOffset:void 0}}),typeof Symbol<"u"&&Symbol.species!=null&&p[Symbol.species]===p&&Object.defineProperty(p,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),p.poolSize=8192,p.from=function(L,U,ne){return f(L,U,ne)},p.prototype.__proto__=Uint8Array.prototype,p.__proto__=Uint8Array,p.alloc=function(L,U,ne){return h(L,U,ne)},p.allocUnsafe=function(L){return g(L)},p.allocUnsafeSlow=function(L){return g(L)},p.isBuffer=function(L){return L!=null&&L._isBuffer===!0&&L!==p.prototype},p.compare=function(L,U){if(re(L,Uint8Array)&&(L=p.from(L,L.offset,L.byteLength)),re(U,Uint8Array)&&(U=p.from(U,U.offset,U.byteLength)),!p.isBuffer(L)||!p.isBuffer(U))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(L===U)return 0;for(var ne=L.length,ve=U.length,qe=0,Pe=u(ne,ve);qe<Pe;++qe)if(L[qe]!==U[qe]){ne=L[qe],ve=U[qe];break}return ne<ve?-1:ve<ne?1:0},p.isEncoding=function(L){switch((L+"").toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},p.concat=function(L,U){if(!Array.isArray(L))throw new TypeError('"list" argument must be an Array of Buffers');if(L.length===0)return p.alloc(0);var ne;if(U===void 0)for(U=0,ne=0;ne<L.length;++ne)U+=L[ne].length;var ve=p.allocUnsafe(U),qe=0;for(ne=0;ne<L.length;++ne){var Pe=L[ne];if(re(Pe,Uint8Array)&&(Pe=p.from(Pe)),!p.isBuffer(Pe))throw new TypeError('"list" argument must be an Array of Buffers');Pe.copy(ve,qe),qe+=Pe.length}return ve},p.byteLength=y,p.prototype._isBuffer=!0,p.prototype.swap16=function(){var L=this.length;if(L%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var U=0;U<L;U+=2)S(this,U,U+1);return this},p.prototype.swap32=function(){var L=this.length;if(L%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var U=0;U<L;U+=4)S(this,U,U+3),S(this,U+1,U+2);return this},p.prototype.swap64=function(){var L=this.length;if(L%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var U=0;U<L;U+=8)S(this,U,U+7),S(this,U+1,U+6),S(this,U+2,U+5),S(this,U+3,U+4);return this},p.prototype.toString=function(){var L=this.length;return L===0?"":arguments.length===0?$(this,0,L):k.apply(this,arguments)},p.prototype.toLocaleString=p.prototype.toString,p.prototype.equals=function(L){if(!p.isBuffer(L))throw new TypeError("Argument must be a Buffer");return this===L||p.compare(this,L)===0},p.prototype.inspect=function(){var L="",U=c.INSPECT_MAX_BYTES;return L=this.toString("hex",0,U).replace(/(.{2})/g,"$1 ").trim(),this.length>U&&(L+=" ... "),"<Buffer "+L+">"},p.prototype.compare=function(L,U,ne,ve,qe){if(re(L,Uint8Array)&&(L=p.from(L,L.offset,L.byteLength)),!p.isBuffer(L))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof L);if(U===void 0&&(U=0),ne===void 0&&(ne=L?L.length:0),ve===void 0&&(ve=0),qe===void 0&&(qe=this.length),0>U||ne>L.length||0>ve||qe>this.length)throw new RangeError("out of range index");if(ve>=qe&&U>=ne)return 0;if(ve>=qe)return-1;if(U>=ne)return 1;if(U>>>=0,ne>>>=0,ve>>>=0,qe>>>=0,this===L)return 0;for(var Pe=qe-ve,rt=ne-U,qt=u(Pe,rt),wt=this.slice(ve,qe),Bt=L.slice(U,ne),ae=0;ae<qt;++ae)if(wt[ae]!==Bt[ae]){Pe=wt[ae],rt=Bt[ae];break}return Pe<rt?-1:rt<Pe?1:0},p.prototype.includes=function(L,U,ne){return this.indexOf(L,U,ne)!==-1},p.prototype.indexOf=function(L,U,ne){return C(this,L,U,ne,!0)},p.prototype.lastIndexOf=function(L,U,ne){return C(this,L,U,ne,!1)},p.prototype.write=function(L,U,ne,ve){if(U===void 0)ve="utf8",ne=this.length,U=0;else if(ne===void 0&&typeof U=="string")ve=U,ne=this.length,U=0;else if(isFinite(U))U>>>=0,isFinite(ne)?(ne>>>=0,ve===void 0&&(ve="utf8")):(ve=ne,ne=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var qe=this.length-U;if((ne===void 0||ne>qe)&&(ne=qe),0<L.length&&(0>ne||0>U)||U>this.length)throw new RangeError("Attempt to write outside buffer bounds");ve||(ve="utf8");for(var Pe=!1;;)switch(ve){case"hex":return T(this,L,U,ne);case"utf8":case"utf-8":return E(this,L,U,ne);case"ascii":return B(this,L,U,ne);case"latin1":case"binary":return N(this,L,U,ne);case"base64":return j(this,L,U,ne);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,L,U,ne);default:if(Pe)throw new TypeError("Unknown encoding: "+ve);ve=(""+ve).toLowerCase(),Pe=!0}},p.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},p.prototype.slice=function(L,U){var ne=this.length;L=~~L,U=U===void 0?ne:~~U,0>L?(L+=ne,0>L&&(L=0)):L>ne&&(L=ne),0>U?(U+=ne,0>U&&(U=0)):U>ne&&(U=ne),U<L&&(U=L);var ve=this.subarray(L,U);return ve.__proto__=p.prototype,ve},p.prototype.readUIntLE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=this[L],qe=1,Pe=0;++Pe<U&&(qe*=256);)ve+=this[L+Pe]*qe;return ve},p.prototype.readUIntBE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=this[L+--U],qe=1;0<U&&(qe*=256);)ve+=this[L+--U]*qe;return ve},p.prototype.readUInt8=function(L,U){return L>>>=0,U||te(L,1,this.length),this[L]},p.prototype.readUInt16LE=function(L,U){return L>>>=0,U||te(L,2,this.length),this[L]|this[L+1]<<8},p.prototype.readUInt16BE=function(L,U){return L>>>=0,U||te(L,2,this.length),this[L]<<8|this[L+1]},p.prototype.readUInt32LE=function(L,U){return L>>>=0,U||te(L,4,this.length),(this[L]|this[L+1]<<8|this[L+2]<<16)+16777216*this[L+3]},p.prototype.readUInt32BE=function(L,U){return L>>>=0,U||te(L,4,this.length),16777216*this[L]+(this[L+1]<<16|this[L+2]<<8|this[L+3])},p.prototype.readIntLE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=this[L],qe=1,Pe=0;++Pe<U&&(qe*=256);)ve+=this[L+Pe]*qe;return qe*=128,ve>=qe&&(ve-=r(2,8*U)),ve},p.prototype.readIntBE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=U,qe=1,Pe=this[L+--ve];0<ve&&(qe*=256);)Pe+=this[L+--ve]*qe;return qe*=128,Pe>=qe&&(Pe-=r(2,8*U)),Pe},p.prototype.readInt8=function(L,U){return L>>>=0,U||te(L,1,this.length),128&this[L]?-1*(255-this[L]+1):this[L]},p.prototype.readInt16LE=function(L,U){L>>>=0,U||te(L,2,this.length);var ne=this[L]|this[L+1]<<8;return 32768&ne?4294901760|ne:ne},p.prototype.readInt16BE=function(L,U){L>>>=0,U||te(L,2,this.length);var ne=this[L+1]|this[L]<<8;return 32768&ne?4294901760|ne:ne},p.prototype.readInt32LE=function(L,U){return L>>>=0,U||te(L,4,this.length),this[L]|this[L+1]<<8|this[L+2]<<16|this[L+3]<<24},p.prototype.readInt32BE=function(L,U){return L>>>=0,U||te(L,4,this.length),this[L]<<24|this[L+1]<<16|this[L+2]<<8|this[L+3]},p.prototype.readFloatLE=function(L,U){return L>>>=0,U||te(L,4,this.length),Se.read(this,L,!0,23,4)},p.prototype.readFloatBE=function(L,U){return L>>>=0,U||te(L,4,this.length),Se.read(this,L,!1,23,4)},p.prototype.readDoubleLE=function(L,U){return L>>>=0,U||te(L,8,this.length),Se.read(this,L,!0,52,8)},p.prototype.readDoubleBE=function(L,U){return L>>>=0,U||te(L,8,this.length),Se.read(this,L,!1,52,8)},p.prototype.writeUIntLE=function(L,U,ne,ve){if(L=+L,U>>>=0,ne>>>=0,!ve){var qe=r(2,8*ne)-1;J(this,L,U,ne,qe,0)}var Pe=1,rt=0;for(this[U]=255&L;++rt<ne&&(Pe*=256);)this[U+rt]=255&L/Pe;return U+ne},p.prototype.writeUIntBE=function(L,U,ne,ve){if(L=+L,U>>>=0,ne>>>=0,!ve){var qe=r(2,8*ne)-1;J(this,L,U,ne,qe,0)}var Pe=ne-1,rt=1;for(this[U+Pe]=255&L;0<=--Pe&&(rt*=256);)this[U+Pe]=255&L/rt;return U+ne},p.prototype.writeUInt8=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,1,255,0),this[U]=255&L,U+1},p.prototype.writeUInt16LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,65535,0),this[U]=255&L,this[U+1]=L>>>8,U+2},p.prototype.writeUInt16BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,65535,0),this[U]=L>>>8,this[U+1]=255&L,U+2},p.prototype.writeUInt32LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,4294967295,0),this[U+3]=L>>>24,this[U+2]=L>>>16,this[U+1]=L>>>8,this[U]=255&L,U+4},p.prototype.writeUInt32BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,4294967295,0),this[U]=L>>>24,this[U+1]=L>>>16,this[U+2]=L>>>8,this[U+3]=255&L,U+4},p.prototype.writeIntLE=function(L,U,ne,ve){if(L=+L,U>>>=0,!ve){var qe=r(2,8*ne-1);J(this,L,U,ne,qe-1,-qe)}var Pe=0,rt=1,qt=0;for(this[U]=255&L;++Pe<ne&&(rt*=256);)0>L&&qt===0&&this[U+Pe-1]!==0&&(qt=1),this[U+Pe]=255&(L/rt>>0)-qt;return U+ne},p.prototype.writeIntBE=function(L,U,ne,ve){if(L=+L,U>>>=0,!ve){var qe=r(2,8*ne-1);J(this,L,U,ne,qe-1,-qe)}var Pe=ne-1,rt=1,qt=0;for(this[U+Pe]=255&L;0<=--Pe&&(rt*=256);)0>L&&qt===0&&this[U+Pe+1]!==0&&(qt=1),this[U+Pe]=255&(L/rt>>0)-qt;return U+ne},p.prototype.writeInt8=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,1,127,-128),0>L&&(L=255+L+1),this[U]=255&L,U+1},p.prototype.writeInt16LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,32767,-32768),this[U]=255&L,this[U+1]=L>>>8,U+2},p.prototype.writeInt16BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,32767,-32768),this[U]=L>>>8,this[U+1]=255&L,U+2},p.prototype.writeInt32LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,2147483647,-2147483648),this[U]=255&L,this[U+1]=L>>>8,this[U+2]=L>>>16,this[U+3]=L>>>24,U+4},p.prototype.writeInt32BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,2147483647,-2147483648),0>L&&(L=4294967295+L+1),this[U]=L>>>24,this[U+1]=L>>>16,this[U+2]=L>>>8,this[U+3]=255&L,U+4},p.prototype.writeFloatLE=function(L,U,ne){return ce(this,L,U,!0,ne)},p.prototype.writeFloatBE=function(L,U,ne){return ce(this,L,U,!1,ne)},p.prototype.writeDoubleLE=function(L,U,ne){return me(this,L,U,!0,ne)},p.prototype.writeDoubleBE=function(L,U,ne){return me(this,L,U,!1,ne)},p.prototype.copy=function(L,U,ne,ve){if(!p.isBuffer(L))throw new TypeError("argument should be a Buffer");if(ne||(ne=0),ve||ve===0||(ve=this.length),U>=L.length&&(U=L.length),U||(U=0),0<ve&&ve<ne&&(ve=ne),ve===ne||L.length===0||this.length===0)return 0;if(0>U)throw new RangeError("targetStart out of bounds");if(0>ne||ne>=this.length)throw new RangeError("Index out of range");if(0>ve)throw new RangeError("sourceEnd out of bounds");ve>this.length&&(ve=this.length),L.length-U<ve-ne&&(ve=L.length-U+ne);var qe=ve-ne;if(this===L&&typeof Uint8Array.prototype.copyWithin=="function")this.copyWithin(U,ne,ve);else if(this===L&&ne<U&&U<ve)for(var Pe=qe-1;0<=Pe;--Pe)L[Pe+U]=this[Pe+ne];else Uint8Array.prototype.set.call(L,this.subarray(ne,ve),U);return qe},p.prototype.fill=function(L,U,ne,ve){if(typeof L=="string"){if(typeof U=="string"?(ve=U,U=0,ne=this.length):typeof ne=="string"&&(ve=ne,ne=this.length),ve!==void 0&&typeof ve!="string")throw new TypeError("encoding must be a string");if(typeof ve=="string"&&!p.isEncoding(ve))throw new TypeError("Unknown encoding: "+ve);if(L.length===1){var qe=L.charCodeAt(0);(ve==="utf8"&&128>qe||ve==="latin1")&&(L=qe)}}else typeof L=="number"&&(L&=255);if(0>U||this.length<U||this.length<ne)throw new RangeError("Out of range index");if(ne<=U)return this;U>>>=0,ne=ne===void 0?this.length:ne>>>0,L||(L=0);var Pe;if(typeof L=="number")for(Pe=U;Pe<ne;++Pe)this[Pe]=L;else{var rt=p.isBuffer(L)?L:p.from(L,ve),qt=rt.length;if(qt===0)throw new TypeError('The value "'+L+'" is invalid for argument "value"');for(Pe=0;Pe<ne-U;++Pe)this[Pe+U]=rt[Pe%qt]}return this};var se=/[^+/0-9A-Za-z-_]/g}).call(this)}).call(this,s("buffer").Buffer)},{"base64-js":1,buffer:3,ieee754:9}],4:[function(s,i,c){(function(l){(function(){function u(){let p;try{p=c.storage.getItem("debug")}catch{}return!p&&typeof l<"u"&&"env"in l&&(p=l.env.DEBUG),p}c.formatArgs=function(p){if(p[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+p[0]+(this.useColors?"%c ":" ")+"+"+i.exports.humanize(this.diff),!this.useColors)return;const f="color: "+this.color;p.splice(1,0,f,"color: inherit");let b=0,h=0;p[0].replace(/%[a-zA-Z%]/g,g=>{g==="%%"||(b++,g==="%c"&&(h=b))}),p.splice(h,0,f)},c.save=function(p){try{p?c.storage.setItem("debug",p):c.storage.removeItem("debug")}catch{}},c.load=u,c.useColors=function(){return!!(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))||!(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))&&(typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&31<=parseInt(RegExp.$1,10)||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},c.storage=function(){try{return localStorage}catch{}}(),c.destroy=(()=>{let p=!1;return()=>{p||(p=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),c.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],c.log=console.debug||console.log||(()=>{}),i.exports=s("./common")(c);const{formatters:d}=i.exports;d.j=function(p){try{return JSON.stringify(p)}catch(f){return"[UnexpectedJSONParseError]: "+f.message}}}).call(this)}).call(this,s("_process"))},{"./common":5,_process:12}],5:[function(s,i){i.exports=function(c){function l(p){function f(...g){if(!f.enabled)return;const z=f,A=+new Date,_=A-(b||A);z.diff=_,z.prev=b,z.curr=A,b=A,g[0]=l.coerce(g[0]),typeof g[0]!="string"&&g.unshift("%O");let v=0;g[0]=g[0].replace(/%([a-zA-Z%])/g,(y,k)=>{if(y==="%%")return"%";v++;const S=l.formatters[k];if(typeof S=="function"){const C=g[v];y=S.call(z,C),g.splice(v,1),v--}return y}),l.formatArgs.call(z,g),(z.log||l.log).apply(z,g)}let b,h=null;return f.namespace=p,f.useColors=l.useColors(),f.color=l.selectColor(p),f.extend=u,f.destroy=l.destroy,Object.defineProperty(f,"enabled",{enumerable:!0,configurable:!1,get:()=>h===null?l.enabled(p):h,set:g=>{h=g}}),typeof l.init=="function"&&l.init(f),f}function u(p,f){const b=l(this.namespace+(typeof f>"u"?":":f)+p);return b.log=this.log,b}function d(p){return p.toString().substring(2,p.toString().length-2).replace(/\.\*\?$/,"*")}return l.debug=l,l.default=l,l.coerce=function(p){return p instanceof Error?p.stack||p.message:p},l.disable=function(){const p=[...l.names.map(d),...l.skips.map(d).map(f=>"-"+f)].join(",");return l.enable(""),p},l.enable=function(p){l.save(p),l.names=[],l.skips=[];let f;const b=(typeof p=="string"?p:"").split(/[\s,]+/),h=b.length;for(f=0;f<h;f++)b[f]&&(p=b[f].replace(/\*/g,".*?"),p[0]==="-"?l.skips.push(new RegExp("^"+p.substr(1)+"$")):l.names.push(new RegExp("^"+p+"$")))},l.enabled=function(p){if(p[p.length-1]==="*")return!0;let f,b;for(f=0,b=l.skips.length;f<b;f++)if(l.skips[f].test(p))return!1;for(f=0,b=l.names.length;f<b;f++)if(l.names[f].test(p))return!0;return!1},l.humanize=s("ms"),l.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(c).forEach(p=>{l[p]=c[p]}),l.names=[],l.skips=[],l.formatters={},l.selectColor=function(p){let f=0;for(let b=0;b<p.length;b++)f=(f<<5)-f+p.charCodeAt(b),f|=0;return l.colors[o(f)%l.colors.length]},l.enable(l.load()),l}},{ms:11}],6:[function(s,i){function c(l,u){for(const d in u)Object.defineProperty(l,d,{value:u[d],enumerable:!0,configurable:!0});return l}i.exports=function(l,u,d){if(!l||typeof l=="string")throw new TypeError("Please pass an Error to err-code");d||(d={}),typeof u=="object"&&(d=u,u=""),u&&(d.code=u);try{return c(l,d)}catch{d.message=l.message,d.stack=l.stack;const f=function(){};return f.prototype=Object.create(Object.getPrototypeOf(l)),c(new f,d)}}},{}],7:[function(s,i){function c(T){console&&console.warn&&console.warn(T)}function l(){l.init.call(this)}function u(T){if(typeof T!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof T)}function d(T){return T._maxListeners===void 0?l.defaultMaxListeners:T._maxListeners}function p(T,E,B,N){var j,I,P;if(u(B),I=T._events,I===void 0?(I=T._events=Object.create(null),T._eventsCount=0):(I.newListener!==void 0&&(T.emit("newListener",E,B.listener?B.listener:B),I=T._events),P=I[E]),P===void 0)P=I[E]=B,++T._eventsCount;else if(typeof P=="function"?P=I[E]=N?[B,P]:[P,B]:N?P.unshift(B):P.push(B),j=d(T),0<j&&P.length>j&&!P.warned){P.warned=!0;var $=new Error("Possible EventEmitter memory leak detected. "+P.length+" "+(E+" listeners added. Use emitter.setMaxListeners() to increase limit"));$.name="MaxListenersExceededWarning",$.emitter=T,$.type=E,$.count=P.length,c($)}return T}function f(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function b(T,E,B){var N={fired:!1,wrapFn:void 0,target:T,type:E,listener:B},j=f.bind(N);return j.listener=B,N.wrapFn=j,j}function h(T,E,B){var N=T._events;if(N===void 0)return[];var j=N[E];return j===void 0?[]:typeof j=="function"?B?[j.listener||j]:[j]:B?_(j):z(j,j.length)}function g(T){var E=this._events;if(E!==void 0){var B=E[T];if(typeof B=="function")return 1;if(B!==void 0)return B.length}return 0}function z(T,E){for(var B=Array(E),N=0;N<E;++N)B[N]=T[N];return B}function A(T,E){for(;E+1<T.length;E++)T[E]=T[E+1];T.pop()}function _(T){for(var E=Array(T.length),B=0;B<E.length;++B)E[B]=T[B].listener||T[B];return E}function v(T,E,B){typeof T.on=="function"&&M(T,"error",E,B)}function M(T,E,B,N){if(typeof T.on=="function")N.once?T.once(E,B):T.on(E,B);else if(typeof T.addEventListener=="function")T.addEventListener(E,function j(I){N.once&&T.removeEventListener(E,j),B(I)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof T)}var y,k=typeof Reflect=="object"?Reflect:null,S=k&&typeof k.apply=="function"?k.apply:function(T,E,B){return Function.prototype.apply.call(T,E,B)};y=k&&typeof k.ownKeys=="function"?k.ownKeys:Object.getOwnPropertySymbols?function(T){return Object.getOwnPropertyNames(T).concat(Object.getOwnPropertySymbols(T))}:function(T){return Object.getOwnPropertyNames(T)};var C=Number.isNaN||function(T){return T!==T};i.exports=l,i.exports.once=function(T,E){return new Promise(function(B,N){function j(P){T.removeListener(E,I),N(P)}function I(){typeof T.removeListener=="function"&&T.removeListener("error",j),B([].slice.call(arguments))}M(T,E,I,{once:!0}),E!=="error"&&v(T,j,{once:!0})})},l.EventEmitter=l,l.prototype._events=void 0,l.prototype._eventsCount=0,l.prototype._maxListeners=void 0;var R=10;Object.defineProperty(l,"defaultMaxListeners",{enumerable:!0,get:function(){return R},set:function(T){if(typeof T!="number"||0>T||C(T))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+T+".");R=T}}),l.init=function(){(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},l.prototype.setMaxListeners=function(T){if(typeof T!="number"||0>T||C(T))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+T+".");return this._maxListeners=T,this},l.prototype.getMaxListeners=function(){return d(this)},l.prototype.emit=function(T){for(var E=[],B=1;B<arguments.length;B++)E.push(arguments[B]);var N=T==="error",j=this._events;if(j!==void 0)N=N&&j.error===void 0;else if(!N)return!1;if(N){var I;if(0<E.length&&(I=E[0]),I instanceof Error)throw I;var P=new Error("Unhandled error."+(I?" ("+I.message+")":""));throw P.context=I,P}var $=j[T];if($===void 0)return!1;if(typeof $=="function")S($,this,E);else for(var F=$.length,X=z($,F),B=0;B<F;++B)S(X[B],this,E);return!0},l.prototype.addListener=function(T,E){return p(this,T,E,!1)},l.prototype.on=l.prototype.addListener,l.prototype.prependListener=function(T,E){return p(this,T,E,!0)},l.prototype.once=function(T,E){return u(E),this.on(T,b(this,T,E)),this},l.prototype.prependOnceListener=function(T,E){return u(E),this.prependListener(T,b(this,T,E)),this},l.prototype.removeListener=function(T,E){var B,N,j,I,P;if(u(E),N=this._events,N===void 0)return this;if(B=N[T],B===void 0)return this;if(B===E||B.listener===E)--this._eventsCount==0?this._events=Object.create(null):(delete N[T],N.removeListener&&this.emit("removeListener",T,B.listener||E));else if(typeof B!="function"){for(j=-1,I=B.length-1;0<=I;I--)if(B[I]===E||B[I].listener===E){P=B[I].listener,j=I;break}if(0>j)return this;j===0?B.shift():A(B,j),B.length===1&&(N[T]=B[0]),N.removeListener!==void 0&&this.emit("removeListener",T,P||E)}return this},l.prototype.off=l.prototype.removeListener,l.prototype.removeAllListeners=function(T){var E,B,N;if(B=this._events,B===void 0)return this;if(B.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):B[T]!==void 0&&(--this._eventsCount==0?this._events=Object.create(null):delete B[T]),this;if(arguments.length===0){var j,I=Object.keys(B);for(N=0;N<I.length;++N)j=I[N],j!=="removeListener"&&this.removeAllListeners(j);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(E=B[T],typeof E=="function")this.removeListener(T,E);else if(E!==void 0)for(N=E.length-1;0<=N;N--)this.removeListener(T,E[N]);return this},l.prototype.listeners=function(T){return h(this,T,!0)},l.prototype.rawListeners=function(T){return h(this,T,!1)},l.listenerCount=function(T,E){return typeof T.listenerCount=="function"?T.listenerCount(E):g.call(T,E)},l.prototype.listenerCount=g,l.prototype.eventNames=function(){return 0<this._eventsCount?y(this._events):[]}},{}],8:[function(s,i){i.exports=function(){if(typeof globalThis>"u")return null;var c={RTCPeerConnection:globalThis.RTCPeerConnection||globalThis.mozRTCPeerConnection||globalThis.webkitRTCPeerConnection,RTCSessionDescription:globalThis.RTCSessionDescription||globalThis.mozRTCSessionDescription||globalThis.webkitRTCSessionDescription,RTCIceCandidate:globalThis.RTCIceCandidate||globalThis.mozRTCIceCandidate||globalThis.webkitRTCIceCandidate};return c.RTCPeerConnection?c:null}},{}],9:[function(s,i,c){/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */c.read=function(l,u,d,p,f){var b,h,g=8*f-p-1,z=(1<<g)-1,A=z>>1,_=-7,v=d?f-1:0,M=d?-1:1,y=l[u+v];for(v+=M,b=y&(1<<-_)-1,y>>=-_,_+=g;0<_;b=256*b+l[u+v],v+=M,_-=8);for(h=b&(1<<-_)-1,b>>=-_,_+=p;0<_;h=256*h+l[u+v],v+=M,_-=8);if(b===0)b=1-A;else{if(b===z)return h?NaN:(y?-1:1)*(1/0);h+=r(2,p),b-=A}return(y?-1:1)*h*r(2,b-p)},c.write=function(l,u,d,p,f,b){var h,g,z,A=Math.LN2,_=Math.log,v=8*b-f-1,M=(1<<v)-1,y=M>>1,k=f===23?r(2,-24)-r(2,-77):0,S=p?0:b-1,C=p?1:-1,R=0>u||u===0&&0>1/u?1:0;for(u=o(u),isNaN(u)||u===1/0?(g=isNaN(u)?1:0,h=M):(h=n(_(u)/A),1>u*(z=r(2,-h))&&(h--,z*=2),u+=1<=h+y?k/z:k*r(2,1-y),2<=u*z&&(h++,z/=2),h+y>=M?(g=0,h=M):1<=h+y?(g=(u*z-1)*r(2,f),h+=y):(g=u*r(2,y-1)*r(2,f),h=0));8<=f;l[d+S]=255&g,S+=C,g/=256,f-=8);for(h=h<<f|g,v+=f;0<v;l[d+S]=255&h,S+=C,h/=256,v-=8);l[d+S-C]|=128*R}},{}],10:[function(s,i){i.exports=typeof Object.create=="function"?function(c,l){l&&(c.super_=l,c.prototype=Object.create(l.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}))}:function(c,l){if(l){c.super_=l;var u=function(){};u.prototype=l.prototype,c.prototype=new u,c.prototype.constructor=c}}},{}],11:[function(s,i){var c=Math.round;function l(f){if(f+="",!(100<f.length)){var b=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(f);if(b){var h=parseFloat(b[1]),g=(b[2]||"ms").toLowerCase();return g==="years"||g==="year"||g==="yrs"||g==="yr"||g==="y"?315576e5*h:g==="weeks"||g==="week"||g==="w"?6048e5*h:g==="days"||g==="day"||g==="d"?864e5*h:g==="hours"||g==="hour"||g==="hrs"||g==="hr"||g==="h"?36e5*h:g==="minutes"||g==="minute"||g==="mins"||g==="min"||g==="m"?6e4*h:g==="seconds"||g==="second"||g==="secs"||g==="sec"||g==="s"?1e3*h:g==="milliseconds"||g==="millisecond"||g==="msecs"||g==="msec"||g==="ms"?h:void 0}}}function u(f){var b=o(f);return 864e5<=b?c(f/864e5)+"d":36e5<=b?c(f/36e5)+"h":6e4<=b?c(f/6e4)+"m":1e3<=b?c(f/1e3)+"s":f+"ms"}function d(f){var b=o(f);return 864e5<=b?p(f,b,864e5,"day"):36e5<=b?p(f,b,36e5,"hour"):6e4<=b?p(f,b,6e4,"minute"):1e3<=b?p(f,b,1e3,"second"):f+" ms"}function p(f,b,h,g){return c(f/h)+" "+g+(b>=1.5*h?"s":"")}i.exports=function(f,b){b=b||{};var h=typeof f;if(h=="string"&&0<f.length)return l(f);if(h==="number"&&isFinite(f))return b.long?d(f):u(f);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(f))}},{}],12:[function(s,i){function c(){throw new Error("setTimeout has not been defined")}function l(){throw new Error("clearTimeout has not been defined")}function u(k){if(g===setTimeout)return setTimeout(k,0);if((g===c||!g)&&setTimeout)return g=setTimeout,setTimeout(k,0);try{return g(k,0)}catch{try{return g.call(null,k,0)}catch{return g.call(this,k,0)}}}function d(k){if(z===clearTimeout)return clearTimeout(k);if((z===l||!z)&&clearTimeout)return z=clearTimeout,clearTimeout(k);try{return z(k)}catch{try{return z.call(null,k)}catch{return z.call(this,k)}}}function p(){M&&_&&(M=!1,_.length?v=_.concat(v):y=-1,v.length&&f())}function f(){if(!M){var k=u(p);M=!0;for(var S=v.length;S;){for(_=v,v=[];++y<S;)_&&_[y].run();y=-1,S=v.length}_=null,M=!1,d(k)}}function b(k,S){this.fun=k,this.array=S}function h(){}var g,z,A=i.exports={};(function(){try{g=typeof setTimeout=="function"?setTimeout:c}catch{g=c}try{z=typeof clearTimeout=="function"?clearTimeout:l}catch{z=l}})();var _,v=[],M=!1,y=-1;A.nextTick=function(k){var S=Array(arguments.length-1);if(1<arguments.length)for(var C=1;C<arguments.length;C++)S[C-1]=arguments[C];v.push(new b(k,S)),v.length!==1||M||u(f)},b.prototype.run=function(){this.fun.apply(null,this.array)},A.title="browser",A.browser=!0,A.env={},A.argv=[],A.version="",A.versions={},A.on=h,A.addListener=h,A.once=h,A.off=h,A.removeListener=h,A.removeAllListeners=h,A.emit=h,A.prependListener=h,A.prependOnceListener=h,A.listeners=function(){return[]},A.binding=function(){throw new Error("process.binding is not supported")},A.cwd=function(){return"/"},A.chdir=function(){throw new Error("process.chdir is not supported")},A.umask=function(){return 0}},{}],13:[function(s,i){(function(c){(function(){/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */let l;i.exports=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window>"u"?c:window):u=>(l||(l=Promise.resolve())).then(u).catch(d=>setTimeout(()=>{throw d},0))}).call(this)}).call(this,typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{}],14:[function(s,i){(function(c,l){(function(){var u=s("safe-buffer").Buffer,d=l.crypto||l.msCrypto;i.exports=d&&d.getRandomValues?function(p,f){if(p>4294967295)throw new RangeError("requested too many random bytes");var b=u.allocUnsafe(p);if(0<p)if(65536<p)for(var h=0;h<p;h+=65536)d.getRandomValues(b.slice(h,h+65536));else d.getRandomValues(b);return typeof f=="function"?c.nextTick(function(){f(null,b)}):b}:function(){throw new Error(`Secure random number generation is not supported by this browser. -Use Chrome, Firefox or Internet Explorer 11`)}}).call(this)}).call(this,s("_process"),typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{_process:12,"safe-buffer":30}],15:[function(s,i){function c(h,g){h.prototype=Object.create(g.prototype),h.prototype.constructor=h,h.__proto__=g}function l(h,g,z){function A(v,M,y){return typeof g=="string"?g:g(v,M,y)}z||(z=Error);var _=function(v){function M(y,k,S){return v.call(this,A(y,k,S))||this}return c(M,v),M}(z);_.prototype.name=z.name,_.prototype.code=h,b[h]=_}function u(h,g){if(Array.isArray(h)){var z=h.length;return h=h.map(function(A){return A+""}),2<z?"one of ".concat(g," ").concat(h.slice(0,z-1).join(", "),", or ")+h[z-1]:z===2?"one of ".concat(g," ").concat(h[0]," or ").concat(h[1]):"of ".concat(g," ").concat(h[0])}return"of ".concat(g," ").concat(h+"")}function d(h,g,z){return h.substr(0,g.length)===g}function p(h,g,z){return(z===void 0||z>h.length)&&(z=h.length),h.substring(z-g.length,z)===g}function f(h,g,z){return typeof z!="number"&&(z=0),!(z+g.length>h.length)&&h.indexOf(g,z)!==-1}var b={};l("ERR_INVALID_OPT_VALUE",function(h,g){return'The value "'+g+'" is invalid for option "'+h+'"'},TypeError),l("ERR_INVALID_ARG_TYPE",function(h,g,z){var A;typeof g=="string"&&d(g,"not ")?(A="must not be",g=g.replace(/^not /,"")):A="must be";var _;if(p(h," argument"))_="The ".concat(h," ").concat(A," ").concat(u(g,"type"));else{var v=f(h,".")?"property":"argument";_='The "'.concat(h,'" ').concat(v," ").concat(A," ").concat(u(g,"type"))}return _+=". Received type ".concat(typeof z),_},TypeError),l("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),l("ERR_METHOD_NOT_IMPLEMENTED",function(h){return"The "+h+" method is not implemented"}),l("ERR_STREAM_PREMATURE_CLOSE","Premature close"),l("ERR_STREAM_DESTROYED",function(h){return"Cannot call "+h+" after a stream was destroyed"}),l("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),l("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),l("ERR_STREAM_WRITE_AFTER_END","write after end"),l("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),l("ERR_UNKNOWN_ENCODING",function(h){return"Unknown encoding: "+h},TypeError),l("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),i.exports.codes=b},{}],16:[function(s,i){(function(c){(function(){function l(A){return this instanceof l?(f.call(this,A),b.call(this,A),this.allowHalfOpen=!0,void(A&&(A.readable===!1&&(this.readable=!1),A.writable===!1&&(this.writable=!1),A.allowHalfOpen===!1&&(this.allowHalfOpen=!1,this.once("end",u))))):new l(A)}function u(){this._writableState.ended||c.nextTick(d,this)}function d(A){A.end()}var p=Object.keys||function(A){var _=[];for(var v in A)_.push(v);return _};i.exports=l;var f=s("./_stream_readable"),b=s("./_stream_writable");s("inherits")(l,f);for(var h,g=p(b.prototype),z=0;z<g.length;z++)h=g[z],l.prototype[h]||(l.prototype[h]=b.prototype[h]);Object.defineProperty(l.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(l.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(l.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(l.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState!==void 0&&this._writableState!==void 0&&this._readableState.destroyed&&this._writableState.destroyed},set:function(A){this._readableState===void 0||this._writableState===void 0||(this._readableState.destroyed=A,this._writableState.destroyed=A)}})}).call(this)}).call(this,s("_process"))},{"./_stream_readable":18,"./_stream_writable":20,_process:12,inherits:10}],17:[function(s,i){function c(u){return this instanceof c?void l.call(this,u):new c(u)}i.exports=c;var l=s("./_stream_transform");s("inherits")(c,l),c.prototype._transform=function(u,d,p){p(null,u)}},{"./_stream_transform":19,inherits:10}],18:[function(s,i){(function(c,l){(function(){function u(se){return ee.from(se)}function d(se){return ee.isBuffer(se)||se instanceof te}function p(se,L,U){return typeof se.prependListener=="function"?se.prependListener(L,U):void(se._events&&se._events[L]?Array.isArray(se._events[L])?se._events[L].unshift(U):se._events[L]=[U,se._events[L]]:se.on(L,U))}function f(se,L,U){F=F||s("./_stream_duplex"),se=se||{},typeof U!="boolean"&&(U=L instanceof F),this.objectMode=!!se.objectMode,U&&(this.objectMode=this.objectMode||!!se.readableObjectMode),this.highWaterMark=Ne(this,se,"readableHighWaterMark",U),this.buffer=new de,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=se.emitClose!==!1,this.autoDestroy=!!se.autoDestroy,this.destroyed=!1,this.defaultEncoding=se.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,se.encoding&&(!ue&&(ue=s("string_decoder/").StringDecoder),this.decoder=new ue(se.encoding),this.encoding=se.encoding)}function b(se){if(F=F||s("./_stream_duplex"),!(this instanceof b))return new b(se);var L=this instanceof F;this._readableState=new f(se,this,L),this.readable=!0,se&&(typeof se.read=="function"&&(this._read=se.read),typeof se.destroy=="function"&&(this._destroy=se.destroy)),V.call(this)}function h(se,L,U,ne,ve){X("readableAddChunk",L);var qe=se._readableState;if(L===null)qe.reading=!1,v(se,qe);else{var Pe;if(ve||(Pe=z(qe,L)),Pe)ke(se,Pe);else if(!(qe.objectMode||L&&0<L.length))ne||(qe.reading=!1,k(se,qe));else if(typeof L=="string"||qe.objectMode||Object.getPrototypeOf(L)===ee.prototype||(L=u(L)),ne)qe.endEmitted?ke(se,new pe):g(se,qe,L,!0);else if(qe.ended)ke(se,new we);else{if(qe.destroyed)return!1;qe.reading=!1,qe.decoder&&!U?(L=qe.decoder.write(L),qe.objectMode||L.length!==0?g(se,qe,L,!1):k(se,qe)):g(se,qe,L,!1)}}return!qe.ended&&(qe.length<qe.highWaterMark||qe.length===0)}function g(se,L,U,ne){L.flowing&&L.length===0&&!L.sync?(L.awaitDrain=0,se.emit("data",U)):(L.length+=L.objectMode?1:U.length,ne?L.buffer.unshift(U):L.buffer.push(U),L.needReadable&&M(se)),k(se,L)}function z(se,L){var U;return d(L)||typeof L=="string"||L===void 0||se.objectMode||(U=new ie("chunk",["string","Buffer","Uint8Array"],L)),U}function A(se){return 1073741824<=se?se=1073741824:(se--,se|=se>>>1,se|=se>>>2,se|=se>>>4,se|=se>>>8,se|=se>>>16,se++),se}function _(se,L){return 0>=se||L.length===0&&L.ended?0:L.objectMode?1:se===se?(se>L.highWaterMark&&(L.highWaterMark=A(se)),se<=L.length?se:L.ended?L.length:(L.needReadable=!0,0)):L.flowing&&L.length?L.buffer.head.data.length:L.length}function v(se,L){if(X("onEofChunk"),!L.ended){if(L.decoder){var U=L.decoder.end();U&&U.length&&(L.buffer.push(U),L.length+=L.objectMode?1:U.length)}L.ended=!0,L.sync?M(se):(L.needReadable=!1,!L.emittedReadable&&(L.emittedReadable=!0,y(se)))}}function M(se){var L=se._readableState;X("emitReadable",L.needReadable,L.emittedReadable),L.needReadable=!1,L.emittedReadable||(X("emitReadable",L.flowing),L.emittedReadable=!0,c.nextTick(y,se))}function y(se){var L=se._readableState;X("emitReadable_",L.destroyed,L.length,L.ended),!L.destroyed&&(L.length||L.ended)&&(se.emit("readable"),L.emittedReadable=!1),L.needReadable=!L.flowing&&!L.ended&&L.length<=L.highWaterMark,N(se)}function k(se,L){L.readingMore||(L.readingMore=!0,c.nextTick(S,se,L))}function S(se,L){for(;!L.reading&&!L.ended&&(L.length<L.highWaterMark||L.flowing&&L.length===0);){var U=L.length;if(X("maybeReadMore read 0"),se.read(0),U===L.length)break}L.readingMore=!1}function C(se){return function(){var L=se._readableState;X("pipeOnDrain",L.awaitDrain),L.awaitDrain&&L.awaitDrain--,L.awaitDrain===0&&Z(se,"data")&&(L.flowing=!0,N(se))}}function R(se){var L=se._readableState;L.readableListening=0<se.listenerCount("readable"),L.resumeScheduled&&!L.paused?L.flowing=!0:0<se.listenerCount("data")&&se.resume()}function T(se){X("readable nexttick read 0"),se.read(0)}function E(se,L){L.resumeScheduled||(L.resumeScheduled=!0,c.nextTick(B,se,L))}function B(se,L){X("resume",L.reading),L.reading||se.read(0),L.resumeScheduled=!1,se.emit("resume"),N(se),L.flowing&&!L.reading&&se.read(0)}function N(se){var L=se._readableState;for(X("flow",L.flowing);L.flowing&&se.read()!==null;);}function j(se,L){if(L.length===0)return null;var U;return L.objectMode?U=L.buffer.shift():!se||se>=L.length?(U=L.decoder?L.buffer.join(""):L.buffer.length===1?L.buffer.first():L.buffer.concat(L.length),L.buffer.clear()):U=L.buffer.consume(se,L.decoder),U}function I(se){var L=se._readableState;X("endReadable",L.endEmitted),L.endEmitted||(L.ended=!0,c.nextTick(P,L,se))}function P(se,L){if(X("endReadableNT",se.endEmitted,se.length),!se.endEmitted&&se.length===0&&(se.endEmitted=!0,L.readable=!1,L.emit("end"),se.autoDestroy)){var U=L._writableState;(!U||U.autoDestroy&&U.finished)&&L.destroy()}}function $(se,L){for(var U=0,ne=se.length;U<ne;U++)if(se[U]===L)return U;return-1}i.exports=b;var F;b.ReadableState=f;var X;s("events").EventEmitter;var Z=function(se,L){return se.listeners(L).length},V=s("./internal/streams/stream"),ee=s("buffer").Buffer,te=l.Uint8Array||function(){},J=s("util");X=J&&J.debuglog?J.debuglog("stream"):function(){};var ue,ce,me,de=s("./internal/streams/buffer_list"),Ae=s("./internal/streams/destroy"),ye=s("./internal/streams/state"),Ne=ye.getHighWaterMark,je=s("../errors").codes,ie=je.ERR_INVALID_ARG_TYPE,we=je.ERR_STREAM_PUSH_AFTER_EOF,re=je.ERR_METHOD_NOT_IMPLEMENTED,pe=je.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;s("inherits")(b,V);var ke=Ae.errorOrDestroy,Se=["error","close","destroy","pause","resume"];Object.defineProperty(b.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState!==void 0&&this._readableState.destroyed},set:function(se){this._readableState&&(this._readableState.destroyed=se)}}),b.prototype.destroy=Ae.destroy,b.prototype._undestroy=Ae.undestroy,b.prototype._destroy=function(se,L){L(se)},b.prototype.push=function(se,L){var U,ne=this._readableState;return ne.objectMode?U=!0:typeof se=="string"&&(L=L||ne.defaultEncoding,L!==ne.encoding&&(se=ee.from(se,L),L=""),U=!0),h(this,se,L,!1,U)},b.prototype.unshift=function(se){return h(this,se,null,!0,!1)},b.prototype.isPaused=function(){return this._readableState.flowing===!1},b.prototype.setEncoding=function(se){ue||(ue=s("string_decoder/").StringDecoder);var L=new ue(se);this._readableState.decoder=L,this._readableState.encoding=this._readableState.decoder.encoding;for(var U=this._readableState.buffer.head,ne="";U!==null;)ne+=L.write(U.data),U=U.next;return this._readableState.buffer.clear(),ne!==""&&this._readableState.buffer.push(ne),this._readableState.length=ne.length,this},b.prototype.read=function(se){X("read",se),se=parseInt(se,10);var L=this._readableState,U=se;if(se!==0&&(L.emittedReadable=!1),se===0&&L.needReadable&&((L.highWaterMark===0?0<L.length:L.length>=L.highWaterMark)||L.ended))return X("read: emitReadable",L.length,L.ended),L.length===0&&L.ended?I(this):M(this),null;if(se=_(se,L),se===0&&L.ended)return L.length===0&&I(this),null;var ne=L.needReadable;X("need readable",ne),(L.length===0||L.length-se<L.highWaterMark)&&(ne=!0,X("length less than watermark",ne)),L.ended||L.reading?(ne=!1,X("reading or ended",ne)):ne&&(X("do read"),L.reading=!0,L.sync=!0,L.length===0&&(L.needReadable=!0),this._read(L.highWaterMark),L.sync=!1,!L.reading&&(se=_(U,L)));var ve;return ve=0<se?j(se,L):null,ve===null?(L.needReadable=L.length<=L.highWaterMark,se=0):(L.length-=se,L.awaitDrain=0),L.length===0&&(!L.ended&&(L.needReadable=!0),U!==se&&L.ended&&I(this)),ve!==null&&this.emit("data",ve),ve},b.prototype._read=function(){ke(this,new re("_read()"))},b.prototype.pipe=function(se,L){function U(be,ze){X("onunpipe"),be===Bt&&ze&&ze.hasUnpiped===!1&&(ze.hasUnpiped=!0,ve())}function ne(){X("onend"),se.end()}function ve(){X("cleanup"),se.removeListener("close",rt),se.removeListener("finish",qt),se.removeListener("drain",fe),se.removeListener("error",Pe),se.removeListener("unpipe",U),Bt.removeListener("end",ne),Bt.removeListener("end",wt),Bt.removeListener("data",qe),Re=!0,ae.awaitDrain&&(!se._writableState||se._writableState.needDrain)&&fe()}function qe(be){X("ondata");var ze=se.write(be);X("dest.write",ze),ze===!1&&((ae.pipesCount===1&&ae.pipes===se||1<ae.pipesCount&&$(ae.pipes,se)!==-1)&&!Re&&(X("false write response, pause",ae.awaitDrain),ae.awaitDrain++),Bt.pause())}function Pe(be){X("onerror",be),wt(),se.removeListener("error",Pe),Z(se,"error")===0&&ke(se,be)}function rt(){se.removeListener("finish",qt),wt()}function qt(){X("onfinish"),se.removeListener("close",rt),wt()}function wt(){X("unpipe"),Bt.unpipe(se)}var Bt=this,ae=this._readableState;switch(ae.pipesCount){case 0:ae.pipes=se;break;case 1:ae.pipes=[ae.pipes,se];break;default:ae.pipes.push(se)}ae.pipesCount+=1,X("pipe count=%d opts=%j",ae.pipesCount,L);var H=(!L||L.end!==!1)&&se!==c.stdout&&se!==c.stderr,Y=H?ne:wt;ae.endEmitted?c.nextTick(Y):Bt.once("end",Y),se.on("unpipe",U);var fe=C(Bt);se.on("drain",fe);var Re=!1;return Bt.on("data",qe),p(se,"error",Pe),se.once("close",rt),se.once("finish",qt),se.emit("pipe",Bt),ae.flowing||(X("pipe resume"),Bt.resume()),se},b.prototype.unpipe=function(se){var L=this._readableState,U={hasUnpiped:!1};if(L.pipesCount===0)return this;if(L.pipesCount===1)return se&&se!==L.pipes?this:(se||(se=L.pipes),L.pipes=null,L.pipesCount=0,L.flowing=!1,se&&se.emit("unpipe",this,U),this);if(!se){var ne=L.pipes,ve=L.pipesCount;L.pipes=null,L.pipesCount=0,L.flowing=!1;for(var qe=0;qe<ve;qe++)ne[qe].emit("unpipe",this,{hasUnpiped:!1});return this}var Pe=$(L.pipes,se);return Pe===-1?this:(L.pipes.splice(Pe,1),L.pipesCount-=1,L.pipesCount===1&&(L.pipes=L.pipes[0]),se.emit("unpipe",this,U),this)},b.prototype.on=function(se,L){var U=V.prototype.on.call(this,se,L),ne=this._readableState;return se==="data"?(ne.readableListening=0<this.listenerCount("readable"),ne.flowing!==!1&&this.resume()):se=="readable"&&!ne.endEmitted&&!ne.readableListening&&(ne.readableListening=ne.needReadable=!0,ne.flowing=!1,ne.emittedReadable=!1,X("on readable",ne.length,ne.reading),ne.length?M(this):!ne.reading&&c.nextTick(T,this)),U},b.prototype.addListener=b.prototype.on,b.prototype.removeListener=function(se,L){var U=V.prototype.removeListener.call(this,se,L);return se==="readable"&&c.nextTick(R,this),U},b.prototype.removeAllListeners=function(se){var L=V.prototype.removeAllListeners.apply(this,arguments);return(se==="readable"||se===void 0)&&c.nextTick(R,this),L},b.prototype.resume=function(){var se=this._readableState;return se.flowing||(X("resume"),se.flowing=!se.readableListening,E(this,se)),se.paused=!1,this},b.prototype.pause=function(){return X("call pause flowing=%j",this._readableState.flowing),this._readableState.flowing!==!1&&(X("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},b.prototype.wrap=function(se){var L=this,U=this._readableState,ne=!1;for(var ve in se.on("end",function(){if(X("wrapped end"),U.decoder&&!U.ended){var Pe=U.decoder.end();Pe&&Pe.length&&L.push(Pe)}L.push(null)}),se.on("data",function(Pe){if(X("wrapped data"),U.decoder&&(Pe=U.decoder.write(Pe)),!(U.objectMode&&Pe==null)&&(U.objectMode||Pe&&Pe.length)){var rt=L.push(Pe);rt||(ne=!0,se.pause())}}),se)this[ve]===void 0&&typeof se[ve]=="function"&&(this[ve]=function(Pe){return function(){return se[Pe].apply(se,arguments)}}(ve));for(var qe=0;qe<Se.length;qe++)se.on(Se[qe],this.emit.bind(this,Se[qe]));return this._read=function(Pe){X("wrapped _read",Pe),ne&&(ne=!1,se.resume())},this},typeof Symbol=="function"&&(b.prototype[Symbol.asyncIterator]=function(){return ce===void 0&&(ce=s("./internal/streams/async_iterator")),ce(this)}),Object.defineProperty(b.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Object.defineProperty(b.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}}),Object.defineProperty(b.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(se){this._readableState&&(this._readableState.flowing=se)}}),b._fromList=j,Object.defineProperty(b.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}}),typeof Symbol=="function"&&(b.from=function(se,L){return me===void 0&&(me=s("./internal/streams/from")),me(b,se,L)})}).call(this)}).call(this,s("_process"),typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{"../errors":15,"./_stream_duplex":16,"./internal/streams/async_iterator":21,"./internal/streams/buffer_list":22,"./internal/streams/destroy":23,"./internal/streams/from":25,"./internal/streams/state":27,"./internal/streams/stream":28,_process:12,buffer:3,events:7,inherits:10,"string_decoder/":31,util:2}],19:[function(s,i){function c(A,_){var v=this._transformState;v.transforming=!1;var M=v.writecb;if(M===null)return this.emit("error",new b);v.writechunk=null,v.writecb=null,_!=null&&this.push(_),M(A);var y=this._readableState;y.reading=!1,(y.needReadable||y.length<y.highWaterMark)&&this._read(y.highWaterMark)}function l(A){return this instanceof l?(z.call(this,A),this._transformState={afterTransform:c.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,A&&(typeof A.transform=="function"&&(this._transform=A.transform),typeof A.flush=="function"&&(this._flush=A.flush)),void this.on("prefinish",u)):new l(A)}function u(){var A=this;typeof this._flush!="function"||this._readableState.destroyed?d(this,null,null):this._flush(function(_,v){d(A,_,v)})}function d(A,_,v){if(_)return A.emit("error",_);if(v!=null&&A.push(v),A._writableState.length)throw new g;if(A._transformState.transforming)throw new h;return A.push(null)}i.exports=l;var p=s("../errors").codes,f=p.ERR_METHOD_NOT_IMPLEMENTED,b=p.ERR_MULTIPLE_CALLBACK,h=p.ERR_TRANSFORM_ALREADY_TRANSFORMING,g=p.ERR_TRANSFORM_WITH_LENGTH_0,z=s("./_stream_duplex");s("inherits")(l,z),l.prototype.push=function(A,_){return this._transformState.needTransform=!1,z.prototype.push.call(this,A,_)},l.prototype._transform=function(A,_,v){v(new f("_transform()"))},l.prototype._write=function(A,_,v){var M=this._transformState;if(M.writecb=v,M.writechunk=A,M.writeencoding=_,!M.transforming){var y=this._readableState;(M.needTransform||y.needReadable||y.length<y.highWaterMark)&&this._read(y.highWaterMark)}},l.prototype._read=function(){var A=this._transformState;A.writechunk===null||A.transforming?A.needTransform=!0:(A.transforming=!0,this._transform(A.writechunk,A.writeencoding,A.afterTransform))},l.prototype._destroy=function(A,_){z.prototype._destroy.call(this,A,function(v){_(v)})}},{"../errors":15,"./_stream_duplex":16,inherits:10}],20:[function(s,i){(function(c,l){(function(){function u(re){var pe=this;this.next=null,this.entry=null,this.finish=function(){I(pe,re)}}function d(re){return X.from(re)}function p(re){return X.isBuffer(re)||re instanceof Z}function f(){}function b(re,pe,ke){P=P||s("./_stream_duplex"),re=re||{},typeof ke!="boolean"&&(ke=pe instanceof P),this.objectMode=!!re.objectMode,ke&&(this.objectMode=this.objectMode||!!re.writableObjectMode),this.highWaterMark=te(this,re,"writableHighWaterMark",ke),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var Se=re.decodeStrings===!1;this.decodeStrings=!Se,this.defaultEncoding=re.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(se){k(pe,se)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=re.emitClose!==!1,this.autoDestroy=!!re.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new u(this)}function h(re){P=P||s("./_stream_duplex");var pe=this instanceof P;return pe||we.call(h,this)?(this._writableState=new b(re,this,pe),this.writable=!0,re&&(typeof re.write=="function"&&(this._write=re.write),typeof re.writev=="function"&&(this._writev=re.writev),typeof re.destroy=="function"&&(this._destroy=re.destroy),typeof re.final=="function"&&(this._final=re.final)),void F.call(this)):new h(re)}function g(re,pe){var ke=new Ne;ie(re,ke),c.nextTick(pe,ke)}function z(re,pe,ke,Se){var se;return ke===null?se=new ye:typeof ke!="string"&&!pe.objectMode&&(se=new ue("chunk",["string","Buffer"],ke)),!se||(ie(re,se),c.nextTick(Se,se),!1)}function A(re,pe,ke){return re.objectMode||re.decodeStrings===!1||typeof pe!="string"||(pe=X.from(pe,ke)),pe}function _(re,pe,ke,Se,se,L){if(!ke){var U=A(pe,Se,se);Se!==U&&(ke=!0,se="buffer",Se=U)}var ne=pe.objectMode?1:Se.length;pe.length+=ne;var ve=pe.length<pe.highWaterMark;if(ve||(pe.needDrain=!0),pe.writing||pe.corked){var qe=pe.lastBufferedRequest;pe.lastBufferedRequest={chunk:Se,encoding:se,isBuf:ke,callback:L,next:null},qe?qe.next=pe.lastBufferedRequest:pe.bufferedRequest=pe.lastBufferedRequest,pe.bufferedRequestCount+=1}else v(re,pe,!1,ne,Se,se,L);return ve}function v(re,pe,ke,Se,se,L,U){pe.writelen=Se,pe.writecb=U,pe.writing=!0,pe.sync=!0,pe.destroyed?pe.onwrite(new Ae("write")):ke?re._writev(se,pe.onwrite):re._write(se,L,pe.onwrite),pe.sync=!1}function M(re,pe,ke,Se,se){--pe.pendingcb,ke?(c.nextTick(se,Se),c.nextTick(N,re,pe),re._writableState.errorEmitted=!0,ie(re,Se)):(se(Se),re._writableState.errorEmitted=!0,ie(re,Se),N(re,pe))}function y(re){re.writing=!1,re.writecb=null,re.length-=re.writelen,re.writelen=0}function k(re,pe){var ke=re._writableState,Se=ke.sync,se=ke.writecb;if(typeof se!="function")throw new me;if(y(ke),pe)M(re,ke,Se,pe,se);else{var L=T(ke)||re.destroyed;L||ke.corked||ke.bufferProcessing||!ke.bufferedRequest||R(re,ke),Se?c.nextTick(S,re,ke,L,se):S(re,ke,L,se)}}function S(re,pe,ke,Se){ke||C(re,pe),pe.pendingcb--,Se(),N(re,pe)}function C(re,pe){pe.length===0&&pe.needDrain&&(pe.needDrain=!1,re.emit("drain"))}function R(re,pe){pe.bufferProcessing=!0;var ke=pe.bufferedRequest;if(re._writev&&ke&&ke.next){var Se=pe.bufferedRequestCount,se=Array(Se),L=pe.corkedRequestsFree;L.entry=ke;for(var U=0,ne=!0;ke;)se[U]=ke,ke.isBuf||(ne=!1),ke=ke.next,U+=1;se.allBuffers=ne,v(re,pe,!0,pe.length,se,"",L.finish),pe.pendingcb++,pe.lastBufferedRequest=null,L.next?(pe.corkedRequestsFree=L.next,L.next=null):pe.corkedRequestsFree=new u(pe),pe.bufferedRequestCount=0}else{for(;ke;){var ve=ke.chunk,qe=ke.encoding,Pe=ke.callback,rt=pe.objectMode?1:ve.length;if(v(re,pe,!1,rt,ve,qe,Pe),ke=ke.next,pe.bufferedRequestCount--,pe.writing)break}ke===null&&(pe.lastBufferedRequest=null)}pe.bufferedRequest=ke,pe.bufferProcessing=!1}function T(re){return re.ending&&re.length===0&&re.bufferedRequest===null&&!re.finished&&!re.writing}function E(re,pe){re._final(function(ke){pe.pendingcb--,ke&&ie(re,ke),pe.prefinished=!0,re.emit("prefinish"),N(re,pe)})}function B(re,pe){pe.prefinished||pe.finalCalled||(typeof re._final!="function"||pe.destroyed?(pe.prefinished=!0,re.emit("prefinish")):(pe.pendingcb++,pe.finalCalled=!0,c.nextTick(E,re,pe)))}function N(re,pe){var ke=T(pe);if(ke&&(B(re,pe),pe.pendingcb===0&&(pe.finished=!0,re.emit("finish"),pe.autoDestroy))){var Se=re._readableState;(!Se||Se.autoDestroy&&Se.endEmitted)&&re.destroy()}return ke}function j(re,pe,ke){pe.ending=!0,N(re,pe),ke&&(pe.finished?c.nextTick(ke):re.once("finish",ke)),pe.ended=!0,re.writable=!1}function I(re,pe,ke){var Se=re.entry;for(re.entry=null;Se;){var se=Se.callback;pe.pendingcb--,se(ke),Se=Se.next}pe.corkedRequestsFree.next=re}i.exports=h;var P;h.WritableState=b;var $={deprecate:s("util-deprecate")},F=s("./internal/streams/stream"),X=s("buffer").Buffer,Z=l.Uint8Array||function(){},V=s("./internal/streams/destroy"),ee=s("./internal/streams/state"),te=ee.getHighWaterMark,J=s("../errors").codes,ue=J.ERR_INVALID_ARG_TYPE,ce=J.ERR_METHOD_NOT_IMPLEMENTED,me=J.ERR_MULTIPLE_CALLBACK,de=J.ERR_STREAM_CANNOT_PIPE,Ae=J.ERR_STREAM_DESTROYED,ye=J.ERR_STREAM_NULL_VALUES,Ne=J.ERR_STREAM_WRITE_AFTER_END,je=J.ERR_UNKNOWN_ENCODING,ie=V.errorOrDestroy;s("inherits")(h,F),b.prototype.getBuffer=function(){for(var re=this.bufferedRequest,pe=[];re;)pe.push(re),re=re.next;return pe},function(){try{Object.defineProperty(b.prototype,"buffer",{get:$.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}();var we;typeof Symbol=="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]=="function"?(we=Function.prototype[Symbol.hasInstance],Object.defineProperty(h,Symbol.hasInstance,{value:function(re){return!!we.call(this,re)||this===h&&re&&re._writableState instanceof b}})):we=function(re){return re instanceof this},h.prototype.pipe=function(){ie(this,new de)},h.prototype.write=function(re,pe,ke){var Se=this._writableState,se=!1,L=!Se.objectMode&&p(re);return L&&!X.isBuffer(re)&&(re=d(re)),typeof pe=="function"&&(ke=pe,pe=null),L?pe="buffer":!pe&&(pe=Se.defaultEncoding),typeof ke!="function"&&(ke=f),Se.ending?g(this,ke):(L||z(this,Se,re,ke))&&(Se.pendingcb++,se=_(this,Se,L,re,pe,ke)),se},h.prototype.cork=function(){this._writableState.corked++},h.prototype.uncork=function(){var re=this._writableState;re.corked&&(re.corked--,!re.writing&&!re.corked&&!re.bufferProcessing&&re.bufferedRequest&&R(this,re))},h.prototype.setDefaultEncoding=function(re){if(typeof re=="string"&&(re=re.toLowerCase()),!(-1<["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((re+"").toLowerCase())))throw new je(re);return this._writableState.defaultEncoding=re,this},Object.defineProperty(h.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(h.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),h.prototype._write=function(re,pe,ke){ke(new ce("_write()"))},h.prototype._writev=null,h.prototype.end=function(re,pe,ke){var Se=this._writableState;return typeof re=="function"?(ke=re,re=null,pe=null):typeof pe=="function"&&(ke=pe,pe=null),re!=null&&this.write(re,pe),Se.corked&&(Se.corked=1,this.uncork()),Se.ending||j(this,Se,ke),this},Object.defineProperty(h.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(h.prototype,"destroyed",{enumerable:!1,get:function(){return this._writableState!==void 0&&this._writableState.destroyed},set:function(re){this._writableState&&(this._writableState.destroyed=re)}}),h.prototype.destroy=V.destroy,h.prototype._undestroy=V.undestroy,h.prototype._destroy=function(re,pe){pe(re)}}).call(this)}).call(this,s("_process"),typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{"../errors":15,"./_stream_duplex":16,"./internal/streams/destroy":23,"./internal/streams/state":27,"./internal/streams/stream":28,_process:12,buffer:3,inherits:10,"util-deprecate":32}],21:[function(s,i){(function(c){(function(){function l(C,R,T){return R in C?Object.defineProperty(C,R,{value:T,enumerable:!0,configurable:!0,writable:!0}):C[R]=T,C}function u(C,R){return{value:C,done:R}}function d(C){var R=C[g];if(R!==null){var T=C[y].read();T!==null&&(C[v]=null,C[g]=null,C[z]=null,R(u(T,!1)))}}function p(C){c.nextTick(d,C)}function f(C,R){return function(T,E){C.then(function(){return R[_]?void T(u(void 0,!0)):void R[M](T,E)},E)}}var b,h=s("./end-of-stream"),g=Symbol("lastResolve"),z=Symbol("lastReject"),A=Symbol("error"),_=Symbol("ended"),v=Symbol("lastPromise"),M=Symbol("handlePromise"),y=Symbol("stream"),k=Object.getPrototypeOf(function(){}),S=Object.setPrototypeOf((b={get stream(){return this[y]},next:function(){var C=this,R=this[A];if(R!==null)return Promise.reject(R);if(this[_])return Promise.resolve(u(void 0,!0));if(this[y].destroyed)return new Promise(function(N,j){c.nextTick(function(){C[A]?j(C[A]):N(u(void 0,!0))})});var T,E=this[v];if(E)T=new Promise(f(E,this));else{var B=this[y].read();if(B!==null)return Promise.resolve(u(B,!1));T=new Promise(this[M])}return this[v]=T,T}},l(b,Symbol.asyncIterator,function(){return this}),l(b,"return",function(){var C=this;return new Promise(function(R,T){C[y].destroy(null,function(E){return E?void T(E):void R(u(void 0,!0))})})}),b),k);i.exports=function(C){var R,T=Object.create(S,(R={},l(R,y,{value:C,writable:!0}),l(R,g,{value:null,writable:!0}),l(R,z,{value:null,writable:!0}),l(R,A,{value:null,writable:!0}),l(R,_,{value:C._readableState.endEmitted,writable:!0}),l(R,M,{value:function(E,B){var N=T[y].read();N?(T[v]=null,T[g]=null,T[z]=null,E(u(N,!1))):(T[g]=E,T[z]=B)},writable:!0}),R));return T[v]=null,h(C,function(E){if(E&&E.code!=="ERR_STREAM_PREMATURE_CLOSE"){var B=T[z];return B!==null&&(T[v]=null,T[g]=null,T[z]=null,B(E)),void(T[A]=E)}var N=T[g];N!==null&&(T[v]=null,T[g]=null,T[z]=null,N(u(void 0,!0))),T[_]=!0}),C.on("readable",p.bind(null,T)),T}}).call(this)}).call(this,s("_process"))},{"./end-of-stream":24,_process:12}],22:[function(s,i){function c(v,M){var y=Object.keys(v);if(Object.getOwnPropertySymbols){var k=Object.getOwnPropertySymbols(v);M&&(k=k.filter(function(S){return Object.getOwnPropertyDescriptor(v,S).enumerable})),y.push.apply(y,k)}return y}function l(v){for(var M,y=1;y<arguments.length;y++)M=arguments[y]==null?{}:arguments[y],y%2?c(Object(M),!0).forEach(function(k){u(v,k,M[k])}):Object.getOwnPropertyDescriptors?Object.defineProperties(v,Object.getOwnPropertyDescriptors(M)):c(Object(M)).forEach(function(k){Object.defineProperty(v,k,Object.getOwnPropertyDescriptor(M,k))});return v}function u(v,M,y){return M in v?Object.defineProperty(v,M,{value:y,enumerable:!0,configurable:!0,writable:!0}):v[M]=y,v}function d(v,M){if(!(v instanceof M))throw new TypeError("Cannot call a class as a function")}function p(v,M){for(var y,k=0;k<M.length;k++)y=M[k],y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}function f(v,M,y){return M&&p(v.prototype,M),v}function b(v,M,y){g.prototype.copy.call(v,M,y)}var h=s("buffer"),g=h.Buffer,z=s("util"),A=z.inspect,_=A&&A.custom||"inspect";i.exports=function(){function v(){d(this,v),this.head=null,this.tail=null,this.length=0}return f(v,[{key:"push",value:function(M){var y={data:M,next:null};0<this.length?this.tail.next=y:this.head=y,this.tail=y,++this.length}},{key:"unshift",value:function(M){var y={data:M,next:this.head};this.length===0&&(this.tail=y),this.head=y,++this.length}},{key:"shift",value:function(){if(this.length!==0){var M=this.head.data;return this.head=this.length===1?this.tail=null:this.head.next,--this.length,M}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(M){if(this.length===0)return"";for(var y=this.head,k=""+y.data;y=y.next;)k+=M+y.data;return k}},{key:"concat",value:function(M){if(this.length===0)return g.alloc(0);for(var y=g.allocUnsafe(M>>>0),k=this.head,S=0;k;)b(k.data,y,S),S+=k.data.length,k=k.next;return y}},{key:"consume",value:function(M,y){var k;return M<this.head.data.length?(k=this.head.data.slice(0,M),this.head.data=this.head.data.slice(M)):M===this.head.data.length?k=this.shift():k=y?this._getString(M):this._getBuffer(M),k}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(M){var y=this.head,k=1,S=y.data;for(M-=S.length;y=y.next;){var C=y.data,R=M>C.length?C.length:M;if(S+=R===C.length?C:C.slice(0,M),M-=R,M===0){R===C.length?(++k,this.head=y.next?y.next:this.tail=null):(this.head=y,y.data=C.slice(R));break}++k}return this.length-=k,S}},{key:"_getBuffer",value:function(M){var y=g.allocUnsafe(M),k=this.head,S=1;for(k.data.copy(y),M-=k.data.length;k=k.next;){var C=k.data,R=M>C.length?C.length:M;if(C.copy(y,y.length-M,0,R),M-=R,M===0){R===C.length?(++S,this.head=k.next?k.next:this.tail=null):(this.head=k,k.data=C.slice(R));break}++S}return this.length-=S,y}},{key:_,value:function(M,y){return A(this,l({},y,{depth:0,customInspect:!1}))}}]),v}()},{buffer:3,util:2}],23:[function(s,i){(function(c){(function(){function l(p,f){d(p,f),u(p)}function u(p){p._writableState&&!p._writableState.emitClose||p._readableState&&!p._readableState.emitClose||p.emit("close")}function d(p,f){p.emit("error",f)}i.exports={destroy:function(p,f){var b=this,h=this._readableState&&this._readableState.destroyed,g=this._writableState&&this._writableState.destroyed;return h||g?(f?f(p):p&&(this._writableState?!this._writableState.errorEmitted&&(this._writableState.errorEmitted=!0,c.nextTick(d,this,p)):c.nextTick(d,this,p)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(p||null,function(z){!f&&z?b._writableState?b._writableState.errorEmitted?c.nextTick(u,b):(b._writableState.errorEmitted=!0,c.nextTick(l,b,z)):c.nextTick(l,b,z):f?(c.nextTick(u,b),f(z)):c.nextTick(u,b)}),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function(p,f){var b=p._readableState,h=p._writableState;b&&b.autoDestroy||h&&h.autoDestroy?p.destroy(f):p.emit("error",f)}}}).call(this)}).call(this,s("_process"))},{_process:12}],24:[function(s,i){function c(f){var b=!1;return function(){if(!b){b=!0;for(var h=arguments.length,g=Array(h),z=0;z<h;z++)g[z]=arguments[z];f.apply(this,g)}}}function l(){}function u(f){return f.setHeader&&typeof f.abort=="function"}function d(f,b,h){if(typeof b=="function")return d(f,null,b);b||(b={}),h=c(h||l);var g=b.readable||b.readable!==!1&&f.readable,z=b.writable||b.writable!==!1&&f.writable,A=function(){f.writable||v()},_=f._writableState&&f._writableState.finished,v=function(){z=!1,_=!0,g||h.call(f)},M=f._readableState&&f._readableState.endEmitted,y=function(){g=!1,M=!0,z||h.call(f)},k=function(R){h.call(f,R)},S=function(){var R;return g&&!M?(f._readableState&&f._readableState.ended||(R=new p),h.call(f,R)):z&&!_?(f._writableState&&f._writableState.ended||(R=new p),h.call(f,R)):void 0},C=function(){f.req.on("finish",v)};return u(f)?(f.on("complete",v),f.on("abort",S),f.req?C():f.on("request",C)):z&&!f._writableState&&(f.on("end",A),f.on("close",A)),f.on("end",y),f.on("finish",v),b.error!==!1&&f.on("error",k),f.on("close",S),function(){f.removeListener("complete",v),f.removeListener("abort",S),f.removeListener("request",C),f.req&&f.req.removeListener("finish",v),f.removeListener("end",A),f.removeListener("close",A),f.removeListener("finish",v),f.removeListener("end",y),f.removeListener("error",k),f.removeListener("close",S)}}var p=s("../../../errors").codes.ERR_STREAM_PREMATURE_CLOSE;i.exports=d},{"../../../errors":15}],25:[function(s,i){i.exports=function(){throw new Error("Readable.from is not available in the browser")}},{}],26:[function(s,i){function c(_){var v=!1;return function(){v||(v=!0,_.apply(void 0,arguments))}}function l(_){if(_)throw _}function u(_){return _.setHeader&&typeof _.abort=="function"}function d(_,v,M,y){y=c(y);var k=!1;_.on("close",function(){k=!0}),h===void 0&&(h=s("./end-of-stream")),h(_,{readable:v,writable:M},function(C){return C?y(C):(k=!0,void y())});var S=!1;return function(C){if(!k)return S?void 0:(S=!0,u(_)?_.abort():typeof _.destroy=="function"?_.destroy():void y(C||new A("pipe")))}}function p(_){_()}function f(_,v){return _.pipe(v)}function b(_){return _.length&&typeof _[_.length-1]=="function"?_.pop():l}var h,g=s("../../../errors").codes,z=g.ERR_MISSING_ARGS,A=g.ERR_STREAM_DESTROYED;i.exports=function(){for(var _=arguments.length,v=Array(_),M=0;M<_;M++)v[M]=arguments[M];var y=b(v);if(Array.isArray(v[0])&&(v=v[0]),2>v.length)throw new z("streams");var k,S=v.map(function(C,R){var T=R<v.length-1;return d(C,T,0<R,function(E){k||(k=E),E&&S.forEach(p),T||(S.forEach(p),y(k))})});return v.reduce(f)}},{"../../../errors":15,"./end-of-stream":24}],27:[function(s,i){function c(u,d,p){return u.highWaterMark==null?d?u[p]:null:u.highWaterMark}var l=s("../../../errors").codes.ERR_INVALID_OPT_VALUE;i.exports={getHighWaterMark:function(u,d,p,f){var b=c(d,f,p);if(b!=null){if(!(isFinite(b)&&n(b)===b)||0>b){var h=f?p:"highWaterMark";throw new l(h,b)}return n(b)}return u.objectMode?16:16384}}},{"../../../errors":15}],28:[function(s,i){i.exports=s("events").EventEmitter},{events:7}],29:[function(s,i,c){c=i.exports=s("./lib/_stream_readable.js"),c.Stream=c,c.Readable=c,c.Writable=s("./lib/_stream_writable.js"),c.Duplex=s("./lib/_stream_duplex.js"),c.Transform=s("./lib/_stream_transform.js"),c.PassThrough=s("./lib/_stream_passthrough.js"),c.finished=s("./lib/internal/streams/end-of-stream.js"),c.pipeline=s("./lib/internal/streams/pipeline.js")},{"./lib/_stream_duplex.js":16,"./lib/_stream_passthrough.js":17,"./lib/_stream_readable.js":18,"./lib/_stream_transform.js":19,"./lib/_stream_writable.js":20,"./lib/internal/streams/end-of-stream.js":24,"./lib/internal/streams/pipeline.js":26}],30:[function(s,i,c){function l(f,b){for(var h in f)b[h]=f[h]}function u(f,b,h){return p(f,b,h)}/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */var d=s("buffer"),p=d.Buffer;p.from&&p.alloc&&p.allocUnsafe&&p.allocUnsafeSlow?i.exports=d:(l(d,c),c.Buffer=u),u.prototype=Object.create(p.prototype),l(p,u),u.from=function(f,b,h){if(typeof f=="number")throw new TypeError("Argument must not be a number");return p(f,b,h)},u.alloc=function(f,b,h){if(typeof f!="number")throw new TypeError("Argument must be a number");var g=p(f);return b===void 0?g.fill(0):typeof h=="string"?g.fill(b,h):g.fill(b),g},u.allocUnsafe=function(f){if(typeof f!="number")throw new TypeError("Argument must be a number");return p(f)},u.allocUnsafeSlow=function(f){if(typeof f!="number")throw new TypeError("Argument must be a number");return d.SlowBuffer(f)}},{buffer:3}],31:[function(s,i,c){function l(S){if(!S)return"utf8";for(var C;;)switch(S){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return S;default:if(C)return;S=(""+S).toLowerCase(),C=!0}}function u(S){var C=l(S);if(typeof C!="string"&&(y.isEncoding===k||!k(S)))throw new Error("Unknown encoding: "+S);return C||S}function d(S){this.encoding=u(S);var C;switch(this.encoding){case"utf16le":this.text=g,this.end=z,C=4;break;case"utf8":this.fillLast=h,C=4;break;case"base64":this.text=A,this.end=_,C=3;break;default:return this.write=v,void(this.end=M)}this.lastNeed=0,this.lastTotal=0,this.lastChar=y.allocUnsafe(C)}function p(S){return 127>=S?0:S>>5==6?2:S>>4==14?3:S>>3==30?4:S>>6==2?-1:-2}function f(S,C,R){var T=C.length-1;if(T<R)return 0;var E=p(C[T]);return 0<=E?(0<E&&(S.lastNeed=E-1),E):--T<R||E===-2?0:(E=p(C[T]),0<=E?(0<E&&(S.lastNeed=E-2),E):--T<R||E===-2?0:(E=p(C[T]),0<=E?(0<E&&(E===2?E=0:S.lastNeed=E-3),E):0))}function b(S,C){if((192&C[0])!=128)return S.lastNeed=0,"�";if(1<S.lastNeed&&1<C.length){if((192&C[1])!=128)return S.lastNeed=1,"�";if(2<S.lastNeed&&2<C.length&&(192&C[2])!=128)return S.lastNeed=2,"�"}}function h(S){var C=this.lastTotal-this.lastNeed,R=b(this,S);return R===void 0?this.lastNeed<=S.length?(S.copy(this.lastChar,C,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(S.copy(this.lastChar,C,0,S.length),void(this.lastNeed-=S.length)):R}function g(S,C){if((S.length-C)%2==0){var R=S.toString("utf16le",C);if(R){var T=R.charCodeAt(R.length-1);if(55296<=T&&56319>=T)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=S[S.length-2],this.lastChar[1]=S[S.length-1],R.slice(0,-1)}return R}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=S[S.length-1],S.toString("utf16le",C,S.length-1)}function z(S){var C=S&&S.length?this.write(S):"";if(this.lastNeed){var R=this.lastTotal-this.lastNeed;return C+this.lastChar.toString("utf16le",0,R)}return C}function A(S,C){var R=(S.length-C)%3;return R==0?S.toString("base64",C):(this.lastNeed=3-R,this.lastTotal=3,R==1?this.lastChar[0]=S[S.length-1]:(this.lastChar[0]=S[S.length-2],this.lastChar[1]=S[S.length-1]),S.toString("base64",C,S.length-R))}function _(S){var C=S&&S.length?this.write(S):"";return this.lastNeed?C+this.lastChar.toString("base64",0,3-this.lastNeed):C}function v(S){return S.toString(this.encoding)}function M(S){return S&&S.length?this.write(S):""}var y=s("safe-buffer").Buffer,k=y.isEncoding||function(S){switch(S=""+S,S&&S.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};c.StringDecoder=d,d.prototype.write=function(S){if(S.length===0)return"";var C,R;if(this.lastNeed){if(C=this.fillLast(S),C===void 0)return"";R=this.lastNeed,this.lastNeed=0}else R=0;return R<S.length?C?C+this.text(S,R):this.text(S,R):C||""},d.prototype.end=function(S){var C=S&&S.length?this.write(S):"";return this.lastNeed?C+"�":C},d.prototype.text=function(S,C){var R=f(this,S,C);if(!this.lastNeed)return S.toString("utf8",C);this.lastTotal=R;var T=S.length-(R-this.lastNeed);return S.copy(this.lastChar,0,T),S.toString("utf8",C,T)},d.prototype.fillLast=function(S){return this.lastNeed<=S.length?(S.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(S.copy(this.lastChar,this.lastTotal-this.lastNeed,0,S.length),void(this.lastNeed-=S.length))}},{"safe-buffer":30}],32:[function(s,i){(function(c){(function(){function l(u){try{if(!c.localStorage)return!1}catch{return!1}var d=c.localStorage[u];return d!=null&&(d+"").toLowerCase()==="true"}i.exports=function(u,d){function p(){if(!f){if(l("throwDeprecation"))throw new Error(d);l("traceDeprecation")?console.trace(d):console.warn(d),f=!0}return u.apply(this,arguments)}if(l("noDeprecation"))return u;var f=!1;return p}}).call(this)}).call(this,typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{}],"/":[function(s,i){function c(_){return _.replace(/a=ice-options:trickle\s\n/g,"")}function l(_){console.warn(_)}/*! simple-peer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */const u=s("debug")("simple-peer"),d=s("get-browser-rtc"),p=s("randombytes"),f=s("readable-stream"),b=s("queue-microtask"),h=s("err-code"),{Buffer:g}=s("buffer"),z=65536;class A extends f.Duplex{constructor(v){if(v=Object.assign({allowHalfOpen:!1},v),super(v),this._id=p(4).toString("hex").slice(0,7),this._debug("new peer %o",v),this.channelName=v.initiator?v.channelName||p(20).toString("hex"):null,this.initiator=v.initiator||!1,this.channelConfig=v.channelConfig||A.channelConfig,this.channelNegotiated=this.channelConfig.negotiated,this.config=Object.assign({},A.config,v.config),this.offerOptions=v.offerOptions||{},this.answerOptions=v.answerOptions||{},this.sdpTransform=v.sdpTransform||(M=>M),this.streams=v.streams||(v.stream?[v.stream]:[]),this.trickle=v.trickle===void 0||v.trickle,this.allowHalfTrickle=v.allowHalfTrickle!==void 0&&v.allowHalfTrickle,this.iceCompleteTimeout=v.iceCompleteTimeout||5e3,this.destroyed=!1,this.destroying=!1,this._connected=!1,this.remoteAddress=void 0,this.remoteFamily=void 0,this.remotePort=void 0,this.localAddress=void 0,this.localFamily=void 0,this.localPort=void 0,this._wrtc=v.wrtc&&typeof v.wrtc=="object"?v.wrtc:d(),!this._wrtc)throw h(typeof window>"u"?new Error("No WebRTC support: Specify `opts.wrtc` option in this environment"):new Error("No WebRTC support: Not a supported browser"),"ERR_WEBRTC_SUPPORT");this._pcReady=!1,this._channelReady=!1,this._iceComplete=!1,this._iceCompleteTimer=null,this._channel=null,this._pendingCandidates=[],this._isNegotiating=!1,this._firstNegotiation=!0,this._batchedNegotiation=!1,this._queuedNegotiation=!1,this._sendersAwaitingStable=[],this._senderMap=new Map,this._closingInterval=null,this._remoteTracks=[],this._remoteStreams=[],this._chunk=null,this._cb=null,this._interval=null;try{this._pc=new this._wrtc.RTCPeerConnection(this.config)}catch(M){return void this.destroy(h(M,"ERR_PC_CONSTRUCTOR"))}this._isReactNativeWebrtc=typeof this._pc._peerConnectionId=="number",this._pc.oniceconnectionstatechange=()=>{this._onIceStateChange()},this._pc.onicegatheringstatechange=()=>{this._onIceStateChange()},this._pc.onconnectionstatechange=()=>{this._onConnectionStateChange()},this._pc.onsignalingstatechange=()=>{this._onSignalingStateChange()},this._pc.onicecandidate=M=>{this._onIceCandidate(M)},typeof this._pc.peerIdentity=="object"&&this._pc.peerIdentity.catch(M=>{this.destroy(h(M,"ERR_PC_PEER_IDENTITY"))}),this.initiator||this.channelNegotiated?this._setupData({channel:this._pc.createDataChannel(this.channelName,this.channelConfig)}):this._pc.ondatachannel=M=>{this._setupData(M)},this.streams&&this.streams.forEach(M=>{this.addStream(M)}),this._pc.ontrack=M=>{this._onTrack(M)},this._debug("initial negotiation"),this._needsNegotiation(),this._onFinishBound=()=>{this._onFinish()},this.once("finish",this._onFinishBound)}get bufferSize(){return this._channel&&this._channel.bufferedAmount||0}get connected(){return this._connected&&this._channel.readyState==="open"}address(){return{port:this.localPort,family:this.localFamily,address:this.localAddress}}signal(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot signal after peer is destroyed"),"ERR_DESTROYED");if(typeof v=="string")try{v=JSON.parse(v)}catch{v={}}this._debug("signal()"),v.renegotiate&&this.initiator&&(this._debug("got request to renegotiate"),this._needsNegotiation()),v.transceiverRequest&&this.initiator&&(this._debug("got request for transceiver"),this.addTransceiver(v.transceiverRequest.kind,v.transceiverRequest.init)),v.candidate&&(this._pc.remoteDescription&&this._pc.remoteDescription.type?this._addIceCandidate(v.candidate):this._pendingCandidates.push(v.candidate)),v.sdp&&this._pc.setRemoteDescription(new this._wrtc.RTCSessionDescription(v)).then(()=>{this.destroyed||(this._pendingCandidates.forEach(M=>{this._addIceCandidate(M)}),this._pendingCandidates=[],this._pc.remoteDescription.type==="offer"&&this._createAnswer())}).catch(M=>{this.destroy(h(M,"ERR_SET_REMOTE_DESCRIPTION"))}),v.sdp||v.candidate||v.renegotiate||v.transceiverRequest||this.destroy(h(new Error("signal() called with invalid signal data"),"ERR_SIGNALING"))}}_addIceCandidate(v){const M=new this._wrtc.RTCIceCandidate(v);this._pc.addIceCandidate(M).catch(y=>{!M.address||M.address.endsWith(".local")?l("Ignoring unsupported ICE candidate."):this.destroy(h(y,"ERR_ADD_ICE_CANDIDATE"))})}send(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot send after peer is destroyed"),"ERR_DESTROYED");this._channel.send(v)}}addTransceiver(v,M){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot addTransceiver after peer is destroyed"),"ERR_DESTROYED");if(this._debug("addTransceiver()"),this.initiator)try{this._pc.addTransceiver(v,M),this._needsNegotiation()}catch(y){this.destroy(h(y,"ERR_ADD_TRANSCEIVER"))}else this.emit("signal",{type:"transceiverRequest",transceiverRequest:{kind:v,init:M}})}}addStream(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot addStream after peer is destroyed"),"ERR_DESTROYED");this._debug("addStream()"),v.getTracks().forEach(M=>{this.addTrack(M,v)})}}addTrack(v,M){if(this.destroying)return;if(this.destroyed)throw h(new Error("cannot addTrack after peer is destroyed"),"ERR_DESTROYED");this._debug("addTrack()");const y=this._senderMap.get(v)||new Map;let k=y.get(M);if(!k)k=this._pc.addTrack(v,M),y.set(M,k),this._senderMap.set(v,y),this._needsNegotiation();else throw k.removed?h(new Error("Track has been removed. You should enable/disable tracks that you want to re-add."),"ERR_SENDER_REMOVED"):h(new Error("Track has already been added to that stream."),"ERR_SENDER_ALREADY_ADDED")}replaceTrack(v,M,y){if(this.destroying)return;if(this.destroyed)throw h(new Error("cannot replaceTrack after peer is destroyed"),"ERR_DESTROYED");this._debug("replaceTrack()");const k=this._senderMap.get(v),S=k?k.get(y):null;if(!S)throw h(new Error("Cannot replace track that was never added."),"ERR_TRACK_NOT_ADDED");M&&this._senderMap.set(M,k),S.replaceTrack==null?this.destroy(h(new Error("replaceTrack is not supported in this browser"),"ERR_UNSUPPORTED_REPLACETRACK")):S.replaceTrack(M)}removeTrack(v,M){if(this.destroying)return;if(this.destroyed)throw h(new Error("cannot removeTrack after peer is destroyed"),"ERR_DESTROYED");this._debug("removeSender()");const y=this._senderMap.get(v),k=y?y.get(M):null;if(!k)throw h(new Error("Cannot remove track that was never added."),"ERR_TRACK_NOT_ADDED");try{k.removed=!0,this._pc.removeTrack(k)}catch(S){S.name==="NS_ERROR_UNEXPECTED"?this._sendersAwaitingStable.push(k):this.destroy(h(S,"ERR_REMOVE_TRACK"))}this._needsNegotiation()}removeStream(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot removeStream after peer is destroyed"),"ERR_DESTROYED");this._debug("removeSenders()"),v.getTracks().forEach(M=>{this.removeTrack(M,v)})}}_needsNegotiation(){this._debug("_needsNegotiation"),this._batchedNegotiation||(this._batchedNegotiation=!0,b(()=>{this._batchedNegotiation=!1,this.initiator||!this._firstNegotiation?(this._debug("starting batched negotiation"),this.negotiate()):this._debug("non-initiator initial negotiation request discarded"),this._firstNegotiation=!1}))}negotiate(){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot negotiate after peer is destroyed"),"ERR_DESTROYED");this.initiator?this._isNegotiating?(this._queuedNegotiation=!0,this._debug("already negotiating, queueing")):(this._debug("start negotiation"),setTimeout(()=>{this._createOffer()},0)):this._isNegotiating?(this._queuedNegotiation=!0,this._debug("already negotiating, queueing")):(this._debug("requesting negotiation from initiator"),this.emit("signal",{type:"renegotiate",renegotiate:!0})),this._isNegotiating=!0}}destroy(v){this._destroy(v,()=>{})}_destroy(v,M){this.destroyed||this.destroying||(this.destroying=!0,this._debug("destroying (error: %s)",v&&(v.message||v)),b(()=>{if(this.destroyed=!0,this.destroying=!1,this._debug("destroy (error: %s)",v&&(v.message||v)),this.readable=this.writable=!1,this._readableState.ended||this.push(null),this._writableState.finished||this.end(),this._connected=!1,this._pcReady=!1,this._channelReady=!1,this._remoteTracks=null,this._remoteStreams=null,this._senderMap=null,clearInterval(this._closingInterval),this._closingInterval=null,clearInterval(this._interval),this._interval=null,this._chunk=null,this._cb=null,this._onFinishBound&&this.removeListener("finish",this._onFinishBound),this._onFinishBound=null,this._channel){try{this._channel.close()}catch{}this._channel.onmessage=null,this._channel.onopen=null,this._channel.onclose=null,this._channel.onerror=null}if(this._pc){try{this._pc.close()}catch{}this._pc.oniceconnectionstatechange=null,this._pc.onicegatheringstatechange=null,this._pc.onsignalingstatechange=null,this._pc.onicecandidate=null,this._pc.ontrack=null,this._pc.ondatachannel=null}this._pc=null,this._channel=null,v&&this.emit("error",v),this.emit("close"),M()}))}_setupData(v){if(!v.channel)return this.destroy(h(new Error("Data channel event is missing `channel` property"),"ERR_DATA_CHANNEL"));this._channel=v.channel,this._channel.binaryType="arraybuffer",typeof this._channel.bufferedAmountLowThreshold=="number"&&(this._channel.bufferedAmountLowThreshold=z),this.channelName=this._channel.label,this._channel.onmessage=y=>{this._onChannelMessage(y)},this._channel.onbufferedamountlow=()=>{this._onChannelBufferedAmountLow()},this._channel.onopen=()=>{this._onChannelOpen()},this._channel.onclose=()=>{this._onChannelClose()},this._channel.onerror=y=>{const k=y.error instanceof Error?y.error:new Error(`Datachannel error: ${y.message} ${y.filename}:${y.lineno}:${y.colno}`);this.destroy(h(k,"ERR_DATA_CHANNEL"))};let M=!1;this._closingInterval=setInterval(()=>{this._channel&&this._channel.readyState==="closing"?(M&&this._onChannelClose(),M=!0):M=!1},5e3)}_read(){}_write(v,M,y){if(this.destroyed)return y(h(new Error("cannot write after peer is destroyed"),"ERR_DATA_CHANNEL"));if(this._connected){try{this.send(v)}catch(k){return this.destroy(h(k,"ERR_DATA_CHANNEL"))}this._channel.bufferedAmount>z?(this._debug("start backpressure: bufferedAmount %d",this._channel.bufferedAmount),this._cb=y):y(null)}else this._debug("write before connect"),this._chunk=v,this._cb=y}_onFinish(){if(!this.destroyed){const v=()=>{setTimeout(()=>this.destroy(),1e3)};this._connected?v():this.once("connect",v)}}_startIceCompleteTimeout(){this.destroyed||this._iceCompleteTimer||(this._debug("started iceComplete timeout"),this._iceCompleteTimer=setTimeout(()=>{this._iceComplete||(this._iceComplete=!0,this._debug("iceComplete timeout completed"),this.emit("iceTimeout"),this.emit("_iceComplete"))},this.iceCompleteTimeout))}_createOffer(){this.destroyed||this._pc.createOffer(this.offerOptions).then(v=>{if(this.destroyed)return;this.trickle||this.allowHalfTrickle||(v.sdp=c(v.sdp)),v.sdp=this.sdpTransform(v.sdp);const M=()=>{if(!this.destroyed){const y=this._pc.localDescription||v;this._debug("signal"),this.emit("signal",{type:y.type,sdp:y.sdp})}};this._pc.setLocalDescription(v).then(()=>{this._debug("createOffer success"),this.destroyed||(this.trickle||this._iceComplete?M():this.once("_iceComplete",M))}).catch(y=>{this.destroy(h(y,"ERR_SET_LOCAL_DESCRIPTION"))})}).catch(v=>{this.destroy(h(v,"ERR_CREATE_OFFER"))})}_requestMissingTransceivers(){this._pc.getTransceivers&&this._pc.getTransceivers().forEach(v=>{v.mid||!v.sender.track||v.requested||(v.requested=!0,this.addTransceiver(v.sender.track.kind))})}_createAnswer(){this.destroyed||this._pc.createAnswer(this.answerOptions).then(v=>{if(this.destroyed)return;this.trickle||this.allowHalfTrickle||(v.sdp=c(v.sdp)),v.sdp=this.sdpTransform(v.sdp);const M=()=>{if(!this.destroyed){const y=this._pc.localDescription||v;this._debug("signal"),this.emit("signal",{type:y.type,sdp:y.sdp}),this.initiator||this._requestMissingTransceivers()}};this._pc.setLocalDescription(v).then(()=>{this.destroyed||(this.trickle||this._iceComplete?M():this.once("_iceComplete",M))}).catch(y=>{this.destroy(h(y,"ERR_SET_LOCAL_DESCRIPTION"))})}).catch(v=>{this.destroy(h(v,"ERR_CREATE_ANSWER"))})}_onConnectionStateChange(){this.destroyed||this._pc.connectionState==="failed"&&this.destroy(h(new Error("Connection failed."),"ERR_CONNECTION_FAILURE"))}_onIceStateChange(){if(this.destroyed)return;const v=this._pc.iceConnectionState,M=this._pc.iceGatheringState;this._debug("iceStateChange (connection: %s) (gathering: %s)",v,M),this.emit("iceStateChange",v,M),(v==="connected"||v==="completed")&&(this._pcReady=!0,this._maybeReady()),v==="failed"&&this.destroy(h(new Error("Ice connection failed."),"ERR_ICE_CONNECTION_FAILURE")),v==="closed"&&this.destroy(h(new Error("Ice connection closed."),"ERR_ICE_CONNECTION_CLOSED"))}getStats(v){const M=y=>(Object.prototype.toString.call(y.values)==="[object Array]"&&y.values.forEach(k=>{Object.assign(y,k)}),y);this._pc.getStats.length===0||this._isReactNativeWebrtc?this._pc.getStats().then(y=>{const k=[];y.forEach(S=>{k.push(M(S))}),v(null,k)},y=>v(y)):0<this._pc.getStats.length?this._pc.getStats(y=>{if(this.destroyed)return;const k=[];y.result().forEach(S=>{const C={};S.names().forEach(R=>{C[R]=S.stat(R)}),C.id=S.id,C.type=S.type,C.timestamp=S.timestamp,k.push(M(C))}),v(null,k)},y=>v(y)):v(null,[])}_maybeReady(){if(this._debug("maybeReady pc %s channel %s",this._pcReady,this._channelReady),this._connected||this._connecting||!this._pcReady||!this._channelReady)return;this._connecting=!0;const v=()=>{this.destroyed||this.getStats((M,y)=>{if(this.destroyed)return;M&&(y=[]);const k={},S={},C={};let R=!1;y.forEach(E=>{(E.type==="remotecandidate"||E.type==="remote-candidate")&&(k[E.id]=E),(E.type==="localcandidate"||E.type==="local-candidate")&&(S[E.id]=E),(E.type==="candidatepair"||E.type==="candidate-pair")&&(C[E.id]=E)});const T=E=>{R=!0;let B=S[E.localCandidateId];B&&(B.ip||B.address)?(this.localAddress=B.ip||B.address,this.localPort=+B.port):B&&B.ipAddress?(this.localAddress=B.ipAddress,this.localPort=+B.portNumber):typeof E.googLocalAddress=="string"&&(B=E.googLocalAddress.split(":"),this.localAddress=B[0],this.localPort=+B[1]),this.localAddress&&(this.localFamily=this.localAddress.includes(":")?"IPv6":"IPv4");let N=k[E.remoteCandidateId];N&&(N.ip||N.address)?(this.remoteAddress=N.ip||N.address,this.remotePort=+N.port):N&&N.ipAddress?(this.remoteAddress=N.ipAddress,this.remotePort=+N.portNumber):typeof E.googRemoteAddress=="string"&&(N=E.googRemoteAddress.split(":"),this.remoteAddress=N[0],this.remotePort=+N[1]),this.remoteAddress&&(this.remoteFamily=this.remoteAddress.includes(":")?"IPv6":"IPv4"),this._debug("connect local: %s:%s remote: %s:%s",this.localAddress,this.localPort,this.remoteAddress,this.remotePort)};if(y.forEach(E=>{E.type==="transport"&&E.selectedCandidatePairId&&T(C[E.selectedCandidatePairId]),(E.type==="googCandidatePair"&&E.googActiveConnection==="true"||(E.type==="candidatepair"||E.type==="candidate-pair")&&E.selected)&&T(E)}),!R&&(!Object.keys(C).length||Object.keys(S).length))return void setTimeout(v,100);if(this._connecting=!1,this._connected=!0,this._chunk){try{this.send(this._chunk)}catch(B){return this.destroy(h(B,"ERR_DATA_CHANNEL"))}this._chunk=null,this._debug('sent chunk from "write before connect"');const E=this._cb;this._cb=null,E(null)}typeof this._channel.bufferedAmountLowThreshold!="number"&&(this._interval=setInterval(()=>this._onInterval(),150),this._interval.unref&&this._interval.unref()),this._debug("connect"),this.emit("connect")})};v()}_onInterval(){this._cb&&this._channel&&!(this._channel.bufferedAmount>z)&&this._onChannelBufferedAmountLow()}_onSignalingStateChange(){this.destroyed||(this._pc.signalingState==="stable"&&(this._isNegotiating=!1,this._debug("flushing sender queue",this._sendersAwaitingStable),this._sendersAwaitingStable.forEach(v=>{this._pc.removeTrack(v),this._queuedNegotiation=!0}),this._sendersAwaitingStable=[],this._queuedNegotiation?(this._debug("flushing negotiation queue"),this._queuedNegotiation=!1,this._needsNegotiation()):(this._debug("negotiated"),this.emit("negotiated"))),this._debug("signalingStateChange %s",this._pc.signalingState),this.emit("signalingStateChange",this._pc.signalingState))}_onIceCandidate(v){this.destroyed||(v.candidate&&this.trickle?this.emit("signal",{type:"candidate",candidate:{candidate:v.candidate.candidate,sdpMLineIndex:v.candidate.sdpMLineIndex,sdpMid:v.candidate.sdpMid}}):!v.candidate&&!this._iceComplete&&(this._iceComplete=!0,this.emit("_iceComplete")),v.candidate&&this._startIceCompleteTimeout())}_onChannelMessage(v){if(this.destroyed)return;let M=v.data;M instanceof ArrayBuffer&&(M=g.from(M)),this.push(M)}_onChannelBufferedAmountLow(){if(!this.destroyed&&this._cb){this._debug("ending backpressure: bufferedAmount %d",this._channel.bufferedAmount);const v=this._cb;this._cb=null,v(null)}}_onChannelOpen(){this._connected||this.destroyed||(this._debug("on channel open"),this._channelReady=!0,this._maybeReady())}_onChannelClose(){this.destroyed||(this._debug("on channel close"),this.destroy())}_onTrack(v){this.destroyed||v.streams.forEach(M=>{this._debug("on track"),this.emit("track",v.track,M),this._remoteTracks.push({track:v.track,stream:M}),this._remoteStreams.some(y=>y.id===M.id)||(this._remoteStreams.push(M),b(()=>{this._debug("on stream"),this.emit("stream",M)}))})}_debug(){const v=[].slice.call(arguments);v[0]="["+this._id+"] "+v[0],u.apply(null,v)}}A.WEBRTC_SUPPORT=!!d(),A.config={iceServers:[{urls:["stun:stun.l.google.com:19302","stun:global.stun.twilio.com:3478"]}],sdpSemantics:"unified-plan"},A.channelConfig={},i.exports=A},{buffer:3,debug:4,"err-code":6,"get-browser-rtc":8,"queue-microtask":13,randombytes:14,"readable-stream":29}]},{},[])("/")})}(HS)),HS.exports}var yNe=ONe();const ANe=Zr(yNe),TB=0,EB=1,Bse=2,Lse=(e,t)=>{sn(e,TB);const n=X8e(t);jr(e,n)},Pse=(e,t,n)=>{sn(e,EB),jr(e,vB(t,n))},vNe=(e,t,n)=>Pse(t,n,w0(e)),jse=(e,t,n)=>{try{nse(t,w0(e),n)}catch(o){console.error("Caught error while handling a Yjs update",o)}},xNe=(e,t)=>{sn(e,Bse),jr(e,t)},wNe=jse,_Ne=(e,t,n,o)=>{const r=_n(e);switch(r){case TB:vNe(e,t,n);break;case EB:jse(e,n,o);break;case Bse:wNe(e,n,o);break;default:throw new Error("Unknown message type")}return r},US=3e4;class kNe extends d3{constructor(t){super(),this.doc=t,this.clientID=t.clientID,this.states=new Map,this.meta=new Map,this._checkInterval=setInterval(()=>{const n=El();this.getLocalState()!==null&&US/2<=n-this.meta.get(this.clientID).lastUpdated&&this.setLocalState(this.getLocalState());const o=[];this.meta.forEach((r,s)=>{s!==this.clientID&&US<=n-r.lastUpdated&&this.states.has(s)&&o.push(s)}),o.length>0&&VE(this,o,"timeout")},Oc(US/10)),t.on("destroy",()=>{this.destroy()}),this.setLocalState({})}destroy(){this.emit("destroy",[this]),this.setLocalState(null),super.destroy(),clearInterval(this._checkInterval)}getLocalState(){return this.states.get(this.clientID)||null}setLocalState(t){const n=this.clientID,o=this.meta.get(n),r=o===void 0?0:o.clock+1,s=this.states.get(n);t===null?this.states.delete(n):this.states.set(n,t),this.meta.set(n,{clock:r,lastUpdated:El()});const i=[],c=[],l=[],u=[];t===null?u.push(n):s==null?t!=null&&i.push(n):(c.push(n),yM(s,t)||l.push(n)),(i.length>0||l.length>0||u.length>0)&&this.emit("change",[{added:i,updated:l,removed:u},"local"]),this.emit("update",[{added:i,updated:c,removed:u},"local"])}setLocalStateField(t,n){const o=this.getLocalState();o!==null&&this.setLocalState({...o,[t]:n})}getStates(){return this.states}}const VE=(e,t,n)=>{const o=[];for(let r=0;r<t.length;r++){const s=t[r];if(e.states.has(s)){if(e.states.delete(s),s===e.clientID){const i=e.meta.get(s);e.meta.set(s,{clock:i.clock+1,lastUpdated:El()})}o.push(s)}}o.length>0&&(e.emit("change",[{added:[],updated:[],removed:o},n]),e.emit("update",[{added:[],updated:[],removed:o},n]))},H4=(e,t,n=e.states)=>{const o=t.length,r=k0();sn(r,o);for(let s=0;s<o;s++){const i=t[s],c=n.get(i)||null,l=e.meta.get(i).clock;sn(r,i),sn(r,l),uc(r,JSON.stringify(c))}return Sr(r)},SNe=(e,t,n)=>{const o=Rc(t),r=El(),s=[],i=[],c=[],l=[],u=_n(o);for(let d=0;d<u;d++){const p=_n(o);let f=_n(o);const b=JSON.parse(Al(o)),h=e.meta.get(p),g=e.states.get(p),z=h===void 0?0:h.clock;(z<f||z===f&&b===null&&e.states.has(p))&&(b===null?p===e.clientID&&e.getLocalState()!=null?f++:e.states.delete(p):e.states.set(p,b),e.meta.set(p,{clock:f,lastUpdated:r}),h===void 0&&b!==null?s.push(p):h!==void 0&&b===null?l.push(p):b!==null&&(yM(b,g)||c.push(p),i.push(p)))}(s.length>0||c.length>0||l.length>0)&&e.emit("change",[{added:s,updated:c,removed:l},n]),(s.length>0||i.length>0||l.length>0)&&e.emit("update",[{added:s,updated:i,removed:l},n])},CNe=(e,t)=>{const n=EE(e).buffer,o=EE(t).buffer;return crypto.subtle.importKey("raw",n,"PBKDF2",!1,["deriveKey"]).then(r=>crypto.subtle.deriveKey({name:"PBKDF2",salt:o,iterations:1e5,hash:"SHA-256"},r,{name:"AES-GCM",length:256},!0,["encrypt","decrypt"]))},Ise=(e,t)=>{if(!t)return fB(e);const n=crypto.getRandomValues(new Uint8Array(12));return crypto.subtle.encrypt({name:"AES-GCM",iv:n},t,e).then(o=>{const r=k0();return uc(r,"AES-GCM"),jr(r,n),jr(r,new Uint8Array(o)),Sr(r)})},qNe=(e,t)=>{const n=k0();return th(n,e),Ise(Sr(n),t)},Dse=(e,t)=>{if(!t)return fB(e);const n=Rc(e);Al(n)!=="AES-GCM"&&IEe(ba("Unknown encryption algorithm"));const r=w0(n),s=w0(n);return crypto.subtle.decrypt({name:"AES-GCM",iv:r},t,s).then(i=>new Uint8Array(i))},Fse=(e,t)=>Dse(e,t).then(n=>nh(Rc(new Uint8Array(n)))),R0=q8e("y-webrtc"),T2=0,$se=3,ZM=1,WB=4,QM=new Map,pc=new Map,Vse=e=>{let t=!0;e.webrtcConns.forEach(n=>{n.synced||(t=!1)}),(!t&&e.synced||t&&!e.synced)&&(e.synced=t,e.provider.emit("synced",[{synced:t}]),R0("synced ",ki,e.name,bf," with all peers"))},Hse=(e,t,n)=>{const o=Rc(t),r=k0(),s=_n(o);if(e===void 0)return null;const i=e.awareness,c=e.doc;let l=!1;switch(s){case T2:{sn(r,T2);const u=_Ne(o,r,c,e);u===EB&&!e.synced&&n(),u===TB&&(l=!0);break}case $se:sn(r,ZM),jr(r,H4(i,Array.from(i.getStates().keys()))),l=!0;break;case ZM:SNe(i,w0(o),e);break;case WB:{const u=ff(o)===1,d=Al(o);if(d!==e.peerId&&(e.bcConns.has(d)&&!u||!e.bcConns.has(d)&&u)){const p=[],f=[];u?(e.bcConns.add(d),f.push(d)):(e.bcConns.delete(d),p.push(d)),e.provider.emit("peers",[{added:f,removed:p,webrtcPeers:Array.from(e.webrtcConns.keys()),bcPeers:Array.from(e.bcConns)}]),Use(e)}break}default:return console.error("Unable to compute message"),r}return l?r:null},RNe=(e,t)=>{const n=e.room;return R0("received message from ",ki,e.remotePeerId,MB," (",n.name,")",bf,H5),Hse(n,t,()=>{e.synced=!0,R0("synced ",ki,n.name,bf," with ",ki,e.remotePeerId),Vse(n)})},XS=(e,t)=>{R0("send message to ",ki,e.remotePeerId,bf,MB," (",e.room.name,")",H5);try{e.peer.send(Sr(t))}catch{}},TNe=(e,t)=>{R0("broadcast message in ",ki,e.name,bf),e.webrtcConns.forEach(n=>{try{n.peer.send(t)}catch{}})};class U4{constructor(t,n,o,r){R0("establishing connection to ",ki,o),this.room=r,this.remotePeerId=o,this.glareToken=void 0,this.closed=!1,this.connected=!1,this.synced=!1,this.peer=new ANe({initiator:n,...r.provider.peerOpts}),this.peer.on("signal",s=>{this.glareToken===void 0&&(this.glareToken=Date.now()+Math.random()),Y5(t,r,{to:o,from:r.peerId,type:"signal",token:this.glareToken,signal:s})}),this.peer.on("connect",()=>{R0("connected to ",ki,o),this.connected=!0;const i=r.provider.doc,c=r.awareness,l=k0();sn(l,T2),Lse(l,i),XS(this,l);const u=c.getStates();if(u.size>0){const d=k0();sn(d,ZM),jr(d,H4(c,Array.from(u.keys()))),XS(this,d)}}),this.peer.on("close",()=>{this.connected=!1,this.closed=!0,r.webrtcConns.has(this.remotePeerId)&&(r.webrtcConns.delete(this.remotePeerId),r.provider.emit("peers",[{removed:[this.remotePeerId],added:[],webrtcPeers:Array.from(r.webrtcConns.keys()),bcPeers:Array.from(r.bcConns)}])),Vse(r),this.peer.destroy(),R0("closed connection to ",ki,o),HE(r)}),this.peer.on("error",s=>{R0("Error in connection to ",ki,o,": ",s),HE(r)}),this.peer.on("data",s=>{const i=RNe(this,s);i!==null&&XS(this,i)})}destroy(){this.peer.destroy()}}const Du=(e,t)=>Ise(t,e.key).then(n=>e.mux(()=>MNe(e.name,n))),jU=(e,t)=>{e.bcconnected&&Du(e,t),TNe(e,t)},HE=e=>{QM.forEach(t=>{t.connected&&(t.send({type:"subscribe",topics:[e.name]}),e.webrtcConns.size<e.provider.maxConns&&Y5(t,e,{type:"announce",from:e.peerId}))})},Use=e=>{if(e.provider.filterBcConns){const t=k0();sn(t,WB),UM(t,1),uc(t,e.peerId),Du(e,Sr(t))}};class ENe{constructor(t,n,o,r){this.peerId=v1e(),this.doc=t,this.awareness=n.awareness,this.provider=n,this.synced=!1,this.name=o,this.key=r,this.webrtcConns=new Map,this.bcConns=new Set,this.mux=zNe(),this.bcconnected=!1,this._bcSubscriber=s=>Dse(new Uint8Array(s),r).then(i=>this.mux(()=>{const c=Hse(this,i,()=>{});c&&Du(this,Sr(c))})),this._docUpdateHandler=(s,i)=>{const c=k0();sn(c,T2),xNe(c,s),jU(this,Sr(c))},this._awarenessUpdateHandler=({added:s,updated:i,removed:c},l)=>{const u=s.concat(i).concat(c),d=k0();sn(d,ZM),jr(d,H4(this.awareness,u)),jU(this,Sr(d))},this._beforeUnloadHandler=()=>{VE(this.awareness,[t.clientID],"window unload"),pc.forEach(s=>{s.disconnect()})},typeof window<"u"?window.addEventListener("beforeunload",this._beforeUnloadHandler):typeof Oi<"u"&&Oi.on("exit",this._beforeUnloadHandler)}connect(){this.doc.on("update",this._docUpdateHandler),this.awareness.on("update",this._awarenessUpdateHandler),HE(this);const t=this.name;mNe(t,this._bcSubscriber),this.bcconnected=!0,Use(this);const n=k0();sn(n,T2),Lse(n,this.doc),Du(this,Sr(n));const o=k0();sn(o,T2),Pse(o,this.doc),Du(this,Sr(o));const r=k0();sn(r,$se),Du(this,Sr(r));const s=k0();sn(s,ZM),jr(s,H4(this.awareness,[this.doc.clientID])),Du(this,Sr(s))}disconnect(){QM.forEach(n=>{n.connected&&n.send({type:"unsubscribe",topics:[this.name]})}),VE(this.awareness,[this.doc.clientID],"disconnect");const t=k0();sn(t,WB),UM(t,0),uc(t,this.peerId),Du(this,Sr(t)),gNe(this.name,this._bcSubscriber),this.bcconnected=!1,this.doc.off("update",this._docUpdateHandler),this.awareness.off("update",this._awarenessUpdateHandler),this.webrtcConns.forEach(n=>n.destroy())}destroy(){this.disconnect(),typeof window<"u"?window.removeEventListener("beforeunload",this._beforeUnloadHandler):typeof Oi<"u"&&Oi.off("exit",this._beforeUnloadHandler)}}const WNe=(e,t,n,o)=>{if(pc.has(n))throw ba(`A Yjs Doc connected to room "${n}" already exists!`);const r=new ENe(e,t,n,o);return pc.set(n,r),r},Y5=(e,t,n)=>{t.key?qNe(n,t.key).then(o=>{e.send({type:"publish",topic:t.name,data:j1e(o)})}):e.send({type:"publish",topic:t.name,data:n})};class Xse extends fNe{constructor(t){super(t),this.providers=new Set,this.on("connect",()=>{R0(`connected (${t})`);const n=Array.from(pc.keys());this.send({type:"subscribe",topics:n}),pc.forEach(o=>Y5(this,o,{type:"announce",from:o.peerId}))}),this.on("message",n=>{switch(n.type){case"publish":{const o=n.topic,r=pc.get(o);if(r==null||typeof o!="string")return;const s=i=>{const c=r.webrtcConns,l=r.peerId;if(i==null||i.from===l||i.to!==void 0&&i.to!==l||r.bcConns.has(i.from))return;const u=c.has(i.from)?()=>{}:()=>r.provider.emit("peers",[{removed:[],added:[i.from],webrtcPeers:Array.from(r.webrtcConns.keys()),bcPeers:Array.from(r.bcConns)}]);switch(i.type){case"announce":c.size<r.provider.maxConns&&(w1(c,i.from,()=>new U4(this,!0,i.from,r)),u());break;case"signal":if(i.signal.type==="offer"){const d=c.get(i.from);if(d){const p=i.token,f=d.glareToken;if(f&&f>p){R0("offer rejected: ",i.from);return}d.glareToken=void 0}}if(i.signal.type==="answer"){R0("offer answered by: ",i.from);const d=c.get(i.from);d.glareToken=void 0}i.to===l&&(w1(c,i.from,()=>new U4(this,!1,i.from,r)).peer.signal(i.signal),u());break}};r.key?typeof n.data=="string"&&Fse(gB(n.data),r.key).then(s):s(n.data)}}}),this.on("disconnect",()=>R0(`disconnect (${t})`))}}class NNe extends d3{constructor(t,n,{signaling:o=["wss://y-webrtc-eu.fly.dev"],password:r=null,awareness:s=new kNe(n),maxConns:i=20+Oc(PEe()*15),filterBcConns:c=!0,peerOpts:l={}}={}){super(),this.roomName=t,this.doc=n,this.filterBcConns=c,this.awareness=s,this.shouldConnect=!1,this.signalingUrls=o,this.signalingConns=[],this.maxConns=i,this.peerOpts=l,this.key=r?CNe(r,t):fB(null),this.room=null,this.key.then(u=>{this.room=WNe(n,this,t,u),this.shouldConnect?this.room.connect():this.room.disconnect()}),this.connect(),this.destroy=this.destroy.bind(this),n.on("destroy",this.destroy)}get connected(){return this.room!==null&&this.shouldConnect}connect(){this.shouldConnect=!0,this.signalingUrls.forEach(t=>{const n=w1(QM,t,()=>new Xse(t));this.signalingConns.push(n),n.providers.add(this)}),this.room&&this.room.connect()}disconnect(){this.shouldConnect=!1,this.signalingConns.forEach(t=>{t.providers.delete(this),t.providers.size===0&&(t.destroy(),QM.delete(t.url))}),this.room&&this.room.disconnect()}destroy(){this.doc.off("destroy",this.destroy),this.key.then(()=>{this.room.destroy(),pc.delete(this.roomName)}),super.destroy()}}function BNe(e,t){e.on("connect",()=>{R0(`connected (${t})`);const n=Array.from(pc.keys());e.send({type:"subscribe",topics:n}),pc.forEach(o=>Y5(e,o,{type:"announce",from:o.peerId}))}),e.on("message",n=>{switch(n.type){case"publish":{const o=n.topic,r=pc.get(o);if(r===null||typeof o!="string"||r===void 0)return;const s=i=>{const c=r.webrtcConns,l=r.peerId;if(i===null||i.from===l||i.to!==void 0&&i.to!==l||r.bcConns.has(i.from))return;const u=c.has(i.from)?()=>{}:()=>r.provider.emit("peers",[{removed:[],added:[i.from],webrtcPeers:Array.from(r.webrtcConns.keys()),bcPeers:Array.from(r.bcConns)}]);switch(i.type){case"announce":c.size<r.provider.maxConns&&(w1(c,i.from,()=>new U4(e,!0,i.from,r)),u());break;case"signal":if(i.signal.type==="offer"){const d=c.get(i.from);if(d){const p=i.token,f=d.glareToken;if(f&&f>p){R0("offer rejected: ",i.from);return}d.glareToken=void 0}}if(i.signal.type==="answer"){R0("offer answered by: ",i.from);const d=c.get(i.from);d&&(d.glareToken=void 0)}i.to===l&&(w1(c,i.from,()=>new U4(e,!1,i.from,r)).peer.signal(i.signal),u());break}};r.key?typeof n.data=="string"&&Fse(gB(n.data),r.key).then(s):s(n.data)}}}),e.on("disconnect",()=>R0(`disconnect (${t})`))}function IU(e){if(e.shouldConnect&&e.ws===null){const t=Math.floor(1e5+Math.random()*9e5),n=e.url,o=new window.EventSource(tn(n,{subscriber_id:t,action:"gutenberg_signaling_server"}));let r=null;o.onmessage=l=>{e.lastMessageReceived=Date.now();const u=l.data;if(u){const d=JSON.parse(u);Array.isArray(d)&&d.forEach(s)}},e.ws=o,e.connecting=!0,e.connected=!1;const s=l=>{l&&l.type==="pong"&&(clearTimeout(r),r=setTimeout(c,X4/2)),e.emit("message",[l,e])},i=l=>{e.ws!==null&&(e.ws.close(),e.ws=null,e.connecting=!1,e.connected?(e.connected=!1,e.emit("disconnect",[{type:"disconnect",error:l},e])):e.unsuccessfulReconnects++),clearTimeout(r)},c=()=>{e.ws&&e.ws.readyState===window.EventSource.OPEN&&e.send({type:"ping"})};e.ws&&(e.ws.onclose=()=>{i(null)},e.ws.send=function(u){window.fetch(n,{body:new URLSearchParams({subscriber_id:t.toString(),action:"gutenberg_signaling_server",message:u}),method:"POST"}).catch(()=>{R0("Error sending to server with message: "+u)})}),o.onerror=()=>{},o.onopen=()=>{e.connected||o.readyState===window.EventSource.OPEN&&(e.lastMessageReceived=Date.now(),e.connecting=!1,e.connected=!0,e.unsuccessfulReconnects=0,e.emit("connect",[{type:"connect"},e]),r=setTimeout(c,X4/2))}}}const X4=3e4;class LNe extends d3{constructor(t){super(),this.url=t,this.ws=null,this.binaryType=null,this.connected=!1,this.connecting=!1,this.unsuccessfulReconnects=0,this.lastMessageReceived=0,this.shouldConnect=!0,this._checkInterval=setInterval(()=>{this.connected&&X4<Date.now()-this.lastMessageReceived&&this.ws&&this.ws.close()},X4/2),IU(this),this.providers=new Set,BNe(this,t)}send(t){this.ws&&this.ws.send(JSON.stringify(t))}destroy(){clearInterval(this._checkInterval),this.disconnect(),super.destroy()}disconnect(){this.shouldConnect=!1,this.ws!==null&&this.ws.close()}connect(){this.shouldConnect=!0,!this.connected&&this.ws===null&&IU(this)}}class PNe extends NNe{connect(){this.shouldConnect=!0,this.signalingUrls.forEach(t=>{const n=w1(QM,t,t.startsWith("ws://")||t.startsWith("wss://")?()=>new Xse(t):()=>new LNe(t));this.signalingConns.push(n),n.providers.add(this)}),this.room&&this.room.connect()}}function jNe({signaling:e,password:t}){return function(n,o,r){const s=`${o}-${n}`;return new PNe(s,r,{signaling:e,password:t}),Promise.resolve(()=>!0)}}const INe=(e,t)=>{const n={},o={},r={};function s(u,d){n[u]=d}async function i(u,d,p){const f=new $h;r[u]=r[u]||{},r[u][d]=f;const b=()=>{const z=n[u].fromCRDTDoc(f);p(z)};f.on("update",b);const h=await e(d,u,f);t&&await t(d,u,f);const g=n[u].fetch;g&&g(d).then(z=>{f.transact(()=>{n[u].applyChangesToDoc(f,z)})}),o[u]=o[u]||{},o[u][d]=()=>{h(),f.off("update",b)}}async function c(u,d,p){const f=r[u][d];if(!f)throw"Error doc "+u+" "+d+" not found";f.transact(()=>{n[u].applyChangesToDoc(f,p)})}async function l(u,d){o?.[u]?.[d]&&o[u][d]()}return{register:s,bootstrap:i,update:c,discard:l}};let GS;function UE(){return GS||(GS=INe(uNe,jNe({signaling:[window?.wp?.ajax?.settings?.url],password:window?.__experimentalCollaborativeEditingSecret}))),GS}function DNe(e,t){return{type:"RECEIVE_USER_QUERY",users:Array.isArray(t)?t:[t],queryID:e}}function FNe(e){return{type:"RECEIVE_CURRENT_USER",currentUser:e}}function $Ne(e){return{type:"ADD_ENTITIES",entities:e}}function VNe(e,t,n,o,r=!1,s,i){e==="postType"&&(n=(Array.isArray(n)?n:[n]).map(l=>l.status==="auto-draft"?{...l,title:""}:l));let c;return o?c=cqe(n,o,s,i):c=$0e(n,s,i),{...c,kind:e,name:t,invalidateCache:r}}function HNe(e){return{type:"RECEIVE_CURRENT_THEME",currentTheme:e}}function UNe(e){return{type:"RECEIVE_CURRENT_GLOBAL_STYLES_ID",id:e}}function XNe(e,t){return{type:"RECEIVE_THEME_GLOBAL_STYLES",stylesheet:e,globalStyles:t}}function GNe(e,t){return{type:"RECEIVE_THEME_GLOBAL_STYLE_VARIATIONS",stylesheet:e,variations:t}}function KNe(){return Ke("wp.data.dispatch( 'core' ).receiveThemeSupports",{since:"5.9"}),{type:"DO_NOTHING"}}function YNe(e,t){return Ke("wp.data.dispatch( 'core' ).receiveThemeGlobalStyleRevisions()",{since:"6.5.0",alternative:"wp.data.dispatch( 'core' ).receiveRevisions"}),{type:"RECEIVE_THEME_GLOBAL_STYLE_REVISIONS",currentId:e,revisions:t}}function ZNe(e,t){return{type:"RECEIVE_EMBED_PREVIEW",url:e,preview:t}}const Gse=(e,t,n,o,{__unstableFetch:r=Tt,throwOnError:s=!1}={})=>async({dispatch:i,resolveSelect:c})=>{const u=(await c.getEntitiesConfig(e)).find(b=>b.kind===e&&b.name===t);let d,p=!1;if(!u)return;const f=await i.__unstableAcquireStoreLock(No,["entities","records",e,t,n],{exclusive:!0});try{i({type:"DELETE_ENTITY_RECORD_START",kind:e,name:t,recordId:n});let b=!1;try{let h=`${u.baseURL}/${n}`;o&&(h=tn(h,o)),p=await r({path:h,method:"DELETE"}),await i(aqe(e,t,n,!0))}catch(h){b=!0,d=h}if(i({type:"DELETE_ENTITY_RECORD_FINISH",kind:e,name:t,recordId:n,error:d}),b&&s)throw d;return p}finally{i.__unstableReleaseStoreLock(f)}},QNe=(e,t,n,o,r={})=>({select:s,dispatch:i})=>{const c=s.getEntityConfig(e,t);if(!c)throw new Error(`The entity being edited (${e}, ${t}) does not have a loaded config.`);const{mergedEdits:l={}}=c,u=s.getRawEntityRecord(e,t,n),d=s.getEditedEntityRecord(e,t,n),p={kind:e,name:t,recordId:n,edits:Object.keys(o).reduce((f,b)=>{const h=u[b],g=d[b],z=l[b]?{...g,...o[b]}:o[b];return f[b]=N0(h,z)?void 0:z,f},{})};if(window.__experimentalEnableSync&&c.syncConfig){if(globalThis.IS_GUTENBERG_PLUGIN){const f=c.getSyncObjectId(n);UE().update(c.syncObjectType+"--edit",f,p.edits)}}else r.undoIgnore||s.getUndoManager().addRecord([{id:{kind:e,name:t,recordId:n},changes:Object.keys(o).reduce((f,b)=>(f[b]={from:d[b],to:o[b]},f),{})}],r.isCached),i({type:"EDIT_ENTITY_RECORD",...p})},JNe=()=>({select:e,dispatch:t})=>{const n=e.getUndoManager().undo();n&&t({type:"UNDO",record:n})},eBe=()=>({select:e,dispatch:t})=>{const n=e.getUndoManager().redo();n&&t({type:"REDO",record:n})},tBe=()=>({select:e})=>{e.getUndoManager().addRecord()},Kse=(e,t,n,{isAutosave:o=!1,__unstableFetch:r=Tt,throwOnError:s=!1}={})=>async({select:i,resolveSelect:c,dispatch:l})=>{const d=(await c.getEntitiesConfig(e)).find(h=>h.kind===e&&h.name===t);if(!d)return;const p=d.key||e1,f=n[p],b=await l.__unstableAcquireStoreLock(No,["entities","records",e,t,f||Is()],{exclusive:!0});try{for(const[A,_]of Object.entries(n))if(typeof _=="function"){const v=_(i.getEditedEntityRecord(e,t,f));l.editEntityRecord(e,t,f,{[A]:v},{undoIgnore:!0}),n[A]=v}l({type:"SAVE_ENTITY_RECORD_START",kind:e,name:t,recordId:f,isAutosave:o});let h,g,z=!1;try{const A=`${d.baseURL}${f?"/"+f:""}`,_=i.getRawEntityRecord(e,t,f);if(o){const v=i.getCurrentUser(),M=v?v.id:void 0,y=await c.getAutosave(_.type,_.id,M);let k={..._,...y,...n};if(k=Object.keys(k).reduce((S,C)=>(["title","excerpt","content","meta"].includes(C)&&(S[C]=k[C]),S),{status:k.status==="auto-draft"?"draft":void 0}),h=await r({path:`${A}/autosaves`,method:"POST",data:k}),_.id===h.id){let S={..._,...k,...h};S=Object.keys(S).reduce((C,R)=>(["title","excerpt","content"].includes(R)?C[R]=S[R]:R==="status"?C[R]=_.status==="auto-draft"&&S.status==="draft"?S.status:_.status:C[R]=_[R],C),{}),l.receiveEntityRecords(e,t,S,void 0,!0)}else l.receiveAutosaves(_.id,h)}else{let v=n;d.__unstablePrePersist&&(v={...v,...d.__unstablePrePersist(_,v)}),h=await r({path:A,method:f?"PUT":"POST",data:v}),l.receiveEntityRecords(e,t,h,void 0,!0,v)}}catch(A){z=!0,g=A}if(l({type:"SAVE_ENTITY_RECORD_FINISH",kind:e,name:t,recordId:f,error:g,isAutosave:o}),z&&s)throw g;return h}finally{l.__unstableReleaseStoreLock(b)}},nBe=e=>async({dispatch:t})=>{const n=tEe(),o={saveEntityRecord(i,c,l,u){return n.add(d=>t.saveEntityRecord(i,c,l,{...u,__unstableFetch:d}))},saveEditedEntityRecord(i,c,l,u){return n.add(d=>t.saveEditedEntityRecord(i,c,l,{...u,__unstableFetch:d}))},deleteEntityRecord(i,c,l,u,d){return n.add(p=>t.deleteEntityRecord(i,c,l,u,{...d,__unstableFetch:p}))}},r=e.map(i=>i(o)),[,...s]=await Promise.all([n.run(),...r]);return s},oBe=(e,t,n,o)=>async({select:r,dispatch:s,resolveSelect:i})=>{if(!r.hasEditsForEntityRecord(e,t,n))return;const l=(await i.getEntitiesConfig(e)).find(f=>f.kind===e&&f.name===t);if(!l)return;const u=l.key||e1,d=r.getEntityRecordNonTransientEdits(e,t,n),p={[u]:n,...d};return await s.saveEntityRecord(e,t,p,o)},rBe=(e,t,n,o,r)=>async({select:s,dispatch:i,resolveSelect:c})=>{if(!s.hasEditsForEntityRecord(e,t,n))return;const l=s.getEntityRecordNonTransientEdits(e,t,n),u={};for(const b of o)L5(u,b,sqe(l,b));const f=(await c.getEntitiesConfig(e)).find(b=>b.kind===e&&b.name===t)?.key||e1;return n&&(u[f]=n),await i.saveEntityRecord(e,t,u,r)};function sBe(e){return Ke("wp.data.dispatch( 'core' ).receiveUploadPermissions",{since:"5.9",alternative:"receiveUserPermission"}),Yse("create/media",e)}function Yse(e,t){return{type:"RECEIVE_USER_PERMISSION",key:e,isAllowed:t}}function iBe(e){return{type:"RECEIVE_USER_PERMISSIONS",permissions:e}}function aBe(e,t){return{type:"RECEIVE_AUTOSAVES",postId:e,autosaves:Array.isArray(t)?t:[t]}}function cBe(e){return{type:"RECEIVE_NAVIGATION_FALLBACK_ID",fallbackId:e}}function lBe(e,t){return{type:"RECEIVE_DEFAULT_TEMPLATE",query:e,templateId:t}}const uBe=(e,t,n,o,r,s=!1,i)=>async({dispatch:c,resolveSelect:l})=>{const d=(await l.getEntitiesConfig(e)).find(f=>f.kind===e&&f.name===t),p=d&&d?.revisionKey?d.revisionKey:e1;c({type:"RECEIVE_ITEM_REVISIONS",key:p,items:Array.isArray(o)?o:[o],recordKey:n,meta:i,query:r,kind:e,name:t,invalidateCache:s})},dBe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalBatch:nBe,__experimentalReceiveCurrentGlobalStylesId:UNe,__experimentalReceiveThemeBaseGlobalStyles:XNe,__experimentalReceiveThemeGlobalStyleVariations:GNe,__experimentalSaveSpecifiedEntityEdits:rBe,__unstableCreateUndoLevel:tBe,addEntities:$Ne,deleteEntityRecord:Gse,editEntityRecord:QNe,receiveAutosaves:aBe,receiveCurrentTheme:HNe,receiveCurrentUser:FNe,receiveDefaultTemplateId:lBe,receiveEmbedPreview:ZNe,receiveEntityRecords:VNe,receiveNavigationFallbackId:cBe,receiveRevisions:uBe,receiveThemeGlobalStyleRevisions:YNe,receiveThemeSupports:KNe,receiveUploadPermissions:sBe,receiveUserPermission:Yse,receiveUserPermissions:iBe,receiveUserQuery:DNe,redo:eBe,saveEditedEntityRecord:oBe,saveEntityRecord:Kse,undo:JNe},Symbol.toStringTag,{value:"Module"}));function pBe(e,t){return{type:"RECEIVE_REGISTERED_POST_META",postType:e,registeredPostMeta:t}}const fBe=Object.freeze(Object.defineProperty({__proto__:null,receiveRegisteredPostMeta:pBe},Symbol.toStringTag,{value:"Module"}));let $b;function Lt(e){if(typeof e!="string"||e.indexOf("&")===-1)return e;$b===void 0&&(document.implementation&&document.implementation.createHTMLDocument?$b=document.implementation.createHTMLDocument("").createElement("textarea"):$b=document.createElement("textarea")),$b.innerHTML=e;const t=$b.textContent;return $b.innerHTML="",t}async function bBe(e,t={},n={}){const o=t.isInitialSuggestions&&t.initialSuggestionsSearchOptions?{...t,...t.initialSuggestionsSearchOptions}:t,{type:r,subtype:s,page:i,perPage:c=t.isInitialSuggestions?3:20}=o,{disablePostFormats:l=!1}=n,u=[];(!r||r==="post")&&u.push(Tt({path:tn("/wp/v2/search",{search:e,page:i,per_page:c,type:"post",subtype:s})}).then(f=>f.map(b=>({id:b.id,url:b.url,title:Lt(b.title||"")||m("(no title)"),type:b.subtype||b.type,kind:"post-type"}))).catch(()=>[])),(!r||r==="term")&&u.push(Tt({path:tn("/wp/v2/search",{search:e,page:i,per_page:c,type:"term",subtype:s})}).then(f=>f.map(b=>({id:b.id,url:b.url,title:Lt(b.title||"")||m("(no title)"),type:b.subtype||b.type,kind:"taxonomy"}))).catch(()=>[])),!l&&(!r||r==="post-format")&&u.push(Tt({path:tn("/wp/v2/search",{search:e,page:i,per_page:c,type:"post-format",subtype:s})}).then(f=>f.map(b=>({id:b.id,url:b.url,title:Lt(b.title||"")||m("(no title)"),type:b.subtype||b.type,kind:"taxonomy"}))).catch(()=>[])),(!r||r==="attachment")&&u.push(Tt({path:tn("/wp/v2/media",{search:e,page:i,per_page:c})}).then(f=>f.map(b=>({id:b.id,url:b.source_url,title:Lt(b.title.rendered||"")||m("(no title)"),type:b.type,kind:"media"}))).catch(()=>[]));let p=(await Promise.all(u)).flat();return p=p.filter(f=>!!f.id),p=hBe(p,e),p=p.slice(0,c),p}function hBe(e,t){const n=DU(t),o={};for(const r of e)if(r.title){const s=DU(r.title),i=s.filter(d=>n.some(p=>d===p)),c=s.filter(d=>n.some(p=>d!==p&&d.includes(p))),l=i.length/s.length*10,u=c.length/s.length;o[r.id]=l+u}else o[r.id]=0;return e.sort((r,s)=>o[s.id]-o[r.id])}function DU(e){return e.toLowerCase().match(/[\p{L}\p{N}]+/gu)||[]}const KS=new Map,mBe=async(e,t={})=>{const n="/wp-block-editor/v1/url-details",o={url:jf(e)};if(!Pf(e))return Promise.reject(`${e} is not a valid URL.`);const r=x5(e);return!r||!NN(r)||!r.startsWith("http")||!/^https?:\/\/[^\/\s]/i.test(e)?Promise.reject(`${e} does not have a valid protocol. URLs must be "http" based`):KS.has(e)?KS.get(e):Tt({path:tn(n,o),...t}).then(s=>(KS.set(e,s),s))};async function gBe(){const e=await Tt({path:"/wp/v2/block-patterns/patterns"});return e?e.map(t=>Object.fromEntries(Object.entries(t).map(([n,o])=>[RN(n),o]))):[]}const MBe=e=>async({dispatch:t})=>{const n=tn("/wp/v2/users/?who=authors&per_page=100",e),o=await Tt({path:n});t.receiveUserQuery(n,o)},zBe=()=>async({dispatch:e})=>{const t=await Tt({path:"/wp/v2/users/me"});e.receiveCurrentUser(t)},Zse=(e,t,n="",o)=>async({select:r,dispatch:s,registry:i,resolveSelect:c})=>{const u=(await c.getEntitiesConfig(e)).find(p=>p.name===t&&p.kind===e);if(!u)return;const d=await s.__unstableAcquireStoreLock(No,["entities","records",e,t,n],{exclusive:!1});try{if(window.__experimentalEnableSync&&u.syncConfig&&!o){if(globalThis.IS_GUTENBERG_PLUGIN){const p=u.getSyncObjectId(n);await UE().bootstrap(u.syncObjectType,p,f=>{s.receiveEntityRecords(e,t,f,o)}),await UE().bootstrap(u.syncObjectType+"--edit",p,f=>{s({type:"EDIT_ENTITY_RECORD",kind:e,name:t,recordId:n,edits:f,meta:{undo:void 0}})})}}else{o!==void 0&&o._fields&&(o={...o,_fields:[...new Set([...Md(o._fields)||[],u.key||e1])].join()});const p=tn(u.baseURL+(n?"/"+n:""),{...u.baseURLParams,...o});if(o!==void 0&&o._fields&&(o={...o,include:[n]},r.hasEntityRecords(e,t,o)))return;const f=await Tt({path:p,parse:!1}),b=await f.json(),h=QN(f.headers?.get("allow")),g=[],z={};for(const A of zM)z[P5(A,{kind:e,name:t,id:n})]=h[A],g.push([A,{kind:e,name:t,id:n}]);i.batch(()=>{s.receiveEntityRecords(e,t,b,o),s.receiveUserPermissions(z),s.finishResolutions("canUser",g)})}}finally{s.__unstableReleaseStoreLock(d)}},OBe=ZN("getEntityRecord"),yBe=ZN("getEntityRecord"),G4=(e,t,n={})=>async({dispatch:o,registry:r,resolveSelect:s})=>{const c=(await s.getEntitiesConfig(e)).find(p=>p.name===t&&p.kind===e);if(!c)return;const l=await o.__unstableAcquireStoreLock(No,["entities","records",e,t],{exclusive:!1}),u=c.key||e1;function d(p){return p.filter(f=>f?.[u]).map(f=>[e,t,f[u]])}try{n._fields&&(n={...n,_fields:[...new Set([...Md(n._fields)||[],c.key||e1])].join()});const p=tn(c.baseURL,{...c.baseURLParams,...n});let f=[],b;if(c.supportsPagination&&n.per_page!==-1){const h=await Tt({path:p,parse:!1});f=Object.values(await h.json()),b={totalItems:parseInt(h.headers.get("X-WP-Total")),totalPages:parseInt(h.headers.get("X-WP-TotalPages"))}}else if(n.per_page===-1&&n[F0e]===!0){let h=1,g;do{const z=await Tt({path:tn(p,{page:h,per_page:100}),parse:!1}),A=Object.values(await z.json());g=parseInt(z.headers.get("X-WP-TotalPages")),f.push(...A),r.batch(()=>{o.receiveEntityRecords(e,t,f,n),o.finishResolutions("getEntityRecord",d(A))}),h++}while(h<=g);b={totalItems:f.length,totalPages:1}}else f=Object.values(await Tt({path:p})),b={totalItems:f.length,totalPages:1};n._fields&&(f=f.map(h=>(n._fields.split(",").forEach(g=>{h.hasOwnProperty(g)||(h[g]=void 0)}),h))),r.batch(()=>{if(o.receiveEntityRecords(e,t,f,n,!1,void 0,b),!n?._fields&&!n.context){const h=f.filter(A=>A?.[u]).map(A=>({id:A[u],permissions:QN(A?._links?.self?.[0].targetHints.allow)})),g=[],z={};for(const A of h)for(const _ of zM)g.push([_,{kind:e,name:t,id:A.id}]),z[P5(_,{kind:e,name:t,id:A.id})]=A.permissions[_];o.receiveUserPermissions(z),o.finishResolutions("getEntityRecord",d(f)),o.finishResolutions("canUser",g)}o.__unstableReleaseStoreLock(l)})}catch{o.__unstableReleaseStoreLock(l)}};G4.shouldInvalidate=(e,t,n)=>(e.type==="RECEIVE_ITEMS"||e.type==="REMOVE_ITEMS")&&e.invalidateCache&&t===e.kind&&n===e.name;const ABe=()=>async({dispatch:e,resolveSelect:t})=>{const n=await t.getEntityRecords("root","theme",{status:"active"});e.receiveCurrentTheme(n[0])},vBe=ZN("getCurrentTheme"),xBe=e=>async({dispatch:t})=>{try{const n=await Tt({path:tn("/oembed/1.0/proxy",{url:e})});t.receiveEmbedPreview(e,n)}catch{t.receiveEmbedPreview(e,!1)}},Qse=(e,t,n)=>async({dispatch:o,registry:r,resolveSelect:s})=>{if(!zM.includes(e))throw new Error(`'${e}' is not a valid action.`);const{hasStartedResolution:i}=r.select(No);for(const d of zM){if(d===e)continue;if(i("canUser",[d,t,n]))return}let c=null;if(typeof t=="object"){if(!t.kind||!t.name)throw new Error("The entity resource object is not valid.");const p=(await s.getEntitiesConfig(t.kind)).find(f=>f.name===t.name&&f.kind===t.kind);if(!p)return;c=p.baseURL+(t.id?"/"+t.id:"")}else c=`/wp/v2/${t}`+(n?"/"+n:"");let l;try{l=await Tt({path:c,method:"OPTIONS",parse:!1})}catch{return}const u=QN(l.headers?.get("allow"));r.batch(()=>{for(const d of zM){const p=P5(d,t,n);o.receiveUserPermission(p,u[d]),d!==e&&o.finishResolution("canUser",[d,t,n])}})},wBe=(e,t,n)=>async({dispatch:o})=>{await o(Qse("update",{kind:e,name:t,id:n}))},_Be=(e,t)=>async({dispatch:n,resolveSelect:o})=>{const{rest_base:r,rest_namespace:s="wp/v2",supports:i}=await o.getPostType(e);if(!i?.autosave)return;const c=await Tt({path:`/${s}/${r}/${t}/autosaves?context=edit`});c&&c.length&&n.receiveAutosaves(t,c)},kBe=(e,t)=>async({resolveSelect:n})=>{await n.getAutosaves(e,t)},SBe=()=>async({dispatch:e,resolveSelect:t})=>{const o=(await t.getEntityRecords("root","theme",{status:"active"}))?.[0]?._links?.["wp:user-global-styles"]?.[0]?.href;if(!o)return;const r=o.match(/\/(\d+)(?:\?|$)/),s=r?Number(r[1]):null;s&&e.__experimentalReceiveCurrentGlobalStylesId(s)},CBe=()=>async({resolveSelect:e,dispatch:t})=>{const n=await e.getCurrentTheme(),o=await Tt({path:`/wp/v2/global-styles/themes/${n.stylesheet}?context=view`});t.__experimentalReceiveThemeBaseGlobalStyles(n.stylesheet,o)},qBe=()=>async({resolveSelect:e,dispatch:t})=>{const n=await e.getCurrentTheme(),o=await Tt({path:`/wp/v2/global-styles/themes/${n.stylesheet}/variations?context=view`});t.__experimentalReceiveThemeGlobalStyleVariations(n.stylesheet,o)},Jse=()=>async({resolveSelect:e,dispatch:t})=>{const n=await e.__experimentalGetCurrentGlobalStylesId(),r=(n?await e.getEntityRecord("root","globalStyles",n):void 0)?._links?.["version-history"]?.[0]?.href;if(r){const i=(await Tt({url:r}))?.map(c=>Object.fromEntries(Object.entries(c).map(([l,u])=>[RN(l),u])));t.receiveThemeGlobalStyleRevisions(n,i)}};Jse.shouldInvalidate=e=>e.type==="SAVE_ENTITY_RECORD_FINISH"&&e.kind==="root"&&!e.error&&e.name==="globalStyles";const RBe=()=>async({dispatch:e})=>{const t=await gBe();e({type:"RECEIVE_BLOCK_PATTERNS",patterns:t})},TBe=()=>async({dispatch:e})=>{const t=await Tt({path:"/wp/v2/block-patterns/categories"});e({type:"RECEIVE_BLOCK_PATTERN_CATEGORIES",categories:t})},EBe=()=>async({dispatch:e,resolveSelect:t})=>{const o=(await t.getEntityRecords("taxonomy","wp_pattern_category",{per_page:-1,_fields:"id,name,description,slug",context:"view"}))?.map(r=>({...r,label:Lt(r.name),name:r.slug}))||[];e({type:"RECEIVE_USER_PATTERN_CATEGORIES",patternCategories:o})},WBe=()=>async({dispatch:e,select:t,registry:n})=>{const o=await Tt({path:tn("/wp-block-editor/v1/navigation-fallback",{_embed:!0})}),r=o?._embedded?.self;n.batch(()=>{if(e.receiveNavigationFallbackId(o?.id),!r)return;const i=!t.getEntityRecord("postType","wp_navigation",o.id);e.receiveEntityRecords("postType","wp_navigation",r,void 0,i),e.finishResolution("getEntityRecord",["postType","wp_navigation",o.id])})},NBe=e=>async({dispatch:t,registry:n,resolveSelect:o})=>{const r=await Tt({path:tn("/wp/v2/templates/lookup",e)});await o.getEntitiesConfig("postType"),r?.id&&n.batch(()=>{t.receiveDefaultTemplateId(e,r.id),t.receiveEntityRecords("postType","wp_template",[r]),t.finishResolution("getEntityRecord",["postType","wp_template",r.id])})},eie=(e,t,n,o={})=>async({dispatch:r,registry:s,resolveSelect:i})=>{const l=(await i.getEntitiesConfig(e)).find(h=>h.name===t&&h.kind===e);if(!l)return;o._fields&&(o={...o,_fields:[...new Set([...Md(o._fields)||[],l.revisionKey||e1])].join()});const u=tn(l.getRevisionsUrl(n),o);let d,p;const f={},b=l.supportsPagination&&o.per_page!==-1;try{p=await Tt({path:u,parse:!b})}catch{return}p&&(b?(d=Object.values(await p.json()),f.totalItems=parseInt(p.headers.get("X-WP-Total"))):d=Object.values(p),o._fields&&(d=d.map(h=>(o._fields.split(",").forEach(g=>{h.hasOwnProperty(g)||(h[g]=void 0)}),h))),s.batch(()=>{if(r.receiveRevisions(e,t,n,d,o,!1,f),!o?._fields&&!o.context){const h=l.key||e1,g=d.filter(z=>z[h]).map(z=>[e,t,n,z[h]]);r.finishResolutions("getRevision",g)}}))};eie.shouldInvalidate=(e,t,n,o)=>e.type==="SAVE_ENTITY_RECORD_FINISH"&&n===e.name&&t===e.kind&&!e.error&&o===e.recordId;const BBe=(e,t,n,o,r)=>async({dispatch:s,resolveSelect:i})=>{const l=(await i.getEntitiesConfig(e)).find(p=>p.name===t&&p.kind===e);if(!l)return;r!==void 0&&r._fields&&(r={...r,_fields:[...new Set([...Md(r._fields)||[],l.revisionKey||e1])].join()});const u=tn(l.getRevisionsUrl(n,o),r);let d;try{d=await Tt({path:u})}catch{return}d&&s.receiveRevisions(e,t,n,d,r)},LBe=e=>async({dispatch:t,resolveSelect:n})=>{let o;try{const{rest_namespace:r="wp/v2",rest_base:s}=await n.getPostType(e)||{};o=await Tt({path:`${r}/${s}/?context=edit`,method:"OPTIONS"})}catch{return}o&&t.receiveRegisteredPostMeta(e,o?.schema?.properties?.meta?.properties)},PBe=e=>async({dispatch:t})=>{const n=s1e.find(o=>o.kind===e);if(n)try{const o=await n.loadEntities();if(!o.length)return;t.addEntities(o)}catch{}},jBe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetCurrentGlobalStylesId:SBe,__experimentalGetCurrentThemeBaseGlobalStyles:CBe,__experimentalGetCurrentThemeGlobalStylesVariations:qBe,canUser:Qse,canUserEditEntityRecord:wBe,getAuthors:MBe,getAutosave:kBe,getAutosaves:_Be,getBlockPatternCategories:TBe,getBlockPatterns:RBe,getCurrentTheme:ABe,getCurrentThemeGlobalStylesRevisions:Jse,getCurrentUser:zBe,getDefaultTemplateId:NBe,getEditedEntityRecord:yBe,getEmbedPreview:xBe,getEntitiesConfig:PBe,getEntityRecord:Zse,getEntityRecords:G4,getNavigationFallbackId:WBe,getRawEntityRecord:OBe,getRegisteredPostMeta:LBe,getRevision:BBe,getRevisions:eie,getThemeSupports:vBe,getUserPatternCategories:EBe},Symbol.toStringTag,{value:"Module"}));function FU(e,t){const n={...e};let o=n;for(const r of t)o.children={...o.children,[r]:{locks:[],children:{},...o.children[r]}},o=o.children[r];return n}function XE(e,t){let n=e;for(const o of t){const r=n.children[o];if(!r)return null;n=r}return n}function*IBe(e,t){let n=e;yield n;for(const o of t){const r=n.children[o];if(!r)break;yield r,n=r}}function*DBe(e){const t=Object.values(e.children);for(;t.length;){const n=t.pop();yield n,t.push(...Object.values(n.children))}}function $U({exclusive:e},t){return!!(e&&t.length||!e&&t.filter(n=>n.exclusive).length)}const FBe={requests:[],tree:{locks:[],children:{}}};function MA(e=FBe,t){switch(t.type){case"ENQUEUE_LOCK_REQUEST":{const{request:n}=t;return{...e,requests:[n,...e.requests]}}case"GRANT_LOCK_REQUEST":{const{lock:n,request:o}=t,{store:r,path:s}=o,i=[r,...s],c=FU(e.tree,i),l=XE(c,i);return l.locks=[...l.locks,n],{...e,requests:e.requests.filter(u=>u!==o),tree:c}}case"RELEASE_LOCK":{const{lock:n}=t,o=[n.store,...n.path],r=FU(e.tree,o),s=XE(r,o);return s.locks=s.locks.filter(i=>i!==n),{...e,tree:r}}}return e}function $Be(e){return e.requests}function VBe(e,t,n,{exclusive:o}){const r=[t,...n],s=e.tree;for(const c of IBe(s,r))if($U({exclusive:o},c.locks))return!1;const i=XE(s,r);if(!i)return!0;for(const c of DBe(i))if($U({exclusive:o},c.locks))return!1;return!0}function HBe(){let e=MA(void 0,{type:"@@INIT"});function t(){for(const r of $Be(e)){const{store:s,path:i,exclusive:c,notifyAcquired:l}=r;if(VBe(e,s,i,{exclusive:c})){const u={store:s,path:i,exclusive:c};e=MA(e,{type:"GRANT_LOCK_REQUEST",lock:u,request:r}),l(u)}}}function n(r,s,i){return new Promise(c=>{e=MA(e,{type:"ENQUEUE_LOCK_REQUEST",request:{store:r,path:s,exclusive:i,notifyAcquired:c}}),t()})}function o(r){e=MA(e,{type:"RELEASE_LOCK",lock:r}),t()}return{acquire:n,release:o}}function UBe(){const e=HBe();function t(o,r,{exclusive:s}){return()=>e.acquire(o,r,s)}function n(o){return()=>e.release(o)}return{__unstableAcquireStoreLock:t,__unstableReleaseStoreLock:n}}let XBe,GBe;const GE=x.createContext({});function KE({kind:e,type:t,id:n,children:o}){const r=x.useContext(GE),s=x.useMemo(()=>({...r,[e]:{...r?.[e],[t]:n}}),[r,e,t,n]);return a.jsx(GE.Provider,{value:s,children:o})}let is=function(e){return e.Idle="IDLE",e.Resolving="RESOLVING",e.Error="ERROR",e.Success="SUCCESS",e}({});const KBe=["getIsResolving","hasStartedResolution","hasFinishedResolution","isResolving","getCachedResolvers"];function NB(e,t){return G((n,o)=>e(s=>YBe(n(s)),o),t)}const YBe=Hs(e=>{const t={};for(const n in e)KBe.includes(n)||Object.defineProperty(t,n,{get:()=>(...o)=>{const r=e[n](...o),s=e.getResolutionState(n,o)?.status;let i;switch(s){case"resolving":i=is.Resolving;break;case"finished":i=is.Success;break;case"error":i=is.Error;break;case void 0:i=is.Idle;break}return{data:r,status:i,isResolving:i===is.Resolving,hasStarted:i!==is.Idle,hasResolved:i===is.Success||i===is.Error}}});return t}),VU={};function Z5(e,t,n,o={enabled:!0}){const{editEntityRecord:r,saveEditedEntityRecord:s}=Oe(Me),i=x.useMemo(()=>({edit:(f,b={})=>r(e,t,n,f,b),save:(f={})=>s(e,t,n,{throwOnError:!0,...f})}),[r,e,t,n,s]),{editedRecord:c,hasEdits:l,edits:u}=G(f=>o.enabled?{editedRecord:f(Me).getEditedEntityRecord(e,t,n),hasEdits:f(Me).hasEditsForEntityRecord(e,t,n),edits:f(Me).getEntityRecordNonTransientEdits(e,t,n)}:{editedRecord:VU,hasEdits:!1,edits:VU},[e,t,n,o.enabled]),{data:d,...p}=NB(f=>o.enabled?f(Me).getEntityRecord(e,t,n):{data:null},[e,t,n,o.enabled]);return{record:d,editedRecord:c,hasEdits:l,edits:u,...p,...i}}const ZBe=[];function vl(e,t,n={},o={enabled:!0}){const r=tn("",n),{data:s,...i}=NB(u=>o.enabled?u(Me).getEntityRecords(e,t,n):{data:ZBe},[e,t,r,o.enabled]),{totalItems:c,totalPages:l}=G(u=>o.enabled?{totalItems:u(Me).getEntityRecordsTotalItems(e,t,n),totalPages:u(Me).getEntityRecordsTotalPages(e,t,n)}:{totalItems:null,totalPages:null},[e,t,r,o.enabled]);return{records:s,totalItems:c,totalPages:l,...i}}function QBe(e,t,n={},o={enabled:!0}){const r=G(d=>d(Me).getEntityConfig(e,t),[e,t]),{records:s,...i}=vl(e,t,n,o),c=x.useMemo(()=>{var d;return(d=s?.map(p=>{var f;return p[(f=r?.key)!==null&&f!==void 0?f:"id"]}))!==null&&d!==void 0?d:[]},[s,r?.key]),l=G(d=>{const{getEntityRecordsPermissions:p}=eh(d(Me));return p(e,t,c)},[c,e,t]);return{records:x.useMemo(()=>{var d;return(d=s?.map((p,f)=>({...p,permissions:l[f]})))!==null&&d!==void 0?d:[]},[s,l]),...i}}const HU=new Set;function JBe(){return globalThis.SCRIPT_DEBUG===!0}function zn(e){if(JBe()&&!HU.has(e)){console.warn(e);try{throw Error(e)}catch{}HU.add(e)}}function tie(e,t){const n=typeof e=="object",o=n?JSON.stringify(e):e;return n&&typeof t<"u"&&globalThis.SCRIPT_DEBUG===!0&&zn("When 'resource' is an entity object, passing 'id' as a separate argument isn't supported."),NB(r=>{const s=n?!!e.id:!!t,{canUser:i}=r(Me),c=i("create",n?{kind:e.kind,name:e.name}:e);if(!s){const h=i("read",e),g=c.isResolving||h.isResolving,z=c.hasResolved&&h.hasResolved;let A=is.Idle;return g?A=is.Resolving:z&&(A=is.Success),{status:A,isResolving:g,hasResolved:z,canCreate:c.hasResolved&&c.data,canRead:h.hasResolved&&h.data}}const l=i("read",e,t),u=i("update",e,t),d=i("delete",e,t),p=l.isResolving||c.isResolving||u.isResolving||d.isResolving,f=l.hasResolved&&c.hasResolved&&u.hasResolved&&d.hasResolved;let b=is.Idle;return p?b=is.Resolving:f&&(b=is.Success),{status:b,isResolving:p,hasResolved:f,canRead:f&&l.data,canCreate:f&&c.data,canUpdate:f&&u.data,canDelete:f&&d.data}},[o,t])}var eLe={grad:.9,turn:360,rad:360/(2*Math.PI)},Qc=function(e){return typeof e=="string"?e.length>0:typeof e=="number"},_0=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n+0},Si=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e>t?e:t},nie=function(e){return(e=isFinite(e)?e%360:0)>0?e:e+360},UU=function(e){return{r:Si(e.r,0,255),g:Si(e.g,0,255),b:Si(e.b,0,255),a:Si(e.a)}},YS=function(e){return{r:_0(e.r),g:_0(e.g),b:_0(e.b),a:_0(e.a,3)}},tLe=/^#([0-9a-f]{3,8})$/i,zA=function(e){var t=e.toString(16);return t.length<2?"0"+t:t},oie=function(e){var t=e.r,n=e.g,o=e.b,r=e.a,s=Math.max(t,n,o),i=s-Math.min(t,n,o),c=i?s===t?(n-o)/i:s===n?2+(o-t)/i:4+(t-n)/i:0;return{h:60*(c<0?c+6:c),s:s?i/s*100:0,v:s/255*100,a:r}},rie=function(e){var t=e.h,n=e.s,o=e.v,r=e.a;t=t/360*6,n/=100,o/=100;var s=Math.floor(t),i=o*(1-n),c=o*(1-(t-s)*n),l=o*(1-(1-t+s)*n),u=s%6;return{r:255*[o,c,i,i,l,o][u],g:255*[l,o,o,c,i,i][u],b:255*[i,i,l,o,o,c][u],a:r}},XU=function(e){return{h:nie(e.h),s:Si(e.s,0,100),l:Si(e.l,0,100),a:Si(e.a)}},GU=function(e){return{h:_0(e.h),s:_0(e.s),l:_0(e.l),a:_0(e.a,3)}},KU=function(e){return rie((n=(t=e).s,{h:t.h,s:(n*=((o=t.l)<50?o:100-o)/100)>0?2*n/(o+n)*100:0,v:o+n,a:t.a}));var t,n,o},AM=function(e){return{h:(t=oie(e)).h,s:(r=(200-(n=t.s))*(o=t.v)/100)>0&&r<200?n*o/100/(r<=100?r:200-r)*100:0,l:r/2,a:t.a};var t,n,o,r},nLe=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s*,\s*([+-]?\d*\.?\d+)%\s*,\s*([+-]?\d*\.?\d+)%\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,oLe=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s+([+-]?\d*\.?\d+)%\s+([+-]?\d*\.?\d+)%\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,rLe=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,sLe=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,YE={string:[[function(e){var t=tLe.exec(e);return t?(e=t[1]).length<=4?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:e.length===4?_0(parseInt(e[3]+e[3],16)/255,2):1}:e.length===6||e.length===8?{r:parseInt(e.substr(0,2),16),g:parseInt(e.substr(2,2),16),b:parseInt(e.substr(4,2),16),a:e.length===8?_0(parseInt(e.substr(6,2),16)/255,2):1}:null:null},"hex"],[function(e){var t=rLe.exec(e)||sLe.exec(e);return t?t[2]!==t[4]||t[4]!==t[6]?null:UU({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):null},"rgb"],[function(e){var t=nLe.exec(e)||oLe.exec(e);if(!t)return null;var n,o,r=XU({h:(n=t[1],o=t[2],o===void 0&&(o="deg"),Number(n)*(eLe[o]||1)),s:Number(t[3]),l:Number(t[4]),a:t[5]===void 0?1:Number(t[5])/(t[6]?100:1)});return KU(r)},"hsl"]],object:[[function(e){var t=e.r,n=e.g,o=e.b,r=e.a,s=r===void 0?1:r;return Qc(t)&&Qc(n)&&Qc(o)?UU({r:Number(t),g:Number(n),b:Number(o),a:Number(s)}):null},"rgb"],[function(e){var t=e.h,n=e.s,o=e.l,r=e.a,s=r===void 0?1:r;if(!Qc(t)||!Qc(n)||!Qc(o))return null;var i=XU({h:Number(t),s:Number(n),l:Number(o),a:Number(s)});return KU(i)},"hsl"],[function(e){var t=e.h,n=e.s,o=e.v,r=e.a,s=r===void 0?1:r;if(!Qc(t)||!Qc(n)||!Qc(o))return null;var i=function(c){return{h:nie(c.h),s:Si(c.s,0,100),v:Si(c.v,0,100),a:Si(c.a)}}({h:Number(t),s:Number(n),v:Number(o),a:Number(s)});return rie(i)},"hsv"]]},YU=function(e,t){for(var n=0;n<t.length;n++){var o=t[n][0](e);if(o)return[o,t[n][1]]}return[null,void 0]},iLe=function(e){return typeof e=="string"?YU(e.trim(),YE.string):typeof e=="object"&&e!==null?YU(e,YE.object):[null,void 0]},ZS=function(e,t){var n=AM(e);return{h:n.h,s:Si(n.s+100*t,0,100),l:n.l,a:n.a}},QS=function(e){return(299*e.r+587*e.g+114*e.b)/1e3/255},ZU=function(e,t){var n=AM(e);return{h:n.h,s:n.s,l:Si(n.l+100*t,0,100),a:n.a}},ZE=function(){function e(t){this.parsed=iLe(t)[0],this.rgba=this.parsed||{r:0,g:0,b:0,a:1}}return e.prototype.isValid=function(){return this.parsed!==null},e.prototype.brightness=function(){return _0(QS(this.rgba),2)},e.prototype.isDark=function(){return QS(this.rgba)<.5},e.prototype.isLight=function(){return QS(this.rgba)>=.5},e.prototype.toHex=function(){return t=YS(this.rgba),n=t.r,o=t.g,r=t.b,i=(s=t.a)<1?zA(_0(255*s)):"","#"+zA(n)+zA(o)+zA(r)+i;var t,n,o,r,s,i},e.prototype.toRgb=function(){return YS(this.rgba)},e.prototype.toRgbString=function(){return t=YS(this.rgba),n=t.r,o=t.g,r=t.b,(s=t.a)<1?"rgba("+n+", "+o+", "+r+", "+s+")":"rgb("+n+", "+o+", "+r+")";var t,n,o,r,s},e.prototype.toHsl=function(){return GU(AM(this.rgba))},e.prototype.toHslString=function(){return t=GU(AM(this.rgba)),n=t.h,o=t.s,r=t.l,(s=t.a)<1?"hsla("+n+", "+o+"%, "+r+"%, "+s+")":"hsl("+n+", "+o+"%, "+r+"%)";var t,n,o,r,s},e.prototype.toHsv=function(){return t=oie(this.rgba),{h:_0(t.h),s:_0(t.s),v:_0(t.v),a:_0(t.a,3)};var t},e.prototype.invert=function(){return an({r:255-(t=this.rgba).r,g:255-t.g,b:255-t.b,a:t.a});var t},e.prototype.saturate=function(t){return t===void 0&&(t=.1),an(ZS(this.rgba,t))},e.prototype.desaturate=function(t){return t===void 0&&(t=.1),an(ZS(this.rgba,-t))},e.prototype.grayscale=function(){return an(ZS(this.rgba,-1))},e.prototype.lighten=function(t){return t===void 0&&(t=.1),an(ZU(this.rgba,t))},e.prototype.darken=function(t){return t===void 0&&(t=.1),an(ZU(this.rgba,-t))},e.prototype.rotate=function(t){return t===void 0&&(t=15),this.hue(this.hue()+t)},e.prototype.alpha=function(t){return typeof t=="number"?an({r:(n=this.rgba).r,g:n.g,b:n.b,a:t}):_0(this.rgba.a,3);var n},e.prototype.hue=function(t){var n=AM(this.rgba);return typeof t=="number"?an({h:t,s:n.s,l:n.l,a:n.a}):_0(n.h)},e.prototype.isEqual=function(t){return this.toHex()===an(t).toHex()},e}(),an=function(e){return e instanceof ZE?e:new ZE(e)},QU=[],Xs=function(e){e.forEach(function(t){QU.indexOf(t)<0&&(t(ZE,YE),QU.push(t))})};function Gs(e,t){var n={white:"#ffffff",bisque:"#ffe4c4",blue:"#0000ff",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",antiquewhite:"#faebd7",aqua:"#00ffff",azure:"#f0ffff",whitesmoke:"#f5f5f5",papayawhip:"#ffefd5",plum:"#dda0dd",blanchedalmond:"#ffebcd",black:"#000000",gold:"#ffd700",goldenrod:"#daa520",gainsboro:"#dcdcdc",cornsilk:"#fff8dc",cornflowerblue:"#6495ed",burlywood:"#deb887",aquamarine:"#7fffd4",beige:"#f5f5dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkkhaki:"#bdb76b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",peachpuff:"#ffdab9",darkmagenta:"#8b008b",darkred:"#8b0000",darkorchid:"#9932cc",darkorange:"#ff8c00",darkslateblue:"#483d8b",gray:"#808080",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",deeppink:"#ff1493",deepskyblue:"#00bfff",wheat:"#f5deb3",firebrick:"#b22222",floralwhite:"#fffaf0",ghostwhite:"#f8f8ff",darkviolet:"#9400d3",magenta:"#ff00ff",green:"#008000",dodgerblue:"#1e90ff",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",blueviolet:"#8a2be2",forestgreen:"#228b22",lawngreen:"#7cfc00",indianred:"#cd5c5c",indigo:"#4b0082",fuchsia:"#ff00ff",brown:"#a52a2a",maroon:"#800000",mediumblue:"#0000cd",lightcoral:"#f08080",darkturquoise:"#00ced1",lightcyan:"#e0ffff",ivory:"#fffff0",lightyellow:"#ffffe0",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",linen:"#faf0e6",mediumaquamarine:"#66cdaa",lemonchiffon:"#fffacd",lime:"#00ff00",khaki:"#f0e68c",mediumseagreen:"#3cb371",limegreen:"#32cd32",mediumspringgreen:"#00fa9a",lightskyblue:"#87cefa",lightblue:"#add8e6",midnightblue:"#191970",lightpink:"#ffb6c1",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",mintcream:"#f5fffa",lightslategray:"#778899",lightslategrey:"#778899",navajowhite:"#ffdead",navy:"#000080",mediumvioletred:"#c71585",powderblue:"#b0e0e6",palegoldenrod:"#eee8aa",oldlace:"#fdf5e6",paleturquoise:"#afeeee",mediumturquoise:"#48d1cc",mediumorchid:"#ba55d3",rebeccapurple:"#663399",lightsteelblue:"#b0c4de",mediumslateblue:"#7b68ee",thistle:"#d8bfd8",tan:"#d2b48c",orchid:"#da70d6",mediumpurple:"#9370db",purple:"#800080",pink:"#ffc0cb",skyblue:"#87ceeb",springgreen:"#00ff7f",palegreen:"#98fb98",red:"#ff0000",yellow:"#ffff00",slateblue:"#6a5acd",lavenderblush:"#fff0f5",peru:"#cd853f",palevioletred:"#db7093",violet:"#ee82ee",teal:"#008080",slategray:"#708090",slategrey:"#708090",aliceblue:"#f0f8ff",darkseagreen:"#8fbc8f",darkolivegreen:"#556b2f",greenyellow:"#adff2f",seagreen:"#2e8b57",seashell:"#fff5ee",tomato:"#ff6347",silver:"#c0c0c0",sienna:"#a0522d",lavender:"#e6e6fa",lightgreen:"#90ee90",orange:"#ffa500",orangered:"#ff4500",steelblue:"#4682b4",royalblue:"#4169e1",turquoise:"#40e0d0",yellowgreen:"#9acd32",salmon:"#fa8072",saddlebrown:"#8b4513",sandybrown:"#f4a460",rosybrown:"#bc8f8f",darksalmon:"#e9967a",lightgoldenrodyellow:"#fafad2",snow:"#fffafa",lightgrey:"#d3d3d3",lightgray:"#d3d3d3",dimgray:"#696969",dimgrey:"#696969",olivedrab:"#6b8e23",olive:"#808000"},o={};for(var r in n)o[n[r]]=r;var s={};e.prototype.toName=function(i){if(!(this.rgba.a||this.rgba.r||this.rgba.g||this.rgba.b))return"transparent";var c,l,u=o[this.toHex()];if(u)return u;if(i?.closest){var d=this.toRgb(),p=1/0,f="black";if(!s.length)for(var b in n)s[b]=new e(n[b]).toRgb();for(var h in n){var g=(c=d,l=s[h],Math.pow(c.r-l.r,2)+Math.pow(c.g-l.g,2)+Math.pow(c.b-l.b,2));g<p&&(p=g,f=h)}return f}},t.string.push([function(i){var c=i.toLowerCase(),l=c==="transparent"?"#0000":n[c];return l?new e(l).toRgb():null},"name"])}var JS=function(e){var t=e/255;return t<.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)},eC=function(e){return .2126*JS(e.r)+.7152*JS(e.g)+.0722*JS(e.b)};function Uf(e){e.prototype.luminance=function(){return t=eC(this.rgba),(n=2)===void 0&&(n=0),o===void 0&&(o=Math.pow(10,n)),Math.round(o*t)/o+0;var t,n,o},e.prototype.contrast=function(t){t===void 0&&(t="#FFF");var n,o,r,s,i,c,l,u=t instanceof e?t:new e(t);return s=this.rgba,i=u.toRgb(),c=eC(s),l=eC(i),n=c>l?(c+.05)/(l+.05):(l+.05)/(c+.05),(o=2)===void 0&&(o=0),r===void 0&&(r=Math.pow(10,o)),Math.floor(r*n)/r+0},e.prototype.isReadable=function(t,n){return t===void 0&&(t="#FFF"),n===void 0&&(n={}),this.contrast(t)>=(c=(i=(o=n).size)===void 0?"normal":i,(s=(r=o.level)===void 0?"AA":r)==="AAA"&&c==="normal"?7:s==="AA"&&c==="large"?3:4.5);var o,r,s,i,c}}const sie="block-default",QE=["attributes","supports","save","migrate","isEligible","apiVersion"],Pp={"--wp--style--color--link":{value:["color","link"],support:["color","link"]},aspectRatio:{value:["dimensions","aspectRatio"],support:["dimensions","aspectRatio"],useEngine:!0},background:{value:["color","gradient"],support:["color","gradients"],useEngine:!0},backgroundColor:{value:["color","background"],support:["color","background"],requiresOptOut:!0,useEngine:!0},backgroundImage:{value:["background","backgroundImage"],support:["background","backgroundImage"],useEngine:!0},backgroundRepeat:{value:["background","backgroundRepeat"],support:["background","backgroundRepeat"],useEngine:!0},backgroundSize:{value:["background","backgroundSize"],support:["background","backgroundSize"],useEngine:!0},backgroundPosition:{value:["background","backgroundPosition"],support:["background","backgroundPosition"],useEngine:!0},borderColor:{value:["border","color"],support:["__experimentalBorder","color"],useEngine:!0},borderRadius:{value:["border","radius"],support:["__experimentalBorder","radius"],properties:{borderTopLeftRadius:"topLeft",borderTopRightRadius:"topRight",borderBottomLeftRadius:"bottomLeft",borderBottomRightRadius:"bottomRight"},useEngine:!0},borderStyle:{value:["border","style"],support:["__experimentalBorder","style"],useEngine:!0},borderWidth:{value:["border","width"],support:["__experimentalBorder","width"],useEngine:!0},borderTopColor:{value:["border","top","color"],support:["__experimentalBorder","color"],useEngine:!0},borderTopStyle:{value:["border","top","style"],support:["__experimentalBorder","style"],useEngine:!0},borderTopWidth:{value:["border","top","width"],support:["__experimentalBorder","width"],useEngine:!0},borderRightColor:{value:["border","right","color"],support:["__experimentalBorder","color"],useEngine:!0},borderRightStyle:{value:["border","right","style"],support:["__experimentalBorder","style"],useEngine:!0},borderRightWidth:{value:["border","right","width"],support:["__experimentalBorder","width"],useEngine:!0},borderBottomColor:{value:["border","bottom","color"],support:["__experimentalBorder","color"],useEngine:!0},borderBottomStyle:{value:["border","bottom","style"],support:["__experimentalBorder","style"],useEngine:!0},borderBottomWidth:{value:["border","bottom","width"],support:["__experimentalBorder","width"],useEngine:!0},borderLeftColor:{value:["border","left","color"],support:["__experimentalBorder","color"],useEngine:!0},borderLeftStyle:{value:["border","left","style"],support:["__experimentalBorder","style"],useEngine:!0},borderLeftWidth:{value:["border","left","width"],support:["__experimentalBorder","width"],useEngine:!0},color:{value:["color","text"],support:["color","text"],requiresOptOut:!0,useEngine:!0},columnCount:{value:["typography","textColumns"],support:["typography","textColumns"],useEngine:!0},filter:{value:["filter","duotone"],support:["filter","duotone"]},linkColor:{value:["elements","link","color","text"],support:["color","link"]},captionColor:{value:["elements","caption","color","text"],support:["color","caption"]},buttonColor:{value:["elements","button","color","text"],support:["color","button"]},buttonBackgroundColor:{value:["elements","button","color","background"],support:["color","button"]},headingColor:{value:["elements","heading","color","text"],support:["color","heading"]},headingBackgroundColor:{value:["elements","heading","color","background"],support:["color","heading"]},fontFamily:{value:["typography","fontFamily"],support:["typography","__experimentalFontFamily"],useEngine:!0},fontSize:{value:["typography","fontSize"],support:["typography","fontSize"],useEngine:!0},fontStyle:{value:["typography","fontStyle"],support:["typography","__experimentalFontStyle"],useEngine:!0},fontWeight:{value:["typography","fontWeight"],support:["typography","__experimentalFontWeight"],useEngine:!0},lineHeight:{value:["typography","lineHeight"],support:["typography","lineHeight"],useEngine:!0},margin:{value:["spacing","margin"],support:["spacing","margin"],properties:{marginTop:"top",marginRight:"right",marginBottom:"bottom",marginLeft:"left"},useEngine:!0},minHeight:{value:["dimensions","minHeight"],support:["dimensions","minHeight"],useEngine:!0},padding:{value:["spacing","padding"],support:["spacing","padding"],properties:{paddingTop:"top",paddingRight:"right",paddingBottom:"bottom",paddingLeft:"left"},useEngine:!0},textAlign:{value:["typography","textAlign"],support:["typography","textAlign"],useEngine:!1},textDecoration:{value:["typography","textDecoration"],support:["typography","__experimentalTextDecoration"],useEngine:!0},textTransform:{value:["typography","textTransform"],support:["typography","__experimentalTextTransform"],useEngine:!0},letterSpacing:{value:["typography","letterSpacing"],support:["typography","__experimentalLetterSpacing"],useEngine:!0},writingMode:{value:["typography","writingMode"],support:["typography","__experimentalWritingMode"],useEngine:!0},"--wp--style--root--padding":{value:["spacing","padding"],support:["spacing","padding"],properties:{"--wp--style--root--padding-top":"top","--wp--style--root--padding-right":"right","--wp--style--root--padding-bottom":"bottom","--wp--style--root--padding-left":"left"},rootOnly:!0}},Za={link:"a:where(:not(.wp-element-button))",heading:"h1, h2, h3, h4, h5, h6",h1:"h1",h2:"h2",h3:"h3",h4:"h4",h5:"h5",h6:"h6",button:".wp-element-button, .wp-block-button__link",caption:".wp-element-caption, .wp-block-audio figcaption, .wp-block-embed figcaption, .wp-block-gallery figcaption, .wp-block-image figcaption, .wp-block-table figcaption, .wp-block-video figcaption",cite:"cite"},aLe={"color.duotone":!0,"color.gradients":!0,"color.palette":!0,"dimensions.aspectRatios":!0,"typography.fontSizes":!0,"spacing.spacingSizes":!0},{lock:cLe,unlock:Mf}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/blocks"),JU={title:"block title",description:"block description",keywords:["block keyword"],styles:[{label:"block style label"}],variations:[{title:"block variation title",description:"block variation description",keywords:["block variation keyword"]}]};function K4(e){return e!==null&&typeof e=="object"}function lLe({textdomain:e,...t}){const n=["apiVersion","title","category","parent","ancestor","icon","description","keywords","attributes","providesContext","usesContext","selectors","supports","styles","example","variations","blockHooks","allowedBlocks"],o=Object.fromEntries(Object.entries(t).filter(([r])=>n.includes(r)));return e&&Object.keys(JU).forEach(r=>{o[r]&&(o[r]=JE(JU[r],o[r],e))}),o}function uLe(e,t){const n=K4(e)?e.name:e;if(typeof n!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block names must be strings.");return}if(!/^[a-z][a-z0-9-]*\/[a-z][a-z0-9-]*$/.test(n)){globalThis.SCRIPT_DEBUG===!0&&zn("Block names must contain a namespace prefix, include only lowercase alphanumeric characters or dashes, and start with a letter. Example: my-plugin/my-custom-block");return}if(uo(kt).getBlockType(n)){globalThis.SCRIPT_DEBUG===!0&&zn('Block "'+n+'" is already registered.');return}const{addBootstrappedBlockType:o,addUnprocessedBlockType:r}=Mf(kr(kt));if(K4(e)){const s=lLe(e);o(n,s)}return r(n,t),uo(kt).getBlockType(n)}function JE(e,t,n){return typeof e=="string"&&typeof t=="string"?We(t,e,n):Array.isArray(e)&&e.length&&Array.isArray(t)?t.map(o=>JE(e[0],o,n)):K4(e)&&Object.entries(e).length&&K4(t)?Object.keys(t).reduce((o,r)=>e[r]?(o[r]=JE(e[r],t[r],n),o):(o[r]=t[r],o),{}):t}function dLe(e){kr(kt).setFreeformFallbackBlockName(e)}function yd(){return uo(kt).getFreeformFallbackBlockName()}function iie(){return uo(kt).getGroupingBlockName()}function pLe(e){kr(kt).setUnregisteredFallbackBlockName(e)}function g3(){return uo(kt).getUnregisteredFallbackBlockName()}function fLe(e){kr(kt).setDefaultBlockName(e)}function bLe(e){kr(kt).setGroupingBlockName(e)}function Mr(){return uo(kt).getDefaultBlockName()}function on(e){return uo(kt)?.getBlockType(e)}function gs(){return uo(kt).getBlockTypes()}function An(e,t,n){return uo(kt).getBlockSupport(e,t,n)}function Et(e,t,n){return uo(kt).hasBlockSupport(e,t,n)}function Qd(e){return e?.name==="core/block"}function Hh(e){return e?.name==="core/template-part"}const Q5=(e,t)=>uo(kt).getBlockVariations(e,t),eX=e=>{const{name:t,label:n,usesContext:o,getValues:r,setValues:s,canUserEditValue:i,getFieldsList:c}=e,l=Mf(uo(kt)).getBlockBindingsSource(t),u=["label","usesContext"];for(const d in l)if(!u.includes(d)&&l[d]){globalThis.SCRIPT_DEBUG===!0&&zn('Block bindings source "'+t+'" is already registered.');return}if(!t){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source must contain a name.");return}if(typeof t!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must be a string.");return}if(/[A-Z]+/.test(t)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must not contain uppercase characters.");return}if(!/^[a-z0-9/-]+$/.test(t)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must contain only valid characters: lowercase characters, hyphens, or digits. Example: my-plugin/my-custom-source.");return}if(!/^[a-z0-9-]+\/[a-z0-9-]+$/.test(t)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must contain a namespace and valid characters. Example: my-plugin/my-custom-source.");return}if(!n&&!l?.label){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source must contain a label.");return}if(n&&typeof n!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source label must be a string.");return}if(n&&l?.label&&n!==l?.label&&globalThis.SCRIPT_DEBUG===!0&&zn('Block bindings "'+t+'" source label was overridden.'),o&&!Array.isArray(o)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source usesContext must be an array.");return}if(r&&typeof r!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source getValues must be a function.");return}if(s&&typeof s!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source setValues must be a function.");return}if(i&&typeof i!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source canUserEditValue must be a function.");return}if(c&&typeof c!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source getFieldsList must be a function.");return}return Mf(kr(kt)).addBlockBindingsSource(e)};function xl(e){return Mf(uo(kt)).getBlockBindingsSource(e)}function aie(){return Mf(uo(kt)).getAllBlockBindingsSources()}Xs([Gs,Uf]);const tX=["#191e23","#f8f9f9"];function E2(e){var t;return Object.entries((t=on(e.name)?.attributes)!==null&&t!==void 0?t:{}).every(([n,o])=>{const r=e.attributes[n];return o.hasOwnProperty("default")?r===o.default:o.type==="rich-text"?!r?.length:r===void 0})}function Wl(e){return e.name===Mr()&&E2(e)}function cie(e){return!!e&&(typeof e=="string"||x.isValidElement(e)||typeof e=="function"||e instanceof x.Component)}function hLe(e){if(e=e||sie,cie(e))return{src:e};if("background"in e){const t=an(e.background),n=r=>t.contrast(r),o=Math.max(...tX.map(n));return{...e,foreground:e.foreground?e.foreground:tX.find(r=>n(r)===o),shadowColor:t.alpha(.3).toRgbString()}}return e}function M3(e){return typeof e=="string"?on(e):e}function lie(e,t,n="visual"){const{__experimentalLabel:o,title:r}=e,s=o&&o(t,{context:n});return s?s.toPlainText?s.toPlainText():v1(s):r}function uie(e){if(e.default!==void 0)return e.default;if(e.type==="rich-text")return new Xo}function die(e){return on(e)!==void 0}function BB(e,t){const n=on(e);if(n===void 0)throw new Error(`Block type '${e}' is not registered.`);return Object.entries(n.attributes).reduce((o,[r,s])=>{const i=t[r];if(i!==void 0)s.type==="rich-text"?i instanceof Xo?o[r]=i:typeof i=="string"&&(o[r]=Xo.fromHTMLString(i)):s.type==="string"&&i instanceof Xo?o[r]=i.toHTMLString():o[r]=i;else{const c=uie(s);c!==void 0&&(o[r]=c)}return["node","children"].indexOf(s.source)!==-1&&(typeof o[r]=="string"?o[r]=[o[r]]:Array.isArray(o[r])||(o[r]=[])),o},{})}function mLe(e,t){const n=on(e)?.attributes;return n?Object.keys(n).filter(r=>{const s=n[r];return s?.role===t?!0:s?.__experimentalRole===t?(Ke("__experimentalRole attribute",{since:"6.7",version:"6.8",alternative:"role attribute",hint:`Check the block.json of the ${e} block.`}),!0):!1}):[]}function gLe(e){const t=on(e)?.attributes;return t?!!Object.keys(t)?.some(n=>{const o=t[n];return o?.role==="content"||o?.__experimentalRole==="content"}):!1}function Xf(e,t){return Object.fromEntries(Object.entries(e).filter(([n])=>!t.includes(n)))}const MLe=[{slug:"text",title:m("Text")},{slug:"media",title:m("Media")},{slug:"design",title:m("Design")},{slug:"widgets",title:m("Widgets")},{slug:"theme",title:m("Theme")},{slug:"embed",title:m("Embeds")},{slug:"reusable",title:m("Reusable blocks")}];function LB(e){return e.reduce((t,n)=>({...t,[n.name]:n}),{})}function Y4(e){return e.reduce((t,n)=>(t.some(o=>o.name===n.name)||t.push(n),t),[])}function zLe(e={},t){switch(t.type){case"ADD_BOOTSTRAPPED_BLOCK_TYPE":const{name:n,blockType:o}=t,r=e[n];let s;return r?(r.blockHooks===void 0&&o.blockHooks&&(s={...r,...s,blockHooks:o.blockHooks}),r.allowedBlocks===void 0&&o.allowedBlocks&&(s={...r,...s,allowedBlocks:o.allowedBlocks})):(s=Object.fromEntries(Object.entries(o).filter(([,i])=>i!=null).map(([i,c])=>[RN(i),c])),s.name=n),s?{...e,[n]:s}:e;case"REMOVE_BLOCK_TYPES":return Xf(e,t.names)}return e}function OLe(e={},t){switch(t.type){case"ADD_UNPROCESSED_BLOCK_TYPE":return{...e,[t.name]:t.blockType};case"REMOVE_BLOCK_TYPES":return Xf(e,t.names)}return e}function yLe(e={},t){switch(t.type){case"ADD_BLOCK_TYPES":return{...e,...LB(t.blockTypes)};case"REMOVE_BLOCK_TYPES":return Xf(e,t.names)}return e}function ALe(e={},t){var n;switch(t.type){case"ADD_BLOCK_TYPES":return{...e,...Object.fromEntries(Object.entries(LB(t.blockTypes)).map(([r,s])=>{var i,c;return[r,Y4([...((i=s.styles)!==null&&i!==void 0?i:[]).map(l=>({...l,source:"block"})),...((c=e[s.name])!==null&&c!==void 0?c:[]).filter(({source:l})=>l!=="block")])]}))};case"ADD_BLOCK_STYLES":const o={};return t.blockNames.forEach(r=>{var s;o[r]=Y4([...(s=e[r])!==null&&s!==void 0?s:[],...t.styles])}),{...e,...o};case"REMOVE_BLOCK_STYLES":return{...e,[t.blockName]:((n=e[t.blockName])!==null&&n!==void 0?n:[]).filter(r=>t.styleNames.indexOf(r.name)===-1)}}return e}function vLe(e={},t){var n,o;switch(t.type){case"ADD_BLOCK_TYPES":return{...e,...Object.fromEntries(Object.entries(LB(t.blockTypes)).map(([r,s])=>{var i,c;return[r,Y4([...((i=s.variations)!==null&&i!==void 0?i:[]).map(l=>({...l,source:"block"})),...((c=e[s.name])!==null&&c!==void 0?c:[]).filter(({source:l})=>l!=="block")])]}))};case"ADD_BLOCK_VARIATIONS":return{...e,[t.blockName]:Y4([...(n=e[t.blockName])!==null&&n!==void 0?n:[],...t.variations])};case"REMOVE_BLOCK_VARIATIONS":return{...e,[t.blockName]:((o=e[t.blockName])!==null&&o!==void 0?o:[]).filter(r=>t.variationNames.indexOf(r.name)===-1)}}return e}function J5(e){return(t=null,n)=>{switch(n.type){case"REMOVE_BLOCK_TYPES":return n.names.indexOf(t)!==-1?null:t;case e:return n.name||null}return t}}const xLe=J5("SET_DEFAULT_BLOCK_NAME"),wLe=J5("SET_FREEFORM_FALLBACK_BLOCK_NAME"),_Le=J5("SET_UNREGISTERED_FALLBACK_BLOCK_NAME"),kLe=J5("SET_GROUPING_BLOCK_NAME");function SLe(e=MLe,t){switch(t.type){case"SET_CATEGORIES":const n=new Map;return(t.categories||[]).forEach(o=>{n.set(o.slug,o)}),[...n.values()];case"UPDATE_CATEGORY":{if(!t.category||!Object.keys(t.category).length)return e;if(e.find(({slug:r})=>r===t.slug))return e.map(r=>r.slug===t.slug?{...r,...t.category}:r)}}return e}function CLe(e={},t){switch(t.type){case"ADD_BLOCK_COLLECTION":return{...e,[t.namespace]:{title:t.title,icon:t.icon}};case"REMOVE_BLOCK_COLLECTION":return Xf(e,t.namespace)}return e}function qLe(e=[],t=[]){const n=Array.from(new Set(e.concat(t)));return n.length>0?n:void 0}function RLe(e={},t){switch(t.type){case"ADD_BLOCK_BINDINGS_SOURCE":let n;return(globalThis.IS_GUTENBERG_PLUGIN||t.name==="core/post-meta")&&(n=t.getFieldsList),{...e,[t.name]:{label:t.label||e[t.name]?.label,usesContext:qLe(e[t.name]?.usesContext,t.usesContext),getValues:t.getValues,setValues:t.setValues,canUserEditValue:t.setValues&&t.canUserEditValue,getFieldsList:n}};case"REMOVE_BLOCK_BINDINGS_SOURCE":return Xf(e,t.name)}return e}const TLe=J0({bootstrappedBlockTypes:zLe,unprocessedBlockTypes:OLe,blockTypes:yLe,blockStyles:ALe,blockVariations:vLe,defaultBlockName:xLe,freeformFallbackBlockName:wLe,unregisteredFallbackBlockName:_Le,groupingBlockName:kLe,categories:SLe,collections:CLe,blockBindingsSources:RLe}),JM=(e,t,n)=>{var o;const r=Array.isArray(t)?t:t.split(".");let s=e;return r.forEach(i=>{s=s?.[i]}),(o=s)!==null&&o!==void 0?o:n};function nX(e){return typeof e=="object"&&e.constructor===Object&&e!==null}function pie(e,t){return nX(e)&&nX(t)?Object.entries(t).every(([n,o])=>pie(e?.[n],o)):e===t}const ELe=["background","backgroundColor","color","linkColor","captionColor","buttonColor","headingColor","fontFamily","fontSize","fontStyle","fontWeight","lineHeight","padding","contentSize","wideSize","blockGap","textDecoration","textTransform","letterSpacing"];function oX(e,t,n){return e.filter(o=>!(o==="fontSize"&&n==="heading"||o==="textDecoration"&&!t&&n!=="link"||o==="textTransform"&&!t&&!(["heading","h1","h2","h3","h4","h5","h6"].includes(n)||n==="button"||n==="caption"||n==="text")||o==="letterSpacing"&&!t&&!(["heading","h1","h2","h3","h4","h5","h6"].includes(n)||n==="button"||n==="caption"||n==="text")||o==="textColumns"&&!t))}const WLe=It((e,t,n)=>{if(!t)return oX(ELe,t,n);const o=z3(e,t);if(!o)return[];const r=[];return o?.supports?.spacing?.blockGap&&r.push("blockGap"),o?.supports?.shadow&&r.push("shadow"),Object.keys(Pp).forEach(s=>{if(Pp[s].support){if(Pp[s].requiresOptOut&&Pp[s].support[0]in o.supports&&JM(o.supports,Pp[s].support)!==!1){r.push(s);return}JM(o.supports,Pp[s].support,!1)&&r.push(s)}}),oX(r,t,n)},(e,t)=>[e.blockTypes[t]]);function NLe(e,t){return e.bootstrappedBlockTypes[t]}function BLe(e){return e.unprocessedBlockTypes}function LLe(e){return e.blockBindingsSources}function PLe(e,t){return e.blockBindingsSources[t]}const fie=(e,t)=>{const n=z3(e,t);return n?Object.values(n.attributes).some(({role:o,__experimentalRole:r})=>o==="content"?!0:r==="content"?(Ke("__experimentalRole attribute",{since:"6.7",version:"6.8",alternative:"role attribute",hint:`Check the block.json of the ${t} block.`}),!0):!1):!1},jLe=Object.freeze(Object.defineProperty({__proto__:null,getAllBlockBindingsSources:LLe,getBlockBindingsSource:PLe,getBootstrappedBlockType:NLe,getSupportedStyles:WLe,getUnprocessedBlockTypes:BLe,hasContentRoleAttribute:fie},Symbol.toStringTag,{value:"Module"})),bie=(e,t)=>typeof t=="string"?z3(e,t):t,hie=It(e=>Object.values(e.blockTypes),e=>[e.blockTypes]);function z3(e,t){return e.blockTypes[t]}function ILe(e,t){return e.blockStyles[t]}const PB=It((e,t,n)=>{const o=e.blockVariations[t];return!o||!n?o:o.filter(r=>(r.scope||["block","inserter"]).includes(n))},(e,t)=>[e.blockVariations[t]]);function DLe(e,t,n,o){const r=PB(e,t,o);if(!r)return r;const s=z3(e,t),i=Object.keys(s?.attributes||{});let c,l=0;for(const u of r)if(Array.isArray(u.isActive)){const d=u.isActive.filter(b=>{const h=b.split(".")[0];return i.includes(h)}),p=d.length;if(p===0)continue;d.every(b=>{const h=JM(u.attributes,b);if(h===void 0)return!1;let g=JM(n,b);return g instanceof Xo&&(g=g.toHTMLString()),pie(g,h)})&&p>l&&(c=u,l=p)}else if(u.isActive?.(n,u.attributes))return c||u;return c}function FLe(e,t,n){const o=PB(e,t,n);return[...o].reverse().find(({isDefault:s})=>!!s)||o[0]}function $Le(e){return e.categories}function VLe(e){return e.collections}function HLe(e){return e.defaultBlockName}function ULe(e){return e.freeformFallbackBlockName}function XLe(e){return e.unregisteredFallbackBlockName}function GLe(e){return e.groupingBlockName}const jB=It((e,t)=>hie(e).filter(n=>n.parent?.includes(t)).map(({name:n})=>n),e=>[e.blockTypes]),mie=(e,t,n,o)=>{const r=bie(e,t);return r?.supports?JM(r.supports,n,o):o};function gie(e,t,n,o){return!!mie(e,t,n,o)}function rX(e){return ms(e??"").toLowerCase().trim()}function KLe(e,t,n=""){const o=bie(e,t),r=rX(n),s=i=>rX(i).includes(r);return s(o.title)||o.keywords?.some(s)||s(o.category)||typeof o.description=="string"&&s(o.description)}const YLe=(e,t)=>jB(e,t).length>0,ZLe=(e,t)=>jB(e,t).some(n=>gie(e,n,"inserter",!0)),QLe=(...e)=>(Ke("__experimentalHasContentRoleAttribute",{since:"6.7",version:"6.8",hint:"This is a private selector."}),fie(...e)),JLe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalHasContentRoleAttribute:QLe,getActiveBlockVariation:DLe,getBlockStyles:ILe,getBlockSupport:mie,getBlockType:z3,getBlockTypes:hie,getBlockVariations:PB,getCategories:$Le,getChildBlockNames:jB,getCollections:VLe,getDefaultBlockName:HLe,getDefaultBlockVariation:FLe,getFreeformFallbackBlockName:ULe,getGroupingBlockName:GLe,getUnregisteredFallbackBlockName:XLe,hasBlockSupport:gie,hasChildBlocks:YLe,hasChildBlocksWithInserterSupport:ZLe,isMatchingSearchTerm:KLe},Symbol.toStringTag,{value:"Module"}));var tC={exports:{}},ko={};/** + */(function(e){const t=F5,n=fB,o=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=d,e.SlowBuffer=y,e.INSPECT_MAX_BYTES=50;const r=2147483647;e.kMaxLength=r;const{Uint8Array:s,ArrayBuffer:i,SharedArrayBuffer:c}=globalThis;d.TYPED_ARRAY_SUPPORT=l(),!d.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function l(){try{const ae=new s(1),H={foo:function(){return 42}};return Object.setPrototypeOf(H,s.prototype),Object.setPrototypeOf(ae,H),ae.foo()===42}catch{return!1}}Object.defineProperty(d.prototype,"parent",{enumerable:!0,get:function(){if(d.isBuffer(this))return this.buffer}}),Object.defineProperty(d.prototype,"offset",{enumerable:!0,get:function(){if(d.isBuffer(this))return this.byteOffset}});function u(ae){if(ae>r)throw new RangeError('The value "'+ae+'" is invalid for option "size"');const H=new s(ae);return Object.setPrototypeOf(H,d.prototype),H}function d(ae,H,Y){if(typeof ae=="number"){if(typeof H=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return h(ae)}return p(ae,H,Y)}d.poolSize=8192;function p(ae,H,Y){if(typeof ae=="string")return g(ae,H);if(i.isView(ae))return A(ae);if(ae==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof ae);if(Pe(ae,i)||ae&&Pe(ae.buffer,i)||typeof c<"u"&&(Pe(ae,c)||ae&&Pe(ae.buffer,c)))return _(ae,H,Y);if(typeof ae=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const fe=ae.valueOf&&ae.valueOf();if(fe!=null&&fe!==ae)return d.from(fe,H,Y);const Re=v(ae);if(Re)return Re;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof ae[Symbol.toPrimitive]=="function")return d.from(ae[Symbol.toPrimitive]("string"),H,Y);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof ae)}d.from=function(ae,H,Y){return p(ae,H,Y)},Object.setPrototypeOf(d.prototype,s.prototype),Object.setPrototypeOf(d,s);function f(ae){if(typeof ae!="number")throw new TypeError('"size" argument must be of type number');if(ae<0)throw new RangeError('The value "'+ae+'" is invalid for option "size"')}function b(ae,H,Y){return f(ae),ae<=0?u(ae):H!==void 0?typeof Y=="string"?u(ae).fill(H,Y):u(ae).fill(H):u(ae)}d.alloc=function(ae,H,Y){return b(ae,H,Y)};function h(ae){return f(ae),u(ae<0?0:M(ae)|0)}d.allocUnsafe=function(ae){return h(ae)},d.allocUnsafeSlow=function(ae){return h(ae)};function g(ae,H){if((typeof H!="string"||H==="")&&(H="utf8"),!d.isEncoding(H))throw new TypeError("Unknown encoding: "+H);const Y=k(ae,H)|0;let fe=u(Y);const Re=fe.write(ae,H);return Re!==Y&&(fe=fe.slice(0,Re)),fe}function z(ae){const H=ae.length<0?0:M(ae.length)|0,Y=u(H);for(let fe=0;fe<H;fe+=1)Y[fe]=ae[fe]&255;return Y}function A(ae){if(Pe(ae,s)){const H=new s(ae);return _(H.buffer,H.byteOffset,H.byteLength)}return z(ae)}function _(ae,H,Y){if(H<0||ae.byteLength<H)throw new RangeError('"offset" is outside of buffer bounds');if(ae.byteLength<H+(Y||0))throw new RangeError('"length" is outside of buffer bounds');let fe;return H===void 0&&Y===void 0?fe=new s(ae):Y===void 0?fe=new s(ae,H):fe=new s(ae,H,Y),Object.setPrototypeOf(fe,d.prototype),fe}function v(ae){if(d.isBuffer(ae)){const H=M(ae.length)|0,Y=u(H);return Y.length===0||ae.copy(Y,0,0,H),Y}if(ae.length!==void 0)return typeof ae.length!="number"||rt(ae.length)?u(0):z(ae);if(ae.type==="Buffer"&&Array.isArray(ae.data))return z(ae.data)}function M(ae){if(ae>=r)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+r.toString(16)+" bytes");return ae|0}function y(ae){return+ae!=ae&&(ae=0),d.alloc(+ae)}d.isBuffer=function(H){return H!=null&&H._isBuffer===!0&&H!==d.prototype},d.compare=function(H,Y){if(Pe(H,s)&&(H=d.from(H,H.offset,H.byteLength)),Pe(Y,s)&&(Y=d.from(Y,Y.offset,Y.byteLength)),!d.isBuffer(H)||!d.isBuffer(Y))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(H===Y)return 0;let fe=H.length,Re=Y.length;for(let be=0,ze=Math.min(fe,Re);be<ze;++be)if(H[be]!==Y[be]){fe=H[be],Re=Y[be];break}return fe<Re?-1:Re<fe?1:0},d.isEncoding=function(H){switch(String(H).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},d.concat=function(H,Y){if(!Array.isArray(H))throw new TypeError('"list" argument must be an Array of Buffers');if(H.length===0)return d.alloc(0);let fe;if(Y===void 0)for(Y=0,fe=0;fe<H.length;++fe)Y+=H[fe].length;const Re=d.allocUnsafe(Y);let be=0;for(fe=0;fe<H.length;++fe){let ze=H[fe];if(Pe(ze,s))be+ze.length>Re.length?(d.isBuffer(ze)||(ze=d.from(ze)),ze.copy(Re,be)):s.prototype.set.call(Re,ze,be);else if(d.isBuffer(ze))ze.copy(Re,be);else throw new TypeError('"list" argument must be an Array of Buffers');be+=ze.length}return Re};function k(ae,H){if(d.isBuffer(ae))return ae.length;if(i.isView(ae)||Pe(ae,i))return ae.byteLength;if(typeof ae!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof ae);const Y=ae.length,fe=arguments.length>2&&arguments[2]===!0;if(!fe&&Y===0)return 0;let Re=!1;for(;;)switch(H){case"ascii":case"latin1":case"binary":return Y;case"utf8":case"utf-8":return L(ae).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Y*2;case"hex":return Y>>>1;case"base64":return ve(ae).length;default:if(Re)return fe?-1:L(ae).length;H=(""+H).toLowerCase(),Re=!0}}d.byteLength=k;function S(ae,H,Y){let fe=!1;if((H===void 0||H<0)&&(H=0),H>this.length||((Y===void 0||Y>this.length)&&(Y=this.length),Y<=0)||(Y>>>=0,H>>>=0,Y<=H))return"";for(ae||(ae="utf8");;)switch(ae){case"hex":return ee(this,H,Y);case"utf8":case"utf-8":return $(this,H,Y);case"ascii":return Z(this,H,Y);case"latin1":case"binary":return V(this,H,Y);case"base64":return P(this,H,Y);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return te(this,H,Y);default:if(fe)throw new TypeError("Unknown encoding: "+ae);ae=(ae+"").toLowerCase(),fe=!0}}d.prototype._isBuffer=!0;function C(ae,H,Y){const fe=ae[H];ae[H]=ae[Y],ae[Y]=fe}d.prototype.swap16=function(){const H=this.length;if(H%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let Y=0;Y<H;Y+=2)C(this,Y,Y+1);return this},d.prototype.swap32=function(){const H=this.length;if(H%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let Y=0;Y<H;Y+=4)C(this,Y,Y+3),C(this,Y+1,Y+2);return this},d.prototype.swap64=function(){const H=this.length;if(H%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let Y=0;Y<H;Y+=8)C(this,Y,Y+7),C(this,Y+1,Y+6),C(this,Y+2,Y+5),C(this,Y+3,Y+4);return this},d.prototype.toString=function(){const H=this.length;return H===0?"":arguments.length===0?$(this,0,H):S.apply(this,arguments)},d.prototype.toLocaleString=d.prototype.toString,d.prototype.equals=function(H){if(!d.isBuffer(H))throw new TypeError("Argument must be a Buffer");return this===H?!0:d.compare(this,H)===0},d.prototype.inspect=function(){let H="";const Y=e.INSPECT_MAX_BYTES;return H=this.toString("hex",0,Y).replace(/(.{2})/g,"$1 ").trim(),this.length>Y&&(H+=" ... "),"<Buffer "+H+">"},o&&(d.prototype[o]=d.prototype.inspect),d.prototype.compare=function(H,Y,fe,Re,be){if(Pe(H,s)&&(H=d.from(H,H.offset,H.byteLength)),!d.isBuffer(H))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof H);if(Y===void 0&&(Y=0),fe===void 0&&(fe=H?H.length:0),Re===void 0&&(Re=0),be===void 0&&(be=this.length),Y<0||fe>H.length||Re<0||be>this.length)throw new RangeError("out of range index");if(Re>=be&&Y>=fe)return 0;if(Re>=be)return-1;if(Y>=fe)return 1;if(Y>>>=0,fe>>>=0,Re>>>=0,be>>>=0,this===H)return 0;let ze=be-Re,nt=fe-Y;const Mt=Math.min(ze,nt),ot=this.slice(Re,be),Ue=H.slice(Y,fe);for(let yt=0;yt<Mt;++yt)if(ot[yt]!==Ue[yt]){ze=ot[yt],nt=Ue[yt];break}return ze<nt?-1:nt<ze?1:0};function R(ae,H,Y,fe,Re){if(ae.length===0)return-1;if(typeof Y=="string"?(fe=Y,Y=0):Y>2147483647?Y=2147483647:Y<-2147483648&&(Y=-2147483648),Y=+Y,rt(Y)&&(Y=Re?0:ae.length-1),Y<0&&(Y=ae.length+Y),Y>=ae.length){if(Re)return-1;Y=ae.length-1}else if(Y<0)if(Re)Y=0;else return-1;if(typeof H=="string"&&(H=d.from(H,fe)),d.isBuffer(H))return H.length===0?-1:T(ae,H,Y,fe,Re);if(typeof H=="number")return H=H&255,typeof s.prototype.indexOf=="function"?Re?s.prototype.indexOf.call(ae,H,Y):s.prototype.lastIndexOf.call(ae,H,Y):T(ae,[H],Y,fe,Re);throw new TypeError("val must be string, number or Buffer")}function T(ae,H,Y,fe,Re){let be=1,ze=ae.length,nt=H.length;if(fe!==void 0&&(fe=String(fe).toLowerCase(),fe==="ucs2"||fe==="ucs-2"||fe==="utf16le"||fe==="utf-16le")){if(ae.length<2||H.length<2)return-1;be=2,ze/=2,nt/=2,Y/=2}function Mt(Ue,yt){return be===1?Ue[yt]:Ue.readUInt16BE(yt*be)}let ot;if(Re){let Ue=-1;for(ot=Y;ot<ze;ot++)if(Mt(ae,ot)===Mt(H,Ue===-1?0:ot-Ue)){if(Ue===-1&&(Ue=ot),ot-Ue+1===nt)return Ue*be}else Ue!==-1&&(ot-=ot-Ue),Ue=-1}else for(Y+nt>ze&&(Y=ze-nt),ot=Y;ot>=0;ot--){let Ue=!0;for(let yt=0;yt<nt;yt++)if(Mt(ae,ot+yt)!==Mt(H,yt)){Ue=!1;break}if(Ue)return ot}return-1}d.prototype.includes=function(H,Y,fe){return this.indexOf(H,Y,fe)!==-1},d.prototype.indexOf=function(H,Y,fe){return R(this,H,Y,fe,!0)},d.prototype.lastIndexOf=function(H,Y,fe){return R(this,H,Y,fe,!1)};function E(ae,H,Y,fe){Y=Number(Y)||0;const Re=ae.length-Y;fe?(fe=Number(fe),fe>Re&&(fe=Re)):fe=Re;const be=H.length;fe>be/2&&(fe=be/2);let ze;for(ze=0;ze<fe;++ze){const nt=parseInt(H.substr(ze*2,2),16);if(rt(nt))return ze;ae[Y+ze]=nt}return ze}function B(ae,H,Y,fe){return qe(L(H,ae.length-Y),ae,Y,fe)}function N(ae,H,Y,fe){return qe(U(H),ae,Y,fe)}function j(ae,H,Y,fe){return qe(ve(H),ae,Y,fe)}function I(ae,H,Y,fe){return qe(ne(H,ae.length-Y),ae,Y,fe)}d.prototype.write=function(H,Y,fe,Re){if(Y===void 0)Re="utf8",fe=this.length,Y=0;else if(fe===void 0&&typeof Y=="string")Re=Y,fe=this.length,Y=0;else if(isFinite(Y))Y=Y>>>0,isFinite(fe)?(fe=fe>>>0,Re===void 0&&(Re="utf8")):(Re=fe,fe=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const be=this.length-Y;if((fe===void 0||fe>be)&&(fe=be),H.length>0&&(fe<0||Y<0)||Y>this.length)throw new RangeError("Attempt to write outside buffer bounds");Re||(Re="utf8");let ze=!1;for(;;)switch(Re){case"hex":return E(this,H,Y,fe);case"utf8":case"utf-8":return B(this,H,Y,fe);case"ascii":case"latin1":case"binary":return N(this,H,Y,fe);case"base64":return j(this,H,Y,fe);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,H,Y,fe);default:if(ze)throw new TypeError("Unknown encoding: "+Re);Re=(""+Re).toLowerCase(),ze=!0}},d.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function P(ae,H,Y){return H===0&&Y===ae.length?t.fromByteArray(ae):t.fromByteArray(ae.slice(H,Y))}function $(ae,H,Y){Y=Math.min(ae.length,Y);const fe=[];let Re=H;for(;Re<Y;){const be=ae[Re];let ze=null,nt=be>239?4:be>223?3:be>191?2:1;if(Re+nt<=Y){let Mt,ot,Ue,yt;switch(nt){case 1:be<128&&(ze=be);break;case 2:Mt=ae[Re+1],(Mt&192)===128&&(yt=(be&31)<<6|Mt&63,yt>127&&(ze=yt));break;case 3:Mt=ae[Re+1],ot=ae[Re+2],(Mt&192)===128&&(ot&192)===128&&(yt=(be&15)<<12|(Mt&63)<<6|ot&63,yt>2047&&(yt<55296||yt>57343)&&(ze=yt));break;case 4:Mt=ae[Re+1],ot=ae[Re+2],Ue=ae[Re+3],(Mt&192)===128&&(ot&192)===128&&(Ue&192)===128&&(yt=(be&15)<<18|(Mt&63)<<12|(ot&63)<<6|Ue&63,yt>65535&&yt<1114112&&(ze=yt))}}ze===null?(ze=65533,nt=1):ze>65535&&(ze-=65536,fe.push(ze>>>10&1023|55296),ze=56320|ze&1023),fe.push(ze),Re+=nt}return X(fe)}const F=4096;function X(ae){const H=ae.length;if(H<=F)return String.fromCharCode.apply(String,ae);let Y="",fe=0;for(;fe<H;)Y+=String.fromCharCode.apply(String,ae.slice(fe,fe+=F));return Y}function Z(ae,H,Y){let fe="";Y=Math.min(ae.length,Y);for(let Re=H;Re<Y;++Re)fe+=String.fromCharCode(ae[Re]&127);return fe}function V(ae,H,Y){let fe="";Y=Math.min(ae.length,Y);for(let Re=H;Re<Y;++Re)fe+=String.fromCharCode(ae[Re]);return fe}function ee(ae,H,Y){const fe=ae.length;(!H||H<0)&&(H=0),(!Y||Y<0||Y>fe)&&(Y=fe);let Re="";for(let be=H;be<Y;++be)Re+=qt[ae[be]];return Re}function te(ae,H,Y){const fe=ae.slice(H,Y);let Re="";for(let be=0;be<fe.length-1;be+=2)Re+=String.fromCharCode(fe[be]+fe[be+1]*256);return Re}d.prototype.slice=function(H,Y){const fe=this.length;H=~~H,Y=Y===void 0?fe:~~Y,H<0?(H+=fe,H<0&&(H=0)):H>fe&&(H=fe),Y<0?(Y+=fe,Y<0&&(Y=0)):Y>fe&&(Y=fe),Y<H&&(Y=H);const Re=this.subarray(H,Y);return Object.setPrototypeOf(Re,d.prototype),Re};function J(ae,H,Y){if(ae%1!==0||ae<0)throw new RangeError("offset is not uint");if(ae+H>Y)throw new RangeError("Trying to access beyond buffer length")}d.prototype.readUintLE=d.prototype.readUIntLE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=this[H],be=1,ze=0;for(;++ze<Y&&(be*=256);)Re+=this[H+ze]*be;return Re},d.prototype.readUintBE=d.prototype.readUIntBE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=this[H+--Y],be=1;for(;Y>0&&(be*=256);)Re+=this[H+--Y]*be;return Re},d.prototype.readUint8=d.prototype.readUInt8=function(H,Y){return H=H>>>0,Y||J(H,1,this.length),this[H]},d.prototype.readUint16LE=d.prototype.readUInt16LE=function(H,Y){return H=H>>>0,Y||J(H,2,this.length),this[H]|this[H+1]<<8},d.prototype.readUint16BE=d.prototype.readUInt16BE=function(H,Y){return H=H>>>0,Y||J(H,2,this.length),this[H]<<8|this[H+1]},d.prototype.readUint32LE=d.prototype.readUInt32LE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),(this[H]|this[H+1]<<8|this[H+2]<<16)+this[H+3]*16777216},d.prototype.readUint32BE=d.prototype.readUInt32BE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),this[H]*16777216+(this[H+1]<<16|this[H+2]<<8|this[H+3])},d.prototype.readBigUInt64LE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=Y+this[++H]*2**8+this[++H]*2**16+this[++H]*2**24,be=this[++H]+this[++H]*2**8+this[++H]*2**16+fe*2**24;return BigInt(Re)+(BigInt(be)<<BigInt(32))}),d.prototype.readBigUInt64BE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=Y*2**24+this[++H]*2**16+this[++H]*2**8+this[++H],be=this[++H]*2**24+this[++H]*2**16+this[++H]*2**8+fe;return(BigInt(Re)<<BigInt(32))+BigInt(be)}),d.prototype.readIntLE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=this[H],be=1,ze=0;for(;++ze<Y&&(be*=256);)Re+=this[H+ze]*be;return be*=128,Re>=be&&(Re-=Math.pow(2,8*Y)),Re},d.prototype.readIntBE=function(H,Y,fe){H=H>>>0,Y=Y>>>0,fe||J(H,Y,this.length);let Re=Y,be=1,ze=this[H+--Re];for(;Re>0&&(be*=256);)ze+=this[H+--Re]*be;return be*=128,ze>=be&&(ze-=Math.pow(2,8*Y)),ze},d.prototype.readInt8=function(H,Y){return H=H>>>0,Y||J(H,1,this.length),this[H]&128?(255-this[H]+1)*-1:this[H]},d.prototype.readInt16LE=function(H,Y){H=H>>>0,Y||J(H,2,this.length);const fe=this[H]|this[H+1]<<8;return fe&32768?fe|4294901760:fe},d.prototype.readInt16BE=function(H,Y){H=H>>>0,Y||J(H,2,this.length);const fe=this[H+1]|this[H]<<8;return fe&32768?fe|4294901760:fe},d.prototype.readInt32LE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),this[H]|this[H+1]<<8|this[H+2]<<16|this[H+3]<<24},d.prototype.readInt32BE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),this[H]<<24|this[H+1]<<16|this[H+2]<<8|this[H+3]},d.prototype.readBigInt64LE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=this[H+4]+this[H+5]*2**8+this[H+6]*2**16+(fe<<24);return(BigInt(Re)<<BigInt(32))+BigInt(Y+this[++H]*2**8+this[++H]*2**16+this[++H]*2**24)}),d.prototype.readBigInt64BE=wt(function(H){H=H>>>0,pe(H,"offset");const Y=this[H],fe=this[H+7];(Y===void 0||fe===void 0)&&ke(H,this.length-8);const Re=(Y<<24)+this[++H]*2**16+this[++H]*2**8+this[++H];return(BigInt(Re)<<BigInt(32))+BigInt(this[++H]*2**24+this[++H]*2**16+this[++H]*2**8+fe)}),d.prototype.readFloatLE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),n.read(this,H,!0,23,4)},d.prototype.readFloatBE=function(H,Y){return H=H>>>0,Y||J(H,4,this.length),n.read(this,H,!1,23,4)},d.prototype.readDoubleLE=function(H,Y){return H=H>>>0,Y||J(H,8,this.length),n.read(this,H,!0,52,8)},d.prototype.readDoubleBE=function(H,Y){return H=H>>>0,Y||J(H,8,this.length),n.read(this,H,!1,52,8)};function ue(ae,H,Y,fe,Re,be){if(!d.isBuffer(ae))throw new TypeError('"buffer" argument must be a Buffer instance');if(H>Re||H<be)throw new RangeError('"value" argument is out of bounds');if(Y+fe>ae.length)throw new RangeError("Index out of range")}d.prototype.writeUintLE=d.prototype.writeUIntLE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,fe=fe>>>0,!Re){const nt=Math.pow(2,8*fe)-1;ue(this,H,Y,fe,nt,0)}let be=1,ze=0;for(this[Y]=H&255;++ze<fe&&(be*=256);)this[Y+ze]=H/be&255;return Y+fe},d.prototype.writeUintBE=d.prototype.writeUIntBE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,fe=fe>>>0,!Re){const nt=Math.pow(2,8*fe)-1;ue(this,H,Y,fe,nt,0)}let be=fe-1,ze=1;for(this[Y+be]=H&255;--be>=0&&(ze*=256);)this[Y+be]=H/ze&255;return Y+fe},d.prototype.writeUint8=d.prototype.writeUInt8=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,1,255,0),this[Y]=H&255,Y+1},d.prototype.writeUint16LE=d.prototype.writeUInt16LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,65535,0),this[Y]=H&255,this[Y+1]=H>>>8,Y+2},d.prototype.writeUint16BE=d.prototype.writeUInt16BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,65535,0),this[Y]=H>>>8,this[Y+1]=H&255,Y+2},d.prototype.writeUint32LE=d.prototype.writeUInt32LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,4294967295,0),this[Y+3]=H>>>24,this[Y+2]=H>>>16,this[Y+1]=H>>>8,this[Y]=H&255,Y+4},d.prototype.writeUint32BE=d.prototype.writeUInt32BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,4294967295,0),this[Y]=H>>>24,this[Y+1]=H>>>16,this[Y+2]=H>>>8,this[Y+3]=H&255,Y+4};function ce(ae,H,Y,fe,Re){re(H,fe,Re,ae,Y,7);let be=Number(H&BigInt(4294967295));ae[Y++]=be,be=be>>8,ae[Y++]=be,be=be>>8,ae[Y++]=be,be=be>>8,ae[Y++]=be;let ze=Number(H>>BigInt(32)&BigInt(4294967295));return ae[Y++]=ze,ze=ze>>8,ae[Y++]=ze,ze=ze>>8,ae[Y++]=ze,ze=ze>>8,ae[Y++]=ze,Y}function me(ae,H,Y,fe,Re){re(H,fe,Re,ae,Y,7);let be=Number(H&BigInt(4294967295));ae[Y+7]=be,be=be>>8,ae[Y+6]=be,be=be>>8,ae[Y+5]=be,be=be>>8,ae[Y+4]=be;let ze=Number(H>>BigInt(32)&BigInt(4294967295));return ae[Y+3]=ze,ze=ze>>8,ae[Y+2]=ze,ze=ze>>8,ae[Y+1]=ze,ze=ze>>8,ae[Y]=ze,Y+8}d.prototype.writeBigUInt64LE=wt(function(H,Y=0){return ce(this,H,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),d.prototype.writeBigUInt64BE=wt(function(H,Y=0){return me(this,H,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),d.prototype.writeIntLE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,!Re){const Mt=Math.pow(2,8*fe-1);ue(this,H,Y,fe,Mt-1,-Mt)}let be=0,ze=1,nt=0;for(this[Y]=H&255;++be<fe&&(ze*=256);)H<0&&nt===0&&this[Y+be-1]!==0&&(nt=1),this[Y+be]=(H/ze>>0)-nt&255;return Y+fe},d.prototype.writeIntBE=function(H,Y,fe,Re){if(H=+H,Y=Y>>>0,!Re){const Mt=Math.pow(2,8*fe-1);ue(this,H,Y,fe,Mt-1,-Mt)}let be=fe-1,ze=1,nt=0;for(this[Y+be]=H&255;--be>=0&&(ze*=256);)H<0&&nt===0&&this[Y+be+1]!==0&&(nt=1),this[Y+be]=(H/ze>>0)-nt&255;return Y+fe},d.prototype.writeInt8=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,1,127,-128),H<0&&(H=255+H+1),this[Y]=H&255,Y+1},d.prototype.writeInt16LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,32767,-32768),this[Y]=H&255,this[Y+1]=H>>>8,Y+2},d.prototype.writeInt16BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,2,32767,-32768),this[Y]=H>>>8,this[Y+1]=H&255,Y+2},d.prototype.writeInt32LE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,2147483647,-2147483648),this[Y]=H&255,this[Y+1]=H>>>8,this[Y+2]=H>>>16,this[Y+3]=H>>>24,Y+4},d.prototype.writeInt32BE=function(H,Y,fe){return H=+H,Y=Y>>>0,fe||ue(this,H,Y,4,2147483647,-2147483648),H<0&&(H=4294967295+H+1),this[Y]=H>>>24,this[Y+1]=H>>>16,this[Y+2]=H>>>8,this[Y+3]=H&255,Y+4},d.prototype.writeBigInt64LE=wt(function(H,Y=0){return ce(this,H,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),d.prototype.writeBigInt64BE=wt(function(H,Y=0){return me(this,H,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function de(ae,H,Y,fe,Re,be){if(Y+fe>ae.length)throw new RangeError("Index out of range");if(Y<0)throw new RangeError("Index out of range")}function Ae(ae,H,Y,fe,Re){return H=+H,Y=Y>>>0,Re||de(ae,H,Y,4),n.write(ae,H,Y,fe,23,4),Y+4}d.prototype.writeFloatLE=function(H,Y,fe){return Ae(this,H,Y,!0,fe)},d.prototype.writeFloatBE=function(H,Y,fe){return Ae(this,H,Y,!1,fe)};function ye(ae,H,Y,fe,Re){return H=+H,Y=Y>>>0,Re||de(ae,H,Y,8),n.write(ae,H,Y,fe,52,8),Y+8}d.prototype.writeDoubleLE=function(H,Y,fe){return ye(this,H,Y,!0,fe)},d.prototype.writeDoubleBE=function(H,Y,fe){return ye(this,H,Y,!1,fe)},d.prototype.copy=function(H,Y,fe,Re){if(!d.isBuffer(H))throw new TypeError("argument should be a Buffer");if(fe||(fe=0),!Re&&Re!==0&&(Re=this.length),Y>=H.length&&(Y=H.length),Y||(Y=0),Re>0&&Re<fe&&(Re=fe),Re===fe||H.length===0||this.length===0)return 0;if(Y<0)throw new RangeError("targetStart out of bounds");if(fe<0||fe>=this.length)throw new RangeError("Index out of range");if(Re<0)throw new RangeError("sourceEnd out of bounds");Re>this.length&&(Re=this.length),H.length-Y<Re-fe&&(Re=H.length-Y+fe);const be=Re-fe;return this===H&&typeof s.prototype.copyWithin=="function"?this.copyWithin(Y,fe,Re):s.prototype.set.call(H,this.subarray(fe,Re),Y),be},d.prototype.fill=function(H,Y,fe,Re){if(typeof H=="string"){if(typeof Y=="string"?(Re=Y,Y=0,fe=this.length):typeof fe=="string"&&(Re=fe,fe=this.length),Re!==void 0&&typeof Re!="string")throw new TypeError("encoding must be a string");if(typeof Re=="string"&&!d.isEncoding(Re))throw new TypeError("Unknown encoding: "+Re);if(H.length===1){const ze=H.charCodeAt(0);(Re==="utf8"&&ze<128||Re==="latin1")&&(H=ze)}}else typeof H=="number"?H=H&255:typeof H=="boolean"&&(H=Number(H));if(Y<0||this.length<Y||this.length<fe)throw new RangeError("Out of range index");if(fe<=Y)return this;Y=Y>>>0,fe=fe===void 0?this.length:fe>>>0,H||(H=0);let be;if(typeof H=="number")for(be=Y;be<fe;++be)this[be]=H;else{const ze=d.isBuffer(H)?H:d.from(H,Re),nt=ze.length;if(nt===0)throw new TypeError('The value "'+H+'" is invalid for argument "value"');for(be=0;be<fe-Y;++be)this[be+Y]=ze[be%nt]}return this};const Ne={};function je(ae,H,Y){Ne[ae]=class extends Y{constructor(){super(),Object.defineProperty(this,"message",{value:H.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${ae}]`,this.stack,delete this.name}get code(){return ae}set code(Re){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:Re,writable:!0})}toString(){return`${this.name} [${ae}]: ${this.message}`}}}je("ERR_BUFFER_OUT_OF_BOUNDS",function(ae){return ae?`${ae} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),je("ERR_INVALID_ARG_TYPE",function(ae,H){return`The "${ae}" argument must be of type number. Received type ${typeof H}`},TypeError),je("ERR_OUT_OF_RANGE",function(ae,H,Y){let fe=`The value of "${ae}" is out of range.`,Re=Y;return Number.isInteger(Y)&&Math.abs(Y)>2**32?Re=ie(String(Y)):typeof Y=="bigint"&&(Re=String(Y),(Y>BigInt(2)**BigInt(32)||Y<-(BigInt(2)**BigInt(32)))&&(Re=ie(Re)),Re+="n"),fe+=` It must be ${H}. Received ${Re}`,fe},RangeError);function ie(ae){let H="",Y=ae.length;const fe=ae[0]==="-"?1:0;for(;Y>=fe+4;Y-=3)H=`_${ae.slice(Y-3,Y)}${H}`;return`${ae.slice(0,Y)}${H}`}function we(ae,H,Y){pe(H,"offset"),(ae[H]===void 0||ae[H+Y]===void 0)&&ke(H,ae.length-(Y+1))}function re(ae,H,Y,fe,Re,be){if(ae>Y||ae<H){const ze=typeof H=="bigint"?"n":"";let nt;throw H===0||H===BigInt(0)?nt=`>= 0${ze} and < 2${ze} ** ${(be+1)*8}${ze}`:nt=`>= -(2${ze} ** ${(be+1)*8-1}${ze}) and < 2 ** ${(be+1)*8-1}${ze}`,new Ne.ERR_OUT_OF_RANGE("value",nt,ae)}we(fe,Re,be)}function pe(ae,H){if(typeof ae!="number")throw new Ne.ERR_INVALID_ARG_TYPE(H,"number",ae)}function ke(ae,H,Y){throw Math.floor(ae)!==ae?(pe(ae,Y),new Ne.ERR_OUT_OF_RANGE("offset","an integer",ae)):H<0?new Ne.ERR_BUFFER_OUT_OF_BOUNDS:new Ne.ERR_OUT_OF_RANGE("offset",`>= 0 and <= ${H}`,ae)}const Se=/[^+/0-9A-Za-z-_]/g;function se(ae){if(ae=ae.split("=")[0],ae=ae.trim().replace(Se,""),ae.length<2)return"";for(;ae.length%4!==0;)ae=ae+"=";return ae}function L(ae,H){H=H||1/0;let Y;const fe=ae.length;let Re=null;const be=[];for(let ze=0;ze<fe;++ze){if(Y=ae.charCodeAt(ze),Y>55295&&Y<57344){if(!Re){if(Y>56319){(H-=3)>-1&&be.push(239,191,189);continue}else if(ze+1===fe){(H-=3)>-1&&be.push(239,191,189);continue}Re=Y;continue}if(Y<56320){(H-=3)>-1&&be.push(239,191,189),Re=Y;continue}Y=(Re-55296<<10|Y-56320)+65536}else Re&&(H-=3)>-1&&be.push(239,191,189);if(Re=null,Y<128){if((H-=1)<0)break;be.push(Y)}else if(Y<2048){if((H-=2)<0)break;be.push(Y>>6|192,Y&63|128)}else if(Y<65536){if((H-=3)<0)break;be.push(Y>>12|224,Y>>6&63|128,Y&63|128)}else if(Y<1114112){if((H-=4)<0)break;be.push(Y>>18|240,Y>>12&63|128,Y>>6&63|128,Y&63|128)}else throw new Error("Invalid code point")}return be}function U(ae){const H=[];for(let Y=0;Y<ae.length;++Y)H.push(ae.charCodeAt(Y)&255);return H}function ne(ae,H){let Y,fe,Re;const be=[];for(let ze=0;ze<ae.length&&!((H-=2)<0);++ze)Y=ae.charCodeAt(ze),fe=Y>>8,Re=Y%256,be.push(Re),be.push(fe);return be}function ve(ae){return t.toByteArray(se(ae))}function qe(ae,H,Y,fe){let Re;for(Re=0;Re<fe&&!(Re+Y>=H.length||Re>=ae.length);++Re)H[Re+Y]=ae[Re];return Re}function Pe(ae,H){return ae instanceof H||ae!=null&&ae.constructor!=null&&ae.constructor.name!=null&&ae.constructor.name===H.name}function rt(ae){return ae!==ae}const qt=function(){const ae="0123456789abcdef",H=new Array(256);for(let Y=0;Y<16;++Y){const fe=Y*16;for(let Re=0;Re<16;++Re)H[fe+Re]=ae[Y]+ae[Re]}return H}();function wt(ae){return typeof BigInt>"u"?Bt:ae}function Bt(){throw new Error("BigInt not supported")}})(x1e);const rh=x1e.Buffer;function GEe(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var _1e={exports:{}},Qr=_1e.exports={},Ka,Ya;function WE(){throw new Error("setTimeout has not been defined")}function NE(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?Ka=setTimeout:Ka=WE}catch{Ka=WE}try{typeof clearTimeout=="function"?Ya=clearTimeout:Ya=NE}catch{Ya=NE}})();function k1e(e){if(Ka===setTimeout)return setTimeout(e,0);if((Ka===WE||!Ka)&&setTimeout)return Ka=setTimeout,setTimeout(e,0);try{return Ka(e,0)}catch{try{return Ka.call(null,e,0)}catch{return Ka.call(this,e,0)}}}function KEe(e){if(Ya===clearTimeout)return clearTimeout(e);if((Ya===NE||!Ya)&&clearTimeout)return Ya=clearTimeout,clearTimeout(e);try{return Ya(e)}catch{try{return Ya.call(null,e)}catch{return Ya.call(this,e)}}}var fl=[],C2=!1,Xp,jv=-1;function YEe(){!C2||!Xp||(C2=!1,Xp.length?fl=Xp.concat(fl):jv=-1,fl.length&&S1e())}function S1e(){if(!C2){var e=k1e(YEe);C2=!0;for(var t=fl.length;t;){for(Xp=fl,fl=[];++jv<t;)Xp&&Xp[jv].run();jv=-1,t=fl.length}Xp=null,C2=!1,KEe(e)}}Qr.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];fl.push(new C1e(e,t)),fl.length===1&&!C2&&k1e(S1e)};function C1e(e,t){this.fun=e,this.array=t}C1e.prototype.run=function(){this.fun.apply(null,this.array)};Qr.title="browser";Qr.browser=!0;Qr.env={};Qr.argv=[];Qr.version="";Qr.versions={};function Gl(){}Qr.on=Gl;Qr.addListener=Gl;Qr.once=Gl;Qr.off=Gl;Qr.removeListener=Gl;Qr.removeAllListeners=Gl;Qr.emit=Gl;Qr.prependListener=Gl;Qr.prependOnceListener=Gl;Qr.listeners=function(e){return[]};Qr.binding=function(e){throw new Error("process.binding is not supported")};Qr.cwd=function(){return"/"};Qr.chdir=function(e){throw new Error("process.chdir is not supported")};Qr.umask=function(){return 0};var ZEe=_1e.exports;const Oi=GEe(ZEe),AU=e=>e===void 0?null:e;class QEe{constructor(){this.map=new Map}setItem(t,n){this.map.set(t,n)}getItem(t){return this.map.get(t)}}let q1e=new QEe,bB=!0;try{typeof localStorage<"u"&&localStorage&&(q1e=localStorage,bB=!1)}catch{}const R1e=q1e,JEe=e=>bB||addEventListener("storage",e),e8e=e=>bB||removeEventListener("storage",e),t8e=Object.assign,T1e=Object.keys,n8e=(e,t)=>{for(const n in e)t(e[n],n)},vU=e=>T1e(e).length,xU=e=>T1e(e).length,o8e=e=>{for(const t in e)return!1;return!0},r8e=(e,t)=>{for(const n in e)if(!t(e[n],n))return!1;return!0},E1e=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s8e=(e,t)=>e===t||xU(e)===xU(t)&&r8e(e,(n,o)=>(n!==void 0||E1e(t,o))&&t[o]===n),i8e=Object.freeze,W1e=e=>{for(const t in e){const n=e[t];(typeof n=="object"||typeof n=="function")&&W1e(e[t])}return i8e(e)},hB=(e,t,n=0)=>{try{for(;n<e.length;n++)e[n](...t)}finally{n<e.length&&hB(e,t,n+1)}},a8e=()=>{},c8e=e=>e,l8e=(e,t)=>e===t,yM=(e,t)=>{if(e==null||t==null)return l8e(e,t);if(e.constructor!==t.constructor)return!1;if(e===t)return!0;switch(e.constructor){case ArrayBuffer:e=new Uint8Array(e),t=new Uint8Array(t);case Uint8Array:{if(e.byteLength!==t.byteLength)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;break}case Set:{if(e.size!==t.size)return!1;for(const n of e)if(!t.has(n))return!1;break}case Map:{if(e.size!==t.size)return!1;for(const n of e.keys())if(!t.has(n)||!yM(e.get(n),t.get(n)))return!1;break}case Object:if(vU(e)!==vU(t))return!1;for(const n in e)if(!E1e(e,n)||!yM(e[n],t[n]))return!1;break;case Array:if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!yM(e[n],t[n]))return!1;break;default:return!1}return!0},u8e=(e,t)=>t.includes(e);var N1e={};const sh=typeof Oi<"u"&&Oi.release&&/node|io\.js/.test(Oi.release.name)&&Object.prototype.toString.call(typeof Oi<"u"?Oi:0)==="[object process]",B1e=typeof window<"u"&&typeof document<"u"&&!sh;let Pa;const d8e=()=>{if(Pa===void 0)if(sh){Pa=fs();const e=Oi.argv;let t=null;for(let n=0;n<e.length;n++){const o=e[n];o[0]==="-"?(t!==null&&Pa.set(t,""),t=o):t!==null&&(Pa.set(t,o),t=null)}t!==null&&Pa.set(t,"")}else typeof location=="object"?(Pa=fs(),(location.search||"?").slice(1).split("&").forEach(e=>{if(e.length!==0){const[t,n]=e.split("=");Pa.set(`--${mU(t,"-")}`,n),Pa.set(`-${mU(t,"-")}`,n)}})):Pa=fs();return Pa},BE=e=>d8e().has(e),XM=e=>AU(sh?N1e[e.toUpperCase().replaceAll("-","_")]:R1e.getItem(e)),L1e=e=>BE("--"+e)||XM(e)!==null;L1e("production");const p8e=sh&&u8e(N1e.FORCE_COLOR,["true","1","2"]),f8e=p8e||!BE("--no-colors")&&!L1e("no-color")&&(!sh||Oi.stdout.isTTY)&&(!sh||BE("--color")||XM("COLORTERM")!==null||(XM("TERM")||"").includes("color")),P1e=e=>new Uint8Array(e),b8e=(e,t,n)=>new Uint8Array(e,t,n),h8e=e=>new Uint8Array(e),m8e=e=>{let t="";for(let n=0;n<e.byteLength;n++)t+=uEe(e[n]);return btoa(t)},g8e=e=>rh.from(e.buffer,e.byteOffset,e.byteLength).toString("base64"),M8e=e=>{const t=atob(e),n=P1e(t.length);for(let o=0;o<t.length;o++)n[o]=t.charCodeAt(o);return n},z8e=e=>{const t=rh.from(e,"base64");return b8e(t.buffer,t.byteOffset,t.byteLength)},j1e=B1e?m8e:g8e,mB=B1e?M8e:z8e,O8e=e=>{const t=P1e(e.byteLength);return t.set(e),t};class y8e{constructor(t,n){this.left=t,this.right=n}}const Yc=(e,t)=>new y8e(e,t);typeof DOMParser<"u"&&new DOMParser;const A8e=e=>nEe(e,(t,n)=>`${n}:${t};`).join(""),v8e=JSON.stringify,Kl=Symbol,ki=Kl(),bf=Kl(),I1e=Kl(),gB=Kl(),D1e=Kl(),F1e=Kl(),$1e=Kl(),$5=Kl(),V5=Kl(),x8e=e=>{e.length===1&&e[0]?.constructor===Function&&(e=e[0]());const t=[],n=[];let o=0;for(;o<e.length;o++){const r=e[o];if(r===void 0)break;if(r.constructor===String||r.constructor===Number)t.push(r);else if(r.constructor===Object)break}for(o>0&&n.push(t.join(""));o<e.length;o++){const r=e[o];r instanceof Symbol||n.push(r)}return n},wU=[D1e,$1e,$5,I1e];let PS=0,_U=Tl();const w8e=(e,t)=>{const n=wU[PS],o=XM("log"),r=o!==null&&(o==="*"||o==="true"||new RegExp(o,"gi").test(t));return PS=(PS+1)%wU.length,t+=": ",r?(...s)=>{s.length===1&&s[0]?.constructor===Function&&(s=s[0]());const i=Tl(),c=i-_U;_U=i,e(n,t,V5,...s.map(l=>{switch(l!=null&&l.constructor===Uint8Array&&(l=Array.from(l)),typeof l){case"string":case"symbol":return l;default:return v8e(l)}}),n," +"+c+"ms")}:a8e},_8e={[ki]:Yc("font-weight","bold"),[bf]:Yc("font-weight","normal"),[I1e]:Yc("color","blue"),[D1e]:Yc("color","green"),[gB]:Yc("color","grey"),[F1e]:Yc("color","red"),[$1e]:Yc("color","purple"),[$5]:Yc("color","orange"),[V5]:Yc("color","black")},k8e=e=>{e.length===1&&e[0]?.constructor===Function&&(e=e[0]());const t=[],n=[],o=fs();let r=[],s=0;for(;s<e.length;s++){const i=e[s],c=_8e[i];if(c!==void 0)o.set(c.left,c.right);else{if(i===void 0)break;if(i.constructor===String||i.constructor===Number){const l=A8e(o);s>0||l.length>0?(t.push("%c"+i),n.push(l)):t.push(i)}else break}}for(s>0&&(r=n,r.unshift(t.join("")));s<e.length;s++){const i=e[s];i instanceof Symbol||r.push(i)}return r},V1e=f8e?k8e:x8e,H1e=(...e)=>{console.log(...V1e(e)),U1e.forEach(t=>t.print(e))},S8e=(...e)=>{console.warn(...V1e(e)),e.unshift($5),U1e.forEach(t=>t.print(e))},U1e=zd(),C8e=e=>w8e(H1e,e),X1e=e=>({[Symbol.iterator](){return this},next:e}),q8e=(e,t)=>X1e(()=>{let n;do n=e.next();while(!n.done&&!t(n.value));return n}),jS=(e,t)=>X1e(()=>{const{done:n,value:o}=e.next();return{done:n,value:n?void 0:t(o)}});class MB{constructor(t,n){this.clock=t,this.len=n}}class f3{constructor(){this.clients=new Map}}const G1e=(e,t,n)=>t.clients.forEach((o,r)=>{const s=e.doc.store.clients.get(r);for(let i=0;i<o.length;i++){const c=o[i];cse(e,s,c.clock,c.len,n)}}),R8e=(e,t)=>{let n=0,o=e.length-1;for(;n<=o;){const r=Oc((n+o)/2),s=e[r],i=s.clock;if(i<=t){if(t<i+s.len)return r;n=r+1}else o=r-1}return null},K1e=(e,t)=>{const n=e.clients.get(t.client);return n!==void 0&&R8e(n,t.clock)!==null},zB=e=>{e.clients.forEach(t=>{t.sort((r,s)=>r.clock-s.clock);let n,o;for(n=1,o=1;n<t.length;n++){const r=t[o-1],s=t[n];r.clock+r.len>=s.clock?r.len=$f(r.len,s.clock+s.len-r.clock):(o<n&&(t[o]=s),o++)}t.length=o})},T8e=e=>{const t=new f3;for(let n=0;n<e.length;n++)e[n].clients.forEach((o,r)=>{if(!t.clients.has(r)){const s=o.slice();for(let i=n+1;i<e.length;i++)rEe(s,e[i].clients.get(r)||[]);t.clients.set(r,s)}});return zB(t),t},N4=(e,t,n,o)=>{w1(e.clients,t,()=>[]).push(new MB(n,o))},E8e=()=>new f3,W8e=e=>{const t=E8e();return e.clients.forEach((n,o)=>{const r=[];for(let s=0;s<n.length;s++){const i=n[s];if(i.deleted){const c=i.id.clock;let l=i.length;if(s+1<n.length)for(let u=n[s+1];s+1<n.length&&u.deleted;u=n[++s+1])l+=u.length;r.push(new MB(c,l))}}r.length>0&&t.clients.set(o,r)}),t},Fh=(e,t)=>{sn(e.restEncoder,t.clients.size),Rl(t.clients.entries()).sort((n,o)=>o[0]-n[0]).forEach(([n,o])=>{e.resetDsCurVal(),sn(e.restEncoder,n);const r=o.length;sn(e.restEncoder,r);for(let s=0;s<r;s++){const i=o[s];e.writeDsClock(i.clock),e.writeDsLen(i.len)}})},OB=e=>{const t=new f3,n=_n(e.restDecoder);for(let o=0;o<n;o++){e.resetDsCurVal();const r=_n(e.restDecoder),s=_n(e.restDecoder);if(s>0){const i=w1(t.clients,r,()=>[]);for(let c=0;c<s;c++)i.push(new MB(e.readDsClock(),e.readDsLen()))}}return t},kU=(e,t,n)=>{const o=new f3,r=_n(e.restDecoder);for(let s=0;s<r;s++){e.resetDsCurVal();const i=_n(e.restDecoder),c=_n(e.restDecoder),l=n.clients.get(i)||[],u=q0(n,i);for(let d=0;d<c;d++){const p=e.readDsClock(),f=p+e.readDsLen();if(p<u){u<f&&N4(o,i,u,f-u);let b=Ac(l,p),h=l[b];for(!h.deleted&&h.id.clock<p&&(l.splice(b+1,0,F4(t,h,p-h.id.clock)),b++);b<l.length&&(h=l[b++],h.id.clock<f);)h.deleted||(f<h.id.clock+h.length&&l.splice(b,0,F4(t,h,f-h.id.clock)),h.delete(t))}else N4(o,i,p,f-p)}}if(o.clients.size>0){const s=new hf;return sn(s.restEncoder,0),Fh(s,o),s.toUint8Array()}return null},Y1e=A1e;class $h extends iEe{constructor({guid:t=v1e(),collectionid:n=null,gc:o=!0,gcFilter:r=()=>!0,meta:s=null,autoLoad:i=!1,shouldLoad:c=!0}={}){super(),this.gc=o,this.gcFilter=r,this.clientID=Y1e(),this.guid=t,this.collectionid=n,this.share=new Map,this.store=new ise,this._transaction=null,this._transactionCleanups=[],this.subdocs=new Set,this._item=null,this.shouldLoad=c,this.autoLoad=i,this.meta=s,this.isLoaded=!1,this.isSynced=!1,this.isDestroyed=!1,this.whenLoaded=oh(u=>{this.on("load",()=>{this.isLoaded=!0,u(this)})});const l=()=>oh(u=>{const d=p=>{(p===void 0||p===!0)&&(this.off("sync",d),u())};this.on("sync",d)});this.on("sync",u=>{u===!1&&this.isSynced&&(this.whenSynced=l()),this.isSynced=u===void 0||u===!0,this.isSynced&&!this.isLoaded&&this.emit("load",[this])}),this.whenSynced=l()}load(){const t=this._item;t!==null&&!this.shouldLoad&&Ho(t.parent.doc,n=>{n.subdocsLoaded.add(this)},null,!0),this.shouldLoad=!0}getSubdocs(){return this.subdocs}getSubdocGuids(){return new Set(Rl(this.subdocs).map(t=>t.guid))}transact(t,n=null){return Ho(this,t,n)}get(t,n=Y0){const o=w1(this.share,t,()=>{const s=new n;return s._integrate(this,null),s}),r=o.constructor;if(n!==Y0&&r!==n)if(r===Y0){const s=new n;s._map=o._map,o._map.forEach(i=>{for(;i!==null;i=i.left)i.parent=s}),s._start=o._start;for(let i=s._start;i!==null;i=i.right)i.parent=s;return s._length=o._length,this.share.set(t,s),s._integrate(this,null),s}else throw new Error(`Type with the name ${t} has already been defined with a different constructor`);return o}getArray(t=""){return this.get(t,R2)}getText(t=""){return this.get(t,ch)}getMap(t=""){return this.get(t,ah)}getXmlElement(t=""){return this.get(t,lh)}getXmlFragment(t=""){return this.get(t,mf)}toJSON(){const t={};return this.share.forEach((n,o)=>{t[o]=n.toJSON()}),t}destroy(){this.isDestroyed=!0,Rl(this.subdocs).forEach(n=>n.destroy());const t=this._item;if(t!==null){this._item=null;const n=t.content;n.doc=new $h({guid:this.guid,...n.opts,shouldLoad:!1}),n.doc._item=t,Ho(t.parent.doc,o=>{const r=n.doc;t.deleted||o.subdocsAdded.add(r),o.subdocsRemoved.add(this)},null,!0)}this.emit("destroyed",[!0]),this.emit("destroy",[this]),super.destroy()}}class Z1e{constructor(t){this.restDecoder=t}resetDsCurVal(){}readDsClock(){return _n(this.restDecoder)}readDsLen(){return _n(this.restDecoder)}}class Q1e extends Z1e{readLeftID(){return to(_n(this.restDecoder),_n(this.restDecoder))}readRightID(){return to(_n(this.restDecoder),_n(this.restDecoder))}readClient(){return _n(this.restDecoder)}readInfo(){return ff(this.restDecoder)}readString(){return yl(this.restDecoder)}readParentInfo(){return _n(this.restDecoder)===1}readTypeRef(){return _n(this.restDecoder)}readLen(){return _n(this.restDecoder)}readAny(){return nh(this.restDecoder)}readBuf(){return O8e(w0(this.restDecoder))}readJSON(){return JSON.parse(yl(this.restDecoder))}readKey(){return yl(this.restDecoder)}}class N8e{constructor(t){this.dsCurrVal=0,this.restDecoder=t}resetDsCurVal(){this.dsCurrVal=0}readDsClock(){return this.dsCurrVal+=_n(this.restDecoder),this.dsCurrVal}readDsLen(){const t=_n(this.restDecoder)+1;return this.dsCurrVal+=t,t}}class ih extends N8e{constructor(t){super(t),this.keys=[],_n(t),this.keyClockDecoder=new BS(w0(t)),this.clientDecoder=new Pv(w0(t)),this.leftClockDecoder=new BS(w0(t)),this.rightClockDecoder=new BS(w0(t)),this.infoDecoder=new yU(w0(t),ff),this.stringDecoder=new NEe(w0(t)),this.parentInfoDecoder=new yU(w0(t),ff),this.typeRefDecoder=new Pv(w0(t)),this.lenDecoder=new Pv(w0(t))}readLeftID(){return new q2(this.clientDecoder.read(),this.leftClockDecoder.read())}readRightID(){return new q2(this.clientDecoder.read(),this.rightClockDecoder.read())}readClient(){return this.clientDecoder.read()}readInfo(){return this.infoDecoder.read()}readString(){return this.stringDecoder.read()}readParentInfo(){return this.parentInfoDecoder.read()===1}readTypeRef(){return this.typeRefDecoder.read()}readLen(){return this.lenDecoder.read()}readAny(){return nh(this.restDecoder)}readBuf(){return w0(this.restDecoder)}readJSON(){return nh(this.restDecoder)}readKey(){const t=this.keyClockDecoder.read();if(t<this.keys.length)return this.keys[t];{const n=this.stringDecoder.read();return this.keys.push(n),n}}}class J1e{constructor(){this.restEncoder=k0()}toUint8Array(){return Sr(this.restEncoder)}resetDsCurVal(){}writeDsClock(t){sn(this.restEncoder,t)}writeDsLen(t){sn(this.restEncoder,t)}}class b3 extends J1e{writeLeftID(t){sn(this.restEncoder,t.client),sn(this.restEncoder,t.clock)}writeRightID(t){sn(this.restEncoder,t.client),sn(this.restEncoder,t.clock)}writeClient(t){sn(this.restEncoder,t)}writeInfo(t){UM(this.restEncoder,t)}writeString(t){uc(this.restEncoder,t)}writeParentInfo(t){sn(this.restEncoder,t?1:0)}writeTypeRef(t){sn(this.restEncoder,t)}writeLen(t){sn(this.restEncoder,t)}writeAny(t){th(this.restEncoder,t)}writeBuf(t){jr(this.restEncoder,t)}writeJSON(t){uc(this.restEncoder,JSON.stringify(t))}writeKey(t){uc(this.restEncoder,t)}}class ese{constructor(){this.restEncoder=k0(),this.dsCurrVal=0}toUint8Array(){return Sr(this.restEncoder)}resetDsCurVal(){this.dsCurrVal=0}writeDsClock(t){const n=t-this.dsCurrVal;this.dsCurrVal=t,sn(this.restEncoder,n)}writeDsLen(t){t===0&&yc(),sn(this.restEncoder,t-1),this.dsCurrVal+=t}}class hf extends ese{constructor(){super(),this.keyMap=new Map,this.keyClock=0,this.keyClockEncoder=new NS,this.clientEncoder=new Lv,this.leftClockEncoder=new NS,this.rightClockEncoder=new NS,this.infoEncoder=new MU(UM),this.stringEncoder=new _Ee,this.parentInfoEncoder=new MU(UM),this.typeRefEncoder=new Lv,this.lenEncoder=new Lv}toUint8Array(){const t=k0();return sn(t,0),jr(t,this.keyClockEncoder.toUint8Array()),jr(t,this.clientEncoder.toUint8Array()),jr(t,this.leftClockEncoder.toUint8Array()),jr(t,this.rightClockEncoder.toUint8Array()),jr(t,Sr(this.infoEncoder)),jr(t,this.stringEncoder.toUint8Array()),jr(t,Sr(this.parentInfoEncoder)),jr(t,this.typeRefEncoder.toUint8Array()),jr(t,this.lenEncoder.toUint8Array()),I5(t,Sr(this.restEncoder)),Sr(t)}writeLeftID(t){this.clientEncoder.write(t.client),this.leftClockEncoder.write(t.clock)}writeRightID(t){this.clientEncoder.write(t.client),this.rightClockEncoder.write(t.clock)}writeClient(t){this.clientEncoder.write(t)}writeInfo(t){this.infoEncoder.write(t)}writeString(t){this.stringEncoder.write(t)}writeParentInfo(t){this.parentInfoEncoder.write(t?1:0)}writeTypeRef(t){this.typeRefEncoder.write(t)}writeLen(t){this.lenEncoder.write(t)}writeAny(t){th(this.restEncoder,t)}writeBuf(t){jr(this.restEncoder,t)}writeJSON(t){th(this.restEncoder,t)}writeKey(t){const n=this.keyMap.get(t);n===void 0?(this.keyClockEncoder.write(this.keyClock++),this.stringEncoder.write(t)):this.keyClockEncoder.write(n)}}const B8e=(e,t,n,o)=>{o=$f(o,t[0].id.clock);const r=Ac(t,o);sn(e.restEncoder,t.length-r),e.writeClient(n),sn(e.restEncoder,o);const s=t[r];s.write(e,o-s.id.clock);for(let i=r+1;i<t.length;i++)t[i].write(e,0)},yB=(e,t,n)=>{const o=new Map;n.forEach((r,s)=>{q0(t,s)>r&&o.set(s,r)}),H5(t).forEach((r,s)=>{n.has(s)||o.set(s,0)}),sn(e.restEncoder,o.size),Rl(o.entries()).sort((r,s)=>s[0]-r[0]).forEach(([r,s])=>{B8e(e,t.clients.get(r),r,s)})},L8e=(e,t)=>{const n=fs(),o=_n(e.restDecoder);for(let r=0;r<o;r++){const s=_n(e.restDecoder),i=new Array(s),c=e.readClient();let l=_n(e.restDecoder);n.set(c,{i:0,refs:i});for(let u=0;u<s;u++){const d=e.readInfo();switch(j5&d){case 0:{const p=e.readLen();i[u]=new yi(to(c,l),p),l+=p;break}case 10:{const p=_n(e.restDecoder);i[u]=new Ai(to(c,l),p),l+=p;break}default:{const p=(d&(Ol|Ns))===0,f=new b1(to(c,l),null,(d&Ns)===Ns?e.readLeftID():null,null,(d&Ol)===Ol?e.readRightID():null,p?e.readParentInfo()?t.get(e.readString()):e.readLeftID():null,p&&(d&VM)===VM?e.readString():null,kse(e,d));i[u]=f,l+=f.length}}}}return n},P8e=(e,t,n)=>{const o=[];let r=Rl(n.keys()).sort((b,h)=>b-h);if(r.length===0)return null;const s=()=>{if(r.length===0)return null;let b=n.get(r[r.length-1]);for(;b.refs.length===b.i;)if(r.pop(),r.length>0)b=n.get(r[r.length-1]);else return null;return b};let i=s();if(i===null)return null;const c=new ise,l=new Map,u=(b,h)=>{const g=l.get(b);(g==null||g>h)&&l.set(b,h)};let d=i.refs[i.i++];const p=new Map,f=()=>{for(const b of o){const h=b.id.client,g=n.get(h);g?(g.i--,c.clients.set(h,g.refs.slice(g.i)),n.delete(h),g.i=0,g.refs=[]):c.clients.set(h,[b]),r=r.filter(z=>z!==h)}o.length=0};for(;;){if(d.constructor!==Ai){const h=w1(p,d.id.client,()=>q0(t,d.id.client))-d.id.clock;if(h<0)o.push(d),u(d.id.client,d.id.clock-1),f();else{const g=d.getMissing(e,t);if(g!==null){o.push(d);const z=n.get(g)||{refs:[],i:0};if(z.refs.length===z.i)u(g,q0(t,g)),f();else{d=z.refs[z.i++];continue}}else(h===0||h<d.length)&&(d.integrate(e,h),p.set(d.id.client,d.id.clock+d.length))}}if(o.length>0)d=o.pop();else if(i!==null&&i.i<i.refs.length)d=i.refs[i.i++];else{if(i=s(),i===null)break;d=i.refs[i.i++]}}if(c.clients.size>0){const b=new hf;return yB(b,c,new Map),sn(b.restEncoder,0),{missing:l,update:b.toUint8Array()}}return null},j8e=(e,t)=>yB(e,t.doc.store,t.beforeState),I8e=(e,t,n,o=new ih(e))=>Ho(t,r=>{r.local=!1;let s=!1;const i=r.doc,c=i.store,l=L8e(o,i),u=P8e(r,c,l),d=c.pendingStructs;if(d){for(const[f,b]of d.missing)if(b<q0(c,f)){s=!0;break}if(u){for(const[f,b]of u.missing){const h=d.missing.get(f);(h==null||h>b)&&d.missing.set(f,b)}d.update=B4([d.update,u.update])}}else c.pendingStructs=u;const p=kU(o,r,c);if(c.pendingDs){const f=new ih(Rc(c.pendingDs));_n(f.restDecoder);const b=kU(f,r,c);p&&b?c.pendingDs=B4([p,b]):c.pendingDs=p||b}else c.pendingDs=p;if(s){const f=c.pendingStructs.update;c.pendingStructs=null,tse(r.doc,f)}},n,!1),tse=(e,t,n,o=ih)=>{const r=Rc(t);I8e(r,e,n,new o(r))},nse=(e,t,n)=>tse(e,t,n,Q1e),D8e=(e,t,n=new Map)=>{yB(e,t.store,n),Fh(e,W8e(t.store))},F8e=(e,t=new Uint8Array([0]),n=new hf)=>{const o=ose(t);D8e(n,e,o);const r=[n.toUint8Array()];if(e.store.pendingDs&&r.push(e.store.pendingDs),e.store.pendingStructs&&r.push(oWe(e.store.pendingStructs.update,t)),r.length>1){if(n.constructor===b3)return tWe(r.map((s,i)=>i===0?s:sWe(s)));if(n.constructor===hf)return B4(r)}return r[0]},AB=(e,t)=>F8e(e,t,new b3),$8e=e=>{const t=new Map,n=_n(e.restDecoder);for(let o=0;o<n;o++){const r=_n(e.restDecoder),s=_n(e.restDecoder);t.set(r,s)}return t},ose=e=>$8e(new Z1e(Rc(e))),rse=(e,t)=>(sn(e.restEncoder,t.size),Rl(t.entries()).sort((n,o)=>o[0]-n[0]).forEach(([n,o])=>{sn(e.restEncoder,n),sn(e.restEncoder,o)}),e),V8e=(e,t)=>rse(e,H5(t.store)),H8e=(e,t=new ese)=>(e instanceof Map?rse(t,e):V8e(t,e),t.toUint8Array()),U8e=e=>H8e(e,new J1e);class X8e{constructor(){this.l=[]}}const SU=()=>new X8e,CU=(e,t)=>e.l.push(t),qU=(e,t)=>{const n=e.l,o=n.length;e.l=n.filter(r=>t!==r),o===e.l.length&&console.error("[yjs] Tried to remove event handler that doesn't exist.")},sse=(e,t,n)=>hB(e.l,[t,n]);class q2{constructor(t,n){this.client=t,this.clock=n}}const fA=(e,t)=>e===t||e!==null&&t!==null&&e.client===t.client&&e.clock===t.clock,to=(e,t)=>new q2(e,t),G8e=e=>{for(const[t,n]of e.doc.share.entries())if(n===e)return t;throw yc()},o2=(e,t)=>t===void 0?!e.deleted:t.sv.has(e.id.client)&&(t.sv.get(e.id.client)||0)>e.id.clock&&!K1e(t.ds,e.id),LE=(e,t)=>{const n=w1(e.meta,LE,zd),o=e.doc.store;n.has(t)||(t.sv.forEach((r,s)=>{r<q0(o,s)&&Od(e,to(s,r))}),G1e(e,t.ds,r=>{}),n.add(t))};class ise{constructor(){this.clients=new Map,this.pendingStructs=null,this.pendingDs=null}}const H5=e=>{const t=new Map;return e.clients.forEach((n,o)=>{const r=n[n.length-1];t.set(o,r.id.clock+r.length)}),t},q0=(e,t)=>{const n=e.clients.get(t);if(n===void 0)return 0;const o=n[n.length-1];return o.id.clock+o.length},ase=(e,t)=>{let n=e.clients.get(t.id.client);if(n===void 0)n=[],e.clients.set(t.id.client,n);else{const o=n[n.length-1];if(o.id.clock+o.length!==t.id.clock)throw yc()}n.push(t)},Ac=(e,t)=>{let n=0,o=e.length-1,r=e[o],s=r.id.clock;if(s===t)return o;let i=Oc(t/(s+r.length-1)*o);for(;n<=o;){if(r=e[i],s=r.id.clock,s<=t){if(t<s+r.length)return i;n=i+1}else o=i-1;i=Oc((n+o)/2)}throw yc()},K8e=(e,t)=>{const n=e.clients.get(t.client);return n[Ac(n,t.clock)]},IS=K8e,PE=(e,t,n)=>{const o=Ac(t,n),r=t[o];return r.id.clock<n&&r instanceof b1?(t.splice(o+1,0,F4(e,r,n-r.id.clock)),o+1):o},Od=(e,t)=>{const n=e.doc.store.clients.get(t.client);return n[PE(e,n,t.clock)]},RU=(e,t,n)=>{const o=t.clients.get(n.client),r=Ac(o,n.clock),s=o[r];return n.clock!==s.id.clock+s.length-1&&s.constructor!==yi&&o.splice(r+1,0,F4(e,s,n.clock-s.id.clock+1)),s},Y8e=(e,t,n)=>{const o=e.clients.get(t.id.client);o[Ac(o,t.id.clock)]=n},cse=(e,t,n,o,r)=>{if(o===0)return;const s=n+o;let i=PE(e,t,n),c;do c=t[i++],s<c.id.clock+c.length&&PE(e,t,s),r(c);while(i<t.length&&t[i].id.clock<s)};class Z8e{constructor(t,n,o){this.doc=t,this.deleteSet=new f3,this.beforeState=H5(t.store),this.afterState=new Map,this.changed=new Map,this.changedParentTypes=new Map,this._mergeStructs=[],this.origin=n,this.meta=new Map,this.local=o,this.subdocsAdded=new Set,this.subdocsRemoved=new Set,this.subdocsLoaded=new Set,this._needFormattingCleanup=!1}}const TU=(e,t)=>t.deleteSet.clients.size===0&&!oEe(t.afterState,(n,o)=>t.beforeState.get(o)!==n)?!1:(zB(t.deleteSet),j8e(e,t),Fh(e,t.deleteSet),!0),EU=(e,t,n)=>{const o=t._item;(o===null||o.id.clock<(e.beforeState.get(o.id.client)||0)&&!o.deleted)&&w1(e.changed,t,zd).add(n)},Iv=(e,t)=>{let n=e[t],o=e[t-1],r=t;for(;r>0;n=o,o=e[--r-1]){if(o.deleted===n.deleted&&o.constructor===n.constructor&&o.mergeWith(n)){n instanceof b1&&n.parentSub!==null&&n.parent._map.get(n.parentSub)===n&&n.parent._map.set(n.parentSub,o);continue}break}const s=t-r;return s&&e.splice(t+1-s,s),s},Q8e=(e,t,n)=>{for(const[o,r]of e.clients.entries()){const s=t.clients.get(o);for(let i=r.length-1;i>=0;i--){const c=r[i],l=c.clock+c.len;for(let u=Ac(s,c.clock),d=s[u];u<s.length&&d.id.clock<l;d=s[++u]){const p=s[u];if(c.clock+c.len<=p.id.clock)break;p instanceof b1&&p.deleted&&!p.keep&&n(p)&&p.gc(t,!1)}}}},J8e=(e,t)=>{e.clients.forEach((n,o)=>{const r=t.clients.get(o);for(let s=n.length-1;s>=0;s--){const i=n[s],c=aB(r.length-1,1+Ac(r,i.clock+i.len-1));for(let l=c,u=r[l];l>0&&u.id.clock>=i.clock;u=r[l])l-=1+Iv(r,l)}})},lse=(e,t)=>{if(t<e.length){const n=e[t],o=n.doc,r=o.store,s=n.deleteSet,i=n._mergeStructs;try{zB(s),n.afterState=H5(n.doc.store),o.emit("beforeObserverCalls",[n,o]);const c=[];n.changed.forEach((l,u)=>c.push(()=>{(u._item===null||!u._item.deleted)&&u._callObserver(n,l)})),c.push(()=>{n.changedParentTypes.forEach((l,u)=>{u._dEH.l.length>0&&(u._item===null||!u._item.deleted)&&(l=l.filter(d=>d.target._item===null||!d.target._item.deleted),l.forEach(d=>{d.currentTarget=u,d._path=null}),l.sort((d,p)=>d.path.length-p.path.length),sse(u._dEH,l,n))})}),c.push(()=>o.emit("afterTransaction",[n,o])),hB(c,[]),n._needFormattingCleanup&&zWe(n)}finally{o.gc&&Q8e(s,r,o.gcFilter),J8e(s,r),n.afterState.forEach((d,p)=>{const f=n.beforeState.get(p)||0;if(f!==d){const b=r.clients.get(p),h=$f(Ac(b,f),1);for(let g=b.length-1;g>=h;)g-=1+Iv(b,g)}});for(let d=i.length-1;d>=0;d--){const{client:p,clock:f}=i[d].id,b=r.clients.get(p),h=Ac(b,f);h+1<b.length&&Iv(b,h+1)>1||h>0&&Iv(b,h)}if(!n.local&&n.afterState.get(o.clientID)!==n.beforeState.get(o.clientID)&&(H1e($5,ki,"[yjs] ",bf,F1e,"Changed the client-id because another client seems to be using it."),o.clientID=Y1e()),o.emit("afterTransactionCleanup",[n,o]),o._observers.has("update")){const d=new b3;TU(d,n)&&o.emit("update",[d.toUint8Array(),n.origin,o,n])}if(o._observers.has("updateV2")){const d=new hf;TU(d,n)&&o.emit("updateV2",[d.toUint8Array(),n.origin,o,n])}const{subdocsAdded:c,subdocsLoaded:l,subdocsRemoved:u}=n;(c.size>0||u.size>0||l.size>0)&&(c.forEach(d=>{d.clientID=o.clientID,d.collectionid==null&&(d.collectionid=o.collectionid),o.subdocs.add(d)}),u.forEach(d=>o.subdocs.delete(d)),o.emit("subdocs",[{loaded:l,added:c,removed:u},o,n]),u.forEach(d=>d.destroy())),e.length<=t+1?(o._transactionCleanups=[],o.emit("afterAllTransactions",[o,e])):lse(e,t+1)}}},Ho=(e,t,n=null,o=!0)=>{const r=e._transactionCleanups;let s=!1,i=null;e._transaction===null&&(s=!0,e._transaction=new Z8e(e,n,o),r.push(e._transaction),r.length===1&&e.emit("beforeAllTransactions",[e]),e.emit("beforeTransaction",[e._transaction,e]));try{i=t(e._transaction)}finally{if(s){const c=e._transaction===r[0];e._transaction=null,c&&lse(r,0)}}return i};function*eWe(e){const t=_n(e.restDecoder);for(let n=0;n<t;n++){const o=_n(e.restDecoder),r=e.readClient();let s=_n(e.restDecoder);for(let i=0;i<o;i++){const c=e.readInfo();if(c===10){const l=_n(e.restDecoder);yield new Ai(to(r,s),l),s+=l}else if(j5&c){const l=(c&(Ol|Ns))===0,u=new b1(to(r,s),null,(c&Ns)===Ns?e.readLeftID():null,null,(c&Ol)===Ol?e.readRightID():null,l?e.readParentInfo()?e.readString():e.readLeftID():null,l&&(c&VM)===VM?e.readString():null,kse(e,c));yield u,s+=u.length}else{const l=e.readLen();yield new yi(to(r,s),l),s+=l}}}}class vB{constructor(t,n){this.gen=eWe(t),this.curr=null,this.done=!1,this.filterSkips=n,this.next()}next(){do this.curr=this.gen.next().value||null;while(this.filterSkips&&this.curr!==null&&this.curr.constructor===Ai);return this.curr}}class xB{constructor(t){this.currClient=0,this.startClock=0,this.written=0,this.encoder=t,this.clientStructs=[]}}const tWe=e=>B4(e,Q1e,b3),nWe=(e,t)=>{if(e.constructor===yi){const{client:n,clock:o}=e.id;return new yi(to(n,o+t),e.length-t)}else if(e.constructor===Ai){const{client:n,clock:o}=e.id;return new Ai(to(n,o+t),e.length-t)}else{const n=e,{client:o,clock:r}=n.id;return new b1(to(o,r+t),null,to(o,r+t-1),null,n.rightOrigin,n.parent,n.parentSub,n.content.splice(t))}},B4=(e,t=ih,n=hf)=>{if(e.length===1)return e[0];const o=e.map(d=>new t(Rc(d)));let r=o.map(d=>new vB(d,!0)),s=null;const i=new n,c=new xB(i);for(;r=r.filter(f=>f.curr!==null),r.sort((f,b)=>{if(f.curr.id.client===b.curr.id.client){const h=f.curr.id.clock-b.curr.id.clock;return h===0?f.curr.constructor===b.curr.constructor?0:f.curr.constructor===Ai?1:-1:h}else return b.curr.id.client-f.curr.id.client}),r.length!==0;){const d=r[0],p=d.curr.id.client;if(s!==null){let f=d.curr,b=!1;for(;f!==null&&f.id.clock+f.length<=s.struct.id.clock+s.struct.length&&f.id.client>=s.struct.id.client;)f=d.next(),b=!0;if(f===null||f.id.client!==p||b&&f.id.clock>s.struct.id.clock+s.struct.length)continue;if(p!==s.struct.id.client)Hu(c,s.struct,s.offset),s={struct:f,offset:0},d.next();else if(s.struct.id.clock+s.struct.length<f.id.clock)if(s.struct.constructor===Ai)s.struct.length=f.id.clock+f.length-s.struct.id.clock;else{Hu(c,s.struct,s.offset);const h=f.id.clock-s.struct.id.clock-s.struct.length;s={struct:new Ai(to(p,s.struct.id.clock+s.struct.length),h),offset:0}}else{const h=s.struct.id.clock+s.struct.length-f.id.clock;h>0&&(s.struct.constructor===Ai?s.struct.length-=h:f=nWe(f,h)),s.struct.mergeWith(f)||(Hu(c,s.struct,s.offset),s={struct:f,offset:0},d.next())}}else s={struct:d.curr,offset:0},d.next();for(let f=d.curr;f!==null&&f.id.client===p&&f.id.clock===s.struct.id.clock+s.struct.length&&f.constructor!==Ai;f=d.next())Hu(c,s.struct,s.offset),s={struct:f,offset:0}}s!==null&&(Hu(c,s.struct,s.offset),s=null),wB(c);const l=o.map(d=>OB(d)),u=T8e(l);return Fh(i,u),i.toUint8Array()},oWe=(e,t,n=ih,o=hf)=>{const r=ose(t),s=new o,i=new xB(s),c=new n(Rc(e)),l=new vB(c,!1);for(;l.curr;){const d=l.curr,p=d.id.client,f=r.get(p)||0;if(l.curr.constructor===Ai){l.next();continue}if(d.id.clock+d.length>f)for(Hu(i,d,$f(f-d.id.clock,0)),l.next();l.curr&&l.curr.id.client===p;)Hu(i,l.curr,0),l.next();else for(;l.curr&&l.curr.id.client===p&&l.curr.id.clock+l.curr.length<=f;)l.next()}wB(i);const u=OB(c);return Fh(s,u),s.toUint8Array()},use=e=>{e.written>0&&(e.clientStructs.push({written:e.written,restEncoder:Sr(e.encoder.restEncoder)}),e.encoder.restEncoder=k0(),e.written=0)},Hu=(e,t,n)=>{e.written>0&&e.currClient!==t.id.client&&use(e),e.written===0&&(e.currClient=t.id.client,e.encoder.writeClient(t.id.client),sn(e.encoder.restEncoder,t.id.clock+n)),t.write(e.encoder,n),e.written++},wB=e=>{use(e);const t=e.encoder.restEncoder;sn(t,e.clientStructs.length);for(let n=0;n<e.clientStructs.length;n++){const o=e.clientStructs[n];sn(t,o.written),I5(t,o.restEncoder)}},rWe=(e,t,n,o)=>{const r=new n(Rc(e)),s=new vB(r,!1),i=new o,c=new xB(i);for(let u=s.curr;u!==null;u=s.next())Hu(c,t(u),0);wB(c);const l=OB(r);return Fh(i,l),i.toUint8Array()},sWe=e=>rWe(e,c8e,ih,b3),WU="You must not compute changes after the event-handler fired.";class U5{constructor(t,n){this.target=t,this.currentTarget=t,this.transaction=n,this._changes=null,this._keys=null,this._delta=null,this._path=null}get path(){return this._path||(this._path=iWe(this.currentTarget,this.target))}deletes(t){return K1e(this.transaction.deleteSet,t.id)}get keys(){if(this._keys===null){if(this.transaction.doc._transactionCleanups.length===0)throw fa(WU);const t=new Map,n=this.target;this.transaction.changed.get(n).forEach(r=>{if(r!==null){const s=n._map.get(r);let i,c;if(this.adds(s)){let l=s.left;for(;l!==null&&this.adds(l);)l=l.left;if(this.deletes(s))if(l!==null&&this.deletes(l))i="delete",c=TS(l.content.getContent());else return;else l!==null&&this.deletes(l)?(i="update",c=TS(l.content.getContent())):(i="add",c=void 0)}else if(this.deletes(s))i="delete",c=TS(s.content.getContent());else return;t.set(r,{action:i,oldValue:c})}}),this._keys=t}return this._keys}get delta(){return this.changes.delta}adds(t){return t.id.clock>=(this.transaction.beforeState.get(t.id.client)||0)}get changes(){let t=this._changes;if(t===null){if(this.transaction.doc._transactionCleanups.length===0)throw fa(WU);const n=this.target,o=zd(),r=zd(),s=[];if(t={added:o,deleted:r,delta:s,keys:this.keys},this.transaction.changed.get(n).has(null)){let c=null;const l=()=>{c&&s.push(c)};for(let u=n._start;u!==null;u=u.right)u.deleted?this.deletes(u)&&!this.adds(u)&&((c===null||c.delete===void 0)&&(l(),c={delete:0}),c.delete+=u.length,r.add(u)):this.adds(u)?((c===null||c.insert===void 0)&&(l(),c={insert:[]}),c.insert=c.insert.concat(u.content.getContent()),o.add(u)):((c===null||c.retain===void 0)&&(l(),c={retain:0}),c.retain+=u.length);c!==null&&c.retain===void 0&&l()}this._changes=t}return t}}const iWe=(e,t)=>{const n=[];for(;t._item!==null&&t!==e;){if(t._item.parentSub!==null)n.unshift(t._item.parentSub);else{let o=0,r=t._item.parent._start;for(;r!==t._item&&r!==null;)!r.deleted&&r.countable&&(o+=r.length),r=r.right;n.unshift(o)}t=t._item.parent}return n},z1=()=>{S8e("Invalid access: Add Yjs type to a document before reading data.")},dse=80;let _B=0;class aWe{constructor(t,n){t.marker=!0,this.p=t,this.index=n,this.timestamp=_B++}}const cWe=e=>{e.timestamp=_B++},pse=(e,t,n)=>{e.p.marker=!1,e.p=t,t.marker=!0,e.index=n,e.timestamp=_B++},lWe=(e,t,n)=>{if(e.length>=dse){const o=e.reduce((r,s)=>r.timestamp<s.timestamp?r:s);return pse(o,t,n),o}else{const o=new aWe(t,n);return e.push(o),o}},X5=(e,t)=>{if(e._start===null||t===0||e._searchMarker===null)return null;const n=e._searchMarker.length===0?null:e._searchMarker.reduce((s,i)=>Bv(t-s.index)<Bv(t-i.index)?s:i);let o=e._start,r=0;for(n!==null&&(o=n.p,r=n.index,cWe(n));o.right!==null&&r<t;){if(!o.deleted&&o.countable){if(t<r+o.length)break;r+=o.length}o=o.right}for(;o.left!==null&&r>t;)o=o.left,!o.deleted&&o.countable&&(r-=o.length);for(;o.left!==null&&o.left.id.client===o.id.client&&o.left.id.clock+o.left.length===o.id.clock;)o=o.left,!o.deleted&&o.countable&&(r-=o.length);return n!==null&&Bv(n.index-r)<o.parent.length/dse?(pse(n,o,r),n):lWe(e._searchMarker,o,r)},GM=(e,t,n)=>{for(let o=e.length-1;o>=0;o--){const r=e[o];if(n>0){let s=r.p;for(s.marker=!1;s&&(s.deleted||!s.countable);)s=s.left,s&&!s.deleted&&s.countable&&(r.index-=s.length);if(s===null||s.marker===!0){e.splice(o,1);continue}r.p=s,s.marker=!0}(t<r.index||n>0&&t===r.index)&&(r.index=$f(t,r.index+n))}},G5=(e,t,n)=>{const o=e,r=t.changedParentTypes;for(;w1(r,e,()=>[]).push(n),e._item!==null;)e=e._item.parent;sse(o._eH,n,t)};class Y0{constructor(){this._item=null,this._map=new Map,this._start=null,this.doc=null,this._length=0,this._eH=SU(),this._dEH=SU(),this._searchMarker=null}get parent(){return this._item?this._item.parent:null}_integrate(t,n){this.doc=t,this._item=n}_copy(){throw dc()}clone(){throw dc()}_write(t){}get _first(){let t=this._start;for(;t!==null&&t.deleted;)t=t.right;return t}_callObserver(t,n){!t.local&&this._searchMarker&&(this._searchMarker.length=0)}observe(t){CU(this._eH,t)}observeDeep(t){CU(this._dEH,t)}unobserve(t){qU(this._eH,t)}unobserveDeep(t){qU(this._dEH,t)}toJSON(){}}const fse=(e,t,n)=>{e.doc??z1(),t<0&&(t=e._length+t),n<0&&(n=e._length+n);let o=n-t;const r=[];let s=e._start;for(;s!==null&&o>0;){if(s.countable&&!s.deleted){const i=s.content.getContent();if(i.length<=t)t-=i.length;else{for(let c=t;c<i.length&&o>0;c++)r.push(i[c]),o--;t=0}}s=s.right}return r},bse=e=>{e.doc??z1();const t=[];let n=e._start;for(;n!==null;){if(n.countable&&!n.deleted){const o=n.content.getContent();for(let r=0;r<o.length;r++)t.push(o[r])}n=n.right}return t},KM=(e,t)=>{let n=0,o=e._start;for(e.doc??z1();o!==null;){if(o.countable&&!o.deleted){const r=o.content.getContent();for(let s=0;s<r.length;s++)t(r[s],n++,e)}o=o.right}},hse=(e,t)=>{const n=[];return KM(e,(o,r)=>{n.push(t(o,r,e))}),n},uWe=e=>{let t=e._start,n=null,o=0;return{[Symbol.iterator](){return this},next:()=>{if(n===null){for(;t!==null&&t.deleted;)t=t.right;if(t===null)return{done:!0,value:void 0};n=t.content.getContent(),o=0,t=t.right}const r=n[o++];return n.length<=o&&(n=null),{done:!1,value:r}}}},mse=(e,t)=>{e.doc??z1();const n=X5(e,t);let o=e._start;for(n!==null&&(o=n.p,t-=n.index);o!==null;o=o.right)if(!o.deleted&&o.countable){if(t<o.length)return o.content.getContent()[t];t-=o.length}},L4=(e,t,n,o)=>{let r=n;const s=e.doc,i=s.clientID,c=s.store,l=n===null?t._start:n.right;let u=[];const d=()=>{u.length>0&&(r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new gf(u)),r.integrate(e,0),u=[])};o.forEach(p=>{if(p===null)u.push(p);else switch(p.constructor){case Number:case Object:case Boolean:case Array:case String:u.push(p);break;default:switch(d(),p.constructor){case Uint8Array:case ArrayBuffer:r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new h3(new Uint8Array(p))),r.integrate(e,0);break;case $h:r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new m3(p)),r.integrate(e,0);break;default:if(p instanceof Y0)r=new b1(to(i,q0(c,i)),r,r&&r.lastId,l,l&&l.id,t,null,new Yl(p)),r.integrate(e,0);else throw new Error("Unexpected content type in insert operation")}}}),d()},gse=()=>fa("Length exceeded!"),Mse=(e,t,n,o)=>{if(n>t._length)throw gse();if(n===0)return t._searchMarker&&GM(t._searchMarker,n,o.length),L4(e,t,null,o);const r=n,s=X5(t,n);let i=t._start;for(s!==null&&(i=s.p,n-=s.index,n===0&&(i=i.prev,n+=i&&i.countable&&!i.deleted?i.length:0));i!==null;i=i.right)if(!i.deleted&&i.countable){if(n<=i.length){n<i.length&&Od(e,to(i.id.client,i.id.clock+n));break}n-=i.length}return t._searchMarker&&GM(t._searchMarker,r,o.length),L4(e,t,i,o)},dWe=(e,t,n)=>{let r=(t._searchMarker||[]).reduce((s,i)=>i.index>s.index?i:s,{index:0,p:t._start}).p;if(r)for(;r.right;)r=r.right;return L4(e,t,r,n)},zse=(e,t,n,o)=>{if(o===0)return;const r=n,s=o,i=X5(t,n);let c=t._start;for(i!==null&&(c=i.p,n-=i.index);c!==null&&n>0;c=c.right)!c.deleted&&c.countable&&(n<c.length&&Od(e,to(c.id.client,c.id.clock+n)),n-=c.length);for(;o>0&&c!==null;)c.deleted||(o<c.length&&Od(e,to(c.id.client,c.id.clock+o)),c.delete(e),o-=c.length),c=c.right;if(o>0)throw gse();t._searchMarker&&GM(t._searchMarker,r,-s+o)},P4=(e,t,n)=>{const o=t._map.get(n);o!==void 0&&o.delete(e)},kB=(e,t,n,o)=>{const r=t._map.get(n)||null,s=e.doc,i=s.clientID;let c;if(o==null)c=new gf([o]);else switch(o.constructor){case Number:case Object:case Boolean:case Array:case String:c=new gf([o]);break;case Uint8Array:c=new h3(o);break;case $h:c=new m3(o);break;default:if(o instanceof Y0)c=new Yl(o);else throw new Error("Unexpected content type")}new b1(to(i,q0(s.store,i)),r,r&&r.lastId,null,null,t,n,c).integrate(e,0)},SB=(e,t)=>{e.doc??z1();const n=e._map.get(t);return n!==void 0&&!n.deleted?n.content.getContent()[n.length-1]:void 0},Ose=e=>{const t={};return e.doc??z1(),e._map.forEach((n,o)=>{n.deleted||(t[o]=n.content.getContent()[n.length-1])}),t},yse=(e,t)=>{e.doc??z1();const n=e._map.get(t);return n!==void 0&&!n.deleted},pWe=(e,t)=>{const n={};return e._map.forEach((o,r)=>{let s=o;for(;s!==null&&(!t.sv.has(s.id.client)||s.id.clock>=(t.sv.get(s.id.client)||0));)s=s.left;s!==null&&o2(s,t)&&(n[r]=s.content.getContent()[s.length-1])}),n},bA=e=>(e.doc??z1(),q8e(e._map.entries(),t=>!t[1].deleted));class fWe extends U5{}class R2 extends Y0{constructor(){super(),this._prelimContent=[],this._searchMarker=[]}static from(t){const n=new R2;return n.push(t),n}_integrate(t,n){super._integrate(t,n),this.insert(0,this._prelimContent),this._prelimContent=null}_copy(){return new R2}clone(){const t=new R2;return t.insert(0,this.toArray().map(n=>n instanceof Y0?n.clone():n)),t}get length(){return this.doc??z1(),this._length}_callObserver(t,n){super._callObserver(t,n),G5(this,t,new fWe(this,t))}insert(t,n){this.doc!==null?Ho(this.doc,o=>{Mse(o,this,t,n)}):this._prelimContent.splice(t,0,...n)}push(t){this.doc!==null?Ho(this.doc,n=>{dWe(n,this,t)}):this._prelimContent.push(...t)}unshift(t){this.insert(0,t)}delete(t,n=1){this.doc!==null?Ho(this.doc,o=>{zse(o,this,t,n)}):this._prelimContent.splice(t,n)}get(t){return mse(this,t)}toArray(){return bse(this)}slice(t=0,n=this.length){return fse(this,t,n)}toJSON(){return this.map(t=>t instanceof Y0?t.toJSON():t)}map(t){return hse(this,t)}forEach(t){KM(this,t)}[Symbol.iterator](){return uWe(this)}_write(t){t.writeTypeRef(PWe)}}const bWe=e=>new R2;class hWe extends U5{constructor(t,n,o){super(t,n),this.keysChanged=o}}class ah extends Y0{constructor(t){super(),this._prelimContent=null,t===void 0?this._prelimContent=new Map:this._prelimContent=new Map(t)}_integrate(t,n){super._integrate(t,n),this._prelimContent.forEach((o,r)=>{this.set(r,o)}),this._prelimContent=null}_copy(){return new ah}clone(){const t=new ah;return this.forEach((n,o)=>{t.set(o,n instanceof Y0?n.clone():n)}),t}_callObserver(t,n){G5(this,t,new hWe(this,t,n))}toJSON(){this.doc??z1();const t={};return this._map.forEach((n,o)=>{if(!n.deleted){const r=n.content.getContent()[n.length-1];t[o]=r instanceof Y0?r.toJSON():r}}),t}get size(){return[...bA(this)].length}keys(){return jS(bA(this),t=>t[0])}values(){return jS(bA(this),t=>t[1].content.getContent()[t[1].length-1])}entries(){return jS(bA(this),t=>[t[0],t[1].content.getContent()[t[1].length-1]])}forEach(t){this.doc??z1(),this._map.forEach((n,o)=>{n.deleted||t(n.content.getContent()[n.length-1],o,this)})}[Symbol.iterator](){return this.entries()}delete(t){this.doc!==null?Ho(this.doc,n=>{P4(n,this,t)}):this._prelimContent.delete(t)}set(t,n){return this.doc!==null?Ho(this.doc,o=>{kB(o,this,t,n)}):this._prelimContent.set(t,n),n}get(t){return SB(this,t)}has(t){return yse(this,t)}clear(){this.doc!==null?Ho(this.doc,t=>{this.forEach(function(n,o,r){P4(t,r,o)})}):this._prelimContent.clear()}_write(t){t.writeTypeRef(jWe)}}const mWe=e=>new ah,Zu=(e,t)=>e===t||typeof e=="object"&&typeof t=="object"&&e&&t&&s8e(e,t);class jE{constructor(t,n,o,r){this.left=t,this.right=n,this.index=o,this.currentAttributes=r}forward(){switch(this.right===null&&yc(),this.right.content.constructor){case m0:this.right.deleted||Vh(this.currentAttributes,this.right.content);break;default:this.right.deleted||(this.index+=this.right.length);break}this.left=this.right,this.right=this.right.right}}const NU=(e,t,n)=>{for(;t.right!==null&&n>0;){switch(t.right.content.constructor){case m0:t.right.deleted||Vh(t.currentAttributes,t.right.content);break;default:t.right.deleted||(n<t.right.length&&Od(e,to(t.right.id.client,t.right.id.clock+n)),t.index+=t.right.length,n-=t.right.length);break}t.left=t.right,t.right=t.right.right}return t},hA=(e,t,n,o)=>{const r=new Map,s=o?X5(t,n):null;if(s){const i=new jE(s.p.left,s.p,s.index,r);return NU(e,i,n-s.index)}else{const i=new jE(null,t._start,0,r);return NU(e,i,n)}},Ase=(e,t,n,o)=>{for(;n.right!==null&&(n.right.deleted===!0||n.right.content.constructor===m0&&Zu(o.get(n.right.content.key),n.right.content.value));)n.right.deleted||o.delete(n.right.content.key),n.forward();const r=e.doc,s=r.clientID;o.forEach((i,c)=>{const l=n.left,u=n.right,d=new b1(to(s,q0(r.store,s)),l,l&&l.lastId,u,u&&u.id,t,null,new m0(c,i));d.integrate(e,0),n.right=d,n.forward()})},Vh=(e,t)=>{const{key:n,value:o}=t;o===null?e.delete(n):e.set(n,o)},vse=(e,t)=>{for(;e.right!==null;){if(!(e.right.deleted||e.right.content.constructor===m0&&Zu(t[e.right.content.key]??null,e.right.content.value)))break;e.forward()}},xse=(e,t,n,o)=>{const r=e.doc,s=r.clientID,i=new Map;for(const c in o){const l=o[c],u=n.currentAttributes.get(c)??null;if(!Zu(u,l)){i.set(c,u);const{left:d,right:p}=n;n.right=new b1(to(s,q0(r.store,s)),d,d&&d.lastId,p,p&&p.id,t,null,new m0(c,l)),n.right.integrate(e,0),n.forward()}}return i},DS=(e,t,n,o,r)=>{n.currentAttributes.forEach((f,b)=>{r[b]===void 0&&(r[b]=null)});const s=e.doc,i=s.clientID;vse(n,r);const c=xse(e,t,n,r),l=o.constructor===String?new vc(o):o instanceof Y0?new Yl(o):new Vf(o);let{left:u,right:d,index:p}=n;t._searchMarker&&GM(t._searchMarker,n.index,l.getLength()),d=new b1(to(i,q0(s.store,i)),u,u&&u.lastId,d,d&&d.id,t,null,l),d.integrate(e,0),n.right=d,n.index=p,n.forward(),Ase(e,t,n,c)},BU=(e,t,n,o,r)=>{const s=e.doc,i=s.clientID;vse(n,r);const c=xse(e,t,n,r);e:for(;n.right!==null&&(o>0||c.size>0&&(n.right.deleted||n.right.content.constructor===m0));){if(!n.right.deleted)switch(n.right.content.constructor){case m0:{const{key:l,value:u}=n.right.content,d=r[l];if(d!==void 0){if(Zu(d,u))c.delete(l);else{if(o===0)break e;c.set(l,u)}n.right.delete(e)}else n.currentAttributes.set(l,u);break}default:o<n.right.length&&Od(e,to(n.right.id.client,n.right.id.clock+o)),o-=n.right.length;break}n.forward()}if(o>0){let l="";for(;o>0;o--)l+=` +`;n.right=new b1(to(i,q0(s.store,i)),n.left,n.left&&n.left.lastId,n.right,n.right&&n.right.id,t,null,new vc(l)),n.right.integrate(e,0),n.forward()}Ase(e,t,n,c)},wse=(e,t,n,o,r)=>{let s=t;const i=fs();for(;s&&(!s.countable||s.deleted);){if(!s.deleted&&s.content.constructor===m0){const u=s.content;i.set(u.key,u)}s=s.right}let c=0,l=!1;for(;t!==s;){if(n===t&&(l=!0),!t.deleted){const u=t.content;switch(u.constructor){case m0:{const{key:d,value:p}=u,f=o.get(d)??null;(i.get(d)!==u||f===p)&&(t.delete(e),c++,!l&&(r.get(d)??null)===p&&f!==p&&(f===null?r.delete(d):r.set(d,f))),!l&&!t.deleted&&Vh(r,u);break}}}t=t.right}return c},gWe=(e,t)=>{for(;t&&t.right&&(t.right.deleted||!t.right.countable);)t=t.right;const n=new Set;for(;t&&(t.deleted||!t.countable);){if(!t.deleted&&t.content.constructor===m0){const o=t.content.key;n.has(o)?t.delete(e):n.add(o)}t=t.left}},MWe=e=>{let t=0;return Ho(e.doc,n=>{let o=e._start,r=e._start,s=fs();const i=qE(s);for(;r;){if(r.deleted===!1)switch(r.content.constructor){case m0:Vh(i,r.content);break;default:t+=wse(n,o,r,s,i),s=qE(i),o=r;break}r=r.right}}),t},zWe=e=>{const t=new Set,n=e.doc;for(const[o,r]of e.afterState.entries()){const s=e.beforeState.get(o)||0;r!==s&&cse(e,n.store.clients.get(o),s,r,i=>{!i.deleted&&i.content.constructor===m0&&i.constructor!==yi&&t.add(i.parent)})}Ho(n,o=>{G1e(e,e.deleteSet,r=>{if(r instanceof yi||!r.parent._hasFormatting||t.has(r.parent))return;const s=r.parent;r.content.constructor===m0?t.add(s):gWe(o,r)});for(const r of t)MWe(r)})},LU=(e,t,n)=>{const o=n,r=qE(t.currentAttributes),s=t.right;for(;n>0&&t.right!==null;){if(t.right.deleted===!1)switch(t.right.content.constructor){case Yl:case Vf:case vc:n<t.right.length&&Od(e,to(t.right.id.client,t.right.id.clock+n)),n-=t.right.length,t.right.delete(e);break}t.forward()}s&&wse(e,s,t.right,r,t.currentAttributes);const i=(t.left||t.right).parent;return i._searchMarker&&GM(i._searchMarker,t.index,-o+n),t};class OWe extends U5{constructor(t,n,o){super(t,n),this.childListChanged=!1,this.keysChanged=new Set,o.forEach(r=>{r===null?this.childListChanged=!0:this.keysChanged.add(r)})}get changes(){if(this._changes===null){const t={keys:this.keys,delta:this.delta,added:new Set,deleted:new Set};this._changes=t}return this._changes}get delta(){if(this._delta===null){const t=this.target.doc,n=[];Ho(t,o=>{const r=new Map,s=new Map;let i=this.target._start,c=null;const l={};let u="",d=0,p=0;const f=()=>{if(c!==null){let b=null;switch(c){case"delete":p>0&&(b={delete:p}),p=0;break;case"insert":(typeof u=="object"||u.length>0)&&(b={insert:u},r.size>0&&(b.attributes={},r.forEach((h,g)=>{h!==null&&(b.attributes[g]=h)}))),u="";break;case"retain":d>0&&(b={retain:d},o8e(l)||(b.attributes=t8e({},l))),d=0;break}b&&n.push(b),c=null}};for(;i!==null;){switch(i.content.constructor){case Yl:case Vf:this.adds(i)?this.deletes(i)||(f(),c="insert",u=i.content.getContent()[0],f()):this.deletes(i)?(c!=="delete"&&(f(),c="delete"),p+=1):i.deleted||(c!=="retain"&&(f(),c="retain"),d+=1);break;case vc:this.adds(i)?this.deletes(i)||(c!=="insert"&&(f(),c="insert"),u+=i.content.str):this.deletes(i)?(c!=="delete"&&(f(),c="delete"),p+=i.length):i.deleted||(c!=="retain"&&(f(),c="retain"),d+=i.length);break;case m0:{const{key:b,value:h}=i.content;if(this.adds(i)){if(!this.deletes(i)){const g=r.get(b)??null;Zu(g,h)?h!==null&&i.delete(o):(c==="retain"&&f(),Zu(h,s.get(b)??null)?delete l[b]:l[b]=h)}}else if(this.deletes(i)){s.set(b,h);const g=r.get(b)??null;Zu(g,h)||(c==="retain"&&f(),l[b]=g)}else if(!i.deleted){s.set(b,h);const g=l[b];g!==void 0&&(Zu(g,h)?g!==null&&i.delete(o):(c==="retain"&&f(),h===null?delete l[b]:l[b]=h))}i.deleted||(c==="insert"&&f(),Vh(r,i.content));break}}i=i.right}for(f();n.length>0;){const b=n[n.length-1];if(b.retain!==void 0&&b.attributes===void 0)n.pop();else break}}),this._delta=n}return this._delta}}class ch extends Y0{constructor(t){super(),this._pending=t!==void 0?[()=>this.insert(0,t)]:[],this._searchMarker=[],this._hasFormatting=!1}get length(){return this.doc??z1(),this._length}_integrate(t,n){super._integrate(t,n);try{this._pending.forEach(o=>o())}catch(o){console.error(o)}this._pending=null}_copy(){return new ch}clone(){const t=new ch;return t.applyDelta(this.toDelta()),t}_callObserver(t,n){super._callObserver(t,n);const o=new OWe(this,t,n);G5(this,t,o),!t.local&&this._hasFormatting&&(t._needFormattingCleanup=!0)}toString(){this.doc??z1();let t="",n=this._start;for(;n!==null;)!n.deleted&&n.countable&&n.content.constructor===vc&&(t+=n.content.str),n=n.right;return t}toJSON(){return this.toString()}applyDelta(t,{sanitize:n=!0}={}){this.doc!==null?Ho(this.doc,o=>{const r=new jE(null,this._start,0,new Map);for(let s=0;s<t.length;s++){const i=t[s];if(i.insert!==void 0){const c=!n&&typeof i.insert=="string"&&s===t.length-1&&r.right===null&&i.insert.slice(-1)===` +`?i.insert.slice(0,-1):i.insert;(typeof c!="string"||c.length>0)&&DS(o,this,r,c,i.attributes||{})}else i.retain!==void 0?BU(o,this,r,i.retain,i.attributes||{}):i.delete!==void 0&&LU(o,r,i.delete)}}):this._pending.push(()=>this.applyDelta(t))}toDelta(t,n,o){this.doc??z1();const r=[],s=new Map,i=this.doc;let c="",l=this._start;function u(){if(c.length>0){const p={};let f=!1;s.forEach((h,g)=>{f=!0,p[g]=h});const b={insert:c};f&&(b.attributes=p),r.push(b),c=""}}const d=()=>{for(;l!==null;){if(o2(l,t)||n!==void 0&&o2(l,n))switch(l.content.constructor){case vc:{const p=s.get("ychange");t!==void 0&&!o2(l,t)?(p===void 0||p.user!==l.id.client||p.type!=="removed")&&(u(),s.set("ychange",o?o("removed",l.id):{type:"removed"})):n!==void 0&&!o2(l,n)?(p===void 0||p.user!==l.id.client||p.type!=="added")&&(u(),s.set("ychange",o?o("added",l.id):{type:"added"})):p!==void 0&&(u(),s.delete("ychange")),c+=l.content.str;break}case Yl:case Vf:{u();const p={insert:l.content.getContent()[0]};if(s.size>0){const f={};p.attributes=f,s.forEach((b,h)=>{f[h]=b})}r.push(p);break}case m0:o2(l,t)&&(u(),Vh(s,l.content));break}l=l.right}u()};return t||n?Ho(i,p=>{t&&LE(p,t),n&&LE(p,n),d()},"cleanup"):d(),r}insert(t,n,o){if(n.length<=0)return;const r=this.doc;r!==null?Ho(r,s=>{const i=hA(s,this,t,!o);o||(o={},i.currentAttributes.forEach((c,l)=>{o[l]=c})),DS(s,this,i,n,o)}):this._pending.push(()=>this.insert(t,n,o))}insertEmbed(t,n,o){const r=this.doc;r!==null?Ho(r,s=>{const i=hA(s,this,t,!o);DS(s,this,i,n,o||{})}):this._pending.push(()=>this.insertEmbed(t,n,o||{}))}delete(t,n){if(n===0)return;const o=this.doc;o!==null?Ho(o,r=>{LU(r,hA(r,this,t,!0),n)}):this._pending.push(()=>this.delete(t,n))}format(t,n,o){if(n===0)return;const r=this.doc;r!==null?Ho(r,s=>{const i=hA(s,this,t,!1);i.right!==null&&BU(s,this,i,n,o)}):this._pending.push(()=>this.format(t,n,o))}removeAttribute(t){this.doc!==null?Ho(this.doc,n=>{P4(n,this,t)}):this._pending.push(()=>this.removeAttribute(t))}setAttribute(t,n){this.doc!==null?Ho(this.doc,o=>{kB(o,this,t,n)}):this._pending.push(()=>this.setAttribute(t,n))}getAttribute(t){return SB(this,t)}getAttributes(){return Ose(this)}_write(t){t.writeTypeRef(IWe)}}const yWe=e=>new ch;class FS{constructor(t,n=()=>!0){this._filter=n,this._root=t,this._currentNode=t._start,this._firstCall=!0,t.doc??z1()}[Symbol.iterator](){return this}next(){let t=this._currentNode,n=t&&t.content&&t.content.type;if(t!==null&&(!this._firstCall||t.deleted||!this._filter(n)))do if(n=t.content.type,!t.deleted&&(n.constructor===lh||n.constructor===mf)&&n._start!==null)t=n._start;else for(;t!==null;)if(t.right!==null){t=t.right;break}else t.parent===this._root?t=null:t=t.parent._item;while(t!==null&&(t.deleted||!this._filter(t.content.type)));return this._firstCall=!1,t===null?{value:void 0,done:!0}:(this._currentNode=t,{value:t.content.type,done:!1})}}class mf extends Y0{constructor(){super(),this._prelimContent=[]}get firstChild(){const t=this._first;return t?t.content.getContent()[0]:null}_integrate(t,n){super._integrate(t,n),this.insert(0,this._prelimContent),this._prelimContent=null}_copy(){return new mf}clone(){const t=new mf;return t.insert(0,this.toArray().map(n=>n instanceof Y0?n.clone():n)),t}get length(){return this.doc??z1(),this._prelimContent===null?this._length:this._prelimContent.length}createTreeWalker(t){return new FS(this,t)}querySelector(t){t=t.toUpperCase();const o=new FS(this,r=>r.nodeName&&r.nodeName.toUpperCase()===t).next();return o.done?null:o.value}querySelectorAll(t){return t=t.toUpperCase(),Rl(new FS(this,n=>n.nodeName&&n.nodeName.toUpperCase()===t))}_callObserver(t,n){G5(this,t,new xWe(this,n,t))}toString(){return hse(this,t=>t.toString()).join("")}toJSON(){return this.toString()}toDOM(t=document,n={},o){const r=t.createDocumentFragment();return o!==void 0&&o._createAssociation(r,this),KM(this,s=>{r.insertBefore(s.toDOM(t,n,o),null)}),r}insert(t,n){this.doc!==null?Ho(this.doc,o=>{Mse(o,this,t,n)}):this._prelimContent.splice(t,0,...n)}insertAfter(t,n){if(this.doc!==null)Ho(this.doc,o=>{const r=t&&t instanceof Y0?t._item:t;L4(o,this,r,n)});else{const o=this._prelimContent,r=t===null?0:o.findIndex(s=>s===t)+1;if(r===0&&t!==null)throw fa("Reference item not found");o.splice(r,0,...n)}}delete(t,n=1){this.doc!==null?Ho(this.doc,o=>{zse(o,this,t,n)}):this._prelimContent.splice(t,n)}toArray(){return bse(this)}push(t){this.insert(this.length,t)}unshift(t){this.insert(0,t)}get(t){return mse(this,t)}slice(t=0,n=this.length){return fse(this,t,n)}forEach(t){KM(this,t)}_write(t){t.writeTypeRef(FWe)}}const AWe=e=>new mf;class lh extends mf{constructor(t="UNDEFINED"){super(),this.nodeName=t,this._prelimAttrs=new Map}get nextSibling(){const t=this._item?this._item.next:null;return t?t.content.type:null}get prevSibling(){const t=this._item?this._item.prev:null;return t?t.content.type:null}_integrate(t,n){super._integrate(t,n),this._prelimAttrs.forEach((o,r)=>{this.setAttribute(r,o)}),this._prelimAttrs=null}_copy(){return new lh(this.nodeName)}clone(){const t=new lh(this.nodeName),n=this.getAttributes();return n8e(n,(o,r)=>{typeof o=="string"&&t.setAttribute(r,o)}),t.insert(0,this.toArray().map(o=>o instanceof Y0?o.clone():o)),t}toString(){const t=this.getAttributes(),n=[],o=[];for(const c in t)o.push(c);o.sort();const r=o.length;for(let c=0;c<r;c++){const l=o[c];n.push(l+'="'+t[l]+'"')}const s=this.nodeName.toLocaleLowerCase(),i=n.length>0?" "+n.join(" "):"";return`<${s}${i}>${super.toString()}</${s}>`}removeAttribute(t){this.doc!==null?Ho(this.doc,n=>{P4(n,this,t)}):this._prelimAttrs.delete(t)}setAttribute(t,n){this.doc!==null?Ho(this.doc,o=>{kB(o,this,t,n)}):this._prelimAttrs.set(t,n)}getAttribute(t){return SB(this,t)}hasAttribute(t){return yse(this,t)}getAttributes(t){return t?pWe(this,t):Ose(this)}toDOM(t=document,n={},o){const r=t.createElement(this.nodeName),s=this.getAttributes();for(const i in s){const c=s[i];typeof c=="string"&&r.setAttribute(i,c)}return KM(this,i=>{r.appendChild(i.toDOM(t,n,o))}),o!==void 0&&o._createAssociation(r,this),r}_write(t){t.writeTypeRef(DWe),t.writeKey(this.nodeName)}}const vWe=e=>new lh(e.readKey());class xWe extends U5{constructor(t,n,o){super(t,o),this.childListChanged=!1,this.attributesChanged=new Set,n.forEach(r=>{r===null?this.childListChanged=!0:this.attributesChanged.add(r)})}}class j4 extends ah{constructor(t){super(),this.hookName=t}_copy(){return new j4(this.hookName)}clone(){const t=new j4(this.hookName);return this.forEach((n,o)=>{t.set(o,n)}),t}toDOM(t=document,n={},o){const r=n[this.hookName];let s;return r!==void 0?s=r.createDom(this):s=document.createElement(this.hookName),s.setAttribute("data-yjs-hook",this.hookName),o!==void 0&&o._createAssociation(s,this),s}_write(t){t.writeTypeRef($We),t.writeKey(this.hookName)}}const wWe=e=>new j4(e.readKey());class I4 extends ch{get nextSibling(){const t=this._item?this._item.next:null;return t?t.content.type:null}get prevSibling(){const t=this._item?this._item.prev:null;return t?t.content.type:null}_copy(){return new I4}clone(){const t=new I4;return t.applyDelta(this.toDelta()),t}toDOM(t=document,n,o){const r=t.createTextNode(this.toString());return o!==void 0&&o._createAssociation(r,this),r}toString(){return this.toDelta().map(t=>{const n=[];for(const r in t.attributes){const s=[];for(const i in t.attributes[r])s.push({key:i,value:t.attributes[r][i]});s.sort((i,c)=>i.key<c.key?-1:1),n.push({nodeName:r,attrs:s})}n.sort((r,s)=>r.nodeName<s.nodeName?-1:1);let o="";for(let r=0;r<n.length;r++){const s=n[r];o+=`<${s.nodeName}`;for(let i=0;i<s.attrs.length;i++){const c=s.attrs[i];o+=` ${c.key}="${c.value}"`}o+=">"}o+=t.insert;for(let r=n.length-1;r>=0;r--)o+=`</${n[r].nodeName}>`;return o}).join("")}toJSON(){return this.toString()}_write(t){t.writeTypeRef(VWe)}}const _We=e=>new I4;class CB{constructor(t,n){this.id=t,this.length=n}get deleted(){throw dc()}mergeWith(t){return!1}write(t,n,o){throw dc()}integrate(t,n){throw dc()}}const kWe=0;class yi extends CB{get deleted(){return!0}delete(){}mergeWith(t){return this.constructor!==t.constructor?!1:(this.length+=t.length,!0)}integrate(t,n){n>0&&(this.id.clock+=n,this.length-=n),ase(t.doc.store,this)}write(t,n){t.writeInfo(kWe),t.writeLen(this.length-n)}getMissing(t,n){return null}}class h3{constructor(t){this.content=t}getLength(){return 1}getContent(){return[this.content]}isCountable(){return!0}copy(){return new h3(this.content)}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){}delete(t){}gc(t){}write(t,n){t.writeBuf(this.content)}getRef(){return 3}}const SWe=e=>new h3(e.readBuf());class YM{constructor(t){this.len=t}getLength(){return this.len}getContent(){return[]}isCountable(){return!1}copy(){return new YM(this.len)}splice(t){const n=new YM(this.len-t);return this.len=t,n}mergeWith(t){return this.len+=t.len,!0}integrate(t,n){N4(t.deleteSet,n.id.client,n.id.clock,this.len),n.markDeleted()}delete(t){}gc(t){}write(t,n){t.writeLen(this.len-n)}getRef(){return 1}}const CWe=e=>new YM(e.readLen()),_se=(e,t)=>new $h({guid:e,...t,shouldLoad:t.shouldLoad||t.autoLoad||!1});class m3{constructor(t){t._item&&console.error("This document was already integrated as a sub-document. You should create a second instance instead with the same guid."),this.doc=t;const n={};this.opts=n,t.gc||(n.gc=!1),t.autoLoad&&(n.autoLoad=!0),t.meta!==null&&(n.meta=t.meta)}getLength(){return 1}getContent(){return[this.doc]}isCountable(){return!0}copy(){return new m3(_se(this.doc.guid,this.opts))}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){this.doc._item=n,t.subdocsAdded.add(this.doc),this.doc.shouldLoad&&t.subdocsLoaded.add(this.doc)}delete(t){t.subdocsAdded.has(this.doc)?t.subdocsAdded.delete(this.doc):t.subdocsRemoved.add(this.doc)}gc(t){}write(t,n){t.writeString(this.doc.guid),t.writeAny(this.opts)}getRef(){return 9}}const qWe=e=>new m3(_se(e.readString(),e.readAny()));class Vf{constructor(t){this.embed=t}getLength(){return 1}getContent(){return[this.embed]}isCountable(){return!0}copy(){return new Vf(this.embed)}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){}delete(t){}gc(t){}write(t,n){t.writeJSON(this.embed)}getRef(){return 5}}const RWe=e=>new Vf(e.readJSON());class m0{constructor(t,n){this.key=t,this.value=n}getLength(){return 1}getContent(){return[]}isCountable(){return!1}copy(){return new m0(this.key,this.value)}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){const o=n.parent;o._searchMarker=null,o._hasFormatting=!0}delete(t){}gc(t){}write(t,n){t.writeKey(this.key),t.writeJSON(this.value)}getRef(){return 6}}const TWe=e=>new m0(e.readKey(),e.readJSON());class D4{constructor(t){this.arr=t}getLength(){return this.arr.length}getContent(){return this.arr}isCountable(){return!0}copy(){return new D4(this.arr)}splice(t){const n=new D4(this.arr.slice(t));return this.arr=this.arr.slice(0,t),n}mergeWith(t){return this.arr=this.arr.concat(t.arr),!0}integrate(t,n){}delete(t){}gc(t){}write(t,n){const o=this.arr.length;t.writeLen(o-n);for(let r=n;r<o;r++){const s=this.arr[r];t.writeString(s===void 0?"undefined":JSON.stringify(s))}}getRef(){return 2}}const EWe=e=>{const t=e.readLen(),n=[];for(let o=0;o<t;o++){const r=e.readString();r==="undefined"?n.push(void 0):n.push(JSON.parse(r))}return new D4(n)},WWe=XM("node_env")==="development";class gf{constructor(t){this.arr=t,WWe&&W1e(t)}getLength(){return this.arr.length}getContent(){return this.arr}isCountable(){return!0}copy(){return new gf(this.arr)}splice(t){const n=new gf(this.arr.slice(t));return this.arr=this.arr.slice(0,t),n}mergeWith(t){return this.arr=this.arr.concat(t.arr),!0}integrate(t,n){}delete(t){}gc(t){}write(t,n){const o=this.arr.length;t.writeLen(o-n);for(let r=n;r<o;r++){const s=this.arr[r];t.writeAny(s)}}getRef(){return 8}}const NWe=e=>{const t=e.readLen(),n=[];for(let o=0;o<t;o++)n.push(e.readAny());return new gf(n)};class vc{constructor(t){this.str=t}getLength(){return this.str.length}getContent(){return this.str.split("")}isCountable(){return!0}copy(){return new vc(this.str)}splice(t){const n=new vc(this.str.slice(t));this.str=this.str.slice(0,t);const o=this.str.charCodeAt(t-1);return o>=55296&&o<=56319&&(this.str=this.str.slice(0,t-1)+"�",n.str="�"+n.str.slice(1)),n}mergeWith(t){return this.str+=t.str,!0}integrate(t,n){}delete(t){}gc(t){}write(t,n){t.writeString(n===0?this.str:this.str.slice(n))}getRef(){return 4}}const BWe=e=>new vc(e.readString()),LWe=[bWe,mWe,yWe,vWe,AWe,wWe,_We],PWe=0,jWe=1,IWe=2,DWe=3,FWe=4,$We=5,VWe=6;class Yl{constructor(t){this.type=t}getLength(){return 1}getContent(){return[this.type]}isCountable(){return!0}copy(){return new Yl(this.type._copy())}splice(t){throw dc()}mergeWith(t){return!1}integrate(t,n){this.type._integrate(t.doc,n)}delete(t){let n=this.type._start;for(;n!==null;)n.deleted?n.id.clock<(t.beforeState.get(n.id.client)||0)&&t._mergeStructs.push(n):n.delete(t),n=n.right;this.type._map.forEach(o=>{o.deleted?o.id.clock<(t.beforeState.get(o.id.client)||0)&&t._mergeStructs.push(o):o.delete(t)}),t.changed.delete(this.type)}gc(t){let n=this.type._start;for(;n!==null;)n.gc(t,!0),n=n.right;this.type._start=null,this.type._map.forEach(o=>{for(;o!==null;)o.gc(t,!0),o=o.left}),this.type._map=new Map}write(t,n){this.type._write(t)}getRef(){return 7}}const HWe=e=>new Yl(LWe[e.readTypeRef()](e)),F4=(e,t,n)=>{const{client:o,clock:r}=t.id,s=new b1(to(o,r+n),t,to(o,r+n-1),t.right,t.rightOrigin,t.parent,t.parentSub,t.content.splice(n));return t.deleted&&s.markDeleted(),t.keep&&(s.keep=!0),t.redone!==null&&(s.redone=to(t.redone.client,t.redone.clock+n)),t.right=s,s.right!==null&&(s.right.left=s),e._mergeStructs.push(s),s.parentSub!==null&&s.right===null&&s.parent._map.set(s.parentSub,s),t.length=n,s};let b1=class IE extends CB{constructor(t,n,o,r,s,i,c,l){super(t,l.getLength()),this.origin=o,this.left=n,this.right=r,this.rightOrigin=s,this.parent=i,this.parentSub=c,this.redone=null,this.content=l,this.info=this.content.isCountable()?hU:0}set marker(t){(this.info&WS)>0!==t&&(this.info^=WS)}get marker(){return(this.info&WS)>0}get keep(){return(this.info&bU)>0}set keep(t){this.keep!==t&&(this.info^=bU)}get countable(){return(this.info&hU)>0}get deleted(){return(this.info&ES)>0}set deleted(t){this.deleted!==t&&(this.info^=ES)}markDeleted(){this.info|=ES}getMissing(t,n){if(this.origin&&this.origin.client!==this.id.client&&this.origin.clock>=q0(n,this.origin.client))return this.origin.client;if(this.rightOrigin&&this.rightOrigin.client!==this.id.client&&this.rightOrigin.clock>=q0(n,this.rightOrigin.client))return this.rightOrigin.client;if(this.parent&&this.parent.constructor===q2&&this.id.client!==this.parent.client&&this.parent.clock>=q0(n,this.parent.client))return this.parent.client;if(this.origin&&(this.left=RU(t,n,this.origin),this.origin=this.left.lastId),this.rightOrigin&&(this.right=Od(t,this.rightOrigin),this.rightOrigin=this.right.id),this.left&&this.left.constructor===yi||this.right&&this.right.constructor===yi)this.parent=null;else if(!this.parent)this.left&&this.left.constructor===IE&&(this.parent=this.left.parent,this.parentSub=this.left.parentSub),this.right&&this.right.constructor===IE&&(this.parent=this.right.parent,this.parentSub=this.right.parentSub);else if(this.parent.constructor===q2){const o=IS(n,this.parent);o.constructor===yi?this.parent=null:this.parent=o.content.type}return null}integrate(t,n){if(n>0&&(this.id.clock+=n,this.left=RU(t,t.doc.store,to(this.id.client,this.id.clock-1)),this.origin=this.left.lastId,this.content=this.content.splice(n),this.length-=n),this.parent){if(!this.left&&(!this.right||this.right.left!==null)||this.left&&this.left.right!==this.right){let o=this.left,r;if(o!==null)r=o.right;else if(this.parentSub!==null)for(r=this.parent._map.get(this.parentSub)||null;r!==null&&r.left!==null;)r=r.left;else r=this.parent._start;const s=new Set,i=new Set;for(;r!==null&&r!==this.right;){if(i.add(r),s.add(r),fA(this.origin,r.origin)){if(r.id.client<this.id.client)o=r,s.clear();else if(fA(this.rightOrigin,r.rightOrigin))break}else if(r.origin!==null&&i.has(IS(t.doc.store,r.origin)))s.has(IS(t.doc.store,r.origin))||(o=r,s.clear());else break;r=r.right}this.left=o}if(this.left!==null){const o=this.left.right;this.right=o,this.left.right=this}else{let o;if(this.parentSub!==null)for(o=this.parent._map.get(this.parentSub)||null;o!==null&&o.left!==null;)o=o.left;else o=this.parent._start,this.parent._start=this;this.right=o}this.right!==null?this.right.left=this:this.parentSub!==null&&(this.parent._map.set(this.parentSub,this),this.left!==null&&this.left.delete(t)),this.parentSub===null&&this.countable&&!this.deleted&&(this.parent._length+=this.length),ase(t.doc.store,this),this.content.integrate(t,this),EU(t,this.parent,this.parentSub),(this.parent._item!==null&&this.parent._item.deleted||this.parentSub!==null&&this.right!==null)&&this.delete(t)}else new yi(this.id,this.length).integrate(t,0)}get next(){let t=this.right;for(;t!==null&&t.deleted;)t=t.right;return t}get prev(){let t=this.left;for(;t!==null&&t.deleted;)t=t.left;return t}get lastId(){return this.length===1?this.id:to(this.id.client,this.id.clock+this.length-1)}mergeWith(t){if(this.constructor===t.constructor&&fA(t.origin,this.lastId)&&this.right===t&&fA(this.rightOrigin,t.rightOrigin)&&this.id.client===t.id.client&&this.id.clock+this.length===t.id.clock&&this.deleted===t.deleted&&this.redone===null&&t.redone===null&&this.content.constructor===t.content.constructor&&this.content.mergeWith(t.content)){const n=this.parent._searchMarker;return n&&n.forEach(o=>{o.p===t&&(o.p=this,!this.deleted&&this.countable&&(o.index-=this.length))}),t.keep&&(this.keep=!0),this.right=t.right,this.right!==null&&(this.right.left=this),this.length+=t.length,!0}return!1}delete(t){if(!this.deleted){const n=this.parent;this.countable&&this.parentSub===null&&(n._length-=this.length),this.markDeleted(),N4(t.deleteSet,this.id.client,this.id.clock,this.length),EU(t,n,this.parentSub),this.content.delete(t)}}gc(t,n){if(!this.deleted)throw yc();this.content.gc(t),n?Y8e(t,this,new yi(this.id,this.length)):this.content=new YM(this.length)}write(t,n){const o=n>0?to(this.id.client,this.id.clock+n-1):this.origin,r=this.rightOrigin,s=this.parentSub,i=this.content.getRef()&j5|(o===null?0:Ns)|(r===null?0:Ol)|(s===null?0:VM);if(t.writeInfo(i),o!==null&&t.writeLeftID(o),r!==null&&t.writeRightID(r),o===null&&r===null){const c=this.parent;if(c._item!==void 0){const l=c._item;if(l===null){const u=G8e(c);t.writeParentInfo(!0),t.writeString(u)}else t.writeParentInfo(!1),t.writeLeftID(l.id)}else c.constructor===String?(t.writeParentInfo(!0),t.writeString(c)):c.constructor===q2?(t.writeParentInfo(!1),t.writeLeftID(c)):yc();s!==null&&t.writeString(s)}this.content.write(t,n)}};const kse=(e,t)=>UWe[t&j5](e),UWe=[()=>{yc()},CWe,EWe,SWe,BWe,RWe,TWe,HWe,NWe,qWe,()=>{yc()}],XWe=10;class Ai extends CB{get deleted(){return!0}delete(){}mergeWith(t){return this.constructor!==t.constructor?!1:(this.length+=t.length,!0)}integrate(t,n){yc()}write(t,n){t.writeInfo(XWe),sn(t.restEncoder,this.length-n)}getMissing(t,n){return null}}const Sse=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof fU<"u"?fU:{},Cse="__ $YJS$ __";Sse[Cse]===!0&&console.error("Yjs was already imported. This breaks constructor checks and will lead to issues! - https://github.com/yjs/yjs/issues/438");Sse[Cse]=!0;const Hf=e=>oh((t,n)=>{e.onerror=o=>n(new Error(o.target.error)),e.onsuccess=o=>t(o.target.result)}),GWe=(e,t)=>oh((n,o)=>{const r=indexedDB.open(e);r.onupgradeneeded=s=>t(s.target.result),r.onerror=s=>o(fa(s.target.error)),r.onsuccess=s=>{const i=s.target.result;i.onversionchange=()=>{i.close()},n(i)}}),KWe=e=>Hf(indexedDB.deleteDatabase(e)),YWe=(e,t)=>t.forEach(n=>e.createObjectStore.apply(e,n)),Qg=(e,t,n="readwrite")=>{const o=e.transaction(t,n);return t.map(r=>rNe(o,r))},qse=(e,t)=>Hf(e.count(t)),ZWe=(e,t)=>Hf(e.get(t)),Rse=(e,t)=>Hf(e.delete(t)),QWe=(e,t,n)=>Hf(e.put(t,n)),DE=(e,t)=>Hf(e.add(t)),JWe=(e,t,n)=>Hf(e.getAll(t,n)),eNe=(e,t,n)=>{let o=null;return oNe(e,t,r=>(o=r,!1),n).then(()=>o)},tNe=(e,t=null)=>eNe(e,t,"prev"),nNe=(e,t)=>oh((n,o)=>{e.onerror=o,e.onsuccess=async r=>{const s=r.target.result;if(s===null||await t(s)===!1)return n();s.continue()}}),oNe=(e,t,n,o="next")=>nNe(e.openKeyCursor(t,o),r=>n(r.key)),rNe=(e,t)=>e.objectStore(t),sNe=(e,t)=>IDBKeyRange.upperBound(e,t),iNe=(e,t)=>IDBKeyRange.lowerBound(e,t),$S="custom",Tse="updates",Ese=500,Wse=(e,t=()=>{},n=()=>{})=>{const[o]=Qg(e.db,[Tse]);return JWe(o,iNe(e._dbref,!1)).then(r=>{e._destroyed||(t(o),Ho(e.doc,()=>{r.forEach(s=>nse(e.doc,s))},e,!1),n(o))}).then(()=>tNe(o).then(r=>{e._dbref=r+1})).then(()=>qse(o).then(r=>{e._dbsize=r})).then(()=>o)},aNe=(e,t=!0)=>Wse(e).then(n=>{(t||e._dbsize>=Ese)&&DE(n,AB(e.doc)).then(()=>Rse(n,sNe(e._dbref,!0))).then(()=>qse(n).then(o=>{e._dbsize=o}))});class cNe extends d3{constructor(t,n){super(),this.doc=n,this.name=t,this._dbref=0,this._dbsize=0,this._destroyed=!1,this.db=null,this.synced=!1,this._db=GWe(t,o=>YWe(o,[["updates",{autoIncrement:!0}],["custom"]])),this.whenSynced=oh(o=>this.on("synced",()=>o(this))),this._db.then(o=>{this.db=o,Wse(this,i=>DE(i,AB(n)),()=>{if(this._destroyed)return this;this.synced=!0,this.emit("synced",[this])})}),this._storeTimeout=1e3,this._storeTimeoutId=null,this._storeUpdate=(o,r)=>{if(this.db&&r!==this){const[s]=Qg(this.db,[Tse]);DE(s,o),++this._dbsize>=Ese&&(this._storeTimeoutId!==null&&clearTimeout(this._storeTimeoutId),this._storeTimeoutId=setTimeout(()=>{aNe(this,!1),this._storeTimeoutId=null},this._storeTimeout))}},n.on("update",this._storeUpdate),this.destroy=this.destroy.bind(this),n.on("destroy",this.destroy)}destroy(){return this._storeTimeoutId&&clearTimeout(this._storeTimeoutId),this.doc.off("update",this._storeUpdate),this.doc.off("destroy",this.destroy),this._destroyed=!0,this._db.then(t=>{t.close()})}clearData(){return this.destroy().then(()=>{KWe(this.name)})}get(t){return this._db.then(n=>{const[o]=Qg(n,[$S],"readonly");return ZWe(o,t)})}set(t,n){return this._db.then(o=>{const[r]=Qg(o,[$S]);return QWe(r,n,t)})}del(t){return this._db.then(n=>{const[o]=Qg(n,[$S]);return Rse(o,t)})}}function lNe(e,t,n){const o=`${t}-${e}`,r=new cNe(o,n);return new Promise(s=>{r.on("synced",()=>{s(()=>r.destroy())})})}const uNe=1200,dNe=2500,$4=3e4,FE=e=>{if(e.shouldConnect&&e.ws===null){const t=new WebSocket(e.url),n=e.binaryType;let o=null;n&&(t.binaryType=n),e.ws=t,e.connecting=!0,e.connected=!1,t.onmessage=i=>{e.lastMessageReceived=Tl();const c=i.data,l=typeof c=="string"?JSON.parse(c):c;l&&l.type==="pong"&&(clearTimeout(o),o=setTimeout(s,$4/2)),e.emit("message",[l,e])};const r=i=>{e.ws!==null&&(e.ws=null,e.connecting=!1,e.connected?(e.connected=!1,e.emit("disconnect",[{type:"disconnect",error:i},e])):e.unsuccessfulReconnects++,setTimeout(FE,aB(aEe(e.unsuccessfulReconnects+1)*uNe,dNe),e)),clearTimeout(o)},s=()=>{e.ws===t&&e.send({type:"ping"})};t.onclose=()=>r(null),t.onerror=i=>r(i),t.onopen=()=>{e.lastMessageReceived=Tl(),e.connecting=!1,e.connected=!0,e.unsuccessfulReconnects=0,e.emit("connect",[{type:"connect"},e]),o=setTimeout(s,$4/2)}}};class pNe extends d3{constructor(t,{binaryType:n}={}){super(),this.url=t,this.ws=null,this.binaryType=n||null,this.connected=!1,this.connecting=!1,this.unsuccessfulReconnects=0,this.lastMessageReceived=0,this.shouldConnect=!0,this._checkInterval=setInterval(()=>{this.connected&&$4<Tl()-this.lastMessageReceived&&this.ws.close()},$4/2),FE(this)}send(t){this.ws&&this.ws.send(JSON.stringify(t))}destroy(){clearInterval(this._checkInterval),this.disconnect(),super.destroy()}disconnect(){this.shouldConnect=!1,this.ws!==null&&this.ws.close()}connect(){this.shouldConnect=!0,!this.connected&&this.ws===null&&FE(this)}}const Nse=new Map;class fNe{constructor(t){this.room=t,this.onmessage=null,this._onChange=n=>n.key===t&&this.onmessage!==null&&this.onmessage({data:mB(n.newValue||"")}),JEe(this._onChange)}postMessage(t){R1e.setItem(this.room,j1e(h8e(t)))}close(){e8e(this._onChange)}}const bNe=typeof BroadcastChannel>"u"?fNe:BroadcastChannel,qB=e=>w1(Nse,e,()=>{const t=zd(),n=new bNe(e);return n.onmessage=o=>t.forEach(r=>r(o.data,"broadcastchannel")),{bc:n,subs:t}}),hNe=(e,t)=>(qB(e).subs.add(t),t),mNe=(e,t)=>{const n=qB(e),o=n.subs.delete(t);return o&&n.subs.size===0&&(n.bc.close(),Nse.delete(e)),o},gNe=(e,t,n=null)=>{const o=qB(e);o.bc.postMessage(t),o.subs.forEach(r=>r(t,n))},MNe=()=>{let e=!0;return(t,n)=>{if(e){e=!1;try{t()}finally{e=!0}}else n!==void 0&&n()}};function mA(e){throw new Error('Could not dynamically require "'+e+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var VS={exports:{}},PU;function zNe(){return PU||(PU=1,function(e,t){(function(n){e.exports=n()})(function(){var n=Math.floor,o=Math.abs,r=Math.pow;return function(){function s(i,c,l){function u(f,b){if(!c[f]){if(!i[f]){var h=typeof mA=="function"&&mA;if(!b&&h)return h(f,!0);if(d)return d(f,!0);var g=new Error("Cannot find module '"+f+"'");throw g.code="MODULE_NOT_FOUND",g}var z=c[f]={exports:{}};i[f][0].call(z.exports,function(A){var _=i[f][1][A];return u(_||A)},z,z.exports,s,i,c,l)}return c[f].exports}for(var d=typeof mA=="function"&&mA,p=0;p<l.length;p++)u(l[p]);return u}return s}()({1:[function(s,i,c){function l(M){var y=M.length;if(0<y%4)throw new Error("Invalid string. Length must be a multiple of 4");var k=M.indexOf("=");k===-1&&(k=y);var S=k===y?0:4-k%4;return[k,S]}function u(M,y,k){return 3*(y+k)/4-k}function d(M){var y,k,S=l(M),C=S[0],R=S[1],T=new z(u(M,C,R)),E=0,B=0<R?C-4:C;for(k=0;k<B;k+=4)y=g[M.charCodeAt(k)]<<18|g[M.charCodeAt(k+1)]<<12|g[M.charCodeAt(k+2)]<<6|g[M.charCodeAt(k+3)],T[E++]=255&y>>16,T[E++]=255&y>>8,T[E++]=255&y;return R===2&&(y=g[M.charCodeAt(k)]<<2|g[M.charCodeAt(k+1)]>>4,T[E++]=255&y),R===1&&(y=g[M.charCodeAt(k)]<<10|g[M.charCodeAt(k+1)]<<4|g[M.charCodeAt(k+2)]>>2,T[E++]=255&y>>8,T[E++]=255&y),T}function p(M){return h[63&M>>18]+h[63&M>>12]+h[63&M>>6]+h[63&M]}function f(M,y,k){for(var S,C=[],R=y;R<k;R+=3)S=(16711680&M[R]<<16)+(65280&M[R+1]<<8)+(255&M[R+2]),C.push(p(S));return C.join("")}function b(M){for(var y,k=M.length,S=k%3,C=[],R=16383,T=0,E=k-S;T<E;T+=R)C.push(f(M,T,T+R>E?E:T+R));return S===1?(y=M[k-1],C.push(h[y>>2]+h[63&y<<4]+"==")):S===2&&(y=(M[k-2]<<8)+M[k-1],C.push(h[y>>10]+h[63&y>>4]+h[63&y<<2]+"=")),C.join("")}c.byteLength=function(M){var y=l(M),k=y[0],S=y[1];return 3*(k+S)/4-S},c.toByteArray=d,c.fromByteArray=b;for(var h=[],g=[],z=typeof Uint8Array>"u"?Array:Uint8Array,A="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",_=0,v=A.length;_<v;++_)h[_]=A[_],g[A.charCodeAt(_)]=_;g[45]=62,g[95]=63},{}],2:[function(){},{}],3:[function(s,i,c){(function(){(function(){var l=String.fromCharCode,u=Math.min;function d(L){if(2147483647<L)throw new RangeError('The value "'+L+'" is invalid for option "size"');var U=new Uint8Array(L);return U.__proto__=p.prototype,U}function p(L,U,ne){if(typeof L=="number"){if(typeof U=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return g(L)}return f(L,U,ne)}function f(L,U,ne){if(typeof L=="string")return z(L,U);if(ArrayBuffer.isView(L))return A(L);if(L==null)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof L);if(re(L,ArrayBuffer)||L&&re(L.buffer,ArrayBuffer))return _(L,U,ne);if(typeof L=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var ve=L.valueOf&&L.valueOf();if(ve!=null&&ve!==L)return p.from(ve,U,ne);var qe=v(L);if(qe)return qe;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof L[Symbol.toPrimitive]=="function")return p.from(L[Symbol.toPrimitive]("string"),U,ne);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof L)}function b(L){if(typeof L!="number")throw new TypeError('"size" argument must be of type number');if(0>L)throw new RangeError('The value "'+L+'" is invalid for option "size"')}function h(L,U,ne){return b(L),0>=L||U===void 0?d(L):typeof ne=="string"?d(L).fill(U,ne):d(L).fill(U)}function g(L){return b(L),d(0>L?0:0|M(L))}function z(L,U){if((typeof U!="string"||U==="")&&(U="utf8"),!p.isEncoding(U))throw new TypeError("Unknown encoding: "+U);var ne=0|y(L,U),ve=d(ne),qe=ve.write(L,U);return qe!==ne&&(ve=ve.slice(0,qe)),ve}function A(L){for(var U=0>L.length?0:0|M(L.length),ne=d(U),ve=0;ve<U;ve+=1)ne[ve]=255&L[ve];return ne}function _(L,U,ne){if(0>U||L.byteLength<U)throw new RangeError('"offset" is outside of buffer bounds');if(L.byteLength<U+(ne||0))throw new RangeError('"length" is outside of buffer bounds');var ve;return ve=U===void 0&&ne===void 0?new Uint8Array(L):ne===void 0?new Uint8Array(L,U):new Uint8Array(L,U,ne),ve.__proto__=p.prototype,ve}function v(L){if(p.isBuffer(L)){var U=0|M(L.length),ne=d(U);return ne.length===0||L.copy(ne,0,0,U),ne}return L.length===void 0?L.type==="Buffer"&&Array.isArray(L.data)?A(L.data):void 0:typeof L.length!="number"||pe(L.length)?d(0):A(L)}function M(L){if(L>=2147483647)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|L}function y(L,U){if(p.isBuffer(L))return L.length;if(ArrayBuffer.isView(L)||re(L,ArrayBuffer))return L.byteLength;if(typeof L!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof L);var ne=L.length,ve=2<arguments.length&&arguments[2]===!0;if(!ve&&ne===0)return 0;for(var qe=!1;;)switch(U){case"ascii":case"latin1":case"binary":return ne;case"utf8":case"utf-8":return ye(L).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*ne;case"hex":return ne>>>1;case"base64":return ie(L).length;default:if(qe)return ve?-1:ye(L).length;U=(""+U).toLowerCase(),qe=!0}}function k(L,U,ne){var ve=!1;if((U===void 0||0>U)&&(U=0),U>this.length||((ne===void 0||ne>this.length)&&(ne=this.length),0>=ne)||(ne>>>=0,U>>>=0,ne<=U))return"";for(L||(L="utf8");;)switch(L){case"hex":return V(this,U,ne);case"utf8":case"utf-8":return $(this,U,ne);case"ascii":return X(this,U,ne);case"latin1":case"binary":return Z(this,U,ne);case"base64":return P(this,U,ne);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ee(this,U,ne);default:if(ve)throw new TypeError("Unknown encoding: "+L);L=(L+"").toLowerCase(),ve=!0}}function S(L,U,ne){var ve=L[U];L[U]=L[ne],L[ne]=ve}function C(L,U,ne,ve,qe){if(L.length===0)return-1;if(typeof ne=="string"?(ve=ne,ne=0):2147483647<ne?ne=2147483647:-2147483648>ne&&(ne=-2147483648),ne=+ne,pe(ne)&&(ne=qe?0:L.length-1),0>ne&&(ne=L.length+ne),ne>=L.length){if(qe)return-1;ne=L.length-1}else if(0>ne)if(qe)ne=0;else return-1;if(typeof U=="string"&&(U=p.from(U,ve)),p.isBuffer(U))return U.length===0?-1:R(L,U,ne,ve,qe);if(typeof U=="number")return U&=255,typeof Uint8Array.prototype.indexOf=="function"?qe?Uint8Array.prototype.indexOf.call(L,U,ne):Uint8Array.prototype.lastIndexOf.call(L,U,ne):R(L,[U],ne,ve,qe);throw new TypeError("val must be string, number or Buffer")}function R(L,U,ne,ve,qe){function Pe(fe,Re){return rt===1?fe[Re]:fe.readUInt16BE(Re*rt)}var rt=1,qt=L.length,wt=U.length;if(ve!==void 0&&(ve=(ve+"").toLowerCase(),ve==="ucs2"||ve==="ucs-2"||ve==="utf16le"||ve==="utf-16le")){if(2>L.length||2>U.length)return-1;rt=2,qt/=2,wt/=2,ne/=2}var Bt;if(qe){var ae=-1;for(Bt=ne;Bt<qt;Bt++)if(Pe(L,Bt)!==Pe(U,ae===-1?0:Bt-ae))ae!==-1&&(Bt-=Bt-ae),ae=-1;else if(ae===-1&&(ae=Bt),Bt-ae+1===wt)return ae*rt}else for(ne+wt>qt&&(ne=qt-wt),Bt=ne;0<=Bt;Bt--){for(var H=!0,Y=0;Y<wt;Y++)if(Pe(L,Bt+Y)!==Pe(U,Y)){H=!1;break}if(H)return Bt}return-1}function T(L,U,ne,ve){ne=+ne||0;var qe=L.length-ne;ve?(ve=+ve,ve>qe&&(ve=qe)):ve=qe;var Pe=U.length;ve>Pe/2&&(ve=Pe/2);for(var rt,qt=0;qt<ve;++qt){if(rt=parseInt(U.substr(2*qt,2),16),pe(rt))return qt;L[ne+qt]=rt}return qt}function E(L,U,ne,ve){return we(ye(U,L.length-ne),L,ne,ve)}function B(L,U,ne,ve){return we(Ne(U),L,ne,ve)}function N(L,U,ne,ve){return B(L,U,ne,ve)}function j(L,U,ne,ve){return we(ie(U),L,ne,ve)}function I(L,U,ne,ve){return we(je(U,L.length-ne),L,ne,ve)}function P(L,U,ne){return U===0&&ne===L.length?ke.fromByteArray(L):ke.fromByteArray(L.slice(U,ne))}function $(L,U,ne){ne=u(L.length,ne);for(var ve=[],qe=U;qe<ne;){var Pe=L[qe],rt=null,qt=239<Pe?4:223<Pe?3:191<Pe?2:1;if(qe+qt<=ne){var wt,Bt,ae,H;qt===1?128>Pe&&(rt=Pe):qt===2?(wt=L[qe+1],(192&wt)==128&&(H=(31&Pe)<<6|63&wt,127<H&&(rt=H))):qt===3?(wt=L[qe+1],Bt=L[qe+2],(192&wt)==128&&(192&Bt)==128&&(H=(15&Pe)<<12|(63&wt)<<6|63&Bt,2047<H&&(55296>H||57343<H)&&(rt=H))):qt===4&&(wt=L[qe+1],Bt=L[qe+2],ae=L[qe+3],(192&wt)==128&&(192&Bt)==128&&(192&ae)==128&&(H=(15&Pe)<<18|(63&wt)<<12|(63&Bt)<<6|63&ae,65535<H&&1114112>H&&(rt=H)))}rt===null?(rt=65533,qt=1):65535<rt&&(rt-=65536,ve.push(55296|1023&rt>>>10),rt=56320|1023&rt),ve.push(rt),qe+=qt}return F(ve)}function F(L){var U=L.length;if(U<=4096)return l.apply(String,L);for(var ne="",ve=0;ve<U;)ne+=l.apply(String,L.slice(ve,ve+=4096));return ne}function X(L,U,ne){var ve="";ne=u(L.length,ne);for(var qe=U;qe<ne;++qe)ve+=l(127&L[qe]);return ve}function Z(L,U,ne){var ve="";ne=u(L.length,ne);for(var qe=U;qe<ne;++qe)ve+=l(L[qe]);return ve}function V(L,U,ne){var ve=L.length;(!U||0>U)&&(U=0),(!ne||0>ne||ne>ve)&&(ne=ve);for(var qe="",Pe=U;Pe<ne;++Pe)qe+=Ae(L[Pe]);return qe}function ee(L,U,ne){for(var ve=L.slice(U,ne),qe="",Pe=0;Pe<ve.length;Pe+=2)qe+=l(ve[Pe]+256*ve[Pe+1]);return qe}function te(L,U,ne){if(L%1!=0||0>L)throw new RangeError("offset is not uint");if(L+U>ne)throw new RangeError("Trying to access beyond buffer length")}function J(L,U,ne,ve,qe,Pe){if(!p.isBuffer(L))throw new TypeError('"buffer" argument must be a Buffer instance');if(U>qe||U<Pe)throw new RangeError('"value" argument is out of bounds');if(ne+ve>L.length)throw new RangeError("Index out of range")}function ue(L,U,ne,ve){if(ne+ve>L.length)throw new RangeError("Index out of range");if(0>ne)throw new RangeError("Index out of range")}function ce(L,U,ne,ve,qe){return U=+U,ne>>>=0,qe||ue(L,U,ne,4),Se.write(L,U,ne,ve,23,4),ne+4}function me(L,U,ne,ve,qe){return U=+U,ne>>>=0,qe||ue(L,U,ne,8),Se.write(L,U,ne,ve,52,8),ne+8}function de(L){if(L=L.split("=")[0],L=L.trim().replace(se,""),2>L.length)return"";for(;L.length%4!=0;)L+="=";return L}function Ae(L){return 16>L?"0"+L.toString(16):L.toString(16)}function ye(L,U){U=U||1/0;for(var ne,ve=L.length,qe=null,Pe=[],rt=0;rt<ve;++rt){if(ne=L.charCodeAt(rt),55295<ne&&57344>ne){if(!qe){if(56319<ne){-1<(U-=3)&&Pe.push(239,191,189);continue}else if(rt+1===ve){-1<(U-=3)&&Pe.push(239,191,189);continue}qe=ne;continue}if(56320>ne){-1<(U-=3)&&Pe.push(239,191,189),qe=ne;continue}ne=(qe-55296<<10|ne-56320)+65536}else qe&&-1<(U-=3)&&Pe.push(239,191,189);if(qe=null,128>ne){if(0>(U-=1))break;Pe.push(ne)}else if(2048>ne){if(0>(U-=2))break;Pe.push(192|ne>>6,128|63&ne)}else if(65536>ne){if(0>(U-=3))break;Pe.push(224|ne>>12,128|63&ne>>6,128|63&ne)}else if(1114112>ne){if(0>(U-=4))break;Pe.push(240|ne>>18,128|63&ne>>12,128|63&ne>>6,128|63&ne)}else throw new Error("Invalid code point")}return Pe}function Ne(L){for(var U=[],ne=0;ne<L.length;++ne)U.push(255&L.charCodeAt(ne));return U}function je(L,U){for(var ne,ve,qe,Pe=[],rt=0;rt<L.length&&!(0>(U-=2));++rt)ne=L.charCodeAt(rt),ve=ne>>8,qe=ne%256,Pe.push(qe),Pe.push(ve);return Pe}function ie(L){return ke.toByteArray(de(L))}function we(L,U,ne,ve){for(var qe=0;qe<ve&&!(qe+ne>=U.length||qe>=L.length);++qe)U[qe+ne]=L[qe];return qe}function re(L,U){return L instanceof U||L!=null&&L.constructor!=null&&L.constructor.name!=null&&L.constructor.name===U.name}function pe(L){return L!==L}var ke=s("base64-js"),Se=s("ieee754");c.Buffer=p,c.SlowBuffer=function(L){return+L!=L&&(L=0),p.alloc(+L)},c.INSPECT_MAX_BYTES=50,c.kMaxLength=2147483647,p.TYPED_ARRAY_SUPPORT=function(){try{var L=new Uint8Array(1);return L.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},L.foo()===42}catch{return!1}}(),p.TYPED_ARRAY_SUPPORT||typeof console>"u"||typeof console.error!="function"||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(p.prototype,"parent",{enumerable:!0,get:function(){return p.isBuffer(this)?this.buffer:void 0}}),Object.defineProperty(p.prototype,"offset",{enumerable:!0,get:function(){return p.isBuffer(this)?this.byteOffset:void 0}}),typeof Symbol<"u"&&Symbol.species!=null&&p[Symbol.species]===p&&Object.defineProperty(p,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),p.poolSize=8192,p.from=function(L,U,ne){return f(L,U,ne)},p.prototype.__proto__=Uint8Array.prototype,p.__proto__=Uint8Array,p.alloc=function(L,U,ne){return h(L,U,ne)},p.allocUnsafe=function(L){return g(L)},p.allocUnsafeSlow=function(L){return g(L)},p.isBuffer=function(L){return L!=null&&L._isBuffer===!0&&L!==p.prototype},p.compare=function(L,U){if(re(L,Uint8Array)&&(L=p.from(L,L.offset,L.byteLength)),re(U,Uint8Array)&&(U=p.from(U,U.offset,U.byteLength)),!p.isBuffer(L)||!p.isBuffer(U))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(L===U)return 0;for(var ne=L.length,ve=U.length,qe=0,Pe=u(ne,ve);qe<Pe;++qe)if(L[qe]!==U[qe]){ne=L[qe],ve=U[qe];break}return ne<ve?-1:ve<ne?1:0},p.isEncoding=function(L){switch((L+"").toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},p.concat=function(L,U){if(!Array.isArray(L))throw new TypeError('"list" argument must be an Array of Buffers');if(L.length===0)return p.alloc(0);var ne;if(U===void 0)for(U=0,ne=0;ne<L.length;++ne)U+=L[ne].length;var ve=p.allocUnsafe(U),qe=0;for(ne=0;ne<L.length;++ne){var Pe=L[ne];if(re(Pe,Uint8Array)&&(Pe=p.from(Pe)),!p.isBuffer(Pe))throw new TypeError('"list" argument must be an Array of Buffers');Pe.copy(ve,qe),qe+=Pe.length}return ve},p.byteLength=y,p.prototype._isBuffer=!0,p.prototype.swap16=function(){var L=this.length;if(L%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var U=0;U<L;U+=2)S(this,U,U+1);return this},p.prototype.swap32=function(){var L=this.length;if(L%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var U=0;U<L;U+=4)S(this,U,U+3),S(this,U+1,U+2);return this},p.prototype.swap64=function(){var L=this.length;if(L%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var U=0;U<L;U+=8)S(this,U,U+7),S(this,U+1,U+6),S(this,U+2,U+5),S(this,U+3,U+4);return this},p.prototype.toString=function(){var L=this.length;return L===0?"":arguments.length===0?$(this,0,L):k.apply(this,arguments)},p.prototype.toLocaleString=p.prototype.toString,p.prototype.equals=function(L){if(!p.isBuffer(L))throw new TypeError("Argument must be a Buffer");return this===L||p.compare(this,L)===0},p.prototype.inspect=function(){var L="",U=c.INSPECT_MAX_BYTES;return L=this.toString("hex",0,U).replace(/(.{2})/g,"$1 ").trim(),this.length>U&&(L+=" ... "),"<Buffer "+L+">"},p.prototype.compare=function(L,U,ne,ve,qe){if(re(L,Uint8Array)&&(L=p.from(L,L.offset,L.byteLength)),!p.isBuffer(L))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof L);if(U===void 0&&(U=0),ne===void 0&&(ne=L?L.length:0),ve===void 0&&(ve=0),qe===void 0&&(qe=this.length),0>U||ne>L.length||0>ve||qe>this.length)throw new RangeError("out of range index");if(ve>=qe&&U>=ne)return 0;if(ve>=qe)return-1;if(U>=ne)return 1;if(U>>>=0,ne>>>=0,ve>>>=0,qe>>>=0,this===L)return 0;for(var Pe=qe-ve,rt=ne-U,qt=u(Pe,rt),wt=this.slice(ve,qe),Bt=L.slice(U,ne),ae=0;ae<qt;++ae)if(wt[ae]!==Bt[ae]){Pe=wt[ae],rt=Bt[ae];break}return Pe<rt?-1:rt<Pe?1:0},p.prototype.includes=function(L,U,ne){return this.indexOf(L,U,ne)!==-1},p.prototype.indexOf=function(L,U,ne){return C(this,L,U,ne,!0)},p.prototype.lastIndexOf=function(L,U,ne){return C(this,L,U,ne,!1)},p.prototype.write=function(L,U,ne,ve){if(U===void 0)ve="utf8",ne=this.length,U=0;else if(ne===void 0&&typeof U=="string")ve=U,ne=this.length,U=0;else if(isFinite(U))U>>>=0,isFinite(ne)?(ne>>>=0,ve===void 0&&(ve="utf8")):(ve=ne,ne=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var qe=this.length-U;if((ne===void 0||ne>qe)&&(ne=qe),0<L.length&&(0>ne||0>U)||U>this.length)throw new RangeError("Attempt to write outside buffer bounds");ve||(ve="utf8");for(var Pe=!1;;)switch(ve){case"hex":return T(this,L,U,ne);case"utf8":case"utf-8":return E(this,L,U,ne);case"ascii":return B(this,L,U,ne);case"latin1":case"binary":return N(this,L,U,ne);case"base64":return j(this,L,U,ne);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,L,U,ne);default:if(Pe)throw new TypeError("Unknown encoding: "+ve);ve=(""+ve).toLowerCase(),Pe=!0}},p.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},p.prototype.slice=function(L,U){var ne=this.length;L=~~L,U=U===void 0?ne:~~U,0>L?(L+=ne,0>L&&(L=0)):L>ne&&(L=ne),0>U?(U+=ne,0>U&&(U=0)):U>ne&&(U=ne),U<L&&(U=L);var ve=this.subarray(L,U);return ve.__proto__=p.prototype,ve},p.prototype.readUIntLE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=this[L],qe=1,Pe=0;++Pe<U&&(qe*=256);)ve+=this[L+Pe]*qe;return ve},p.prototype.readUIntBE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=this[L+--U],qe=1;0<U&&(qe*=256);)ve+=this[L+--U]*qe;return ve},p.prototype.readUInt8=function(L,U){return L>>>=0,U||te(L,1,this.length),this[L]},p.prototype.readUInt16LE=function(L,U){return L>>>=0,U||te(L,2,this.length),this[L]|this[L+1]<<8},p.prototype.readUInt16BE=function(L,U){return L>>>=0,U||te(L,2,this.length),this[L]<<8|this[L+1]},p.prototype.readUInt32LE=function(L,U){return L>>>=0,U||te(L,4,this.length),(this[L]|this[L+1]<<8|this[L+2]<<16)+16777216*this[L+3]},p.prototype.readUInt32BE=function(L,U){return L>>>=0,U||te(L,4,this.length),16777216*this[L]+(this[L+1]<<16|this[L+2]<<8|this[L+3])},p.prototype.readIntLE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=this[L],qe=1,Pe=0;++Pe<U&&(qe*=256);)ve+=this[L+Pe]*qe;return qe*=128,ve>=qe&&(ve-=r(2,8*U)),ve},p.prototype.readIntBE=function(L,U,ne){L>>>=0,U>>>=0,ne||te(L,U,this.length);for(var ve=U,qe=1,Pe=this[L+--ve];0<ve&&(qe*=256);)Pe+=this[L+--ve]*qe;return qe*=128,Pe>=qe&&(Pe-=r(2,8*U)),Pe},p.prototype.readInt8=function(L,U){return L>>>=0,U||te(L,1,this.length),128&this[L]?-1*(255-this[L]+1):this[L]},p.prototype.readInt16LE=function(L,U){L>>>=0,U||te(L,2,this.length);var ne=this[L]|this[L+1]<<8;return 32768&ne?4294901760|ne:ne},p.prototype.readInt16BE=function(L,U){L>>>=0,U||te(L,2,this.length);var ne=this[L+1]|this[L]<<8;return 32768&ne?4294901760|ne:ne},p.prototype.readInt32LE=function(L,U){return L>>>=0,U||te(L,4,this.length),this[L]|this[L+1]<<8|this[L+2]<<16|this[L+3]<<24},p.prototype.readInt32BE=function(L,U){return L>>>=0,U||te(L,4,this.length),this[L]<<24|this[L+1]<<16|this[L+2]<<8|this[L+3]},p.prototype.readFloatLE=function(L,U){return L>>>=0,U||te(L,4,this.length),Se.read(this,L,!0,23,4)},p.prototype.readFloatBE=function(L,U){return L>>>=0,U||te(L,4,this.length),Se.read(this,L,!1,23,4)},p.prototype.readDoubleLE=function(L,U){return L>>>=0,U||te(L,8,this.length),Se.read(this,L,!0,52,8)},p.prototype.readDoubleBE=function(L,U){return L>>>=0,U||te(L,8,this.length),Se.read(this,L,!1,52,8)},p.prototype.writeUIntLE=function(L,U,ne,ve){if(L=+L,U>>>=0,ne>>>=0,!ve){var qe=r(2,8*ne)-1;J(this,L,U,ne,qe,0)}var Pe=1,rt=0;for(this[U]=255&L;++rt<ne&&(Pe*=256);)this[U+rt]=255&L/Pe;return U+ne},p.prototype.writeUIntBE=function(L,U,ne,ve){if(L=+L,U>>>=0,ne>>>=0,!ve){var qe=r(2,8*ne)-1;J(this,L,U,ne,qe,0)}var Pe=ne-1,rt=1;for(this[U+Pe]=255&L;0<=--Pe&&(rt*=256);)this[U+Pe]=255&L/rt;return U+ne},p.prototype.writeUInt8=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,1,255,0),this[U]=255&L,U+1},p.prototype.writeUInt16LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,65535,0),this[U]=255&L,this[U+1]=L>>>8,U+2},p.prototype.writeUInt16BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,65535,0),this[U]=L>>>8,this[U+1]=255&L,U+2},p.prototype.writeUInt32LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,4294967295,0),this[U+3]=L>>>24,this[U+2]=L>>>16,this[U+1]=L>>>8,this[U]=255&L,U+4},p.prototype.writeUInt32BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,4294967295,0),this[U]=L>>>24,this[U+1]=L>>>16,this[U+2]=L>>>8,this[U+3]=255&L,U+4},p.prototype.writeIntLE=function(L,U,ne,ve){if(L=+L,U>>>=0,!ve){var qe=r(2,8*ne-1);J(this,L,U,ne,qe-1,-qe)}var Pe=0,rt=1,qt=0;for(this[U]=255&L;++Pe<ne&&(rt*=256);)0>L&&qt===0&&this[U+Pe-1]!==0&&(qt=1),this[U+Pe]=255&(L/rt>>0)-qt;return U+ne},p.prototype.writeIntBE=function(L,U,ne,ve){if(L=+L,U>>>=0,!ve){var qe=r(2,8*ne-1);J(this,L,U,ne,qe-1,-qe)}var Pe=ne-1,rt=1,qt=0;for(this[U+Pe]=255&L;0<=--Pe&&(rt*=256);)0>L&&qt===0&&this[U+Pe+1]!==0&&(qt=1),this[U+Pe]=255&(L/rt>>0)-qt;return U+ne},p.prototype.writeInt8=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,1,127,-128),0>L&&(L=255+L+1),this[U]=255&L,U+1},p.prototype.writeInt16LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,32767,-32768),this[U]=255&L,this[U+1]=L>>>8,U+2},p.prototype.writeInt16BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,2,32767,-32768),this[U]=L>>>8,this[U+1]=255&L,U+2},p.prototype.writeInt32LE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,2147483647,-2147483648),this[U]=255&L,this[U+1]=L>>>8,this[U+2]=L>>>16,this[U+3]=L>>>24,U+4},p.prototype.writeInt32BE=function(L,U,ne){return L=+L,U>>>=0,ne||J(this,L,U,4,2147483647,-2147483648),0>L&&(L=4294967295+L+1),this[U]=L>>>24,this[U+1]=L>>>16,this[U+2]=L>>>8,this[U+3]=255&L,U+4},p.prototype.writeFloatLE=function(L,U,ne){return ce(this,L,U,!0,ne)},p.prototype.writeFloatBE=function(L,U,ne){return ce(this,L,U,!1,ne)},p.prototype.writeDoubleLE=function(L,U,ne){return me(this,L,U,!0,ne)},p.prototype.writeDoubleBE=function(L,U,ne){return me(this,L,U,!1,ne)},p.prototype.copy=function(L,U,ne,ve){if(!p.isBuffer(L))throw new TypeError("argument should be a Buffer");if(ne||(ne=0),ve||ve===0||(ve=this.length),U>=L.length&&(U=L.length),U||(U=0),0<ve&&ve<ne&&(ve=ne),ve===ne||L.length===0||this.length===0)return 0;if(0>U)throw new RangeError("targetStart out of bounds");if(0>ne||ne>=this.length)throw new RangeError("Index out of range");if(0>ve)throw new RangeError("sourceEnd out of bounds");ve>this.length&&(ve=this.length),L.length-U<ve-ne&&(ve=L.length-U+ne);var qe=ve-ne;if(this===L&&typeof Uint8Array.prototype.copyWithin=="function")this.copyWithin(U,ne,ve);else if(this===L&&ne<U&&U<ve)for(var Pe=qe-1;0<=Pe;--Pe)L[Pe+U]=this[Pe+ne];else Uint8Array.prototype.set.call(L,this.subarray(ne,ve),U);return qe},p.prototype.fill=function(L,U,ne,ve){if(typeof L=="string"){if(typeof U=="string"?(ve=U,U=0,ne=this.length):typeof ne=="string"&&(ve=ne,ne=this.length),ve!==void 0&&typeof ve!="string")throw new TypeError("encoding must be a string");if(typeof ve=="string"&&!p.isEncoding(ve))throw new TypeError("Unknown encoding: "+ve);if(L.length===1){var qe=L.charCodeAt(0);(ve==="utf8"&&128>qe||ve==="latin1")&&(L=qe)}}else typeof L=="number"&&(L&=255);if(0>U||this.length<U||this.length<ne)throw new RangeError("Out of range index");if(ne<=U)return this;U>>>=0,ne=ne===void 0?this.length:ne>>>0,L||(L=0);var Pe;if(typeof L=="number")for(Pe=U;Pe<ne;++Pe)this[Pe]=L;else{var rt=p.isBuffer(L)?L:p.from(L,ve),qt=rt.length;if(qt===0)throw new TypeError('The value "'+L+'" is invalid for argument "value"');for(Pe=0;Pe<ne-U;++Pe)this[Pe+U]=rt[Pe%qt]}return this};var se=/[^+/0-9A-Za-z-_]/g}).call(this)}).call(this,s("buffer").Buffer)},{"base64-js":1,buffer:3,ieee754:9}],4:[function(s,i,c){(function(l){(function(){function u(){let p;try{p=c.storage.getItem("debug")}catch{}return!p&&typeof l<"u"&&"env"in l&&(p=l.env.DEBUG),p}c.formatArgs=function(p){if(p[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+p[0]+(this.useColors?"%c ":" ")+"+"+i.exports.humanize(this.diff),!this.useColors)return;const f="color: "+this.color;p.splice(1,0,f,"color: inherit");let b=0,h=0;p[0].replace(/%[a-zA-Z%]/g,g=>{g==="%%"||(b++,g==="%c"&&(h=b))}),p.splice(h,0,f)},c.save=function(p){try{p?c.storage.setItem("debug",p):c.storage.removeItem("debug")}catch{}},c.load=u,c.useColors=function(){return!!(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))||!(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))&&(typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&31<=parseInt(RegExp.$1,10)||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},c.storage=function(){try{return localStorage}catch{}}(),c.destroy=(()=>{let p=!1;return()=>{p||(p=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),c.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],c.log=console.debug||console.log||(()=>{}),i.exports=s("./common")(c);const{formatters:d}=i.exports;d.j=function(p){try{return JSON.stringify(p)}catch(f){return"[UnexpectedJSONParseError]: "+f.message}}}).call(this)}).call(this,s("_process"))},{"./common":5,_process:12}],5:[function(s,i){i.exports=function(c){function l(p){function f(...g){if(!f.enabled)return;const z=f,A=+new Date,_=A-(b||A);z.diff=_,z.prev=b,z.curr=A,b=A,g[0]=l.coerce(g[0]),typeof g[0]!="string"&&g.unshift("%O");let v=0;g[0]=g[0].replace(/%([a-zA-Z%])/g,(y,k)=>{if(y==="%%")return"%";v++;const S=l.formatters[k];if(typeof S=="function"){const C=g[v];y=S.call(z,C),g.splice(v,1),v--}return y}),l.formatArgs.call(z,g),(z.log||l.log).apply(z,g)}let b,h=null;return f.namespace=p,f.useColors=l.useColors(),f.color=l.selectColor(p),f.extend=u,f.destroy=l.destroy,Object.defineProperty(f,"enabled",{enumerable:!0,configurable:!1,get:()=>h===null?l.enabled(p):h,set:g=>{h=g}}),typeof l.init=="function"&&l.init(f),f}function u(p,f){const b=l(this.namespace+(typeof f>"u"?":":f)+p);return b.log=this.log,b}function d(p){return p.toString().substring(2,p.toString().length-2).replace(/\.\*\?$/,"*")}return l.debug=l,l.default=l,l.coerce=function(p){return p instanceof Error?p.stack||p.message:p},l.disable=function(){const p=[...l.names.map(d),...l.skips.map(d).map(f=>"-"+f)].join(",");return l.enable(""),p},l.enable=function(p){l.save(p),l.names=[],l.skips=[];let f;const b=(typeof p=="string"?p:"").split(/[\s,]+/),h=b.length;for(f=0;f<h;f++)b[f]&&(p=b[f].replace(/\*/g,".*?"),p[0]==="-"?l.skips.push(new RegExp("^"+p.substr(1)+"$")):l.names.push(new RegExp("^"+p+"$")))},l.enabled=function(p){if(p[p.length-1]==="*")return!0;let f,b;for(f=0,b=l.skips.length;f<b;f++)if(l.skips[f].test(p))return!1;for(f=0,b=l.names.length;f<b;f++)if(l.names[f].test(p))return!0;return!1},l.humanize=s("ms"),l.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(c).forEach(p=>{l[p]=c[p]}),l.names=[],l.skips=[],l.formatters={},l.selectColor=function(p){let f=0;for(let b=0;b<p.length;b++)f=(f<<5)-f+p.charCodeAt(b),f|=0;return l.colors[o(f)%l.colors.length]},l.enable(l.load()),l}},{ms:11}],6:[function(s,i){function c(l,u){for(const d in u)Object.defineProperty(l,d,{value:u[d],enumerable:!0,configurable:!0});return l}i.exports=function(l,u,d){if(!l||typeof l=="string")throw new TypeError("Please pass an Error to err-code");d||(d={}),typeof u=="object"&&(d=u,u=""),u&&(d.code=u);try{return c(l,d)}catch{d.message=l.message,d.stack=l.stack;const f=function(){};return f.prototype=Object.create(Object.getPrototypeOf(l)),c(new f,d)}}},{}],7:[function(s,i){function c(T){console&&console.warn&&console.warn(T)}function l(){l.init.call(this)}function u(T){if(typeof T!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof T)}function d(T){return T._maxListeners===void 0?l.defaultMaxListeners:T._maxListeners}function p(T,E,B,N){var j,I,P;if(u(B),I=T._events,I===void 0?(I=T._events=Object.create(null),T._eventsCount=0):(I.newListener!==void 0&&(T.emit("newListener",E,B.listener?B.listener:B),I=T._events),P=I[E]),P===void 0)P=I[E]=B,++T._eventsCount;else if(typeof P=="function"?P=I[E]=N?[B,P]:[P,B]:N?P.unshift(B):P.push(B),j=d(T),0<j&&P.length>j&&!P.warned){P.warned=!0;var $=new Error("Possible EventEmitter memory leak detected. "+P.length+" "+(E+" listeners added. Use emitter.setMaxListeners() to increase limit"));$.name="MaxListenersExceededWarning",$.emitter=T,$.type=E,$.count=P.length,c($)}return T}function f(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function b(T,E,B){var N={fired:!1,wrapFn:void 0,target:T,type:E,listener:B},j=f.bind(N);return j.listener=B,N.wrapFn=j,j}function h(T,E,B){var N=T._events;if(N===void 0)return[];var j=N[E];return j===void 0?[]:typeof j=="function"?B?[j.listener||j]:[j]:B?_(j):z(j,j.length)}function g(T){var E=this._events;if(E!==void 0){var B=E[T];if(typeof B=="function")return 1;if(B!==void 0)return B.length}return 0}function z(T,E){for(var B=Array(E),N=0;N<E;++N)B[N]=T[N];return B}function A(T,E){for(;E+1<T.length;E++)T[E]=T[E+1];T.pop()}function _(T){for(var E=Array(T.length),B=0;B<E.length;++B)E[B]=T[B].listener||T[B];return E}function v(T,E,B){typeof T.on=="function"&&M(T,"error",E,B)}function M(T,E,B,N){if(typeof T.on=="function")N.once?T.once(E,B):T.on(E,B);else if(typeof T.addEventListener=="function")T.addEventListener(E,function j(I){N.once&&T.removeEventListener(E,j),B(I)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof T)}var y,k=typeof Reflect=="object"?Reflect:null,S=k&&typeof k.apply=="function"?k.apply:function(T,E,B){return Function.prototype.apply.call(T,E,B)};y=k&&typeof k.ownKeys=="function"?k.ownKeys:Object.getOwnPropertySymbols?function(T){return Object.getOwnPropertyNames(T).concat(Object.getOwnPropertySymbols(T))}:function(T){return Object.getOwnPropertyNames(T)};var C=Number.isNaN||function(T){return T!==T};i.exports=l,i.exports.once=function(T,E){return new Promise(function(B,N){function j(P){T.removeListener(E,I),N(P)}function I(){typeof T.removeListener=="function"&&T.removeListener("error",j),B([].slice.call(arguments))}M(T,E,I,{once:!0}),E!=="error"&&v(T,j,{once:!0})})},l.EventEmitter=l,l.prototype._events=void 0,l.prototype._eventsCount=0,l.prototype._maxListeners=void 0;var R=10;Object.defineProperty(l,"defaultMaxListeners",{enumerable:!0,get:function(){return R},set:function(T){if(typeof T!="number"||0>T||C(T))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+T+".");R=T}}),l.init=function(){(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},l.prototype.setMaxListeners=function(T){if(typeof T!="number"||0>T||C(T))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+T+".");return this._maxListeners=T,this},l.prototype.getMaxListeners=function(){return d(this)},l.prototype.emit=function(T){for(var E=[],B=1;B<arguments.length;B++)E.push(arguments[B]);var N=T==="error",j=this._events;if(j!==void 0)N=N&&j.error===void 0;else if(!N)return!1;if(N){var I;if(0<E.length&&(I=E[0]),I instanceof Error)throw I;var P=new Error("Unhandled error."+(I?" ("+I.message+")":""));throw P.context=I,P}var $=j[T];if($===void 0)return!1;if(typeof $=="function")S($,this,E);else for(var F=$.length,X=z($,F),B=0;B<F;++B)S(X[B],this,E);return!0},l.prototype.addListener=function(T,E){return p(this,T,E,!1)},l.prototype.on=l.prototype.addListener,l.prototype.prependListener=function(T,E){return p(this,T,E,!0)},l.prototype.once=function(T,E){return u(E),this.on(T,b(this,T,E)),this},l.prototype.prependOnceListener=function(T,E){return u(E),this.prependListener(T,b(this,T,E)),this},l.prototype.removeListener=function(T,E){var B,N,j,I,P;if(u(E),N=this._events,N===void 0)return this;if(B=N[T],B===void 0)return this;if(B===E||B.listener===E)--this._eventsCount==0?this._events=Object.create(null):(delete N[T],N.removeListener&&this.emit("removeListener",T,B.listener||E));else if(typeof B!="function"){for(j=-1,I=B.length-1;0<=I;I--)if(B[I]===E||B[I].listener===E){P=B[I].listener,j=I;break}if(0>j)return this;j===0?B.shift():A(B,j),B.length===1&&(N[T]=B[0]),N.removeListener!==void 0&&this.emit("removeListener",T,P||E)}return this},l.prototype.off=l.prototype.removeListener,l.prototype.removeAllListeners=function(T){var E,B,N;if(B=this._events,B===void 0)return this;if(B.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):B[T]!==void 0&&(--this._eventsCount==0?this._events=Object.create(null):delete B[T]),this;if(arguments.length===0){var j,I=Object.keys(B);for(N=0;N<I.length;++N)j=I[N],j!=="removeListener"&&this.removeAllListeners(j);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(E=B[T],typeof E=="function")this.removeListener(T,E);else if(E!==void 0)for(N=E.length-1;0<=N;N--)this.removeListener(T,E[N]);return this},l.prototype.listeners=function(T){return h(this,T,!0)},l.prototype.rawListeners=function(T){return h(this,T,!1)},l.listenerCount=function(T,E){return typeof T.listenerCount=="function"?T.listenerCount(E):g.call(T,E)},l.prototype.listenerCount=g,l.prototype.eventNames=function(){return 0<this._eventsCount?y(this._events):[]}},{}],8:[function(s,i){i.exports=function(){if(typeof globalThis>"u")return null;var c={RTCPeerConnection:globalThis.RTCPeerConnection||globalThis.mozRTCPeerConnection||globalThis.webkitRTCPeerConnection,RTCSessionDescription:globalThis.RTCSessionDescription||globalThis.mozRTCSessionDescription||globalThis.webkitRTCSessionDescription,RTCIceCandidate:globalThis.RTCIceCandidate||globalThis.mozRTCIceCandidate||globalThis.webkitRTCIceCandidate};return c.RTCPeerConnection?c:null}},{}],9:[function(s,i,c){/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */c.read=function(l,u,d,p,f){var b,h,g=8*f-p-1,z=(1<<g)-1,A=z>>1,_=-7,v=d?f-1:0,M=d?-1:1,y=l[u+v];for(v+=M,b=y&(1<<-_)-1,y>>=-_,_+=g;0<_;b=256*b+l[u+v],v+=M,_-=8);for(h=b&(1<<-_)-1,b>>=-_,_+=p;0<_;h=256*h+l[u+v],v+=M,_-=8);if(b===0)b=1-A;else{if(b===z)return h?NaN:(y?-1:1)*(1/0);h+=r(2,p),b-=A}return(y?-1:1)*h*r(2,b-p)},c.write=function(l,u,d,p,f,b){var h,g,z,A=Math.LN2,_=Math.log,v=8*b-f-1,M=(1<<v)-1,y=M>>1,k=f===23?r(2,-24)-r(2,-77):0,S=p?0:b-1,C=p?1:-1,R=0>u||u===0&&0>1/u?1:0;for(u=o(u),isNaN(u)||u===1/0?(g=isNaN(u)?1:0,h=M):(h=n(_(u)/A),1>u*(z=r(2,-h))&&(h--,z*=2),u+=1<=h+y?k/z:k*r(2,1-y),2<=u*z&&(h++,z/=2),h+y>=M?(g=0,h=M):1<=h+y?(g=(u*z-1)*r(2,f),h+=y):(g=u*r(2,y-1)*r(2,f),h=0));8<=f;l[d+S]=255&g,S+=C,g/=256,f-=8);for(h=h<<f|g,v+=f;0<v;l[d+S]=255&h,S+=C,h/=256,v-=8);l[d+S-C]|=128*R}},{}],10:[function(s,i){i.exports=typeof Object.create=="function"?function(c,l){l&&(c.super_=l,c.prototype=Object.create(l.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}))}:function(c,l){if(l){c.super_=l;var u=function(){};u.prototype=l.prototype,c.prototype=new u,c.prototype.constructor=c}}},{}],11:[function(s,i){var c=Math.round;function l(f){if(f+="",!(100<f.length)){var b=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(f);if(b){var h=parseFloat(b[1]),g=(b[2]||"ms").toLowerCase();return g==="years"||g==="year"||g==="yrs"||g==="yr"||g==="y"?315576e5*h:g==="weeks"||g==="week"||g==="w"?6048e5*h:g==="days"||g==="day"||g==="d"?864e5*h:g==="hours"||g==="hour"||g==="hrs"||g==="hr"||g==="h"?36e5*h:g==="minutes"||g==="minute"||g==="mins"||g==="min"||g==="m"?6e4*h:g==="seconds"||g==="second"||g==="secs"||g==="sec"||g==="s"?1e3*h:g==="milliseconds"||g==="millisecond"||g==="msecs"||g==="msec"||g==="ms"?h:void 0}}}function u(f){var b=o(f);return 864e5<=b?c(f/864e5)+"d":36e5<=b?c(f/36e5)+"h":6e4<=b?c(f/6e4)+"m":1e3<=b?c(f/1e3)+"s":f+"ms"}function d(f){var b=o(f);return 864e5<=b?p(f,b,864e5,"day"):36e5<=b?p(f,b,36e5,"hour"):6e4<=b?p(f,b,6e4,"minute"):1e3<=b?p(f,b,1e3,"second"):f+" ms"}function p(f,b,h,g){return c(f/h)+" "+g+(b>=1.5*h?"s":"")}i.exports=function(f,b){b=b||{};var h=typeof f;if(h=="string"&&0<f.length)return l(f);if(h==="number"&&isFinite(f))return b.long?d(f):u(f);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(f))}},{}],12:[function(s,i){function c(){throw new Error("setTimeout has not been defined")}function l(){throw new Error("clearTimeout has not been defined")}function u(k){if(g===setTimeout)return setTimeout(k,0);if((g===c||!g)&&setTimeout)return g=setTimeout,setTimeout(k,0);try{return g(k,0)}catch{try{return g.call(null,k,0)}catch{return g.call(this,k,0)}}}function d(k){if(z===clearTimeout)return clearTimeout(k);if((z===l||!z)&&clearTimeout)return z=clearTimeout,clearTimeout(k);try{return z(k)}catch{try{return z.call(null,k)}catch{return z.call(this,k)}}}function p(){M&&_&&(M=!1,_.length?v=_.concat(v):y=-1,v.length&&f())}function f(){if(!M){var k=u(p);M=!0;for(var S=v.length;S;){for(_=v,v=[];++y<S;)_&&_[y].run();y=-1,S=v.length}_=null,M=!1,d(k)}}function b(k,S){this.fun=k,this.array=S}function h(){}var g,z,A=i.exports={};(function(){try{g=typeof setTimeout=="function"?setTimeout:c}catch{g=c}try{z=typeof clearTimeout=="function"?clearTimeout:l}catch{z=l}})();var _,v=[],M=!1,y=-1;A.nextTick=function(k){var S=Array(arguments.length-1);if(1<arguments.length)for(var C=1;C<arguments.length;C++)S[C-1]=arguments[C];v.push(new b(k,S)),v.length!==1||M||u(f)},b.prototype.run=function(){this.fun.apply(null,this.array)},A.title="browser",A.browser=!0,A.env={},A.argv=[],A.version="",A.versions={},A.on=h,A.addListener=h,A.once=h,A.off=h,A.removeListener=h,A.removeAllListeners=h,A.emit=h,A.prependListener=h,A.prependOnceListener=h,A.listeners=function(){return[]},A.binding=function(){throw new Error("process.binding is not supported")},A.cwd=function(){return"/"},A.chdir=function(){throw new Error("process.chdir is not supported")},A.umask=function(){return 0}},{}],13:[function(s,i){(function(c){(function(){/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */let l;i.exports=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window>"u"?c:window):u=>(l||(l=Promise.resolve())).then(u).catch(d=>setTimeout(()=>{throw d},0))}).call(this)}).call(this,typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{}],14:[function(s,i){(function(c,l){(function(){var u=s("safe-buffer").Buffer,d=l.crypto||l.msCrypto;i.exports=d&&d.getRandomValues?function(p,f){if(p>4294967295)throw new RangeError("requested too many random bytes");var b=u.allocUnsafe(p);if(0<p)if(65536<p)for(var h=0;h<p;h+=65536)d.getRandomValues(b.slice(h,h+65536));else d.getRandomValues(b);return typeof f=="function"?c.nextTick(function(){f(null,b)}):b}:function(){throw new Error(`Secure random number generation is not supported by this browser. +Use Chrome, Firefox or Internet Explorer 11`)}}).call(this)}).call(this,s("_process"),typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{_process:12,"safe-buffer":30}],15:[function(s,i){function c(h,g){h.prototype=Object.create(g.prototype),h.prototype.constructor=h,h.__proto__=g}function l(h,g,z){function A(v,M,y){return typeof g=="string"?g:g(v,M,y)}z||(z=Error);var _=function(v){function M(y,k,S){return v.call(this,A(y,k,S))||this}return c(M,v),M}(z);_.prototype.name=z.name,_.prototype.code=h,b[h]=_}function u(h,g){if(Array.isArray(h)){var z=h.length;return h=h.map(function(A){return A+""}),2<z?"one of ".concat(g," ").concat(h.slice(0,z-1).join(", "),", or ")+h[z-1]:z===2?"one of ".concat(g," ").concat(h[0]," or ").concat(h[1]):"of ".concat(g," ").concat(h[0])}return"of ".concat(g," ").concat(h+"")}function d(h,g,z){return h.substr(0,g.length)===g}function p(h,g,z){return(z===void 0||z>h.length)&&(z=h.length),h.substring(z-g.length,z)===g}function f(h,g,z){return typeof z!="number"&&(z=0),!(z+g.length>h.length)&&h.indexOf(g,z)!==-1}var b={};l("ERR_INVALID_OPT_VALUE",function(h,g){return'The value "'+g+'" is invalid for option "'+h+'"'},TypeError),l("ERR_INVALID_ARG_TYPE",function(h,g,z){var A;typeof g=="string"&&d(g,"not ")?(A="must not be",g=g.replace(/^not /,"")):A="must be";var _;if(p(h," argument"))_="The ".concat(h," ").concat(A," ").concat(u(g,"type"));else{var v=f(h,".")?"property":"argument";_='The "'.concat(h,'" ').concat(v," ").concat(A," ").concat(u(g,"type"))}return _+=". Received type ".concat(typeof z),_},TypeError),l("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),l("ERR_METHOD_NOT_IMPLEMENTED",function(h){return"The "+h+" method is not implemented"}),l("ERR_STREAM_PREMATURE_CLOSE","Premature close"),l("ERR_STREAM_DESTROYED",function(h){return"Cannot call "+h+" after a stream was destroyed"}),l("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),l("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),l("ERR_STREAM_WRITE_AFTER_END","write after end"),l("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),l("ERR_UNKNOWN_ENCODING",function(h){return"Unknown encoding: "+h},TypeError),l("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),i.exports.codes=b},{}],16:[function(s,i){(function(c){(function(){function l(A){return this instanceof l?(f.call(this,A),b.call(this,A),this.allowHalfOpen=!0,void(A&&(A.readable===!1&&(this.readable=!1),A.writable===!1&&(this.writable=!1),A.allowHalfOpen===!1&&(this.allowHalfOpen=!1,this.once("end",u))))):new l(A)}function u(){this._writableState.ended||c.nextTick(d,this)}function d(A){A.end()}var p=Object.keys||function(A){var _=[];for(var v in A)_.push(v);return _};i.exports=l;var f=s("./_stream_readable"),b=s("./_stream_writable");s("inherits")(l,f);for(var h,g=p(b.prototype),z=0;z<g.length;z++)h=g[z],l.prototype[h]||(l.prototype[h]=b.prototype[h]);Object.defineProperty(l.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(l.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(l.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(l.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState!==void 0&&this._writableState!==void 0&&this._readableState.destroyed&&this._writableState.destroyed},set:function(A){this._readableState===void 0||this._writableState===void 0||(this._readableState.destroyed=A,this._writableState.destroyed=A)}})}).call(this)}).call(this,s("_process"))},{"./_stream_readable":18,"./_stream_writable":20,_process:12,inherits:10}],17:[function(s,i){function c(u){return this instanceof c?void l.call(this,u):new c(u)}i.exports=c;var l=s("./_stream_transform");s("inherits")(c,l),c.prototype._transform=function(u,d,p){p(null,u)}},{"./_stream_transform":19,inherits:10}],18:[function(s,i){(function(c,l){(function(){function u(se){return ee.from(se)}function d(se){return ee.isBuffer(se)||se instanceof te}function p(se,L,U){return typeof se.prependListener=="function"?se.prependListener(L,U):void(se._events&&se._events[L]?Array.isArray(se._events[L])?se._events[L].unshift(U):se._events[L]=[U,se._events[L]]:se.on(L,U))}function f(se,L,U){F=F||s("./_stream_duplex"),se=se||{},typeof U!="boolean"&&(U=L instanceof F),this.objectMode=!!se.objectMode,U&&(this.objectMode=this.objectMode||!!se.readableObjectMode),this.highWaterMark=Ne(this,se,"readableHighWaterMark",U),this.buffer=new de,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=se.emitClose!==!1,this.autoDestroy=!!se.autoDestroy,this.destroyed=!1,this.defaultEncoding=se.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,se.encoding&&(!ue&&(ue=s("string_decoder/").StringDecoder),this.decoder=new ue(se.encoding),this.encoding=se.encoding)}function b(se){if(F=F||s("./_stream_duplex"),!(this instanceof b))return new b(se);var L=this instanceof F;this._readableState=new f(se,this,L),this.readable=!0,se&&(typeof se.read=="function"&&(this._read=se.read),typeof se.destroy=="function"&&(this._destroy=se.destroy)),V.call(this)}function h(se,L,U,ne,ve){X("readableAddChunk",L);var qe=se._readableState;if(L===null)qe.reading=!1,v(se,qe);else{var Pe;if(ve||(Pe=z(qe,L)),Pe)ke(se,Pe);else if(!(qe.objectMode||L&&0<L.length))ne||(qe.reading=!1,k(se,qe));else if(typeof L=="string"||qe.objectMode||Object.getPrototypeOf(L)===ee.prototype||(L=u(L)),ne)qe.endEmitted?ke(se,new pe):g(se,qe,L,!0);else if(qe.ended)ke(se,new we);else{if(qe.destroyed)return!1;qe.reading=!1,qe.decoder&&!U?(L=qe.decoder.write(L),qe.objectMode||L.length!==0?g(se,qe,L,!1):k(se,qe)):g(se,qe,L,!1)}}return!qe.ended&&(qe.length<qe.highWaterMark||qe.length===0)}function g(se,L,U,ne){L.flowing&&L.length===0&&!L.sync?(L.awaitDrain=0,se.emit("data",U)):(L.length+=L.objectMode?1:U.length,ne?L.buffer.unshift(U):L.buffer.push(U),L.needReadable&&M(se)),k(se,L)}function z(se,L){var U;return d(L)||typeof L=="string"||L===void 0||se.objectMode||(U=new ie("chunk",["string","Buffer","Uint8Array"],L)),U}function A(se){return 1073741824<=se?se=1073741824:(se--,se|=se>>>1,se|=se>>>2,se|=se>>>4,se|=se>>>8,se|=se>>>16,se++),se}function _(se,L){return 0>=se||L.length===0&&L.ended?0:L.objectMode?1:se===se?(se>L.highWaterMark&&(L.highWaterMark=A(se)),se<=L.length?se:L.ended?L.length:(L.needReadable=!0,0)):L.flowing&&L.length?L.buffer.head.data.length:L.length}function v(se,L){if(X("onEofChunk"),!L.ended){if(L.decoder){var U=L.decoder.end();U&&U.length&&(L.buffer.push(U),L.length+=L.objectMode?1:U.length)}L.ended=!0,L.sync?M(se):(L.needReadable=!1,!L.emittedReadable&&(L.emittedReadable=!0,y(se)))}}function M(se){var L=se._readableState;X("emitReadable",L.needReadable,L.emittedReadable),L.needReadable=!1,L.emittedReadable||(X("emitReadable",L.flowing),L.emittedReadable=!0,c.nextTick(y,se))}function y(se){var L=se._readableState;X("emitReadable_",L.destroyed,L.length,L.ended),!L.destroyed&&(L.length||L.ended)&&(se.emit("readable"),L.emittedReadable=!1),L.needReadable=!L.flowing&&!L.ended&&L.length<=L.highWaterMark,N(se)}function k(se,L){L.readingMore||(L.readingMore=!0,c.nextTick(S,se,L))}function S(se,L){for(;!L.reading&&!L.ended&&(L.length<L.highWaterMark||L.flowing&&L.length===0);){var U=L.length;if(X("maybeReadMore read 0"),se.read(0),U===L.length)break}L.readingMore=!1}function C(se){return function(){var L=se._readableState;X("pipeOnDrain",L.awaitDrain),L.awaitDrain&&L.awaitDrain--,L.awaitDrain===0&&Z(se,"data")&&(L.flowing=!0,N(se))}}function R(se){var L=se._readableState;L.readableListening=0<se.listenerCount("readable"),L.resumeScheduled&&!L.paused?L.flowing=!0:0<se.listenerCount("data")&&se.resume()}function T(se){X("readable nexttick read 0"),se.read(0)}function E(se,L){L.resumeScheduled||(L.resumeScheduled=!0,c.nextTick(B,se,L))}function B(se,L){X("resume",L.reading),L.reading||se.read(0),L.resumeScheduled=!1,se.emit("resume"),N(se),L.flowing&&!L.reading&&se.read(0)}function N(se){var L=se._readableState;for(X("flow",L.flowing);L.flowing&&se.read()!==null;);}function j(se,L){if(L.length===0)return null;var U;return L.objectMode?U=L.buffer.shift():!se||se>=L.length?(U=L.decoder?L.buffer.join(""):L.buffer.length===1?L.buffer.first():L.buffer.concat(L.length),L.buffer.clear()):U=L.buffer.consume(se,L.decoder),U}function I(se){var L=se._readableState;X("endReadable",L.endEmitted),L.endEmitted||(L.ended=!0,c.nextTick(P,L,se))}function P(se,L){if(X("endReadableNT",se.endEmitted,se.length),!se.endEmitted&&se.length===0&&(se.endEmitted=!0,L.readable=!1,L.emit("end"),se.autoDestroy)){var U=L._writableState;(!U||U.autoDestroy&&U.finished)&&L.destroy()}}function $(se,L){for(var U=0,ne=se.length;U<ne;U++)if(se[U]===L)return U;return-1}i.exports=b;var F;b.ReadableState=f;var X;s("events").EventEmitter;var Z=function(se,L){return se.listeners(L).length},V=s("./internal/streams/stream"),ee=s("buffer").Buffer,te=l.Uint8Array||function(){},J=s("util");X=J&&J.debuglog?J.debuglog("stream"):function(){};var ue,ce,me,de=s("./internal/streams/buffer_list"),Ae=s("./internal/streams/destroy"),ye=s("./internal/streams/state"),Ne=ye.getHighWaterMark,je=s("../errors").codes,ie=je.ERR_INVALID_ARG_TYPE,we=je.ERR_STREAM_PUSH_AFTER_EOF,re=je.ERR_METHOD_NOT_IMPLEMENTED,pe=je.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;s("inherits")(b,V);var ke=Ae.errorOrDestroy,Se=["error","close","destroy","pause","resume"];Object.defineProperty(b.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState!==void 0&&this._readableState.destroyed},set:function(se){this._readableState&&(this._readableState.destroyed=se)}}),b.prototype.destroy=Ae.destroy,b.prototype._undestroy=Ae.undestroy,b.prototype._destroy=function(se,L){L(se)},b.prototype.push=function(se,L){var U,ne=this._readableState;return ne.objectMode?U=!0:typeof se=="string"&&(L=L||ne.defaultEncoding,L!==ne.encoding&&(se=ee.from(se,L),L=""),U=!0),h(this,se,L,!1,U)},b.prototype.unshift=function(se){return h(this,se,null,!0,!1)},b.prototype.isPaused=function(){return this._readableState.flowing===!1},b.prototype.setEncoding=function(se){ue||(ue=s("string_decoder/").StringDecoder);var L=new ue(se);this._readableState.decoder=L,this._readableState.encoding=this._readableState.decoder.encoding;for(var U=this._readableState.buffer.head,ne="";U!==null;)ne+=L.write(U.data),U=U.next;return this._readableState.buffer.clear(),ne!==""&&this._readableState.buffer.push(ne),this._readableState.length=ne.length,this},b.prototype.read=function(se){X("read",se),se=parseInt(se,10);var L=this._readableState,U=se;if(se!==0&&(L.emittedReadable=!1),se===0&&L.needReadable&&((L.highWaterMark===0?0<L.length:L.length>=L.highWaterMark)||L.ended))return X("read: emitReadable",L.length,L.ended),L.length===0&&L.ended?I(this):M(this),null;if(se=_(se,L),se===0&&L.ended)return L.length===0&&I(this),null;var ne=L.needReadable;X("need readable",ne),(L.length===0||L.length-se<L.highWaterMark)&&(ne=!0,X("length less than watermark",ne)),L.ended||L.reading?(ne=!1,X("reading or ended",ne)):ne&&(X("do read"),L.reading=!0,L.sync=!0,L.length===0&&(L.needReadable=!0),this._read(L.highWaterMark),L.sync=!1,!L.reading&&(se=_(U,L)));var ve;return ve=0<se?j(se,L):null,ve===null?(L.needReadable=L.length<=L.highWaterMark,se=0):(L.length-=se,L.awaitDrain=0),L.length===0&&(!L.ended&&(L.needReadable=!0),U!==se&&L.ended&&I(this)),ve!==null&&this.emit("data",ve),ve},b.prototype._read=function(){ke(this,new re("_read()"))},b.prototype.pipe=function(se,L){function U(be,ze){X("onunpipe"),be===Bt&&ze&&ze.hasUnpiped===!1&&(ze.hasUnpiped=!0,ve())}function ne(){X("onend"),se.end()}function ve(){X("cleanup"),se.removeListener("close",rt),se.removeListener("finish",qt),se.removeListener("drain",fe),se.removeListener("error",Pe),se.removeListener("unpipe",U),Bt.removeListener("end",ne),Bt.removeListener("end",wt),Bt.removeListener("data",qe),Re=!0,ae.awaitDrain&&(!se._writableState||se._writableState.needDrain)&&fe()}function qe(be){X("ondata");var ze=se.write(be);X("dest.write",ze),ze===!1&&((ae.pipesCount===1&&ae.pipes===se||1<ae.pipesCount&&$(ae.pipes,se)!==-1)&&!Re&&(X("false write response, pause",ae.awaitDrain),ae.awaitDrain++),Bt.pause())}function Pe(be){X("onerror",be),wt(),se.removeListener("error",Pe),Z(se,"error")===0&&ke(se,be)}function rt(){se.removeListener("finish",qt),wt()}function qt(){X("onfinish"),se.removeListener("close",rt),wt()}function wt(){X("unpipe"),Bt.unpipe(se)}var Bt=this,ae=this._readableState;switch(ae.pipesCount){case 0:ae.pipes=se;break;case 1:ae.pipes=[ae.pipes,se];break;default:ae.pipes.push(se)}ae.pipesCount+=1,X("pipe count=%d opts=%j",ae.pipesCount,L);var H=(!L||L.end!==!1)&&se!==c.stdout&&se!==c.stderr,Y=H?ne:wt;ae.endEmitted?c.nextTick(Y):Bt.once("end",Y),se.on("unpipe",U);var fe=C(Bt);se.on("drain",fe);var Re=!1;return Bt.on("data",qe),p(se,"error",Pe),se.once("close",rt),se.once("finish",qt),se.emit("pipe",Bt),ae.flowing||(X("pipe resume"),Bt.resume()),se},b.prototype.unpipe=function(se){var L=this._readableState,U={hasUnpiped:!1};if(L.pipesCount===0)return this;if(L.pipesCount===1)return se&&se!==L.pipes?this:(se||(se=L.pipes),L.pipes=null,L.pipesCount=0,L.flowing=!1,se&&se.emit("unpipe",this,U),this);if(!se){var ne=L.pipes,ve=L.pipesCount;L.pipes=null,L.pipesCount=0,L.flowing=!1;for(var qe=0;qe<ve;qe++)ne[qe].emit("unpipe",this,{hasUnpiped:!1});return this}var Pe=$(L.pipes,se);return Pe===-1?this:(L.pipes.splice(Pe,1),L.pipesCount-=1,L.pipesCount===1&&(L.pipes=L.pipes[0]),se.emit("unpipe",this,U),this)},b.prototype.on=function(se,L){var U=V.prototype.on.call(this,se,L),ne=this._readableState;return se==="data"?(ne.readableListening=0<this.listenerCount("readable"),ne.flowing!==!1&&this.resume()):se=="readable"&&!ne.endEmitted&&!ne.readableListening&&(ne.readableListening=ne.needReadable=!0,ne.flowing=!1,ne.emittedReadable=!1,X("on readable",ne.length,ne.reading),ne.length?M(this):!ne.reading&&c.nextTick(T,this)),U},b.prototype.addListener=b.prototype.on,b.prototype.removeListener=function(se,L){var U=V.prototype.removeListener.call(this,se,L);return se==="readable"&&c.nextTick(R,this),U},b.prototype.removeAllListeners=function(se){var L=V.prototype.removeAllListeners.apply(this,arguments);return(se==="readable"||se===void 0)&&c.nextTick(R,this),L},b.prototype.resume=function(){var se=this._readableState;return se.flowing||(X("resume"),se.flowing=!se.readableListening,E(this,se)),se.paused=!1,this},b.prototype.pause=function(){return X("call pause flowing=%j",this._readableState.flowing),this._readableState.flowing!==!1&&(X("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},b.prototype.wrap=function(se){var L=this,U=this._readableState,ne=!1;for(var ve in se.on("end",function(){if(X("wrapped end"),U.decoder&&!U.ended){var Pe=U.decoder.end();Pe&&Pe.length&&L.push(Pe)}L.push(null)}),se.on("data",function(Pe){if(X("wrapped data"),U.decoder&&(Pe=U.decoder.write(Pe)),!(U.objectMode&&Pe==null)&&(U.objectMode||Pe&&Pe.length)){var rt=L.push(Pe);rt||(ne=!0,se.pause())}}),se)this[ve]===void 0&&typeof se[ve]=="function"&&(this[ve]=function(Pe){return function(){return se[Pe].apply(se,arguments)}}(ve));for(var qe=0;qe<Se.length;qe++)se.on(Se[qe],this.emit.bind(this,Se[qe]));return this._read=function(Pe){X("wrapped _read",Pe),ne&&(ne=!1,se.resume())},this},typeof Symbol=="function"&&(b.prototype[Symbol.asyncIterator]=function(){return ce===void 0&&(ce=s("./internal/streams/async_iterator")),ce(this)}),Object.defineProperty(b.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Object.defineProperty(b.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}}),Object.defineProperty(b.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(se){this._readableState&&(this._readableState.flowing=se)}}),b._fromList=j,Object.defineProperty(b.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}}),typeof Symbol=="function"&&(b.from=function(se,L){return me===void 0&&(me=s("./internal/streams/from")),me(b,se,L)})}).call(this)}).call(this,s("_process"),typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{"../errors":15,"./_stream_duplex":16,"./internal/streams/async_iterator":21,"./internal/streams/buffer_list":22,"./internal/streams/destroy":23,"./internal/streams/from":25,"./internal/streams/state":27,"./internal/streams/stream":28,_process:12,buffer:3,events:7,inherits:10,"string_decoder/":31,util:2}],19:[function(s,i){function c(A,_){var v=this._transformState;v.transforming=!1;var M=v.writecb;if(M===null)return this.emit("error",new b);v.writechunk=null,v.writecb=null,_!=null&&this.push(_),M(A);var y=this._readableState;y.reading=!1,(y.needReadable||y.length<y.highWaterMark)&&this._read(y.highWaterMark)}function l(A){return this instanceof l?(z.call(this,A),this._transformState={afterTransform:c.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,A&&(typeof A.transform=="function"&&(this._transform=A.transform),typeof A.flush=="function"&&(this._flush=A.flush)),void this.on("prefinish",u)):new l(A)}function u(){var A=this;typeof this._flush!="function"||this._readableState.destroyed?d(this,null,null):this._flush(function(_,v){d(A,_,v)})}function d(A,_,v){if(_)return A.emit("error",_);if(v!=null&&A.push(v),A._writableState.length)throw new g;if(A._transformState.transforming)throw new h;return A.push(null)}i.exports=l;var p=s("../errors").codes,f=p.ERR_METHOD_NOT_IMPLEMENTED,b=p.ERR_MULTIPLE_CALLBACK,h=p.ERR_TRANSFORM_ALREADY_TRANSFORMING,g=p.ERR_TRANSFORM_WITH_LENGTH_0,z=s("./_stream_duplex");s("inherits")(l,z),l.prototype.push=function(A,_){return this._transformState.needTransform=!1,z.prototype.push.call(this,A,_)},l.prototype._transform=function(A,_,v){v(new f("_transform()"))},l.prototype._write=function(A,_,v){var M=this._transformState;if(M.writecb=v,M.writechunk=A,M.writeencoding=_,!M.transforming){var y=this._readableState;(M.needTransform||y.needReadable||y.length<y.highWaterMark)&&this._read(y.highWaterMark)}},l.prototype._read=function(){var A=this._transformState;A.writechunk===null||A.transforming?A.needTransform=!0:(A.transforming=!0,this._transform(A.writechunk,A.writeencoding,A.afterTransform))},l.prototype._destroy=function(A,_){z.prototype._destroy.call(this,A,function(v){_(v)})}},{"../errors":15,"./_stream_duplex":16,inherits:10}],20:[function(s,i){(function(c,l){(function(){function u(re){var pe=this;this.next=null,this.entry=null,this.finish=function(){I(pe,re)}}function d(re){return X.from(re)}function p(re){return X.isBuffer(re)||re instanceof Z}function f(){}function b(re,pe,ke){P=P||s("./_stream_duplex"),re=re||{},typeof ke!="boolean"&&(ke=pe instanceof P),this.objectMode=!!re.objectMode,ke&&(this.objectMode=this.objectMode||!!re.writableObjectMode),this.highWaterMark=te(this,re,"writableHighWaterMark",ke),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var Se=re.decodeStrings===!1;this.decodeStrings=!Se,this.defaultEncoding=re.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(se){k(pe,se)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=re.emitClose!==!1,this.autoDestroy=!!re.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new u(this)}function h(re){P=P||s("./_stream_duplex");var pe=this instanceof P;return pe||we.call(h,this)?(this._writableState=new b(re,this,pe),this.writable=!0,re&&(typeof re.write=="function"&&(this._write=re.write),typeof re.writev=="function"&&(this._writev=re.writev),typeof re.destroy=="function"&&(this._destroy=re.destroy),typeof re.final=="function"&&(this._final=re.final)),void F.call(this)):new h(re)}function g(re,pe){var ke=new Ne;ie(re,ke),c.nextTick(pe,ke)}function z(re,pe,ke,Se){var se;return ke===null?se=new ye:typeof ke!="string"&&!pe.objectMode&&(se=new ue("chunk",["string","Buffer"],ke)),!se||(ie(re,se),c.nextTick(Se,se),!1)}function A(re,pe,ke){return re.objectMode||re.decodeStrings===!1||typeof pe!="string"||(pe=X.from(pe,ke)),pe}function _(re,pe,ke,Se,se,L){if(!ke){var U=A(pe,Se,se);Se!==U&&(ke=!0,se="buffer",Se=U)}var ne=pe.objectMode?1:Se.length;pe.length+=ne;var ve=pe.length<pe.highWaterMark;if(ve||(pe.needDrain=!0),pe.writing||pe.corked){var qe=pe.lastBufferedRequest;pe.lastBufferedRequest={chunk:Se,encoding:se,isBuf:ke,callback:L,next:null},qe?qe.next=pe.lastBufferedRequest:pe.bufferedRequest=pe.lastBufferedRequest,pe.bufferedRequestCount+=1}else v(re,pe,!1,ne,Se,se,L);return ve}function v(re,pe,ke,Se,se,L,U){pe.writelen=Se,pe.writecb=U,pe.writing=!0,pe.sync=!0,pe.destroyed?pe.onwrite(new Ae("write")):ke?re._writev(se,pe.onwrite):re._write(se,L,pe.onwrite),pe.sync=!1}function M(re,pe,ke,Se,se){--pe.pendingcb,ke?(c.nextTick(se,Se),c.nextTick(N,re,pe),re._writableState.errorEmitted=!0,ie(re,Se)):(se(Se),re._writableState.errorEmitted=!0,ie(re,Se),N(re,pe))}function y(re){re.writing=!1,re.writecb=null,re.length-=re.writelen,re.writelen=0}function k(re,pe){var ke=re._writableState,Se=ke.sync,se=ke.writecb;if(typeof se!="function")throw new me;if(y(ke),pe)M(re,ke,Se,pe,se);else{var L=T(ke)||re.destroyed;L||ke.corked||ke.bufferProcessing||!ke.bufferedRequest||R(re,ke),Se?c.nextTick(S,re,ke,L,se):S(re,ke,L,se)}}function S(re,pe,ke,Se){ke||C(re,pe),pe.pendingcb--,Se(),N(re,pe)}function C(re,pe){pe.length===0&&pe.needDrain&&(pe.needDrain=!1,re.emit("drain"))}function R(re,pe){pe.bufferProcessing=!0;var ke=pe.bufferedRequest;if(re._writev&&ke&&ke.next){var Se=pe.bufferedRequestCount,se=Array(Se),L=pe.corkedRequestsFree;L.entry=ke;for(var U=0,ne=!0;ke;)se[U]=ke,ke.isBuf||(ne=!1),ke=ke.next,U+=1;se.allBuffers=ne,v(re,pe,!0,pe.length,se,"",L.finish),pe.pendingcb++,pe.lastBufferedRequest=null,L.next?(pe.corkedRequestsFree=L.next,L.next=null):pe.corkedRequestsFree=new u(pe),pe.bufferedRequestCount=0}else{for(;ke;){var ve=ke.chunk,qe=ke.encoding,Pe=ke.callback,rt=pe.objectMode?1:ve.length;if(v(re,pe,!1,rt,ve,qe,Pe),ke=ke.next,pe.bufferedRequestCount--,pe.writing)break}ke===null&&(pe.lastBufferedRequest=null)}pe.bufferedRequest=ke,pe.bufferProcessing=!1}function T(re){return re.ending&&re.length===0&&re.bufferedRequest===null&&!re.finished&&!re.writing}function E(re,pe){re._final(function(ke){pe.pendingcb--,ke&&ie(re,ke),pe.prefinished=!0,re.emit("prefinish"),N(re,pe)})}function B(re,pe){pe.prefinished||pe.finalCalled||(typeof re._final!="function"||pe.destroyed?(pe.prefinished=!0,re.emit("prefinish")):(pe.pendingcb++,pe.finalCalled=!0,c.nextTick(E,re,pe)))}function N(re,pe){var ke=T(pe);if(ke&&(B(re,pe),pe.pendingcb===0&&(pe.finished=!0,re.emit("finish"),pe.autoDestroy))){var Se=re._readableState;(!Se||Se.autoDestroy&&Se.endEmitted)&&re.destroy()}return ke}function j(re,pe,ke){pe.ending=!0,N(re,pe),ke&&(pe.finished?c.nextTick(ke):re.once("finish",ke)),pe.ended=!0,re.writable=!1}function I(re,pe,ke){var Se=re.entry;for(re.entry=null;Se;){var se=Se.callback;pe.pendingcb--,se(ke),Se=Se.next}pe.corkedRequestsFree.next=re}i.exports=h;var P;h.WritableState=b;var $={deprecate:s("util-deprecate")},F=s("./internal/streams/stream"),X=s("buffer").Buffer,Z=l.Uint8Array||function(){},V=s("./internal/streams/destroy"),ee=s("./internal/streams/state"),te=ee.getHighWaterMark,J=s("../errors").codes,ue=J.ERR_INVALID_ARG_TYPE,ce=J.ERR_METHOD_NOT_IMPLEMENTED,me=J.ERR_MULTIPLE_CALLBACK,de=J.ERR_STREAM_CANNOT_PIPE,Ae=J.ERR_STREAM_DESTROYED,ye=J.ERR_STREAM_NULL_VALUES,Ne=J.ERR_STREAM_WRITE_AFTER_END,je=J.ERR_UNKNOWN_ENCODING,ie=V.errorOrDestroy;s("inherits")(h,F),b.prototype.getBuffer=function(){for(var re=this.bufferedRequest,pe=[];re;)pe.push(re),re=re.next;return pe},function(){try{Object.defineProperty(b.prototype,"buffer",{get:$.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}();var we;typeof Symbol=="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]=="function"?(we=Function.prototype[Symbol.hasInstance],Object.defineProperty(h,Symbol.hasInstance,{value:function(re){return!!we.call(this,re)||this===h&&re&&re._writableState instanceof b}})):we=function(re){return re instanceof this},h.prototype.pipe=function(){ie(this,new de)},h.prototype.write=function(re,pe,ke){var Se=this._writableState,se=!1,L=!Se.objectMode&&p(re);return L&&!X.isBuffer(re)&&(re=d(re)),typeof pe=="function"&&(ke=pe,pe=null),L?pe="buffer":!pe&&(pe=Se.defaultEncoding),typeof ke!="function"&&(ke=f),Se.ending?g(this,ke):(L||z(this,Se,re,ke))&&(Se.pendingcb++,se=_(this,Se,L,re,pe,ke)),se},h.prototype.cork=function(){this._writableState.corked++},h.prototype.uncork=function(){var re=this._writableState;re.corked&&(re.corked--,!re.writing&&!re.corked&&!re.bufferProcessing&&re.bufferedRequest&&R(this,re))},h.prototype.setDefaultEncoding=function(re){if(typeof re=="string"&&(re=re.toLowerCase()),!(-1<["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((re+"").toLowerCase())))throw new je(re);return this._writableState.defaultEncoding=re,this},Object.defineProperty(h.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(h.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),h.prototype._write=function(re,pe,ke){ke(new ce("_write()"))},h.prototype._writev=null,h.prototype.end=function(re,pe,ke){var Se=this._writableState;return typeof re=="function"?(ke=re,re=null,pe=null):typeof pe=="function"&&(ke=pe,pe=null),re!=null&&this.write(re,pe),Se.corked&&(Se.corked=1,this.uncork()),Se.ending||j(this,Se,ke),this},Object.defineProperty(h.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(h.prototype,"destroyed",{enumerable:!1,get:function(){return this._writableState!==void 0&&this._writableState.destroyed},set:function(re){this._writableState&&(this._writableState.destroyed=re)}}),h.prototype.destroy=V.destroy,h.prototype._undestroy=V.undestroy,h.prototype._destroy=function(re,pe){pe(re)}}).call(this)}).call(this,s("_process"),typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{"../errors":15,"./_stream_duplex":16,"./internal/streams/destroy":23,"./internal/streams/state":27,"./internal/streams/stream":28,_process:12,buffer:3,inherits:10,"util-deprecate":32}],21:[function(s,i){(function(c){(function(){function l(C,R,T){return R in C?Object.defineProperty(C,R,{value:T,enumerable:!0,configurable:!0,writable:!0}):C[R]=T,C}function u(C,R){return{value:C,done:R}}function d(C){var R=C[g];if(R!==null){var T=C[y].read();T!==null&&(C[v]=null,C[g]=null,C[z]=null,R(u(T,!1)))}}function p(C){c.nextTick(d,C)}function f(C,R){return function(T,E){C.then(function(){return R[_]?void T(u(void 0,!0)):void R[M](T,E)},E)}}var b,h=s("./end-of-stream"),g=Symbol("lastResolve"),z=Symbol("lastReject"),A=Symbol("error"),_=Symbol("ended"),v=Symbol("lastPromise"),M=Symbol("handlePromise"),y=Symbol("stream"),k=Object.getPrototypeOf(function(){}),S=Object.setPrototypeOf((b={get stream(){return this[y]},next:function(){var C=this,R=this[A];if(R!==null)return Promise.reject(R);if(this[_])return Promise.resolve(u(void 0,!0));if(this[y].destroyed)return new Promise(function(N,j){c.nextTick(function(){C[A]?j(C[A]):N(u(void 0,!0))})});var T,E=this[v];if(E)T=new Promise(f(E,this));else{var B=this[y].read();if(B!==null)return Promise.resolve(u(B,!1));T=new Promise(this[M])}return this[v]=T,T}},l(b,Symbol.asyncIterator,function(){return this}),l(b,"return",function(){var C=this;return new Promise(function(R,T){C[y].destroy(null,function(E){return E?void T(E):void R(u(void 0,!0))})})}),b),k);i.exports=function(C){var R,T=Object.create(S,(R={},l(R,y,{value:C,writable:!0}),l(R,g,{value:null,writable:!0}),l(R,z,{value:null,writable:!0}),l(R,A,{value:null,writable:!0}),l(R,_,{value:C._readableState.endEmitted,writable:!0}),l(R,M,{value:function(E,B){var N=T[y].read();N?(T[v]=null,T[g]=null,T[z]=null,E(u(N,!1))):(T[g]=E,T[z]=B)},writable:!0}),R));return T[v]=null,h(C,function(E){if(E&&E.code!=="ERR_STREAM_PREMATURE_CLOSE"){var B=T[z];return B!==null&&(T[v]=null,T[g]=null,T[z]=null,B(E)),void(T[A]=E)}var N=T[g];N!==null&&(T[v]=null,T[g]=null,T[z]=null,N(u(void 0,!0))),T[_]=!0}),C.on("readable",p.bind(null,T)),T}}).call(this)}).call(this,s("_process"))},{"./end-of-stream":24,_process:12}],22:[function(s,i){function c(v,M){var y=Object.keys(v);if(Object.getOwnPropertySymbols){var k=Object.getOwnPropertySymbols(v);M&&(k=k.filter(function(S){return Object.getOwnPropertyDescriptor(v,S).enumerable})),y.push.apply(y,k)}return y}function l(v){for(var M,y=1;y<arguments.length;y++)M=arguments[y]==null?{}:arguments[y],y%2?c(Object(M),!0).forEach(function(k){u(v,k,M[k])}):Object.getOwnPropertyDescriptors?Object.defineProperties(v,Object.getOwnPropertyDescriptors(M)):c(Object(M)).forEach(function(k){Object.defineProperty(v,k,Object.getOwnPropertyDescriptor(M,k))});return v}function u(v,M,y){return M in v?Object.defineProperty(v,M,{value:y,enumerable:!0,configurable:!0,writable:!0}):v[M]=y,v}function d(v,M){if(!(v instanceof M))throw new TypeError("Cannot call a class as a function")}function p(v,M){for(var y,k=0;k<M.length;k++)y=M[k],y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}function f(v,M,y){return M&&p(v.prototype,M),v}function b(v,M,y){g.prototype.copy.call(v,M,y)}var h=s("buffer"),g=h.Buffer,z=s("util"),A=z.inspect,_=A&&A.custom||"inspect";i.exports=function(){function v(){d(this,v),this.head=null,this.tail=null,this.length=0}return f(v,[{key:"push",value:function(M){var y={data:M,next:null};0<this.length?this.tail.next=y:this.head=y,this.tail=y,++this.length}},{key:"unshift",value:function(M){var y={data:M,next:this.head};this.length===0&&(this.tail=y),this.head=y,++this.length}},{key:"shift",value:function(){if(this.length!==0){var M=this.head.data;return this.head=this.length===1?this.tail=null:this.head.next,--this.length,M}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(M){if(this.length===0)return"";for(var y=this.head,k=""+y.data;y=y.next;)k+=M+y.data;return k}},{key:"concat",value:function(M){if(this.length===0)return g.alloc(0);for(var y=g.allocUnsafe(M>>>0),k=this.head,S=0;k;)b(k.data,y,S),S+=k.data.length,k=k.next;return y}},{key:"consume",value:function(M,y){var k;return M<this.head.data.length?(k=this.head.data.slice(0,M),this.head.data=this.head.data.slice(M)):M===this.head.data.length?k=this.shift():k=y?this._getString(M):this._getBuffer(M),k}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(M){var y=this.head,k=1,S=y.data;for(M-=S.length;y=y.next;){var C=y.data,R=M>C.length?C.length:M;if(S+=R===C.length?C:C.slice(0,M),M-=R,M===0){R===C.length?(++k,this.head=y.next?y.next:this.tail=null):(this.head=y,y.data=C.slice(R));break}++k}return this.length-=k,S}},{key:"_getBuffer",value:function(M){var y=g.allocUnsafe(M),k=this.head,S=1;for(k.data.copy(y),M-=k.data.length;k=k.next;){var C=k.data,R=M>C.length?C.length:M;if(C.copy(y,y.length-M,0,R),M-=R,M===0){R===C.length?(++S,this.head=k.next?k.next:this.tail=null):(this.head=k,k.data=C.slice(R));break}++S}return this.length-=S,y}},{key:_,value:function(M,y){return A(this,l({},y,{depth:0,customInspect:!1}))}}]),v}()},{buffer:3,util:2}],23:[function(s,i){(function(c){(function(){function l(p,f){d(p,f),u(p)}function u(p){p._writableState&&!p._writableState.emitClose||p._readableState&&!p._readableState.emitClose||p.emit("close")}function d(p,f){p.emit("error",f)}i.exports={destroy:function(p,f){var b=this,h=this._readableState&&this._readableState.destroyed,g=this._writableState&&this._writableState.destroyed;return h||g?(f?f(p):p&&(this._writableState?!this._writableState.errorEmitted&&(this._writableState.errorEmitted=!0,c.nextTick(d,this,p)):c.nextTick(d,this,p)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(p||null,function(z){!f&&z?b._writableState?b._writableState.errorEmitted?c.nextTick(u,b):(b._writableState.errorEmitted=!0,c.nextTick(l,b,z)):c.nextTick(l,b,z):f?(c.nextTick(u,b),f(z)):c.nextTick(u,b)}),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function(p,f){var b=p._readableState,h=p._writableState;b&&b.autoDestroy||h&&h.autoDestroy?p.destroy(f):p.emit("error",f)}}}).call(this)}).call(this,s("_process"))},{_process:12}],24:[function(s,i){function c(f){var b=!1;return function(){if(!b){b=!0;for(var h=arguments.length,g=Array(h),z=0;z<h;z++)g[z]=arguments[z];f.apply(this,g)}}}function l(){}function u(f){return f.setHeader&&typeof f.abort=="function"}function d(f,b,h){if(typeof b=="function")return d(f,null,b);b||(b={}),h=c(h||l);var g=b.readable||b.readable!==!1&&f.readable,z=b.writable||b.writable!==!1&&f.writable,A=function(){f.writable||v()},_=f._writableState&&f._writableState.finished,v=function(){z=!1,_=!0,g||h.call(f)},M=f._readableState&&f._readableState.endEmitted,y=function(){g=!1,M=!0,z||h.call(f)},k=function(R){h.call(f,R)},S=function(){var R;return g&&!M?(f._readableState&&f._readableState.ended||(R=new p),h.call(f,R)):z&&!_?(f._writableState&&f._writableState.ended||(R=new p),h.call(f,R)):void 0},C=function(){f.req.on("finish",v)};return u(f)?(f.on("complete",v),f.on("abort",S),f.req?C():f.on("request",C)):z&&!f._writableState&&(f.on("end",A),f.on("close",A)),f.on("end",y),f.on("finish",v),b.error!==!1&&f.on("error",k),f.on("close",S),function(){f.removeListener("complete",v),f.removeListener("abort",S),f.removeListener("request",C),f.req&&f.req.removeListener("finish",v),f.removeListener("end",A),f.removeListener("close",A),f.removeListener("finish",v),f.removeListener("end",y),f.removeListener("error",k),f.removeListener("close",S)}}var p=s("../../../errors").codes.ERR_STREAM_PREMATURE_CLOSE;i.exports=d},{"../../../errors":15}],25:[function(s,i){i.exports=function(){throw new Error("Readable.from is not available in the browser")}},{}],26:[function(s,i){function c(_){var v=!1;return function(){v||(v=!0,_.apply(void 0,arguments))}}function l(_){if(_)throw _}function u(_){return _.setHeader&&typeof _.abort=="function"}function d(_,v,M,y){y=c(y);var k=!1;_.on("close",function(){k=!0}),h===void 0&&(h=s("./end-of-stream")),h(_,{readable:v,writable:M},function(C){return C?y(C):(k=!0,void y())});var S=!1;return function(C){if(!k)return S?void 0:(S=!0,u(_)?_.abort():typeof _.destroy=="function"?_.destroy():void y(C||new A("pipe")))}}function p(_){_()}function f(_,v){return _.pipe(v)}function b(_){return _.length&&typeof _[_.length-1]=="function"?_.pop():l}var h,g=s("../../../errors").codes,z=g.ERR_MISSING_ARGS,A=g.ERR_STREAM_DESTROYED;i.exports=function(){for(var _=arguments.length,v=Array(_),M=0;M<_;M++)v[M]=arguments[M];var y=b(v);if(Array.isArray(v[0])&&(v=v[0]),2>v.length)throw new z("streams");var k,S=v.map(function(C,R){var T=R<v.length-1;return d(C,T,0<R,function(E){k||(k=E),E&&S.forEach(p),T||(S.forEach(p),y(k))})});return v.reduce(f)}},{"../../../errors":15,"./end-of-stream":24}],27:[function(s,i){function c(u,d,p){return u.highWaterMark==null?d?u[p]:null:u.highWaterMark}var l=s("../../../errors").codes.ERR_INVALID_OPT_VALUE;i.exports={getHighWaterMark:function(u,d,p,f){var b=c(d,f,p);if(b!=null){if(!(isFinite(b)&&n(b)===b)||0>b){var h=f?p:"highWaterMark";throw new l(h,b)}return n(b)}return u.objectMode?16:16384}}},{"../../../errors":15}],28:[function(s,i){i.exports=s("events").EventEmitter},{events:7}],29:[function(s,i,c){c=i.exports=s("./lib/_stream_readable.js"),c.Stream=c,c.Readable=c,c.Writable=s("./lib/_stream_writable.js"),c.Duplex=s("./lib/_stream_duplex.js"),c.Transform=s("./lib/_stream_transform.js"),c.PassThrough=s("./lib/_stream_passthrough.js"),c.finished=s("./lib/internal/streams/end-of-stream.js"),c.pipeline=s("./lib/internal/streams/pipeline.js")},{"./lib/_stream_duplex.js":16,"./lib/_stream_passthrough.js":17,"./lib/_stream_readable.js":18,"./lib/_stream_transform.js":19,"./lib/_stream_writable.js":20,"./lib/internal/streams/end-of-stream.js":24,"./lib/internal/streams/pipeline.js":26}],30:[function(s,i,c){function l(f,b){for(var h in f)b[h]=f[h]}function u(f,b,h){return p(f,b,h)}/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */var d=s("buffer"),p=d.Buffer;p.from&&p.alloc&&p.allocUnsafe&&p.allocUnsafeSlow?i.exports=d:(l(d,c),c.Buffer=u),u.prototype=Object.create(p.prototype),l(p,u),u.from=function(f,b,h){if(typeof f=="number")throw new TypeError("Argument must not be a number");return p(f,b,h)},u.alloc=function(f,b,h){if(typeof f!="number")throw new TypeError("Argument must be a number");var g=p(f);return b===void 0?g.fill(0):typeof h=="string"?g.fill(b,h):g.fill(b),g},u.allocUnsafe=function(f){if(typeof f!="number")throw new TypeError("Argument must be a number");return p(f)},u.allocUnsafeSlow=function(f){if(typeof f!="number")throw new TypeError("Argument must be a number");return d.SlowBuffer(f)}},{buffer:3}],31:[function(s,i,c){function l(S){if(!S)return"utf8";for(var C;;)switch(S){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return S;default:if(C)return;S=(""+S).toLowerCase(),C=!0}}function u(S){var C=l(S);if(typeof C!="string"&&(y.isEncoding===k||!k(S)))throw new Error("Unknown encoding: "+S);return C||S}function d(S){this.encoding=u(S);var C;switch(this.encoding){case"utf16le":this.text=g,this.end=z,C=4;break;case"utf8":this.fillLast=h,C=4;break;case"base64":this.text=A,this.end=_,C=3;break;default:return this.write=v,void(this.end=M)}this.lastNeed=0,this.lastTotal=0,this.lastChar=y.allocUnsafe(C)}function p(S){return 127>=S?0:S>>5==6?2:S>>4==14?3:S>>3==30?4:S>>6==2?-1:-2}function f(S,C,R){var T=C.length-1;if(T<R)return 0;var E=p(C[T]);return 0<=E?(0<E&&(S.lastNeed=E-1),E):--T<R||E===-2?0:(E=p(C[T]),0<=E?(0<E&&(S.lastNeed=E-2),E):--T<R||E===-2?0:(E=p(C[T]),0<=E?(0<E&&(E===2?E=0:S.lastNeed=E-3),E):0))}function b(S,C){if((192&C[0])!=128)return S.lastNeed=0,"�";if(1<S.lastNeed&&1<C.length){if((192&C[1])!=128)return S.lastNeed=1,"�";if(2<S.lastNeed&&2<C.length&&(192&C[2])!=128)return S.lastNeed=2,"�"}}function h(S){var C=this.lastTotal-this.lastNeed,R=b(this,S);return R===void 0?this.lastNeed<=S.length?(S.copy(this.lastChar,C,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(S.copy(this.lastChar,C,0,S.length),void(this.lastNeed-=S.length)):R}function g(S,C){if((S.length-C)%2==0){var R=S.toString("utf16le",C);if(R){var T=R.charCodeAt(R.length-1);if(55296<=T&&56319>=T)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=S[S.length-2],this.lastChar[1]=S[S.length-1],R.slice(0,-1)}return R}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=S[S.length-1],S.toString("utf16le",C,S.length-1)}function z(S){var C=S&&S.length?this.write(S):"";if(this.lastNeed){var R=this.lastTotal-this.lastNeed;return C+this.lastChar.toString("utf16le",0,R)}return C}function A(S,C){var R=(S.length-C)%3;return R==0?S.toString("base64",C):(this.lastNeed=3-R,this.lastTotal=3,R==1?this.lastChar[0]=S[S.length-1]:(this.lastChar[0]=S[S.length-2],this.lastChar[1]=S[S.length-1]),S.toString("base64",C,S.length-R))}function _(S){var C=S&&S.length?this.write(S):"";return this.lastNeed?C+this.lastChar.toString("base64",0,3-this.lastNeed):C}function v(S){return S.toString(this.encoding)}function M(S){return S&&S.length?this.write(S):""}var y=s("safe-buffer").Buffer,k=y.isEncoding||function(S){switch(S=""+S,S&&S.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};c.StringDecoder=d,d.prototype.write=function(S){if(S.length===0)return"";var C,R;if(this.lastNeed){if(C=this.fillLast(S),C===void 0)return"";R=this.lastNeed,this.lastNeed=0}else R=0;return R<S.length?C?C+this.text(S,R):this.text(S,R):C||""},d.prototype.end=function(S){var C=S&&S.length?this.write(S):"";return this.lastNeed?C+"�":C},d.prototype.text=function(S,C){var R=f(this,S,C);if(!this.lastNeed)return S.toString("utf8",C);this.lastTotal=R;var T=S.length-(R-this.lastNeed);return S.copy(this.lastChar,0,T),S.toString("utf8",C,T)},d.prototype.fillLast=function(S){return this.lastNeed<=S.length?(S.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(S.copy(this.lastChar,this.lastTotal-this.lastNeed,0,S.length),void(this.lastNeed-=S.length))}},{"safe-buffer":30}],32:[function(s,i){(function(c){(function(){function l(u){try{if(!c.localStorage)return!1}catch{return!1}var d=c.localStorage[u];return d!=null&&(d+"").toLowerCase()==="true"}i.exports=function(u,d){function p(){if(!f){if(l("throwDeprecation"))throw new Error(d);l("traceDeprecation")?console.trace(d):console.warn(d),f=!0}return u.apply(this,arguments)}if(l("noDeprecation"))return u;var f=!1;return p}}).call(this)}).call(this,typeof p1>"u"?typeof self>"u"?typeof window>"u"?{}:window:self:p1)},{}],"/":[function(s,i){function c(_){return _.replace(/a=ice-options:trickle\s\n/g,"")}function l(_){console.warn(_)}/*! simple-peer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */const u=s("debug")("simple-peer"),d=s("get-browser-rtc"),p=s("randombytes"),f=s("readable-stream"),b=s("queue-microtask"),h=s("err-code"),{Buffer:g}=s("buffer"),z=65536;class A extends f.Duplex{constructor(v){if(v=Object.assign({allowHalfOpen:!1},v),super(v),this._id=p(4).toString("hex").slice(0,7),this._debug("new peer %o",v),this.channelName=v.initiator?v.channelName||p(20).toString("hex"):null,this.initiator=v.initiator||!1,this.channelConfig=v.channelConfig||A.channelConfig,this.channelNegotiated=this.channelConfig.negotiated,this.config=Object.assign({},A.config,v.config),this.offerOptions=v.offerOptions||{},this.answerOptions=v.answerOptions||{},this.sdpTransform=v.sdpTransform||(M=>M),this.streams=v.streams||(v.stream?[v.stream]:[]),this.trickle=v.trickle===void 0||v.trickle,this.allowHalfTrickle=v.allowHalfTrickle!==void 0&&v.allowHalfTrickle,this.iceCompleteTimeout=v.iceCompleteTimeout||5e3,this.destroyed=!1,this.destroying=!1,this._connected=!1,this.remoteAddress=void 0,this.remoteFamily=void 0,this.remotePort=void 0,this.localAddress=void 0,this.localFamily=void 0,this.localPort=void 0,this._wrtc=v.wrtc&&typeof v.wrtc=="object"?v.wrtc:d(),!this._wrtc)throw h(typeof window>"u"?new Error("No WebRTC support: Specify `opts.wrtc` option in this environment"):new Error("No WebRTC support: Not a supported browser"),"ERR_WEBRTC_SUPPORT");this._pcReady=!1,this._channelReady=!1,this._iceComplete=!1,this._iceCompleteTimer=null,this._channel=null,this._pendingCandidates=[],this._isNegotiating=!1,this._firstNegotiation=!0,this._batchedNegotiation=!1,this._queuedNegotiation=!1,this._sendersAwaitingStable=[],this._senderMap=new Map,this._closingInterval=null,this._remoteTracks=[],this._remoteStreams=[],this._chunk=null,this._cb=null,this._interval=null;try{this._pc=new this._wrtc.RTCPeerConnection(this.config)}catch(M){return void this.destroy(h(M,"ERR_PC_CONSTRUCTOR"))}this._isReactNativeWebrtc=typeof this._pc._peerConnectionId=="number",this._pc.oniceconnectionstatechange=()=>{this._onIceStateChange()},this._pc.onicegatheringstatechange=()=>{this._onIceStateChange()},this._pc.onconnectionstatechange=()=>{this._onConnectionStateChange()},this._pc.onsignalingstatechange=()=>{this._onSignalingStateChange()},this._pc.onicecandidate=M=>{this._onIceCandidate(M)},typeof this._pc.peerIdentity=="object"&&this._pc.peerIdentity.catch(M=>{this.destroy(h(M,"ERR_PC_PEER_IDENTITY"))}),this.initiator||this.channelNegotiated?this._setupData({channel:this._pc.createDataChannel(this.channelName,this.channelConfig)}):this._pc.ondatachannel=M=>{this._setupData(M)},this.streams&&this.streams.forEach(M=>{this.addStream(M)}),this._pc.ontrack=M=>{this._onTrack(M)},this._debug("initial negotiation"),this._needsNegotiation(),this._onFinishBound=()=>{this._onFinish()},this.once("finish",this._onFinishBound)}get bufferSize(){return this._channel&&this._channel.bufferedAmount||0}get connected(){return this._connected&&this._channel.readyState==="open"}address(){return{port:this.localPort,family:this.localFamily,address:this.localAddress}}signal(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot signal after peer is destroyed"),"ERR_DESTROYED");if(typeof v=="string")try{v=JSON.parse(v)}catch{v={}}this._debug("signal()"),v.renegotiate&&this.initiator&&(this._debug("got request to renegotiate"),this._needsNegotiation()),v.transceiverRequest&&this.initiator&&(this._debug("got request for transceiver"),this.addTransceiver(v.transceiverRequest.kind,v.transceiverRequest.init)),v.candidate&&(this._pc.remoteDescription&&this._pc.remoteDescription.type?this._addIceCandidate(v.candidate):this._pendingCandidates.push(v.candidate)),v.sdp&&this._pc.setRemoteDescription(new this._wrtc.RTCSessionDescription(v)).then(()=>{this.destroyed||(this._pendingCandidates.forEach(M=>{this._addIceCandidate(M)}),this._pendingCandidates=[],this._pc.remoteDescription.type==="offer"&&this._createAnswer())}).catch(M=>{this.destroy(h(M,"ERR_SET_REMOTE_DESCRIPTION"))}),v.sdp||v.candidate||v.renegotiate||v.transceiverRequest||this.destroy(h(new Error("signal() called with invalid signal data"),"ERR_SIGNALING"))}}_addIceCandidate(v){const M=new this._wrtc.RTCIceCandidate(v);this._pc.addIceCandidate(M).catch(y=>{!M.address||M.address.endsWith(".local")?l("Ignoring unsupported ICE candidate."):this.destroy(h(y,"ERR_ADD_ICE_CANDIDATE"))})}send(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot send after peer is destroyed"),"ERR_DESTROYED");this._channel.send(v)}}addTransceiver(v,M){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot addTransceiver after peer is destroyed"),"ERR_DESTROYED");if(this._debug("addTransceiver()"),this.initiator)try{this._pc.addTransceiver(v,M),this._needsNegotiation()}catch(y){this.destroy(h(y,"ERR_ADD_TRANSCEIVER"))}else this.emit("signal",{type:"transceiverRequest",transceiverRequest:{kind:v,init:M}})}}addStream(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot addStream after peer is destroyed"),"ERR_DESTROYED");this._debug("addStream()"),v.getTracks().forEach(M=>{this.addTrack(M,v)})}}addTrack(v,M){if(this.destroying)return;if(this.destroyed)throw h(new Error("cannot addTrack after peer is destroyed"),"ERR_DESTROYED");this._debug("addTrack()");const y=this._senderMap.get(v)||new Map;let k=y.get(M);if(!k)k=this._pc.addTrack(v,M),y.set(M,k),this._senderMap.set(v,y),this._needsNegotiation();else throw k.removed?h(new Error("Track has been removed. You should enable/disable tracks that you want to re-add."),"ERR_SENDER_REMOVED"):h(new Error("Track has already been added to that stream."),"ERR_SENDER_ALREADY_ADDED")}replaceTrack(v,M,y){if(this.destroying)return;if(this.destroyed)throw h(new Error("cannot replaceTrack after peer is destroyed"),"ERR_DESTROYED");this._debug("replaceTrack()");const k=this._senderMap.get(v),S=k?k.get(y):null;if(!S)throw h(new Error("Cannot replace track that was never added."),"ERR_TRACK_NOT_ADDED");M&&this._senderMap.set(M,k),S.replaceTrack==null?this.destroy(h(new Error("replaceTrack is not supported in this browser"),"ERR_UNSUPPORTED_REPLACETRACK")):S.replaceTrack(M)}removeTrack(v,M){if(this.destroying)return;if(this.destroyed)throw h(new Error("cannot removeTrack after peer is destroyed"),"ERR_DESTROYED");this._debug("removeSender()");const y=this._senderMap.get(v),k=y?y.get(M):null;if(!k)throw h(new Error("Cannot remove track that was never added."),"ERR_TRACK_NOT_ADDED");try{k.removed=!0,this._pc.removeTrack(k)}catch(S){S.name==="NS_ERROR_UNEXPECTED"?this._sendersAwaitingStable.push(k):this.destroy(h(S,"ERR_REMOVE_TRACK"))}this._needsNegotiation()}removeStream(v){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot removeStream after peer is destroyed"),"ERR_DESTROYED");this._debug("removeSenders()"),v.getTracks().forEach(M=>{this.removeTrack(M,v)})}}_needsNegotiation(){this._debug("_needsNegotiation"),this._batchedNegotiation||(this._batchedNegotiation=!0,b(()=>{this._batchedNegotiation=!1,this.initiator||!this._firstNegotiation?(this._debug("starting batched negotiation"),this.negotiate()):this._debug("non-initiator initial negotiation request discarded"),this._firstNegotiation=!1}))}negotiate(){if(!this.destroying){if(this.destroyed)throw h(new Error("cannot negotiate after peer is destroyed"),"ERR_DESTROYED");this.initiator?this._isNegotiating?(this._queuedNegotiation=!0,this._debug("already negotiating, queueing")):(this._debug("start negotiation"),setTimeout(()=>{this._createOffer()},0)):this._isNegotiating?(this._queuedNegotiation=!0,this._debug("already negotiating, queueing")):(this._debug("requesting negotiation from initiator"),this.emit("signal",{type:"renegotiate",renegotiate:!0})),this._isNegotiating=!0}}destroy(v){this._destroy(v,()=>{})}_destroy(v,M){this.destroyed||this.destroying||(this.destroying=!0,this._debug("destroying (error: %s)",v&&(v.message||v)),b(()=>{if(this.destroyed=!0,this.destroying=!1,this._debug("destroy (error: %s)",v&&(v.message||v)),this.readable=this.writable=!1,this._readableState.ended||this.push(null),this._writableState.finished||this.end(),this._connected=!1,this._pcReady=!1,this._channelReady=!1,this._remoteTracks=null,this._remoteStreams=null,this._senderMap=null,clearInterval(this._closingInterval),this._closingInterval=null,clearInterval(this._interval),this._interval=null,this._chunk=null,this._cb=null,this._onFinishBound&&this.removeListener("finish",this._onFinishBound),this._onFinishBound=null,this._channel){try{this._channel.close()}catch{}this._channel.onmessage=null,this._channel.onopen=null,this._channel.onclose=null,this._channel.onerror=null}if(this._pc){try{this._pc.close()}catch{}this._pc.oniceconnectionstatechange=null,this._pc.onicegatheringstatechange=null,this._pc.onsignalingstatechange=null,this._pc.onicecandidate=null,this._pc.ontrack=null,this._pc.ondatachannel=null}this._pc=null,this._channel=null,v&&this.emit("error",v),this.emit("close"),M()}))}_setupData(v){if(!v.channel)return this.destroy(h(new Error("Data channel event is missing `channel` property"),"ERR_DATA_CHANNEL"));this._channel=v.channel,this._channel.binaryType="arraybuffer",typeof this._channel.bufferedAmountLowThreshold=="number"&&(this._channel.bufferedAmountLowThreshold=z),this.channelName=this._channel.label,this._channel.onmessage=y=>{this._onChannelMessage(y)},this._channel.onbufferedamountlow=()=>{this._onChannelBufferedAmountLow()},this._channel.onopen=()=>{this._onChannelOpen()},this._channel.onclose=()=>{this._onChannelClose()},this._channel.onerror=y=>{const k=y.error instanceof Error?y.error:new Error(`Datachannel error: ${y.message} ${y.filename}:${y.lineno}:${y.colno}`);this.destroy(h(k,"ERR_DATA_CHANNEL"))};let M=!1;this._closingInterval=setInterval(()=>{this._channel&&this._channel.readyState==="closing"?(M&&this._onChannelClose(),M=!0):M=!1},5e3)}_read(){}_write(v,M,y){if(this.destroyed)return y(h(new Error("cannot write after peer is destroyed"),"ERR_DATA_CHANNEL"));if(this._connected){try{this.send(v)}catch(k){return this.destroy(h(k,"ERR_DATA_CHANNEL"))}this._channel.bufferedAmount>z?(this._debug("start backpressure: bufferedAmount %d",this._channel.bufferedAmount),this._cb=y):y(null)}else this._debug("write before connect"),this._chunk=v,this._cb=y}_onFinish(){if(!this.destroyed){const v=()=>{setTimeout(()=>this.destroy(),1e3)};this._connected?v():this.once("connect",v)}}_startIceCompleteTimeout(){this.destroyed||this._iceCompleteTimer||(this._debug("started iceComplete timeout"),this._iceCompleteTimer=setTimeout(()=>{this._iceComplete||(this._iceComplete=!0,this._debug("iceComplete timeout completed"),this.emit("iceTimeout"),this.emit("_iceComplete"))},this.iceCompleteTimeout))}_createOffer(){this.destroyed||this._pc.createOffer(this.offerOptions).then(v=>{if(this.destroyed)return;this.trickle||this.allowHalfTrickle||(v.sdp=c(v.sdp)),v.sdp=this.sdpTransform(v.sdp);const M=()=>{if(!this.destroyed){const y=this._pc.localDescription||v;this._debug("signal"),this.emit("signal",{type:y.type,sdp:y.sdp})}};this._pc.setLocalDescription(v).then(()=>{this._debug("createOffer success"),this.destroyed||(this.trickle||this._iceComplete?M():this.once("_iceComplete",M))}).catch(y=>{this.destroy(h(y,"ERR_SET_LOCAL_DESCRIPTION"))})}).catch(v=>{this.destroy(h(v,"ERR_CREATE_OFFER"))})}_requestMissingTransceivers(){this._pc.getTransceivers&&this._pc.getTransceivers().forEach(v=>{v.mid||!v.sender.track||v.requested||(v.requested=!0,this.addTransceiver(v.sender.track.kind))})}_createAnswer(){this.destroyed||this._pc.createAnswer(this.answerOptions).then(v=>{if(this.destroyed)return;this.trickle||this.allowHalfTrickle||(v.sdp=c(v.sdp)),v.sdp=this.sdpTransform(v.sdp);const M=()=>{if(!this.destroyed){const y=this._pc.localDescription||v;this._debug("signal"),this.emit("signal",{type:y.type,sdp:y.sdp}),this.initiator||this._requestMissingTransceivers()}};this._pc.setLocalDescription(v).then(()=>{this.destroyed||(this.trickle||this._iceComplete?M():this.once("_iceComplete",M))}).catch(y=>{this.destroy(h(y,"ERR_SET_LOCAL_DESCRIPTION"))})}).catch(v=>{this.destroy(h(v,"ERR_CREATE_ANSWER"))})}_onConnectionStateChange(){this.destroyed||this._pc.connectionState==="failed"&&this.destroy(h(new Error("Connection failed."),"ERR_CONNECTION_FAILURE"))}_onIceStateChange(){if(this.destroyed)return;const v=this._pc.iceConnectionState,M=this._pc.iceGatheringState;this._debug("iceStateChange (connection: %s) (gathering: %s)",v,M),this.emit("iceStateChange",v,M),(v==="connected"||v==="completed")&&(this._pcReady=!0,this._maybeReady()),v==="failed"&&this.destroy(h(new Error("Ice connection failed."),"ERR_ICE_CONNECTION_FAILURE")),v==="closed"&&this.destroy(h(new Error("Ice connection closed."),"ERR_ICE_CONNECTION_CLOSED"))}getStats(v){const M=y=>(Object.prototype.toString.call(y.values)==="[object Array]"&&y.values.forEach(k=>{Object.assign(y,k)}),y);this._pc.getStats.length===0||this._isReactNativeWebrtc?this._pc.getStats().then(y=>{const k=[];y.forEach(S=>{k.push(M(S))}),v(null,k)},y=>v(y)):0<this._pc.getStats.length?this._pc.getStats(y=>{if(this.destroyed)return;const k=[];y.result().forEach(S=>{const C={};S.names().forEach(R=>{C[R]=S.stat(R)}),C.id=S.id,C.type=S.type,C.timestamp=S.timestamp,k.push(M(C))}),v(null,k)},y=>v(y)):v(null,[])}_maybeReady(){if(this._debug("maybeReady pc %s channel %s",this._pcReady,this._channelReady),this._connected||this._connecting||!this._pcReady||!this._channelReady)return;this._connecting=!0;const v=()=>{this.destroyed||this.getStats((M,y)=>{if(this.destroyed)return;M&&(y=[]);const k={},S={},C={};let R=!1;y.forEach(E=>{(E.type==="remotecandidate"||E.type==="remote-candidate")&&(k[E.id]=E),(E.type==="localcandidate"||E.type==="local-candidate")&&(S[E.id]=E),(E.type==="candidatepair"||E.type==="candidate-pair")&&(C[E.id]=E)});const T=E=>{R=!0;let B=S[E.localCandidateId];B&&(B.ip||B.address)?(this.localAddress=B.ip||B.address,this.localPort=+B.port):B&&B.ipAddress?(this.localAddress=B.ipAddress,this.localPort=+B.portNumber):typeof E.googLocalAddress=="string"&&(B=E.googLocalAddress.split(":"),this.localAddress=B[0],this.localPort=+B[1]),this.localAddress&&(this.localFamily=this.localAddress.includes(":")?"IPv6":"IPv4");let N=k[E.remoteCandidateId];N&&(N.ip||N.address)?(this.remoteAddress=N.ip||N.address,this.remotePort=+N.port):N&&N.ipAddress?(this.remoteAddress=N.ipAddress,this.remotePort=+N.portNumber):typeof E.googRemoteAddress=="string"&&(N=E.googRemoteAddress.split(":"),this.remoteAddress=N[0],this.remotePort=+N[1]),this.remoteAddress&&(this.remoteFamily=this.remoteAddress.includes(":")?"IPv6":"IPv4"),this._debug("connect local: %s:%s remote: %s:%s",this.localAddress,this.localPort,this.remoteAddress,this.remotePort)};if(y.forEach(E=>{E.type==="transport"&&E.selectedCandidatePairId&&T(C[E.selectedCandidatePairId]),(E.type==="googCandidatePair"&&E.googActiveConnection==="true"||(E.type==="candidatepair"||E.type==="candidate-pair")&&E.selected)&&T(E)}),!R&&(!Object.keys(C).length||Object.keys(S).length))return void setTimeout(v,100);if(this._connecting=!1,this._connected=!0,this._chunk){try{this.send(this._chunk)}catch(B){return this.destroy(h(B,"ERR_DATA_CHANNEL"))}this._chunk=null,this._debug('sent chunk from "write before connect"');const E=this._cb;this._cb=null,E(null)}typeof this._channel.bufferedAmountLowThreshold!="number"&&(this._interval=setInterval(()=>this._onInterval(),150),this._interval.unref&&this._interval.unref()),this._debug("connect"),this.emit("connect")})};v()}_onInterval(){this._cb&&this._channel&&!(this._channel.bufferedAmount>z)&&this._onChannelBufferedAmountLow()}_onSignalingStateChange(){this.destroyed||(this._pc.signalingState==="stable"&&(this._isNegotiating=!1,this._debug("flushing sender queue",this._sendersAwaitingStable),this._sendersAwaitingStable.forEach(v=>{this._pc.removeTrack(v),this._queuedNegotiation=!0}),this._sendersAwaitingStable=[],this._queuedNegotiation?(this._debug("flushing negotiation queue"),this._queuedNegotiation=!1,this._needsNegotiation()):(this._debug("negotiated"),this.emit("negotiated"))),this._debug("signalingStateChange %s",this._pc.signalingState),this.emit("signalingStateChange",this._pc.signalingState))}_onIceCandidate(v){this.destroyed||(v.candidate&&this.trickle?this.emit("signal",{type:"candidate",candidate:{candidate:v.candidate.candidate,sdpMLineIndex:v.candidate.sdpMLineIndex,sdpMid:v.candidate.sdpMid}}):!v.candidate&&!this._iceComplete&&(this._iceComplete=!0,this.emit("_iceComplete")),v.candidate&&this._startIceCompleteTimeout())}_onChannelMessage(v){if(this.destroyed)return;let M=v.data;M instanceof ArrayBuffer&&(M=g.from(M)),this.push(M)}_onChannelBufferedAmountLow(){if(!this.destroyed&&this._cb){this._debug("ending backpressure: bufferedAmount %d",this._channel.bufferedAmount);const v=this._cb;this._cb=null,v(null)}}_onChannelOpen(){this._connected||this.destroyed||(this._debug("on channel open"),this._channelReady=!0,this._maybeReady())}_onChannelClose(){this.destroyed||(this._debug("on channel close"),this.destroy())}_onTrack(v){this.destroyed||v.streams.forEach(M=>{this._debug("on track"),this.emit("track",v.track,M),this._remoteTracks.push({track:v.track,stream:M}),this._remoteStreams.some(y=>y.id===M.id)||(this._remoteStreams.push(M),b(()=>{this._debug("on stream"),this.emit("stream",M)}))})}_debug(){const v=[].slice.call(arguments);v[0]="["+this._id+"] "+v[0],u.apply(null,v)}}A.WEBRTC_SUPPORT=!!d(),A.config={iceServers:[{urls:["stun:stun.l.google.com:19302","stun:global.stun.twilio.com:3478"]}],sdpSemantics:"unified-plan"},A.channelConfig={},i.exports=A},{buffer:3,debug:4,"err-code":6,"get-browser-rtc":8,"queue-microtask":13,randombytes:14,"readable-stream":29}]},{},[])("/")})}(VS)),VS.exports}var ONe=zNe();const yNe=Zr(ONe),RB=0,TB=1,Bse=2,Lse=(e,t)=>{sn(e,RB);const n=U8e(t);jr(e,n)},Pse=(e,t,n)=>{sn(e,TB),jr(e,AB(t,n))},ANe=(e,t,n)=>Pse(t,n,w0(e)),jse=(e,t,n)=>{try{nse(t,w0(e),n)}catch(o){console.error("Caught error while handling a Yjs update",o)}},vNe=(e,t)=>{sn(e,Bse),jr(e,t)},xNe=jse,wNe=(e,t,n,o)=>{const r=_n(e);switch(r){case RB:ANe(e,t,n);break;case TB:jse(e,n,o);break;case Bse:xNe(e,n,o);break;default:throw new Error("Unknown message type")}return r},HS=3e4;class _Ne extends d3{constructor(t){super(),this.doc=t,this.clientID=t.clientID,this.states=new Map,this.meta=new Map,this._checkInterval=setInterval(()=>{const n=Tl();this.getLocalState()!==null&&HS/2<=n-this.meta.get(this.clientID).lastUpdated&&this.setLocalState(this.getLocalState());const o=[];this.meta.forEach((r,s)=>{s!==this.clientID&&HS<=n-r.lastUpdated&&this.states.has(s)&&o.push(s)}),o.length>0&&$E(this,o,"timeout")},Oc(HS/10)),t.on("destroy",()=>{this.destroy()}),this.setLocalState({})}destroy(){this.emit("destroy",[this]),this.setLocalState(null),super.destroy(),clearInterval(this._checkInterval)}getLocalState(){return this.states.get(this.clientID)||null}setLocalState(t){const n=this.clientID,o=this.meta.get(n),r=o===void 0?0:o.clock+1,s=this.states.get(n);t===null?this.states.delete(n):this.states.set(n,t),this.meta.set(n,{clock:r,lastUpdated:Tl()});const i=[],c=[],l=[],u=[];t===null?u.push(n):s==null?t!=null&&i.push(n):(c.push(n),yM(s,t)||l.push(n)),(i.length>0||l.length>0||u.length>0)&&this.emit("change",[{added:i,updated:l,removed:u},"local"]),this.emit("update",[{added:i,updated:c,removed:u},"local"])}setLocalStateField(t,n){const o=this.getLocalState();o!==null&&this.setLocalState({...o,[t]:n})}getStates(){return this.states}}const $E=(e,t,n)=>{const o=[];for(let r=0;r<t.length;r++){const s=t[r];if(e.states.has(s)){if(e.states.delete(s),s===e.clientID){const i=e.meta.get(s);e.meta.set(s,{clock:i.clock+1,lastUpdated:Tl()})}o.push(s)}}o.length>0&&(e.emit("change",[{added:[],updated:[],removed:o},n]),e.emit("update",[{added:[],updated:[],removed:o},n]))},V4=(e,t,n=e.states)=>{const o=t.length,r=k0();sn(r,o);for(let s=0;s<o;s++){const i=t[s],c=n.get(i)||null,l=e.meta.get(i).clock;sn(r,i),sn(r,l),uc(r,JSON.stringify(c))}return Sr(r)},kNe=(e,t,n)=>{const o=Rc(t),r=Tl(),s=[],i=[],c=[],l=[],u=_n(o);for(let d=0;d<u;d++){const p=_n(o);let f=_n(o);const b=JSON.parse(yl(o)),h=e.meta.get(p),g=e.states.get(p),z=h===void 0?0:h.clock;(z<f||z===f&&b===null&&e.states.has(p))&&(b===null?p===e.clientID&&e.getLocalState()!=null?f++:e.states.delete(p):e.states.set(p,b),e.meta.set(p,{clock:f,lastUpdated:r}),h===void 0&&b!==null?s.push(p):h!==void 0&&b===null?l.push(p):b!==null&&(yM(b,g)||c.push(p),i.push(p)))}(s.length>0||c.length>0||l.length>0)&&e.emit("change",[{added:s,updated:c,removed:l},n]),(s.length>0||i.length>0||l.length>0)&&e.emit("update",[{added:s,updated:i,removed:l},n])},SNe=(e,t)=>{const n=TE(e).buffer,o=TE(t).buffer;return crypto.subtle.importKey("raw",n,"PBKDF2",!1,["deriveKey"]).then(r=>crypto.subtle.deriveKey({name:"PBKDF2",salt:o,iterations:1e5,hash:"SHA-256"},r,{name:"AES-GCM",length:256},!0,["encrypt","decrypt"]))},Ise=(e,t)=>{if(!t)return pB(e);const n=crypto.getRandomValues(new Uint8Array(12));return crypto.subtle.encrypt({name:"AES-GCM",iv:n},t,e).then(o=>{const r=k0();return uc(r,"AES-GCM"),jr(r,n),jr(r,new Uint8Array(o)),Sr(r)})},CNe=(e,t)=>{const n=k0();return th(n,e),Ise(Sr(n),t)},Dse=(e,t)=>{if(!t)return pB(e);const n=Rc(e);yl(n)!=="AES-GCM"&&jEe(fa("Unknown encryption algorithm"));const r=w0(n),s=w0(n);return crypto.subtle.decrypt({name:"AES-GCM",iv:r},t,s).then(i=>new Uint8Array(i))},Fse=(e,t)=>Dse(e,t).then(n=>nh(Rc(new Uint8Array(n)))),R0=C8e("y-webrtc"),T2=0,$se=3,ZM=1,EB=4,QM=new Map,pc=new Map,Vse=e=>{let t=!0;e.webrtcConns.forEach(n=>{n.synced||(t=!1)}),(!t&&e.synced||t&&!e.synced)&&(e.synced=t,e.provider.emit("synced",[{synced:t}]),R0("synced ",ki,e.name,bf," with all peers"))},Hse=(e,t,n)=>{const o=Rc(t),r=k0(),s=_n(o);if(e===void 0)return null;const i=e.awareness,c=e.doc;let l=!1;switch(s){case T2:{sn(r,T2);const u=wNe(o,r,c,e);u===TB&&!e.synced&&n(),u===RB&&(l=!0);break}case $se:sn(r,ZM),jr(r,V4(i,Array.from(i.getStates().keys()))),l=!0;break;case ZM:kNe(i,w0(o),e);break;case EB:{const u=ff(o)===1,d=yl(o);if(d!==e.peerId&&(e.bcConns.has(d)&&!u||!e.bcConns.has(d)&&u)){const p=[],f=[];u?(e.bcConns.add(d),f.push(d)):(e.bcConns.delete(d),p.push(d)),e.provider.emit("peers",[{added:f,removed:p,webrtcPeers:Array.from(e.webrtcConns.keys()),bcPeers:Array.from(e.bcConns)}]),Use(e)}break}default:return console.error("Unable to compute message"),r}return l?r:null},qNe=(e,t)=>{const n=e.room;return R0("received message from ",ki,e.remotePeerId,gB," (",n.name,")",bf,V5),Hse(n,t,()=>{e.synced=!0,R0("synced ",ki,n.name,bf," with ",ki,e.remotePeerId),Vse(n)})},US=(e,t)=>{R0("send message to ",ki,e.remotePeerId,bf,gB," (",e.room.name,")",V5);try{e.peer.send(Sr(t))}catch{}},RNe=(e,t)=>{R0("broadcast message in ",ki,e.name,bf),e.webrtcConns.forEach(n=>{try{n.peer.send(t)}catch{}})};class H4{constructor(t,n,o,r){R0("establishing connection to ",ki,o),this.room=r,this.remotePeerId=o,this.glareToken=void 0,this.closed=!1,this.connected=!1,this.synced=!1,this.peer=new yNe({initiator:n,...r.provider.peerOpts}),this.peer.on("signal",s=>{this.glareToken===void 0&&(this.glareToken=Date.now()+Math.random()),K5(t,r,{to:o,from:r.peerId,type:"signal",token:this.glareToken,signal:s})}),this.peer.on("connect",()=>{R0("connected to ",ki,o),this.connected=!0;const i=r.provider.doc,c=r.awareness,l=k0();sn(l,T2),Lse(l,i),US(this,l);const u=c.getStates();if(u.size>0){const d=k0();sn(d,ZM),jr(d,V4(c,Array.from(u.keys()))),US(this,d)}}),this.peer.on("close",()=>{this.connected=!1,this.closed=!0,r.webrtcConns.has(this.remotePeerId)&&(r.webrtcConns.delete(this.remotePeerId),r.provider.emit("peers",[{removed:[this.remotePeerId],added:[],webrtcPeers:Array.from(r.webrtcConns.keys()),bcPeers:Array.from(r.bcConns)}])),Vse(r),this.peer.destroy(),R0("closed connection to ",ki,o),VE(r)}),this.peer.on("error",s=>{R0("Error in connection to ",ki,o,": ",s),VE(r)}),this.peer.on("data",s=>{const i=qNe(this,s);i!==null&&US(this,i)})}destroy(){this.peer.destroy()}}const Du=(e,t)=>Ise(t,e.key).then(n=>e.mux(()=>gNe(e.name,n))),jU=(e,t)=>{e.bcconnected&&Du(e,t),RNe(e,t)},VE=e=>{QM.forEach(t=>{t.connected&&(t.send({type:"subscribe",topics:[e.name]}),e.webrtcConns.size<e.provider.maxConns&&K5(t,e,{type:"announce",from:e.peerId}))})},Use=e=>{if(e.provider.filterBcConns){const t=k0();sn(t,EB),UM(t,1),uc(t,e.peerId),Du(e,Sr(t))}};class TNe{constructor(t,n,o,r){this.peerId=v1e(),this.doc=t,this.awareness=n.awareness,this.provider=n,this.synced=!1,this.name=o,this.key=r,this.webrtcConns=new Map,this.bcConns=new Set,this.mux=MNe(),this.bcconnected=!1,this._bcSubscriber=s=>Dse(new Uint8Array(s),r).then(i=>this.mux(()=>{const c=Hse(this,i,()=>{});c&&Du(this,Sr(c))})),this._docUpdateHandler=(s,i)=>{const c=k0();sn(c,T2),vNe(c,s),jU(this,Sr(c))},this._awarenessUpdateHandler=({added:s,updated:i,removed:c},l)=>{const u=s.concat(i).concat(c),d=k0();sn(d,ZM),jr(d,V4(this.awareness,u)),jU(this,Sr(d))},this._beforeUnloadHandler=()=>{$E(this.awareness,[t.clientID],"window unload"),pc.forEach(s=>{s.disconnect()})},typeof window<"u"?window.addEventListener("beforeunload",this._beforeUnloadHandler):typeof Oi<"u"&&Oi.on("exit",this._beforeUnloadHandler)}connect(){this.doc.on("update",this._docUpdateHandler),this.awareness.on("update",this._awarenessUpdateHandler),VE(this);const t=this.name;hNe(t,this._bcSubscriber),this.bcconnected=!0,Use(this);const n=k0();sn(n,T2),Lse(n,this.doc),Du(this,Sr(n));const o=k0();sn(o,T2),Pse(o,this.doc),Du(this,Sr(o));const r=k0();sn(r,$se),Du(this,Sr(r));const s=k0();sn(s,ZM),jr(s,V4(this.awareness,[this.doc.clientID])),Du(this,Sr(s))}disconnect(){QM.forEach(n=>{n.connected&&n.send({type:"unsubscribe",topics:[this.name]})}),$E(this.awareness,[this.doc.clientID],"disconnect");const t=k0();sn(t,EB),UM(t,0),uc(t,this.peerId),Du(this,Sr(t)),mNe(this.name,this._bcSubscriber),this.bcconnected=!1,this.doc.off("update",this._docUpdateHandler),this.awareness.off("update",this._awarenessUpdateHandler),this.webrtcConns.forEach(n=>n.destroy())}destroy(){this.disconnect(),typeof window<"u"?window.removeEventListener("beforeunload",this._beforeUnloadHandler):typeof Oi<"u"&&Oi.off("exit",this._beforeUnloadHandler)}}const ENe=(e,t,n,o)=>{if(pc.has(n))throw fa(`A Yjs Doc connected to room "${n}" already exists!`);const r=new TNe(e,t,n,o);return pc.set(n,r),r},K5=(e,t,n)=>{t.key?CNe(n,t.key).then(o=>{e.send({type:"publish",topic:t.name,data:j1e(o)})}):e.send({type:"publish",topic:t.name,data:n})};class Xse extends pNe{constructor(t){super(t),this.providers=new Set,this.on("connect",()=>{R0(`connected (${t})`);const n=Array.from(pc.keys());this.send({type:"subscribe",topics:n}),pc.forEach(o=>K5(this,o,{type:"announce",from:o.peerId}))}),this.on("message",n=>{switch(n.type){case"publish":{const o=n.topic,r=pc.get(o);if(r==null||typeof o!="string")return;const s=i=>{const c=r.webrtcConns,l=r.peerId;if(i==null||i.from===l||i.to!==void 0&&i.to!==l||r.bcConns.has(i.from))return;const u=c.has(i.from)?()=>{}:()=>r.provider.emit("peers",[{removed:[],added:[i.from],webrtcPeers:Array.from(r.webrtcConns.keys()),bcPeers:Array.from(r.bcConns)}]);switch(i.type){case"announce":c.size<r.provider.maxConns&&(w1(c,i.from,()=>new H4(this,!0,i.from,r)),u());break;case"signal":if(i.signal.type==="offer"){const d=c.get(i.from);if(d){const p=i.token,f=d.glareToken;if(f&&f>p){R0("offer rejected: ",i.from);return}d.glareToken=void 0}}if(i.signal.type==="answer"){R0("offer answered by: ",i.from);const d=c.get(i.from);d.glareToken=void 0}i.to===l&&(w1(c,i.from,()=>new H4(this,!1,i.from,r)).peer.signal(i.signal),u());break}};r.key?typeof n.data=="string"&&Fse(mB(n.data),r.key).then(s):s(n.data)}}}),this.on("disconnect",()=>R0(`disconnect (${t})`))}}class WNe extends d3{constructor(t,n,{signaling:o=["wss://y-webrtc-eu.fly.dev"],password:r=null,awareness:s=new _Ne(n),maxConns:i=20+Oc(LEe()*15),filterBcConns:c=!0,peerOpts:l={}}={}){super(),this.roomName=t,this.doc=n,this.filterBcConns=c,this.awareness=s,this.shouldConnect=!1,this.signalingUrls=o,this.signalingConns=[],this.maxConns=i,this.peerOpts=l,this.key=r?SNe(r,t):pB(null),this.room=null,this.key.then(u=>{this.room=ENe(n,this,t,u),this.shouldConnect?this.room.connect():this.room.disconnect()}),this.connect(),this.destroy=this.destroy.bind(this),n.on("destroy",this.destroy)}get connected(){return this.room!==null&&this.shouldConnect}connect(){this.shouldConnect=!0,this.signalingUrls.forEach(t=>{const n=w1(QM,t,()=>new Xse(t));this.signalingConns.push(n),n.providers.add(this)}),this.room&&this.room.connect()}disconnect(){this.shouldConnect=!1,this.signalingConns.forEach(t=>{t.providers.delete(this),t.providers.size===0&&(t.destroy(),QM.delete(t.url))}),this.room&&this.room.disconnect()}destroy(){this.doc.off("destroy",this.destroy),this.key.then(()=>{this.room.destroy(),pc.delete(this.roomName)}),super.destroy()}}function NNe(e,t){e.on("connect",()=>{R0(`connected (${t})`);const n=Array.from(pc.keys());e.send({type:"subscribe",topics:n}),pc.forEach(o=>K5(e,o,{type:"announce",from:o.peerId}))}),e.on("message",n=>{switch(n.type){case"publish":{const o=n.topic,r=pc.get(o);if(r===null||typeof o!="string"||r===void 0)return;const s=i=>{const c=r.webrtcConns,l=r.peerId;if(i===null||i.from===l||i.to!==void 0&&i.to!==l||r.bcConns.has(i.from))return;const u=c.has(i.from)?()=>{}:()=>r.provider.emit("peers",[{removed:[],added:[i.from],webrtcPeers:Array.from(r.webrtcConns.keys()),bcPeers:Array.from(r.bcConns)}]);switch(i.type){case"announce":c.size<r.provider.maxConns&&(w1(c,i.from,()=>new H4(e,!0,i.from,r)),u());break;case"signal":if(i.signal.type==="offer"){const d=c.get(i.from);if(d){const p=i.token,f=d.glareToken;if(f&&f>p){R0("offer rejected: ",i.from);return}d.glareToken=void 0}}if(i.signal.type==="answer"){R0("offer answered by: ",i.from);const d=c.get(i.from);d&&(d.glareToken=void 0)}i.to===l&&(w1(c,i.from,()=>new H4(e,!1,i.from,r)).peer.signal(i.signal),u());break}};r.key?typeof n.data=="string"&&Fse(mB(n.data),r.key).then(s):s(n.data)}}}),e.on("disconnect",()=>R0(`disconnect (${t})`))}function IU(e){if(e.shouldConnect&&e.ws===null){const t=Math.floor(1e5+Math.random()*9e5),n=e.url,o=new window.EventSource(tn(n,{subscriber_id:t,action:"gutenberg_signaling_server"}));let r=null;o.onmessage=l=>{e.lastMessageReceived=Date.now();const u=l.data;if(u){const d=JSON.parse(u);Array.isArray(d)&&d.forEach(s)}},e.ws=o,e.connecting=!0,e.connected=!1;const s=l=>{l&&l.type==="pong"&&(clearTimeout(r),r=setTimeout(c,U4/2)),e.emit("message",[l,e])},i=l=>{e.ws!==null&&(e.ws.close(),e.ws=null,e.connecting=!1,e.connected?(e.connected=!1,e.emit("disconnect",[{type:"disconnect",error:l},e])):e.unsuccessfulReconnects++),clearTimeout(r)},c=()=>{e.ws&&e.ws.readyState===window.EventSource.OPEN&&e.send({type:"ping"})};e.ws&&(e.ws.onclose=()=>{i(null)},e.ws.send=function(u){window.fetch(n,{body:new URLSearchParams({subscriber_id:t.toString(),action:"gutenberg_signaling_server",message:u}),method:"POST"}).catch(()=>{R0("Error sending to server with message: "+u)})}),o.onerror=()=>{},o.onopen=()=>{e.connected||o.readyState===window.EventSource.OPEN&&(e.lastMessageReceived=Date.now(),e.connecting=!1,e.connected=!0,e.unsuccessfulReconnects=0,e.emit("connect",[{type:"connect"},e]),r=setTimeout(c,U4/2))}}}const U4=3e4;class BNe extends d3{constructor(t){super(),this.url=t,this.ws=null,this.binaryType=null,this.connected=!1,this.connecting=!1,this.unsuccessfulReconnects=0,this.lastMessageReceived=0,this.shouldConnect=!0,this._checkInterval=setInterval(()=>{this.connected&&U4<Date.now()-this.lastMessageReceived&&this.ws&&this.ws.close()},U4/2),IU(this),this.providers=new Set,NNe(this,t)}send(t){this.ws&&this.ws.send(JSON.stringify(t))}destroy(){clearInterval(this._checkInterval),this.disconnect(),super.destroy()}disconnect(){this.shouldConnect=!1,this.ws!==null&&this.ws.close()}connect(){this.shouldConnect=!0,!this.connected&&this.ws===null&&IU(this)}}class LNe extends WNe{connect(){this.shouldConnect=!0,this.signalingUrls.forEach(t=>{const n=w1(QM,t,t.startsWith("ws://")||t.startsWith("wss://")?()=>new Xse(t):()=>new BNe(t));this.signalingConns.push(n),n.providers.add(this)}),this.room&&this.room.connect()}}function PNe({signaling:e,password:t}){return function(n,o,r){const s=`${o}-${n}`;return new LNe(s,r,{signaling:e,password:t}),Promise.resolve(()=>!0)}}const jNe=(e,t)=>{const n={},o={},r={};function s(u,d){n[u]=d}async function i(u,d,p){const f=new $h;r[u]=r[u]||{},r[u][d]=f;const b=()=>{const z=n[u].fromCRDTDoc(f);p(z)};f.on("update",b);const h=await e(d,u,f);t&&await t(d,u,f);const g=n[u].fetch;g&&g(d).then(z=>{f.transact(()=>{n[u].applyChangesToDoc(f,z)})}),o[u]=o[u]||{},o[u][d]=()=>{h(),f.off("update",b)}}async function c(u,d,p){const f=r[u][d];if(!f)throw"Error doc "+u+" "+d+" not found";f.transact(()=>{n[u].applyChangesToDoc(f,p)})}async function l(u,d){o?.[u]?.[d]&&o[u][d]()}return{register:s,bootstrap:i,update:c,discard:l}};let XS;function HE(){return XS||(XS=jNe(lNe,PNe({signaling:[window?.wp?.ajax?.settings?.url],password:window?.__experimentalCollaborativeEditingSecret}))),XS}function INe(e,t){return{type:"RECEIVE_USER_QUERY",users:Array.isArray(t)?t:[t],queryID:e}}function DNe(e){return{type:"RECEIVE_CURRENT_USER",currentUser:e}}function FNe(e){return{type:"ADD_ENTITIES",entities:e}}function $Ne(e,t,n,o,r=!1,s,i){e==="postType"&&(n=(Array.isArray(n)?n:[n]).map(l=>l.status==="auto-draft"?{...l,title:""}:l));let c;return o?c=aqe(n,o,s,i):c=$0e(n,s,i),{...c,kind:e,name:t,invalidateCache:r}}function VNe(e){return{type:"RECEIVE_CURRENT_THEME",currentTheme:e}}function HNe(e){return{type:"RECEIVE_CURRENT_GLOBAL_STYLES_ID",id:e}}function UNe(e,t){return{type:"RECEIVE_THEME_GLOBAL_STYLES",stylesheet:e,globalStyles:t}}function XNe(e,t){return{type:"RECEIVE_THEME_GLOBAL_STYLE_VARIATIONS",stylesheet:e,variations:t}}function GNe(){return Ke("wp.data.dispatch( 'core' ).receiveThemeSupports",{since:"5.9"}),{type:"DO_NOTHING"}}function KNe(e,t){return Ke("wp.data.dispatch( 'core' ).receiveThemeGlobalStyleRevisions()",{since:"6.5.0",alternative:"wp.data.dispatch( 'core' ).receiveRevisions"}),{type:"RECEIVE_THEME_GLOBAL_STYLE_REVISIONS",currentId:e,revisions:t}}function YNe(e,t){return{type:"RECEIVE_EMBED_PREVIEW",url:e,preview:t}}const Gse=(e,t,n,o,{__unstableFetch:r=Tt,throwOnError:s=!1}={})=>async({dispatch:i,resolveSelect:c})=>{const u=(await c.getEntitiesConfig(e)).find(b=>b.kind===e&&b.name===t);let d,p=!1;if(!u)return;const f=await i.__unstableAcquireStoreLock(No,["entities","records",e,t,n],{exclusive:!0});try{i({type:"DELETE_ENTITY_RECORD_START",kind:e,name:t,recordId:n});let b=!1;try{let h=`${u.baseURL}/${n}`;o&&(h=tn(h,o)),p=await r({path:h,method:"DELETE"}),await i(iqe(e,t,n,!0))}catch(h){b=!0,d=h}if(i({type:"DELETE_ENTITY_RECORD_FINISH",kind:e,name:t,recordId:n,error:d}),b&&s)throw d;return p}finally{i.__unstableReleaseStoreLock(f)}},ZNe=(e,t,n,o,r={})=>({select:s,dispatch:i})=>{const c=s.getEntityConfig(e,t);if(!c)throw new Error(`The entity being edited (${e}, ${t}) does not have a loaded config.`);const{mergedEdits:l={}}=c,u=s.getRawEntityRecord(e,t,n),d=s.getEditedEntityRecord(e,t,n),p={kind:e,name:t,recordId:n,edits:Object.keys(o).reduce((f,b)=>{const h=u[b],g=d[b],z=l[b]?{...g,...o[b]}:o[b];return f[b]=N0(h,z)?void 0:z,f},{})};if(window.__experimentalEnableSync&&c.syncConfig){if(globalThis.IS_GUTENBERG_PLUGIN){const f=c.getSyncObjectId(n);HE().update(c.syncObjectType+"--edit",f,p.edits)}}else r.undoIgnore||s.getUndoManager().addRecord([{id:{kind:e,name:t,recordId:n},changes:Object.keys(o).reduce((f,b)=>(f[b]={from:d[b],to:o[b]},f),{})}],r.isCached),i({type:"EDIT_ENTITY_RECORD",...p})},QNe=()=>({select:e,dispatch:t})=>{const n=e.getUndoManager().undo();n&&t({type:"UNDO",record:n})},JNe=()=>({select:e,dispatch:t})=>{const n=e.getUndoManager().redo();n&&t({type:"REDO",record:n})},eBe=()=>({select:e})=>{e.getUndoManager().addRecord()},Kse=(e,t,n,{isAutosave:o=!1,__unstableFetch:r=Tt,throwOnError:s=!1}={})=>async({select:i,resolveSelect:c,dispatch:l})=>{const d=(await c.getEntitiesConfig(e)).find(h=>h.kind===e&&h.name===t);if(!d)return;const p=d.key||e1,f=n[p],b=await l.__unstableAcquireStoreLock(No,["entities","records",e,t,f||Is()],{exclusive:!0});try{for(const[A,_]of Object.entries(n))if(typeof _=="function"){const v=_(i.getEditedEntityRecord(e,t,f));l.editEntityRecord(e,t,f,{[A]:v},{undoIgnore:!0}),n[A]=v}l({type:"SAVE_ENTITY_RECORD_START",kind:e,name:t,recordId:f,isAutosave:o});let h,g,z=!1;try{const A=`${d.baseURL}${f?"/"+f:""}`,_=i.getRawEntityRecord(e,t,f);if(o){const v=i.getCurrentUser(),M=v?v.id:void 0,y=await c.getAutosave(_.type,_.id,M);let k={..._,...y,...n};if(k=Object.keys(k).reduce((S,C)=>(["title","excerpt","content","meta"].includes(C)&&(S[C]=k[C]),S),{status:k.status==="auto-draft"?"draft":void 0}),h=await r({path:`${A}/autosaves`,method:"POST",data:k}),_.id===h.id){let S={..._,...k,...h};S=Object.keys(S).reduce((C,R)=>(["title","excerpt","content"].includes(R)?C[R]=S[R]:R==="status"?C[R]=_.status==="auto-draft"&&S.status==="draft"?S.status:_.status:C[R]=_[R],C),{}),l.receiveEntityRecords(e,t,S,void 0,!0)}else l.receiveAutosaves(_.id,h)}else{let v=n;d.__unstablePrePersist&&(v={...v,...d.__unstablePrePersist(_,v)}),h=await r({path:A,method:f?"PUT":"POST",data:v}),l.receiveEntityRecords(e,t,h,void 0,!0,v)}}catch(A){z=!0,g=A}if(l({type:"SAVE_ENTITY_RECORD_FINISH",kind:e,name:t,recordId:f,error:g,isAutosave:o}),z&&s)throw g;return h}finally{l.__unstableReleaseStoreLock(b)}},tBe=e=>async({dispatch:t})=>{const n=eEe(),o={saveEntityRecord(i,c,l,u){return n.add(d=>t.saveEntityRecord(i,c,l,{...u,__unstableFetch:d}))},saveEditedEntityRecord(i,c,l,u){return n.add(d=>t.saveEditedEntityRecord(i,c,l,{...u,__unstableFetch:d}))},deleteEntityRecord(i,c,l,u,d){return n.add(p=>t.deleteEntityRecord(i,c,l,u,{...d,__unstableFetch:p}))}},r=e.map(i=>i(o)),[,...s]=await Promise.all([n.run(),...r]);return s},nBe=(e,t,n,o)=>async({select:r,dispatch:s,resolveSelect:i})=>{if(!r.hasEditsForEntityRecord(e,t,n))return;const l=(await i.getEntitiesConfig(e)).find(f=>f.kind===e&&f.name===t);if(!l)return;const u=l.key||e1,d=r.getEntityRecordNonTransientEdits(e,t,n),p={[u]:n,...d};return await s.saveEntityRecord(e,t,p,o)},oBe=(e,t,n,o,r)=>async({select:s,dispatch:i,resolveSelect:c})=>{if(!s.hasEditsForEntityRecord(e,t,n))return;const l=s.getEntityRecordNonTransientEdits(e,t,n),u={};for(const b of o)B5(u,b,rqe(l,b));const f=(await c.getEntitiesConfig(e)).find(b=>b.kind===e&&b.name===t)?.key||e1;return n&&(u[f]=n),await i.saveEntityRecord(e,t,u,r)};function rBe(e){return Ke("wp.data.dispatch( 'core' ).receiveUploadPermissions",{since:"5.9",alternative:"receiveUserPermission"}),Yse("create/media",e)}function Yse(e,t){return{type:"RECEIVE_USER_PERMISSION",key:e,isAllowed:t}}function sBe(e){return{type:"RECEIVE_USER_PERMISSIONS",permissions:e}}function iBe(e,t){return{type:"RECEIVE_AUTOSAVES",postId:e,autosaves:Array.isArray(t)?t:[t]}}function aBe(e){return{type:"RECEIVE_NAVIGATION_FALLBACK_ID",fallbackId:e}}function cBe(e,t){return{type:"RECEIVE_DEFAULT_TEMPLATE",query:e,templateId:t}}const lBe=(e,t,n,o,r,s=!1,i)=>async({dispatch:c,resolveSelect:l})=>{const d=(await l.getEntitiesConfig(e)).find(f=>f.kind===e&&f.name===t),p=d&&d?.revisionKey?d.revisionKey:e1;c({type:"RECEIVE_ITEM_REVISIONS",key:p,items:Array.isArray(o)?o:[o],recordKey:n,meta:i,query:r,kind:e,name:t,invalidateCache:s})},uBe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalBatch:tBe,__experimentalReceiveCurrentGlobalStylesId:HNe,__experimentalReceiveThemeBaseGlobalStyles:UNe,__experimentalReceiveThemeGlobalStyleVariations:XNe,__experimentalSaveSpecifiedEntityEdits:oBe,__unstableCreateUndoLevel:eBe,addEntities:FNe,deleteEntityRecord:Gse,editEntityRecord:ZNe,receiveAutosaves:iBe,receiveCurrentTheme:VNe,receiveCurrentUser:DNe,receiveDefaultTemplateId:cBe,receiveEmbedPreview:YNe,receiveEntityRecords:$Ne,receiveNavigationFallbackId:aBe,receiveRevisions:lBe,receiveThemeGlobalStyleRevisions:KNe,receiveThemeSupports:GNe,receiveUploadPermissions:rBe,receiveUserPermission:Yse,receiveUserPermissions:sBe,receiveUserQuery:INe,redo:JNe,saveEditedEntityRecord:nBe,saveEntityRecord:Kse,undo:QNe},Symbol.toStringTag,{value:"Module"}));function dBe(e,t){return{type:"RECEIVE_REGISTERED_POST_META",postType:e,registeredPostMeta:t}}const pBe=Object.freeze(Object.defineProperty({__proto__:null,receiveRegisteredPostMeta:dBe},Symbol.toStringTag,{value:"Module"}));let $b;function Lt(e){if(typeof e!="string"||e.indexOf("&")===-1)return e;$b===void 0&&(document.implementation&&document.implementation.createHTMLDocument?$b=document.implementation.createHTMLDocument("").createElement("textarea"):$b=document.createElement("textarea")),$b.innerHTML=e;const t=$b.textContent;return $b.innerHTML="",t}async function fBe(e,t={},n={}){const o=t.isInitialSuggestions&&t.initialSuggestionsSearchOptions?{...t,...t.initialSuggestionsSearchOptions}:t,{type:r,subtype:s,page:i,perPage:c=t.isInitialSuggestions?3:20}=o,{disablePostFormats:l=!1}=n,u=[];(!r||r==="post")&&u.push(Tt({path:tn("/wp/v2/search",{search:e,page:i,per_page:c,type:"post",subtype:s})}).then(f=>f.map(b=>({id:b.id,url:b.url,title:Lt(b.title||"")||m("(no title)"),type:b.subtype||b.type,kind:"post-type"}))).catch(()=>[])),(!r||r==="term")&&u.push(Tt({path:tn("/wp/v2/search",{search:e,page:i,per_page:c,type:"term",subtype:s})}).then(f=>f.map(b=>({id:b.id,url:b.url,title:Lt(b.title||"")||m("(no title)"),type:b.subtype||b.type,kind:"taxonomy"}))).catch(()=>[])),!l&&(!r||r==="post-format")&&u.push(Tt({path:tn("/wp/v2/search",{search:e,page:i,per_page:c,type:"post-format",subtype:s})}).then(f=>f.map(b=>({id:b.id,url:b.url,title:Lt(b.title||"")||m("(no title)"),type:b.subtype||b.type,kind:"taxonomy"}))).catch(()=>[])),(!r||r==="attachment")&&u.push(Tt({path:tn("/wp/v2/media",{search:e,page:i,per_page:c})}).then(f=>f.map(b=>({id:b.id,url:b.source_url,title:Lt(b.title.rendered||"")||m("(no title)"),type:b.type,kind:"media"}))).catch(()=>[]));let p=(await Promise.all(u)).flat();return p=p.filter(f=>!!f.id),p=bBe(p,e),p=p.slice(0,c),p}function bBe(e,t){const n=DU(t),o={};for(const r of e)if(r.title){const s=DU(r.title),i=s.filter(d=>n.some(p=>d===p)),c=s.filter(d=>n.some(p=>d!==p&&d.includes(p))),l=i.length/s.length*10,u=c.length/s.length;o[r.id]=l+u}else o[r.id]=0;return e.sort((r,s)=>o[s.id]-o[r.id])}function DU(e){return e.toLowerCase().match(/[\p{L}\p{N}]+/gu)||[]}const GS=new Map,hBe=async(e,t={})=>{const n="/wp-block-editor/v1/url-details",o={url:jf(e)};if(!Pf(e))return Promise.reject(`${e} is not a valid URL.`);const r=v5(e);return!r||!WN(r)||!r.startsWith("http")||!/^https?:\/\/[^\/\s]/i.test(e)?Promise.reject(`${e} does not have a valid protocol. URLs must be "http" based`):GS.has(e)?GS.get(e):Tt({path:tn(n,o),...t}).then(s=>(GS.set(e,s),s))};async function mBe(){const e=await Tt({path:"/wp/v2/block-patterns/patterns"});return e?e.map(t=>Object.fromEntries(Object.entries(t).map(([n,o])=>[qN(n),o]))):[]}const gBe=e=>async({dispatch:t})=>{const n=tn("/wp/v2/users/?who=authors&per_page=100",e),o=await Tt({path:n});t.receiveUserQuery(n,o)},MBe=()=>async({dispatch:e})=>{const t=await Tt({path:"/wp/v2/users/me"});e.receiveCurrentUser(t)},Zse=(e,t,n="",o)=>async({select:r,dispatch:s,registry:i,resolveSelect:c})=>{const u=(await c.getEntitiesConfig(e)).find(p=>p.name===t&&p.kind===e);if(!u)return;const d=await s.__unstableAcquireStoreLock(No,["entities","records",e,t,n],{exclusive:!1});try{if(window.__experimentalEnableSync&&u.syncConfig&&!o){if(globalThis.IS_GUTENBERG_PLUGIN){const p=u.getSyncObjectId(n);await HE().bootstrap(u.syncObjectType,p,f=>{s.receiveEntityRecords(e,t,f,o)}),await HE().bootstrap(u.syncObjectType+"--edit",p,f=>{s({type:"EDIT_ENTITY_RECORD",kind:e,name:t,recordId:n,edits:f,meta:{undo:void 0}})})}}else{o!==void 0&&o._fields&&(o={...o,_fields:[...new Set([...Md(o._fields)||[],u.key||e1])].join()});const p=tn(u.baseURL+(n?"/"+n:""),{...u.baseURLParams,...o});if(o!==void 0&&o._fields&&(o={...o,include:[n]},r.hasEntityRecords(e,t,o)))return;const f=await Tt({path:p,parse:!1}),b=await f.json(),h=ZN(f.headers?.get("allow")),g=[],z={};for(const A of zM)z[L5(A,{kind:e,name:t,id:n})]=h[A],g.push([A,{kind:e,name:t,id:n}]);i.batch(()=>{s.receiveEntityRecords(e,t,b,o),s.receiveUserPermissions(z),s.finishResolutions("canUser",g)})}}finally{s.__unstableReleaseStoreLock(d)}},zBe=YN("getEntityRecord"),OBe=YN("getEntityRecord"),X4=(e,t,n={})=>async({dispatch:o,registry:r,resolveSelect:s})=>{const c=(await s.getEntitiesConfig(e)).find(p=>p.name===t&&p.kind===e);if(!c)return;const l=await o.__unstableAcquireStoreLock(No,["entities","records",e,t],{exclusive:!1}),u=c.key||e1;function d(p){return p.filter(f=>f?.[u]).map(f=>[e,t,f[u]])}try{n._fields&&(n={...n,_fields:[...new Set([...Md(n._fields)||[],c.key||e1])].join()});const p=tn(c.baseURL,{...c.baseURLParams,...n});let f=[],b;if(c.supportsPagination&&n.per_page!==-1){const h=await Tt({path:p,parse:!1});f=Object.values(await h.json()),b={totalItems:parseInt(h.headers.get("X-WP-Total")),totalPages:parseInt(h.headers.get("X-WP-TotalPages"))}}else if(n.per_page===-1&&n[F0e]===!0){let h=1,g;do{const z=await Tt({path:tn(p,{page:h,per_page:100}),parse:!1}),A=Object.values(await z.json());g=parseInt(z.headers.get("X-WP-TotalPages")),f.push(...A),r.batch(()=>{o.receiveEntityRecords(e,t,f,n),o.finishResolutions("getEntityRecord",d(A))}),h++}while(h<=g);b={totalItems:f.length,totalPages:1}}else f=Object.values(await Tt({path:p})),b={totalItems:f.length,totalPages:1};n._fields&&(f=f.map(h=>(n._fields.split(",").forEach(g=>{h.hasOwnProperty(g)||(h[g]=void 0)}),h))),r.batch(()=>{if(o.receiveEntityRecords(e,t,f,n,!1,void 0,b),!n?._fields&&!n.context){const h=f.filter(A=>A?.[u]).map(A=>({id:A[u],permissions:ZN(A?._links?.self?.[0].targetHints.allow)})),g=[],z={};for(const A of h)for(const _ of zM)g.push([_,{kind:e,name:t,id:A.id}]),z[L5(_,{kind:e,name:t,id:A.id})]=A.permissions[_];o.receiveUserPermissions(z),o.finishResolutions("getEntityRecord",d(f)),o.finishResolutions("canUser",g)}o.__unstableReleaseStoreLock(l)})}catch{o.__unstableReleaseStoreLock(l)}};X4.shouldInvalidate=(e,t,n)=>(e.type==="RECEIVE_ITEMS"||e.type==="REMOVE_ITEMS")&&e.invalidateCache&&t===e.kind&&n===e.name;const yBe=()=>async({dispatch:e,resolveSelect:t})=>{const n=await t.getEntityRecords("root","theme",{status:"active"});e.receiveCurrentTheme(n[0])},ABe=YN("getCurrentTheme"),vBe=e=>async({dispatch:t})=>{try{const n=await Tt({path:tn("/oembed/1.0/proxy",{url:e})});t.receiveEmbedPreview(e,n)}catch{t.receiveEmbedPreview(e,!1)}},Qse=(e,t,n)=>async({dispatch:o,registry:r,resolveSelect:s})=>{if(!zM.includes(e))throw new Error(`'${e}' is not a valid action.`);const{hasStartedResolution:i}=r.select(No);for(const d of zM){if(d===e)continue;if(i("canUser",[d,t,n]))return}let c=null;if(typeof t=="object"){if(!t.kind||!t.name)throw new Error("The entity resource object is not valid.");const p=(await s.getEntitiesConfig(t.kind)).find(f=>f.name===t.name&&f.kind===t.kind);if(!p)return;c=p.baseURL+(t.id?"/"+t.id:"")}else c=`/wp/v2/${t}`+(n?"/"+n:"");let l;try{l=await Tt({path:c,method:"OPTIONS",parse:!1})}catch{return}const u=ZN(l.headers?.get("allow"));r.batch(()=>{for(const d of zM){const p=L5(d,t,n);o.receiveUserPermission(p,u[d]),d!==e&&o.finishResolution("canUser",[d,t,n])}})},xBe=(e,t,n)=>async({dispatch:o})=>{await o(Qse("update",{kind:e,name:t,id:n}))},wBe=(e,t)=>async({dispatch:n,resolveSelect:o})=>{const{rest_base:r,rest_namespace:s="wp/v2",supports:i}=await o.getPostType(e);if(!i?.autosave)return;const c=await Tt({path:`/${s}/${r}/${t}/autosaves?context=edit`});c&&c.length&&n.receiveAutosaves(t,c)},_Be=(e,t)=>async({resolveSelect:n})=>{await n.getAutosaves(e,t)},kBe=()=>async({dispatch:e,resolveSelect:t})=>{const o=(await t.getEntityRecords("root","theme",{status:"active"}))?.[0]?._links?.["wp:user-global-styles"]?.[0]?.href;if(!o)return;const r=o.match(/\/(\d+)(?:\?|$)/),s=r?Number(r[1]):null;s&&e.__experimentalReceiveCurrentGlobalStylesId(s)},SBe=()=>async({resolveSelect:e,dispatch:t})=>{const n=await e.getCurrentTheme(),o=await Tt({path:`/wp/v2/global-styles/themes/${n.stylesheet}?context=view`});t.__experimentalReceiveThemeBaseGlobalStyles(n.stylesheet,o)},CBe=()=>async({resolveSelect:e,dispatch:t})=>{const n=await e.getCurrentTheme(),o=await Tt({path:`/wp/v2/global-styles/themes/${n.stylesheet}/variations?context=view`});t.__experimentalReceiveThemeGlobalStyleVariations(n.stylesheet,o)},Jse=()=>async({resolveSelect:e,dispatch:t})=>{const n=await e.__experimentalGetCurrentGlobalStylesId(),r=(n?await e.getEntityRecord("root","globalStyles",n):void 0)?._links?.["version-history"]?.[0]?.href;if(r){const i=(await Tt({url:r}))?.map(c=>Object.fromEntries(Object.entries(c).map(([l,u])=>[qN(l),u])));t.receiveThemeGlobalStyleRevisions(n,i)}};Jse.shouldInvalidate=e=>e.type==="SAVE_ENTITY_RECORD_FINISH"&&e.kind==="root"&&!e.error&&e.name==="globalStyles";const qBe=()=>async({dispatch:e})=>{const t=await mBe();e({type:"RECEIVE_BLOCK_PATTERNS",patterns:t})},RBe=()=>async({dispatch:e})=>{const t=await Tt({path:"/wp/v2/block-patterns/categories"});e({type:"RECEIVE_BLOCK_PATTERN_CATEGORIES",categories:t})},TBe=()=>async({dispatch:e,resolveSelect:t})=>{const o=(await t.getEntityRecords("taxonomy","wp_pattern_category",{per_page:-1,_fields:"id,name,description,slug",context:"view"}))?.map(r=>({...r,label:Lt(r.name),name:r.slug}))||[];e({type:"RECEIVE_USER_PATTERN_CATEGORIES",patternCategories:o})},EBe=()=>async({dispatch:e,select:t,registry:n})=>{const o=await Tt({path:tn("/wp-block-editor/v1/navigation-fallback",{_embed:!0})}),r=o?._embedded?.self;n.batch(()=>{if(e.receiveNavigationFallbackId(o?.id),!r)return;const i=!t.getEntityRecord("postType","wp_navigation",o.id);e.receiveEntityRecords("postType","wp_navigation",r,void 0,i),e.finishResolution("getEntityRecord",["postType","wp_navigation",o.id])})},WBe=e=>async({dispatch:t,registry:n,resolveSelect:o})=>{const r=await Tt({path:tn("/wp/v2/templates/lookup",e)});await o.getEntitiesConfig("postType"),r?.id&&n.batch(()=>{t.receiveDefaultTemplateId(e,r.id),t.receiveEntityRecords("postType","wp_template",[r]),t.finishResolution("getEntityRecord",["postType","wp_template",r.id])})},eie=(e,t,n,o={})=>async({dispatch:r,registry:s,resolveSelect:i})=>{const l=(await i.getEntitiesConfig(e)).find(h=>h.name===t&&h.kind===e);if(!l)return;o._fields&&(o={...o,_fields:[...new Set([...Md(o._fields)||[],l.revisionKey||e1])].join()});const u=tn(l.getRevisionsUrl(n),o);let d,p;const f={},b=l.supportsPagination&&o.per_page!==-1;try{p=await Tt({path:u,parse:!b})}catch{return}p&&(b?(d=Object.values(await p.json()),f.totalItems=parseInt(p.headers.get("X-WP-Total"))):d=Object.values(p),o._fields&&(d=d.map(h=>(o._fields.split(",").forEach(g=>{h.hasOwnProperty(g)||(h[g]=void 0)}),h))),s.batch(()=>{if(r.receiveRevisions(e,t,n,d,o,!1,f),!o?._fields&&!o.context){const h=l.key||e1,g=d.filter(z=>z[h]).map(z=>[e,t,n,z[h]]);r.finishResolutions("getRevision",g)}}))};eie.shouldInvalidate=(e,t,n,o)=>e.type==="SAVE_ENTITY_RECORD_FINISH"&&n===e.name&&t===e.kind&&!e.error&&o===e.recordId;const NBe=(e,t,n,o,r)=>async({dispatch:s,resolveSelect:i})=>{const l=(await i.getEntitiesConfig(e)).find(p=>p.name===t&&p.kind===e);if(!l)return;r!==void 0&&r._fields&&(r={...r,_fields:[...new Set([...Md(r._fields)||[],l.revisionKey||e1])].join()});const u=tn(l.getRevisionsUrl(n,o),r);let d;try{d=await Tt({path:u})}catch{return}d&&s.receiveRevisions(e,t,n,d,r)},BBe=e=>async({dispatch:t,resolveSelect:n})=>{let o;try{const{rest_namespace:r="wp/v2",rest_base:s}=await n.getPostType(e)||{};o=await Tt({path:`${r}/${s}/?context=edit`,method:"OPTIONS"})}catch{return}o&&t.receiveRegisteredPostMeta(e,o?.schema?.properties?.meta?.properties)},LBe=e=>async({dispatch:t})=>{const n=s1e.find(o=>o.kind===e);if(n)try{const o=await n.loadEntities();if(!o.length)return;t.addEntities(o)}catch{}},PBe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetCurrentGlobalStylesId:kBe,__experimentalGetCurrentThemeBaseGlobalStyles:SBe,__experimentalGetCurrentThemeGlobalStylesVariations:CBe,canUser:Qse,canUserEditEntityRecord:xBe,getAuthors:gBe,getAutosave:_Be,getAutosaves:wBe,getBlockPatternCategories:RBe,getBlockPatterns:qBe,getCurrentTheme:yBe,getCurrentThemeGlobalStylesRevisions:Jse,getCurrentUser:MBe,getDefaultTemplateId:WBe,getEditedEntityRecord:OBe,getEmbedPreview:vBe,getEntitiesConfig:LBe,getEntityRecord:Zse,getEntityRecords:X4,getNavigationFallbackId:EBe,getRawEntityRecord:zBe,getRegisteredPostMeta:BBe,getRevision:NBe,getRevisions:eie,getThemeSupports:ABe,getUserPatternCategories:TBe},Symbol.toStringTag,{value:"Module"}));function FU(e,t){const n={...e};let o=n;for(const r of t)o.children={...o.children,[r]:{locks:[],children:{},...o.children[r]}},o=o.children[r];return n}function UE(e,t){let n=e;for(const o of t){const r=n.children[o];if(!r)return null;n=r}return n}function*jBe(e,t){let n=e;yield n;for(const o of t){const r=n.children[o];if(!r)break;yield r,n=r}}function*IBe(e){const t=Object.values(e.children);for(;t.length;){const n=t.pop();yield n,t.push(...Object.values(n.children))}}function $U({exclusive:e},t){return!!(e&&t.length||!e&&t.filter(n=>n.exclusive).length)}const DBe={requests:[],tree:{locks:[],children:{}}};function gA(e=DBe,t){switch(t.type){case"ENQUEUE_LOCK_REQUEST":{const{request:n}=t;return{...e,requests:[n,...e.requests]}}case"GRANT_LOCK_REQUEST":{const{lock:n,request:o}=t,{store:r,path:s}=o,i=[r,...s],c=FU(e.tree,i),l=UE(c,i);return l.locks=[...l.locks,n],{...e,requests:e.requests.filter(u=>u!==o),tree:c}}case"RELEASE_LOCK":{const{lock:n}=t,o=[n.store,...n.path],r=FU(e.tree,o),s=UE(r,o);return s.locks=s.locks.filter(i=>i!==n),{...e,tree:r}}}return e}function FBe(e){return e.requests}function $Be(e,t,n,{exclusive:o}){const r=[t,...n],s=e.tree;for(const c of jBe(s,r))if($U({exclusive:o},c.locks))return!1;const i=UE(s,r);if(!i)return!0;for(const c of IBe(i))if($U({exclusive:o},c.locks))return!1;return!0}function VBe(){let e=gA(void 0,{type:"@@INIT"});function t(){for(const r of FBe(e)){const{store:s,path:i,exclusive:c,notifyAcquired:l}=r;if($Be(e,s,i,{exclusive:c})){const u={store:s,path:i,exclusive:c};e=gA(e,{type:"GRANT_LOCK_REQUEST",lock:u,request:r}),l(u)}}}function n(r,s,i){return new Promise(c=>{e=gA(e,{type:"ENQUEUE_LOCK_REQUEST",request:{store:r,path:s,exclusive:i,notifyAcquired:c}}),t()})}function o(r){e=gA(e,{type:"RELEASE_LOCK",lock:r}),t()}return{acquire:n,release:o}}function HBe(){const e=VBe();function t(o,r,{exclusive:s}){return()=>e.acquire(o,r,s)}function n(o){return()=>e.release(o)}return{__unstableAcquireStoreLock:t,__unstableReleaseStoreLock:n}}let UBe,XBe;const XE=x.createContext({});function GE({kind:e,type:t,id:n,children:o}){const r=x.useContext(XE),s=x.useMemo(()=>({...r,[e]:{...r?.[e],[t]:n}}),[r,e,t,n]);return a.jsx(XE.Provider,{value:s,children:o})}let is=function(e){return e.Idle="IDLE",e.Resolving="RESOLVING",e.Error="ERROR",e.Success="SUCCESS",e}({});const GBe=["getIsResolving","hasStartedResolution","hasFinishedResolution","isResolving","getCachedResolvers"];function WB(e,t){return G((n,o)=>e(s=>KBe(n(s)),o),t)}const KBe=Hs(e=>{const t={};for(const n in e)GBe.includes(n)||Object.defineProperty(t,n,{get:()=>(...o)=>{const r=e[n](...o),s=e.getResolutionState(n,o)?.status;let i;switch(s){case"resolving":i=is.Resolving;break;case"finished":i=is.Success;break;case"error":i=is.Error;break;case void 0:i=is.Idle;break}return{data:r,status:i,isResolving:i===is.Resolving,hasStarted:i!==is.Idle,hasResolved:i===is.Success||i===is.Error}}});return t}),VU={};function Y5(e,t,n,o={enabled:!0}){const{editEntityRecord:r,saveEditedEntityRecord:s}=Oe(Me),i=x.useMemo(()=>({edit:(f,b={})=>r(e,t,n,f,b),save:(f={})=>s(e,t,n,{throwOnError:!0,...f})}),[r,e,t,n,s]),{editedRecord:c,hasEdits:l,edits:u}=G(f=>o.enabled?{editedRecord:f(Me).getEditedEntityRecord(e,t,n),hasEdits:f(Me).hasEditsForEntityRecord(e,t,n),edits:f(Me).getEntityRecordNonTransientEdits(e,t,n)}:{editedRecord:VU,hasEdits:!1,edits:VU},[e,t,n,o.enabled]),{data:d,...p}=WB(f=>o.enabled?f(Me).getEntityRecord(e,t,n):{data:null},[e,t,n,o.enabled]);return{record:d,editedRecord:c,hasEdits:l,edits:u,...p,...i}}const YBe=[];function Al(e,t,n={},o={enabled:!0}){const r=tn("",n),{data:s,...i}=WB(u=>o.enabled?u(Me).getEntityRecords(e,t,n):{data:YBe},[e,t,r,o.enabled]),{totalItems:c,totalPages:l}=G(u=>o.enabled?{totalItems:u(Me).getEntityRecordsTotalItems(e,t,n),totalPages:u(Me).getEntityRecordsTotalPages(e,t,n)}:{totalItems:null,totalPages:null},[e,t,r,o.enabled]);return{records:s,totalItems:c,totalPages:l,...i}}function ZBe(e,t,n={},o={enabled:!0}){const r=G(d=>d(Me).getEntityConfig(e,t),[e,t]),{records:s,...i}=Al(e,t,n,o),c=x.useMemo(()=>{var d;return(d=s?.map(p=>{var f;return p[(f=r?.key)!==null&&f!==void 0?f:"id"]}))!==null&&d!==void 0?d:[]},[s,r?.key]),l=G(d=>{const{getEntityRecordsPermissions:p}=eh(d(Me));return p(e,t,c)},[c,e,t]);return{records:x.useMemo(()=>{var d;return(d=s?.map((p,f)=>({...p,permissions:l[f]})))!==null&&d!==void 0?d:[]},[s,l]),...i}}const HU=new Set;function QBe(){return globalThis.SCRIPT_DEBUG===!0}function zn(e){if(QBe()&&!HU.has(e)){console.warn(e);try{throw Error(e)}catch{}HU.add(e)}}function tie(e,t){const n=typeof e=="object",o=n?JSON.stringify(e):e;return n&&typeof t<"u"&&globalThis.SCRIPT_DEBUG===!0&&zn("When 'resource' is an entity object, passing 'id' as a separate argument isn't supported."),WB(r=>{const s=n?!!e.id:!!t,{canUser:i}=r(Me),c=i("create",n?{kind:e.kind,name:e.name}:e);if(!s){const h=i("read",e),g=c.isResolving||h.isResolving,z=c.hasResolved&&h.hasResolved;let A=is.Idle;return g?A=is.Resolving:z&&(A=is.Success),{status:A,isResolving:g,hasResolved:z,canCreate:c.hasResolved&&c.data,canRead:h.hasResolved&&h.data}}const l=i("read",e,t),u=i("update",e,t),d=i("delete",e,t),p=l.isResolving||c.isResolving||u.isResolving||d.isResolving,f=l.hasResolved&&c.hasResolved&&u.hasResolved&&d.hasResolved;let b=is.Idle;return p?b=is.Resolving:f&&(b=is.Success),{status:b,isResolving:p,hasResolved:f,canRead:f&&l.data,canCreate:f&&c.data,canUpdate:f&&u.data,canDelete:f&&d.data}},[o,t])}var JBe={grad:.9,turn:360,rad:360/(2*Math.PI)},Zc=function(e){return typeof e=="string"?e.length>0:typeof e=="number"},_0=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n+0},Si=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e>t?e:t},nie=function(e){return(e=isFinite(e)?e%360:0)>0?e:e+360},UU=function(e){return{r:Si(e.r,0,255),g:Si(e.g,0,255),b:Si(e.b,0,255),a:Si(e.a)}},KS=function(e){return{r:_0(e.r),g:_0(e.g),b:_0(e.b),a:_0(e.a,3)}},eLe=/^#([0-9a-f]{3,8})$/i,MA=function(e){var t=e.toString(16);return t.length<2?"0"+t:t},oie=function(e){var t=e.r,n=e.g,o=e.b,r=e.a,s=Math.max(t,n,o),i=s-Math.min(t,n,o),c=i?s===t?(n-o)/i:s===n?2+(o-t)/i:4+(t-n)/i:0;return{h:60*(c<0?c+6:c),s:s?i/s*100:0,v:s/255*100,a:r}},rie=function(e){var t=e.h,n=e.s,o=e.v,r=e.a;t=t/360*6,n/=100,o/=100;var s=Math.floor(t),i=o*(1-n),c=o*(1-(t-s)*n),l=o*(1-(1-t+s)*n),u=s%6;return{r:255*[o,c,i,i,l,o][u],g:255*[l,o,o,c,i,i][u],b:255*[i,i,l,o,o,c][u],a:r}},XU=function(e){return{h:nie(e.h),s:Si(e.s,0,100),l:Si(e.l,0,100),a:Si(e.a)}},GU=function(e){return{h:_0(e.h),s:_0(e.s),l:_0(e.l),a:_0(e.a,3)}},KU=function(e){return rie((n=(t=e).s,{h:t.h,s:(n*=((o=t.l)<50?o:100-o)/100)>0?2*n/(o+n)*100:0,v:o+n,a:t.a}));var t,n,o},AM=function(e){return{h:(t=oie(e)).h,s:(r=(200-(n=t.s))*(o=t.v)/100)>0&&r<200?n*o/100/(r<=100?r:200-r)*100:0,l:r/2,a:t.a};var t,n,o,r},tLe=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s*,\s*([+-]?\d*\.?\d+)%\s*,\s*([+-]?\d*\.?\d+)%\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,nLe=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s+([+-]?\d*\.?\d+)%\s+([+-]?\d*\.?\d+)%\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,oLe=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,rLe=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,KE={string:[[function(e){var t=eLe.exec(e);return t?(e=t[1]).length<=4?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:e.length===4?_0(parseInt(e[3]+e[3],16)/255,2):1}:e.length===6||e.length===8?{r:parseInt(e.substr(0,2),16),g:parseInt(e.substr(2,2),16),b:parseInt(e.substr(4,2),16),a:e.length===8?_0(parseInt(e.substr(6,2),16)/255,2):1}:null:null},"hex"],[function(e){var t=oLe.exec(e)||rLe.exec(e);return t?t[2]!==t[4]||t[4]!==t[6]?null:UU({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):null},"rgb"],[function(e){var t=tLe.exec(e)||nLe.exec(e);if(!t)return null;var n,o,r=XU({h:(n=t[1],o=t[2],o===void 0&&(o="deg"),Number(n)*(JBe[o]||1)),s:Number(t[3]),l:Number(t[4]),a:t[5]===void 0?1:Number(t[5])/(t[6]?100:1)});return KU(r)},"hsl"]],object:[[function(e){var t=e.r,n=e.g,o=e.b,r=e.a,s=r===void 0?1:r;return Zc(t)&&Zc(n)&&Zc(o)?UU({r:Number(t),g:Number(n),b:Number(o),a:Number(s)}):null},"rgb"],[function(e){var t=e.h,n=e.s,o=e.l,r=e.a,s=r===void 0?1:r;if(!Zc(t)||!Zc(n)||!Zc(o))return null;var i=XU({h:Number(t),s:Number(n),l:Number(o),a:Number(s)});return KU(i)},"hsl"],[function(e){var t=e.h,n=e.s,o=e.v,r=e.a,s=r===void 0?1:r;if(!Zc(t)||!Zc(n)||!Zc(o))return null;var i=function(c){return{h:nie(c.h),s:Si(c.s,0,100),v:Si(c.v,0,100),a:Si(c.a)}}({h:Number(t),s:Number(n),v:Number(o),a:Number(s)});return rie(i)},"hsv"]]},YU=function(e,t){for(var n=0;n<t.length;n++){var o=t[n][0](e);if(o)return[o,t[n][1]]}return[null,void 0]},sLe=function(e){return typeof e=="string"?YU(e.trim(),KE.string):typeof e=="object"&&e!==null?YU(e,KE.object):[null,void 0]},YS=function(e,t){var n=AM(e);return{h:n.h,s:Si(n.s+100*t,0,100),l:n.l,a:n.a}},ZS=function(e){return(299*e.r+587*e.g+114*e.b)/1e3/255},ZU=function(e,t){var n=AM(e);return{h:n.h,s:n.s,l:Si(n.l+100*t,0,100),a:n.a}},YE=function(){function e(t){this.parsed=sLe(t)[0],this.rgba=this.parsed||{r:0,g:0,b:0,a:1}}return e.prototype.isValid=function(){return this.parsed!==null},e.prototype.brightness=function(){return _0(ZS(this.rgba),2)},e.prototype.isDark=function(){return ZS(this.rgba)<.5},e.prototype.isLight=function(){return ZS(this.rgba)>=.5},e.prototype.toHex=function(){return t=KS(this.rgba),n=t.r,o=t.g,r=t.b,i=(s=t.a)<1?MA(_0(255*s)):"","#"+MA(n)+MA(o)+MA(r)+i;var t,n,o,r,s,i},e.prototype.toRgb=function(){return KS(this.rgba)},e.prototype.toRgbString=function(){return t=KS(this.rgba),n=t.r,o=t.g,r=t.b,(s=t.a)<1?"rgba("+n+", "+o+", "+r+", "+s+")":"rgb("+n+", "+o+", "+r+")";var t,n,o,r,s},e.prototype.toHsl=function(){return GU(AM(this.rgba))},e.prototype.toHslString=function(){return t=GU(AM(this.rgba)),n=t.h,o=t.s,r=t.l,(s=t.a)<1?"hsla("+n+", "+o+"%, "+r+"%, "+s+")":"hsl("+n+", "+o+"%, "+r+"%)";var t,n,o,r,s},e.prototype.toHsv=function(){return t=oie(this.rgba),{h:_0(t.h),s:_0(t.s),v:_0(t.v),a:_0(t.a,3)};var t},e.prototype.invert=function(){return an({r:255-(t=this.rgba).r,g:255-t.g,b:255-t.b,a:t.a});var t},e.prototype.saturate=function(t){return t===void 0&&(t=.1),an(YS(this.rgba,t))},e.prototype.desaturate=function(t){return t===void 0&&(t=.1),an(YS(this.rgba,-t))},e.prototype.grayscale=function(){return an(YS(this.rgba,-1))},e.prototype.lighten=function(t){return t===void 0&&(t=.1),an(ZU(this.rgba,t))},e.prototype.darken=function(t){return t===void 0&&(t=.1),an(ZU(this.rgba,-t))},e.prototype.rotate=function(t){return t===void 0&&(t=15),this.hue(this.hue()+t)},e.prototype.alpha=function(t){return typeof t=="number"?an({r:(n=this.rgba).r,g:n.g,b:n.b,a:t}):_0(this.rgba.a,3);var n},e.prototype.hue=function(t){var n=AM(this.rgba);return typeof t=="number"?an({h:t,s:n.s,l:n.l,a:n.a}):_0(n.h)},e.prototype.isEqual=function(t){return this.toHex()===an(t).toHex()},e}(),an=function(e){return e instanceof YE?e:new YE(e)},QU=[],Xs=function(e){e.forEach(function(t){QU.indexOf(t)<0&&(t(YE,KE),QU.push(t))})};function Gs(e,t){var n={white:"#ffffff",bisque:"#ffe4c4",blue:"#0000ff",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",antiquewhite:"#faebd7",aqua:"#00ffff",azure:"#f0ffff",whitesmoke:"#f5f5f5",papayawhip:"#ffefd5",plum:"#dda0dd",blanchedalmond:"#ffebcd",black:"#000000",gold:"#ffd700",goldenrod:"#daa520",gainsboro:"#dcdcdc",cornsilk:"#fff8dc",cornflowerblue:"#6495ed",burlywood:"#deb887",aquamarine:"#7fffd4",beige:"#f5f5dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkkhaki:"#bdb76b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",peachpuff:"#ffdab9",darkmagenta:"#8b008b",darkred:"#8b0000",darkorchid:"#9932cc",darkorange:"#ff8c00",darkslateblue:"#483d8b",gray:"#808080",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",deeppink:"#ff1493",deepskyblue:"#00bfff",wheat:"#f5deb3",firebrick:"#b22222",floralwhite:"#fffaf0",ghostwhite:"#f8f8ff",darkviolet:"#9400d3",magenta:"#ff00ff",green:"#008000",dodgerblue:"#1e90ff",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",blueviolet:"#8a2be2",forestgreen:"#228b22",lawngreen:"#7cfc00",indianred:"#cd5c5c",indigo:"#4b0082",fuchsia:"#ff00ff",brown:"#a52a2a",maroon:"#800000",mediumblue:"#0000cd",lightcoral:"#f08080",darkturquoise:"#00ced1",lightcyan:"#e0ffff",ivory:"#fffff0",lightyellow:"#ffffe0",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",linen:"#faf0e6",mediumaquamarine:"#66cdaa",lemonchiffon:"#fffacd",lime:"#00ff00",khaki:"#f0e68c",mediumseagreen:"#3cb371",limegreen:"#32cd32",mediumspringgreen:"#00fa9a",lightskyblue:"#87cefa",lightblue:"#add8e6",midnightblue:"#191970",lightpink:"#ffb6c1",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",mintcream:"#f5fffa",lightslategray:"#778899",lightslategrey:"#778899",navajowhite:"#ffdead",navy:"#000080",mediumvioletred:"#c71585",powderblue:"#b0e0e6",palegoldenrod:"#eee8aa",oldlace:"#fdf5e6",paleturquoise:"#afeeee",mediumturquoise:"#48d1cc",mediumorchid:"#ba55d3",rebeccapurple:"#663399",lightsteelblue:"#b0c4de",mediumslateblue:"#7b68ee",thistle:"#d8bfd8",tan:"#d2b48c",orchid:"#da70d6",mediumpurple:"#9370db",purple:"#800080",pink:"#ffc0cb",skyblue:"#87ceeb",springgreen:"#00ff7f",palegreen:"#98fb98",red:"#ff0000",yellow:"#ffff00",slateblue:"#6a5acd",lavenderblush:"#fff0f5",peru:"#cd853f",palevioletred:"#db7093",violet:"#ee82ee",teal:"#008080",slategray:"#708090",slategrey:"#708090",aliceblue:"#f0f8ff",darkseagreen:"#8fbc8f",darkolivegreen:"#556b2f",greenyellow:"#adff2f",seagreen:"#2e8b57",seashell:"#fff5ee",tomato:"#ff6347",silver:"#c0c0c0",sienna:"#a0522d",lavender:"#e6e6fa",lightgreen:"#90ee90",orange:"#ffa500",orangered:"#ff4500",steelblue:"#4682b4",royalblue:"#4169e1",turquoise:"#40e0d0",yellowgreen:"#9acd32",salmon:"#fa8072",saddlebrown:"#8b4513",sandybrown:"#f4a460",rosybrown:"#bc8f8f",darksalmon:"#e9967a",lightgoldenrodyellow:"#fafad2",snow:"#fffafa",lightgrey:"#d3d3d3",lightgray:"#d3d3d3",dimgray:"#696969",dimgrey:"#696969",olivedrab:"#6b8e23",olive:"#808000"},o={};for(var r in n)o[n[r]]=r;var s={};e.prototype.toName=function(i){if(!(this.rgba.a||this.rgba.r||this.rgba.g||this.rgba.b))return"transparent";var c,l,u=o[this.toHex()];if(u)return u;if(i?.closest){var d=this.toRgb(),p=1/0,f="black";if(!s.length)for(var b in n)s[b]=new e(n[b]).toRgb();for(var h in n){var g=(c=d,l=s[h],Math.pow(c.r-l.r,2)+Math.pow(c.g-l.g,2)+Math.pow(c.b-l.b,2));g<p&&(p=g,f=h)}return f}},t.string.push([function(i){var c=i.toLowerCase(),l=c==="transparent"?"#0000":n[c];return l?new e(l).toRgb():null},"name"])}var QS=function(e){var t=e/255;return t<.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)},JS=function(e){return .2126*QS(e.r)+.7152*QS(e.g)+.0722*QS(e.b)};function Uf(e){e.prototype.luminance=function(){return t=JS(this.rgba),(n=2)===void 0&&(n=0),o===void 0&&(o=Math.pow(10,n)),Math.round(o*t)/o+0;var t,n,o},e.prototype.contrast=function(t){t===void 0&&(t="#FFF");var n,o,r,s,i,c,l,u=t instanceof e?t:new e(t);return s=this.rgba,i=u.toRgb(),c=JS(s),l=JS(i),n=c>l?(c+.05)/(l+.05):(l+.05)/(c+.05),(o=2)===void 0&&(o=0),r===void 0&&(r=Math.pow(10,o)),Math.floor(r*n)/r+0},e.prototype.isReadable=function(t,n){return t===void 0&&(t="#FFF"),n===void 0&&(n={}),this.contrast(t)>=(c=(i=(o=n).size)===void 0?"normal":i,(s=(r=o.level)===void 0?"AA":r)==="AAA"&&c==="normal"?7:s==="AA"&&c==="large"?3:4.5);var o,r,s,i,c}}const sie="block-default",ZE=["attributes","supports","save","migrate","isEligible","apiVersion"],Pp={"--wp--style--color--link":{value:["color","link"],support:["color","link"]},aspectRatio:{value:["dimensions","aspectRatio"],support:["dimensions","aspectRatio"],useEngine:!0},background:{value:["color","gradient"],support:["color","gradients"],useEngine:!0},backgroundColor:{value:["color","background"],support:["color","background"],requiresOptOut:!0,useEngine:!0},backgroundImage:{value:["background","backgroundImage"],support:["background","backgroundImage"],useEngine:!0},backgroundRepeat:{value:["background","backgroundRepeat"],support:["background","backgroundRepeat"],useEngine:!0},backgroundSize:{value:["background","backgroundSize"],support:["background","backgroundSize"],useEngine:!0},backgroundPosition:{value:["background","backgroundPosition"],support:["background","backgroundPosition"],useEngine:!0},borderColor:{value:["border","color"],support:["__experimentalBorder","color"],useEngine:!0},borderRadius:{value:["border","radius"],support:["__experimentalBorder","radius"],properties:{borderTopLeftRadius:"topLeft",borderTopRightRadius:"topRight",borderBottomLeftRadius:"bottomLeft",borderBottomRightRadius:"bottomRight"},useEngine:!0},borderStyle:{value:["border","style"],support:["__experimentalBorder","style"],useEngine:!0},borderWidth:{value:["border","width"],support:["__experimentalBorder","width"],useEngine:!0},borderTopColor:{value:["border","top","color"],support:["__experimentalBorder","color"],useEngine:!0},borderTopStyle:{value:["border","top","style"],support:["__experimentalBorder","style"],useEngine:!0},borderTopWidth:{value:["border","top","width"],support:["__experimentalBorder","width"],useEngine:!0},borderRightColor:{value:["border","right","color"],support:["__experimentalBorder","color"],useEngine:!0},borderRightStyle:{value:["border","right","style"],support:["__experimentalBorder","style"],useEngine:!0},borderRightWidth:{value:["border","right","width"],support:["__experimentalBorder","width"],useEngine:!0},borderBottomColor:{value:["border","bottom","color"],support:["__experimentalBorder","color"],useEngine:!0},borderBottomStyle:{value:["border","bottom","style"],support:["__experimentalBorder","style"],useEngine:!0},borderBottomWidth:{value:["border","bottom","width"],support:["__experimentalBorder","width"],useEngine:!0},borderLeftColor:{value:["border","left","color"],support:["__experimentalBorder","color"],useEngine:!0},borderLeftStyle:{value:["border","left","style"],support:["__experimentalBorder","style"],useEngine:!0},borderLeftWidth:{value:["border","left","width"],support:["__experimentalBorder","width"],useEngine:!0},color:{value:["color","text"],support:["color","text"],requiresOptOut:!0,useEngine:!0},columnCount:{value:["typography","textColumns"],support:["typography","textColumns"],useEngine:!0},filter:{value:["filter","duotone"],support:["filter","duotone"]},linkColor:{value:["elements","link","color","text"],support:["color","link"]},captionColor:{value:["elements","caption","color","text"],support:["color","caption"]},buttonColor:{value:["elements","button","color","text"],support:["color","button"]},buttonBackgroundColor:{value:["elements","button","color","background"],support:["color","button"]},headingColor:{value:["elements","heading","color","text"],support:["color","heading"]},headingBackgroundColor:{value:["elements","heading","color","background"],support:["color","heading"]},fontFamily:{value:["typography","fontFamily"],support:["typography","__experimentalFontFamily"],useEngine:!0},fontSize:{value:["typography","fontSize"],support:["typography","fontSize"],useEngine:!0},fontStyle:{value:["typography","fontStyle"],support:["typography","__experimentalFontStyle"],useEngine:!0},fontWeight:{value:["typography","fontWeight"],support:["typography","__experimentalFontWeight"],useEngine:!0},lineHeight:{value:["typography","lineHeight"],support:["typography","lineHeight"],useEngine:!0},margin:{value:["spacing","margin"],support:["spacing","margin"],properties:{marginTop:"top",marginRight:"right",marginBottom:"bottom",marginLeft:"left"},useEngine:!0},minHeight:{value:["dimensions","minHeight"],support:["dimensions","minHeight"],useEngine:!0},padding:{value:["spacing","padding"],support:["spacing","padding"],properties:{paddingTop:"top",paddingRight:"right",paddingBottom:"bottom",paddingLeft:"left"},useEngine:!0},textAlign:{value:["typography","textAlign"],support:["typography","textAlign"],useEngine:!1},textDecoration:{value:["typography","textDecoration"],support:["typography","__experimentalTextDecoration"],useEngine:!0},textTransform:{value:["typography","textTransform"],support:["typography","__experimentalTextTransform"],useEngine:!0},letterSpacing:{value:["typography","letterSpacing"],support:["typography","__experimentalLetterSpacing"],useEngine:!0},writingMode:{value:["typography","writingMode"],support:["typography","__experimentalWritingMode"],useEngine:!0},"--wp--style--root--padding":{value:["spacing","padding"],support:["spacing","padding"],properties:{"--wp--style--root--padding-top":"top","--wp--style--root--padding-right":"right","--wp--style--root--padding-bottom":"bottom","--wp--style--root--padding-left":"left"},rootOnly:!0}},Za={link:"a:where(:not(.wp-element-button))",heading:"h1, h2, h3, h4, h5, h6",h1:"h1",h2:"h2",h3:"h3",h4:"h4",h5:"h5",h6:"h6",button:".wp-element-button, .wp-block-button__link",caption:".wp-element-caption, .wp-block-audio figcaption, .wp-block-embed figcaption, .wp-block-gallery figcaption, .wp-block-image figcaption, .wp-block-table figcaption, .wp-block-video figcaption",cite:"cite"},iLe={"color.duotone":!0,"color.gradients":!0,"color.palette":!0,"dimensions.aspectRatios":!0,"typography.fontSizes":!0,"spacing.spacingSizes":!0},{lock:aLe,unlock:Mf}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/blocks"),JU={title:"block title",description:"block description",keywords:["block keyword"],styles:[{label:"block style label"}],variations:[{title:"block variation title",description:"block variation description",keywords:["block variation keyword"]}]};function G4(e){return e!==null&&typeof e=="object"}function cLe({textdomain:e,...t}){const n=["apiVersion","title","category","parent","ancestor","icon","description","keywords","attributes","providesContext","usesContext","selectors","supports","styles","example","variations","blockHooks","allowedBlocks"],o=Object.fromEntries(Object.entries(t).filter(([r])=>n.includes(r)));return e&&Object.keys(JU).forEach(r=>{o[r]&&(o[r]=QE(JU[r],o[r],e))}),o}function lLe(e,t){const n=G4(e)?e.name:e;if(typeof n!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block names must be strings.");return}if(!/^[a-z][a-z0-9-]*\/[a-z][a-z0-9-]*$/.test(n)){globalThis.SCRIPT_DEBUG===!0&&zn("Block names must contain a namespace prefix, include only lowercase alphanumeric characters or dashes, and start with a letter. Example: my-plugin/my-custom-block");return}if(uo(kt).getBlockType(n)){globalThis.SCRIPT_DEBUG===!0&&zn('Block "'+n+'" is already registered.');return}const{addBootstrappedBlockType:o,addUnprocessedBlockType:r}=Mf(kr(kt));if(G4(e)){const s=cLe(e);o(n,s)}return r(n,t),uo(kt).getBlockType(n)}function QE(e,t,n){return typeof e=="string"&&typeof t=="string"?We(t,e,n):Array.isArray(e)&&e.length&&Array.isArray(t)?t.map(o=>QE(e[0],o,n)):G4(e)&&Object.entries(e).length&&G4(t)?Object.keys(t).reduce((o,r)=>e[r]?(o[r]=QE(e[r],t[r],n),o):(o[r]=t[r],o),{}):t}function uLe(e){kr(kt).setFreeformFallbackBlockName(e)}function yd(){return uo(kt).getFreeformFallbackBlockName()}function iie(){return uo(kt).getGroupingBlockName()}function dLe(e){kr(kt).setUnregisteredFallbackBlockName(e)}function g3(){return uo(kt).getUnregisteredFallbackBlockName()}function pLe(e){kr(kt).setDefaultBlockName(e)}function fLe(e){kr(kt).setGroupingBlockName(e)}function Mr(){return uo(kt).getDefaultBlockName()}function on(e){return uo(kt)?.getBlockType(e)}function gs(){return uo(kt).getBlockTypes()}function An(e,t,n){return uo(kt).getBlockSupport(e,t,n)}function Et(e,t,n){return uo(kt).hasBlockSupport(e,t,n)}function Qd(e){return e?.name==="core/block"}function Hh(e){return e?.name==="core/template-part"}const Z5=(e,t)=>uo(kt).getBlockVariations(e,t),eX=e=>{const{name:t,label:n,usesContext:o,getValues:r,setValues:s,canUserEditValue:i,getFieldsList:c}=e,l=Mf(uo(kt)).getBlockBindingsSource(t),u=["label","usesContext"];for(const d in l)if(!u.includes(d)&&l[d]){globalThis.SCRIPT_DEBUG===!0&&zn('Block bindings source "'+t+'" is already registered.');return}if(!t){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source must contain a name.");return}if(typeof t!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must be a string.");return}if(/[A-Z]+/.test(t)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must not contain uppercase characters.");return}if(!/^[a-z0-9/-]+$/.test(t)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must contain only valid characters: lowercase characters, hyphens, or digits. Example: my-plugin/my-custom-source.");return}if(!/^[a-z0-9-]+\/[a-z0-9-]+$/.test(t)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source name must contain a namespace and valid characters. Example: my-plugin/my-custom-source.");return}if(!n&&!l?.label){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source must contain a label.");return}if(n&&typeof n!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source label must be a string.");return}if(n&&l?.label&&n!==l?.label&&globalThis.SCRIPT_DEBUG===!0&&zn('Block bindings "'+t+'" source label was overridden.'),o&&!Array.isArray(o)){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source usesContext must be an array.");return}if(r&&typeof r!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source getValues must be a function.");return}if(s&&typeof s!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source setValues must be a function.");return}if(i&&typeof i!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source canUserEditValue must be a function.");return}if(c&&typeof c!="function"){globalThis.SCRIPT_DEBUG===!0&&zn("Block bindings source getFieldsList must be a function.");return}return Mf(kr(kt)).addBlockBindingsSource(e)};function vl(e){return Mf(uo(kt)).getBlockBindingsSource(e)}function aie(){return Mf(uo(kt)).getAllBlockBindingsSources()}Xs([Gs,Uf]);const tX=["#191e23","#f8f9f9"];function E2(e){var t;return Object.entries((t=on(e.name)?.attributes)!==null&&t!==void 0?t:{}).every(([n,o])=>{const r=e.attributes[n];return o.hasOwnProperty("default")?r===o.default:o.type==="rich-text"?!r?.length:r===void 0})}function El(e){return e.name===Mr()&&E2(e)}function cie(e){return!!e&&(typeof e=="string"||x.isValidElement(e)||typeof e=="function"||e instanceof x.Component)}function bLe(e){if(e=e||sie,cie(e))return{src:e};if("background"in e){const t=an(e.background),n=r=>t.contrast(r),o=Math.max(...tX.map(n));return{...e,foreground:e.foreground?e.foreground:tX.find(r=>n(r)===o),shadowColor:t.alpha(.3).toRgbString()}}return e}function M3(e){return typeof e=="string"?on(e):e}function lie(e,t,n="visual"){const{__experimentalLabel:o,title:r}=e,s=o&&o(t,{context:n});return s?s.toPlainText?s.toPlainText():v1(s):r}function uie(e){if(e.default!==void 0)return e.default;if(e.type==="rich-text")return new Xo}function die(e){return on(e)!==void 0}function NB(e,t){const n=on(e);if(n===void 0)throw new Error(`Block type '${e}' is not registered.`);return Object.entries(n.attributes).reduce((o,[r,s])=>{const i=t[r];if(i!==void 0)s.type==="rich-text"?i instanceof Xo?o[r]=i:typeof i=="string"&&(o[r]=Xo.fromHTMLString(i)):s.type==="string"&&i instanceof Xo?o[r]=i.toHTMLString():o[r]=i;else{const c=uie(s);c!==void 0&&(o[r]=c)}return["node","children"].indexOf(s.source)!==-1&&(typeof o[r]=="string"?o[r]=[o[r]]:Array.isArray(o[r])||(o[r]=[])),o},{})}function hLe(e,t){const n=on(e)?.attributes;return n?Object.keys(n).filter(r=>{const s=n[r];return s?.role===t?!0:s?.__experimentalRole===t?(Ke("__experimentalRole attribute",{since:"6.7",version:"6.8",alternative:"role attribute",hint:`Check the block.json of the ${e} block.`}),!0):!1}):[]}function mLe(e){const t=on(e)?.attributes;return t?!!Object.keys(t)?.some(n=>{const o=t[n];return o?.role==="content"||o?.__experimentalRole==="content"}):!1}function Xf(e,t){return Object.fromEntries(Object.entries(e).filter(([n])=>!t.includes(n)))}const gLe=[{slug:"text",title:m("Text")},{slug:"media",title:m("Media")},{slug:"design",title:m("Design")},{slug:"widgets",title:m("Widgets")},{slug:"theme",title:m("Theme")},{slug:"embed",title:m("Embeds")},{slug:"reusable",title:m("Reusable blocks")}];function BB(e){return e.reduce((t,n)=>({...t,[n.name]:n}),{})}function K4(e){return e.reduce((t,n)=>(t.some(o=>o.name===n.name)||t.push(n),t),[])}function MLe(e={},t){switch(t.type){case"ADD_BOOTSTRAPPED_BLOCK_TYPE":const{name:n,blockType:o}=t,r=e[n];let s;return r?(r.blockHooks===void 0&&o.blockHooks&&(s={...r,...s,blockHooks:o.blockHooks}),r.allowedBlocks===void 0&&o.allowedBlocks&&(s={...r,...s,allowedBlocks:o.allowedBlocks})):(s=Object.fromEntries(Object.entries(o).filter(([,i])=>i!=null).map(([i,c])=>[qN(i),c])),s.name=n),s?{...e,[n]:s}:e;case"REMOVE_BLOCK_TYPES":return Xf(e,t.names)}return e}function zLe(e={},t){switch(t.type){case"ADD_UNPROCESSED_BLOCK_TYPE":return{...e,[t.name]:t.blockType};case"REMOVE_BLOCK_TYPES":return Xf(e,t.names)}return e}function OLe(e={},t){switch(t.type){case"ADD_BLOCK_TYPES":return{...e,...BB(t.blockTypes)};case"REMOVE_BLOCK_TYPES":return Xf(e,t.names)}return e}function yLe(e={},t){var n;switch(t.type){case"ADD_BLOCK_TYPES":return{...e,...Object.fromEntries(Object.entries(BB(t.blockTypes)).map(([r,s])=>{var i,c;return[r,K4([...((i=s.styles)!==null&&i!==void 0?i:[]).map(l=>({...l,source:"block"})),...((c=e[s.name])!==null&&c!==void 0?c:[]).filter(({source:l})=>l!=="block")])]}))};case"ADD_BLOCK_STYLES":const o={};return t.blockNames.forEach(r=>{var s;o[r]=K4([...(s=e[r])!==null&&s!==void 0?s:[],...t.styles])}),{...e,...o};case"REMOVE_BLOCK_STYLES":return{...e,[t.blockName]:((n=e[t.blockName])!==null&&n!==void 0?n:[]).filter(r=>t.styleNames.indexOf(r.name)===-1)}}return e}function ALe(e={},t){var n,o;switch(t.type){case"ADD_BLOCK_TYPES":return{...e,...Object.fromEntries(Object.entries(BB(t.blockTypes)).map(([r,s])=>{var i,c;return[r,K4([...((i=s.variations)!==null&&i!==void 0?i:[]).map(l=>({...l,source:"block"})),...((c=e[s.name])!==null&&c!==void 0?c:[]).filter(({source:l})=>l!=="block")])]}))};case"ADD_BLOCK_VARIATIONS":return{...e,[t.blockName]:K4([...(n=e[t.blockName])!==null&&n!==void 0?n:[],...t.variations])};case"REMOVE_BLOCK_VARIATIONS":return{...e,[t.blockName]:((o=e[t.blockName])!==null&&o!==void 0?o:[]).filter(r=>t.variationNames.indexOf(r.name)===-1)}}return e}function Q5(e){return(t=null,n)=>{switch(n.type){case"REMOVE_BLOCK_TYPES":return n.names.indexOf(t)!==-1?null:t;case e:return n.name||null}return t}}const vLe=Q5("SET_DEFAULT_BLOCK_NAME"),xLe=Q5("SET_FREEFORM_FALLBACK_BLOCK_NAME"),wLe=Q5("SET_UNREGISTERED_FALLBACK_BLOCK_NAME"),_Le=Q5("SET_GROUPING_BLOCK_NAME");function kLe(e=gLe,t){switch(t.type){case"SET_CATEGORIES":const n=new Map;return(t.categories||[]).forEach(o=>{n.set(o.slug,o)}),[...n.values()];case"UPDATE_CATEGORY":{if(!t.category||!Object.keys(t.category).length)return e;if(e.find(({slug:r})=>r===t.slug))return e.map(r=>r.slug===t.slug?{...r,...t.category}:r)}}return e}function SLe(e={},t){switch(t.type){case"ADD_BLOCK_COLLECTION":return{...e,[t.namespace]:{title:t.title,icon:t.icon}};case"REMOVE_BLOCK_COLLECTION":return Xf(e,t.namespace)}return e}function CLe(e=[],t=[]){const n=Array.from(new Set(e.concat(t)));return n.length>0?n:void 0}function qLe(e={},t){switch(t.type){case"ADD_BLOCK_BINDINGS_SOURCE":let n;return(globalThis.IS_GUTENBERG_PLUGIN||t.name==="core/post-meta")&&(n=t.getFieldsList),{...e,[t.name]:{label:t.label||e[t.name]?.label,usesContext:CLe(e[t.name]?.usesContext,t.usesContext),getValues:t.getValues,setValues:t.setValues,canUserEditValue:t.setValues&&t.canUserEditValue,getFieldsList:n}};case"REMOVE_BLOCK_BINDINGS_SOURCE":return Xf(e,t.name)}return e}const RLe=J0({bootstrappedBlockTypes:MLe,unprocessedBlockTypes:zLe,blockTypes:OLe,blockStyles:yLe,blockVariations:ALe,defaultBlockName:vLe,freeformFallbackBlockName:xLe,unregisteredFallbackBlockName:wLe,groupingBlockName:_Le,categories:kLe,collections:SLe,blockBindingsSources:qLe}),JM=(e,t,n)=>{var o;const r=Array.isArray(t)?t:t.split(".");let s=e;return r.forEach(i=>{s=s?.[i]}),(o=s)!==null&&o!==void 0?o:n};function nX(e){return typeof e=="object"&&e.constructor===Object&&e!==null}function pie(e,t){return nX(e)&&nX(t)?Object.entries(t).every(([n,o])=>pie(e?.[n],o)):e===t}const TLe=["background","backgroundColor","color","linkColor","captionColor","buttonColor","headingColor","fontFamily","fontSize","fontStyle","fontWeight","lineHeight","padding","contentSize","wideSize","blockGap","textDecoration","textTransform","letterSpacing"];function oX(e,t,n){return e.filter(o=>!(o==="fontSize"&&n==="heading"||o==="textDecoration"&&!t&&n!=="link"||o==="textTransform"&&!t&&!(["heading","h1","h2","h3","h4","h5","h6"].includes(n)||n==="button"||n==="caption"||n==="text")||o==="letterSpacing"&&!t&&!(["heading","h1","h2","h3","h4","h5","h6"].includes(n)||n==="button"||n==="caption"||n==="text")||o==="textColumns"&&!t))}const ELe=It((e,t,n)=>{if(!t)return oX(TLe,t,n);const o=z3(e,t);if(!o)return[];const r=[];return o?.supports?.spacing?.blockGap&&r.push("blockGap"),o?.supports?.shadow&&r.push("shadow"),Object.keys(Pp).forEach(s=>{if(Pp[s].support){if(Pp[s].requiresOptOut&&Pp[s].support[0]in o.supports&&JM(o.supports,Pp[s].support)!==!1){r.push(s);return}JM(o.supports,Pp[s].support,!1)&&r.push(s)}}),oX(r,t,n)},(e,t)=>[e.blockTypes[t]]);function WLe(e,t){return e.bootstrappedBlockTypes[t]}function NLe(e){return e.unprocessedBlockTypes}function BLe(e){return e.blockBindingsSources}function LLe(e,t){return e.blockBindingsSources[t]}const fie=(e,t)=>{const n=z3(e,t);return n?Object.values(n.attributes).some(({role:o,__experimentalRole:r})=>o==="content"?!0:r==="content"?(Ke("__experimentalRole attribute",{since:"6.7",version:"6.8",alternative:"role attribute",hint:`Check the block.json of the ${t} block.`}),!0):!1):!1},PLe=Object.freeze(Object.defineProperty({__proto__:null,getAllBlockBindingsSources:BLe,getBlockBindingsSource:LLe,getBootstrappedBlockType:WLe,getSupportedStyles:ELe,getUnprocessedBlockTypes:NLe,hasContentRoleAttribute:fie},Symbol.toStringTag,{value:"Module"})),bie=(e,t)=>typeof t=="string"?z3(e,t):t,hie=It(e=>Object.values(e.blockTypes),e=>[e.blockTypes]);function z3(e,t){return e.blockTypes[t]}function jLe(e,t){return e.blockStyles[t]}const LB=It((e,t,n)=>{const o=e.blockVariations[t];return!o||!n?o:o.filter(r=>(r.scope||["block","inserter"]).includes(n))},(e,t)=>[e.blockVariations[t]]);function ILe(e,t,n,o){const r=LB(e,t,o);if(!r)return r;const s=z3(e,t),i=Object.keys(s?.attributes||{});let c,l=0;for(const u of r)if(Array.isArray(u.isActive)){const d=u.isActive.filter(b=>{const h=b.split(".")[0];return i.includes(h)}),p=d.length;if(p===0)continue;d.every(b=>{const h=JM(u.attributes,b);if(h===void 0)return!1;let g=JM(n,b);return g instanceof Xo&&(g=g.toHTMLString()),pie(g,h)})&&p>l&&(c=u,l=p)}else if(u.isActive?.(n,u.attributes))return c||u;return c}function DLe(e,t,n){const o=LB(e,t,n);return[...o].reverse().find(({isDefault:s})=>!!s)||o[0]}function FLe(e){return e.categories}function $Le(e){return e.collections}function VLe(e){return e.defaultBlockName}function HLe(e){return e.freeformFallbackBlockName}function ULe(e){return e.unregisteredFallbackBlockName}function XLe(e){return e.groupingBlockName}const PB=It((e,t)=>hie(e).filter(n=>n.parent?.includes(t)).map(({name:n})=>n),e=>[e.blockTypes]),mie=(e,t,n,o)=>{const r=bie(e,t);return r?.supports?JM(r.supports,n,o):o};function gie(e,t,n,o){return!!mie(e,t,n,o)}function rX(e){return ms(e??"").toLowerCase().trim()}function GLe(e,t,n=""){const o=bie(e,t),r=rX(n),s=i=>rX(i).includes(r);return s(o.title)||o.keywords?.some(s)||s(o.category)||typeof o.description=="string"&&s(o.description)}const KLe=(e,t)=>PB(e,t).length>0,YLe=(e,t)=>PB(e,t).some(n=>gie(e,n,"inserter",!0)),ZLe=(...e)=>(Ke("__experimentalHasContentRoleAttribute",{since:"6.7",version:"6.8",hint:"This is a private selector."}),fie(...e)),QLe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalHasContentRoleAttribute:ZLe,getActiveBlockVariation:ILe,getBlockStyles:jLe,getBlockSupport:mie,getBlockType:z3,getBlockTypes:hie,getBlockVariations:LB,getCategories:FLe,getChildBlockNames:PB,getCollections:$Le,getDefaultBlockName:VLe,getDefaultBlockVariation:DLe,getFreeformFallbackBlockName:HLe,getGroupingBlockName:XLe,getUnregisteredFallbackBlockName:ULe,hasBlockSupport:gie,hasChildBlocks:KLe,hasChildBlocksWithInserterSupport:YLe,isMatchingSearchTerm:GLe},Symbol.toStringTag,{value:"Module"}));var eC={exports:{}},ko={};/** * @license React * react-is.production.min.js * @@ -73,7 +73,7 @@ Use Chrome, Firefox or Internet Explorer 11`)}}).call(this)}).call(this,s("_proc * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var sX;function ePe(){if(sX)return ko;sX=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),i=Symbol.for("react.context"),c=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),d=Symbol.for("react.suspense_list"),p=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),b=Symbol.for("react.offscreen"),h;h=Symbol.for("react.module.reference");function g(z){if(typeof z=="object"&&z!==null){var A=z.$$typeof;switch(A){case e:switch(z=z.type,z){case n:case r:case o:case u:case d:return z;default:switch(z=z&&z.$$typeof,z){case c:case i:case l:case f:case p:case s:return z;default:return A}}case t:return A}}}return ko.ContextConsumer=i,ko.ContextProvider=s,ko.Element=e,ko.ForwardRef=l,ko.Fragment=n,ko.Lazy=f,ko.Memo=p,ko.Portal=t,ko.Profiler=r,ko.StrictMode=o,ko.Suspense=u,ko.SuspenseList=d,ko.isAsyncMode=function(){return!1},ko.isConcurrentMode=function(){return!1},ko.isContextConsumer=function(z){return g(z)===i},ko.isContextProvider=function(z){return g(z)===s},ko.isElement=function(z){return typeof z=="object"&&z!==null&&z.$$typeof===e},ko.isForwardRef=function(z){return g(z)===l},ko.isFragment=function(z){return g(z)===n},ko.isLazy=function(z){return g(z)===f},ko.isMemo=function(z){return g(z)===p},ko.isPortal=function(z){return g(z)===t},ko.isProfiler=function(z){return g(z)===r},ko.isStrictMode=function(z){return g(z)===o},ko.isSuspense=function(z){return g(z)===u},ko.isSuspenseList=function(z){return g(z)===d},ko.isValidElementType=function(z){return typeof z=="string"||typeof z=="function"||z===n||z===r||z===o||z===u||z===d||z===b||typeof z=="object"&&z!==null&&(z.$$typeof===f||z.$$typeof===p||z.$$typeof===s||z.$$typeof===i||z.$$typeof===l||z.$$typeof===h||z.getModuleId!==void 0)},ko.typeOf=g,ko}var iX;function tPe(){return iX||(iX=1,tC.exports=ePe()),tC.exports}var nPe=tPe();const aX={common:"text",formatting:"text",layout:"design"};function oPe(e=[],t=[]){const n=[...e];return t.forEach(o=>{const r=n.findIndex(s=>s.name===o.name);r!==-1?n[r]={...n[r],...o}:n.push(o)}),n}const Mie=(e,t)=>({select:n})=>{const o=n.getBootstrappedBlockType(e),r={name:e,icon:sie,keywords:[],attributes:{},providesContext:{},usesContext:[],selectors:{},supports:{},styles:[],blockHooks:{},save:()=>null,...o,...t,variations:oPe(Array.isArray(o?.variations)?o.variations:[],Array.isArray(t?.variations)?t.variations:[])},s=gr("blocks.registerBlockType",r,e,null);if(s.description&&typeof s.description!="string"&&Ke("Declaring non-string block descriptions",{since:"6.2"}),s.deprecated&&(s.deprecated=s.deprecated.map(i=>Object.fromEntries(Object.entries(gr("blocks.registerBlockType",{...Xf(r,QE),...i},r.name,i)).filter(([c])=>QE.includes(c))))),!a3(s)){globalThis.SCRIPT_DEBUG===!0&&zn("Block settings must be a valid object.");return}if(typeof s.save!="function"){globalThis.SCRIPT_DEBUG===!0&&zn('The "save" property must be a valid function.');return}if("edit"in s&&!nPe.isValidElementType(s.edit)){globalThis.SCRIPT_DEBUG===!0&&zn('The "edit" property must be a valid component.');return}if(aX.hasOwnProperty(s.category)&&(s.category=aX[s.category]),"category"in s&&!n.getCategories().some(({slug:i})=>i===s.category)&&(globalThis.SCRIPT_DEBUG===!0&&zn('The block "'+e+'" is registered with an invalid category "'+s.category+'".'),delete s.category),!("title"in s)||s.title===""){globalThis.SCRIPT_DEBUG===!0&&zn('The block "'+e+'" must have a title.');return}if(typeof s.title!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block titles must be strings.");return}if(s.icon=hLe(s.icon),!cie(s.icon.src)){globalThis.SCRIPT_DEBUG===!0&&zn("The icon passed is invalid. The icon should be a string, an element, a function, or an object following the specifications documented in https://developer.wordpress.org/block-editor/developers/block-api/block-registration/#icon-optional");return}if((typeof s?.parent=="string"||s?.parent instanceof String)&&(s.parent=[s.parent],globalThis.SCRIPT_DEBUG===!0&&zn("Parent must be undefined or an array of strings (block types), but it is a string.")),!Array.isArray(s?.parent)&&s?.parent!==void 0){globalThis.SCRIPT_DEBUG===!0&&zn("Parent must be undefined or an array of block types, but it is ",s.parent);return}if(s?.parent?.length===1&&e===s.parent[0]){globalThis.SCRIPT_DEBUG===!0&&zn('Block "'+e+'" cannot be a parent of itself. Please remove the block name from the parent list.');return}return s};function rPe(e){return{type:"ADD_BLOCK_TYPES",blockTypes:Array.isArray(e)?e:[e]}}function zie(){return({dispatch:e,select:t})=>{const n=[];for(const[o,r]of Object.entries(t.getUnprocessedBlockTypes())){const s=e(Mie(o,r));s&&n.push(s)}n.length&&e.addBlockTypes(n)}}function sPe(){return Ke('wp.data.dispatch( "core/blocks" ).__experimentalReapplyBlockFilters',{since:"6.4",alternative:"reapplyBlockFilters"}),zie()}function iPe(e){return{type:"REMOVE_BLOCK_TYPES",names:Array.isArray(e)?e:[e]}}function aPe(e,t){return{type:"ADD_BLOCK_STYLES",styles:Array.isArray(t)?t:[t],blockNames:Array.isArray(e)?e:[e]}}function cPe(e,t){return{type:"REMOVE_BLOCK_STYLES",styleNames:Array.isArray(t)?t:[t],blockName:e}}function lPe(e,t){return{type:"ADD_BLOCK_VARIATIONS",variations:Array.isArray(t)?t:[t],blockName:e}}function uPe(e,t){return{type:"REMOVE_BLOCK_VARIATIONS",variationNames:Array.isArray(t)?t:[t],blockName:e}}function dPe(e){return{type:"SET_DEFAULT_BLOCK_NAME",name:e}}function pPe(e){return{type:"SET_FREEFORM_FALLBACK_BLOCK_NAME",name:e}}function fPe(e){return{type:"SET_UNREGISTERED_FALLBACK_BLOCK_NAME",name:e}}function bPe(e){return{type:"SET_GROUPING_BLOCK_NAME",name:e}}function hPe(e){return{type:"SET_CATEGORIES",categories:e}}function mPe(e,t){return{type:"UPDATE_CATEGORY",slug:e,category:t}}function gPe(e,t,n){return{type:"ADD_BLOCK_COLLECTION",namespace:e,title:t,icon:n}}function MPe(e){return{type:"REMOVE_BLOCK_COLLECTION",namespace:e}}const zPe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalReapplyBlockFilters:sPe,addBlockCollection:gPe,addBlockStyles:aPe,addBlockTypes:rPe,addBlockVariations:lPe,reapplyBlockTypeFilters:zie,removeBlockCollection:MPe,removeBlockStyles:cPe,removeBlockTypes:iPe,removeBlockVariations:uPe,setCategories:hPe,setDefaultBlockName:dPe,setFreeformFallbackBlockName:pPe,setGroupingBlockName:bPe,setUnregisteredFallbackBlockName:fPe,updateCategory:mPe},Symbol.toStringTag,{value:"Module"}));function OPe(e,t){return{type:"ADD_BOOTSTRAPPED_BLOCK_TYPE",name:e,blockType:t}}function yPe(e,t){return({dispatch:n})=>{n({type:"ADD_UNPROCESSED_BLOCK_TYPE",name:e,blockType:t});const o=n(Mie(e,t));o&&n.addBlockTypes(o)}}function APe(e){return{type:"ADD_BLOCK_BINDINGS_SOURCE",name:e.name,label:e.label,usesContext:e.usesContext,getValues:e.getValues,setValues:e.setValues,canUserEditValue:e.canUserEditValue,getFieldsList:e.getFieldsList}}function vPe(e){return{type:"REMOVE_BLOCK_BINDINGS_SOURCE",name:e}}const xPe=Object.freeze(Object.defineProperty({__proto__:null,addBlockBindingsSource:APe,addBootstrappedBlockType:OPe,addUnprocessedBlockType:yPe,removeBlockBindingsSource:vPe},Symbol.toStringTag,{value:"Module"})),wPe="core/blocks",kt=x1(wPe,{reducer:TLe,selectors:JLe,actions:zPe});Us(kt);Mf(kt).registerPrivateSelectors(jLe);Mf(kt).registerPrivateActions(xPe);function Ee(e,t={},n=[]){if(!die(e))return Ee("core/missing",{originalName:e,originalContent:"",originalUndelimitedContent:""});const o=BB(e,t);return{clientId:Is(),name:e,isValid:!0,attributes:o,innerBlocks:n}}function Ad(e=[]){return e.map(t=>{const n=Array.isArray(t)?t:[t.name,t.attributes,t.innerBlocks],[o,r,s=[]]=n;return Ee(o,r,Ad(s))})}function Oie(e,t={},n){const{name:o}=e;if(!die(o))return Ee("core/missing",{originalName:o,originalContent:"",originalUndelimitedContent:""});const r=Is(),s=BB(o,{...e.attributes,...t});return{...e,clientId:r,attributes:s,innerBlocks:n||e.innerBlocks.map(i=>Oie(i))}}function jo(e,t={},n){const o=Is();return{...e,clientId:o,attributes:{...e.attributes,...t},innerBlocks:n||e.innerBlocks.map(r=>jo(r))}}const yie=(e,t,n)=>{if(!n.length)return!1;const o=n.length>1,r=n[0].name;if(!(W2(e)||!o||e.isMultiBlock)||!W2(e)&&!n.every(u=>u.name===r)||!(e.type==="block"))return!1;const c=n[0];return!(!(t!=="from"||e.blocks.indexOf(c.name)!==-1||W2(e))||!o&&t==="from"&&cX(c.name)&&cX(e.blockName)||!e8(e,n))},_Pe=e=>e.length?gs().filter(o=>{const r=Ei("from",o.name);return!!xc(r,s=>yie(s,"from",e))}):[],kPe=e=>{if(!e.length)return[];const t=e[0],n=on(t.name);return(n?Ei("to",n.name):[]).filter(i=>i&&yie(i,"to",e)).map(i=>i.blocks).flat().map(on)},W2=e=>e&&e.type==="block"&&Array.isArray(e.blocks)&&e.blocks.includes("*"),cX=e=>e===iie();function Aie(e){if(!e.length)return[];const t=_Pe(e),n=kPe(e);return[...new Set([...t,...n])]}function xc(e,t){const n=Hre();for(let o=0;o<e.length;o++){const r=e[o];t(r)&&n.addFilter("transform","transform/"+o.toString(),s=>s||r,r.priority)}return n.applyFilters("transform",null)}function Ei(e,t){if(t===void 0)return gs().map(({name:c})=>Ei(e,c)).flat();const n=M3(t),{name:o,transforms:r}=n||{};if(!r||!Array.isArray(r[e]))return[];const s=r.supportedMobileTransforms&&Array.isArray(r.supportedMobileTransforms);return(s?r[e].filter(c=>c.type==="raw"||c.type==="prefix"?!0:!c.blocks||!c.blocks.length?!1:W2(c)?!0:c.blocks.every(l=>r.supportedMobileTransforms.includes(l))):r[e]).map(c=>({...c,blockName:o,usingMobileTransformations:s}))}function e8(e,t){if(typeof e.isMatch!="function")return!0;const n=t[0],o=e.isMultiBlock?t.map(s=>s.attributes):n.attributes,r=e.isMultiBlock?t:n;return e.isMatch(o,r)}function Kr(e,t){const n=Array.isArray(e)?e:[e],o=n.length>1,r=n[0],s=r.name,i=Ei("from",t),c=Ei("to",s),l=xc(c,f=>f.type==="block"&&(W2(f)||f.blocks.indexOf(t)!==-1)&&(!o||f.isMultiBlock)&&e8(f,n))||xc(i,f=>f.type==="block"&&(W2(f)||f.blocks.indexOf(s)!==-1)&&(!o||f.isMultiBlock)&&e8(f,n));if(!l)return null;let u;return l.isMultiBlock?"__experimentalConvert"in l?u=l.__experimentalConvert(n):u=l.transform(n.map(f=>f.attributes),n.map(f=>f.innerBlocks)):"__experimentalConvert"in l?u=l.__experimentalConvert(r):u=l.transform(r.attributes,r.innerBlocks),u===null||typeof u!="object"||(u=Array.isArray(u)?u:[u],u.some(f=>!on(f.name)))||!u.some(f=>f.name===t)?null:u.map((f,b,h)=>gr("blocks.switchToBlockType.transformedBlock",f,e,b,h))}const IB=(e,t)=>{var n;return Ee(e,t.attributes,((n=t.innerBlocks)!==null&&n!==void 0?n:[]).map(o=>IB(o.name,o)))};let fc,Qa,zf,Qu;const vie=/<!--\s+(\/)?wp:([a-z][a-z0-9_-]*\/)?([a-z][a-z0-9_-]*)\s+({(?:(?=([^}]+|}+(?=})|(?!}\s+\/?-->)[^])*)\5|[^]*?)}\s+)?(\/)?-->/g;function Fv(e,t,n,o,r){return{blockName:e,attrs:t,innerBlocks:n,innerHTML:o,innerContent:r}}function DB(e){return Fv(null,{},[],e,[e])}function SPe(e,t,n,o,r){return{block:e,tokenStart:t,tokenLength:n,prevOffset:o||t+n,leadingHtmlStart:r}}const xie=e=>{fc=e,Qa=0,zf=[],Qu=[],vie.lastIndex=0;do;while(CPe());return zf};function CPe(){const e=Qu.length,t=RPe(),[n,o,r,s,i]=t,c=s>Qa?Qa:null;switch(n){case"no-more-tokens":if(e===0)return nC(),!1;if(e===1)return oC(),!1;for(;0<Qu.length;)oC();return!1;case"void-block":return e===0?(c!==null&&zf.push(DB(fc.substr(c,s-c))),zf.push(Fv(o,r,[],"",[])),Qa=s+i,!0):(lX(Fv(o,r,[],"",[]),s,i),Qa=s+i,!0);case"block-opener":return Qu.push(SPe(Fv(o,r,[],"",[]),s,i,s+i,c)),Qa=s+i,!0;case"block-closer":if(e===0)return nC(),!1;if(e===1)return oC(s),Qa=s+i,!0;const l=Qu.pop(),u=fc.substr(l.prevOffset,s-l.prevOffset);return l.block.innerHTML+=u,l.block.innerContent.push(u),l.prevOffset=s+i,lX(l.block,l.tokenStart,l.tokenLength,s+i),Qa=s+i,!0;default:return nC(),!1}}function qPe(e){try{return JSON.parse(e)}catch{return null}}function RPe(){const e=vie.exec(fc);if(e===null)return["no-more-tokens","",null,0,0];const t=e.index,[n,o,r,s,i,,c]=e,l=n.length,u=!!o,d=!!c,f=(r||"core/")+s,h=!!i?qPe(i):{};return d?["void-block",f,h,t,l]:u?["block-closer",f,null,t,l]:["block-opener",f,h,t,l]}function nC(e){const t=fc.length-Qa;t!==0&&zf.push(DB(fc.substr(Qa,t)))}function lX(e,t,n,o){const r=Qu[Qu.length-1];r.block.innerBlocks.push(e);const s=fc.substr(r.prevOffset,t-r.prevOffset);s&&(r.block.innerHTML+=s,r.block.innerContent.push(s)),r.block.innerContent.push(null),r.prevOffset=o||t+n}function oC(e){const{block:t,leadingHtmlStart:n,prevOffset:o,tokenStart:r}=Qu.pop(),s=e?fc.substr(o,e-o):fc.substr(o);s&&(t.innerHTML+=s,t.innerContent.push(s)),n!==null&&zf.push(DB(fc.substr(n,r-n))),zf.push(t)}const TPe=(()=>{const o="(<("+("(?=!--|!\\[CDATA\\[)((?=!-)"+"!(?:-(?!->)[^\\-]*)*(?:-->)?"+"|"+"!\\[CDATA\\[[^\\]]*(?:](?!]>)[^\\]]*)*?(?:]]>)?"+")")+"|[^>]*>?))";return new RegExp(o)})();function EPe(e){const t=[];let n=e,o;for(;o=n.match(TPe);){const r=o.index;t.push(n.slice(0,r)),t.push(o[0]),n=n.slice(r+o[0].length)}return n.length&&t.push(n),t}function WPe(e,t){const n=EPe(e);let o=!1;const r=Object.keys(t);for(let s=1;s<n.length;s+=2)for(let i=0;i<r.length;i++){const c=r[i];if(n[s].indexOf(c)!==-1){n[s]=n[s].replace(new RegExp(c,"g"),t[c]),o=!0;break}}return o&&(e=n.join("")),e}function wie(e,t=!0){const n=[];if(e.trim()==="")return"";if(e=e+` + */var sX;function JLe(){if(sX)return ko;sX=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),i=Symbol.for("react.context"),c=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),d=Symbol.for("react.suspense_list"),p=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),b=Symbol.for("react.offscreen"),h;h=Symbol.for("react.module.reference");function g(z){if(typeof z=="object"&&z!==null){var A=z.$$typeof;switch(A){case e:switch(z=z.type,z){case n:case r:case o:case u:case d:return z;default:switch(z=z&&z.$$typeof,z){case c:case i:case l:case f:case p:case s:return z;default:return A}}case t:return A}}}return ko.ContextConsumer=i,ko.ContextProvider=s,ko.Element=e,ko.ForwardRef=l,ko.Fragment=n,ko.Lazy=f,ko.Memo=p,ko.Portal=t,ko.Profiler=r,ko.StrictMode=o,ko.Suspense=u,ko.SuspenseList=d,ko.isAsyncMode=function(){return!1},ko.isConcurrentMode=function(){return!1},ko.isContextConsumer=function(z){return g(z)===i},ko.isContextProvider=function(z){return g(z)===s},ko.isElement=function(z){return typeof z=="object"&&z!==null&&z.$$typeof===e},ko.isForwardRef=function(z){return g(z)===l},ko.isFragment=function(z){return g(z)===n},ko.isLazy=function(z){return g(z)===f},ko.isMemo=function(z){return g(z)===p},ko.isPortal=function(z){return g(z)===t},ko.isProfiler=function(z){return g(z)===r},ko.isStrictMode=function(z){return g(z)===o},ko.isSuspense=function(z){return g(z)===u},ko.isSuspenseList=function(z){return g(z)===d},ko.isValidElementType=function(z){return typeof z=="string"||typeof z=="function"||z===n||z===r||z===o||z===u||z===d||z===b||typeof z=="object"&&z!==null&&(z.$$typeof===f||z.$$typeof===p||z.$$typeof===s||z.$$typeof===i||z.$$typeof===l||z.$$typeof===h||z.getModuleId!==void 0)},ko.typeOf=g,ko}var iX;function ePe(){return iX||(iX=1,eC.exports=JLe()),eC.exports}var tPe=ePe();const aX={common:"text",formatting:"text",layout:"design"};function nPe(e=[],t=[]){const n=[...e];return t.forEach(o=>{const r=n.findIndex(s=>s.name===o.name);r!==-1?n[r]={...n[r],...o}:n.push(o)}),n}const Mie=(e,t)=>({select:n})=>{const o=n.getBootstrappedBlockType(e),r={name:e,icon:sie,keywords:[],attributes:{},providesContext:{},usesContext:[],selectors:{},supports:{},styles:[],blockHooks:{},save:()=>null,...o,...t,variations:nPe(Array.isArray(o?.variations)?o.variations:[],Array.isArray(t?.variations)?t.variations:[])},s=gr("blocks.registerBlockType",r,e,null);if(s.description&&typeof s.description!="string"&&Ke("Declaring non-string block descriptions",{since:"6.2"}),s.deprecated&&(s.deprecated=s.deprecated.map(i=>Object.fromEntries(Object.entries(gr("blocks.registerBlockType",{...Xf(r,ZE),...i},r.name,i)).filter(([c])=>ZE.includes(c))))),!a3(s)){globalThis.SCRIPT_DEBUG===!0&&zn("Block settings must be a valid object.");return}if(typeof s.save!="function"){globalThis.SCRIPT_DEBUG===!0&&zn('The "save" property must be a valid function.');return}if("edit"in s&&!tPe.isValidElementType(s.edit)){globalThis.SCRIPT_DEBUG===!0&&zn('The "edit" property must be a valid component.');return}if(aX.hasOwnProperty(s.category)&&(s.category=aX[s.category]),"category"in s&&!n.getCategories().some(({slug:i})=>i===s.category)&&(globalThis.SCRIPT_DEBUG===!0&&zn('The block "'+e+'" is registered with an invalid category "'+s.category+'".'),delete s.category),!("title"in s)||s.title===""){globalThis.SCRIPT_DEBUG===!0&&zn('The block "'+e+'" must have a title.');return}if(typeof s.title!="string"){globalThis.SCRIPT_DEBUG===!0&&zn("Block titles must be strings.");return}if(s.icon=bLe(s.icon),!cie(s.icon.src)){globalThis.SCRIPT_DEBUG===!0&&zn("The icon passed is invalid. The icon should be a string, an element, a function, or an object following the specifications documented in https://developer.wordpress.org/block-editor/developers/block-api/block-registration/#icon-optional");return}if((typeof s?.parent=="string"||s?.parent instanceof String)&&(s.parent=[s.parent],globalThis.SCRIPT_DEBUG===!0&&zn("Parent must be undefined or an array of strings (block types), but it is a string.")),!Array.isArray(s?.parent)&&s?.parent!==void 0){globalThis.SCRIPT_DEBUG===!0&&zn("Parent must be undefined or an array of block types, but it is ",s.parent);return}if(s?.parent?.length===1&&e===s.parent[0]){globalThis.SCRIPT_DEBUG===!0&&zn('Block "'+e+'" cannot be a parent of itself. Please remove the block name from the parent list.');return}return s};function oPe(e){return{type:"ADD_BLOCK_TYPES",blockTypes:Array.isArray(e)?e:[e]}}function zie(){return({dispatch:e,select:t})=>{const n=[];for(const[o,r]of Object.entries(t.getUnprocessedBlockTypes())){const s=e(Mie(o,r));s&&n.push(s)}n.length&&e.addBlockTypes(n)}}function rPe(){return Ke('wp.data.dispatch( "core/blocks" ).__experimentalReapplyBlockFilters',{since:"6.4",alternative:"reapplyBlockFilters"}),zie()}function sPe(e){return{type:"REMOVE_BLOCK_TYPES",names:Array.isArray(e)?e:[e]}}function iPe(e,t){return{type:"ADD_BLOCK_STYLES",styles:Array.isArray(t)?t:[t],blockNames:Array.isArray(e)?e:[e]}}function aPe(e,t){return{type:"REMOVE_BLOCK_STYLES",styleNames:Array.isArray(t)?t:[t],blockName:e}}function cPe(e,t){return{type:"ADD_BLOCK_VARIATIONS",variations:Array.isArray(t)?t:[t],blockName:e}}function lPe(e,t){return{type:"REMOVE_BLOCK_VARIATIONS",variationNames:Array.isArray(t)?t:[t],blockName:e}}function uPe(e){return{type:"SET_DEFAULT_BLOCK_NAME",name:e}}function dPe(e){return{type:"SET_FREEFORM_FALLBACK_BLOCK_NAME",name:e}}function pPe(e){return{type:"SET_UNREGISTERED_FALLBACK_BLOCK_NAME",name:e}}function fPe(e){return{type:"SET_GROUPING_BLOCK_NAME",name:e}}function bPe(e){return{type:"SET_CATEGORIES",categories:e}}function hPe(e,t){return{type:"UPDATE_CATEGORY",slug:e,category:t}}function mPe(e,t,n){return{type:"ADD_BLOCK_COLLECTION",namespace:e,title:t,icon:n}}function gPe(e){return{type:"REMOVE_BLOCK_COLLECTION",namespace:e}}const MPe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalReapplyBlockFilters:rPe,addBlockCollection:mPe,addBlockStyles:iPe,addBlockTypes:oPe,addBlockVariations:cPe,reapplyBlockTypeFilters:zie,removeBlockCollection:gPe,removeBlockStyles:aPe,removeBlockTypes:sPe,removeBlockVariations:lPe,setCategories:bPe,setDefaultBlockName:uPe,setFreeformFallbackBlockName:dPe,setGroupingBlockName:fPe,setUnregisteredFallbackBlockName:pPe,updateCategory:hPe},Symbol.toStringTag,{value:"Module"}));function zPe(e,t){return{type:"ADD_BOOTSTRAPPED_BLOCK_TYPE",name:e,blockType:t}}function OPe(e,t){return({dispatch:n})=>{n({type:"ADD_UNPROCESSED_BLOCK_TYPE",name:e,blockType:t});const o=n(Mie(e,t));o&&n.addBlockTypes(o)}}function yPe(e){return{type:"ADD_BLOCK_BINDINGS_SOURCE",name:e.name,label:e.label,usesContext:e.usesContext,getValues:e.getValues,setValues:e.setValues,canUserEditValue:e.canUserEditValue,getFieldsList:e.getFieldsList}}function APe(e){return{type:"REMOVE_BLOCK_BINDINGS_SOURCE",name:e}}const vPe=Object.freeze(Object.defineProperty({__proto__:null,addBlockBindingsSource:yPe,addBootstrappedBlockType:zPe,addUnprocessedBlockType:OPe,removeBlockBindingsSource:APe},Symbol.toStringTag,{value:"Module"})),xPe="core/blocks",kt=x1(xPe,{reducer:RLe,selectors:QLe,actions:MPe});Us(kt);Mf(kt).registerPrivateSelectors(PLe);Mf(kt).registerPrivateActions(vPe);function Ee(e,t={},n=[]){if(!die(e))return Ee("core/missing",{originalName:e,originalContent:"",originalUndelimitedContent:""});const o=NB(e,t);return{clientId:Is(),name:e,isValid:!0,attributes:o,innerBlocks:n}}function Ad(e=[]){return e.map(t=>{const n=Array.isArray(t)?t:[t.name,t.attributes,t.innerBlocks],[o,r,s=[]]=n;return Ee(o,r,Ad(s))})}function Oie(e,t={},n){const{name:o}=e;if(!die(o))return Ee("core/missing",{originalName:o,originalContent:"",originalUndelimitedContent:""});const r=Is(),s=NB(o,{...e.attributes,...t});return{...e,clientId:r,attributes:s,innerBlocks:n||e.innerBlocks.map(i=>Oie(i))}}function jo(e,t={},n){const o=Is();return{...e,clientId:o,attributes:{...e.attributes,...t},innerBlocks:n||e.innerBlocks.map(r=>jo(r))}}const yie=(e,t,n)=>{if(!n.length)return!1;const o=n.length>1,r=n[0].name;if(!(W2(e)||!o||e.isMultiBlock)||!W2(e)&&!n.every(u=>u.name===r)||!(e.type==="block"))return!1;const c=n[0];return!(!(t!=="from"||e.blocks.indexOf(c.name)!==-1||W2(e))||!o&&t==="from"&&cX(c.name)&&cX(e.blockName)||!JE(e,n))},wPe=e=>e.length?gs().filter(o=>{const r=Ei("from",o.name);return!!xc(r,s=>yie(s,"from",e))}):[],_Pe=e=>{if(!e.length)return[];const t=e[0],n=on(t.name);return(n?Ei("to",n.name):[]).filter(i=>i&&yie(i,"to",e)).map(i=>i.blocks).flat().map(on)},W2=e=>e&&e.type==="block"&&Array.isArray(e.blocks)&&e.blocks.includes("*"),cX=e=>e===iie();function Aie(e){if(!e.length)return[];const t=wPe(e),n=_Pe(e);return[...new Set([...t,...n])]}function xc(e,t){const n=Hre();for(let o=0;o<e.length;o++){const r=e[o];t(r)&&n.addFilter("transform","transform/"+o.toString(),s=>s||r,r.priority)}return n.applyFilters("transform",null)}function Ei(e,t){if(t===void 0)return gs().map(({name:c})=>Ei(e,c)).flat();const n=M3(t),{name:o,transforms:r}=n||{};if(!r||!Array.isArray(r[e]))return[];const s=r.supportedMobileTransforms&&Array.isArray(r.supportedMobileTransforms);return(s?r[e].filter(c=>c.type==="raw"||c.type==="prefix"?!0:!c.blocks||!c.blocks.length?!1:W2(c)?!0:c.blocks.every(l=>r.supportedMobileTransforms.includes(l))):r[e]).map(c=>({...c,blockName:o,usingMobileTransformations:s}))}function JE(e,t){if(typeof e.isMatch!="function")return!0;const n=t[0],o=e.isMultiBlock?t.map(s=>s.attributes):n.attributes,r=e.isMultiBlock?t:n;return e.isMatch(o,r)}function Kr(e,t){const n=Array.isArray(e)?e:[e],o=n.length>1,r=n[0],s=r.name,i=Ei("from",t),c=Ei("to",s),l=xc(c,f=>f.type==="block"&&(W2(f)||f.blocks.indexOf(t)!==-1)&&(!o||f.isMultiBlock)&&JE(f,n))||xc(i,f=>f.type==="block"&&(W2(f)||f.blocks.indexOf(s)!==-1)&&(!o||f.isMultiBlock)&&JE(f,n));if(!l)return null;let u;return l.isMultiBlock?"__experimentalConvert"in l?u=l.__experimentalConvert(n):u=l.transform(n.map(f=>f.attributes),n.map(f=>f.innerBlocks)):"__experimentalConvert"in l?u=l.__experimentalConvert(r):u=l.transform(r.attributes,r.innerBlocks),u===null||typeof u!="object"||(u=Array.isArray(u)?u:[u],u.some(f=>!on(f.name)))||!u.some(f=>f.name===t)?null:u.map((f,b,h)=>gr("blocks.switchToBlockType.transformedBlock",f,e,b,h))}const jB=(e,t)=>{var n;return Ee(e,t.attributes,((n=t.innerBlocks)!==null&&n!==void 0?n:[]).map(o=>jB(o.name,o)))};let fc,Qa,zf,Qu;const vie=/<!--\s+(\/)?wp:([a-z][a-z0-9_-]*\/)?([a-z][a-z0-9_-]*)\s+({(?:(?=([^}]+|}+(?=})|(?!}\s+\/?-->)[^])*)\5|[^]*?)}\s+)?(\/)?-->/g;function Dv(e,t,n,o,r){return{blockName:e,attrs:t,innerBlocks:n,innerHTML:o,innerContent:r}}function IB(e){return Dv(null,{},[],e,[e])}function kPe(e,t,n,o,r){return{block:e,tokenStart:t,tokenLength:n,prevOffset:o||t+n,leadingHtmlStart:r}}const xie=e=>{fc=e,Qa=0,zf=[],Qu=[],vie.lastIndex=0;do;while(SPe());return zf};function SPe(){const e=Qu.length,t=qPe(),[n,o,r,s,i]=t,c=s>Qa?Qa:null;switch(n){case"no-more-tokens":if(e===0)return tC(),!1;if(e===1)return nC(),!1;for(;0<Qu.length;)nC();return!1;case"void-block":return e===0?(c!==null&&zf.push(IB(fc.substr(c,s-c))),zf.push(Dv(o,r,[],"",[])),Qa=s+i,!0):(lX(Dv(o,r,[],"",[]),s,i),Qa=s+i,!0);case"block-opener":return Qu.push(kPe(Dv(o,r,[],"",[]),s,i,s+i,c)),Qa=s+i,!0;case"block-closer":if(e===0)return tC(),!1;if(e===1)return nC(s),Qa=s+i,!0;const l=Qu.pop(),u=fc.substr(l.prevOffset,s-l.prevOffset);return l.block.innerHTML+=u,l.block.innerContent.push(u),l.prevOffset=s+i,lX(l.block,l.tokenStart,l.tokenLength,s+i),Qa=s+i,!0;default:return tC(),!1}}function CPe(e){try{return JSON.parse(e)}catch{return null}}function qPe(){const e=vie.exec(fc);if(e===null)return["no-more-tokens","",null,0,0];const t=e.index,[n,o,r,s,i,,c]=e,l=n.length,u=!!o,d=!!c,f=(r||"core/")+s,h=!!i?CPe(i):{};return d?["void-block",f,h,t,l]:u?["block-closer",f,null,t,l]:["block-opener",f,h,t,l]}function tC(e){const t=fc.length-Qa;t!==0&&zf.push(IB(fc.substr(Qa,t)))}function lX(e,t,n,o){const r=Qu[Qu.length-1];r.block.innerBlocks.push(e);const s=fc.substr(r.prevOffset,t-r.prevOffset);s&&(r.block.innerHTML+=s,r.block.innerContent.push(s)),r.block.innerContent.push(null),r.prevOffset=o||t+n}function nC(e){const{block:t,leadingHtmlStart:n,prevOffset:o,tokenStart:r}=Qu.pop(),s=e?fc.substr(o,e-o):fc.substr(o);s&&(t.innerHTML+=s,t.innerContent.push(s)),n!==null&&zf.push(IB(fc.substr(n,r-n))),zf.push(t)}const RPe=(()=>{const o="(<("+("(?=!--|!\\[CDATA\\[)((?=!-)"+"!(?:-(?!->)[^\\-]*)*(?:-->)?"+"|"+"!\\[CDATA\\[[^\\]]*(?:](?!]>)[^\\]]*)*?(?:]]>)?"+")")+"|[^>]*>?))";return new RegExp(o)})();function TPe(e){const t=[];let n=e,o;for(;o=n.match(RPe);){const r=o.index;t.push(n.slice(0,r)),t.push(o[0]),n=n.slice(r+o[0].length)}return n.length&&t.push(n),t}function EPe(e,t){const n=TPe(e);let o=!1;const r=Object.keys(t);for(let s=1;s<n.length;s+=2)for(let i=0;i<r.length;i++){const c=r[i];if(n[s].indexOf(c)!==-1){n[s]=n[s].replace(new RegExp(c,"g"),t[c]),o=!0;break}}return o&&(e=n.join("")),e}function wie(e,t=!0){const n=[];if(e.trim()==="")return"";if(e=e+` `,e.indexOf("<pre")!==-1){const s=e.split("</pre>"),i=s.pop();e="";for(let c=0;c<s.length;c++){const l=s[c],u=l.indexOf("<pre");if(u===-1){e+=l;continue}const d="<pre wp-pre-tag-"+c+"></pre>";n.push([d,l.substr(u)+"</pre>"]),e+=l.substr(0,u)+d}e+=i}e=e.replace(/<br\s*\/?>\s*<br\s*\/?>/g,` `);const o="(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)";e=e.replace(new RegExp("(<"+o+"[\\s/>])","g"),` @@ -81,7 +81,7 @@ Use Chrome, Firefox or Internet Explorer 11`)}}).call(this)}).call(this,s("_proc $1`),e=e.replace(new RegExp("(</"+o+">)","g"),`$1 `),e=e.replace(/\r\n|\r/g,` -`),e=WPe(e,{"\n":" <!-- wpnl --> "}),e.indexOf("<option")!==-1&&(e=e.replace(/\s*<option/g,"<option"),e=e.replace(/<\/option>\s*/g,"</option>")),e.indexOf("</object>")!==-1&&(e=e.replace(/(<object[^>]*>)\s*/g,"$1"),e=e.replace(/\s*<\/object>/g,"</object>"),e=e.replace(/\s*(<\/?(?:param|embed)[^>]*>)\s*/g,"$1")),(e.indexOf("<source")!==-1||e.indexOf("<track")!==-1)&&(e=e.replace(/([<\[](?:audio|video)[^>\]]*[>\]])\s*/g,"$1"),e=e.replace(/\s*([<\[]\/(?:audio|video)[>\]])/g,"$1"),e=e.replace(/\s*(<(?:source|track)[^>]*>)\s*/g,"$1")),e.indexOf("<figcaption")!==-1&&(e=e.replace(/\s*(<figcaption[^>]*>)/,"$1"),e=e.replace(/<\/figcaption>\s*/,"</figcaption>")),e=e.replace(/\n\n+/g,` +`),e=EPe(e,{"\n":" <!-- wpnl --> "}),e.indexOf("<option")!==-1&&(e=e.replace(/\s*<option/g,"<option"),e=e.replace(/<\/option>\s*/g,"</option>")),e.indexOf("</object>")!==-1&&(e=e.replace(/(<object[^>]*>)\s*/g,"$1"),e=e.replace(/\s*<\/object>/g,"</object>"),e=e.replace(/\s*(<\/?(?:param|embed)[^>]*>)\s*/g,"$1")),(e.indexOf("<source")!==-1||e.indexOf("<track")!==-1)&&(e=e.replace(/([<\[](?:audio|video)[^>\]]*[>\]])\s*/g,"$1"),e=e.replace(/\s*([<\[]\/(?:audio|video)[>\]])/g,"$1"),e=e.replace(/\s*(<(?:source|track)[^>]*>)\s*/g,"$1")),e.indexOf("<figcaption")!==-1&&(e=e.replace(/\s*(<figcaption[^>]*>)/,"$1"),e=e.replace(/<\/figcaption>\s*/,"</figcaption>")),e=e.replace(/\n\n+/g,` `);const r=e.split(/\n\s*\n/).filter(Boolean);return e="",r.forEach(s=>{e+="<p>"+s.replace(/^\n*|\n*$/g,"")+`</p> `}),e=e.replace(/<p>\s*<\/p>/g,""),e=e.replace(/<p>([^<]+)<\/(div|address|form)>/g,"<p>$1</p></$2>"),e=e.replace(new RegExp("<p>\\s*(</?"+o+"[^>]*>)\\s*</p>","g"),"$1"),e=e.replace(/<p>(<li.+?)<\/p>/g,"$1"),e=e.replace(/<p><blockquote([^>]*)>/gi,"<blockquote$1><p>"),e=e.replace(/<\/blockquote><\/p>/g,"</p></blockquote>"),e=e.replace(new RegExp("<p>\\s*(</?"+o+"[^>]*>)","g"),"$1"),e=e.replace(new RegExp("(</?"+o+"[^>]*>)\\s*</p>","g"),"$1"),t&&(e=e.replace(/<(script|style).*?<\/\\1>/g,s=>s[0].replace(/\n/g,"<WPPreserveNewline />")),e=e.replace(/<br>|<br\/>/g,"<br />"),e=e.replace(/(<br \/>)?\s*\n/g,(s,i)=>i?s:`<br /> @@ -120,16 +120,16 @@ $1`),e=e.replace(new RegExp("(</"+o+">)","g"),`$1 $1`),e=e.replace(/^\s+/,""),e=e.replace(/[\s\u00a0]+$/,""),s&&(e=e.replace(/<wp-line-break>/g,` `)),i&&(e=e.replace(/<wp-temp-br([^>]*)>/g,"<br$1>")),r.length&&(e=e.replace(/<wp-preserve>/g,()=>r.shift())),e):""}function ez(e,t={}){const{isCommentDelimited:n=!0}=t,{blockName:o,attrs:r={},innerBlocks:s=[],innerContent:i=[]}=e;let c=0;const l=i.map(u=>u!==null?u:ez(s[c++],t)).join(` `).replace(/\n+/g,` -`).trim();return n?Cie(o,r,l):l}function Z4(e){const t="wp-block-"+e.replace(/\//,"-").replace(/^core-/,"");return gr("blocks.getBlockDefaultClassName",t,e)}function FB(e){const t="editor-block-list-item-"+e.replace(/\//,"-").replace(/^core-/,"");return gr("blocks.getBlockMenuDefaultClassName",t,e)}const t8={},kie={};function Q4(e={}){const{blockType:t,attributes:n}=t8;return Q4.skipFilters?e:gr("blocks.getSaveContent.extraProps",{...e},t,n)}function NPe(e={}){const{innerBlocks:t}=kie;if(!Array.isArray(t))return{...e,children:t};const n=Ks(t,{isInnerBlocks:!0});return{...e,children:a.jsx(i0,{children:n})}}function Sie(e,t,n=[]){const o=M3(e);if(!o?.save)return null;let{save:r}=o;if(r.prototype instanceof x.Component){const i=new r({attributes:t});r=i.render.bind(i)}t8.blockType=o,t8.attributes=t,kie.innerBlocks=n;let s=r({attributes:t,innerBlocks:n});if(s!==null&&typeof s=="object"&&Xre("blocks.getSaveContent.extraProps")&&!(o.apiVersion>1)){const i=gr("blocks.getSaveContent.extraProps",{...s.props},o,t);ds(i,s.props)||(s=x.cloneElement(s,i))}return gr("blocks.getSaveElement",s,o,t)}function Gf(e,t,n){const o=M3(e);return M1(Sie(o,t,n))}function BPe(e,t){var n;return Object.entries((n=e.attributes)!==null&&n!==void 0?n:{}).reduce((o,[r,s])=>{const i=t[r];return i===void 0||s.source!==void 0||s.role==="local"?o:s.__experimentalRole==="local"?(Ke("__experimentalRole attribute",{since:"6.7",version:"6.8",alternative:"role attribute",hint:`Check the block.json of the ${e?.name} block.`}),o):("default"in s&&JSON.stringify(s.default)===JSON.stringify(i)||(o[r]=i),o)},{})}function LPe(e){return JSON.stringify(e).replace(/--/g,"\\u002d\\u002d").replace(/</g,"\\u003c").replace(/>/g,"\\u003e").replace(/&/g,"\\u0026").replace(/\\"/g,"\\u0022")}function ew(e){let t=e.originalContent;if(e.isValid||e.innerBlocks.length)try{t=Gf(e.name,e.attributes,e.innerBlocks)}catch{}return t}function Cie(e,t,n){const o=t&&Object.entries(t).length?LPe(t)+" ":"",r=e?.startsWith("core/")?e.slice(5):e;return n?`<!-- wp:${r} ${o}--> +`).trim();return n?Cie(o,r,l):l}function Y4(e){const t="wp-block-"+e.replace(/\//,"-").replace(/^core-/,"");return gr("blocks.getBlockDefaultClassName",t,e)}function DB(e){const t="editor-block-list-item-"+e.replace(/\//,"-").replace(/^core-/,"");return gr("blocks.getBlockMenuDefaultClassName",t,e)}const e8={},kie={};function Z4(e={}){const{blockType:t,attributes:n}=e8;return Z4.skipFilters?e:gr("blocks.getSaveContent.extraProps",{...e},t,n)}function WPe(e={}){const{innerBlocks:t}=kie;if(!Array.isArray(t))return{...e,children:t};const n=Ks(t,{isInnerBlocks:!0});return{...e,children:a.jsx(i0,{children:n})}}function Sie(e,t,n=[]){const o=M3(e);if(!o?.save)return null;let{save:r}=o;if(r.prototype instanceof x.Component){const i=new r({attributes:t});r=i.render.bind(i)}e8.blockType=o,e8.attributes=t,kie.innerBlocks=n;let s=r({attributes:t,innerBlocks:n});if(s!==null&&typeof s=="object"&&Xre("blocks.getSaveContent.extraProps")&&!(o.apiVersion>1)){const i=gr("blocks.getSaveContent.extraProps",{...s.props},o,t);ds(i,s.props)||(s=x.cloneElement(s,i))}return gr("blocks.getSaveElement",s,o,t)}function Gf(e,t,n){const o=M3(e);return M1(Sie(o,t,n))}function NPe(e,t){var n;return Object.entries((n=e.attributes)!==null&&n!==void 0?n:{}).reduce((o,[r,s])=>{const i=t[r];return i===void 0||s.source!==void 0||s.role==="local"?o:s.__experimentalRole==="local"?(Ke("__experimentalRole attribute",{since:"6.7",version:"6.8",alternative:"role attribute",hint:`Check the block.json of the ${e?.name} block.`}),o):("default"in s&&JSON.stringify(s.default)===JSON.stringify(i)||(o[r]=i),o)},{})}function BPe(e){return JSON.stringify(e).replace(/--/g,"\\u002d\\u002d").replace(/</g,"\\u003c").replace(/>/g,"\\u003e").replace(/&/g,"\\u0026").replace(/\\"/g,"\\u0022")}function J5(e){let t=e.originalContent;if(e.isValid||e.innerBlocks.length)try{t=Gf(e.name,e.attributes,e.innerBlocks)}catch{}return t}function Cie(e,t,n){const o=t&&Object.entries(t).length?BPe(t)+" ":"",r=e?.startsWith("core/")?e.slice(5):e;return n?`<!-- wp:${r} ${o}--> `+n+` -<!-- /wp:${r} -->`:`<!-- wp:${r} ${o}/-->`}function PPe(e,{isInnerBlocks:t=!1}={}){if(!e.isValid&&e.__unstableBlockSource)return ez(e.__unstableBlockSource);const n=e.name,o=ew(e);if(n===g3()||!t&&n===yd())return o;const r=on(n);if(!r)return o;const s=BPe(r,e.attributes);return Cie(n,s,o)}function Jd(e){e.length===1&&Wl(e[0])&&(e=[]);let t=Ks(e);return e.length===1&&e[0].name===yd()&&e[0].name==="core/freeform"&&(t=_ie(t)),t}function Ks(e,t){return(Array.isArray(e)?e:[e]).map(o=>PPe(o,t)).join(` +<!-- /wp:${r} -->`:`<!-- wp:${r} ${o}/-->`}function LPe(e,{isInnerBlocks:t=!1}={}){if(!e.isValid&&e.__unstableBlockSource)return ez(e.__unstableBlockSource);const n=e.name,o=J5(e);if(n===g3()||!t&&n===yd())return o;const r=on(n);if(!r)return o;const s=NPe(r,e.attributes);return Cie(n,s,o)}function Jd(e){e.length===1&&El(e[0])&&(e=[]);let t=Ks(e);return e.length===1&&e[0].name===yd()&&e[0].name==="core/freeform"&&(t=_ie(t)),t}function Ks(e,t){return(Array.isArray(e)?e:[e]).map(o=>LPe(o,t)).join(` -`)}var jPe=/[\t\n\f ]/,IPe=/[A-Za-z]/,DPe=/\r\n?/g;function c1(e){return jPe.test(e)}function uX(e){return IPe.test(e)}function FPe(e){return e.replace(DPe,` -`)}var $Pe=function(){function e(t,n,o){o===void 0&&(o="precompile"),this.delegate=t,this.entityParser=n,this.mode=o,this.state="beforeData",this.line=-1,this.column=-1,this.input="",this.index=-1,this.tagNameBuffer="",this.states={beforeData:function(){var r=this.peek();if(r==="<"&&!this.isIgnoredEndTag())this.transitionTo("tagOpen"),this.markTagStart(),this.consume();else{if(this.mode==="precompile"&&r===` -`){var s=this.tagNameBuffer.toLowerCase();(s==="pre"||s==="textarea")&&this.consume()}this.transitionTo("data"),this.delegate.beginData()}},data:function(){var r=this.peek(),s=this.tagNameBuffer;r==="<"&&!this.isIgnoredEndTag()?(this.delegate.finishData(),this.transitionTo("tagOpen"),this.markTagStart(),this.consume()):r==="&"&&s!=="script"&&s!=="style"?(this.consume(),this.delegate.appendToData(this.consumeCharRef()||"&")):(this.consume(),this.delegate.appendToData(r))},tagOpen:function(){var r=this.consume();r==="!"?this.transitionTo("markupDeclarationOpen"):r==="/"?this.transitionTo("endTagOpen"):(r==="@"||r===":"||uX(r))&&(this.transitionTo("tagName"),this.tagNameBuffer="",this.delegate.beginStartTag(),this.appendToTagName(r))},markupDeclarationOpen:function(){var r=this.consume();if(r==="-"&&this.peek()==="-")this.consume(),this.transitionTo("commentStart"),this.delegate.beginComment();else{var s=r.toUpperCase()+this.input.substring(this.index,this.index+6).toUpperCase();s==="DOCTYPE"&&(this.consume(),this.consume(),this.consume(),this.consume(),this.consume(),this.consume(),this.transitionTo("doctype"),this.delegate.beginDoctype&&this.delegate.beginDoctype())}},doctype:function(){var r=this.consume();c1(r)&&this.transitionTo("beforeDoctypeName")},beforeDoctypeName:function(){var r=this.consume();c1(r)||(this.transitionTo("doctypeName"),this.delegate.appendToDoctypeName&&this.delegate.appendToDoctypeName(r.toLowerCase()))},doctypeName:function(){var r=this.consume();c1(r)?this.transitionTo("afterDoctypeName"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypeName&&this.delegate.appendToDoctypeName(r.toLowerCase())},afterDoctypeName:function(){var r=this.consume();if(!c1(r))if(r===">")this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData");else{var s=r.toUpperCase()+this.input.substring(this.index,this.index+5).toUpperCase(),i=s.toUpperCase()==="PUBLIC",c=s.toUpperCase()==="SYSTEM";(i||c)&&(this.consume(),this.consume(),this.consume(),this.consume(),this.consume(),this.consume()),i?this.transitionTo("afterDoctypePublicKeyword"):c&&this.transitionTo("afterDoctypeSystemKeyword")}},afterDoctypePublicKeyword:function(){var r=this.peek();c1(r)?(this.transitionTo("beforeDoctypePublicIdentifier"),this.consume()):r==='"'?(this.transitionTo("doctypePublicIdentifierDoubleQuoted"),this.consume()):r==="'"?(this.transitionTo("doctypePublicIdentifierSingleQuoted"),this.consume()):r===">"&&(this.consume(),this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData"))},doctypePublicIdentifierDoubleQuoted:function(){var r=this.consume();r==='"'?this.transitionTo("afterDoctypePublicIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypePublicIdentifier&&this.delegate.appendToDoctypePublicIdentifier(r)},doctypePublicIdentifierSingleQuoted:function(){var r=this.consume();r==="'"?this.transitionTo("afterDoctypePublicIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypePublicIdentifier&&this.delegate.appendToDoctypePublicIdentifier(r)},afterDoctypePublicIdentifier:function(){var r=this.consume();c1(r)?this.transitionTo("betweenDoctypePublicAndSystemIdentifiers"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):r==='"'?this.transitionTo("doctypeSystemIdentifierDoubleQuoted"):r==="'"&&this.transitionTo("doctypeSystemIdentifierSingleQuoted")},betweenDoctypePublicAndSystemIdentifiers:function(){var r=this.consume();c1(r)||(r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):r==='"'?this.transitionTo("doctypeSystemIdentifierDoubleQuoted"):r==="'"&&this.transitionTo("doctypeSystemIdentifierSingleQuoted"))},doctypeSystemIdentifierDoubleQuoted:function(){var r=this.consume();r==='"'?this.transitionTo("afterDoctypeSystemIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypeSystemIdentifier&&this.delegate.appendToDoctypeSystemIdentifier(r)},doctypeSystemIdentifierSingleQuoted:function(){var r=this.consume();r==="'"?this.transitionTo("afterDoctypeSystemIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypeSystemIdentifier&&this.delegate.appendToDoctypeSystemIdentifier(r)},afterDoctypeSystemIdentifier:function(){var r=this.consume();c1(r)||r===">"&&(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData"))},commentStart:function(){var r=this.consume();r==="-"?this.transitionTo("commentStartDash"):r===">"?(this.delegate.finishComment(),this.transitionTo("beforeData")):(this.delegate.appendToCommentData(r),this.transitionTo("comment"))},commentStartDash:function(){var r=this.consume();r==="-"?this.transitionTo("commentEnd"):r===">"?(this.delegate.finishComment(),this.transitionTo("beforeData")):(this.delegate.appendToCommentData("-"),this.transitionTo("comment"))},comment:function(){var r=this.consume();r==="-"?this.transitionTo("commentEndDash"):this.delegate.appendToCommentData(r)},commentEndDash:function(){var r=this.consume();r==="-"?this.transitionTo("commentEnd"):(this.delegate.appendToCommentData("-"+r),this.transitionTo("comment"))},commentEnd:function(){var r=this.consume();r===">"?(this.delegate.finishComment(),this.transitionTo("beforeData")):(this.delegate.appendToCommentData("--"+r),this.transitionTo("comment"))},tagName:function(){var r=this.consume();c1(r)?this.transitionTo("beforeAttributeName"):r==="/"?this.transitionTo("selfClosingStartTag"):r===">"?(this.delegate.finishTag(),this.transitionTo("beforeData")):this.appendToTagName(r)},endTagName:function(){var r=this.consume();c1(r)?(this.transitionTo("beforeAttributeName"),this.tagNameBuffer=""):r==="/"?(this.transitionTo("selfClosingStartTag"),this.tagNameBuffer=""):r===">"?(this.delegate.finishTag(),this.transitionTo("beforeData"),this.tagNameBuffer=""):this.appendToTagName(r)},beforeAttributeName:function(){var r=this.peek();if(c1(r)){this.consume();return}else r==="/"?(this.transitionTo("selfClosingStartTag"),this.consume()):r===">"?(this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):r==="="?(this.delegate.reportSyntaxError("attribute name cannot start with equals sign"),this.transitionTo("attributeName"),this.delegate.beginAttribute(),this.consume(),this.delegate.appendToAttributeName(r)):(this.transitionTo("attributeName"),this.delegate.beginAttribute())},attributeName:function(){var r=this.peek();c1(r)?(this.transitionTo("afterAttributeName"),this.consume()):r==="/"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("selfClosingStartTag")):r==="="?(this.transitionTo("beforeAttributeValue"),this.consume()):r===">"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):r==='"'||r==="'"||r==="<"?(this.delegate.reportSyntaxError(r+" is not a valid character within attribute names"),this.consume(),this.delegate.appendToAttributeName(r)):(this.consume(),this.delegate.appendToAttributeName(r))},afterAttributeName:function(){var r=this.peek();if(c1(r)){this.consume();return}else r==="/"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("selfClosingStartTag")):r==="="?(this.consume(),this.transitionTo("beforeAttributeValue")):r===">"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.transitionTo("attributeName"),this.delegate.beginAttribute(),this.consume(),this.delegate.appendToAttributeName(r))},beforeAttributeValue:function(){var r=this.peek();c1(r)?this.consume():r==='"'?(this.transitionTo("attributeValueDoubleQuoted"),this.delegate.beginAttributeValue(!0),this.consume()):r==="'"?(this.transitionTo("attributeValueSingleQuoted"),this.delegate.beginAttributeValue(!0),this.consume()):r===">"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):(this.transitionTo("attributeValueUnquoted"),this.delegate.beginAttributeValue(!1),this.consume(),this.delegate.appendToAttributeValue(r))},attributeValueDoubleQuoted:function(){var r=this.consume();r==='"'?(this.delegate.finishAttributeValue(),this.transitionTo("afterAttributeValueQuoted")):r==="&"?this.delegate.appendToAttributeValue(this.consumeCharRef()||"&"):this.delegate.appendToAttributeValue(r)},attributeValueSingleQuoted:function(){var r=this.consume();r==="'"?(this.delegate.finishAttributeValue(),this.transitionTo("afterAttributeValueQuoted")):r==="&"?this.delegate.appendToAttributeValue(this.consumeCharRef()||"&"):this.delegate.appendToAttributeValue(r)},attributeValueUnquoted:function(){var r=this.peek();c1(r)?(this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("beforeAttributeName")):r==="/"?(this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("selfClosingStartTag")):r==="&"?(this.consume(),this.delegate.appendToAttributeValue(this.consumeCharRef()||"&")):r===">"?(this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):(this.consume(),this.delegate.appendToAttributeValue(r))},afterAttributeValueQuoted:function(){var r=this.peek();c1(r)?(this.consume(),this.transitionTo("beforeAttributeName")):r==="/"?(this.consume(),this.transitionTo("selfClosingStartTag")):r===">"?(this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):this.transitionTo("beforeAttributeName")},selfClosingStartTag:function(){var r=this.peek();r===">"?(this.consume(),this.delegate.markTagAsSelfClosing(),this.delegate.finishTag(),this.transitionTo("beforeData")):this.transitionTo("beforeAttributeName")},endTagOpen:function(){var r=this.consume();(r==="@"||r===":"||uX(r))&&(this.transitionTo("endTagName"),this.tagNameBuffer="",this.delegate.beginEndTag(),this.appendToTagName(r))}},this.reset()}return e.prototype.reset=function(){this.transitionTo("beforeData"),this.input="",this.tagNameBuffer="",this.index=0,this.line=1,this.column=0,this.delegate.reset()},e.prototype.transitionTo=function(t){this.state=t},e.prototype.tokenize=function(t){this.reset(),this.tokenizePart(t),this.tokenizeEOF()},e.prototype.tokenizePart=function(t){for(this.input+=FPe(t);this.index<this.input.length;){var n=this.states[this.state];if(n!==void 0)n.call(this);else throw new Error("unhandled state "+this.state)}},e.prototype.tokenizeEOF=function(){this.flushData()},e.prototype.flushData=function(){this.state==="data"&&(this.delegate.finishData(),this.transitionTo("beforeData"))},e.prototype.peek=function(){return this.input.charAt(this.index)},e.prototype.consume=function(){var t=this.peek();return this.index++,t===` -`?(this.line++,this.column=0):this.column++,t},e.prototype.consumeCharRef=function(){var t=this.input.indexOf(";",this.index);if(t!==-1){var n=this.input.slice(this.index,t),o=this.entityParser.parse(n);if(o){for(var r=n.length;r;)this.consume(),r--;return this.consume(),o}}},e.prototype.markTagStart=function(){this.delegate.tagOpen()},e.prototype.appendToTagName=function(t){this.tagNameBuffer+=t,this.delegate.appendToTagName(t)},e.prototype.isIgnoredEndTag=function(){var t=this.tagNameBuffer;return t==="title"&&this.input.substring(this.index,this.index+8)!=="</title>"||t==="style"&&this.input.substring(this.index,this.index+8)!=="</style>"||t==="script"&&this.input.substring(this.index,this.index+9)!=="<\/script>"},e}(),VPe=function(){function e(t,n){n===void 0&&(n={}),this.options=n,this.token=null,this.startLine=1,this.startColumn=0,this.tokens=[],this.tokenizer=new $Pe(this,t,n.mode),this._currentAttribute=void 0}return e.prototype.tokenize=function(t){return this.tokens=[],this.tokenizer.tokenize(t),this.tokens},e.prototype.tokenizePart=function(t){return this.tokens=[],this.tokenizer.tokenizePart(t),this.tokens},e.prototype.tokenizeEOF=function(){return this.tokens=[],this.tokenizer.tokenizeEOF(),this.tokens[0]},e.prototype.reset=function(){this.token=null,this.startLine=1,this.startColumn=0},e.prototype.current=function(){var t=this.token;if(t===null)throw new Error("token was unexpectedly null");if(arguments.length===0)return t;for(var n=0;n<arguments.length;n++)if(t.type===arguments[n])return t;throw new Error("token type was unexpectedly "+t.type)},e.prototype.push=function(t){this.token=t,this.tokens.push(t)},e.prototype.currentAttribute=function(){return this._currentAttribute},e.prototype.addLocInfo=function(){this.options.loc&&(this.current().loc={start:{line:this.startLine,column:this.startColumn},end:{line:this.tokenizer.line,column:this.tokenizer.column}}),this.startLine=this.tokenizer.line,this.startColumn=this.tokenizer.column},e.prototype.beginDoctype=function(){this.push({type:"Doctype",name:""})},e.prototype.appendToDoctypeName=function(t){this.current("Doctype").name+=t},e.prototype.appendToDoctypePublicIdentifier=function(t){var n=this.current("Doctype");n.publicIdentifier===void 0?n.publicIdentifier=t:n.publicIdentifier+=t},e.prototype.appendToDoctypeSystemIdentifier=function(t){var n=this.current("Doctype");n.systemIdentifier===void 0?n.systemIdentifier=t:n.systemIdentifier+=t},e.prototype.endDoctype=function(){this.addLocInfo()},e.prototype.beginData=function(){this.push({type:"Chars",chars:""})},e.prototype.appendToData=function(t){this.current("Chars").chars+=t},e.prototype.finishData=function(){this.addLocInfo()},e.prototype.beginComment=function(){this.push({type:"Comment",chars:""})},e.prototype.appendToCommentData=function(t){this.current("Comment").chars+=t},e.prototype.finishComment=function(){this.addLocInfo()},e.prototype.tagOpen=function(){},e.prototype.beginStartTag=function(){this.push({type:"StartTag",tagName:"",attributes:[],selfClosing:!1})},e.prototype.beginEndTag=function(){this.push({type:"EndTag",tagName:""})},e.prototype.finishTag=function(){this.addLocInfo()},e.prototype.markTagAsSelfClosing=function(){this.current("StartTag").selfClosing=!0},e.prototype.appendToTagName=function(t){this.current("StartTag","EndTag").tagName+=t},e.prototype.beginAttribute=function(){this._currentAttribute=["","",!1]},e.prototype.appendToAttributeName=function(t){this.currentAttribute()[0]+=t},e.prototype.beginAttributeValue=function(t){this.currentAttribute()[2]=t},e.prototype.appendToAttributeValue=function(t){this.currentAttribute()[1]+=t},e.prototype.finishAttributeValue=function(){this.current("StartTag").attributes.push(this._currentAttribute)},e.prototype.reportSyntaxError=function(t){this.current().syntaxError=t},e}();function Uh(){function e(t){return(o,...r)=>t("Block validation: "+o,...r)}return{error:e(console.error),warning:e(console.warn),getItems(){return[]}}}function HPe(){const e=[],t=Uh();return{error(...n){e.push({log:t.error,args:n})},warning(...n){e.push({log:t.warning,args:n})},getItems(){return e}}}const UPe=e=>e,XPe=/[\t\n\r\v\f ]+/g,GPe=/^[\t\n\r\v\f ]*$/,KPe=/^url\s*\(['"\s]*(.*?)['"\s]*\)$/,qie=["allowfullscreen","allowpaymentrequest","allowusermedia","async","autofocus","autoplay","checked","controls","default","defer","disabled","download","formnovalidate","hidden","ismap","itemscope","loop","multiple","muted","nomodule","novalidate","open","playsinline","readonly","required","reversed","selected","typemustmatch"],YPe=["autocapitalize","autocomplete","charset","contenteditable","crossorigin","decoding","dir","draggable","enctype","formenctype","formmethod","http-equiv","inputmode","kind","method","preload","scope","shape","spellcheck","translate","type","wrap"],ZPe=[...qie,...YPe],dX=[UPe,oje],QPe=/^[\da-z]+$/i,JPe=/^#\d+$/,eje=/^#x[\da-f]+$/i;function tje(e){return QPe.test(e)||JPe.test(e)||eje.test(e)}class nje{parse(t){if(tje(t))return Lt("&"+t+";")}}function $B(e){return e.trim().split(XPe)}function oje(e){return $B(e).join(" ")}function rje(e){return e.attributes.filter(t=>{const[n,o]=t;return o||n.indexOf("data-")===0||ZPe.includes(n)})}function pX(e,t,n=Uh()){let o=e.chars,r=t.chars;for(let s=0;s<dX.length;s++){const i=dX[s];if(o=i(o),r=i(r),o===r)return!0}return n.warning("Expected text `%s`, saw `%s`.",t.chars,e.chars),!1}function sje(e){return parseFloat(e)===0?"0":e.indexOf(".")===0?"0"+e:e}function ije(e){return $B(e).map(sje).join(" ").replace(KPe,"url($1)")}function aje(e){const t=e.replace(/;?\s*$/,"").split(";").map(n=>{const[o,...r]=n.split(":"),s=r.join(":");return[o.trim(),ije(s.trim())]});return Object.fromEntries(t)}const cje={class:(e,t)=>{const[n,o]=[e,t].map($B),r=n.filter(i=>!o.includes(i)),s=o.filter(i=>!n.includes(i));return r.length===0&&s.length===0},style:(e,t)=>N0(...[e,t].map(aje)),...Object.fromEntries(qie.map(e=>[e,()=>!0]))};function lje(e,t,n=Uh()){if(e.length!==t.length)return n.warning("Expected attributes %o, instead saw %o.",t,e),!1;const o={};for(let r=0;r<t.length;r++)o[t[r][0].toLowerCase()]=t[r][1];for(let r=0;r<e.length;r++){const[s,i]=e[r],c=s.toLowerCase();if(!o.hasOwnProperty(c))return n.warning("Encountered unexpected attribute `%s`.",s),!1;const l=o[c],u=cje[c];if(u){if(!u(i,l))return n.warning("Expected attribute `%s` of value `%s`, saw `%s`.",s,l,i),!1}else if(i!==l)return n.warning("Expected attribute `%s` of value `%s`, saw `%s`.",s,l,i),!1}return!0}const uje={StartTag:(e,t,n=Uh())=>e.tagName!==t.tagName&&e.tagName.toLowerCase()!==t.tagName.toLowerCase()?(n.warning("Expected tag name `%s`, instead saw `%s`.",t.tagName,e.tagName),!1):lje(...[e,t].map(rje),n),Chars:pX,Comment:pX};function xg(e){let t;for(;t=e.shift();)if(t.type!=="Chars"||!GPe.test(t.chars))return t}function dje(e,t=Uh()){try{return new VPe(new nje).tokenize(e)}catch{t.warning("Malformed HTML detected: %s",e)}return null}function fX(e,t){return e.selfClosing?!!(t&&t.tagName===e.tagName&&t.type==="EndTag"):!1}function pje(e,t,n=Uh()){if(e===t)return!0;const[o,r]=[e,t].map(c=>dje(c,n));if(!o||!r)return!1;let s,i;for(;s=xg(o);){if(i=xg(r),!i)return n.warning("Expected end of content, instead saw %o.",s),!1;if(s.type!==i.type)return n.warning("Expected token of type `%s` (%o), instead saw `%s` (%o).",i.type,i,s.type,s),!1;const c=uje[s.type];if(c&&!c(s,i,n))return!1;fX(s,r[0])?xg(r):fX(i,o[0])&&xg(o)}return(i=xg(r))?(n.warning("Expected %o, instead saw end of content.",i),!1):!0}function tz(e,t=e.name){if(e.name===yd()||e.name===g3())return[!0,[]];const o=HPe(),r=M3(t);let s;try{s=Gf(r,e.attributes)}catch(c){return o.error(`Block validation failed because an error occurred while generating block content: +`)}var PPe=/[\t\n\f ]/,jPe=/[A-Za-z]/,IPe=/\r\n?/g;function c1(e){return PPe.test(e)}function uX(e){return jPe.test(e)}function DPe(e){return e.replace(IPe,` +`)}var FPe=function(){function e(t,n,o){o===void 0&&(o="precompile"),this.delegate=t,this.entityParser=n,this.mode=o,this.state="beforeData",this.line=-1,this.column=-1,this.input="",this.index=-1,this.tagNameBuffer="",this.states={beforeData:function(){var r=this.peek();if(r==="<"&&!this.isIgnoredEndTag())this.transitionTo("tagOpen"),this.markTagStart(),this.consume();else{if(this.mode==="precompile"&&r===` +`){var s=this.tagNameBuffer.toLowerCase();(s==="pre"||s==="textarea")&&this.consume()}this.transitionTo("data"),this.delegate.beginData()}},data:function(){var r=this.peek(),s=this.tagNameBuffer;r==="<"&&!this.isIgnoredEndTag()?(this.delegate.finishData(),this.transitionTo("tagOpen"),this.markTagStart(),this.consume()):r==="&"&&s!=="script"&&s!=="style"?(this.consume(),this.delegate.appendToData(this.consumeCharRef()||"&")):(this.consume(),this.delegate.appendToData(r))},tagOpen:function(){var r=this.consume();r==="!"?this.transitionTo("markupDeclarationOpen"):r==="/"?this.transitionTo("endTagOpen"):(r==="@"||r===":"||uX(r))&&(this.transitionTo("tagName"),this.tagNameBuffer="",this.delegate.beginStartTag(),this.appendToTagName(r))},markupDeclarationOpen:function(){var r=this.consume();if(r==="-"&&this.peek()==="-")this.consume(),this.transitionTo("commentStart"),this.delegate.beginComment();else{var s=r.toUpperCase()+this.input.substring(this.index,this.index+6).toUpperCase();s==="DOCTYPE"&&(this.consume(),this.consume(),this.consume(),this.consume(),this.consume(),this.consume(),this.transitionTo("doctype"),this.delegate.beginDoctype&&this.delegate.beginDoctype())}},doctype:function(){var r=this.consume();c1(r)&&this.transitionTo("beforeDoctypeName")},beforeDoctypeName:function(){var r=this.consume();c1(r)||(this.transitionTo("doctypeName"),this.delegate.appendToDoctypeName&&this.delegate.appendToDoctypeName(r.toLowerCase()))},doctypeName:function(){var r=this.consume();c1(r)?this.transitionTo("afterDoctypeName"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypeName&&this.delegate.appendToDoctypeName(r.toLowerCase())},afterDoctypeName:function(){var r=this.consume();if(!c1(r))if(r===">")this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData");else{var s=r.toUpperCase()+this.input.substring(this.index,this.index+5).toUpperCase(),i=s.toUpperCase()==="PUBLIC",c=s.toUpperCase()==="SYSTEM";(i||c)&&(this.consume(),this.consume(),this.consume(),this.consume(),this.consume(),this.consume()),i?this.transitionTo("afterDoctypePublicKeyword"):c&&this.transitionTo("afterDoctypeSystemKeyword")}},afterDoctypePublicKeyword:function(){var r=this.peek();c1(r)?(this.transitionTo("beforeDoctypePublicIdentifier"),this.consume()):r==='"'?(this.transitionTo("doctypePublicIdentifierDoubleQuoted"),this.consume()):r==="'"?(this.transitionTo("doctypePublicIdentifierSingleQuoted"),this.consume()):r===">"&&(this.consume(),this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData"))},doctypePublicIdentifierDoubleQuoted:function(){var r=this.consume();r==='"'?this.transitionTo("afterDoctypePublicIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypePublicIdentifier&&this.delegate.appendToDoctypePublicIdentifier(r)},doctypePublicIdentifierSingleQuoted:function(){var r=this.consume();r==="'"?this.transitionTo("afterDoctypePublicIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypePublicIdentifier&&this.delegate.appendToDoctypePublicIdentifier(r)},afterDoctypePublicIdentifier:function(){var r=this.consume();c1(r)?this.transitionTo("betweenDoctypePublicAndSystemIdentifiers"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):r==='"'?this.transitionTo("doctypeSystemIdentifierDoubleQuoted"):r==="'"&&this.transitionTo("doctypeSystemIdentifierSingleQuoted")},betweenDoctypePublicAndSystemIdentifiers:function(){var r=this.consume();c1(r)||(r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):r==='"'?this.transitionTo("doctypeSystemIdentifierDoubleQuoted"):r==="'"&&this.transitionTo("doctypeSystemIdentifierSingleQuoted"))},doctypeSystemIdentifierDoubleQuoted:function(){var r=this.consume();r==='"'?this.transitionTo("afterDoctypeSystemIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypeSystemIdentifier&&this.delegate.appendToDoctypeSystemIdentifier(r)},doctypeSystemIdentifierSingleQuoted:function(){var r=this.consume();r==="'"?this.transitionTo("afterDoctypeSystemIdentifier"):r===">"?(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData")):this.delegate.appendToDoctypeSystemIdentifier&&this.delegate.appendToDoctypeSystemIdentifier(r)},afterDoctypeSystemIdentifier:function(){var r=this.consume();c1(r)||r===">"&&(this.delegate.endDoctype&&this.delegate.endDoctype(),this.transitionTo("beforeData"))},commentStart:function(){var r=this.consume();r==="-"?this.transitionTo("commentStartDash"):r===">"?(this.delegate.finishComment(),this.transitionTo("beforeData")):(this.delegate.appendToCommentData(r),this.transitionTo("comment"))},commentStartDash:function(){var r=this.consume();r==="-"?this.transitionTo("commentEnd"):r===">"?(this.delegate.finishComment(),this.transitionTo("beforeData")):(this.delegate.appendToCommentData("-"),this.transitionTo("comment"))},comment:function(){var r=this.consume();r==="-"?this.transitionTo("commentEndDash"):this.delegate.appendToCommentData(r)},commentEndDash:function(){var r=this.consume();r==="-"?this.transitionTo("commentEnd"):(this.delegate.appendToCommentData("-"+r),this.transitionTo("comment"))},commentEnd:function(){var r=this.consume();r===">"?(this.delegate.finishComment(),this.transitionTo("beforeData")):(this.delegate.appendToCommentData("--"+r),this.transitionTo("comment"))},tagName:function(){var r=this.consume();c1(r)?this.transitionTo("beforeAttributeName"):r==="/"?this.transitionTo("selfClosingStartTag"):r===">"?(this.delegate.finishTag(),this.transitionTo("beforeData")):this.appendToTagName(r)},endTagName:function(){var r=this.consume();c1(r)?(this.transitionTo("beforeAttributeName"),this.tagNameBuffer=""):r==="/"?(this.transitionTo("selfClosingStartTag"),this.tagNameBuffer=""):r===">"?(this.delegate.finishTag(),this.transitionTo("beforeData"),this.tagNameBuffer=""):this.appendToTagName(r)},beforeAttributeName:function(){var r=this.peek();if(c1(r)){this.consume();return}else r==="/"?(this.transitionTo("selfClosingStartTag"),this.consume()):r===">"?(this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):r==="="?(this.delegate.reportSyntaxError("attribute name cannot start with equals sign"),this.transitionTo("attributeName"),this.delegate.beginAttribute(),this.consume(),this.delegate.appendToAttributeName(r)):(this.transitionTo("attributeName"),this.delegate.beginAttribute())},attributeName:function(){var r=this.peek();c1(r)?(this.transitionTo("afterAttributeName"),this.consume()):r==="/"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("selfClosingStartTag")):r==="="?(this.transitionTo("beforeAttributeValue"),this.consume()):r===">"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):r==='"'||r==="'"||r==="<"?(this.delegate.reportSyntaxError(r+" is not a valid character within attribute names"),this.consume(),this.delegate.appendToAttributeName(r)):(this.consume(),this.delegate.appendToAttributeName(r))},afterAttributeName:function(){var r=this.peek();if(c1(r)){this.consume();return}else r==="/"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("selfClosingStartTag")):r==="="?(this.consume(),this.transitionTo("beforeAttributeValue")):r===">"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.transitionTo("attributeName"),this.delegate.beginAttribute(),this.consume(),this.delegate.appendToAttributeName(r))},beforeAttributeValue:function(){var r=this.peek();c1(r)?this.consume():r==='"'?(this.transitionTo("attributeValueDoubleQuoted"),this.delegate.beginAttributeValue(!0),this.consume()):r==="'"?(this.transitionTo("attributeValueSingleQuoted"),this.delegate.beginAttributeValue(!0),this.consume()):r===">"?(this.delegate.beginAttributeValue(!1),this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):(this.transitionTo("attributeValueUnquoted"),this.delegate.beginAttributeValue(!1),this.consume(),this.delegate.appendToAttributeValue(r))},attributeValueDoubleQuoted:function(){var r=this.consume();r==='"'?(this.delegate.finishAttributeValue(),this.transitionTo("afterAttributeValueQuoted")):r==="&"?this.delegate.appendToAttributeValue(this.consumeCharRef()||"&"):this.delegate.appendToAttributeValue(r)},attributeValueSingleQuoted:function(){var r=this.consume();r==="'"?(this.delegate.finishAttributeValue(),this.transitionTo("afterAttributeValueQuoted")):r==="&"?this.delegate.appendToAttributeValue(this.consumeCharRef()||"&"):this.delegate.appendToAttributeValue(r)},attributeValueUnquoted:function(){var r=this.peek();c1(r)?(this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("beforeAttributeName")):r==="/"?(this.delegate.finishAttributeValue(),this.consume(),this.transitionTo("selfClosingStartTag")):r==="&"?(this.consume(),this.delegate.appendToAttributeValue(this.consumeCharRef()||"&")):r===">"?(this.delegate.finishAttributeValue(),this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):(this.consume(),this.delegate.appendToAttributeValue(r))},afterAttributeValueQuoted:function(){var r=this.peek();c1(r)?(this.consume(),this.transitionTo("beforeAttributeName")):r==="/"?(this.consume(),this.transitionTo("selfClosingStartTag")):r===">"?(this.consume(),this.delegate.finishTag(),this.transitionTo("beforeData")):this.transitionTo("beforeAttributeName")},selfClosingStartTag:function(){var r=this.peek();r===">"?(this.consume(),this.delegate.markTagAsSelfClosing(),this.delegate.finishTag(),this.transitionTo("beforeData")):this.transitionTo("beforeAttributeName")},endTagOpen:function(){var r=this.consume();(r==="@"||r===":"||uX(r))&&(this.transitionTo("endTagName"),this.tagNameBuffer="",this.delegate.beginEndTag(),this.appendToTagName(r))}},this.reset()}return e.prototype.reset=function(){this.transitionTo("beforeData"),this.input="",this.tagNameBuffer="",this.index=0,this.line=1,this.column=0,this.delegate.reset()},e.prototype.transitionTo=function(t){this.state=t},e.prototype.tokenize=function(t){this.reset(),this.tokenizePart(t),this.tokenizeEOF()},e.prototype.tokenizePart=function(t){for(this.input+=DPe(t);this.index<this.input.length;){var n=this.states[this.state];if(n!==void 0)n.call(this);else throw new Error("unhandled state "+this.state)}},e.prototype.tokenizeEOF=function(){this.flushData()},e.prototype.flushData=function(){this.state==="data"&&(this.delegate.finishData(),this.transitionTo("beforeData"))},e.prototype.peek=function(){return this.input.charAt(this.index)},e.prototype.consume=function(){var t=this.peek();return this.index++,t===` +`?(this.line++,this.column=0):this.column++,t},e.prototype.consumeCharRef=function(){var t=this.input.indexOf(";",this.index);if(t!==-1){var n=this.input.slice(this.index,t),o=this.entityParser.parse(n);if(o){for(var r=n.length;r;)this.consume(),r--;return this.consume(),o}}},e.prototype.markTagStart=function(){this.delegate.tagOpen()},e.prototype.appendToTagName=function(t){this.tagNameBuffer+=t,this.delegate.appendToTagName(t)},e.prototype.isIgnoredEndTag=function(){var t=this.tagNameBuffer;return t==="title"&&this.input.substring(this.index,this.index+8)!=="</title>"||t==="style"&&this.input.substring(this.index,this.index+8)!=="</style>"||t==="script"&&this.input.substring(this.index,this.index+9)!=="<\/script>"},e}(),$Pe=function(){function e(t,n){n===void 0&&(n={}),this.options=n,this.token=null,this.startLine=1,this.startColumn=0,this.tokens=[],this.tokenizer=new FPe(this,t,n.mode),this._currentAttribute=void 0}return e.prototype.tokenize=function(t){return this.tokens=[],this.tokenizer.tokenize(t),this.tokens},e.prototype.tokenizePart=function(t){return this.tokens=[],this.tokenizer.tokenizePart(t),this.tokens},e.prototype.tokenizeEOF=function(){return this.tokens=[],this.tokenizer.tokenizeEOF(),this.tokens[0]},e.prototype.reset=function(){this.token=null,this.startLine=1,this.startColumn=0},e.prototype.current=function(){var t=this.token;if(t===null)throw new Error("token was unexpectedly null");if(arguments.length===0)return t;for(var n=0;n<arguments.length;n++)if(t.type===arguments[n])return t;throw new Error("token type was unexpectedly "+t.type)},e.prototype.push=function(t){this.token=t,this.tokens.push(t)},e.prototype.currentAttribute=function(){return this._currentAttribute},e.prototype.addLocInfo=function(){this.options.loc&&(this.current().loc={start:{line:this.startLine,column:this.startColumn},end:{line:this.tokenizer.line,column:this.tokenizer.column}}),this.startLine=this.tokenizer.line,this.startColumn=this.tokenizer.column},e.prototype.beginDoctype=function(){this.push({type:"Doctype",name:""})},e.prototype.appendToDoctypeName=function(t){this.current("Doctype").name+=t},e.prototype.appendToDoctypePublicIdentifier=function(t){var n=this.current("Doctype");n.publicIdentifier===void 0?n.publicIdentifier=t:n.publicIdentifier+=t},e.prototype.appendToDoctypeSystemIdentifier=function(t){var n=this.current("Doctype");n.systemIdentifier===void 0?n.systemIdentifier=t:n.systemIdentifier+=t},e.prototype.endDoctype=function(){this.addLocInfo()},e.prototype.beginData=function(){this.push({type:"Chars",chars:""})},e.prototype.appendToData=function(t){this.current("Chars").chars+=t},e.prototype.finishData=function(){this.addLocInfo()},e.prototype.beginComment=function(){this.push({type:"Comment",chars:""})},e.prototype.appendToCommentData=function(t){this.current("Comment").chars+=t},e.prototype.finishComment=function(){this.addLocInfo()},e.prototype.tagOpen=function(){},e.prototype.beginStartTag=function(){this.push({type:"StartTag",tagName:"",attributes:[],selfClosing:!1})},e.prototype.beginEndTag=function(){this.push({type:"EndTag",tagName:""})},e.prototype.finishTag=function(){this.addLocInfo()},e.prototype.markTagAsSelfClosing=function(){this.current("StartTag").selfClosing=!0},e.prototype.appendToTagName=function(t){this.current("StartTag","EndTag").tagName+=t},e.prototype.beginAttribute=function(){this._currentAttribute=["","",!1]},e.prototype.appendToAttributeName=function(t){this.currentAttribute()[0]+=t},e.prototype.beginAttributeValue=function(t){this.currentAttribute()[2]=t},e.prototype.appendToAttributeValue=function(t){this.currentAttribute()[1]+=t},e.prototype.finishAttributeValue=function(){this.current("StartTag").attributes.push(this._currentAttribute)},e.prototype.reportSyntaxError=function(t){this.current().syntaxError=t},e}();function Uh(){function e(t){return(o,...r)=>t("Block validation: "+o,...r)}return{error:e(console.error),warning:e(console.warn),getItems(){return[]}}}function VPe(){const e=[],t=Uh();return{error(...n){e.push({log:t.error,args:n})},warning(...n){e.push({log:t.warning,args:n})},getItems(){return e}}}const HPe=e=>e,UPe=/[\t\n\r\v\f ]+/g,XPe=/^[\t\n\r\v\f ]*$/,GPe=/^url\s*\(['"\s]*(.*?)['"\s]*\)$/,qie=["allowfullscreen","allowpaymentrequest","allowusermedia","async","autofocus","autoplay","checked","controls","default","defer","disabled","download","formnovalidate","hidden","ismap","itemscope","loop","multiple","muted","nomodule","novalidate","open","playsinline","readonly","required","reversed","selected","typemustmatch"],KPe=["autocapitalize","autocomplete","charset","contenteditable","crossorigin","decoding","dir","draggable","enctype","formenctype","formmethod","http-equiv","inputmode","kind","method","preload","scope","shape","spellcheck","translate","type","wrap"],YPe=[...qie,...KPe],dX=[HPe,nje],ZPe=/^[\da-z]+$/i,QPe=/^#\d+$/,JPe=/^#x[\da-f]+$/i;function eje(e){return ZPe.test(e)||QPe.test(e)||JPe.test(e)}class tje{parse(t){if(eje(t))return Lt("&"+t+";")}}function FB(e){return e.trim().split(UPe)}function nje(e){return FB(e).join(" ")}function oje(e){return e.attributes.filter(t=>{const[n,o]=t;return o||n.indexOf("data-")===0||YPe.includes(n)})}function pX(e,t,n=Uh()){let o=e.chars,r=t.chars;for(let s=0;s<dX.length;s++){const i=dX[s];if(o=i(o),r=i(r),o===r)return!0}return n.warning("Expected text `%s`, saw `%s`.",t.chars,e.chars),!1}function rje(e){return parseFloat(e)===0?"0":e.indexOf(".")===0?"0"+e:e}function sje(e){return FB(e).map(rje).join(" ").replace(GPe,"url($1)")}function ije(e){const t=e.replace(/;?\s*$/,"").split(";").map(n=>{const[o,...r]=n.split(":"),s=r.join(":");return[o.trim(),sje(s.trim())]});return Object.fromEntries(t)}const aje={class:(e,t)=>{const[n,o]=[e,t].map(FB),r=n.filter(i=>!o.includes(i)),s=o.filter(i=>!n.includes(i));return r.length===0&&s.length===0},style:(e,t)=>N0(...[e,t].map(ije)),...Object.fromEntries(qie.map(e=>[e,()=>!0]))};function cje(e,t,n=Uh()){if(e.length!==t.length)return n.warning("Expected attributes %o, instead saw %o.",t,e),!1;const o={};for(let r=0;r<t.length;r++)o[t[r][0].toLowerCase()]=t[r][1];for(let r=0;r<e.length;r++){const[s,i]=e[r],c=s.toLowerCase();if(!o.hasOwnProperty(c))return n.warning("Encountered unexpected attribute `%s`.",s),!1;const l=o[c],u=aje[c];if(u){if(!u(i,l))return n.warning("Expected attribute `%s` of value `%s`, saw `%s`.",s,l,i),!1}else if(i!==l)return n.warning("Expected attribute `%s` of value `%s`, saw `%s`.",s,l,i),!1}return!0}const lje={StartTag:(e,t,n=Uh())=>e.tagName!==t.tagName&&e.tagName.toLowerCase()!==t.tagName.toLowerCase()?(n.warning("Expected tag name `%s`, instead saw `%s`.",t.tagName,e.tagName),!1):cje(...[e,t].map(oje),n),Chars:pX,Comment:pX};function xg(e){let t;for(;t=e.shift();)if(t.type!=="Chars"||!XPe.test(t.chars))return t}function uje(e,t=Uh()){try{return new $Pe(new tje).tokenize(e)}catch{t.warning("Malformed HTML detected: %s",e)}return null}function fX(e,t){return e.selfClosing?!!(t&&t.tagName===e.tagName&&t.type==="EndTag"):!1}function dje(e,t,n=Uh()){if(e===t)return!0;const[o,r]=[e,t].map(c=>uje(c,n));if(!o||!r)return!1;let s,i;for(;s=xg(o);){if(i=xg(r),!i)return n.warning("Expected end of content, instead saw %o.",s),!1;if(s.type!==i.type)return n.warning("Expected token of type `%s` (%o), instead saw `%s` (%o).",i.type,i,s.type,s),!1;const c=lje[s.type];if(c&&!c(s,i,n))return!1;fX(s,r[0])?xg(r):fX(i,o[0])&&xg(o)}return(i=xg(r))?(n.warning("Expected %o, instead saw end of content.",i),!1):!0}function tz(e,t=e.name){if(e.name===yd()||e.name===g3())return[!0,[]];const o=VPe(),r=M3(t);let s;try{s=Gf(r,e.attributes)}catch(c){return o.error(`Block validation failed because an error occurred while generating block content: -%s`,c.toString()),[!1,o.getItems()]}const i=pje(e.originalContent,s,o);return i||o.error(`Block validation failed for \`%s\` (%o). +%s`,c.toString()),[!1,o.getItems()]}const i=dje(e.originalContent,s,o);return i||o.error(`Block validation failed for \`%s\` (%o). Content generated by \`save\` function: @@ -137,7 +137,7 @@ Content generated by \`save\` function: Content retrieved from post body: -%s`,r.name,r,s,e.originalContent),[i,o.getItems()]}function Rie(e,t){const n={...t};if(e==="core/cover-image"&&(e="core/cover"),(e==="core/text"||e==="core/cover-text")&&(e="core/paragraph"),e&&e.indexOf("core/social-link-")===0&&(n.service=e.substring(17),e="core/social-link"),e&&e.indexOf("core-embed/")===0){const o=e.substring(11),r={speaker:"speaker-deck",polldaddy:"crowdsignal"};n.providerNameSlug=o in r?r[o]:o,["amazon-kindle","wordpress"].includes(o)||(n.responsive=!0),e="core/embed"}if(e==="core/post-comment-author"&&(e="core/comment-author-name"),e==="core/post-comment-content"&&(e="core/comment-content"),e==="core/post-comment-date"&&(e="core/comment-date"),e==="core/comments-query-loop"){e="core/comments";const{className:o=""}=n;o.includes("wp-block-comments-query-loop")||(n.className=["wp-block-comments-query-loop",o].join(" "))}if(e==="core/post-comments"&&(e="core/comments",n.legacy=!0),t.layout?.type==="grid"&&typeof t.layout?.columnCount=="string"&&(n.layout={...n.layout,columnCount:parseInt(t.layout.columnCount,10)}),typeof t.style?.layout?.columnSpan=="string"){const o=parseInt(t.style.layout.columnSpan,10);n.style={...n.style,layout:{...n.style.layout,columnSpan:isNaN(o)?void 0:o}}}if(typeof t.style?.layout?.rowSpan=="string"){const o=parseInt(t.style.layout.rowSpan,10);n.style={...n.style,layout:{...n.style.layout,rowSpan:isNaN(o)?void 0:o}}}if(globalThis.IS_GUTENBERG_PLUGIN&&n.metadata?.bindings&&(e==="core/paragraph"||e==="core/heading"||e==="core/image"||e==="core/button")&&n.metadata.bindings.__default?.source!=="core/pattern-overrides"){const o=["content","url","title","id","alt","text","linkTarget"];let r=!1;o.forEach(s=>{n.metadata.bindings[s]?.source==="core/pattern-overrides"&&(r=!0,n.metadata={...n.metadata,bindings:{...n.metadata.bindings}},delete n.metadata.bindings[s])}),r&&(n.metadata.bindings.__default={source:"core/pattern-overrides"})}return[e,n]}function fje(e,t){for(var n=t.split("."),o;o=n.shift();){if(!(o in e))return;e=e[o]}return e}var bje=function(){var e;return function(){return e||(e=document.implementation.createHTMLDocument("")),e}}();function VB(e,t){if(t){if(typeof e=="string"){var n=bje();n.body.innerHTML=e,e=n.body}if(typeof t=="function")return t(e);if(Object===t.constructor)return Object.keys(t).reduce(function(o,r){var s=t[r];return o[r]=VB(e,s),o},{})}}function HB(e,t){var n,o;return arguments.length===1?(n=e,o=void 0):(n=t,o=e),function(r){var s=r;if(o&&(s=r.querySelector(o)),s)return fje(s,n)}}function hje(e,t){var n,o;return arguments.length===1?(n=e,o=void 0):(n=t,o=e),function(r){var s=HB(o,"attributes")(r);if(s&&Object.prototype.hasOwnProperty.call(s,n))return s[n].value}}function mje(e){return HB(e,"textContent")}function gje(e,t){return function(n){var o=n.querySelectorAll(e);return[].map.call(o,function(r){return VB(r,t)})}}function Mje(e){return Ke("wp.blocks.children.getChildrenArray",{since:"6.1",version:"6.3",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),e}function zje(...e){Ke("wp.blocks.children.concat",{since:"6.1",version:"6.3",alternative:"wp.richText.concat",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"});const t=[];for(let n=0;n<e.length;n++){const o=Array.isArray(e[n])?e[n]:[e[n]];for(let r=0;r<o.length;r++){const s=o[r];typeof s=="string"&&typeof t[t.length-1]=="string"?t[t.length-1]+=s:t.push(s)}}return t}function UB(e){Ke("wp.blocks.children.fromDOM",{since:"6.1",version:"6.3",alternative:"wp.richText.create",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"});const t=[];for(let n=0;n<e.length;n++)try{t.push(Eie(e[n]))}catch{}return t}function Oje(e){Ke("wp.blocks.children.toHTML",{since:"6.1",version:"6.3",alternative:"wp.richText.toHTMLString",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"});const t=e;return M1(t)}function Tie(e){return Ke("wp.blocks.children.matcher",{since:"6.1",version:"6.3",alternative:"html source",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),t=>{let n=t;return e&&(n=t.querySelector(e)),n?UB(n.childNodes):[]}}const n8={concat:zje,getChildrenArray:Mje,fromDOM:UB,toHTML:Oje,matcher:Tie};function yje(e){const t={};for(let n=0;n<e.length;n++){const{name:o,value:r}=e[n];t[o]=r}return t}function Eie(e){if(Ke("wp.blocks.node.fromDOM",{since:"6.1",version:"6.3",alternative:"wp.richText.create",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),e.nodeType===e.TEXT_NODE)return e.nodeValue;if(e.nodeType!==e.ELEMENT_NODE)throw new TypeError("A block node can only be created from a node of type text or element.");return{type:e.nodeName.toLowerCase(),props:{...yje(e.attributes),children:UB(e.childNodes)}}}function Aje(e){return Ke("wp.blocks.node.matcher",{since:"6.1",version:"6.3",alternative:"html source",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),t=>{let n=t;e&&(n=t.querySelector(e));try{return Eie(n)}catch{return null}}}function vje(e,t){return n=>{let o=n;if(e&&(o=n.querySelector(e)),!o)return"";if(t){let r="";const s=o.children.length;for(let i=0;i<s;i++){const c=o.children[i];c.nodeName.toLowerCase()===t&&(r+=c.outerHTML)}return r}return o.innerHTML}}const xje=(e,t)=>n=>{const o=e?n.querySelector(e):n;return o?Xo.fromHTMLElement(o,{preserveWhiteSpace:t}):Xo.empty()},wje=e=>t=>e(t)!==void 0;function _je(e,t){switch(t){case"rich-text":return e instanceof Xo;case"string":return typeof e=="string";case"boolean":return typeof e=="boolean";case"object":return!!e&&e.constructor===Object;case"null":return e===null;case"array":return Array.isArray(e);case"integer":case"number":return typeof e=="number"}return!0}function kje(e,t){return t.some(n=>_je(e,n))}function Sje(e,t,n,o,r){let s;switch(t.source){case void 0:s=o?o[e]:void 0;break;case"raw":s=r;break;case"attribute":case"property":case"html":case"text":case"rich-text":case"children":case"node":case"query":case"tag":s=tw(n,t);break}return(!Cje(s,t.type)||!qje(s,t.enum))&&(s=void 0),s===void 0&&(s=uie(t)),s}function Cje(e,t){return t===void 0||kje(e,Array.isArray(t)?t:[t])}function qje(e,t){return!Array.isArray(t)||t.includes(e)}const Wie=Hs(e=>{switch(e.source){case"attribute":{let n=hje(e.selector,e.attribute);return e.type==="boolean"&&(n=wje(n)),n}case"html":return vje(e.selector,e.multiline);case"text":return mje(e.selector);case"rich-text":return xje(e.selector,e.__unstablePreserveWhiteSpace);case"children":return Tie(e.selector);case"node":return Aje(e.selector);case"query":const t=Object.fromEntries(Object.entries(e.query).map(([n,o])=>[n,Wie(o)]));return gje(e.selector,t);case"tag":{const n=HB(e.selector,"nodeName");return o=>n(o)?.toLowerCase()}default:console.error(`Unknown source type "${e.source}"`)}});function Nie(e){return VB(e,t=>t)}function tw(e,t){return Wie(t)(Nie(e))}function Nl(e,t,n={}){var o;const r=Nie(t),s=M3(e),i=Object.fromEntries(Object.entries((o=s.attributes)!==null&&o!==void 0?o:{}).map(([c,l])=>[c,Sje(c,l,r,n,t)]));return gr("blocks.getBlockAttributes",i,s,t,n)}const Rje={type:"string",source:"attribute",selector:"[data-custom-class-name] > *",attribute:"class"};function bX(e){const t=tw(`<div data-custom-class-name>${e}</div>`,Rje);return t?t.trim().split(/\s+/):[]}function Tje(e,t,n){if(!Et(t,"customClassName",!0))return e;const o={...e},{className:r,...s}=o,i=Gf(t,s),c=bX(i),u=bX(n).filter(d=>!c.includes(d));return u.length?o.className=u.join(" "):i&&delete o.className,o}const Eje={type:"string",source:"attribute",selector:"[data-aria-label] > *",attribute:"aria-label"};function Wje(e){return tw(`<div data-aria-label>${e}</div>`,Eje)}function Nje(e,t,n){if(!Et(t,"ariaLabel",!1))return e;const o={...e},r=Wje(n);return r&&(o.ariaLabel=r),o}function J4(e,t){const{attributes:n,originalContent:o}=e;let r=n;return r=Tje(n,t,o),r=Nje(r,t,o),{...e,attributes:r}}function Bje(){return!1}function Lje(e,t,n){const o=t.attrs,{deprecated:r}=n;if(!r||!r.length)return e;for(let s=0;s<r.length;s++){const{isEligible:i=Bje}=r[s];if(e.isValid&&!i(o,e.innerBlocks,{blockNode:t,block:e}))continue;const c=Object.assign(Xf(n,QE),r[s]);let l={...e,attributes:Nl(c,e.originalContent,o)},[u]=tz(l,c);if(u||(l=J4(l,c),[u]=tz(l,c)),!u)continue;let d=l.innerBlocks,p=l.attributes;const{migrate:f}=c;if(f){let b=f(p,e.innerBlocks);Array.isArray(b)||(b=[b]),[p=o,d=e.innerBlocks]=b}e={...e,attributes:p,innerBlocks:d,isValid:!0,validationIssues:[]}}return e}function Pje(e){const[t,n]=Rie(e.blockName,e.attrs);return{...e,blockName:t,attrs:n}}function jje(e,t){const n=yd(),o=e.blockName||yd(),r=e.attrs||{},s=e.innerBlocks||[];let i=e.innerHTML.trim();return o===n&&o==="core/freeform"&&!t?.__unstableSkipAutop&&(i=wie(i).trim()),{...e,blockName:o,attrs:r,innerHTML:i,innerBlocks:s}}function Ije(e){const t=g3()||yd(),n=ez(e,{isCommentDelimited:!1}),o=ez(e,{isCommentDelimited:!0});return{blockName:t,attrs:{originalName:e.blockName,originalContent:o,originalUndelimitedContent:n},innerHTML:e.blockName?o:e.innerHTML,innerBlocks:e.innerBlocks,innerContent:e.innerContent}}function Dje(e,t){const[n]=tz(e,t);if(n)return{...e,isValid:n,validationIssues:[]};const o=J4(e,t),[r,s]=tz(o,t);return{...o,isValid:r,validationIssues:s}}function Bie(e,t){let n=jje(e,t);n=Pje(n);let o=on(n.blockName);o||(n=Ije(n),o=on(n.blockName));const r=n.blockName===yd()||n.blockName===g3();if(!o||!n.innerHTML&&r)return;const s=n.innerBlocks.map(d=>Bie(d,t)).filter(d=>!!d),i=Ee(n.blockName,Nl(o,n.innerHTML,n.attrs),s);i.originalContent=n.innerHTML;const c=Dje(i,o),{validationIssues:l}=c,u=Lje(c,n,o);return u.isValid||(u.__unstableBlockSource=e),!c.isValid&&u.isValid&&!t?.__unstableSkipMigrationLogs?(console.groupCollapsed("Updated Block: %s",o.name),console.info(`Block successfully updated for \`%s\` (%o). +%s`,r.name,r,s,e.originalContent),[i,o.getItems()]}function Rie(e,t){const n={...t};if(e==="core/cover-image"&&(e="core/cover"),(e==="core/text"||e==="core/cover-text")&&(e="core/paragraph"),e&&e.indexOf("core/social-link-")===0&&(n.service=e.substring(17),e="core/social-link"),e&&e.indexOf("core-embed/")===0){const o=e.substring(11),r={speaker:"speaker-deck",polldaddy:"crowdsignal"};n.providerNameSlug=o in r?r[o]:o,["amazon-kindle","wordpress"].includes(o)||(n.responsive=!0),e="core/embed"}if(e==="core/post-comment-author"&&(e="core/comment-author-name"),e==="core/post-comment-content"&&(e="core/comment-content"),e==="core/post-comment-date"&&(e="core/comment-date"),e==="core/comments-query-loop"){e="core/comments";const{className:o=""}=n;o.includes("wp-block-comments-query-loop")||(n.className=["wp-block-comments-query-loop",o].join(" "))}if(e==="core/post-comments"&&(e="core/comments",n.legacy=!0),t.layout?.type==="grid"&&typeof t.layout?.columnCount=="string"&&(n.layout={...n.layout,columnCount:parseInt(t.layout.columnCount,10)}),typeof t.style?.layout?.columnSpan=="string"){const o=parseInt(t.style.layout.columnSpan,10);n.style={...n.style,layout:{...n.style.layout,columnSpan:isNaN(o)?void 0:o}}}if(typeof t.style?.layout?.rowSpan=="string"){const o=parseInt(t.style.layout.rowSpan,10);n.style={...n.style,layout:{...n.style.layout,rowSpan:isNaN(o)?void 0:o}}}if(globalThis.IS_GUTENBERG_PLUGIN&&n.metadata?.bindings&&(e==="core/paragraph"||e==="core/heading"||e==="core/image"||e==="core/button")&&n.metadata.bindings.__default?.source!=="core/pattern-overrides"){const o=["content","url","title","id","alt","text","linkTarget"];let r=!1;o.forEach(s=>{n.metadata.bindings[s]?.source==="core/pattern-overrides"&&(r=!0,n.metadata={...n.metadata,bindings:{...n.metadata.bindings}},delete n.metadata.bindings[s])}),r&&(n.metadata.bindings.__default={source:"core/pattern-overrides"})}return[e,n]}function pje(e,t){for(var n=t.split("."),o;o=n.shift();){if(!(o in e))return;e=e[o]}return e}var fje=function(){var e;return function(){return e||(e=document.implementation.createHTMLDocument("")),e}}();function $B(e,t){if(t){if(typeof e=="string"){var n=fje();n.body.innerHTML=e,e=n.body}if(typeof t=="function")return t(e);if(Object===t.constructor)return Object.keys(t).reduce(function(o,r){var s=t[r];return o[r]=$B(e,s),o},{})}}function VB(e,t){var n,o;return arguments.length===1?(n=e,o=void 0):(n=t,o=e),function(r){var s=r;if(o&&(s=r.querySelector(o)),s)return pje(s,n)}}function bje(e,t){var n,o;return arguments.length===1?(n=e,o=void 0):(n=t,o=e),function(r){var s=VB(o,"attributes")(r);if(s&&Object.prototype.hasOwnProperty.call(s,n))return s[n].value}}function hje(e){return VB(e,"textContent")}function mje(e,t){return function(n){var o=n.querySelectorAll(e);return[].map.call(o,function(r){return $B(r,t)})}}function gje(e){return Ke("wp.blocks.children.getChildrenArray",{since:"6.1",version:"6.3",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),e}function Mje(...e){Ke("wp.blocks.children.concat",{since:"6.1",version:"6.3",alternative:"wp.richText.concat",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"});const t=[];for(let n=0;n<e.length;n++){const o=Array.isArray(e[n])?e[n]:[e[n]];for(let r=0;r<o.length;r++){const s=o[r];typeof s=="string"&&typeof t[t.length-1]=="string"?t[t.length-1]+=s:t.push(s)}}return t}function HB(e){Ke("wp.blocks.children.fromDOM",{since:"6.1",version:"6.3",alternative:"wp.richText.create",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"});const t=[];for(let n=0;n<e.length;n++)try{t.push(Eie(e[n]))}catch{}return t}function zje(e){Ke("wp.blocks.children.toHTML",{since:"6.1",version:"6.3",alternative:"wp.richText.toHTMLString",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"});const t=e;return M1(t)}function Tie(e){return Ke("wp.blocks.children.matcher",{since:"6.1",version:"6.3",alternative:"html source",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),t=>{let n=t;return e&&(n=t.querySelector(e)),n?HB(n.childNodes):[]}}const t8={concat:Mje,getChildrenArray:gje,fromDOM:HB,toHTML:zje,matcher:Tie};function Oje(e){const t={};for(let n=0;n<e.length;n++){const{name:o,value:r}=e[n];t[o]=r}return t}function Eie(e){if(Ke("wp.blocks.node.fromDOM",{since:"6.1",version:"6.3",alternative:"wp.richText.create",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),e.nodeType===e.TEXT_NODE)return e.nodeValue;if(e.nodeType!==e.ELEMENT_NODE)throw new TypeError("A block node can only be created from a node of type text or element.");return{type:e.nodeName.toLowerCase(),props:{...Oje(e.attributes),children:HB(e.childNodes)}}}function yje(e){return Ke("wp.blocks.node.matcher",{since:"6.1",version:"6.3",alternative:"html source",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),t=>{let n=t;e&&(n=t.querySelector(e));try{return Eie(n)}catch{return null}}}function Aje(e,t){return n=>{let o=n;if(e&&(o=n.querySelector(e)),!o)return"";if(t){let r="";const s=o.children.length;for(let i=0;i<s;i++){const c=o.children[i];c.nodeName.toLowerCase()===t&&(r+=c.outerHTML)}return r}return o.innerHTML}}const vje=(e,t)=>n=>{const o=e?n.querySelector(e):n;return o?Xo.fromHTMLElement(o,{preserveWhiteSpace:t}):Xo.empty()},xje=e=>t=>e(t)!==void 0;function wje(e,t){switch(t){case"rich-text":return e instanceof Xo;case"string":return typeof e=="string";case"boolean":return typeof e=="boolean";case"object":return!!e&&e.constructor===Object;case"null":return e===null;case"array":return Array.isArray(e);case"integer":case"number":return typeof e=="number"}return!0}function _je(e,t){return t.some(n=>wje(e,n))}function kje(e,t,n,o,r){let s;switch(t.source){case void 0:s=o?o[e]:void 0;break;case"raw":s=r;break;case"attribute":case"property":case"html":case"text":case"rich-text":case"children":case"node":case"query":case"tag":s=ew(n,t);break}return(!Sje(s,t.type)||!Cje(s,t.enum))&&(s=void 0),s===void 0&&(s=uie(t)),s}function Sje(e,t){return t===void 0||_je(e,Array.isArray(t)?t:[t])}function Cje(e,t){return!Array.isArray(t)||t.includes(e)}const Wie=Hs(e=>{switch(e.source){case"attribute":{let n=bje(e.selector,e.attribute);return e.type==="boolean"&&(n=xje(n)),n}case"html":return Aje(e.selector,e.multiline);case"text":return hje(e.selector);case"rich-text":return vje(e.selector,e.__unstablePreserveWhiteSpace);case"children":return Tie(e.selector);case"node":return yje(e.selector);case"query":const t=Object.fromEntries(Object.entries(e.query).map(([n,o])=>[n,Wie(o)]));return mje(e.selector,t);case"tag":{const n=VB(e.selector,"nodeName");return o=>n(o)?.toLowerCase()}default:console.error(`Unknown source type "${e.source}"`)}});function Nie(e){return $B(e,t=>t)}function ew(e,t){return Wie(t)(Nie(e))}function Wl(e,t,n={}){var o;const r=Nie(t),s=M3(e),i=Object.fromEntries(Object.entries((o=s.attributes)!==null&&o!==void 0?o:{}).map(([c,l])=>[c,kje(c,l,r,n,t)]));return gr("blocks.getBlockAttributes",i,s,t,n)}const qje={type:"string",source:"attribute",selector:"[data-custom-class-name] > *",attribute:"class"};function bX(e){const t=ew(`<div data-custom-class-name>${e}</div>`,qje);return t?t.trim().split(/\s+/):[]}function Rje(e,t,n){if(!Et(t,"customClassName",!0))return e;const o={...e},{className:r,...s}=o,i=Gf(t,s),c=bX(i),u=bX(n).filter(d=>!c.includes(d));return u.length?o.className=u.join(" "):i&&delete o.className,o}const Tje={type:"string",source:"attribute",selector:"[data-aria-label] > *",attribute:"aria-label"};function Eje(e){return ew(`<div data-aria-label>${e}</div>`,Tje)}function Wje(e,t,n){if(!Et(t,"ariaLabel",!1))return e;const o={...e},r=Eje(n);return r&&(o.ariaLabel=r),o}function Q4(e,t){const{attributes:n,originalContent:o}=e;let r=n;return r=Rje(n,t,o),r=Wje(r,t,o),{...e,attributes:r}}function Nje(){return!1}function Bje(e,t,n){const o=t.attrs,{deprecated:r}=n;if(!r||!r.length)return e;for(let s=0;s<r.length;s++){const{isEligible:i=Nje}=r[s];if(e.isValid&&!i(o,e.innerBlocks,{blockNode:t,block:e}))continue;const c=Object.assign(Xf(n,ZE),r[s]);let l={...e,attributes:Wl(c,e.originalContent,o)},[u]=tz(l,c);if(u||(l=Q4(l,c),[u]=tz(l,c)),!u)continue;let d=l.innerBlocks,p=l.attributes;const{migrate:f}=c;if(f){let b=f(p,e.innerBlocks);Array.isArray(b)||(b=[b]),[p=o,d=e.innerBlocks]=b}e={...e,attributes:p,innerBlocks:d,isValid:!0,validationIssues:[]}}return e}function Lje(e){const[t,n]=Rie(e.blockName,e.attrs);return{...e,blockName:t,attrs:n}}function Pje(e,t){const n=yd(),o=e.blockName||yd(),r=e.attrs||{},s=e.innerBlocks||[];let i=e.innerHTML.trim();return o===n&&o==="core/freeform"&&!t?.__unstableSkipAutop&&(i=wie(i).trim()),{...e,blockName:o,attrs:r,innerHTML:i,innerBlocks:s}}function jje(e){const t=g3()||yd(),n=ez(e,{isCommentDelimited:!1}),o=ez(e,{isCommentDelimited:!0});return{blockName:t,attrs:{originalName:e.blockName,originalContent:o,originalUndelimitedContent:n},innerHTML:e.blockName?o:e.innerHTML,innerBlocks:e.innerBlocks,innerContent:e.innerContent}}function Ije(e,t){const[n]=tz(e,t);if(n)return{...e,isValid:n,validationIssues:[]};const o=Q4(e,t),[r,s]=tz(o,t);return{...o,isValid:r,validationIssues:s}}function Bie(e,t){let n=Pje(e,t);n=Lje(n);let o=on(n.blockName);o||(n=jje(n),o=on(n.blockName));const r=n.blockName===yd()||n.blockName===g3();if(!o||!n.innerHTML&&r)return;const s=n.innerBlocks.map(d=>Bie(d,t)).filter(d=>!!d),i=Ee(n.blockName,Wl(o,n.innerHTML,n.attrs),s);i.originalContent=n.innerHTML;const c=Ije(i,o),{validationIssues:l}=c,u=Bje(c,n,o);return u.isValid||(u.__unstableBlockSource=e),!c.isValid&&u.isValid&&!t?.__unstableSkipMigrationLogs?(console.groupCollapsed("Updated Block: %s",o.name),console.info(`Block successfully updated for \`%s\` (%o). New content generated by \`save\` function: @@ -145,7 +145,7 @@ New content generated by \`save\` function: Content retrieved from post body: -%s`,o.name,o,Gf(o,u.attributes),u.originalContent),console.groupEnd()):!c.isValid&&!u.isValid&&l.forEach(({log:d,args:p})=>d(...p)),u}function Ko(e,t){return xie(e).reduce((n,o)=>{const r=Bie(o,t);return r&&n.push(r),n},[])}function Lie(){return Ei("from").filter(({type:e})=>e==="raw").map(e=>e.isMatch?e:{...e,isMatch:t=>e.selector&&t.matches(e.selector)})}function Pie(e,t){const n=document.implementation.createHTMLDocument("");return n.body.innerHTML=e,Array.from(n.body.children).flatMap(o=>{const r=xc(Lie(),({isMatch:c})=>c(o));if(!r)return f0.isNative?Ko(`<!-- wp:html -->${o.outerHTML}<!-- /wp:html -->`):Ee("core/html",Nl("core/html",o.outerHTML));const{transform:s,blockName:i}=r;if(s){const c=s(o,t);return o.hasAttribute("class")&&(c.attributes.className=o.getAttribute("class")),c}return Ee(i,Nl(i,o.outerHTML))})}function nw(e,t={}){const n=document.implementation.createHTMLDocument(""),o=document.implementation.createHTMLDocument(""),r=n.body,s=o.body;for(r.innerHTML=e;r.firstChild;){const i=r.firstChild;i.nodeType===i.TEXT_NODE?T4(i)?r.removeChild(i):((!s.lastChild||s.lastChild.nodeName!=="P")&&s.appendChild(o.createElement("P")),s.lastChild.appendChild(i)):i.nodeType===i.ELEMENT_NODE?i.nodeName==="BR"?(i.nextSibling&&i.nextSibling.nodeName==="BR"&&(s.appendChild(o.createElement("P")),r.removeChild(i.nextSibling)),s.lastChild&&s.lastChild.nodeName==="P"&&s.lastChild.hasChildNodes()?s.lastChild.appendChild(i):r.removeChild(i)):i.nodeName==="P"?T4(i)&&!t.raw?r.removeChild(i):s.appendChild(i):k2(i)?((!s.lastChild||s.lastChild.nodeName!=="P")&&s.appendChild(o.createElement("P")),s.lastChild.appendChild(i)):s.appendChild(i):r.removeChild(i)}return s.innerHTML}function jie(e,t){if(e.nodeType!==e.COMMENT_NODE||e.nodeValue!=="nextpage"&&e.nodeValue.indexOf("more")!==0)return;const n=Fje(e,t);if(!e.parentNode||e.parentNode.nodeName!=="P")wSe(e,n);else{const o=Array.from(e.parentNode.childNodes),r=o.indexOf(e),s=e.parentNode.parentNode||t.body,i=(c,l)=>(c||(c=t.createElement("p")),c.appendChild(l),c);[o.slice(0,r).reduce(i,null),n,o.slice(r+1).reduce(i,null)].forEach(c=>c&&s.insertBefore(c,e.parentNode)),pf(e.parentNode)}}function Fje(e,t){if(e.nodeValue==="nextpage")return Vje(t);const n=e.nodeValue.slice(4).trim();let o=e,r=!1;for(;o=o.nextSibling;)if(o.nodeType===o.COMMENT_NODE&&o.nodeValue==="noteaser"){r=!0,pf(o);break}return $je(n,r,t)}function $je(e,t,n){const o=n.createElement("wp-block");return o.dataset.block="core/more",e&&(o.dataset.customText=e),t&&(o.dataset.noTeaser=""),o}function Vje(e){const t=e.createElement("wp-block");return t.dataset.block="core/nextpage",t}function hX(e){return e.nodeName==="OL"||e.nodeName==="UL"}function Hje(e){return Array.from(e.childNodes).map(({nodeValue:t=""})=>t).join("")}function Iie(e){if(!hX(e))return;const t=e,n=e.previousElementSibling;if(n&&n.nodeName===e.nodeName&&t.children.length===1){for(;t.firstChild;)n.appendChild(t.firstChild);t.parentNode.removeChild(t)}const o=e.parentNode;if(o&&o.nodeName==="LI"&&o.children.length===1&&!/\S/.test(Hje(o))){const r=o,s=r.previousElementSibling,i=r.parentNode;s&&(s.appendChild(t),i.removeChild(r))}if(o&&hX(o)){const r=e.previousElementSibling;r?r.appendChild(e):mM(e)}}function Die(e){return t=>{t.nodeName==="BLOCKQUOTE"&&(t.innerHTML=nw(t.innerHTML,e))}}function Uje(e,t){var n;const o=e.nodeName.toLowerCase();return o==="figcaption"||M0e(e)?!1:o in((n=t?.figure?.children)!==null&&n!==void 0?n:{})}function Xje(e,t){var n;return e.nodeName.toLowerCase()in((n=t?.figure?.children?.a?.children)!==null&&n!==void 0?n:{})}function rC(e,t=e){const n=e.ownerDocument.createElement("figure");t.parentNode.insertBefore(n,t),n.appendChild(e)}function Fie(e,t,n){if(!Uje(e,n))return;let o=e;const r=e.parentNode;Xje(e,n)&&r.nodeName==="A"&&r.childNodes.length===1&&(o=e.parentNode);const s=o.closest("p,div");s?e.classList?(e.classList.contains("alignright")||e.classList.contains("alignleft")||e.classList.contains("aligncenter")||!s.textContent.trim())&&rC(o,s):rC(o,s):rC(o)}function XB(e,t,n=0){const o=nz(e);o.lastIndex=n;const r=o.exec(t);if(!r)return;if(r[1]==="["&&r[7]==="]")return XB(e,t,o.lastIndex);const s={index:r.index,content:r[0],shortcode:GB(r)};return r[1]&&(s.content=s.content.slice(1),s.index++),r[7]&&(s.content=s.content.slice(0,-1)),s}function Gje(e,t,n){return t.replace(nz(e),function(o,r,s,i,c,l,u,d){if(r==="["&&d==="]")return o;const p=n(GB(arguments));return p||p===""?r+p+d:o})}function Kje(e){return new KB(e).string()}function nz(e){return new RegExp("\\[(\\[?)("+e+")(?![\\w-])([^\\]\\/]*(?:\\/(?!\\])[^\\]\\/]*)*?)(?:(\\/)\\]|\\](?:([^\\[]*(?:\\[(?!\\/\\2\\])[^\\[]*)*)(\\[\\/\\2\\]))?)(\\]?)","g")}const mX=Hs(e=>{const t={},n=[],o=/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*'([^']*)'(?:\s|$)|([\w-]+)\s*=\s*([^\s'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|'([^']*)'(?:\s|$)|(\S+)(?:\s|$)/g;e=e.replace(/[\u00a0\u200b]/g," ");let r;for(;r=o.exec(e);)r[1]?t[r[1].toLowerCase()]=r[2]:r[3]?t[r[3].toLowerCase()]=r[4]:r[5]?t[r[5].toLowerCase()]=r[6]:r[7]?n.push(r[7]):r[8]?n.push(r[8]):r[9]&&n.push(r[9]);return{named:t,numeric:n}});function GB(e){let t;return e[4]?t="self-closing":e[6]?t="closed":t="single",new KB({tag:e[2],attrs:e[3],type:t,content:e[5]})}const KB=Object.assign(function(e){const{tag:t,attrs:n,type:o,content:r}=e||{};if(Object.assign(this,{tag:t,type:o,content:r}),this.attrs={named:{},numeric:[]},!n)return;const s=["named","numeric"];typeof n=="string"?this.attrs=mX(n):n.length===s.length&&s.every((i,c)=>i===n[c])?this.attrs=n:Object.entries(n).forEach(([i,c])=>{this.set(i,c)})},{next:XB,replace:Gje,string:Kje,regexp:nz,attrs:mX,fromMatch:GB});Object.assign(KB.prototype,{get(e){return this.attrs[typeof e=="number"?"numeric":"named"][e]},set(e,t){return this.attrs[typeof e=="number"?"numeric":"named"][e]=t,this},string(){let e="["+this.tag;return this.attrs.numeric.forEach(t=>{/\s/.test(t)?e+=' "'+t+'"':e+=" "+t}),Object.entries(this.attrs.named).forEach(([t,n])=>{e+=" "+t+'="'+n+'"'}),this.type==="single"?e+"]":this.type==="self-closing"?e+" /]":(e+="]",this.content&&(e+=this.content),e+"[/"+this.tag+"]")}});const gX=e=>Array.isArray(e)?e:[e],MX=/(\n|<p>)\s*$/,zX=/^\s*(\n|<\/p>)/;function u2(e,t=0,n=[]){const o=Ei("from"),r=xc(o,u=>n.indexOf(u.blockName)===-1&&u.type==="shortcode"&&gX(u.tag).some(d=>nz(d).test(e)));if(!r)return[e];const i=gX(r.tag).find(u=>nz(u).test(e));let c;const l=t;if(c=XB(i,e,t)){t=c.index+c.content.length;const u=e.substr(0,c.index),d=e.substr(t);if(!c.shortcode.content?.includes("<")&&!(MX.test(u)&&zX.test(d)))return u2(e,t);if(r.isMatch&&!r.isMatch(c.shortcode.attrs))return u2(e,l,[...n,r.blockName]);let p=[];if(typeof r.transform=="function")p=[].concat(r.transform(c.shortcode.attrs,c)),p=p.map(f=>(f.originalContent=c.shortcode.content,J4(f,on(f.name))));else{const f=Object.fromEntries(Object.entries(r.attributes).filter(([,z])=>z.shortcode).map(([z,A])=>[z,A.shortcode(c.shortcode.attrs,c)])),b=on(r.blockName);if(!b)return[e];const h={...b,attributes:r.attributes};let g=Ee(r.blockName,Nl(h,c.shortcode.content,f));g.originalContent=c.shortcode.content,g=J4(g,h),p=[g]}return[...u2(u.replace(MX,"")),...p,...u2(d.replace(zX,""))]}return[e]}function Yje(e,t){const o={phrasingContentSchema:R5(t),isPaste:t==="paste"},r=e.map(({isMatch:l,blockName:u,schema:d})=>{const p=Et(u,"anchor");return d=typeof d=="function"?d(o):d,!p&&!l?d:d?Object.fromEntries(Object.entries(d).map(([f,b])=>{let h=b.attributes||[];return p&&(h=[...h,"id"]),[f,{...b,attributes:h,isMatch:l||void 0}]})):{}});function s(l,u,d){switch(d){case"children":return l==="*"||u==="*"?"*":{...l,...u};case"attributes":case"require":return[...l||[],...u||[]];case"isMatch":return!l||!u?void 0:(...p)=>l(...p)||u(...p)}}function i(l,u){for(const d in u)l[d]=l[d]?s(l[d],u[d],d):{...u[d]};return l}function c(l,u){for(const d in u)l[d]=l[d]?i(l[d],u[d]):{...u[d]};return l}return r.reduce(c,{})}function $ie(e){return Yje(Lie(),e)}function Zje(e){return!/<(?!br[ />])/i.test(e)}function Vie(e,t,n,o){Array.from(e).forEach(r=>{Vie(r.childNodes,t,n,o),t.forEach(s=>{n.contains(r)&&s(r,n,o)})})}function tf(e,t=[],n){const o=document.implementation.createHTMLDocument("");return o.body.innerHTML=e,Vie(o.body.childNodes,t,o,n),o.body.innerHTML}function ex(e,t){const n=e[`${t}Sibling`];if(n&&k2(n))return n;const{parentNode:o}=e;if(!(!o||!k2(o)))return ex(o,t)}function Hie(e){e.nodeType===e.COMMENT_NODE&&pf(e)}function Qje(e,t){if(M0e(e))return!0;if(!t)return!1;const n=e.nodeName.toLowerCase();return[["ul","li","ol"],["h1","h2","h3","h4","h5","h6"]].some(r=>[n,t].filter(s=>!r.includes(s)).length===0)}function Uie(e,t){return e.every(n=>Qje(n,t)&&Uie(Array.from(n.children),t))}function Jje(e){return e.nodeName==="BR"&&e.previousSibling&&e.previousSibling.nodeName==="BR"}function e7e(e,t){const n=document.implementation.createHTMLDocument("");n.body.innerHTML=e;const o=Array.from(n.body.children);return!o.some(Jje)&&Uie(o,t)}function Xie(e,t){if(e.nodeName==="SPAN"&&e.style){const{fontWeight:n,fontStyle:o,textDecorationLine:r,textDecoration:s,verticalAlign:i}=e.style;(n==="bold"||n==="700")&&Ag(t.createElement("strong"),e),o==="italic"&&Ag(t.createElement("em"),e),(r==="line-through"||s.includes("line-through"))&&Ag(t.createElement("s"),e),i==="super"?Ag(t.createElement("sup"),e):i==="sub"&&Ag(t.createElement("sub"),e)}else e.nodeName==="B"?e=IH(e,"strong"):e.nodeName==="I"?e=IH(e,"em"):e.nodeName==="A"&&(e.target&&e.target.toLowerCase()==="_blank"?e.rel="noreferrer noopener":(e.removeAttribute("target"),e.removeAttribute("rel")),e.name&&!e.id&&(e.id=e.name),e.id&&!e.ownerDocument.querySelector(`[href="#${e.id}"]`)&&e.removeAttribute("id"))}function Gie(e){e.nodeName!=="SCRIPT"&&e.nodeName!=="NOSCRIPT"&&e.nodeName!=="TEMPLATE"&&e.nodeName!=="STYLE"||e.parentNode.removeChild(e)}function Kie(e){if(e.nodeType!==e.ELEMENT_NODE)return;const t=e.getAttribute("style");if(!t||!t.includes("mso-list"))return;t.split(";").reduce((o,r)=>{const[s,i]=r.split(":");return s&&i&&(o[s.trim().toLowerCase()]=i.trim().toLowerCase()),o},{})["mso-list"]==="ignore"&&e.remove()}function sC(e){return e.nodeName==="OL"||e.nodeName==="UL"}function t7e(e,t){if(e.nodeName!=="P")return;const n=e.getAttribute("style");if(!n||!n.includes("mso-list"))return;const o=e.previousElementSibling;if(!o||!sC(o)){const d=e.textContent.trim().slice(0,1),p=/[1iIaA]/.test(d),f=t.createElement(p?"ol":"ul");p&&f.setAttribute("type",d),e.parentNode.insertBefore(f,e)}const r=e.previousElementSibling,s=r.nodeName,i=t.createElement("li");let c=r;i.innerHTML=tf(e.innerHTML,[Kie]);const l=/mso-list\s*:[^;]+level([0-9]+)/i.exec(n);let u=l&&parseInt(l[1],10)-1||0;for(;u--;)c=c.lastChild||c,sC(c)&&(c=c.lastChild||c);sC(c)||(c=c.appendChild(t.createElement(s))),c.appendChild(i),e.parentNode.removeChild(e)}const tx={};function ls(e){const t=window.URL.createObjectURL(e);return tx[t]=e,t}function Yie(e){return tx[e]}function Zie(e){return Yie(e)?.type.split("/")[0]}function nx(e){tx[e]&&window.URL.revokeObjectURL(e),delete tx[e]}function Nr(e){return!e||!e.indexOf?!1:e.indexOf("blob:")===0}function OX(e,t,n=""){if(!e||!t)return;const o=new window.Blob([t],{type:n}),r=window.URL.createObjectURL(o),s=document.createElement("a");s.href=r,s.download=e,s.style.display="none",document.body.appendChild(s),s.click(),document.body.removeChild(s),window.URL.revokeObjectURL(r)}function n7e(e){if(e.nodeName==="IMG"){if(e.src.indexOf("file:")===0&&(e.src=""),e.src.indexOf("data:")===0){const[t,n]=e.src.split(","),[o]=t.slice(5).split(";");if(!n||!o){e.src="";return}let r;try{r=atob(n)}catch{e.src="";return}const s=new Uint8Array(r.length);for(let l=0;l<s.length;l++)s[l]=r.charCodeAt(l);const i=o.replace("/","."),c=new window.File([s],i,{type:o});e.src=ls(c)}(e.height===1||e.width===1)&&e.parentNode.removeChild(e)}}function o7e(e){e.nodeName==="DIV"&&(e.innerHTML=nw(e.innerHTML))}var $v={exports:{}},r7e=$v.exports,yX;function s7e(){return yX||(yX=1,function(e){(function(){function t(M){var y={omitExtraWLInCodeBlocks:{defaultValue:!1,describe:"Omit the default extra whiteline added to code blocks",type:"boolean"},noHeaderId:{defaultValue:!1,describe:"Turn on/off generated header id",type:"boolean"},prefixHeaderId:{defaultValue:!1,describe:"Add a prefix to the generated header ids. Passing a string will prefix that string to the header id. Setting to true will add a generic 'section-' prefix",type:"string"},rawPrefixHeaderId:{defaultValue:!1,describe:'Setting this option to true will prevent showdown from modifying the prefix. This might result in malformed IDs (if, for instance, the " char is used in the prefix)',type:"boolean"},ghCompatibleHeaderId:{defaultValue:!1,describe:"Generate header ids compatible with github style (spaces are replaced with dashes, a bunch of non alphanumeric chars are removed)",type:"boolean"},rawHeaderId:{defaultValue:!1,describe:`Remove only spaces, ' and " from generated header ids (including prefixes), replacing them with dashes (-). WARNING: This might result in malformed ids`,type:"boolean"},headerLevelStart:{defaultValue:!1,describe:"The header blocks level start",type:"integer"},parseImgDimensions:{defaultValue:!1,describe:"Turn on/off image dimension parsing",type:"boolean"},simplifiedAutoLink:{defaultValue:!1,describe:"Turn on/off GFM autolink style",type:"boolean"},excludeTrailingPunctuationFromURLs:{defaultValue:!1,describe:"Excludes trailing punctuation from links generated with autoLinking",type:"boolean"},literalMidWordUnderscores:{defaultValue:!1,describe:"Parse midword underscores as literal underscores",type:"boolean"},literalMidWordAsterisks:{defaultValue:!1,describe:"Parse midword asterisks as literal asterisks",type:"boolean"},strikethrough:{defaultValue:!1,describe:"Turn on/off strikethrough support",type:"boolean"},tables:{defaultValue:!1,describe:"Turn on/off tables support",type:"boolean"},tablesHeaderId:{defaultValue:!1,describe:"Add an id to table headers",type:"boolean"},ghCodeBlocks:{defaultValue:!0,describe:"Turn on/off GFM fenced code blocks support",type:"boolean"},tasklists:{defaultValue:!1,describe:"Turn on/off GFM tasklist support",type:"boolean"},smoothLivePreview:{defaultValue:!1,describe:"Prevents weird effects in live previews due to incomplete input",type:"boolean"},smartIndentationFix:{defaultValue:!1,description:"Tries to smartly fix indentation in es6 strings",type:"boolean"},disableForced4SpacesIndentedSublists:{defaultValue:!1,description:"Disables the requirement of indenting nested sublists by 4 spaces",type:"boolean"},simpleLineBreaks:{defaultValue:!1,description:"Parses simple line breaks as <br> (GFM Style)",type:"boolean"},requireSpaceBeforeHeadingText:{defaultValue:!1,description:"Makes adding a space between `#` and the header text mandatory (GFM Style)",type:"boolean"},ghMentions:{defaultValue:!1,description:"Enables github @mentions",type:"boolean"},ghMentionsLink:{defaultValue:"https://github.com/{u}",description:"Changes the link generated by @mentions. Only applies if ghMentions option is enabled.",type:"string"},encodeEmails:{defaultValue:!0,description:"Encode e-mail addresses through the use of Character Entities, transforming ASCII e-mail addresses into its equivalent decimal entities",type:"boolean"},openLinksInNewWindow:{defaultValue:!1,description:"Open all links in new windows",type:"boolean"},backslashEscapesHTMLTags:{defaultValue:!1,description:"Support for HTML Tag escaping. ex: <div>foo</div>",type:"boolean"},emoji:{defaultValue:!1,description:"Enable emoji support. Ex: `this is a :smile: emoji`",type:"boolean"},underline:{defaultValue:!1,description:"Enable support for underline. Syntax is double or triple underscores: `__underline word__`. With this option enabled, underscores no longer parses into `<em>` and `<strong>`",type:"boolean"},completeHTMLDocument:{defaultValue:!1,description:"Outputs a complete html document, including `<html>`, `<head>` and `<body>` tags",type:"boolean"},metadata:{defaultValue:!1,description:"Enable support for document metadata (defined at the top of the document between `«««` and `»»»` or between `---` and `---`).",type:"boolean"},splitAdjacentBlockquotes:{defaultValue:!1,description:"Split adjacent blockquote blocks",type:"boolean"}};if(M===!1)return JSON.parse(JSON.stringify(y));var k={};for(var S in y)y.hasOwnProperty(S)&&(k[S]=y[S].defaultValue);return k}function n(){var M=t(!0),y={};for(var k in M)M.hasOwnProperty(k)&&(y[k]=!0);return y}var o={},r={},s={},i=t(!0),c="vanilla",l={github:{omitExtraWLInCodeBlocks:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,disableForced4SpacesIndentedSublists:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghCompatibleHeaderId:!0,ghMentions:!0,backslashEscapesHTMLTags:!0,emoji:!0,splitAdjacentBlockquotes:!0},original:{noHeaderId:!0,ghCodeBlocks:!1},ghost:{omitExtraWLInCodeBlocks:!0,parseImgDimensions:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,smoothLivePreview:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghMentions:!1,encodeEmails:!0},vanilla:t(!0),allOn:n()};o.helper={},o.extensions={},o.setOption=function(M,y){return i[M]=y,this},o.getOption=function(M){return i[M]},o.getOptions=function(){return i},o.resetOptions=function(){i=t(!0)},o.setFlavor=function(M){if(!l.hasOwnProperty(M))throw Error(M+" flavor was not found");o.resetOptions();var y=l[M];c=M;for(var k in y)y.hasOwnProperty(k)&&(i[k]=y[k])},o.getFlavor=function(){return c},o.getFlavorOptions=function(M){if(l.hasOwnProperty(M))return l[M]},o.getDefaultOptions=function(M){return t(M)},o.subParser=function(M,y){if(o.helper.isString(M))if(typeof y<"u")r[M]=y;else{if(r.hasOwnProperty(M))return r[M];throw Error("SubParser named "+M+" not registered!")}},o.extension=function(M,y){if(!o.helper.isString(M))throw Error("Extension 'name' must be a string");if(M=o.helper.stdExtName(M),o.helper.isUndefined(y)){if(!s.hasOwnProperty(M))throw Error("Extension named "+M+" is not registered!");return s[M]}else{typeof y=="function"&&(y=y()),o.helper.isArray(y)||(y=[y]);var k=u(y,M);if(k.valid)s[M]=y;else throw Error(k.error)}},o.getAllExtensions=function(){return s},o.removeExtension=function(M){delete s[M]},o.resetExtensions=function(){s={}};function u(M,y){var k=y?"Error in "+y+" extension->":"Error in unnamed extension",S={valid:!0,error:""};o.helper.isArray(M)||(M=[M]);for(var C=0;C<M.length;++C){var R=k+" sub-extension "+C+": ",T=M[C];if(typeof T!="object")return S.valid=!1,S.error=R+"must be an object, but "+typeof T+" given",S;if(!o.helper.isString(T.type))return S.valid=!1,S.error=R+'property "type" must be a string, but '+typeof T.type+" given",S;var E=T.type=T.type.toLowerCase();if(E==="language"&&(E=T.type="lang"),E==="html"&&(E=T.type="output"),E!=="lang"&&E!=="output"&&E!=="listener")return S.valid=!1,S.error=R+"type "+E+' is not recognized. Valid values: "lang/language", "output/html" or "listener"',S;if(E==="listener"){if(o.helper.isUndefined(T.listeners))return S.valid=!1,S.error=R+'. Extensions of type "listener" must have a property called "listeners"',S}else if(o.helper.isUndefined(T.filter)&&o.helper.isUndefined(T.regex))return S.valid=!1,S.error=R+E+' extensions must define either a "regex" property or a "filter" method',S;if(T.listeners){if(typeof T.listeners!="object")return S.valid=!1,S.error=R+'"listeners" property must be an object but '+typeof T.listeners+" given",S;for(var B in T.listeners)if(T.listeners.hasOwnProperty(B)&&typeof T.listeners[B]!="function")return S.valid=!1,S.error=R+'"listeners" property must be an hash of [event name]: [callback]. listeners.'+B+" must be a function but "+typeof T.listeners[B]+" given",S}if(T.filter){if(typeof T.filter!="function")return S.valid=!1,S.error=R+'"filter" must be a function, but '+typeof T.filter+" given",S}else if(T.regex){if(o.helper.isString(T.regex)&&(T.regex=new RegExp(T.regex,"g")),!(T.regex instanceof RegExp))return S.valid=!1,S.error=R+'"regex" property must either be a string or a RegExp object, but '+typeof T.regex+" given",S;if(o.helper.isUndefined(T.replace))return S.valid=!1,S.error=R+'"regex" extensions must implement a replace string or function',S}}return S}o.validateExtension=function(M){var y=u(M,null);return y.valid?!0:(console.warn(y.error),!1)},o.hasOwnProperty("helper")||(o.helper={}),o.helper.isString=function(M){return typeof M=="string"||M instanceof String},o.helper.isFunction=function(M){var y={};return M&&y.toString.call(M)==="[object Function]"},o.helper.isArray=function(M){return Array.isArray(M)},o.helper.isUndefined=function(M){return typeof M>"u"},o.helper.forEach=function(M,y){if(o.helper.isUndefined(M))throw new Error("obj param is required");if(o.helper.isUndefined(y))throw new Error("callback param is required");if(!o.helper.isFunction(y))throw new Error("callback param must be a function/closure");if(typeof M.forEach=="function")M.forEach(y);else if(o.helper.isArray(M))for(var k=0;k<M.length;k++)y(M[k],k,M);else if(typeof M=="object")for(var S in M)M.hasOwnProperty(S)&&y(M[S],S,M);else throw new Error("obj does not seem to be an array or an iterable object")},o.helper.stdExtName=function(M){return M.replace(/[_?*+\/\\.^-]/g,"").replace(/\s/g,"").toLowerCase()};function d(M,y){var k=y.charCodeAt(0);return"¨E"+k+"E"}o.helper.escapeCharactersCallback=d,o.helper.escapeCharacters=function(M,y,k){var S="(["+y.replace(/([\[\]\\])/g,"\\$1")+"])";k&&(S="\\\\"+S);var C=new RegExp(S,"g");return M=M.replace(C,d),M},o.helper.unescapeHTMLEntities=function(M){return M.replace(/"/g,'"').replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")};var p=function(M,y,k,S){var C=S||"",R=C.indexOf("g")>-1,T=new RegExp(y+"|"+k,"g"+C.replace(/g/g,"")),E=new RegExp(y,C.replace(/g/g,"")),B=[],N,j,I,P,$;do for(N=0;I=T.exec(M);)if(E.test(I[0]))N++||(j=T.lastIndex,P=j-I[0].length);else if(N&&!--N){$=I.index+I[0].length;var F={left:{start:P,end:j},match:{start:j,end:I.index},right:{start:I.index,end:$},wholeMatch:{start:P,end:$}};if(B.push(F),!R)return B}while(N&&(T.lastIndex=j));return B};o.helper.matchRecursiveRegExp=function(M,y,k,S){for(var C=p(M,y,k,S),R=[],T=0;T<C.length;++T)R.push([M.slice(C[T].wholeMatch.start,C[T].wholeMatch.end),M.slice(C[T].match.start,C[T].match.end),M.slice(C[T].left.start,C[T].left.end),M.slice(C[T].right.start,C[T].right.end)]);return R},o.helper.replaceRecursiveRegExp=function(M,y,k,S,C){if(!o.helper.isFunction(y)){var R=y;y=function(){return R}}var T=p(M,k,S,C),E=M,B=T.length;if(B>0){var N=[];T[0].wholeMatch.start!==0&&N.push(M.slice(0,T[0].wholeMatch.start));for(var j=0;j<B;++j)N.push(y(M.slice(T[j].wholeMatch.start,T[j].wholeMatch.end),M.slice(T[j].match.start,T[j].match.end),M.slice(T[j].left.start,T[j].left.end),M.slice(T[j].right.start,T[j].right.end))),j<B-1&&N.push(M.slice(T[j].wholeMatch.end,T[j+1].wholeMatch.start));T[B-1].wholeMatch.end<M.length&&N.push(M.slice(T[B-1].wholeMatch.end)),E=N.join("")}return E},o.helper.regexIndexOf=function(M,y,k){if(!o.helper.isString(M))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";if(!(y instanceof RegExp))throw"InvalidArgumentError: second parameter of showdown.helper.regexIndexOf function must be an instance of RegExp";var S=M.substring(k||0).search(y);return S>=0?S+(k||0):S},o.helper.splitAtIndex=function(M,y){if(!o.helper.isString(M))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";return[M.substring(0,y),M.substring(y)]},o.helper.encodeEmailAddress=function(M){var y=[function(k){return"&#"+k.charCodeAt(0)+";"},function(k){return"&#x"+k.charCodeAt(0).toString(16)+";"},function(k){return k}];return M=M.replace(/./g,function(k){if(k==="@")k=y[Math.floor(Math.random()*2)](k);else{var S=Math.random();k=S>.9?y[2](k):S>.45?y[1](k):y[0](k)}return k}),M},o.helper.padEnd=function(y,k,S){return k=k>>0,S=String(S||" "),y.length>k?String(y):(k=k-y.length,k>S.length&&(S+=S.repeat(k/S.length)),String(y)+S.slice(0,k))},typeof console>"u"&&(console={warn:function(M){alert(M)},log:function(M){alert(M)},error:function(M){throw M}}),o.helper.regexes={asteriskDashAndColon:/([*_:~])/g},o.helper.emojis={"+1":"👍","-1":"👎",100:"💯",1234:"🔢","1st_place_medal":"🥇","2nd_place_medal":"🥈","3rd_place_medal":"🥉","8ball":"🎱",a:"🅰️",ab:"🆎",abc:"🔤",abcd:"🔡",accept:"🉑",aerial_tramway:"🚡",airplane:"✈️",alarm_clock:"⏰",alembic:"⚗️",alien:"👽",ambulance:"🚑",amphora:"🏺",anchor:"⚓️",angel:"👼",anger:"💢",angry:"😠",anguished:"😧",ant:"🐜",apple:"🍎",aquarius:"♒️",aries:"♈️",arrow_backward:"◀️",arrow_double_down:"⏬",arrow_double_up:"⏫",arrow_down:"⬇️",arrow_down_small:"🔽",arrow_forward:"▶️",arrow_heading_down:"⤵️",arrow_heading_up:"⤴️",arrow_left:"⬅️",arrow_lower_left:"↙️",arrow_lower_right:"↘️",arrow_right:"➡️",arrow_right_hook:"↪️",arrow_up:"⬆️",arrow_up_down:"↕️",arrow_up_small:"🔼",arrow_upper_left:"↖️",arrow_upper_right:"↗️",arrows_clockwise:"🔃",arrows_counterclockwise:"🔄",art:"🎨",articulated_lorry:"🚛",artificial_satellite:"🛰",astonished:"😲",athletic_shoe:"👟",atm:"🏧",atom_symbol:"⚛️",avocado:"🥑",b:"🅱️",baby:"👶",baby_bottle:"🍼",baby_chick:"🐤",baby_symbol:"🚼",back:"🔙",bacon:"🥓",badminton:"🏸",baggage_claim:"🛄",baguette_bread:"🥖",balance_scale:"⚖️",balloon:"🎈",ballot_box:"🗳",ballot_box_with_check:"☑️",bamboo:"🎍",banana:"🍌",bangbang:"‼️",bank:"🏦",bar_chart:"📊",barber:"💈",baseball:"⚾️",basketball:"🏀",basketball_man:"⛹️",basketball_woman:"⛹️‍♀️",bat:"🦇",bath:"🛀",bathtub:"🛁",battery:"🔋",beach_umbrella:"🏖",bear:"🐻",bed:"🛏",bee:"🐝",beer:"🍺",beers:"🍻",beetle:"🐞",beginner:"🔰",bell:"🔔",bellhop_bell:"🛎",bento:"🍱",biking_man:"🚴",bike:"🚲",biking_woman:"🚴‍♀️",bikini:"👙",biohazard:"☣️",bird:"🐦",birthday:"🎂",black_circle:"⚫️",black_flag:"🏴",black_heart:"🖤",black_joker:"🃏",black_large_square:"⬛️",black_medium_small_square:"◾️",black_medium_square:"◼️",black_nib:"✒️",black_small_square:"▪️",black_square_button:"🔲",blonde_man:"👱",blonde_woman:"👱‍♀️",blossom:"🌼",blowfish:"🐡",blue_book:"📘",blue_car:"🚙",blue_heart:"💙",blush:"😊",boar:"🐗",boat:"⛵️",bomb:"💣",book:"📖",bookmark:"🔖",bookmark_tabs:"📑",books:"📚",boom:"💥",boot:"👢",bouquet:"💐",bowing_man:"🙇",bow_and_arrow:"🏹",bowing_woman:"🙇‍♀️",bowling:"🎳",boxing_glove:"🥊",boy:"👦",bread:"🍞",bride_with_veil:"👰",bridge_at_night:"🌉",briefcase:"💼",broken_heart:"💔",bug:"🐛",building_construction:"🏗",bulb:"💡",bullettrain_front:"🚅",bullettrain_side:"🚄",burrito:"🌯",bus:"🚌",business_suit_levitating:"🕴",busstop:"🚏",bust_in_silhouette:"👤",busts_in_silhouette:"👥",butterfly:"🦋",cactus:"🌵",cake:"🍰",calendar:"📆",call_me_hand:"🤙",calling:"📲",camel:"🐫",camera:"📷",camera_flash:"📸",camping:"🏕",cancer:"♋️",candle:"🕯",candy:"🍬",canoe:"🛶",capital_abcd:"🔠",capricorn:"♑️",car:"🚗",card_file_box:"🗃",card_index:"📇",card_index_dividers:"🗂",carousel_horse:"🎠",carrot:"🥕",cat:"🐱",cat2:"🐈",cd:"💿",chains:"⛓",champagne:"🍾",chart:"💹",chart_with_downwards_trend:"📉",chart_with_upwards_trend:"📈",checkered_flag:"🏁",cheese:"🧀",cherries:"🍒",cherry_blossom:"🌸",chestnut:"🌰",chicken:"🐔",children_crossing:"🚸",chipmunk:"🐿",chocolate_bar:"🍫",christmas_tree:"🎄",church:"⛪️",cinema:"🎦",circus_tent:"🎪",city_sunrise:"🌇",city_sunset:"🌆",cityscape:"🏙",cl:"🆑",clamp:"🗜",clap:"👏",clapper:"🎬",classical_building:"🏛",clinking_glasses:"🥂",clipboard:"📋",clock1:"🕐",clock10:"🕙",clock1030:"🕥",clock11:"🕚",clock1130:"🕦",clock12:"🕛",clock1230:"🕧",clock130:"🕜",clock2:"🕑",clock230:"🕝",clock3:"🕒",clock330:"🕞",clock4:"🕓",clock430:"🕟",clock5:"🕔",clock530:"🕠",clock6:"🕕",clock630:"🕡",clock7:"🕖",clock730:"🕢",clock8:"🕗",clock830:"🕣",clock9:"🕘",clock930:"🕤",closed_book:"📕",closed_lock_with_key:"🔐",closed_umbrella:"🌂",cloud:"☁️",cloud_with_lightning:"🌩",cloud_with_lightning_and_rain:"⛈",cloud_with_rain:"🌧",cloud_with_snow:"🌨",clown_face:"🤡",clubs:"♣️",cocktail:"🍸",coffee:"☕️",coffin:"⚰️",cold_sweat:"😰",comet:"☄️",computer:"💻",computer_mouse:"🖱",confetti_ball:"🎊",confounded:"😖",confused:"😕",congratulations:"㊗️",construction:"🚧",construction_worker_man:"👷",construction_worker_woman:"👷‍♀️",control_knobs:"🎛",convenience_store:"🏪",cookie:"🍪",cool:"🆒",policeman:"👮",copyright:"©️",corn:"🌽",couch_and_lamp:"🛋",couple:"👫",couple_with_heart_woman_man:"💑",couple_with_heart_man_man:"👨‍❤️‍👨",couple_with_heart_woman_woman:"👩‍❤️‍👩",couplekiss_man_man:"👨‍❤️‍💋‍👨",couplekiss_man_woman:"💏",couplekiss_woman_woman:"👩‍❤️‍💋‍👩",cow:"🐮",cow2:"🐄",cowboy_hat_face:"🤠",crab:"🦀",crayon:"🖍",credit_card:"💳",crescent_moon:"🌙",cricket:"🏏",crocodile:"🐊",croissant:"🥐",crossed_fingers:"🤞",crossed_flags:"🎌",crossed_swords:"⚔️",crown:"👑",cry:"😢",crying_cat_face:"😿",crystal_ball:"🔮",cucumber:"🥒",cupid:"💘",curly_loop:"➰",currency_exchange:"💱",curry:"🍛",custard:"🍮",customs:"🛃",cyclone:"🌀",dagger:"🗡",dancer:"💃",dancing_women:"👯",dancing_men:"👯‍♂️",dango:"🍡",dark_sunglasses:"🕶",dart:"🎯",dash:"💨",date:"📅",deciduous_tree:"🌳",deer:"🦌",department_store:"🏬",derelict_house:"🏚",desert:"🏜",desert_island:"🏝",desktop_computer:"🖥",male_detective:"🕵️",diamond_shape_with_a_dot_inside:"💠",diamonds:"♦️",disappointed:"😞",disappointed_relieved:"😥",dizzy:"💫",dizzy_face:"😵",do_not_litter:"🚯",dog:"🐶",dog2:"🐕",dollar:"💵",dolls:"🎎",dolphin:"🐬",door:"🚪",doughnut:"🍩",dove:"🕊",dragon:"🐉",dragon_face:"🐲",dress:"👗",dromedary_camel:"🐪",drooling_face:"🤤",droplet:"💧",drum:"🥁",duck:"🦆",dvd:"📀","e-mail":"📧",eagle:"🦅",ear:"👂",ear_of_rice:"🌾",earth_africa:"🌍",earth_americas:"🌎",earth_asia:"🌏",egg:"🥚",eggplant:"🍆",eight_pointed_black_star:"✴️",eight_spoked_asterisk:"✳️",electric_plug:"🔌",elephant:"🐘",email:"✉️",end:"🔚",envelope_with_arrow:"📩",euro:"💶",european_castle:"🏰",european_post_office:"🏤",evergreen_tree:"🌲",exclamation:"❗️",expressionless:"😑",eye:"👁",eye_speech_bubble:"👁‍🗨",eyeglasses:"👓",eyes:"👀",face_with_head_bandage:"🤕",face_with_thermometer:"🤒",fist_oncoming:"👊",factory:"🏭",fallen_leaf:"🍂",family_man_woman_boy:"👪",family_man_boy:"👨‍👦",family_man_boy_boy:"👨‍👦‍👦",family_man_girl:"👨‍👧",family_man_girl_boy:"👨‍👧‍👦",family_man_girl_girl:"👨‍👧‍👧",family_man_man_boy:"👨‍👨‍👦",family_man_man_boy_boy:"👨‍👨‍👦‍👦",family_man_man_girl:"👨‍👨‍👧",family_man_man_girl_boy:"👨‍👨‍👧‍👦",family_man_man_girl_girl:"👨‍👨‍👧‍👧",family_man_woman_boy_boy:"👨‍👩‍👦‍👦",family_man_woman_girl:"👨‍👩‍👧",family_man_woman_girl_boy:"👨‍👩‍👧‍👦",family_man_woman_girl_girl:"👨‍👩‍👧‍👧",family_woman_boy:"👩‍👦",family_woman_boy_boy:"👩‍👦‍👦",family_woman_girl:"👩‍👧",family_woman_girl_boy:"👩‍👧‍👦",family_woman_girl_girl:"👩‍👧‍👧",family_woman_woman_boy:"👩‍👩‍👦",family_woman_woman_boy_boy:"👩‍👩‍👦‍👦",family_woman_woman_girl:"👩‍👩‍👧",family_woman_woman_girl_boy:"👩‍👩‍👧‍👦",family_woman_woman_girl_girl:"👩‍👩‍👧‍👧",fast_forward:"⏩",fax:"📠",fearful:"😨",feet:"🐾",female_detective:"🕵️‍♀️",ferris_wheel:"🎡",ferry:"⛴",field_hockey:"🏑",file_cabinet:"🗄",file_folder:"📁",film_projector:"📽",film_strip:"🎞",fire:"🔥",fire_engine:"🚒",fireworks:"🎆",first_quarter_moon:"🌓",first_quarter_moon_with_face:"🌛",fish:"🐟",fish_cake:"🍥",fishing_pole_and_fish:"🎣",fist_raised:"✊",fist_left:"🤛",fist_right:"🤜",flags:"🎏",flashlight:"🔦",fleur_de_lis:"⚜️",flight_arrival:"🛬",flight_departure:"🛫",floppy_disk:"💾",flower_playing_cards:"🎴",flushed:"😳",fog:"🌫",foggy:"🌁",football:"🏈",footprints:"👣",fork_and_knife:"🍴",fountain:"⛲️",fountain_pen:"🖋",four_leaf_clover:"🍀",fox_face:"🦊",framed_picture:"🖼",free:"🆓",fried_egg:"🍳",fried_shrimp:"🍤",fries:"🍟",frog:"🐸",frowning:"😦",frowning_face:"☹️",frowning_man:"🙍‍♂️",frowning_woman:"🙍",middle_finger:"🖕",fuelpump:"⛽️",full_moon:"🌕",full_moon_with_face:"🌝",funeral_urn:"⚱️",game_die:"🎲",gear:"⚙️",gem:"💎",gemini:"♊️",ghost:"👻",gift:"🎁",gift_heart:"💝",girl:"👧",globe_with_meridians:"🌐",goal_net:"🥅",goat:"🐐",golf:"⛳️",golfing_man:"🏌️",golfing_woman:"🏌️‍♀️",gorilla:"🦍",grapes:"🍇",green_apple:"🍏",green_book:"📗",green_heart:"💚",green_salad:"🥗",grey_exclamation:"❕",grey_question:"❔",grimacing:"😬",grin:"😁",grinning:"😀",guardsman:"💂",guardswoman:"💂‍♀️",guitar:"🎸",gun:"🔫",haircut_woman:"💇",haircut_man:"💇‍♂️",hamburger:"🍔",hammer:"🔨",hammer_and_pick:"⚒",hammer_and_wrench:"🛠",hamster:"🐹",hand:"✋",handbag:"👜",handshake:"🤝",hankey:"💩",hatched_chick:"🐥",hatching_chick:"🐣",headphones:"🎧",hear_no_evil:"🙉",heart:"❤️",heart_decoration:"💟",heart_eyes:"😍",heart_eyes_cat:"😻",heartbeat:"💓",heartpulse:"💗",hearts:"♥️",heavy_check_mark:"✔️",heavy_division_sign:"➗",heavy_dollar_sign:"💲",heavy_heart_exclamation:"❣️",heavy_minus_sign:"➖",heavy_multiplication_x:"✖️",heavy_plus_sign:"➕",helicopter:"🚁",herb:"🌿",hibiscus:"🌺",high_brightness:"🔆",high_heel:"👠",hocho:"🔪",hole:"🕳",honey_pot:"🍯",horse:"🐴",horse_racing:"🏇",hospital:"🏥",hot_pepper:"🌶",hotdog:"🌭",hotel:"🏨",hotsprings:"♨️",hourglass:"⌛️",hourglass_flowing_sand:"⏳",house:"🏠",house_with_garden:"🏡",houses:"🏘",hugs:"🤗",hushed:"😯",ice_cream:"🍨",ice_hockey:"🏒",ice_skate:"⛸",icecream:"🍦",id:"🆔",ideograph_advantage:"🉐",imp:"👿",inbox_tray:"📥",incoming_envelope:"📨",tipping_hand_woman:"💁",information_source:"ℹ️",innocent:"😇",interrobang:"⁉️",iphone:"📱",izakaya_lantern:"🏮",jack_o_lantern:"🎃",japan:"🗾",japanese_castle:"🏯",japanese_goblin:"👺",japanese_ogre:"👹",jeans:"👖",joy:"😂",joy_cat:"😹",joystick:"🕹",kaaba:"🕋",key:"🔑",keyboard:"⌨️",keycap_ten:"🔟",kick_scooter:"🛴",kimono:"👘",kiss:"💋",kissing:"😗",kissing_cat:"😽",kissing_closed_eyes:"😚",kissing_heart:"😘",kissing_smiling_eyes:"😙",kiwi_fruit:"🥝",koala:"🐨",koko:"🈁",label:"🏷",large_blue_circle:"🔵",large_blue_diamond:"🔷",large_orange_diamond:"🔶",last_quarter_moon:"🌗",last_quarter_moon_with_face:"🌜",latin_cross:"✝️",laughing:"😆",leaves:"🍃",ledger:"📒",left_luggage:"🛅",left_right_arrow:"↔️",leftwards_arrow_with_hook:"↩️",lemon:"🍋",leo:"♌️",leopard:"🐆",level_slider:"🎚",libra:"♎️",light_rail:"🚈",link:"🔗",lion:"🦁",lips:"👄",lipstick:"💄",lizard:"🦎",lock:"🔒",lock_with_ink_pen:"🔏",lollipop:"🍭",loop:"➿",loud_sound:"🔊",loudspeaker:"📢",love_hotel:"🏩",love_letter:"💌",low_brightness:"🔅",lying_face:"🤥",m:"Ⓜ️",mag:"🔍",mag_right:"🔎",mahjong:"🀄️",mailbox:"📫",mailbox_closed:"📪",mailbox_with_mail:"📬",mailbox_with_no_mail:"📭",man:"👨",man_artist:"👨‍🎨",man_astronaut:"👨‍🚀",man_cartwheeling:"🤸‍♂️",man_cook:"👨‍🍳",man_dancing:"🕺",man_facepalming:"🤦‍♂️",man_factory_worker:"👨‍🏭",man_farmer:"👨‍🌾",man_firefighter:"👨‍🚒",man_health_worker:"👨‍⚕️",man_in_tuxedo:"🤵",man_judge:"👨‍⚖️",man_juggling:"🤹‍♂️",man_mechanic:"👨‍🔧",man_office_worker:"👨‍💼",man_pilot:"👨‍✈️",man_playing_handball:"🤾‍♂️",man_playing_water_polo:"🤽‍♂️",man_scientist:"👨‍🔬",man_shrugging:"🤷‍♂️",man_singer:"👨‍🎤",man_student:"👨‍🎓",man_teacher:"👨‍🏫",man_technologist:"👨‍💻",man_with_gua_pi_mao:"👲",man_with_turban:"👳",tangerine:"🍊",mans_shoe:"👞",mantelpiece_clock:"🕰",maple_leaf:"🍁",martial_arts_uniform:"🥋",mask:"😷",massage_woman:"💆",massage_man:"💆‍♂️",meat_on_bone:"🍖",medal_military:"🎖",medal_sports:"🏅",mega:"📣",melon:"🍈",memo:"📝",men_wrestling:"🤼‍♂️",menorah:"🕎",mens:"🚹",metal:"🤘",metro:"🚇",microphone:"🎤",microscope:"🔬",milk_glass:"🥛",milky_way:"🌌",minibus:"🚐",minidisc:"💽",mobile_phone_off:"📴",money_mouth_face:"🤑",money_with_wings:"💸",moneybag:"💰",monkey:"🐒",monkey_face:"🐵",monorail:"🚝",moon:"🌔",mortar_board:"🎓",mosque:"🕌",motor_boat:"🛥",motor_scooter:"🛵",motorcycle:"🏍",motorway:"🛣",mount_fuji:"🗻",mountain:"⛰",mountain_biking_man:"🚵",mountain_biking_woman:"🚵‍♀️",mountain_cableway:"🚠",mountain_railway:"🚞",mountain_snow:"🏔",mouse:"🐭",mouse2:"🐁",movie_camera:"🎥",moyai:"🗿",mrs_claus:"🤶",muscle:"💪",mushroom:"🍄",musical_keyboard:"🎹",musical_note:"🎵",musical_score:"🎼",mute:"🔇",nail_care:"💅",name_badge:"📛",national_park:"🏞",nauseated_face:"🤢",necktie:"👔",negative_squared_cross_mark:"❎",nerd_face:"🤓",neutral_face:"😐",new:"🆕",new_moon:"🌑",new_moon_with_face:"🌚",newspaper:"📰",newspaper_roll:"🗞",next_track_button:"⏭",ng:"🆖",no_good_man:"🙅‍♂️",no_good_woman:"🙅",night_with_stars:"🌃",no_bell:"🔕",no_bicycles:"🚳",no_entry:"⛔️",no_entry_sign:"🚫",no_mobile_phones:"📵",no_mouth:"😶",no_pedestrians:"🚷",no_smoking:"🚭","non-potable_water":"🚱",nose:"👃",notebook:"📓",notebook_with_decorative_cover:"📔",notes:"🎶",nut_and_bolt:"🔩",o:"⭕️",o2:"🅾️",ocean:"🌊",octopus:"🐙",oden:"🍢",office:"🏢",oil_drum:"🛢",ok:"🆗",ok_hand:"👌",ok_man:"🙆‍♂️",ok_woman:"🙆",old_key:"🗝",older_man:"👴",older_woman:"👵",om:"🕉",on:"🔛",oncoming_automobile:"🚘",oncoming_bus:"🚍",oncoming_police_car:"🚔",oncoming_taxi:"🚖",open_file_folder:"📂",open_hands:"👐",open_mouth:"😮",open_umbrella:"☂️",ophiuchus:"⛎",orange_book:"📙",orthodox_cross:"☦️",outbox_tray:"📤",owl:"🦉",ox:"🐂",package:"📦",page_facing_up:"📄",page_with_curl:"📃",pager:"📟",paintbrush:"🖌",palm_tree:"🌴",pancakes:"🥞",panda_face:"🐼",paperclip:"📎",paperclips:"🖇",parasol_on_ground:"⛱",parking:"🅿️",part_alternation_mark:"〽️",partly_sunny:"⛅️",passenger_ship:"🛳",passport_control:"🛂",pause_button:"⏸",peace_symbol:"☮️",peach:"🍑",peanuts:"🥜",pear:"🍐",pen:"🖊",pencil2:"✏️",penguin:"🐧",pensive:"😔",performing_arts:"🎭",persevere:"😣",person_fencing:"🤺",pouting_woman:"🙎",phone:"☎️",pick:"⛏",pig:"🐷",pig2:"🐖",pig_nose:"🐽",pill:"💊",pineapple:"🍍",ping_pong:"🏓",pisces:"♓️",pizza:"🍕",place_of_worship:"🛐",plate_with_cutlery:"🍽",play_or_pause_button:"⏯",point_down:"👇",point_left:"👈",point_right:"👉",point_up:"☝️",point_up_2:"👆",police_car:"🚓",policewoman:"👮‍♀️",poodle:"🐩",popcorn:"🍿",post_office:"🏣",postal_horn:"📯",postbox:"📮",potable_water:"🚰",potato:"🥔",pouch:"👝",poultry_leg:"🍗",pound:"💷",rage:"😡",pouting_cat:"😾",pouting_man:"🙎‍♂️",pray:"🙏",prayer_beads:"📿",pregnant_woman:"🤰",previous_track_button:"⏮",prince:"🤴",princess:"👸",printer:"🖨",purple_heart:"💜",purse:"👛",pushpin:"📌",put_litter_in_its_place:"🚮",question:"❓",rabbit:"🐰",rabbit2:"🐇",racehorse:"🐎",racing_car:"🏎",radio:"📻",radio_button:"🔘",radioactive:"☢️",railway_car:"🚃",railway_track:"🛤",rainbow:"🌈",rainbow_flag:"🏳️‍🌈",raised_back_of_hand:"🤚",raised_hand_with_fingers_splayed:"🖐",raised_hands:"🙌",raising_hand_woman:"🙋",raising_hand_man:"🙋‍♂️",ram:"🐏",ramen:"🍜",rat:"🐀",record_button:"⏺",recycle:"♻️",red_circle:"🔴",registered:"®️",relaxed:"☺️",relieved:"😌",reminder_ribbon:"🎗",repeat:"🔁",repeat_one:"🔂",rescue_worker_helmet:"⛑",restroom:"🚻",revolving_hearts:"💞",rewind:"⏪",rhinoceros:"🦏",ribbon:"🎀",rice:"🍚",rice_ball:"🍙",rice_cracker:"🍘",rice_scene:"🎑",right_anger_bubble:"🗯",ring:"💍",robot:"🤖",rocket:"🚀",rofl:"🤣",roll_eyes:"🙄",roller_coaster:"🎢",rooster:"🐓",rose:"🌹",rosette:"🏵",rotating_light:"🚨",round_pushpin:"📍",rowing_man:"🚣",rowing_woman:"🚣‍♀️",rugby_football:"🏉",running_man:"🏃",running_shirt_with_sash:"🎽",running_woman:"🏃‍♀️",sa:"🈂️",sagittarius:"♐️",sake:"🍶",sandal:"👡",santa:"🎅",satellite:"📡",saxophone:"🎷",school:"🏫",school_satchel:"🎒",scissors:"✂️",scorpion:"🦂",scorpius:"♏️",scream:"😱",scream_cat:"🙀",scroll:"📜",seat:"💺",secret:"㊙️",see_no_evil:"🙈",seedling:"🌱",selfie:"🤳",shallow_pan_of_food:"🥘",shamrock:"☘️",shark:"🦈",shaved_ice:"🍧",sheep:"🐑",shell:"🐚",shield:"🛡",shinto_shrine:"⛩",ship:"🚢",shirt:"👕",shopping:"🛍",shopping_cart:"🛒",shower:"🚿",shrimp:"🦐",signal_strength:"📶",six_pointed_star:"🔯",ski:"🎿",skier:"⛷",skull:"💀",skull_and_crossbones:"☠️",sleeping:"😴",sleeping_bed:"🛌",sleepy:"😪",slightly_frowning_face:"🙁",slightly_smiling_face:"🙂",slot_machine:"🎰",small_airplane:"🛩",small_blue_diamond:"🔹",small_orange_diamond:"🔸",small_red_triangle:"🔺",small_red_triangle_down:"🔻",smile:"😄",smile_cat:"😸",smiley:"😃",smiley_cat:"😺",smiling_imp:"😈",smirk:"😏",smirk_cat:"😼",smoking:"🚬",snail:"🐌",snake:"🐍",sneezing_face:"🤧",snowboarder:"🏂",snowflake:"❄️",snowman:"⛄️",snowman_with_snow:"☃️",sob:"😭",soccer:"⚽️",soon:"🔜",sos:"🆘",sound:"🔉",space_invader:"👾",spades:"♠️",spaghetti:"🍝",sparkle:"❇️",sparkler:"🎇",sparkles:"✨",sparkling_heart:"💖",speak_no_evil:"🙊",speaker:"🔈",speaking_head:"🗣",speech_balloon:"💬",speedboat:"🚤",spider:"🕷",spider_web:"🕸",spiral_calendar:"🗓",spiral_notepad:"🗒",spoon:"🥄",squid:"🦑",stadium:"🏟",star:"⭐️",star2:"🌟",star_and_crescent:"☪️",star_of_david:"✡️",stars:"🌠",station:"🚉",statue_of_liberty:"🗽",steam_locomotive:"🚂",stew:"🍲",stop_button:"⏹",stop_sign:"🛑",stopwatch:"⏱",straight_ruler:"📏",strawberry:"🍓",stuck_out_tongue:"😛",stuck_out_tongue_closed_eyes:"😝",stuck_out_tongue_winking_eye:"😜",studio_microphone:"🎙",stuffed_flatbread:"🥙",sun_behind_large_cloud:"🌥",sun_behind_rain_cloud:"🌦",sun_behind_small_cloud:"🌤",sun_with_face:"🌞",sunflower:"🌻",sunglasses:"😎",sunny:"☀️",sunrise:"🌅",sunrise_over_mountains:"🌄",surfing_man:"🏄",surfing_woman:"🏄‍♀️",sushi:"🍣",suspension_railway:"🚟",sweat:"😓",sweat_drops:"💦",sweat_smile:"😅",sweet_potato:"🍠",swimming_man:"🏊",swimming_woman:"🏊‍♀️",symbols:"🔣",synagogue:"🕍",syringe:"💉",taco:"🌮",tada:"🎉",tanabata_tree:"🎋",taurus:"♉️",taxi:"🚕",tea:"🍵",telephone_receiver:"📞",telescope:"🔭",tennis:"🎾",tent:"⛺️",thermometer:"🌡",thinking:"🤔",thought_balloon:"💭",ticket:"🎫",tickets:"🎟",tiger:"🐯",tiger2:"🐅",timer_clock:"⏲",tipping_hand_man:"💁‍♂️",tired_face:"😫",tm:"™️",toilet:"🚽",tokyo_tower:"🗼",tomato:"🍅",tongue:"👅",top:"🔝",tophat:"🎩",tornado:"🌪",trackball:"🖲",tractor:"🚜",traffic_light:"🚥",train:"🚋",train2:"🚆",tram:"🚊",triangular_flag_on_post:"🚩",triangular_ruler:"📐",trident:"🔱",triumph:"😤",trolleybus:"🚎",trophy:"🏆",tropical_drink:"🍹",tropical_fish:"🐠",truck:"🚚",trumpet:"🎺",tulip:"🌷",tumbler_glass:"🥃",turkey:"🦃",turtle:"🐢",tv:"📺",twisted_rightwards_arrows:"🔀",two_hearts:"💕",two_men_holding_hands:"👬",two_women_holding_hands:"👭",u5272:"🈹",u5408:"🈴",u55b6:"🈺",u6307:"🈯️",u6708:"🈷️",u6709:"🈶",u6e80:"🈵",u7121:"🈚️",u7533:"🈸",u7981:"🈲",u7a7a:"🈳",umbrella:"☔️",unamused:"😒",underage:"🔞",unicorn:"🦄",unlock:"🔓",up:"🆙",upside_down_face:"🙃",v:"✌️",vertical_traffic_light:"🚦",vhs:"📼",vibration_mode:"📳",video_camera:"📹",video_game:"🎮",violin:"🎻",virgo:"♍️",volcano:"🌋",volleyball:"🏐",vs:"🆚",vulcan_salute:"🖖",walking_man:"🚶",walking_woman:"🚶‍♀️",waning_crescent_moon:"🌘",waning_gibbous_moon:"🌖",warning:"⚠️",wastebasket:"🗑",watch:"⌚️",water_buffalo:"🐃",watermelon:"🍉",wave:"👋",wavy_dash:"〰️",waxing_crescent_moon:"🌒",wc:"🚾",weary:"😩",wedding:"💒",weight_lifting_man:"🏋️",weight_lifting_woman:"🏋️‍♀️",whale:"🐳",whale2:"🐋",wheel_of_dharma:"☸️",wheelchair:"♿️",white_check_mark:"✅",white_circle:"⚪️",white_flag:"🏳️",white_flower:"💮",white_large_square:"⬜️",white_medium_small_square:"◽️",white_medium_square:"◻️",white_small_square:"▫️",white_square_button:"🔳",wilted_flower:"🥀",wind_chime:"🎐",wind_face:"🌬",wine_glass:"🍷",wink:"😉",wolf:"🐺",woman:"👩",woman_artist:"👩‍🎨",woman_astronaut:"👩‍🚀",woman_cartwheeling:"🤸‍♀️",woman_cook:"👩‍🍳",woman_facepalming:"🤦‍♀️",woman_factory_worker:"👩‍🏭",woman_farmer:"👩‍🌾",woman_firefighter:"👩‍🚒",woman_health_worker:"👩‍⚕️",woman_judge:"👩‍⚖️",woman_juggling:"🤹‍♀️",woman_mechanic:"👩‍🔧",woman_office_worker:"👩‍💼",woman_pilot:"👩‍✈️",woman_playing_handball:"🤾‍♀️",woman_playing_water_polo:"🤽‍♀️",woman_scientist:"👩‍🔬",woman_shrugging:"🤷‍♀️",woman_singer:"👩‍🎤",woman_student:"👩‍🎓",woman_teacher:"👩‍🏫",woman_technologist:"👩‍💻",woman_with_turban:"👳‍♀️",womans_clothes:"👚",womans_hat:"👒",women_wrestling:"🤼‍♀️",womens:"🚺",world_map:"🗺",worried:"😟",wrench:"🔧",writing_hand:"✍️",x:"❌",yellow_heart:"💛",yen:"💴",yin_yang:"☯️",yum:"😋",zap:"⚡️",zipper_mouth_face:"🤐",zzz:"💤",octocat:'<img alt=":octocat:" height="20" width="20" align="absmiddle" src="https://assets-cdn.github.com/images/icons/emoji/octocat.png">',showdown:`<span style="font-family: 'Anonymous Pro', monospace; text-decoration: underline; text-decoration-style: dashed; text-decoration-color: #3e8b8a;text-underline-position: under;">S</span>`},o.Converter=function(M){var y={},k=[],S=[],C={},R=c,T={parsed:{},raw:"",format:""};E();function E(){M=M||{};for(var P in i)i.hasOwnProperty(P)&&(y[P]=i[P]);if(typeof M=="object")for(var $ in M)M.hasOwnProperty($)&&(y[$]=M[$]);else throw Error("Converter expects the passed parameter to be an object, but "+typeof M+" was passed instead.");y.extensions&&o.helper.forEach(y.extensions,B)}function B(P,$){if($=$||null,o.helper.isString(P))if(P=o.helper.stdExtName(P),$=P,o.extensions[P]){console.warn("DEPRECATION WARNING: "+P+" is an old extension that uses a deprecated loading method.Please inform the developer that the extension should be updated!"),N(o.extensions[P],P);return}else if(!o.helper.isUndefined(s[P]))P=s[P];else throw Error('Extension "'+P+'" could not be loaded. It was either not found or is not a valid extension.');typeof P=="function"&&(P=P()),o.helper.isArray(P)||(P=[P]);var F=u(P,$);if(!F.valid)throw Error(F.error);for(var X=0;X<P.length;++X){switch(P[X].type){case"lang":k.push(P[X]);break;case"output":S.push(P[X]);break}if(P[X].hasOwnProperty("listeners"))for(var Z in P[X].listeners)P[X].listeners.hasOwnProperty(Z)&&j(Z,P[X].listeners[Z])}}function N(P,$){typeof P=="function"&&(P=P(new o.Converter)),o.helper.isArray(P)||(P=[P]);var F=u(P,$);if(!F.valid)throw Error(F.error);for(var X=0;X<P.length;++X)switch(P[X].type){case"lang":k.push(P[X]);break;case"output":S.push(P[X]);break;default:throw Error("Extension loader error: Type unrecognized!!!")}}function j(P,$){if(!o.helper.isString(P))throw Error("Invalid argument in converter.listen() method: name must be a string, but "+typeof P+" given");if(typeof $!="function")throw Error("Invalid argument in converter.listen() method: callback must be a function, but "+typeof $+" given");C.hasOwnProperty(P)||(C[P]=[]),C[P].push($)}function I(P){var $=P.match(/^\s*/)[0].length,F=new RegExp("^\\s{0,"+$+"}","gm");return P.replace(F,"")}this._dispatch=function($,F,X,Z){if(C.hasOwnProperty($))for(var V=0;V<C[$].length;++V){var ee=C[$][V]($,F,this,X,Z);ee&&typeof ee<"u"&&(F=ee)}return F},this.listen=function(P,$){return j(P,$),this},this.makeHtml=function(P){if(!P)return P;var $={gHtmlBlocks:[],gHtmlMdBlocks:[],gHtmlSpans:[],gUrls:{},gTitles:{},gDimensions:{},gListLevel:0,hashLinkCounts:{},langExtensions:k,outputModifiers:S,converter:this,ghCodeBlocks:[],metadata:{parsed:{},raw:"",format:""}};return P=P.replace(/¨/g,"¨T"),P=P.replace(/\$/g,"¨D"),P=P.replace(/\r\n/g,` +%s`,o.name,o,Gf(o,u.attributes),u.originalContent),console.groupEnd()):!c.isValid&&!u.isValid&&l.forEach(({log:d,args:p})=>d(...p)),u}function Ko(e,t){return xie(e).reduce((n,o)=>{const r=Bie(o,t);return r&&n.push(r),n},[])}function Lie(){return Ei("from").filter(({type:e})=>e==="raw").map(e=>e.isMatch?e:{...e,isMatch:t=>e.selector&&t.matches(e.selector)})}function Pie(e,t){const n=document.implementation.createHTMLDocument("");return n.body.innerHTML=e,Array.from(n.body.children).flatMap(o=>{const r=xc(Lie(),({isMatch:c})=>c(o));if(!r)return f0.isNative?Ko(`<!-- wp:html -->${o.outerHTML}<!-- /wp:html -->`):Ee("core/html",Wl("core/html",o.outerHTML));const{transform:s,blockName:i}=r;if(s){const c=s(o,t);return o.hasAttribute("class")&&(c.attributes.className=o.getAttribute("class")),c}return Ee(i,Wl(i,o.outerHTML))})}function tw(e,t={}){const n=document.implementation.createHTMLDocument(""),o=document.implementation.createHTMLDocument(""),r=n.body,s=o.body;for(r.innerHTML=e;r.firstChild;){const i=r.firstChild;i.nodeType===i.TEXT_NODE?R4(i)?r.removeChild(i):((!s.lastChild||s.lastChild.nodeName!=="P")&&s.appendChild(o.createElement("P")),s.lastChild.appendChild(i)):i.nodeType===i.ELEMENT_NODE?i.nodeName==="BR"?(i.nextSibling&&i.nextSibling.nodeName==="BR"&&(s.appendChild(o.createElement("P")),r.removeChild(i.nextSibling)),s.lastChild&&s.lastChild.nodeName==="P"&&s.lastChild.hasChildNodes()?s.lastChild.appendChild(i):r.removeChild(i)):i.nodeName==="P"?R4(i)&&!t.raw?r.removeChild(i):s.appendChild(i):k2(i)?((!s.lastChild||s.lastChild.nodeName!=="P")&&s.appendChild(o.createElement("P")),s.lastChild.appendChild(i)):s.appendChild(i):r.removeChild(i)}return s.innerHTML}function jie(e,t){if(e.nodeType!==e.COMMENT_NODE||e.nodeValue!=="nextpage"&&e.nodeValue.indexOf("more")!==0)return;const n=Dje(e,t);if(!e.parentNode||e.parentNode.nodeName!=="P")xSe(e,n);else{const o=Array.from(e.parentNode.childNodes),r=o.indexOf(e),s=e.parentNode.parentNode||t.body,i=(c,l)=>(c||(c=t.createElement("p")),c.appendChild(l),c);[o.slice(0,r).reduce(i,null),n,o.slice(r+1).reduce(i,null)].forEach(c=>c&&s.insertBefore(c,e.parentNode)),pf(e.parentNode)}}function Dje(e,t){if(e.nodeValue==="nextpage")return $je(t);const n=e.nodeValue.slice(4).trim();let o=e,r=!1;for(;o=o.nextSibling;)if(o.nodeType===o.COMMENT_NODE&&o.nodeValue==="noteaser"){r=!0,pf(o);break}return Fje(n,r,t)}function Fje(e,t,n){const o=n.createElement("wp-block");return o.dataset.block="core/more",e&&(o.dataset.customText=e),t&&(o.dataset.noTeaser=""),o}function $je(e){const t=e.createElement("wp-block");return t.dataset.block="core/nextpage",t}function hX(e){return e.nodeName==="OL"||e.nodeName==="UL"}function Vje(e){return Array.from(e.childNodes).map(({nodeValue:t=""})=>t).join("")}function Iie(e){if(!hX(e))return;const t=e,n=e.previousElementSibling;if(n&&n.nodeName===e.nodeName&&t.children.length===1){for(;t.firstChild;)n.appendChild(t.firstChild);t.parentNode.removeChild(t)}const o=e.parentNode;if(o&&o.nodeName==="LI"&&o.children.length===1&&!/\S/.test(Vje(o))){const r=o,s=r.previousElementSibling,i=r.parentNode;s&&(s.appendChild(t),i.removeChild(r))}if(o&&hX(o)){const r=e.previousElementSibling;r?r.appendChild(e):mM(e)}}function Die(e){return t=>{t.nodeName==="BLOCKQUOTE"&&(t.innerHTML=tw(t.innerHTML,e))}}function Hje(e,t){var n;const o=e.nodeName.toLowerCase();return o==="figcaption"||M0e(e)?!1:o in((n=t?.figure?.children)!==null&&n!==void 0?n:{})}function Uje(e,t){var n;return e.nodeName.toLowerCase()in((n=t?.figure?.children?.a?.children)!==null&&n!==void 0?n:{})}function oC(e,t=e){const n=e.ownerDocument.createElement("figure");t.parentNode.insertBefore(n,t),n.appendChild(e)}function Fie(e,t,n){if(!Hje(e,n))return;let o=e;const r=e.parentNode;Uje(e,n)&&r.nodeName==="A"&&r.childNodes.length===1&&(o=e.parentNode);const s=o.closest("p,div");s?e.classList?(e.classList.contains("alignright")||e.classList.contains("alignleft")||e.classList.contains("aligncenter")||!s.textContent.trim())&&oC(o,s):oC(o,s):oC(o)}function UB(e,t,n=0){const o=nz(e);o.lastIndex=n;const r=o.exec(t);if(!r)return;if(r[1]==="["&&r[7]==="]")return UB(e,t,o.lastIndex);const s={index:r.index,content:r[0],shortcode:XB(r)};return r[1]&&(s.content=s.content.slice(1),s.index++),r[7]&&(s.content=s.content.slice(0,-1)),s}function Xje(e,t,n){return t.replace(nz(e),function(o,r,s,i,c,l,u,d){if(r==="["&&d==="]")return o;const p=n(XB(arguments));return p||p===""?r+p+d:o})}function Gje(e){return new GB(e).string()}function nz(e){return new RegExp("\\[(\\[?)("+e+")(?![\\w-])([^\\]\\/]*(?:\\/(?!\\])[^\\]\\/]*)*?)(?:(\\/)\\]|\\](?:([^\\[]*(?:\\[(?!\\/\\2\\])[^\\[]*)*)(\\[\\/\\2\\]))?)(\\]?)","g")}const mX=Hs(e=>{const t={},n=[],o=/([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*'([^']*)'(?:\s|$)|([\w-]+)\s*=\s*([^\s'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|'([^']*)'(?:\s|$)|(\S+)(?:\s|$)/g;e=e.replace(/[\u00a0\u200b]/g," ");let r;for(;r=o.exec(e);)r[1]?t[r[1].toLowerCase()]=r[2]:r[3]?t[r[3].toLowerCase()]=r[4]:r[5]?t[r[5].toLowerCase()]=r[6]:r[7]?n.push(r[7]):r[8]?n.push(r[8]):r[9]&&n.push(r[9]);return{named:t,numeric:n}});function XB(e){let t;return e[4]?t="self-closing":e[6]?t="closed":t="single",new GB({tag:e[2],attrs:e[3],type:t,content:e[5]})}const GB=Object.assign(function(e){const{tag:t,attrs:n,type:o,content:r}=e||{};if(Object.assign(this,{tag:t,type:o,content:r}),this.attrs={named:{},numeric:[]},!n)return;const s=["named","numeric"];typeof n=="string"?this.attrs=mX(n):n.length===s.length&&s.every((i,c)=>i===n[c])?this.attrs=n:Object.entries(n).forEach(([i,c])=>{this.set(i,c)})},{next:UB,replace:Xje,string:Gje,regexp:nz,attrs:mX,fromMatch:XB});Object.assign(GB.prototype,{get(e){return this.attrs[typeof e=="number"?"numeric":"named"][e]},set(e,t){return this.attrs[typeof e=="number"?"numeric":"named"][e]=t,this},string(){let e="["+this.tag;return this.attrs.numeric.forEach(t=>{/\s/.test(t)?e+=' "'+t+'"':e+=" "+t}),Object.entries(this.attrs.named).forEach(([t,n])=>{e+=" "+t+'="'+n+'"'}),this.type==="single"?e+"]":this.type==="self-closing"?e+" /]":(e+="]",this.content&&(e+=this.content),e+"[/"+this.tag+"]")}});const gX=e=>Array.isArray(e)?e:[e],MX=/(\n|<p>)\s*$/,zX=/^\s*(\n|<\/p>)/;function u2(e,t=0,n=[]){const o=Ei("from"),r=xc(o,u=>n.indexOf(u.blockName)===-1&&u.type==="shortcode"&&gX(u.tag).some(d=>nz(d).test(e)));if(!r)return[e];const i=gX(r.tag).find(u=>nz(u).test(e));let c;const l=t;if(c=UB(i,e,t)){t=c.index+c.content.length;const u=e.substr(0,c.index),d=e.substr(t);if(!c.shortcode.content?.includes("<")&&!(MX.test(u)&&zX.test(d)))return u2(e,t);if(r.isMatch&&!r.isMatch(c.shortcode.attrs))return u2(e,l,[...n,r.blockName]);let p=[];if(typeof r.transform=="function")p=[].concat(r.transform(c.shortcode.attrs,c)),p=p.map(f=>(f.originalContent=c.shortcode.content,Q4(f,on(f.name))));else{const f=Object.fromEntries(Object.entries(r.attributes).filter(([,z])=>z.shortcode).map(([z,A])=>[z,A.shortcode(c.shortcode.attrs,c)])),b=on(r.blockName);if(!b)return[e];const h={...b,attributes:r.attributes};let g=Ee(r.blockName,Wl(h,c.shortcode.content,f));g.originalContent=c.shortcode.content,g=Q4(g,h),p=[g]}return[...u2(u.replace(MX,"")),...p,...u2(d.replace(zX,""))]}return[e]}function Kje(e,t){const o={phrasingContentSchema:q5(t),isPaste:t==="paste"},r=e.map(({isMatch:l,blockName:u,schema:d})=>{const p=Et(u,"anchor");return d=typeof d=="function"?d(o):d,!p&&!l?d:d?Object.fromEntries(Object.entries(d).map(([f,b])=>{let h=b.attributes||[];return p&&(h=[...h,"id"]),[f,{...b,attributes:h,isMatch:l||void 0}]})):{}});function s(l,u,d){switch(d){case"children":return l==="*"||u==="*"?"*":{...l,...u};case"attributes":case"require":return[...l||[],...u||[]];case"isMatch":return!l||!u?void 0:(...p)=>l(...p)||u(...p)}}function i(l,u){for(const d in u)l[d]=l[d]?s(l[d],u[d],d):{...u[d]};return l}function c(l,u){for(const d in u)l[d]=l[d]?i(l[d],u[d]):{...u[d]};return l}return r.reduce(c,{})}function $ie(e){return Kje(Lie(),e)}function Yje(e){return!/<(?!br[ />])/i.test(e)}function Vie(e,t,n,o){Array.from(e).forEach(r=>{Vie(r.childNodes,t,n,o),t.forEach(s=>{n.contains(r)&&s(r,n,o)})})}function tf(e,t=[],n){const o=document.implementation.createHTMLDocument("");return o.body.innerHTML=e,Vie(o.body.childNodes,t,o,n),o.body.innerHTML}function J4(e,t){const n=e[`${t}Sibling`];if(n&&k2(n))return n;const{parentNode:o}=e;if(!(!o||!k2(o)))return J4(o,t)}function Hie(e){e.nodeType===e.COMMENT_NODE&&pf(e)}function Zje(e,t){if(M0e(e))return!0;if(!t)return!1;const n=e.nodeName.toLowerCase();return[["ul","li","ol"],["h1","h2","h3","h4","h5","h6"]].some(r=>[n,t].filter(s=>!r.includes(s)).length===0)}function Uie(e,t){return e.every(n=>Zje(n,t)&&Uie(Array.from(n.children),t))}function Qje(e){return e.nodeName==="BR"&&e.previousSibling&&e.previousSibling.nodeName==="BR"}function Jje(e,t){const n=document.implementation.createHTMLDocument("");n.body.innerHTML=e;const o=Array.from(n.body.children);return!o.some(Qje)&&Uie(o,t)}function Xie(e,t){if(e.nodeName==="SPAN"&&e.style){const{fontWeight:n,fontStyle:o,textDecorationLine:r,textDecoration:s,verticalAlign:i}=e.style;(n==="bold"||n==="700")&&Ag(t.createElement("strong"),e),o==="italic"&&Ag(t.createElement("em"),e),(r==="line-through"||s.includes("line-through"))&&Ag(t.createElement("s"),e),i==="super"?Ag(t.createElement("sup"),e):i==="sub"&&Ag(t.createElement("sub"),e)}else e.nodeName==="B"?e=IH(e,"strong"):e.nodeName==="I"?e=IH(e,"em"):e.nodeName==="A"&&(e.target&&e.target.toLowerCase()==="_blank"?e.rel="noreferrer noopener":(e.removeAttribute("target"),e.removeAttribute("rel")),e.name&&!e.id&&(e.id=e.name),e.id&&!e.ownerDocument.querySelector(`[href="#${e.id}"]`)&&e.removeAttribute("id"))}function Gie(e){e.nodeName!=="SCRIPT"&&e.nodeName!=="NOSCRIPT"&&e.nodeName!=="TEMPLATE"&&e.nodeName!=="STYLE"||e.parentNode.removeChild(e)}function Kie(e){if(e.nodeType!==e.ELEMENT_NODE)return;const t=e.getAttribute("style");if(!t||!t.includes("mso-list"))return;t.split(";").reduce((o,r)=>{const[s,i]=r.split(":");return s&&i&&(o[s.trim().toLowerCase()]=i.trim().toLowerCase()),o},{})["mso-list"]==="ignore"&&e.remove()}function rC(e){return e.nodeName==="OL"||e.nodeName==="UL"}function e7e(e,t){if(e.nodeName!=="P")return;const n=e.getAttribute("style");if(!n||!n.includes("mso-list"))return;const o=e.previousElementSibling;if(!o||!rC(o)){const d=e.textContent.trim().slice(0,1),p=/[1iIaA]/.test(d),f=t.createElement(p?"ol":"ul");p&&f.setAttribute("type",d),e.parentNode.insertBefore(f,e)}const r=e.previousElementSibling,s=r.nodeName,i=t.createElement("li");let c=r;i.innerHTML=tf(e.innerHTML,[Kie]);const l=/mso-list\s*:[^;]+level([0-9]+)/i.exec(n);let u=l&&parseInt(l[1],10)-1||0;for(;u--;)c=c.lastChild||c,rC(c)&&(c=c.lastChild||c);rC(c)||(c=c.appendChild(t.createElement(s))),c.appendChild(i),e.parentNode.removeChild(e)}const ex={};function ls(e){const t=window.URL.createObjectURL(e);return ex[t]=e,t}function Yie(e){return ex[e]}function Zie(e){return Yie(e)?.type.split("/")[0]}function tx(e){ex[e]&&window.URL.revokeObjectURL(e),delete ex[e]}function Nr(e){return!e||!e.indexOf?!1:e.indexOf("blob:")===0}function OX(e,t,n=""){if(!e||!t)return;const o=new window.Blob([t],{type:n}),r=window.URL.createObjectURL(o),s=document.createElement("a");s.href=r,s.download=e,s.style.display="none",document.body.appendChild(s),s.click(),document.body.removeChild(s),window.URL.revokeObjectURL(r)}function t7e(e){if(e.nodeName==="IMG"){if(e.src.indexOf("file:")===0&&(e.src=""),e.src.indexOf("data:")===0){const[t,n]=e.src.split(","),[o]=t.slice(5).split(";");if(!n||!o){e.src="";return}let r;try{r=atob(n)}catch{e.src="";return}const s=new Uint8Array(r.length);for(let l=0;l<s.length;l++)s[l]=r.charCodeAt(l);const i=o.replace("/","."),c=new window.File([s],i,{type:o});e.src=ls(c)}(e.height===1||e.width===1)&&e.parentNode.removeChild(e)}}function n7e(e){e.nodeName==="DIV"&&(e.innerHTML=tw(e.innerHTML))}var Fv={exports:{}},o7e=Fv.exports,yX;function r7e(){return yX||(yX=1,function(e){(function(){function t(M){var y={omitExtraWLInCodeBlocks:{defaultValue:!1,describe:"Omit the default extra whiteline added to code blocks",type:"boolean"},noHeaderId:{defaultValue:!1,describe:"Turn on/off generated header id",type:"boolean"},prefixHeaderId:{defaultValue:!1,describe:"Add a prefix to the generated header ids. Passing a string will prefix that string to the header id. Setting to true will add a generic 'section-' prefix",type:"string"},rawPrefixHeaderId:{defaultValue:!1,describe:'Setting this option to true will prevent showdown from modifying the prefix. This might result in malformed IDs (if, for instance, the " char is used in the prefix)',type:"boolean"},ghCompatibleHeaderId:{defaultValue:!1,describe:"Generate header ids compatible with github style (spaces are replaced with dashes, a bunch of non alphanumeric chars are removed)",type:"boolean"},rawHeaderId:{defaultValue:!1,describe:`Remove only spaces, ' and " from generated header ids (including prefixes), replacing them with dashes (-). WARNING: This might result in malformed ids`,type:"boolean"},headerLevelStart:{defaultValue:!1,describe:"The header blocks level start",type:"integer"},parseImgDimensions:{defaultValue:!1,describe:"Turn on/off image dimension parsing",type:"boolean"},simplifiedAutoLink:{defaultValue:!1,describe:"Turn on/off GFM autolink style",type:"boolean"},excludeTrailingPunctuationFromURLs:{defaultValue:!1,describe:"Excludes trailing punctuation from links generated with autoLinking",type:"boolean"},literalMidWordUnderscores:{defaultValue:!1,describe:"Parse midword underscores as literal underscores",type:"boolean"},literalMidWordAsterisks:{defaultValue:!1,describe:"Parse midword asterisks as literal asterisks",type:"boolean"},strikethrough:{defaultValue:!1,describe:"Turn on/off strikethrough support",type:"boolean"},tables:{defaultValue:!1,describe:"Turn on/off tables support",type:"boolean"},tablesHeaderId:{defaultValue:!1,describe:"Add an id to table headers",type:"boolean"},ghCodeBlocks:{defaultValue:!0,describe:"Turn on/off GFM fenced code blocks support",type:"boolean"},tasklists:{defaultValue:!1,describe:"Turn on/off GFM tasklist support",type:"boolean"},smoothLivePreview:{defaultValue:!1,describe:"Prevents weird effects in live previews due to incomplete input",type:"boolean"},smartIndentationFix:{defaultValue:!1,description:"Tries to smartly fix indentation in es6 strings",type:"boolean"},disableForced4SpacesIndentedSublists:{defaultValue:!1,description:"Disables the requirement of indenting nested sublists by 4 spaces",type:"boolean"},simpleLineBreaks:{defaultValue:!1,description:"Parses simple line breaks as <br> (GFM Style)",type:"boolean"},requireSpaceBeforeHeadingText:{defaultValue:!1,description:"Makes adding a space between `#` and the header text mandatory (GFM Style)",type:"boolean"},ghMentions:{defaultValue:!1,description:"Enables github @mentions",type:"boolean"},ghMentionsLink:{defaultValue:"https://github.com/{u}",description:"Changes the link generated by @mentions. Only applies if ghMentions option is enabled.",type:"string"},encodeEmails:{defaultValue:!0,description:"Encode e-mail addresses through the use of Character Entities, transforming ASCII e-mail addresses into its equivalent decimal entities",type:"boolean"},openLinksInNewWindow:{defaultValue:!1,description:"Open all links in new windows",type:"boolean"},backslashEscapesHTMLTags:{defaultValue:!1,description:"Support for HTML Tag escaping. ex: <div>foo</div>",type:"boolean"},emoji:{defaultValue:!1,description:"Enable emoji support. Ex: `this is a :smile: emoji`",type:"boolean"},underline:{defaultValue:!1,description:"Enable support for underline. Syntax is double or triple underscores: `__underline word__`. With this option enabled, underscores no longer parses into `<em>` and `<strong>`",type:"boolean"},completeHTMLDocument:{defaultValue:!1,description:"Outputs a complete html document, including `<html>`, `<head>` and `<body>` tags",type:"boolean"},metadata:{defaultValue:!1,description:"Enable support for document metadata (defined at the top of the document between `«««` and `»»»` or between `---` and `---`).",type:"boolean"},splitAdjacentBlockquotes:{defaultValue:!1,description:"Split adjacent blockquote blocks",type:"boolean"}};if(M===!1)return JSON.parse(JSON.stringify(y));var k={};for(var S in y)y.hasOwnProperty(S)&&(k[S]=y[S].defaultValue);return k}function n(){var M=t(!0),y={};for(var k in M)M.hasOwnProperty(k)&&(y[k]=!0);return y}var o={},r={},s={},i=t(!0),c="vanilla",l={github:{omitExtraWLInCodeBlocks:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,disableForced4SpacesIndentedSublists:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghCompatibleHeaderId:!0,ghMentions:!0,backslashEscapesHTMLTags:!0,emoji:!0,splitAdjacentBlockquotes:!0},original:{noHeaderId:!0,ghCodeBlocks:!1},ghost:{omitExtraWLInCodeBlocks:!0,parseImgDimensions:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,smoothLivePreview:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghMentions:!1,encodeEmails:!0},vanilla:t(!0),allOn:n()};o.helper={},o.extensions={},o.setOption=function(M,y){return i[M]=y,this},o.getOption=function(M){return i[M]},o.getOptions=function(){return i},o.resetOptions=function(){i=t(!0)},o.setFlavor=function(M){if(!l.hasOwnProperty(M))throw Error(M+" flavor was not found");o.resetOptions();var y=l[M];c=M;for(var k in y)y.hasOwnProperty(k)&&(i[k]=y[k])},o.getFlavor=function(){return c},o.getFlavorOptions=function(M){if(l.hasOwnProperty(M))return l[M]},o.getDefaultOptions=function(M){return t(M)},o.subParser=function(M,y){if(o.helper.isString(M))if(typeof y<"u")r[M]=y;else{if(r.hasOwnProperty(M))return r[M];throw Error("SubParser named "+M+" not registered!")}},o.extension=function(M,y){if(!o.helper.isString(M))throw Error("Extension 'name' must be a string");if(M=o.helper.stdExtName(M),o.helper.isUndefined(y)){if(!s.hasOwnProperty(M))throw Error("Extension named "+M+" is not registered!");return s[M]}else{typeof y=="function"&&(y=y()),o.helper.isArray(y)||(y=[y]);var k=u(y,M);if(k.valid)s[M]=y;else throw Error(k.error)}},o.getAllExtensions=function(){return s},o.removeExtension=function(M){delete s[M]},o.resetExtensions=function(){s={}};function u(M,y){var k=y?"Error in "+y+" extension->":"Error in unnamed extension",S={valid:!0,error:""};o.helper.isArray(M)||(M=[M]);for(var C=0;C<M.length;++C){var R=k+" sub-extension "+C+": ",T=M[C];if(typeof T!="object")return S.valid=!1,S.error=R+"must be an object, but "+typeof T+" given",S;if(!o.helper.isString(T.type))return S.valid=!1,S.error=R+'property "type" must be a string, but '+typeof T.type+" given",S;var E=T.type=T.type.toLowerCase();if(E==="language"&&(E=T.type="lang"),E==="html"&&(E=T.type="output"),E!=="lang"&&E!=="output"&&E!=="listener")return S.valid=!1,S.error=R+"type "+E+' is not recognized. Valid values: "lang/language", "output/html" or "listener"',S;if(E==="listener"){if(o.helper.isUndefined(T.listeners))return S.valid=!1,S.error=R+'. Extensions of type "listener" must have a property called "listeners"',S}else if(o.helper.isUndefined(T.filter)&&o.helper.isUndefined(T.regex))return S.valid=!1,S.error=R+E+' extensions must define either a "regex" property or a "filter" method',S;if(T.listeners){if(typeof T.listeners!="object")return S.valid=!1,S.error=R+'"listeners" property must be an object but '+typeof T.listeners+" given",S;for(var B in T.listeners)if(T.listeners.hasOwnProperty(B)&&typeof T.listeners[B]!="function")return S.valid=!1,S.error=R+'"listeners" property must be an hash of [event name]: [callback]. listeners.'+B+" must be a function but "+typeof T.listeners[B]+" given",S}if(T.filter){if(typeof T.filter!="function")return S.valid=!1,S.error=R+'"filter" must be a function, but '+typeof T.filter+" given",S}else if(T.regex){if(o.helper.isString(T.regex)&&(T.regex=new RegExp(T.regex,"g")),!(T.regex instanceof RegExp))return S.valid=!1,S.error=R+'"regex" property must either be a string or a RegExp object, but '+typeof T.regex+" given",S;if(o.helper.isUndefined(T.replace))return S.valid=!1,S.error=R+'"regex" extensions must implement a replace string or function',S}}return S}o.validateExtension=function(M){var y=u(M,null);return y.valid?!0:(console.warn(y.error),!1)},o.hasOwnProperty("helper")||(o.helper={}),o.helper.isString=function(M){return typeof M=="string"||M instanceof String},o.helper.isFunction=function(M){var y={};return M&&y.toString.call(M)==="[object Function]"},o.helper.isArray=function(M){return Array.isArray(M)},o.helper.isUndefined=function(M){return typeof M>"u"},o.helper.forEach=function(M,y){if(o.helper.isUndefined(M))throw new Error("obj param is required");if(o.helper.isUndefined(y))throw new Error("callback param is required");if(!o.helper.isFunction(y))throw new Error("callback param must be a function/closure");if(typeof M.forEach=="function")M.forEach(y);else if(o.helper.isArray(M))for(var k=0;k<M.length;k++)y(M[k],k,M);else if(typeof M=="object")for(var S in M)M.hasOwnProperty(S)&&y(M[S],S,M);else throw new Error("obj does not seem to be an array or an iterable object")},o.helper.stdExtName=function(M){return M.replace(/[_?*+\/\\.^-]/g,"").replace(/\s/g,"").toLowerCase()};function d(M,y){var k=y.charCodeAt(0);return"¨E"+k+"E"}o.helper.escapeCharactersCallback=d,o.helper.escapeCharacters=function(M,y,k){var S="(["+y.replace(/([\[\]\\])/g,"\\$1")+"])";k&&(S="\\\\"+S);var C=new RegExp(S,"g");return M=M.replace(C,d),M},o.helper.unescapeHTMLEntities=function(M){return M.replace(/"/g,'"').replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&")};var p=function(M,y,k,S){var C=S||"",R=C.indexOf("g")>-1,T=new RegExp(y+"|"+k,"g"+C.replace(/g/g,"")),E=new RegExp(y,C.replace(/g/g,"")),B=[],N,j,I,P,$;do for(N=0;I=T.exec(M);)if(E.test(I[0]))N++||(j=T.lastIndex,P=j-I[0].length);else if(N&&!--N){$=I.index+I[0].length;var F={left:{start:P,end:j},match:{start:j,end:I.index},right:{start:I.index,end:$},wholeMatch:{start:P,end:$}};if(B.push(F),!R)return B}while(N&&(T.lastIndex=j));return B};o.helper.matchRecursiveRegExp=function(M,y,k,S){for(var C=p(M,y,k,S),R=[],T=0;T<C.length;++T)R.push([M.slice(C[T].wholeMatch.start,C[T].wholeMatch.end),M.slice(C[T].match.start,C[T].match.end),M.slice(C[T].left.start,C[T].left.end),M.slice(C[T].right.start,C[T].right.end)]);return R},o.helper.replaceRecursiveRegExp=function(M,y,k,S,C){if(!o.helper.isFunction(y)){var R=y;y=function(){return R}}var T=p(M,k,S,C),E=M,B=T.length;if(B>0){var N=[];T[0].wholeMatch.start!==0&&N.push(M.slice(0,T[0].wholeMatch.start));for(var j=0;j<B;++j)N.push(y(M.slice(T[j].wholeMatch.start,T[j].wholeMatch.end),M.slice(T[j].match.start,T[j].match.end),M.slice(T[j].left.start,T[j].left.end),M.slice(T[j].right.start,T[j].right.end))),j<B-1&&N.push(M.slice(T[j].wholeMatch.end,T[j+1].wholeMatch.start));T[B-1].wholeMatch.end<M.length&&N.push(M.slice(T[B-1].wholeMatch.end)),E=N.join("")}return E},o.helper.regexIndexOf=function(M,y,k){if(!o.helper.isString(M))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";if(!(y instanceof RegExp))throw"InvalidArgumentError: second parameter of showdown.helper.regexIndexOf function must be an instance of RegExp";var S=M.substring(k||0).search(y);return S>=0?S+(k||0):S},o.helper.splitAtIndex=function(M,y){if(!o.helper.isString(M))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";return[M.substring(0,y),M.substring(y)]},o.helper.encodeEmailAddress=function(M){var y=[function(k){return"&#"+k.charCodeAt(0)+";"},function(k){return"&#x"+k.charCodeAt(0).toString(16)+";"},function(k){return k}];return M=M.replace(/./g,function(k){if(k==="@")k=y[Math.floor(Math.random()*2)](k);else{var S=Math.random();k=S>.9?y[2](k):S>.45?y[1](k):y[0](k)}return k}),M},o.helper.padEnd=function(y,k,S){return k=k>>0,S=String(S||" "),y.length>k?String(y):(k=k-y.length,k>S.length&&(S+=S.repeat(k/S.length)),String(y)+S.slice(0,k))},typeof console>"u"&&(console={warn:function(M){alert(M)},log:function(M){alert(M)},error:function(M){throw M}}),o.helper.regexes={asteriskDashAndColon:/([*_:~])/g},o.helper.emojis={"+1":"👍","-1":"👎",100:"💯",1234:"🔢","1st_place_medal":"🥇","2nd_place_medal":"🥈","3rd_place_medal":"🥉","8ball":"🎱",a:"🅰️",ab:"🆎",abc:"🔤",abcd:"🔡",accept:"🉑",aerial_tramway:"🚡",airplane:"✈️",alarm_clock:"⏰",alembic:"⚗️",alien:"👽",ambulance:"🚑",amphora:"🏺",anchor:"⚓️",angel:"👼",anger:"💢",angry:"😠",anguished:"😧",ant:"🐜",apple:"🍎",aquarius:"♒️",aries:"♈️",arrow_backward:"◀️",arrow_double_down:"⏬",arrow_double_up:"⏫",arrow_down:"⬇️",arrow_down_small:"🔽",arrow_forward:"▶️",arrow_heading_down:"⤵️",arrow_heading_up:"⤴️",arrow_left:"⬅️",arrow_lower_left:"↙️",arrow_lower_right:"↘️",arrow_right:"➡️",arrow_right_hook:"↪️",arrow_up:"⬆️",arrow_up_down:"↕️",arrow_up_small:"🔼",arrow_upper_left:"↖️",arrow_upper_right:"↗️",arrows_clockwise:"🔃",arrows_counterclockwise:"🔄",art:"🎨",articulated_lorry:"🚛",artificial_satellite:"🛰",astonished:"😲",athletic_shoe:"👟",atm:"🏧",atom_symbol:"⚛️",avocado:"🥑",b:"🅱️",baby:"👶",baby_bottle:"🍼",baby_chick:"🐤",baby_symbol:"🚼",back:"🔙",bacon:"🥓",badminton:"🏸",baggage_claim:"🛄",baguette_bread:"🥖",balance_scale:"⚖️",balloon:"🎈",ballot_box:"🗳",ballot_box_with_check:"☑️",bamboo:"🎍",banana:"🍌",bangbang:"‼️",bank:"🏦",bar_chart:"📊",barber:"💈",baseball:"⚾️",basketball:"🏀",basketball_man:"⛹️",basketball_woman:"⛹️‍♀️",bat:"🦇",bath:"🛀",bathtub:"🛁",battery:"🔋",beach_umbrella:"🏖",bear:"🐻",bed:"🛏",bee:"🐝",beer:"🍺",beers:"🍻",beetle:"🐞",beginner:"🔰",bell:"🔔",bellhop_bell:"🛎",bento:"🍱",biking_man:"🚴",bike:"🚲",biking_woman:"🚴‍♀️",bikini:"👙",biohazard:"☣️",bird:"🐦",birthday:"🎂",black_circle:"⚫️",black_flag:"🏴",black_heart:"🖤",black_joker:"🃏",black_large_square:"⬛️",black_medium_small_square:"◾️",black_medium_square:"◼️",black_nib:"✒️",black_small_square:"▪️",black_square_button:"🔲",blonde_man:"👱",blonde_woman:"👱‍♀️",blossom:"🌼",blowfish:"🐡",blue_book:"📘",blue_car:"🚙",blue_heart:"💙",blush:"😊",boar:"🐗",boat:"⛵️",bomb:"💣",book:"📖",bookmark:"🔖",bookmark_tabs:"📑",books:"📚",boom:"💥",boot:"👢",bouquet:"💐",bowing_man:"🙇",bow_and_arrow:"🏹",bowing_woman:"🙇‍♀️",bowling:"🎳",boxing_glove:"🥊",boy:"👦",bread:"🍞",bride_with_veil:"👰",bridge_at_night:"🌉",briefcase:"💼",broken_heart:"💔",bug:"🐛",building_construction:"🏗",bulb:"💡",bullettrain_front:"🚅",bullettrain_side:"🚄",burrito:"🌯",bus:"🚌",business_suit_levitating:"🕴",busstop:"🚏",bust_in_silhouette:"👤",busts_in_silhouette:"👥",butterfly:"🦋",cactus:"🌵",cake:"🍰",calendar:"📆",call_me_hand:"🤙",calling:"📲",camel:"🐫",camera:"📷",camera_flash:"📸",camping:"🏕",cancer:"♋️",candle:"🕯",candy:"🍬",canoe:"🛶",capital_abcd:"🔠",capricorn:"♑️",car:"🚗",card_file_box:"🗃",card_index:"📇",card_index_dividers:"🗂",carousel_horse:"🎠",carrot:"🥕",cat:"🐱",cat2:"🐈",cd:"💿",chains:"⛓",champagne:"🍾",chart:"💹",chart_with_downwards_trend:"📉",chart_with_upwards_trend:"📈",checkered_flag:"🏁",cheese:"🧀",cherries:"🍒",cherry_blossom:"🌸",chestnut:"🌰",chicken:"🐔",children_crossing:"🚸",chipmunk:"🐿",chocolate_bar:"🍫",christmas_tree:"🎄",church:"⛪️",cinema:"🎦",circus_tent:"🎪",city_sunrise:"🌇",city_sunset:"🌆",cityscape:"🏙",cl:"🆑",clamp:"🗜",clap:"👏",clapper:"🎬",classical_building:"🏛",clinking_glasses:"🥂",clipboard:"📋",clock1:"🕐",clock10:"🕙",clock1030:"🕥",clock11:"🕚",clock1130:"🕦",clock12:"🕛",clock1230:"🕧",clock130:"🕜",clock2:"🕑",clock230:"🕝",clock3:"🕒",clock330:"🕞",clock4:"🕓",clock430:"🕟",clock5:"🕔",clock530:"🕠",clock6:"🕕",clock630:"🕡",clock7:"🕖",clock730:"🕢",clock8:"🕗",clock830:"🕣",clock9:"🕘",clock930:"🕤",closed_book:"📕",closed_lock_with_key:"🔐",closed_umbrella:"🌂",cloud:"☁️",cloud_with_lightning:"🌩",cloud_with_lightning_and_rain:"⛈",cloud_with_rain:"🌧",cloud_with_snow:"🌨",clown_face:"🤡",clubs:"♣️",cocktail:"🍸",coffee:"☕️",coffin:"⚰️",cold_sweat:"😰",comet:"☄️",computer:"💻",computer_mouse:"🖱",confetti_ball:"🎊",confounded:"😖",confused:"😕",congratulations:"㊗️",construction:"🚧",construction_worker_man:"👷",construction_worker_woman:"👷‍♀️",control_knobs:"🎛",convenience_store:"🏪",cookie:"🍪",cool:"🆒",policeman:"👮",copyright:"©️",corn:"🌽",couch_and_lamp:"🛋",couple:"👫",couple_with_heart_woman_man:"💑",couple_with_heart_man_man:"👨‍❤️‍👨",couple_with_heart_woman_woman:"👩‍❤️‍👩",couplekiss_man_man:"👨‍❤️‍💋‍👨",couplekiss_man_woman:"💏",couplekiss_woman_woman:"👩‍❤️‍💋‍👩",cow:"🐮",cow2:"🐄",cowboy_hat_face:"🤠",crab:"🦀",crayon:"🖍",credit_card:"💳",crescent_moon:"🌙",cricket:"🏏",crocodile:"🐊",croissant:"🥐",crossed_fingers:"🤞",crossed_flags:"🎌",crossed_swords:"⚔️",crown:"👑",cry:"😢",crying_cat_face:"😿",crystal_ball:"🔮",cucumber:"🥒",cupid:"💘",curly_loop:"➰",currency_exchange:"💱",curry:"🍛",custard:"🍮",customs:"🛃",cyclone:"🌀",dagger:"🗡",dancer:"💃",dancing_women:"👯",dancing_men:"👯‍♂️",dango:"🍡",dark_sunglasses:"🕶",dart:"🎯",dash:"💨",date:"📅",deciduous_tree:"🌳",deer:"🦌",department_store:"🏬",derelict_house:"🏚",desert:"🏜",desert_island:"🏝",desktop_computer:"🖥",male_detective:"🕵️",diamond_shape_with_a_dot_inside:"💠",diamonds:"♦️",disappointed:"😞",disappointed_relieved:"😥",dizzy:"💫",dizzy_face:"😵",do_not_litter:"🚯",dog:"🐶",dog2:"🐕",dollar:"💵",dolls:"🎎",dolphin:"🐬",door:"🚪",doughnut:"🍩",dove:"🕊",dragon:"🐉",dragon_face:"🐲",dress:"👗",dromedary_camel:"🐪",drooling_face:"🤤",droplet:"💧",drum:"🥁",duck:"🦆",dvd:"📀","e-mail":"📧",eagle:"🦅",ear:"👂",ear_of_rice:"🌾",earth_africa:"🌍",earth_americas:"🌎",earth_asia:"🌏",egg:"🥚",eggplant:"🍆",eight_pointed_black_star:"✴️",eight_spoked_asterisk:"✳️",electric_plug:"🔌",elephant:"🐘",email:"✉️",end:"🔚",envelope_with_arrow:"📩",euro:"💶",european_castle:"🏰",european_post_office:"🏤",evergreen_tree:"🌲",exclamation:"❗️",expressionless:"😑",eye:"👁",eye_speech_bubble:"👁‍🗨",eyeglasses:"👓",eyes:"👀",face_with_head_bandage:"🤕",face_with_thermometer:"🤒",fist_oncoming:"👊",factory:"🏭",fallen_leaf:"🍂",family_man_woman_boy:"👪",family_man_boy:"👨‍👦",family_man_boy_boy:"👨‍👦‍👦",family_man_girl:"👨‍👧",family_man_girl_boy:"👨‍👧‍👦",family_man_girl_girl:"👨‍👧‍👧",family_man_man_boy:"👨‍👨‍👦",family_man_man_boy_boy:"👨‍👨‍👦‍👦",family_man_man_girl:"👨‍👨‍👧",family_man_man_girl_boy:"👨‍👨‍👧‍👦",family_man_man_girl_girl:"👨‍👨‍👧‍👧",family_man_woman_boy_boy:"👨‍👩‍👦‍👦",family_man_woman_girl:"👨‍👩‍👧",family_man_woman_girl_boy:"👨‍👩‍👧‍👦",family_man_woman_girl_girl:"👨‍👩‍👧‍👧",family_woman_boy:"👩‍👦",family_woman_boy_boy:"👩‍👦‍👦",family_woman_girl:"👩‍👧",family_woman_girl_boy:"👩‍👧‍👦",family_woman_girl_girl:"👩‍👧‍👧",family_woman_woman_boy:"👩‍👩‍👦",family_woman_woman_boy_boy:"👩‍👩‍👦‍👦",family_woman_woman_girl:"👩‍👩‍👧",family_woman_woman_girl_boy:"👩‍👩‍👧‍👦",family_woman_woman_girl_girl:"👩‍👩‍👧‍👧",fast_forward:"⏩",fax:"📠",fearful:"😨",feet:"🐾",female_detective:"🕵️‍♀️",ferris_wheel:"🎡",ferry:"⛴",field_hockey:"🏑",file_cabinet:"🗄",file_folder:"📁",film_projector:"📽",film_strip:"🎞",fire:"🔥",fire_engine:"🚒",fireworks:"🎆",first_quarter_moon:"🌓",first_quarter_moon_with_face:"🌛",fish:"🐟",fish_cake:"🍥",fishing_pole_and_fish:"🎣",fist_raised:"✊",fist_left:"🤛",fist_right:"🤜",flags:"🎏",flashlight:"🔦",fleur_de_lis:"⚜️",flight_arrival:"🛬",flight_departure:"🛫",floppy_disk:"💾",flower_playing_cards:"🎴",flushed:"😳",fog:"🌫",foggy:"🌁",football:"🏈",footprints:"👣",fork_and_knife:"🍴",fountain:"⛲️",fountain_pen:"🖋",four_leaf_clover:"🍀",fox_face:"🦊",framed_picture:"🖼",free:"🆓",fried_egg:"🍳",fried_shrimp:"🍤",fries:"🍟",frog:"🐸",frowning:"😦",frowning_face:"☹️",frowning_man:"🙍‍♂️",frowning_woman:"🙍",middle_finger:"🖕",fuelpump:"⛽️",full_moon:"🌕",full_moon_with_face:"🌝",funeral_urn:"⚱️",game_die:"🎲",gear:"⚙️",gem:"💎",gemini:"♊️",ghost:"👻",gift:"🎁",gift_heart:"💝",girl:"👧",globe_with_meridians:"🌐",goal_net:"🥅",goat:"🐐",golf:"⛳️",golfing_man:"🏌️",golfing_woman:"🏌️‍♀️",gorilla:"🦍",grapes:"🍇",green_apple:"🍏",green_book:"📗",green_heart:"💚",green_salad:"🥗",grey_exclamation:"❕",grey_question:"❔",grimacing:"😬",grin:"😁",grinning:"😀",guardsman:"💂",guardswoman:"💂‍♀️",guitar:"🎸",gun:"🔫",haircut_woman:"💇",haircut_man:"💇‍♂️",hamburger:"🍔",hammer:"🔨",hammer_and_pick:"⚒",hammer_and_wrench:"🛠",hamster:"🐹",hand:"✋",handbag:"👜",handshake:"🤝",hankey:"💩",hatched_chick:"🐥",hatching_chick:"🐣",headphones:"🎧",hear_no_evil:"🙉",heart:"❤️",heart_decoration:"💟",heart_eyes:"😍",heart_eyes_cat:"😻",heartbeat:"💓",heartpulse:"💗",hearts:"♥️",heavy_check_mark:"✔️",heavy_division_sign:"➗",heavy_dollar_sign:"💲",heavy_heart_exclamation:"❣️",heavy_minus_sign:"➖",heavy_multiplication_x:"✖️",heavy_plus_sign:"➕",helicopter:"🚁",herb:"🌿",hibiscus:"🌺",high_brightness:"🔆",high_heel:"👠",hocho:"🔪",hole:"🕳",honey_pot:"🍯",horse:"🐴",horse_racing:"🏇",hospital:"🏥",hot_pepper:"🌶",hotdog:"🌭",hotel:"🏨",hotsprings:"♨️",hourglass:"⌛️",hourglass_flowing_sand:"⏳",house:"🏠",house_with_garden:"🏡",houses:"🏘",hugs:"🤗",hushed:"😯",ice_cream:"🍨",ice_hockey:"🏒",ice_skate:"⛸",icecream:"🍦",id:"🆔",ideograph_advantage:"🉐",imp:"👿",inbox_tray:"📥",incoming_envelope:"📨",tipping_hand_woman:"💁",information_source:"ℹ️",innocent:"😇",interrobang:"⁉️",iphone:"📱",izakaya_lantern:"🏮",jack_o_lantern:"🎃",japan:"🗾",japanese_castle:"🏯",japanese_goblin:"👺",japanese_ogre:"👹",jeans:"👖",joy:"😂",joy_cat:"😹",joystick:"🕹",kaaba:"🕋",key:"🔑",keyboard:"⌨️",keycap_ten:"🔟",kick_scooter:"🛴",kimono:"👘",kiss:"💋",kissing:"😗",kissing_cat:"😽",kissing_closed_eyes:"😚",kissing_heart:"😘",kissing_smiling_eyes:"😙",kiwi_fruit:"🥝",koala:"🐨",koko:"🈁",label:"🏷",large_blue_circle:"🔵",large_blue_diamond:"🔷",large_orange_diamond:"🔶",last_quarter_moon:"🌗",last_quarter_moon_with_face:"🌜",latin_cross:"✝️",laughing:"😆",leaves:"🍃",ledger:"📒",left_luggage:"🛅",left_right_arrow:"↔️",leftwards_arrow_with_hook:"↩️",lemon:"🍋",leo:"♌️",leopard:"🐆",level_slider:"🎚",libra:"♎️",light_rail:"🚈",link:"🔗",lion:"🦁",lips:"👄",lipstick:"💄",lizard:"🦎",lock:"🔒",lock_with_ink_pen:"🔏",lollipop:"🍭",loop:"➿",loud_sound:"🔊",loudspeaker:"📢",love_hotel:"🏩",love_letter:"💌",low_brightness:"🔅",lying_face:"🤥",m:"Ⓜ️",mag:"🔍",mag_right:"🔎",mahjong:"🀄️",mailbox:"📫",mailbox_closed:"📪",mailbox_with_mail:"📬",mailbox_with_no_mail:"📭",man:"👨",man_artist:"👨‍🎨",man_astronaut:"👨‍🚀",man_cartwheeling:"🤸‍♂️",man_cook:"👨‍🍳",man_dancing:"🕺",man_facepalming:"🤦‍♂️",man_factory_worker:"👨‍🏭",man_farmer:"👨‍🌾",man_firefighter:"👨‍🚒",man_health_worker:"👨‍⚕️",man_in_tuxedo:"🤵",man_judge:"👨‍⚖️",man_juggling:"🤹‍♂️",man_mechanic:"👨‍🔧",man_office_worker:"👨‍💼",man_pilot:"👨‍✈️",man_playing_handball:"🤾‍♂️",man_playing_water_polo:"🤽‍♂️",man_scientist:"👨‍🔬",man_shrugging:"🤷‍♂️",man_singer:"👨‍🎤",man_student:"👨‍🎓",man_teacher:"👨‍🏫",man_technologist:"👨‍💻",man_with_gua_pi_mao:"👲",man_with_turban:"👳",tangerine:"🍊",mans_shoe:"👞",mantelpiece_clock:"🕰",maple_leaf:"🍁",martial_arts_uniform:"🥋",mask:"😷",massage_woman:"💆",massage_man:"💆‍♂️",meat_on_bone:"🍖",medal_military:"🎖",medal_sports:"🏅",mega:"📣",melon:"🍈",memo:"📝",men_wrestling:"🤼‍♂️",menorah:"🕎",mens:"🚹",metal:"🤘",metro:"🚇",microphone:"🎤",microscope:"🔬",milk_glass:"🥛",milky_way:"🌌",minibus:"🚐",minidisc:"💽",mobile_phone_off:"📴",money_mouth_face:"🤑",money_with_wings:"💸",moneybag:"💰",monkey:"🐒",monkey_face:"🐵",monorail:"🚝",moon:"🌔",mortar_board:"🎓",mosque:"🕌",motor_boat:"🛥",motor_scooter:"🛵",motorcycle:"🏍",motorway:"🛣",mount_fuji:"🗻",mountain:"⛰",mountain_biking_man:"🚵",mountain_biking_woman:"🚵‍♀️",mountain_cableway:"🚠",mountain_railway:"🚞",mountain_snow:"🏔",mouse:"🐭",mouse2:"🐁",movie_camera:"🎥",moyai:"🗿",mrs_claus:"🤶",muscle:"💪",mushroom:"🍄",musical_keyboard:"🎹",musical_note:"🎵",musical_score:"🎼",mute:"🔇",nail_care:"💅",name_badge:"📛",national_park:"🏞",nauseated_face:"🤢",necktie:"👔",negative_squared_cross_mark:"❎",nerd_face:"🤓",neutral_face:"😐",new:"🆕",new_moon:"🌑",new_moon_with_face:"🌚",newspaper:"📰",newspaper_roll:"🗞",next_track_button:"⏭",ng:"🆖",no_good_man:"🙅‍♂️",no_good_woman:"🙅",night_with_stars:"🌃",no_bell:"🔕",no_bicycles:"🚳",no_entry:"⛔️",no_entry_sign:"🚫",no_mobile_phones:"📵",no_mouth:"😶",no_pedestrians:"🚷",no_smoking:"🚭","non-potable_water":"🚱",nose:"👃",notebook:"📓",notebook_with_decorative_cover:"📔",notes:"🎶",nut_and_bolt:"🔩",o:"⭕️",o2:"🅾️",ocean:"🌊",octopus:"🐙",oden:"🍢",office:"🏢",oil_drum:"🛢",ok:"🆗",ok_hand:"👌",ok_man:"🙆‍♂️",ok_woman:"🙆",old_key:"🗝",older_man:"👴",older_woman:"👵",om:"🕉",on:"🔛",oncoming_automobile:"🚘",oncoming_bus:"🚍",oncoming_police_car:"🚔",oncoming_taxi:"🚖",open_file_folder:"📂",open_hands:"👐",open_mouth:"😮",open_umbrella:"☂️",ophiuchus:"⛎",orange_book:"📙",orthodox_cross:"☦️",outbox_tray:"📤",owl:"🦉",ox:"🐂",package:"📦",page_facing_up:"📄",page_with_curl:"📃",pager:"📟",paintbrush:"🖌",palm_tree:"🌴",pancakes:"🥞",panda_face:"🐼",paperclip:"📎",paperclips:"🖇",parasol_on_ground:"⛱",parking:"🅿️",part_alternation_mark:"〽️",partly_sunny:"⛅️",passenger_ship:"🛳",passport_control:"🛂",pause_button:"⏸",peace_symbol:"☮️",peach:"🍑",peanuts:"🥜",pear:"🍐",pen:"🖊",pencil2:"✏️",penguin:"🐧",pensive:"😔",performing_arts:"🎭",persevere:"😣",person_fencing:"🤺",pouting_woman:"🙎",phone:"☎️",pick:"⛏",pig:"🐷",pig2:"🐖",pig_nose:"🐽",pill:"💊",pineapple:"🍍",ping_pong:"🏓",pisces:"♓️",pizza:"🍕",place_of_worship:"🛐",plate_with_cutlery:"🍽",play_or_pause_button:"⏯",point_down:"👇",point_left:"👈",point_right:"👉",point_up:"☝️",point_up_2:"👆",police_car:"🚓",policewoman:"👮‍♀️",poodle:"🐩",popcorn:"🍿",post_office:"🏣",postal_horn:"📯",postbox:"📮",potable_water:"🚰",potato:"🥔",pouch:"👝",poultry_leg:"🍗",pound:"💷",rage:"😡",pouting_cat:"😾",pouting_man:"🙎‍♂️",pray:"🙏",prayer_beads:"📿",pregnant_woman:"🤰",previous_track_button:"⏮",prince:"🤴",princess:"👸",printer:"🖨",purple_heart:"💜",purse:"👛",pushpin:"📌",put_litter_in_its_place:"🚮",question:"❓",rabbit:"🐰",rabbit2:"🐇",racehorse:"🐎",racing_car:"🏎",radio:"📻",radio_button:"🔘",radioactive:"☢️",railway_car:"🚃",railway_track:"🛤",rainbow:"🌈",rainbow_flag:"🏳️‍🌈",raised_back_of_hand:"🤚",raised_hand_with_fingers_splayed:"🖐",raised_hands:"🙌",raising_hand_woman:"🙋",raising_hand_man:"🙋‍♂️",ram:"🐏",ramen:"🍜",rat:"🐀",record_button:"⏺",recycle:"♻️",red_circle:"🔴",registered:"®️",relaxed:"☺️",relieved:"😌",reminder_ribbon:"🎗",repeat:"🔁",repeat_one:"🔂",rescue_worker_helmet:"⛑",restroom:"🚻",revolving_hearts:"💞",rewind:"⏪",rhinoceros:"🦏",ribbon:"🎀",rice:"🍚",rice_ball:"🍙",rice_cracker:"🍘",rice_scene:"🎑",right_anger_bubble:"🗯",ring:"💍",robot:"🤖",rocket:"🚀",rofl:"🤣",roll_eyes:"🙄",roller_coaster:"🎢",rooster:"🐓",rose:"🌹",rosette:"🏵",rotating_light:"🚨",round_pushpin:"📍",rowing_man:"🚣",rowing_woman:"🚣‍♀️",rugby_football:"🏉",running_man:"🏃",running_shirt_with_sash:"🎽",running_woman:"🏃‍♀️",sa:"🈂️",sagittarius:"♐️",sake:"🍶",sandal:"👡",santa:"🎅",satellite:"📡",saxophone:"🎷",school:"🏫",school_satchel:"🎒",scissors:"✂️",scorpion:"🦂",scorpius:"♏️",scream:"😱",scream_cat:"🙀",scroll:"📜",seat:"💺",secret:"㊙️",see_no_evil:"🙈",seedling:"🌱",selfie:"🤳",shallow_pan_of_food:"🥘",shamrock:"☘️",shark:"🦈",shaved_ice:"🍧",sheep:"🐑",shell:"🐚",shield:"🛡",shinto_shrine:"⛩",ship:"🚢",shirt:"👕",shopping:"🛍",shopping_cart:"🛒",shower:"🚿",shrimp:"🦐",signal_strength:"📶",six_pointed_star:"🔯",ski:"🎿",skier:"⛷",skull:"💀",skull_and_crossbones:"☠️",sleeping:"😴",sleeping_bed:"🛌",sleepy:"😪",slightly_frowning_face:"🙁",slightly_smiling_face:"🙂",slot_machine:"🎰",small_airplane:"🛩",small_blue_diamond:"🔹",small_orange_diamond:"🔸",small_red_triangle:"🔺",small_red_triangle_down:"🔻",smile:"😄",smile_cat:"😸",smiley:"😃",smiley_cat:"😺",smiling_imp:"😈",smirk:"😏",smirk_cat:"😼",smoking:"🚬",snail:"🐌",snake:"🐍",sneezing_face:"🤧",snowboarder:"🏂",snowflake:"❄️",snowman:"⛄️",snowman_with_snow:"☃️",sob:"😭",soccer:"⚽️",soon:"🔜",sos:"🆘",sound:"🔉",space_invader:"👾",spades:"♠️",spaghetti:"🍝",sparkle:"❇️",sparkler:"🎇",sparkles:"✨",sparkling_heart:"💖",speak_no_evil:"🙊",speaker:"🔈",speaking_head:"🗣",speech_balloon:"💬",speedboat:"🚤",spider:"🕷",spider_web:"🕸",spiral_calendar:"🗓",spiral_notepad:"🗒",spoon:"🥄",squid:"🦑",stadium:"🏟",star:"⭐️",star2:"🌟",star_and_crescent:"☪️",star_of_david:"✡️",stars:"🌠",station:"🚉",statue_of_liberty:"🗽",steam_locomotive:"🚂",stew:"🍲",stop_button:"⏹",stop_sign:"🛑",stopwatch:"⏱",straight_ruler:"📏",strawberry:"🍓",stuck_out_tongue:"😛",stuck_out_tongue_closed_eyes:"😝",stuck_out_tongue_winking_eye:"😜",studio_microphone:"🎙",stuffed_flatbread:"🥙",sun_behind_large_cloud:"🌥",sun_behind_rain_cloud:"🌦",sun_behind_small_cloud:"🌤",sun_with_face:"🌞",sunflower:"🌻",sunglasses:"😎",sunny:"☀️",sunrise:"🌅",sunrise_over_mountains:"🌄",surfing_man:"🏄",surfing_woman:"🏄‍♀️",sushi:"🍣",suspension_railway:"🚟",sweat:"😓",sweat_drops:"💦",sweat_smile:"😅",sweet_potato:"🍠",swimming_man:"🏊",swimming_woman:"🏊‍♀️",symbols:"🔣",synagogue:"🕍",syringe:"💉",taco:"🌮",tada:"🎉",tanabata_tree:"🎋",taurus:"♉️",taxi:"🚕",tea:"🍵",telephone_receiver:"📞",telescope:"🔭",tennis:"🎾",tent:"⛺️",thermometer:"🌡",thinking:"🤔",thought_balloon:"💭",ticket:"🎫",tickets:"🎟",tiger:"🐯",tiger2:"🐅",timer_clock:"⏲",tipping_hand_man:"💁‍♂️",tired_face:"😫",tm:"™️",toilet:"🚽",tokyo_tower:"🗼",tomato:"🍅",tongue:"👅",top:"🔝",tophat:"🎩",tornado:"🌪",trackball:"🖲",tractor:"🚜",traffic_light:"🚥",train:"🚋",train2:"🚆",tram:"🚊",triangular_flag_on_post:"🚩",triangular_ruler:"📐",trident:"🔱",triumph:"😤",trolleybus:"🚎",trophy:"🏆",tropical_drink:"🍹",tropical_fish:"🐠",truck:"🚚",trumpet:"🎺",tulip:"🌷",tumbler_glass:"🥃",turkey:"🦃",turtle:"🐢",tv:"📺",twisted_rightwards_arrows:"🔀",two_hearts:"💕",two_men_holding_hands:"👬",two_women_holding_hands:"👭",u5272:"🈹",u5408:"🈴",u55b6:"🈺",u6307:"🈯️",u6708:"🈷️",u6709:"🈶",u6e80:"🈵",u7121:"🈚️",u7533:"🈸",u7981:"🈲",u7a7a:"🈳",umbrella:"☔️",unamused:"😒",underage:"🔞",unicorn:"🦄",unlock:"🔓",up:"🆙",upside_down_face:"🙃",v:"✌️",vertical_traffic_light:"🚦",vhs:"📼",vibration_mode:"📳",video_camera:"📹",video_game:"🎮",violin:"🎻",virgo:"♍️",volcano:"🌋",volleyball:"🏐",vs:"🆚",vulcan_salute:"🖖",walking_man:"🚶",walking_woman:"🚶‍♀️",waning_crescent_moon:"🌘",waning_gibbous_moon:"🌖",warning:"⚠️",wastebasket:"🗑",watch:"⌚️",water_buffalo:"🐃",watermelon:"🍉",wave:"👋",wavy_dash:"〰️",waxing_crescent_moon:"🌒",wc:"🚾",weary:"😩",wedding:"💒",weight_lifting_man:"🏋️",weight_lifting_woman:"🏋️‍♀️",whale:"🐳",whale2:"🐋",wheel_of_dharma:"☸️",wheelchair:"♿️",white_check_mark:"✅",white_circle:"⚪️",white_flag:"🏳️",white_flower:"💮",white_large_square:"⬜️",white_medium_small_square:"◽️",white_medium_square:"◻️",white_small_square:"▫️",white_square_button:"🔳",wilted_flower:"🥀",wind_chime:"🎐",wind_face:"🌬",wine_glass:"🍷",wink:"😉",wolf:"🐺",woman:"👩",woman_artist:"👩‍🎨",woman_astronaut:"👩‍🚀",woman_cartwheeling:"🤸‍♀️",woman_cook:"👩‍🍳",woman_facepalming:"🤦‍♀️",woman_factory_worker:"👩‍🏭",woman_farmer:"👩‍🌾",woman_firefighter:"👩‍🚒",woman_health_worker:"👩‍⚕️",woman_judge:"👩‍⚖️",woman_juggling:"🤹‍♀️",woman_mechanic:"👩‍🔧",woman_office_worker:"👩‍💼",woman_pilot:"👩‍✈️",woman_playing_handball:"🤾‍♀️",woman_playing_water_polo:"🤽‍♀️",woman_scientist:"👩‍🔬",woman_shrugging:"🤷‍♀️",woman_singer:"👩‍🎤",woman_student:"👩‍🎓",woman_teacher:"👩‍🏫",woman_technologist:"👩‍💻",woman_with_turban:"👳‍♀️",womans_clothes:"👚",womans_hat:"👒",women_wrestling:"🤼‍♀️",womens:"🚺",world_map:"🗺",worried:"😟",wrench:"🔧",writing_hand:"✍️",x:"❌",yellow_heart:"💛",yen:"💴",yin_yang:"☯️",yum:"😋",zap:"⚡️",zipper_mouth_face:"🤐",zzz:"💤",octocat:'<img alt=":octocat:" height="20" width="20" align="absmiddle" src="https://assets-cdn.github.com/images/icons/emoji/octocat.png">',showdown:`<span style="font-family: 'Anonymous Pro', monospace; text-decoration: underline; text-decoration-style: dashed; text-decoration-color: #3e8b8a;text-underline-position: under;">S</span>`},o.Converter=function(M){var y={},k=[],S=[],C={},R=c,T={parsed:{},raw:"",format:""};E();function E(){M=M||{};for(var P in i)i.hasOwnProperty(P)&&(y[P]=i[P]);if(typeof M=="object")for(var $ in M)M.hasOwnProperty($)&&(y[$]=M[$]);else throw Error("Converter expects the passed parameter to be an object, but "+typeof M+" was passed instead.");y.extensions&&o.helper.forEach(y.extensions,B)}function B(P,$){if($=$||null,o.helper.isString(P))if(P=o.helper.stdExtName(P),$=P,o.extensions[P]){console.warn("DEPRECATION WARNING: "+P+" is an old extension that uses a deprecated loading method.Please inform the developer that the extension should be updated!"),N(o.extensions[P],P);return}else if(!o.helper.isUndefined(s[P]))P=s[P];else throw Error('Extension "'+P+'" could not be loaded. It was either not found or is not a valid extension.');typeof P=="function"&&(P=P()),o.helper.isArray(P)||(P=[P]);var F=u(P,$);if(!F.valid)throw Error(F.error);for(var X=0;X<P.length;++X){switch(P[X].type){case"lang":k.push(P[X]);break;case"output":S.push(P[X]);break}if(P[X].hasOwnProperty("listeners"))for(var Z in P[X].listeners)P[X].listeners.hasOwnProperty(Z)&&j(Z,P[X].listeners[Z])}}function N(P,$){typeof P=="function"&&(P=P(new o.Converter)),o.helper.isArray(P)||(P=[P]);var F=u(P,$);if(!F.valid)throw Error(F.error);for(var X=0;X<P.length;++X)switch(P[X].type){case"lang":k.push(P[X]);break;case"output":S.push(P[X]);break;default:throw Error("Extension loader error: Type unrecognized!!!")}}function j(P,$){if(!o.helper.isString(P))throw Error("Invalid argument in converter.listen() method: name must be a string, but "+typeof P+" given");if(typeof $!="function")throw Error("Invalid argument in converter.listen() method: callback must be a function, but "+typeof $+" given");C.hasOwnProperty(P)||(C[P]=[]),C[P].push($)}function I(P){var $=P.match(/^\s*/)[0].length,F=new RegExp("^\\s{0,"+$+"}","gm");return P.replace(F,"")}this._dispatch=function($,F,X,Z){if(C.hasOwnProperty($))for(var V=0;V<C[$].length;++V){var ee=C[$][V]($,F,this,X,Z);ee&&typeof ee<"u"&&(F=ee)}return F},this.listen=function(P,$){return j(P,$),this},this.makeHtml=function(P){if(!P)return P;var $={gHtmlBlocks:[],gHtmlMdBlocks:[],gHtmlSpans:[],gUrls:{},gTitles:{},gDimensions:{},gListLevel:0,hashLinkCounts:{},langExtensions:k,outputModifiers:S,converter:this,ghCodeBlocks:[],metadata:{parsed:{},raw:"",format:""}};return P=P.replace(/¨/g,"¨T"),P=P.replace(/\$/g,"¨D"),P=P.replace(/\r\n/g,` `),P=P.replace(/\r/g,` `),P=P.replace(/\u00A0/g," "),y.smartIndentationFix&&(P=I(P)),P=` @@ -274,16 +274,16 @@ Content retrieved from post body: `);break;case"code":S=o.subParser("makeMarkdown.codeSpan")(M,y);break;case"em":case"i":S=o.subParser("makeMarkdown.emphasis")(M,y);break;case"strong":case"b":S=o.subParser("makeMarkdown.strong")(M,y);break;case"del":S=o.subParser("makeMarkdown.strikethrough")(M,y);break;case"a":S=o.subParser("makeMarkdown.links")(M,y);break;case"img":S=o.subParser("makeMarkdown.image")(M,y);break;default:S=M.outerHTML+` `}return S}),o.subParser("makeMarkdown.paragraph",function(M,y){var k="";if(M.hasChildNodes())for(var S=M.childNodes,C=S.length,R=0;R<C;++R)k+=o.subParser("makeMarkdown.node")(S[R],y);return k=k.trim(),k}),o.subParser("makeMarkdown.pre",function(M,y){var k=M.getAttribute("prenum");return"<pre>"+y.preList[k]+"</pre>"}),o.subParser("makeMarkdown.strikethrough",function(M,y){var k="";if(M.hasChildNodes()){k+="~~";for(var S=M.childNodes,C=S.length,R=0;R<C;++R)k+=o.subParser("makeMarkdown.node")(S[R],y);k+="~~"}return k}),o.subParser("makeMarkdown.strong",function(M,y){var k="";if(M.hasChildNodes()){k+="**";for(var S=M.childNodes,C=S.length,R=0;R<C;++R)k+=o.subParser("makeMarkdown.node")(S[R],y);k+="**"}return k}),o.subParser("makeMarkdown.table",function(M,y){var k="",S=[[],[]],C=M.querySelectorAll("thead>tr>th"),R=M.querySelectorAll("tbody>tr"),T,E;for(T=0;T<C.length;++T){var B=o.subParser("makeMarkdown.tableCell")(C[T],y),N="---";if(C[T].hasAttribute("style")){var j=C[T].getAttribute("style").toLowerCase().replace(/\s/g,"");switch(j){case"text-align:left;":N=":---";break;case"text-align:right;":N="---:";break;case"text-align:center;":N=":---:";break}}S[0][T]=B.trim(),S[1][T]=N}for(T=0;T<R.length;++T){var I=S.push([])-1,P=R[T].getElementsByTagName("td");for(E=0;E<C.length;++E){var $=" ";typeof P[E]<"u"&&($=o.subParser("makeMarkdown.tableCell")(P[E],y)),S[I].push($)}}var F=3;for(T=0;T<S.length;++T)for(E=0;E<S[T].length;++E){var X=S[T][E].length;X>F&&(F=X)}for(T=0;T<S.length;++T){for(E=0;E<S[T].length;++E)T===1?S[T][E].slice(-1)===":"?S[T][E]=o.helper.padEnd(S[T][E].slice(-1),F-1,"-")+":":S[T][E]=o.helper.padEnd(S[T][E],F,"-"):S[T][E]=o.helper.padEnd(S[T][E],F);k+="| "+S[T].join(" | ")+` | -`}return k.trim()}),o.subParser("makeMarkdown.tableCell",function(M,y){var k="";if(!M.hasChildNodes())return"";for(var S=M.childNodes,C=S.length,R=0;R<C;++R)k+=o.subParser("makeMarkdown.node")(S[R],y,!0);return k.trim()}),o.subParser("makeMarkdown.txt",function(M){var y=M.nodeValue;return y=y.replace(/ +/g," "),y=y.replace(/¨NBSP;/g," "),y=o.helper.unescapeHTMLEntities(y),y=y.replace(/([*_~|`])/g,"\\$1"),y=y.replace(/^(\s*)>/g,"\\$1>"),y=y.replace(/^#/gm,"\\#"),y=y.replace(/^(\s*)([-=]{3,})(\s*)$/,"$1\\$2$3"),y=y.replace(/^( {0,3}\d+)\./gm,"$1\\."),y=y.replace(/^( {0,3})([+-])/gm,"$1\\$2"),y=y.replace(/]([\s]*)\(/g,"\\]$1\\("),y=y.replace(/^ {0,3}\[([\S \t]*?)]:/gm,"\\[$1]:"),y});var v=this;e.exports?e.exports=o:v.showdown=o}).call(r7e)}($v)),$v.exports}var i7e=s7e();const a7e=Zr(i7e),c7e=new a7e.Converter({noHeaderId:!0,tables:!0,literalMidWordUnderscores:!0,omitExtraWLInCodeBlocks:!0,simpleLineBreaks:!0,strikethrough:!0});function l7e(e){return e.replace(/((?:^|\n)```)([^\n`]+)(```(?:$|\n))/,(t,n,o,r)=>`${n} +`}return k.trim()}),o.subParser("makeMarkdown.tableCell",function(M,y){var k="";if(!M.hasChildNodes())return"";for(var S=M.childNodes,C=S.length,R=0;R<C;++R)k+=o.subParser("makeMarkdown.node")(S[R],y,!0);return k.trim()}),o.subParser("makeMarkdown.txt",function(M){var y=M.nodeValue;return y=y.replace(/ +/g," "),y=y.replace(/¨NBSP;/g," "),y=o.helper.unescapeHTMLEntities(y),y=y.replace(/([*_~|`])/g,"\\$1"),y=y.replace(/^(\s*)>/g,"\\$1>"),y=y.replace(/^#/gm,"\\#"),y=y.replace(/^(\s*)([-=]{3,})(\s*)$/,"$1\\$2$3"),y=y.replace(/^( {0,3}\d+)\./gm,"$1\\."),y=y.replace(/^( {0,3})([+-])/gm,"$1\\$2"),y=y.replace(/]([\s]*)\(/g,"\\]$1\\("),y=y.replace(/^ {0,3}\[([\S \t]*?)]:/gm,"\\[$1]:"),y});var v=this;e.exports?e.exports=o:v.showdown=o}).call(o7e)}(Fv)),Fv.exports}var s7e=r7e();const i7e=Zr(s7e),a7e=new i7e.Converter({noHeaderId:!0,tables:!0,literalMidWordUnderscores:!0,omitExtraWLInCodeBlocks:!0,simpleLineBreaks:!0,strikethrough:!0});function c7e(e){return e.replace(/((?:^|\n)```)([^\n`]+)(```(?:$|\n))/,(t,n,o,r)=>`${n} ${o} -${r}`)}function u7e(e){return e.replace(/(^|\n)•( +)/g,"$1*$2")}function d7e(e){return c7e.makeHtml(l7e(u7e(e)))}function p7e(e){if(e.nodeName==="IFRAME"){const t=e.ownerDocument.createTextNode(e.src);e.parentNode.replaceChild(t,e)}}function Qie(e){!e.id||e.id.indexOf("docs-internal-guid-")!==0||(e.tagName==="B"?mM(e):e.removeAttribute("id"))}function f7e(e){return e===" "||e==="\r"||e===` -`||e===" "}function Jie(e){if(e.nodeType!==e.TEXT_NODE)return;let t=e;for(;t=t.parentNode;)if(t.nodeType===t.ELEMENT_NODE&&t.nodeName==="PRE")return;let n=e.data.replace(/[ \r\n\t]+/g," ");if(n[0]===" "){const o=ex(e,"previous");(!o||o.nodeName==="BR"||o.textContent.slice(-1)===" ")&&(n=n.slice(1))}if(n[n.length-1]===" "){const o=ex(e,"next");(!o||o.nodeName==="BR"||o.nodeType===o.TEXT_NODE&&f7e(o.textContent[0]))&&(n=n.slice(0,-1))}n?e.data=n:e.parentNode.removeChild(e)}function eae(e){e.nodeName==="BR"&&(ex(e,"next")||e.parentNode.removeChild(e))}function b7e(e){e.nodeName==="P"&&(e.hasChildNodes()||e.parentNode.removeChild(e))}function h7e(e){if(e.nodeName!=="SPAN"||e.getAttribute("data-stringify-type")!=="paragraph-break")return;const{parentNode:t}=e;t.insertBefore(e.ownerDocument.createElement("br"),e),t.insertBefore(e.ownerDocument.createElement("br"),e),t.removeChild(e)}const tae=(...e)=>window?.console?.log?.(...e);function AX(e){return e=tf(e,[Gie,Qie,Kie,Xie,Hie]),e=_E(e,R5("paste"),{inline:!0}),e=tf(e,[Jie,eae]),tae(`Processed inline HTML: +${r}`)}function l7e(e){return e.replace(/(^|\n)•( +)/g,"$1*$2")}function u7e(e){return a7e.makeHtml(c7e(l7e(e)))}function d7e(e){if(e.nodeName==="IFRAME"){const t=e.ownerDocument.createTextNode(e.src);e.parentNode.replaceChild(t,e)}}function Qie(e){!e.id||e.id.indexOf("docs-internal-guid-")!==0||(e.tagName==="B"?mM(e):e.removeAttribute("id"))}function p7e(e){return e===" "||e==="\r"||e===` +`||e===" "}function Jie(e){if(e.nodeType!==e.TEXT_NODE)return;let t=e;for(;t=t.parentNode;)if(t.nodeType===t.ELEMENT_NODE&&t.nodeName==="PRE")return;let n=e.data.replace(/[ \r\n\t]+/g," ");if(n[0]===" "){const o=J4(e,"previous");(!o||o.nodeName==="BR"||o.textContent.slice(-1)===" ")&&(n=n.slice(1))}if(n[n.length-1]===" "){const o=J4(e,"next");(!o||o.nodeName==="BR"||o.nodeType===o.TEXT_NODE&&p7e(o.textContent[0]))&&(n=n.slice(0,-1))}n?e.data=n:e.parentNode.removeChild(e)}function eae(e){e.nodeName==="BR"&&(J4(e,"next")||e.parentNode.removeChild(e))}function f7e(e){e.nodeName==="P"&&(e.hasChildNodes()||e.parentNode.removeChild(e))}function b7e(e){if(e.nodeName!=="SPAN"||e.getAttribute("data-stringify-type")!=="paragraph-break")return;const{parentNode:t}=e;t.insertBefore(e.ownerDocument.createElement("br"),e),t.insertBefore(e.ownerDocument.createElement("br"),e),t.removeChild(e)}const tae=(...e)=>window?.console?.log?.(...e);function AX(e){return e=tf(e,[Gie,Qie,Kie,Xie,Hie]),e=wE(e,q5("paste"),{inline:!0}),e=tf(e,[Jie,eae]),tae(`Processed inline HTML: -`,e),e}function Xh({HTML:e="",plainText:t="",mode:n="AUTO",tagName:o}){if(e=e.replace(/<meta[^>]+>/g,""),e=e.replace(/^\s*<html[^>]*>\s*<body[^>]*>(?:\s*<!--\s*StartFragment\s*-->)?/i,""),e=e.replace(/(?:<!--\s*EndFragment\s*-->\s*)?<\/body>\s*<\/html>\s*$/i,""),n!=="INLINE"){const d=e||t;if(d.indexOf("<!-- wp:")!==-1){const p=Ko(d);if(!(p.length===1&&p[0].name==="core/freeform"))return p}}String.prototype.normalize&&(e=e.normalize()),e=tf(e,[h7e]);const r=t&&(!e||Zje(e));r&&(e=t,/^\s+$/.test(t)||(e=d7e(e)));const s=u2(e),i=s.length>1;if(r&&!i&&n==="AUTO"&&t.indexOf(` -`)===-1&&t.indexOf("<p>")!==0&&e.indexOf("<p>")===0&&(n="INLINE"),n==="INLINE"||n==="AUTO"&&!i&&e7e(e,o))return AX(e);const c=R5("paste"),l=$ie("paste"),u=s.map(d=>{if(typeof d!="string")return d;const p=[Qie,t7e,Gie,Iie,n7e,Xie,jie,Hie,p7e,Fie,Die(),o7e],f={...l,...c};return d=tf(d,p,l),d=_E(d,f),d=nw(d),d=tf(d,[Jie,eae,b7e],l),tae(`Processed HTML piece: +`,e),e}function Xh({HTML:e="",plainText:t="",mode:n="AUTO",tagName:o}){if(e=e.replace(/<meta[^>]+>/g,""),e=e.replace(/^\s*<html[^>]*>\s*<body[^>]*>(?:\s*<!--\s*StartFragment\s*-->)?/i,""),e=e.replace(/(?:<!--\s*EndFragment\s*-->\s*)?<\/body>\s*<\/html>\s*$/i,""),n!=="INLINE"){const d=e||t;if(d.indexOf("<!-- wp:")!==-1){const p=Ko(d);if(!(p.length===1&&p[0].name==="core/freeform"))return p}}String.prototype.normalize&&(e=e.normalize()),e=tf(e,[b7e]);const r=t&&(!e||Yje(e));r&&(e=t,/^\s+$/.test(t)||(e=u7e(e)));const s=u2(e),i=s.length>1;if(r&&!i&&n==="AUTO"&&t.indexOf(` +`)===-1&&t.indexOf("<p>")!==0&&e.indexOf("<p>")===0&&(n="INLINE"),n==="INLINE"||n==="AUTO"&&!i&&Jje(e,o))return AX(e);const c=q5("paste"),l=$ie("paste"),u=s.map(d=>{if(typeof d!="string")return d;const p=[Qie,e7e,Gie,Iie,t7e,Xie,jie,Hie,d7e,Fie,Die(),n7e],f={...l,...c};return d=tf(d,p,l),d=wE(d,f),d=tw(d),d=tf(d,[Jie,eae,f7e],l),tae(`Processed HTML piece: `,d),Pie(d,Xh)}).flat().filter(Boolean);if(n==="AUTO"&&u.length===1&&Et(u[0].name,"__unstablePasteTextInline",!1)){const d=/^[\n]+|[\n]+$/g,p=t.replace(d,"");if(p!==""&&p.indexOf(` -`)===-1)return _E(ew(u[0]),c).replace(d,"")}return u}function O3({HTML:e=""}){if(e.indexOf("<!-- wp:")!==-1){const o=Ko(e);if(!(o.length===1&&o[0].name==="core/freeform"))return o}const t=u2(e),n=$ie();return t.map(o=>{if(typeof o!="string")return o;const r=[Iie,jie,Fie,Die({raw:!0})];return o=tf(o,r,n),o=nw(o,{raw:!0}),Pie(o,O3)}).flat().filter(Boolean)}function nae(e=[],t=[]){return e.length===t.length&&t.every(([n,,o],r)=>{const s=e[r];return n===s.name&&nae(s.innerBlocks,o)})}const m7e=e=>e?.source==="html",g7e=e=>e?.source==="query";function oae(e,t){return t?Object.fromEntries(Object.entries(t).map(([n,o])=>[n,M7e(e[n],o)])):{}}function M7e(e,t){return m7e(e)&&Array.isArray(t)?M1(t):g7e(e)&&t?t.map(n=>oae(e.query,n)):t}function oz(e=[],t){return t?t.map(([n,o,r],s)=>{var i;const c=e[s];if(c&&c.name===n){const f=oz(c.innerBlocks,r);return{...c,innerBlocks:f}}const l=on(n),u=oae((i=l?.attributes)!==null&&i!==void 0?i:{},o),[d,p]=Rie(n,u);return Ee(d,p,oz([],r))}):e}const rae={};cLe(rae,{isContentBlock:gLe});function YB(e,t){return x.useContext(GE)?.[e]?.[t]}const ow=Symbol("mayDisplayControls"),ZB=Symbol("mayDisplayParentControls"),sae=Symbol("blockEditingMode"),QB=Symbol("blockBindings"),iae=Symbol("isPreviewMode"),aae={name:"",isSelected:!1},cae=x.createContext(aae),{Provider:lae}=cae;function j0(){return x.useContext(cae)}function uae(e){var t,n,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var r=e.length;for(t=0;t<r;t++)e[t]&&(n=uae(e[t]))&&(o&&(o+=" "),o+=n)}else for(n in e)e[n]&&(o&&(o+=" "),o+=n);return o}function oe(){for(var e,t,n=0,o="",r=arguments.length;n<r;n++)(e=arguments[n])&&(t=uae(e))&&(o&&(o+=" "),o+=t);return o}const dae=e=>x.createElement("circle",e),rw=e=>x.createElement("g",e),OA=e=>x.createElement("line",e),he=e=>x.createElement("path",e),S0=e=>x.createElement("rect",e),ge=x.forwardRef(({className:e,isPressed:t,...n},o)=>{const r={...n,className:oe(e,{"is-pressed":t})||void 0,"aria-hidden":!0,focusable:!1};return a.jsx("svg",{...r,ref:o})});ge.displayName="SVG";const z7e="hr",O7e="blockquote",vd="div";var y7e=Object.defineProperty,A7e=Object.defineProperties,v7e=Object.getOwnPropertyDescriptors,ox=Object.getOwnPropertySymbols,pae=Object.prototype.hasOwnProperty,fae=Object.prototype.propertyIsEnumerable,vX=(e,t,n)=>t in e?y7e(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,$e=(e,t)=>{for(var n in t||(t={}))pae.call(t,n)&&vX(e,n,t[n]);if(ox)for(var n of ox(t))fae.call(t,n)&&vX(e,n,t[n]);return e},zt=(e,t)=>A7e(e,v7e(t)),Jt=(e,t)=>{var n={};for(var o in e)pae.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(e!=null&&ox)for(var o of ox(e))t.indexOf(o)<0&&fae.call(e,o)&&(n[o]=e[o]);return n},x7e=Object.defineProperty,w7e=Object.defineProperties,_7e=Object.getOwnPropertyDescriptors,rx=Object.getOwnPropertySymbols,bae=Object.prototype.hasOwnProperty,hae=Object.prototype.propertyIsEnumerable,xX=(e,t,n)=>t in e?x7e(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,mn=(e,t)=>{for(var n in t||(t={}))bae.call(t,n)&&xX(e,n,t[n]);if(rx)for(var n of rx(t))hae.call(t,n)&&xX(e,n,t[n]);return e},lo=(e,t)=>w7e(e,_7e(t)),y3=(e,t)=>{var n={};for(var o in e)bae.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(e!=null&&rx)for(var o of rx(e))t.indexOf(o)<0&&hae.call(e,o)&&(n[o]=e[o]);return n};function Vv(...e){}function k7e(e,t){if(e===t)return!0;if(!e||!t||typeof e!="object"||typeof t!="object")return!1;const n=Object.keys(e),o=Object.keys(t),{length:r}=n;if(o.length!==r)return!1;for(const s of n)if(e[s]!==t[s])return!1;return!0}function mae(e,t){if(S7e(e)){const n=C7e(t)?t():t;return e(n)}return e}function S7e(e){return typeof e=="function"}function C7e(e){return typeof e=="function"}function Bl(e,t){return typeof Object.hasOwn=="function"?Object.hasOwn(e,t):Object.prototype.hasOwnProperty.call(e,t)}function _1(...e){return(...t)=>{for(const n of e)typeof n=="function"&&n(...t)}}function q7e(e){return e.normalize("NFD").replace(/[\u0300-\u036f]/g,"")}function R7e(e,t){const n=mn({},e);for(const o of t)Bl(n,o)&&delete n[o];return n}function T7e(e,t){const n={};for(const o of t)Bl(e,o)&&(n[o]=e[o]);return n}function gae(e){return e}function wo(e,t){if(!e)throw typeof t!="string"?new Error("Invariant failed"):new Error(t)}function E7e(e){return Object.keys(e)}function rz(e,...t){const n=typeof e=="function"?e(...t):e;return n==null?!1:!n}function Ql(e){return e.disabled||e["aria-disabled"]===!0||e["aria-disabled"]==="true"}function ws(e){const t={};for(const n in e)e[n]!==void 0&&(t[n]=e[n]);return t}function nn(...e){for(const t of e)if(t!==void 0)return t}function o8(e,t){typeof e=="function"?e(t):e&&(e.current=t)}function W7e(e){return!e||!x.isValidElement(e)?!1:"ref"in e.props||"ref"in e}function N7e(e){return W7e(e)?$e({},e.props).ref||e.ref:null}function B7e(e,t){const n=$e({},e);for(const o in t){if(!Bl(t,o))continue;if(o==="className"){const s="className";n[s]=e[s]?`${e[s]} ${t[s]}`:t[s];continue}if(o==="style"){const s="style";n[s]=e[s]?$e($e({},e[s]),t[s]):t[s];continue}const r=t[o];if(typeof r=="function"&&o.startsWith("on")){const s=e[o];if(typeof s=="function"){n[o]=(...i)=>{r(...i),s(...i)};continue}}n[o]=r}return n}var Gh=L7e();function L7e(){var e;return typeof window<"u"&&!!((e=window.document)!=null&&e.createElement)}function zr(e){return e?"self"in e?e.document:e.ownerDocument||document:document}function Mae(e){return e?"self"in e?e.self:zr(e).defaultView||window:self}function Jl(e,t=!1){const{activeElement:n}=zr(e);if(!n?.nodeName)return null;if(JB(n)&&n.contentDocument)return Jl(n.contentDocument.body,t);if(t){const o=n.getAttribute("aria-activedescendant");if(o){const r=zr(n).getElementById(o);if(r)return r}}return n}function Yr(e,t){return e===t||e.contains(t)}function JB(e){return e.tagName==="IFRAME"}function xd(e){const t=e.tagName.toLowerCase();return t==="button"?!0:t==="input"&&e.type?P7e.indexOf(e.type)!==-1:!1}var P7e=["button","color","file","image","reset","submit"];function zae(e){if(typeof e.checkVisibility=="function")return e.checkVisibility();const t=e;return t.offsetWidth>0||t.offsetHeight>0||e.getClientRects().length>0}function eu(e){try{const t=e instanceof HTMLInputElement&&e.selectionStart!==null,n=e.tagName==="TEXTAREA";return t||n||!1}catch{return!1}}function r8(e){return e.isContentEditable||eu(e)}function j7e(e){if(eu(e))return e.value;if(e.isContentEditable){const t=zr(e).createRange();return t.selectNodeContents(e),t.toString()}return""}function I7e(e){let t=0,n=0;if(eu(e))t=e.selectionStart||0,n=e.selectionEnd||0;else if(e.isContentEditable){const o=zr(e).getSelection();if(o?.rangeCount&&o.anchorNode&&Yr(e,o.anchorNode)&&o.focusNode&&Yr(e,o.focusNode)){const r=o.getRangeAt(0),s=r.cloneRange();s.selectNodeContents(e),s.setEnd(r.startContainer,r.startOffset),t=s.toString().length,s.setEnd(r.endContainer,r.endOffset),n=s.toString().length}}return{start:t,end:n}}function sw(e,t){const n=["dialog","menu","listbox","tree","grid"],o=e?.getAttribute("role");return o&&n.indexOf(o)!==-1?o:t}function eL(e,t){var n;const o={menu:"menuitem",listbox:"option",tree:"treeitem"},r=sw(e);return r&&(n=o[r])!=null?n:t}function Oae(e){if(!e)return null;const t=n=>n==="auto"||n==="scroll";if(e.clientHeight&&e.scrollHeight>e.clientHeight){const{overflowY:n}=getComputedStyle(e);if(t(n))return e}else if(e.clientWidth&&e.scrollWidth>e.clientWidth){const{overflowX:n}=getComputedStyle(e);if(t(n))return e}return Oae(e.parentElement)||document.scrollingElement||document.body}function yae(e,t){const n=e.map((r,s)=>[s,r]);let o=!1;return n.sort(([r,s],[i,c])=>{const l=t(s),u=t(c);return l===u||!l||!u?0:D7e(l,u)?(r>i&&(o=!0),-1):(r<i&&(o=!0),1)}),o?n.map(([r,s])=>s):e}function D7e(e,t){return!!(t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_PRECEDING)}function F7e(){return Gh&&!!navigator.maxTouchPoints}function tL(){return Gh?/mac|iphone|ipad|ipod/i.test(navigator.platform):!1}function nL(){return Gh&&tL()&&/apple/i.test(navigator.vendor)}function $7e(){return Gh&&/firefox\//i.test(navigator.userAgent)}function V7e(){return Gh&&navigator.platform.startsWith("Mac")&&!F7e()}function Aae(e){return!!(e.currentTarget&&!Yr(e.currentTarget,e.target))}function cs(e){return e.target===e.currentTarget}function vae(e){const t=e.currentTarget;if(!t)return!1;const n=tL();if(n&&!e.metaKey||!n&&!e.ctrlKey)return!1;const o=t.tagName.toLowerCase();return o==="a"||o==="button"&&t.type==="submit"||o==="input"&&t.type==="submit"}function xae(e){const t=e.currentTarget;if(!t)return!1;const n=t.tagName.toLowerCase();return e.altKey?n==="a"||n==="button"&&t.type==="submit"||n==="input"&&t.type==="submit":!1}function H7e(e,t,n){const o=new Event(t,n);return e.dispatchEvent(o)}function Vb(e,t){const n=new FocusEvent("blur",t),o=e.dispatchEvent(n),r=lo(mn({},t),{bubbles:!0});return e.dispatchEvent(new FocusEvent("focusout",r)),o}function U7e(e,t,n){const o=new KeyboardEvent(t,n);return e.dispatchEvent(o)}function wX(e,t){const n=new MouseEvent("click",t);return e.dispatchEvent(n)}function r2(e,t){const n=t||e.currentTarget,o=e.relatedTarget;return!o||!Yr(n,o)}function N2(e,t,n,o){const s=(c=>{const l=requestAnimationFrame(c);return()=>cancelAnimationFrame(l)})(()=>{e.removeEventListener(t,i,!0),n()}),i=()=>{s(),n()};return e.addEventListener(t,i,{once:!0,capture:!0}),s}function X0(e,t,n,o=window){const r=[];try{o.document.addEventListener(e,t,n);for(const i of Array.from(o.frames))r.push(X0(e,t,n,i))}catch{}return()=>{try{o.document.removeEventListener(e,t,n)}catch{}for(const i of r)i()}}var oL=$e({},hE),_X=oL.useId;oL.useDeferredValue;var kX=oL.useInsertionEffect,Uo=Gh?x.useLayoutEffect:x.useEffect;function rL(e){const[t]=x.useState(e);return t}function wae(e){const t=x.useRef(e);return Uo(()=>{t.current=e}),t}function un(e){const t=x.useRef(()=>{throw new Error("Cannot call an event handler while rendering.")});return kX?kX(()=>{t.current=e}):t.current=e,x.useCallback((...n)=>{var o;return(o=t.current)==null?void 0:o.call(t,...n)},[])}function _ae(e){const[t,n]=x.useState(null);return Uo(()=>{if(t==null||!e)return;let o=null;return e(r=>(o=r,t)),()=>{e(o)}},[t,e]),[t,n]}function ur(...e){return x.useMemo(()=>{if(e.some(Boolean))return t=>{for(const n of e)o8(n,t)}},e)}function V1(e){if(_X){const o=_X();return e||o}const[t,n]=x.useState(e);return Uo(()=>{if(e||t)return;const o=Math.random().toString(36).slice(2,8);n(`id-${o}`)},[e,t]),e||t}function iw(e,t){const n=s=>{if(typeof s=="string")return s},[o,r]=x.useState(()=>n(t));return Uo(()=>{const s=e&&"current"in e?e.current:e;r(s?.tagName.toLowerCase()||n(t))},[e,t]),o}function X7e(e,t,n){const o=rL(n),[r,s]=x.useState(o);return x.useEffect(()=>{const i=e&&"current"in e?e.current:e;if(!i)return;const c=()=>{const u=i.getAttribute(t);s(u??o)},l=new MutationObserver(c);return l.observe(i,{attributeFilter:[t]}),c(),()=>l.disconnect()},[e,t,o]),r}function wd(e,t){const n=x.useRef(!1);x.useEffect(()=>{if(n.current)return e();n.current=!0},t),x.useEffect(()=>()=>{n.current=!1},[])}function sL(){return x.useReducer(()=>[],[])}function s0(e){return un(typeof e=="function"?e:()=>e)}function Lo(e,t,n=[]){const o=x.useCallback(r=>(e.wrapElement&&(r=e.wrapElement(r)),t(r)),[...n,e.wrapElement]);return zt($e({},e),{wrapElement:o})}function iL(e=!1,t){const[n,o]=x.useState(null);return{portalRef:ur(o,t),portalNode:n,domReady:!e||n}}function kae(e,t,n){const o=e.onLoadedMetadataCapture,r=x.useMemo(()=>Object.assign(()=>{},zt($e({},o),{[t]:n})),[o,t,n]);return[o?.[t],{onLoadedMetadataCapture:r}]}function aL(){return x.useEffect(()=>{X0("mousemove",K7e,!0),X0("mousedown",yA,!0),X0("mouseup",yA,!0),X0("keydown",yA,!0),X0("scroll",yA,!0)},[]),un(()=>cL)}var cL=!1,SX=0,CX=0;function G7e(e){const t=e.movementX||e.screenX-SX,n=e.movementY||e.screenY-CX;return SX=e.screenX,CX=e.screenY,t||n||!1}function K7e(e){G7e(e)&&(cL=!0)}function yA(){cL=!1}function Xt(e){const t=x.forwardRef((n,o)=>e(zt($e({},n),{ref:o})));return t.displayName=e.displayName||e.name,t}function Tc(e,t){return x.memo(e,t)}function Zt(e,t){const n=t,{wrapElement:o,render:r}=n,s=Jt(n,["wrapElement","render"]),i=ur(t.ref,N7e(r));let c;if(x.isValidElement(r)){const l=zt($e({},r.props),{ref:i});c=x.cloneElement(r,B7e(s,l))}else r?c=r(s):c=a.jsx(e,$e({},s));return o?o(c):c}function en(e){const t=(n={})=>e(n);return t.displayName=e.name,t}function H1(e=[],t=[]){const n=x.createContext(void 0),o=x.createContext(void 0),r=()=>x.useContext(n),s=(u=!1)=>{const d=x.useContext(o),p=r();return u?d:d||p},i=()=>{const u=x.useContext(o),d=r();if(!(u&&u===d))return d},c=u=>e.reduceRight((d,p)=>a.jsx(p,zt($e({},u),{children:d})),a.jsx(n.Provider,$e({},u)));return{context:n,scopedContext:o,useContext:r,useScopedContext:s,useProviderContext:i,ContextProvider:c,ScopedContextProvider:u=>a.jsx(c,zt($e({},u),{children:t.reduceRight((d,p)=>a.jsx(p,zt($e({},u),{children:d})),a.jsx(o.Provider,$e({},u)))}))}}var A3=H1(),Y7e=A3.useContext;A3.useScopedContext;A3.useProviderContext;var Z7e=A3.ContextProvider,Q7e=A3.ScopedContextProvider,v3=H1([Z7e],[Q7e]),x3=v3.useContext;v3.useScopedContext;var J7e=v3.useProviderContext,ep=v3.ContextProvider,Kf=v3.ScopedContextProvider,eIe=x.createContext(void 0),Sae=x.createContext(void 0);function Yf(e,t){const n=e.__unstableInternals;return wo(n,"Invalid store"),n[t]}function k1(e,...t){let n=e,o=n,r=Symbol(),s=Vv;const i=new Set,c=new Set,l=new Set,u=new Set,d=new Set,p=new WeakMap,f=new WeakMap,b=C=>(l.add(C),()=>l.delete(C)),h=()=>{const C=i.size,R=Symbol();i.add(R);const T=()=>{i.delete(R),!i.size&&s()};if(C)return T;const E=E7e(n).map(j=>_1(...t.map(I=>{var P;const $=(P=I?.getState)==null?void 0:P.call(I);if($&&Bl($,j))return Ir(I,[j],F=>{k(j,F[j],!0)})}))),B=[];for(const j of l)B.push(j());const N=t.map(lL);return s=_1(...E,...B,...N),T},g=(C,R,T=u)=>(T.add(R),f.set(R,C),()=>{var E;(E=p.get(R))==null||E(),p.delete(R),f.delete(R),T.delete(R)}),z=(C,R)=>g(C,R),A=(C,R)=>(p.set(R,R(n,n)),g(C,R)),_=(C,R)=>(p.set(R,R(n,o)),g(C,R,d)),v=C=>k1(T7e(n,C),S),M=C=>k1(R7e(n,C),S),y=()=>n,k=(C,R,T=!1)=>{var E;if(!Bl(n,C))return;const B=mae(R,n[C]);if(B===n[C])return;if(!T)for(const P of t)(E=P?.setState)==null||E.call(P,C,B);const N=n;n=lo(mn({},n),{[C]:B});const j=Symbol();r=j,c.add(C);const I=(P,$,F)=>{var X;const Z=f.get(P),V=ee=>F?F.has(ee):ee===C;(!Z||Z.some(V))&&((X=p.get(P))==null||X(),p.set(P,P(n,$)))};for(const P of u)I(P,N);queueMicrotask(()=>{if(r!==j)return;const P=n;for(const $ of d)I($,o,c);o=P,c.clear()})},S={getState:y,setState:k,__unstableInternals:{setup:b,init:h,subscribe:z,sync:A,batch:_,pick:v,omit:M}};return S}function C0(e,...t){if(e)return Yf(e,"setup")(...t)}function lL(e,...t){if(e)return Yf(e,"init")(...t)}function uL(e,...t){if(e)return Yf(e,"subscribe")(...t)}function Ir(e,...t){if(e)return Yf(e,"sync")(...t)}function sz(e,...t){if(e)return Yf(e,"batch")(...t)}function uh(e,...t){if(e)return Yf(e,"omit")(...t)}function tIe(e,...t){if(e)return Yf(e,"pick")(...t)}function w3(...e){const t=e.reduce((o,r)=>{var s;const i=(s=r?.getState)==null?void 0:s.call(r);return i?Object.assign(o,i):o},{}),n=k1(t,...e);return Object.assign({},...e,n)}var iC={exports:{}},aC={};/** +`)===-1)return wE(J5(u[0]),c).replace(d,"")}return u}function O3({HTML:e=""}){if(e.indexOf("<!-- wp:")!==-1){const o=Ko(e);if(!(o.length===1&&o[0].name==="core/freeform"))return o}const t=u2(e),n=$ie();return t.map(o=>{if(typeof o!="string")return o;const r=[Iie,jie,Fie,Die({raw:!0})];return o=tf(o,r,n),o=tw(o,{raw:!0}),Pie(o,O3)}).flat().filter(Boolean)}function nae(e=[],t=[]){return e.length===t.length&&t.every(([n,,o],r)=>{const s=e[r];return n===s.name&&nae(s.innerBlocks,o)})}const h7e=e=>e?.source==="html",m7e=e=>e?.source==="query";function oae(e,t){return t?Object.fromEntries(Object.entries(t).map(([n,o])=>[n,g7e(e[n],o)])):{}}function g7e(e,t){return h7e(e)&&Array.isArray(t)?M1(t):m7e(e)&&t?t.map(n=>oae(e.query,n)):t}function oz(e=[],t){return t?t.map(([n,o,r],s)=>{var i;const c=e[s];if(c&&c.name===n){const f=oz(c.innerBlocks,r);return{...c,innerBlocks:f}}const l=on(n),u=oae((i=l?.attributes)!==null&&i!==void 0?i:{},o),[d,p]=Rie(n,u);return Ee(d,p,oz([],r))}):e}const rae={};aLe(rae,{isContentBlock:mLe});function KB(e,t){return x.useContext(XE)?.[e]?.[t]}const nw=Symbol("mayDisplayControls"),YB=Symbol("mayDisplayParentControls"),sae=Symbol("blockEditingMode"),ZB=Symbol("blockBindings"),iae=Symbol("isPreviewMode"),aae={name:"",isSelected:!1},cae=x.createContext(aae),{Provider:lae}=cae;function j0(){return x.useContext(cae)}function uae(e){var t,n,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var r=e.length;for(t=0;t<r;t++)e[t]&&(n=uae(e[t]))&&(o&&(o+=" "),o+=n)}else for(n in e)e[n]&&(o&&(o+=" "),o+=n);return o}function oe(){for(var e,t,n=0,o="",r=arguments.length;n<r;n++)(e=arguments[n])&&(t=uae(e))&&(o&&(o+=" "),o+=t);return o}const dae=e=>x.createElement("circle",e),ow=e=>x.createElement("g",e),zA=e=>x.createElement("line",e),he=e=>x.createElement("path",e),S0=e=>x.createElement("rect",e),ge=x.forwardRef(({className:e,isPressed:t,...n},o)=>{const r={...n,className:oe(e,{"is-pressed":t})||void 0,"aria-hidden":!0,focusable:!1};return a.jsx("svg",{...r,ref:o})});ge.displayName="SVG";const M7e="hr",z7e="blockquote",vd="div";var O7e=Object.defineProperty,y7e=Object.defineProperties,A7e=Object.getOwnPropertyDescriptors,nx=Object.getOwnPropertySymbols,pae=Object.prototype.hasOwnProperty,fae=Object.prototype.propertyIsEnumerable,vX=(e,t,n)=>t in e?O7e(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,$e=(e,t)=>{for(var n in t||(t={}))pae.call(t,n)&&vX(e,n,t[n]);if(nx)for(var n of nx(t))fae.call(t,n)&&vX(e,n,t[n]);return e},zt=(e,t)=>y7e(e,A7e(t)),Jt=(e,t)=>{var n={};for(var o in e)pae.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(e!=null&&nx)for(var o of nx(e))t.indexOf(o)<0&&fae.call(e,o)&&(n[o]=e[o]);return n},v7e=Object.defineProperty,x7e=Object.defineProperties,w7e=Object.getOwnPropertyDescriptors,ox=Object.getOwnPropertySymbols,bae=Object.prototype.hasOwnProperty,hae=Object.prototype.propertyIsEnumerable,xX=(e,t,n)=>t in e?v7e(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,mn=(e,t)=>{for(var n in t||(t={}))bae.call(t,n)&&xX(e,n,t[n]);if(ox)for(var n of ox(t))hae.call(t,n)&&xX(e,n,t[n]);return e},lo=(e,t)=>x7e(e,w7e(t)),y3=(e,t)=>{var n={};for(var o in e)bae.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(e!=null&&ox)for(var o of ox(e))t.indexOf(o)<0&&hae.call(e,o)&&(n[o]=e[o]);return n};function $v(...e){}function _7e(e,t){if(e===t)return!0;if(!e||!t||typeof e!="object"||typeof t!="object")return!1;const n=Object.keys(e),o=Object.keys(t),{length:r}=n;if(o.length!==r)return!1;for(const s of n)if(e[s]!==t[s])return!1;return!0}function mae(e,t){if(k7e(e)){const n=S7e(t)?t():t;return e(n)}return e}function k7e(e){return typeof e=="function"}function S7e(e){return typeof e=="function"}function Nl(e,t){return typeof Object.hasOwn=="function"?Object.hasOwn(e,t):Object.prototype.hasOwnProperty.call(e,t)}function _1(...e){return(...t)=>{for(const n of e)typeof n=="function"&&n(...t)}}function C7e(e){return e.normalize("NFD").replace(/[\u0300-\u036f]/g,"")}function q7e(e,t){const n=mn({},e);for(const o of t)Nl(n,o)&&delete n[o];return n}function R7e(e,t){const n={};for(const o of t)Nl(e,o)&&(n[o]=e[o]);return n}function gae(e){return e}function wo(e,t){if(!e)throw typeof t!="string"?new Error("Invariant failed"):new Error(t)}function T7e(e){return Object.keys(e)}function rz(e,...t){const n=typeof e=="function"?e(...t):e;return n==null?!1:!n}function Zl(e){return e.disabled||e["aria-disabled"]===!0||e["aria-disabled"]==="true"}function ws(e){const t={};for(const n in e)e[n]!==void 0&&(t[n]=e[n]);return t}function nn(...e){for(const t of e)if(t!==void 0)return t}function n8(e,t){typeof e=="function"?e(t):e&&(e.current=t)}function E7e(e){return!e||!x.isValidElement(e)?!1:"ref"in e.props||"ref"in e}function W7e(e){return E7e(e)?$e({},e.props).ref||e.ref:null}function N7e(e,t){const n=$e({},e);for(const o in t){if(!Nl(t,o))continue;if(o==="className"){const s="className";n[s]=e[s]?`${e[s]} ${t[s]}`:t[s];continue}if(o==="style"){const s="style";n[s]=e[s]?$e($e({},e[s]),t[s]):t[s];continue}const r=t[o];if(typeof r=="function"&&o.startsWith("on")){const s=e[o];if(typeof s=="function"){n[o]=(...i)=>{r(...i),s(...i)};continue}}n[o]=r}return n}var Gh=B7e();function B7e(){var e;return typeof window<"u"&&!!((e=window.document)!=null&&e.createElement)}function zr(e){return e?"self"in e?e.document:e.ownerDocument||document:document}function Mae(e){return e?"self"in e?e.self:zr(e).defaultView||window:self}function Ql(e,t=!1){const{activeElement:n}=zr(e);if(!n?.nodeName)return null;if(QB(n)&&n.contentDocument)return Ql(n.contentDocument.body,t);if(t){const o=n.getAttribute("aria-activedescendant");if(o){const r=zr(n).getElementById(o);if(r)return r}}return n}function Yr(e,t){return e===t||e.contains(t)}function QB(e){return e.tagName==="IFRAME"}function xd(e){const t=e.tagName.toLowerCase();return t==="button"?!0:t==="input"&&e.type?L7e.indexOf(e.type)!==-1:!1}var L7e=["button","color","file","image","reset","submit"];function zae(e){if(typeof e.checkVisibility=="function")return e.checkVisibility();const t=e;return t.offsetWidth>0||t.offsetHeight>0||e.getClientRects().length>0}function Jl(e){try{const t=e instanceof HTMLInputElement&&e.selectionStart!==null,n=e.tagName==="TEXTAREA";return t||n||!1}catch{return!1}}function o8(e){return e.isContentEditable||Jl(e)}function P7e(e){if(Jl(e))return e.value;if(e.isContentEditable){const t=zr(e).createRange();return t.selectNodeContents(e),t.toString()}return""}function j7e(e){let t=0,n=0;if(Jl(e))t=e.selectionStart||0,n=e.selectionEnd||0;else if(e.isContentEditable){const o=zr(e).getSelection();if(o?.rangeCount&&o.anchorNode&&Yr(e,o.anchorNode)&&o.focusNode&&Yr(e,o.focusNode)){const r=o.getRangeAt(0),s=r.cloneRange();s.selectNodeContents(e),s.setEnd(r.startContainer,r.startOffset),t=s.toString().length,s.setEnd(r.endContainer,r.endOffset),n=s.toString().length}}return{start:t,end:n}}function rw(e,t){const n=["dialog","menu","listbox","tree","grid"],o=e?.getAttribute("role");return o&&n.indexOf(o)!==-1?o:t}function JB(e,t){var n;const o={menu:"menuitem",listbox:"option",tree:"treeitem"},r=rw(e);return r&&(n=o[r])!=null?n:t}function Oae(e){if(!e)return null;const t=n=>n==="auto"||n==="scroll";if(e.clientHeight&&e.scrollHeight>e.clientHeight){const{overflowY:n}=getComputedStyle(e);if(t(n))return e}else if(e.clientWidth&&e.scrollWidth>e.clientWidth){const{overflowX:n}=getComputedStyle(e);if(t(n))return e}return Oae(e.parentElement)||document.scrollingElement||document.body}function yae(e,t){const n=e.map((r,s)=>[s,r]);let o=!1;return n.sort(([r,s],[i,c])=>{const l=t(s),u=t(c);return l===u||!l||!u?0:I7e(l,u)?(r>i&&(o=!0),-1):(r<i&&(o=!0),1)}),o?n.map(([r,s])=>s):e}function I7e(e,t){return!!(t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_PRECEDING)}function D7e(){return Gh&&!!navigator.maxTouchPoints}function eL(){return Gh?/mac|iphone|ipad|ipod/i.test(navigator.platform):!1}function tL(){return Gh&&eL()&&/apple/i.test(navigator.vendor)}function F7e(){return Gh&&/firefox\//i.test(navigator.userAgent)}function $7e(){return Gh&&navigator.platform.startsWith("Mac")&&!D7e()}function Aae(e){return!!(e.currentTarget&&!Yr(e.currentTarget,e.target))}function cs(e){return e.target===e.currentTarget}function vae(e){const t=e.currentTarget;if(!t)return!1;const n=eL();if(n&&!e.metaKey||!n&&!e.ctrlKey)return!1;const o=t.tagName.toLowerCase();return o==="a"||o==="button"&&t.type==="submit"||o==="input"&&t.type==="submit"}function xae(e){const t=e.currentTarget;if(!t)return!1;const n=t.tagName.toLowerCase();return e.altKey?n==="a"||n==="button"&&t.type==="submit"||n==="input"&&t.type==="submit":!1}function V7e(e,t,n){const o=new Event(t,n);return e.dispatchEvent(o)}function Vb(e,t){const n=new FocusEvent("blur",t),o=e.dispatchEvent(n),r=lo(mn({},t),{bubbles:!0});return e.dispatchEvent(new FocusEvent("focusout",r)),o}function H7e(e,t,n){const o=new KeyboardEvent(t,n);return e.dispatchEvent(o)}function wX(e,t){const n=new MouseEvent("click",t);return e.dispatchEvent(n)}function r2(e,t){const n=t||e.currentTarget,o=e.relatedTarget;return!o||!Yr(n,o)}function N2(e,t,n,o){const s=(c=>{const l=requestAnimationFrame(c);return()=>cancelAnimationFrame(l)})(()=>{e.removeEventListener(t,i,!0),n()}),i=()=>{s(),n()};return e.addEventListener(t,i,{once:!0,capture:!0}),s}function X0(e,t,n,o=window){const r=[];try{o.document.addEventListener(e,t,n);for(const i of Array.from(o.frames))r.push(X0(e,t,n,i))}catch{}return()=>{try{o.document.removeEventListener(e,t,n)}catch{}for(const i of r)i()}}var nL=$e({},bE),_X=nL.useId;nL.useDeferredValue;var kX=nL.useInsertionEffect,Uo=Gh?x.useLayoutEffect:x.useEffect;function oL(e){const[t]=x.useState(e);return t}function wae(e){const t=x.useRef(e);return Uo(()=>{t.current=e}),t}function un(e){const t=x.useRef(()=>{throw new Error("Cannot call an event handler while rendering.")});return kX?kX(()=>{t.current=e}):t.current=e,x.useCallback((...n)=>{var o;return(o=t.current)==null?void 0:o.call(t,...n)},[])}function _ae(e){const[t,n]=x.useState(null);return Uo(()=>{if(t==null||!e)return;let o=null;return e(r=>(o=r,t)),()=>{e(o)}},[t,e]),[t,n]}function ur(...e){return x.useMemo(()=>{if(e.some(Boolean))return t=>{for(const n of e)n8(n,t)}},e)}function V1(e){if(_X){const o=_X();return e||o}const[t,n]=x.useState(e);return Uo(()=>{if(e||t)return;const o=Math.random().toString(36).slice(2,8);n(`id-${o}`)},[e,t]),e||t}function sw(e,t){const n=s=>{if(typeof s=="string")return s},[o,r]=x.useState(()=>n(t));return Uo(()=>{const s=e&&"current"in e?e.current:e;r(s?.tagName.toLowerCase()||n(t))},[e,t]),o}function U7e(e,t,n){const o=oL(n),[r,s]=x.useState(o);return x.useEffect(()=>{const i=e&&"current"in e?e.current:e;if(!i)return;const c=()=>{const u=i.getAttribute(t);s(u??o)},l=new MutationObserver(c);return l.observe(i,{attributeFilter:[t]}),c(),()=>l.disconnect()},[e,t,o]),r}function wd(e,t){const n=x.useRef(!1);x.useEffect(()=>{if(n.current)return e();n.current=!0},t),x.useEffect(()=>()=>{n.current=!1},[])}function rL(){return x.useReducer(()=>[],[])}function s0(e){return un(typeof e=="function"?e:()=>e)}function Lo(e,t,n=[]){const o=x.useCallback(r=>(e.wrapElement&&(r=e.wrapElement(r)),t(r)),[...n,e.wrapElement]);return zt($e({},e),{wrapElement:o})}function sL(e=!1,t){const[n,o]=x.useState(null);return{portalRef:ur(o,t),portalNode:n,domReady:!e||n}}function kae(e,t,n){const o=e.onLoadedMetadataCapture,r=x.useMemo(()=>Object.assign(()=>{},zt($e({},o),{[t]:n})),[o,t,n]);return[o?.[t],{onLoadedMetadataCapture:r}]}function iL(){return x.useEffect(()=>{X0("mousemove",G7e,!0),X0("mousedown",OA,!0),X0("mouseup",OA,!0),X0("keydown",OA,!0),X0("scroll",OA,!0)},[]),un(()=>aL)}var aL=!1,SX=0,CX=0;function X7e(e){const t=e.movementX||e.screenX-SX,n=e.movementY||e.screenY-CX;return SX=e.screenX,CX=e.screenY,t||n||!1}function G7e(e){X7e(e)&&(aL=!0)}function OA(){aL=!1}function Xt(e){const t=x.forwardRef((n,o)=>e(zt($e({},n),{ref:o})));return t.displayName=e.displayName||e.name,t}function Tc(e,t){return x.memo(e,t)}function Zt(e,t){const n=t,{wrapElement:o,render:r}=n,s=Jt(n,["wrapElement","render"]),i=ur(t.ref,W7e(r));let c;if(x.isValidElement(r)){const l=zt($e({},r.props),{ref:i});c=x.cloneElement(r,N7e(s,l))}else r?c=r(s):c=a.jsx(e,$e({},s));return o?o(c):c}function en(e){const t=(n={})=>e(n);return t.displayName=e.name,t}function H1(e=[],t=[]){const n=x.createContext(void 0),o=x.createContext(void 0),r=()=>x.useContext(n),s=(u=!1)=>{const d=x.useContext(o),p=r();return u?d:d||p},i=()=>{const u=x.useContext(o),d=r();if(!(u&&u===d))return d},c=u=>e.reduceRight((d,p)=>a.jsx(p,zt($e({},u),{children:d})),a.jsx(n.Provider,$e({},u)));return{context:n,scopedContext:o,useContext:r,useScopedContext:s,useProviderContext:i,ContextProvider:c,ScopedContextProvider:u=>a.jsx(c,zt($e({},u),{children:t.reduceRight((d,p)=>a.jsx(p,zt($e({},u),{children:d})),a.jsx(o.Provider,$e({},u)))}))}}var A3=H1(),K7e=A3.useContext;A3.useScopedContext;A3.useProviderContext;var Y7e=A3.ContextProvider,Z7e=A3.ScopedContextProvider,v3=H1([Y7e],[Z7e]),x3=v3.useContext;v3.useScopedContext;var Q7e=v3.useProviderContext,ep=v3.ContextProvider,Kf=v3.ScopedContextProvider,J7e=x.createContext(void 0),Sae=x.createContext(void 0);function Yf(e,t){const n=e.__unstableInternals;return wo(n,"Invalid store"),n[t]}function k1(e,...t){let n=e,o=n,r=Symbol(),s=$v;const i=new Set,c=new Set,l=new Set,u=new Set,d=new Set,p=new WeakMap,f=new WeakMap,b=C=>(l.add(C),()=>l.delete(C)),h=()=>{const C=i.size,R=Symbol();i.add(R);const T=()=>{i.delete(R),!i.size&&s()};if(C)return T;const E=T7e(n).map(j=>_1(...t.map(I=>{var P;const $=(P=I?.getState)==null?void 0:P.call(I);if($&&Nl($,j))return Ir(I,[j],F=>{k(j,F[j],!0)})}))),B=[];for(const j of l)B.push(j());const N=t.map(cL);return s=_1(...E,...B,...N),T},g=(C,R,T=u)=>(T.add(R),f.set(R,C),()=>{var E;(E=p.get(R))==null||E(),p.delete(R),f.delete(R),T.delete(R)}),z=(C,R)=>g(C,R),A=(C,R)=>(p.set(R,R(n,n)),g(C,R)),_=(C,R)=>(p.set(R,R(n,o)),g(C,R,d)),v=C=>k1(R7e(n,C),S),M=C=>k1(q7e(n,C),S),y=()=>n,k=(C,R,T=!1)=>{var E;if(!Nl(n,C))return;const B=mae(R,n[C]);if(B===n[C])return;if(!T)for(const P of t)(E=P?.setState)==null||E.call(P,C,B);const N=n;n=lo(mn({},n),{[C]:B});const j=Symbol();r=j,c.add(C);const I=(P,$,F)=>{var X;const Z=f.get(P),V=ee=>F?F.has(ee):ee===C;(!Z||Z.some(V))&&((X=p.get(P))==null||X(),p.set(P,P(n,$)))};for(const P of u)I(P,N);queueMicrotask(()=>{if(r!==j)return;const P=n;for(const $ of d)I($,o,c);o=P,c.clear()})},S={getState:y,setState:k,__unstableInternals:{setup:b,init:h,subscribe:z,sync:A,batch:_,pick:v,omit:M}};return S}function C0(e,...t){if(e)return Yf(e,"setup")(...t)}function cL(e,...t){if(e)return Yf(e,"init")(...t)}function lL(e,...t){if(e)return Yf(e,"subscribe")(...t)}function Ir(e,...t){if(e)return Yf(e,"sync")(...t)}function sz(e,...t){if(e)return Yf(e,"batch")(...t)}function uh(e,...t){if(e)return Yf(e,"omit")(...t)}function eIe(e,...t){if(e)return Yf(e,"pick")(...t)}function w3(...e){const t=e.reduce((o,r)=>{var s;const i=(s=r?.getState)==null?void 0:s.call(r);return i?Object.assign(o,i):o},{}),n=k1(t,...e);return Object.assign({},...e,n)}var sC={exports:{}},iC={};/** * @license React * use-sync-external-store-shim.production.js * @@ -291,14 +291,14 @@ ${r}`)}function u7e(e){return e.replace(/(^|\n)•( +)/g,"$1*$2")}function d7e(e * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var qX;function nIe(){if(qX)return aC;qX=1;var e=i3();function t(p,f){return p===f&&(p!==0||1/p===1/f)||p!==p&&f!==f}var n=typeof Object.is=="function"?Object.is:t,o=e.useState,r=e.useEffect,s=e.useLayoutEffect,i=e.useDebugValue;function c(p,f){var b=f(),h=o({inst:{value:b,getSnapshot:f}}),g=h[0].inst,z=h[1];return s(function(){g.value=b,g.getSnapshot=f,l(g)&&z({inst:g})},[p,b,f]),r(function(){return l(g)&&z({inst:g}),p(function(){l(g)&&z({inst:g})})},[p]),i(b),b}function l(p){var f=p.getSnapshot;p=p.value;try{var b=f();return!n(p,b)}catch{return!0}}function u(p,f){return f()}var d=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?u:c;return aC.useSyncExternalStore=e.useSyncExternalStore!==void 0?e.useSyncExternalStore:d,aC}var RX;function oIe(){return RX||(RX=1,iC.exports=nIe()),iC.exports}var rIe=oIe();const sIe=Zr(rIe);var{useSyncExternalStore:Cae}=sIe,qae=()=>()=>{};function Hn(e,t=gae){const n=x.useCallback(r=>e?uL(e,null,r):qae(),[e]),o=()=>{const r=typeof t=="string"?t:null,s=typeof t=="function"?t:null,i=e?.getState();if(s)return s(i);if(i&&r&&Bl(i,r))return i[r]};return Cae(n,o,o)}function Rae(e,t){const n=x.useRef({}),o=x.useCallback(s=>e?uL(e,null,s):qae(),[e]),r=()=>{const s=e?.getState();let i=!1;const c=n.current;for(const l in t){const u=t[l];if(typeof u=="function"){const d=u(s);d!==c[l]&&(c[l]=d,i=!0)}if(typeof u=="string"){if(!s||!Bl(s,u))continue;const d=s[u];d!==c[l]&&(c[l]=d,i=!0)}}return i&&(n.current=$e({},c)),n.current};return Cae(o,r,r)}function ar(e,t,n,o){const r=Bl(t,n)?t[n]:void 0,s=o?t[o]:void 0,i=wae({value:r,setValue:s});Uo(()=>Ir(e,[n],(c,l)=>{const{value:u,setValue:d}=i.current;d&&c[n]!==l[n]&&c[n]!==u&&d(c[n])}),[e,n]),Uo(()=>{if(r!==void 0)return e.setState(n,r),sz(e,[n],()=>{r!==void 0&&e.setState(n,r)})})}function va(e,t){const[n,o]=x.useState(()=>e(t));Uo(()=>lL(n),[n]);const r=x.useCallback(c=>Hn(n,c),[n]),s=x.useMemo(()=>zt($e({},n),{useState:r}),[n,r]),i=un(()=>{o(c=>e($e($e({},t),c.getState())))});return[s,i]}function iIe(e){var t;const n=e.find(s=>!!s.element),o=[...e].reverse().find(s=>!!s.element);let r=(t=n?.element)==null?void 0:t.parentElement;for(;r&&o?.element;){if(o&&r.contains(o.element))return r;r=r.parentElement}return zr(r).body}function aIe(e){return e?.__unstablePrivateStore}function Tae(e={}){var t;e.store;const n=(t=e.store)==null?void 0:t.getState(),o=nn(e.items,n?.items,e.defaultItems,[]),r=new Map(o.map(f=>[f.id,f])),s={items:o,renderedItems:nn(n?.renderedItems,[])},i=aIe(e.store),c=k1({items:o,renderedItems:s.renderedItems},i),l=k1(s,e.store),u=f=>{const b=yae(f,h=>h.element);c.setState("renderedItems",b),l.setState("renderedItems",b)};C0(l,()=>lL(c)),C0(c,()=>sz(c,["items"],f=>{l.setState("items",f.items)})),C0(c,()=>sz(c,["renderedItems"],f=>{let b=!0,h=requestAnimationFrame(()=>{const{renderedItems:_}=l.getState();f.renderedItems!==_&&u(f.renderedItems)});if(typeof IntersectionObserver!="function")return()=>cancelAnimationFrame(h);const g=()=>{if(b){b=!1;return}cancelAnimationFrame(h),h=requestAnimationFrame(()=>u(f.renderedItems))},z=iIe(f.renderedItems),A=new IntersectionObserver(g,{root:z});for(const _ of f.renderedItems)_.element&&A.observe(_.element);return()=>{cancelAnimationFrame(h),A.disconnect()}}));const d=(f,b,h=!1)=>{let g;return b(A=>{const _=A.findIndex(({id:M})=>M===f.id),v=A.slice();if(_!==-1){g=A[_];const M=mn(mn({},g),f);v[_]=M,r.set(f.id,M)}else v.push(f),r.set(f.id,f);return v}),()=>{b(A=>{if(!g)return h&&r.delete(f.id),A.filter(({id:M})=>M!==f.id);const _=A.findIndex(({id:M})=>M===f.id);if(_===-1)return A;const v=A.slice();return v[_]=g,r.set(f.id,g),v})}},p=f=>d(f,b=>c.setState("items",b),!0);return lo(mn({},l),{registerItem:p,renderItem:f=>_1(p(f),d(f,b=>c.setState("renderedItems",b))),item:f=>{if(!f)return null;let b=r.get(f);if(!b){const{items:h}=c.getState();b=h.find(g=>g.id===f),b&&r.set(f,b)}return b||null},__unstablePrivateStore:c})}function cIe(e,t,n){return wd(t,[n.store]),ar(e,n,"items","setItems"),e}function Eae(e){return Array.isArray(e)?e:typeof e<"u"?[e]:[]}function Wae(e){const t=[];for(const n of e)t.push(...n);return t}function s8(e){return e.slice().reverse()}var lIe={id:null};function sl(e,t){return e.find(n=>t?!n.disabled&&n.id!==t:!n.disabled)}function uIe(e,t){return e.filter(n=>t?!n.disabled&&n.id!==t:!n.disabled)}function TX(e,t){return e.filter(n=>n.rowId===t)}function dIe(e,t,n=!1){const o=e.findIndex(r=>r.id===t);return[...e.slice(o+1),...n?[lIe]:[],...e.slice(0,o)]}function Nae(e){const t=[];for(const n of e){const o=t.find(r=>{var s;return((s=r[0])==null?void 0:s.rowId)===n.rowId});o?o.push(n):t.push([n])}return t}function Bae(e){let t=0;for(const{length:n}of e)n>t&&(t=n);return t}function pIe(e){return{id:"__EMPTY_ITEM__",disabled:!0,rowId:e}}function fIe(e,t,n){const o=Bae(e);for(const r of e)for(let s=0;s<o;s+=1){const i=r[s];if(!i||n&&i.disabled){const l=s===0&&n?sl(r):r[s-1];r[s]=l&&t!==l.id&&n?l:pIe(l?.rowId)}}return e}function bIe(e){const t=Nae(e),n=Bae(t),o=[];for(let r=0;r<n;r+=1)for(const s of t){const i=s[r];i&&o.push(lo(mn({},i),{rowId:i.rowId?`${r}`:void 0}))}return o}function Kh(e={}){var t;const n=(t=e.store)==null?void 0:t.getState(),o=Tae(e),r=nn(e.activeId,n?.activeId,e.defaultActiveId),s=lo(mn({},o.getState()),{id:nn(e.id,n?.id,`id-${Math.random().toString(36).slice(2,8)}`),activeId:r,baseElement:nn(n?.baseElement,null),includesBaseElement:nn(e.includesBaseElement,n?.includesBaseElement,r===null),moves:nn(n?.moves,0),orientation:nn(e.orientation,n?.orientation,"both"),rtl:nn(e.rtl,n?.rtl,!1),virtualFocus:nn(e.virtualFocus,n?.virtualFocus,!1),focusLoop:nn(e.focusLoop,n?.focusLoop,!1),focusWrap:nn(e.focusWrap,n?.focusWrap,!1),focusShift:nn(e.focusShift,n?.focusShift,!1)}),i=k1(s,o,e.store);C0(i,()=>Ir(i,["renderedItems","activeId"],l=>{i.setState("activeId",u=>{var d;return u!==void 0?u:(d=sl(l.renderedItems))==null?void 0:d.id})}));const c=(l="next",u={})=>{var d,p;const f=i.getState(),{skip:b=0,activeId:h=f.activeId,focusShift:g=f.focusShift,focusLoop:z=f.focusLoop,focusWrap:A=f.focusWrap,includesBaseElement:_=f.includesBaseElement,renderedItems:v=f.renderedItems,rtl:M=f.rtl}=u,y=l==="up"||l==="down",k=l==="next"||l==="down",S=k?M&&!y:!M||y,C=g&&!b;let R=y?Wae(fIe(Nae(v),h,C)):v;if(R=S?s8(R):R,R=y?bIe(R):R,h==null)return(d=sl(R))==null?void 0:d.id;const T=R.find(X=>X.id===h);if(!T)return(p=sl(R))==null?void 0:p.id;const E=R.some(X=>X.rowId),B=R.indexOf(T),N=R.slice(B+1),j=TX(N,T.rowId);if(b){const X=uIe(j,h),Z=X.slice(b)[0]||X[X.length-1];return Z?.id}const I=z&&(y?z!=="horizontal":z!=="vertical"),P=E&&A&&(y?A!=="horizontal":A!=="vertical"),$=k?(!E||y)&&I&&_:y?_:!1;if(I){const X=P&&!$?R:TX(R,T.rowId),Z=dIe(X,h,$),V=sl(Z,h);return V?.id}if(P){const X=sl($?j:N,h);return $?X?.id||null:X?.id}const F=sl(j,h);return!F&&$?null:F?.id};return lo(mn(mn({},o),i),{setBaseElement:l=>i.setState("baseElement",l),setActiveId:l=>i.setState("activeId",l),move:l=>{l!==void 0&&(i.setState("activeId",l),i.setState("moves",u=>u+1))},first:()=>{var l;return(l=sl(i.getState().renderedItems))==null?void 0:l.id},last:()=>{var l;return(l=sl(s8(i.getState().renderedItems)))==null?void 0:l.id},next:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("next",l)),previous:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("previous",l)),down:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("down",l)),up:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("up",l))})}function Lae(e){const t=V1(e.id);return $e({id:t},e)}function Yh(e,t,n){return e=cIe(e,t,n),ar(e,n,"activeId","setActiveId"),ar(e,n,"includesBaseElement"),ar(e,n,"virtualFocus"),ar(e,n,"orientation"),ar(e,n,"rtl"),ar(e,n,"focusLoop"),ar(e,n,"focusWrap"),ar(e,n,"focusShift"),e}function hIe(e={}){e=Lae(e);const[t,n]=va(Kh,e);return Yh(t,n,e)}function Pae(e={}){const t=w3(e.store,uh(e.disclosure,["contentElement","disclosureElement"])),n=t?.getState(),o=nn(e.open,n?.open,e.defaultOpen,!1),r=nn(e.animated,n?.animated,!1),s={open:o,animated:r,animating:!!r&&o,mounted:o,contentElement:nn(n?.contentElement,null),disclosureElement:nn(n?.disclosureElement,null)},i=k1(s,t);return C0(i,()=>Ir(i,["animated","animating"],c=>{c.animated||i.setState("animating",!1)})),C0(i,()=>uL(i,["open"],()=>{i.getState().animated&&i.setState("animating",!0)})),C0(i,()=>Ir(i,["open","animating"],c=>{i.setState("mounted",c.open||c.animating)})),lo(mn({},i),{disclosure:e.disclosure,setOpen:c=>i.setState("open",c),show:()=>i.setState("open",!0),hide:()=>i.setState("open",!1),toggle:()=>i.setState("open",c=>!c),stopAnimation:()=>i.setState("animating",!1),setContentElement:c=>i.setState("contentElement",c),setDisclosureElement:c=>i.setState("disclosureElement",c)})}function jae(e,t,n){return wd(t,[n.store,n.disclosure]),ar(e,n,"open","setOpen"),ar(e,n,"mounted","setMounted"),ar(e,n,"animated"),Object.assign(e,{disclosure:n.disclosure})}function Iae(e={}){const[t,n]=va(Pae,e);return jae(t,n,e)}function Dae(e={}){return Pae(e)}function Fae(e,t,n){return jae(e,t,n)}function mIe(e={}){const[t,n]=va(Dae,e);return Fae(t,n,e)}function $ae(e={}){var t=e,{popover:n}=t,o=y3(t,["popover"]);const r=w3(o.store,uh(n,["arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),s=r?.getState(),i=Dae(lo(mn({},o),{store:r})),c=nn(o.placement,s?.placement,"bottom"),l=lo(mn({},i.getState()),{placement:c,currentPlacement:c,anchorElement:nn(s?.anchorElement,null),popoverElement:nn(s?.popoverElement,null),arrowElement:nn(s?.arrowElement,null),rendered:Symbol("rendered")}),u=k1(l,i,r);return lo(mn(mn({},i),u),{setAnchorElement:d=>u.setState("anchorElement",d),setPopoverElement:d=>u.setState("popoverElement",d),setArrowElement:d=>u.setState("arrowElement",d),render:()=>u.setState("rendered",Symbol("rendered"))})}function Vae(e,t,n){return wd(t,[n.popover]),ar(e,n,"placement"),Fae(e,t,n)}var _3=H1();_3.useContext;_3.useScopedContext;var dL=_3.useProviderContext,gIe=_3.ContextProvider,MIe=_3.ScopedContextProvider,k3=H1([gIe],[MIe]);k3.useContext;k3.useScopedContext;var aw=k3.useProviderContext,zIe=k3.ContextProvider,pL=k3.ScopedContextProvider,OIe=x.createContext(void 0),yIe=x.createContext(void 0),S3=H1([zIe],[pL]),AIe=S3.useContext;S3.useScopedContext;var cw=S3.useProviderContext,fL=S3.ContextProvider,C3=S3.ScopedContextProvider;x.createContext(void 0);var Hae=H1([fL,ep],[C3,Kf]),vIe=Hae.useContext,Uae=Hae.useProviderContext;x.createContext(void 0);x.createContext(!1);var xIe="div",Xae=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=cw();return o=o||s,r=zt($e({},r),{ref:ur(o?.setAnchorElement,r.ref)}),r});Xt(function(t){const n=Xae(t);return Zt(xIe,n)});var wIe={id:null};function _Ie(e,t,n=!1){const o=e.findIndex(r=>r.id===t);return[...e.slice(o+1),...n?[wIe]:[],...e.slice(0,o)]}function kIe(e,t){return e.find(n=>!n.disabled)}function Uu(e,t){return t&&e.item(t)||null}function SIe(e){const t=[];for(const n of e){const o=t.find(r=>{var s;return((s=r[0])==null?void 0:s.rowId)===n.rowId});o?o.push(n):t.push([n])}return t}function CIe(e,t=!1){if(eu(e))e.setSelectionRange(t?e.value.length:0,e.value.length);else if(e.isContentEditable){const n=zr(e).getSelection();n?.selectAllChildren(e),t&&n?.collapseToEnd()}}var i8=Symbol("FOCUS_SILENTLY");function qIe(e){e[i8]=!0,e.focus({preventScroll:!0})}function RIe(e){const t=e[i8];return delete e[i8],t}function vM(e,t,n){return!(!t||t===n||!e.item(t.id))}var Gae=x.createContext(!0),lw="input:not([type='hidden']):not([disabled]), select:not([disabled]), textarea:not([disabled]), a[href], button:not([disabled]), [tabindex], summary, iframe, object, embed, area[href], audio[controls], video[controls], [contenteditable]:not([contenteditable='false'])";function TIe(e){return Number.parseInt(e.getAttribute("tabindex")||"0",10)<0}function la(e){return!(!e.matches(lw)||!zae(e)||e.closest("[inert]"))}function sx(e){if(!la(e)||TIe(e))return!1;if(!("form"in e)||!e.form||e.checked||e.type!=="radio")return!0;const t=e.form.elements.namedItem(e.name);if(!t||!("length"in t))return!0;const n=Jl(e);return!n||n===e||!("form"in n)||n.form!==e.form||n.name!==e.name}function bL(e,t){const n=Array.from(e.querySelectorAll(lw));t&&n.unshift(e);const o=n.filter(la);return o.forEach((r,s)=>{if(JB(r)&&r.contentDocument){const i=r.contentDocument.body;o.splice(s,1,...bL(i))}}),o}function q3(e,t,n){const o=Array.from(e.querySelectorAll(lw)),r=o.filter(sx);return t&&sx(e)&&r.unshift(e),r.forEach((s,i)=>{if(JB(s)&&s.contentDocument){const c=s.contentDocument.body,l=q3(c,!1,n);r.splice(i,1,...l)}}),!r.length&&n?o:r}function EIe(e,t,n){const[o]=q3(e,t,n);return o||null}function WIe(e,t,n,o){const r=Jl(e),s=bL(e,t),i=s.indexOf(r);return s.slice(i+1).find(sx)||null||null||null}function cC(e,t){return WIe(document.body,!1)}function NIe(e,t,n,o){const r=Jl(e),s=bL(e,t).reverse(),i=s.indexOf(r);return s.slice(i+1).find(sx)||null||null||null}function EX(e,t){return NIe(document.body,!1)}function BIe(e){for(;e&&!la(e);)e=e.closest(lw);return e||null}function ix(e){const t=Jl(e);if(!t)return!1;if(t===e)return!0;const n=t.getAttribute("aria-activedescendant");return n?n===e.id:!1}function cd(e){const t=Jl(e);if(!t)return!1;if(Yr(e,t))return!0;const n=t.getAttribute("aria-activedescendant");return!n||!("id"in e)?!1:n===e.id?!0:!!e.querySelector(`#${CSS.escape(n)}`)}function Kae(e){!cd(e)&&la(e)&&e.focus()}function LIe(e){var t;const n=(t=e.getAttribute("tabindex"))!=null?t:"";e.setAttribute("data-tabindex",n),e.setAttribute("tabindex","-1")}function PIe(e,t){const n=q3(e,t);for(const o of n)LIe(o)}function jIe(e){const t=e.querySelectorAll("[data-tabindex]"),n=o=>{const r=o.getAttribute("data-tabindex");o.removeAttribute("data-tabindex"),r?o.setAttribute("tabindex",r):o.removeAttribute("tabindex")};e.hasAttribute("data-tabindex")&&n(e);for(const o of t)n(o)}function IIe(e,t){"scrollIntoView"in e?(e.focus({preventScroll:!0}),e.scrollIntoView(mn({block:"nearest",inline:"nearest"},t))):e.focus()}var DIe="div",WX=nL(),FIe=["text","search","url","tel","email","password","number","date","month","week","time","datetime","datetime-local"],Yae=Symbol("safariFocusAncestor");function $Ie(e){return e?!!e[Yae]:!1}function NX(e,t){e&&(e[Yae]=t)}function VIe(e){const{tagName:t,readOnly:n,type:o}=e;return t==="TEXTAREA"&&!n||t==="SELECT"&&!n?!0:t==="INPUT"&&!n?FIe.includes(o):!!(e.isContentEditable||e.getAttribute("role")==="combobox"&&e.dataset.name)}function HIe(e){return"labels"in e?e.labels:null}function BX(e){return e.tagName.toLowerCase()==="input"&&e.type?e.type==="radio"||e.type==="checkbox":!1}function UIe(e){return e?e==="button"||e==="summary"||e==="input"||e==="select"||e==="textarea"||e==="a":!0}function XIe(e){return e?e==="button"||e==="input"||e==="select"||e==="textarea":!0}function GIe(e,t,n,o,r){return e?t?n&&!o?-1:void 0:n?r:r||0:r}function lC(e,t){return un(n=>{e?.(n),!n.defaultPrevented&&t&&(n.stopPropagation(),n.preventDefault())})}var hL=!0;function KIe(e){const t=e.target;t&&"hasAttribute"in t&&(t.hasAttribute("data-focus-visible")||(hL=!1))}function YIe(e){e.metaKey||e.ctrlKey||e.altKey||(hL=!0)}var Zh=en(function(t){var n=t,{focusable:o=!0,accessibleWhenDisabled:r,autoFocus:s,onFocusVisible:i}=n,c=Jt(n,["focusable","accessibleWhenDisabled","autoFocus","onFocusVisible"]);const l=x.useRef(null);x.useEffect(()=>{o&&(X0("mousedown",KIe,!0),X0("keydown",YIe,!0))},[o]),WX&&x.useEffect(()=>{if(!o)return;const P=l.current;if(!P||!BX(P))return;const $=HIe(P);if(!$)return;const F=()=>queueMicrotask(()=>P.focus());for(const X of $)X.addEventListener("mouseup",F);return()=>{for(const X of $)X.removeEventListener("mouseup",F)}},[o]);const u=o&&Ql(c),d=!!u&&!r,[p,f]=x.useState(!1);x.useEffect(()=>{o&&d&&p&&f(!1)},[o,d,p]),x.useEffect(()=>{if(!o||!p)return;const P=l.current;if(!P||typeof IntersectionObserver>"u")return;const $=new IntersectionObserver(()=>{la(P)||f(!1)});return $.observe(P),()=>$.disconnect()},[o,p]);const b=lC(c.onKeyPressCapture,u),h=lC(c.onMouseDownCapture,u),g=lC(c.onClickCapture,u),z=c.onMouseDown,A=un(P=>{if(z?.(P),P.defaultPrevented||!o)return;const $=P.currentTarget;if(!WX||Aae(P)||!xd($)&&!BX($))return;let F=!1;const X=()=>{F=!0},Z={capture:!0,once:!0};$.addEventListener("focusin",X,Z);const V=BIe($.parentElement);NX(V,!0),N2($,"mouseup",()=>{$.removeEventListener("focusin",X,!0),NX(V,!1),!F&&Kae($)})}),_=(P,$)=>{if($&&(P.currentTarget=$),!o)return;const F=P.currentTarget;F&&ix(F)&&(i?.(P),!P.defaultPrevented&&(F.dataset.focusVisible="true",f(!0)))},v=c.onKeyDownCapture,M=un(P=>{if(v?.(P),P.defaultPrevented||!o||p||P.metaKey||P.altKey||P.ctrlKey||!cs(P))return;const $=P.currentTarget;N2($,"focusout",()=>_(P,$))}),y=c.onFocusCapture,k=un(P=>{if(y?.(P),P.defaultPrevented||!o)return;if(!cs(P)){f(!1);return}const $=P.currentTarget,F=()=>_(P,$);hL||VIe(P.target)?N2(P.target,"focusout",F):f(!1)}),S=c.onBlur,C=un(P=>{S?.(P),o&&r2(P)&&f(!1)}),R=x.useContext(Gae),T=un(P=>{o&&s&&P&&R&&queueMicrotask(()=>{ix(P)||la(P)&&P.focus()})}),E=iw(l),B=o&&UIe(E),N=o&&XIe(E),j=c.style,I=x.useMemo(()=>d?$e({pointerEvents:"none"},j):j,[d,j]);return c=zt($e({"data-focus-visible":o&&p||void 0,"data-autofocus":s||void 0,"aria-disabled":u||void 0},c),{ref:ur(l,T,c.ref),style:I,tabIndex:GIe(o,d,B,N,c.tabIndex),disabled:N&&d?!0:void 0,contentEditable:u?void 0:c.contentEditable,onKeyPressCapture:b,onClickCapture:g,onMouseDownCapture:h,onMouseDown:A,onKeyDownCapture:M,onFocusCapture:k,onBlur:C}),ws(c)});Xt(function(t){const n=Zh(t);return Zt(DIe,n)});var ZIe="div";function QIe(e){return e.some(t=>!!t.rowId)}function JIe(e){const t=e.target;return t&&!eu(t)?!1:e.key.length===1&&!e.ctrlKey&&!e.metaKey}function e9e(e){return e.key==="Shift"||e.key==="Control"||e.key==="Alt"||e.key==="Meta"}function LX(e,t,n){return un(o=>{var r;if(t?.(o),o.defaultPrevented||o.isPropagationStopped()||!cs(o)||e9e(o)||JIe(o))return;const s=e.getState(),i=(r=Uu(e,s.activeId))==null?void 0:r.element;if(!i)return;const c=o,l=Jt(c,["view"]),u=n?.current;i!==u&&i.focus(),U7e(i,o.type,l)||o.preventDefault(),o.currentTarget.contains(i)&&o.stopPropagation()})}function t9e(e){return kIe(Wae(s8(SIe(e))))}function n9e(e){const[t,n]=x.useState(!1),o=x.useCallback(()=>n(!0),[]),r=e.useState(s=>Uu(e,s.activeId));return x.useEffect(()=>{const s=r?.element;t&&s&&(n(!1),s.focus({preventScroll:!0}))},[r,t]),o}var Qh=en(function(t){var n=t,{store:o,composite:r=!0,focusOnMove:s=r,moveOnKeyPress:i=!0}=n,c=Jt(n,["store","composite","focusOnMove","moveOnKeyPress"]);const l=J7e();o=o||l,wo(o,!1);const u=x.useRef(null),d=x.useRef(null),p=n9e(o),f=o.useState("moves"),[,b]=_ae(r?o.setBaseElement:null);x.useEffect(()=>{var N;if(!o||!f||!r||!s)return;const{activeId:j}=o.getState(),I=(N=Uu(o,j))==null?void 0:N.element;I&&IIe(I)},[o,f,r,s]),Uo(()=>{if(!o||!f||!r)return;const{baseElement:N,activeId:j}=o.getState();if(!(j===null)||!N)return;const P=d.current;d.current=null,P&&Vb(P,{relatedTarget:N}),ix(N)||N.focus()},[o,f,r]);const h=o.useState("activeId"),g=o.useState("virtualFocus");Uo(()=>{var N;if(!o||!r||!g)return;const j=d.current;if(d.current=null,!j)return;const P=((N=Uu(o,h))==null?void 0:N.element)||Jl(j);P!==j&&Vb(j,{relatedTarget:P})},[o,h,g,r]);const z=LX(o,c.onKeyDownCapture,d),A=LX(o,c.onKeyUpCapture,d),_=c.onFocusCapture,v=un(N=>{if(_?.(N),N.defaultPrevented||!o)return;const{virtualFocus:j}=o.getState();if(!j)return;const I=N.relatedTarget,P=RIe(N.currentTarget);cs(N)&&P&&(N.stopPropagation(),d.current=I)}),M=c.onFocus,y=un(N=>{if(M?.(N),N.defaultPrevented||!r||!o)return;const{relatedTarget:j}=N,{virtualFocus:I}=o.getState();I?cs(N)&&!vM(o,j)&&queueMicrotask(p):cs(N)&&o.setActiveId(null)}),k=c.onBlurCapture,S=un(N=>{var j;if(k?.(N),N.defaultPrevented||!o)return;const{virtualFocus:I,activeId:P}=o.getState();if(!I)return;const $=(j=Uu(o,P))==null?void 0:j.element,F=N.relatedTarget,X=vM(o,F),Z=d.current;d.current=null,cs(N)&&X?(F===$?Z&&Z!==F&&Vb(Z,N):$?Vb($,N):Z&&Vb(Z,N),N.stopPropagation()):!vM(o,N.target)&&$&&Vb($,N)}),C=c.onKeyDown,R=s0(i),T=un(N=>{var j;if(C?.(N),N.defaultPrevented||!o||!cs(N))return;const{orientation:I,renderedItems:P,activeId:$}=o.getState(),F=Uu(o,$);if((j=F?.element)!=null&&j.isConnected)return;const X=I!=="horizontal",Z=I!=="vertical",V=QIe(P);if((N.key==="ArrowLeft"||N.key==="ArrowRight"||N.key==="Home"||N.key==="End")&&eu(N.currentTarget))return;const ue={ArrowUp:(V||X)&&(()=>{if(V){const ce=t9e(P);return ce?.id}return o?.last()}),ArrowRight:(V||Z)&&o.first,ArrowDown:(V||X)&&o.first,ArrowLeft:(V||Z)&&o.last,Home:o.first,End:o.last,PageUp:o.first,PageDown:o.last}[N.key];if(ue){const ce=ue();if(ce!==void 0){if(!R(N))return;N.preventDefault(),o.move(ce)}}});c=Lo(c,N=>a.jsx(ep,{value:o,children:N}),[o]);const E=o.useState(N=>{var j;if(o&&r&&N.virtualFocus)return(j=Uu(o,N.activeId))==null?void 0:j.id});c=zt($e({"aria-activedescendant":E},c),{ref:ur(u,b,c.ref),onKeyDownCapture:z,onKeyUpCapture:A,onFocusCapture:v,onFocus:y,onBlurCapture:S,onKeyDown:T});const B=o.useState(N=>r&&(N.virtualFocus||N.activeId===null));return c=Zh($e({focusable:B},c)),c}),o9e=Xt(function(t){const n=Qh(t);return Zt(ZIe,n)}),r9e="button";function PX(e){if(!e.isTrusted)return!1;const t=e.currentTarget;return e.key==="Enter"?xd(t)||t.tagName==="SUMMARY"||t.tagName==="A":e.key===" "?xd(t)||t.tagName==="SUMMARY"||t.tagName==="INPUT"||t.tagName==="SELECT":!1}var s9e=Symbol("command"),uw=en(function(t){var n=t,{clickOnEnter:o=!0,clickOnSpace:r=!0}=n,s=Jt(n,["clickOnEnter","clickOnSpace"]);const i=x.useRef(null),[c,l]=x.useState(!1);x.useEffect(()=>{i.current&&l(xd(i.current))},[]);const[u,d]=x.useState(!1),p=x.useRef(!1),f=Ql(s),[b,h]=kae(s,s9e,!0),g=s.onKeyDown,z=un(v=>{g?.(v);const M=v.currentTarget;if(v.defaultPrevented||b||f||!cs(v)||eu(M)||M.isContentEditable)return;const y=o&&v.key==="Enter",k=r&&v.key===" ",S=v.key==="Enter"&&!o,C=v.key===" "&&!r;if(S||C){v.preventDefault();return}if(y||k){const R=PX(v);if(y){if(!R){v.preventDefault();const T=v,E=Jt(T,["view"]),B=()=>wX(M,E);$7e()?N2(M,"keyup",B):queueMicrotask(B)}}else k&&(p.current=!0,R||(v.preventDefault(),d(!0)))}}),A=s.onKeyUp,_=un(v=>{if(A?.(v),v.defaultPrevented||b||f||v.metaKey)return;const M=r&&v.key===" ";if(p.current&&M&&(p.current=!1,!PX(v))){v.preventDefault(),d(!1);const y=v.currentTarget,k=v,S=Jt(k,["view"]);queueMicrotask(()=>wX(y,S))}});return s=zt($e($e({"data-active":u||void 0,type:c?"button":void 0},h),s),{ref:ur(i,s.ref),onKeyDown:z,onKeyUp:_}),s=Zh(s),s});Xt(function(t){const n=uw(t);return Zt(r9e,n)});var Zae="button",Qae=en(function(t){const n=x.useRef(null),o=iw(n,Zae),[r,s]=x.useState(()=>!!o&&xd({tagName:o,type:t.type}));return x.useEffect(()=>{n.current&&s(xd(n.current))},[]),t=zt($e({role:!r&&o!=="a"?"button":void 0},t),{ref:ur(n,t.ref)}),t=uw(t),t});Xt(function(t){const n=Qae(t);return Zt(Zae,n)});var i9e="button",a9e=Symbol("disclosure"),Jae=en(function(t){var n=t,{store:o,toggleOnClick:r=!0}=n,s=Jt(n,["store","toggleOnClick"]);const i=dL();o=o||i,wo(o,!1);const c=x.useRef(null),[l,u]=x.useState(!1),d=o.useState("disclosureElement"),p=o.useState("open");x.useEffect(()=>{let _=d===c.current;d?.isConnected||(o?.setDisclosureElement(c.current),_=!0),u(p&&_)},[d,o,p]);const f=s.onClick,b=s0(r),[h,g]=kae(s,a9e,!0),z=un(_=>{f?.(_),!_.defaultPrevented&&(h||b(_)&&(o?.setDisclosureElement(_.currentTarget),o?.toggle()))}),A=o.useState("contentElement");return s=zt($e($e({"aria-expanded":l,"aria-controls":A?.id},g),s),{ref:ur(c,s.ref),onClick:z}),s=Qae(s),s});Xt(function(t){const n=Jae(t);return Zt(i9e,n)});var c9e="button",ece=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=aw();o=o||s,wo(o,!1);const i=o.useState("contentElement");return r=$e({"aria-haspopup":sw(i,"dialog")},r),r=Jae($e({store:o},r)),r});Xt(function(t){const n=ece(t);return Zt(c9e,n)});var tce=x.createContext(void 0),l9e="div",nce=en(function(t){const n=x.useContext(tce),o=V1(t.id);return Uo(()=>(n?.(o),()=>n?.(void 0)),[n,o]),t=$e({id:o,"aria-hidden":!0},t),ws(t)});Xt(function(t){const n=nce(t);return Zt(l9e,n)});var u9e="div",oce=en(function(t){var n=t,o=Jt(n,["store"]);return o=nce(o),o}),d9e=Xt(function(t){const n=oce(t);return Zt(u9e,n)}),p9e="div",rce=en(function(t){const[n,o]=x.useState();return t=Lo(t,r=>a.jsx(tce.Provider,{value:o,children:r}),[]),t=$e({role:"group","aria-labelledby":n},t),ws(t)});Xt(function(t){const n=rce(t);return Zt(p9e,n)});var f9e="div",sce=en(function(t){var n=t,o=Jt(n,["store"]);return o=rce(o),o}),b9e=Xt(function(t){const n=sce(t);return Zt(f9e,n)}),ice=x.createContext(!1),h9e="span",m9e=a.jsx("svg",{display:"block",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,viewBox:"0 0 16 16",height:"1em",width:"1em",children:a.jsx("polyline",{points:"4,8 7,12 12,4"})});function g9e(e){return e.checked?e.children||m9e:typeof e.children=="function"?e.children:null}var mL=en(function(t){var n=t,{store:o,checked:r}=n,s=Jt(n,["store","checked"]);const i=x.useContext(ice);r=r??i;const c=g9e({checked:r,children:s.children});return s=zt($e({"aria-hidden":!0},s),{children:c,style:$e({width:"1em",height:"1em",pointerEvents:"none"},s.style)}),ws(s)});Xt(function(t){const n=mL(t);return Zt(h9e,n)});var M9e="div";function ace(e){const t=e.relatedTarget;return t?.nodeType===Node.ELEMENT_NODE?t:null}function z9e(e){const t=ace(e);return t?Yr(e.currentTarget,t):!1}var a8=Symbol("composite-hover");function O9e(e){let t=ace(e);if(!t)return!1;do{if(Bl(t,a8)&&t[a8])return!0;t=t.parentElement}while(t);return!1}var gL=en(function(t){var n=t,{store:o,focusOnHover:r=!0,blurOnHoverEnd:s=!!r}=n,i=Jt(n,["store","focusOnHover","blurOnHoverEnd"]);const c=x3();o=o||c,wo(o,!1);const l=aL(),u=i.onMouseMove,d=s0(r),p=un(z=>{if(u?.(z),!z.defaultPrevented&&l()&&d(z)){if(!cd(z.currentTarget)){const A=o?.getState().baseElement;A&&!ix(A)&&A.focus()}o?.setActiveId(z.currentTarget.id)}}),f=i.onMouseLeave,b=s0(s),h=un(z=>{var A;f?.(z),!z.defaultPrevented&&l()&&(z9e(z)||O9e(z)||d(z)&&b(z)&&(o?.setActiveId(null),(A=o?.getState().baseElement)==null||A.focus()))}),g=x.useCallback(z=>{z&&(z[a8]=!0)},[]);return i=zt($e({},i),{ref:ur(g,i.ref),onMouseMove:p,onMouseLeave:h}),ws(i)}),y9e=Tc(Xt(function(t){const n=gL(t);return Zt(M9e,n)})),A9e="div",ML=en(function(t){var n=t,{store:o,shouldRegisterItem:r=!0,getItem:s=gae,element:i}=n,c=Jt(n,["store","shouldRegisterItem","getItem","element"]);const l=Y7e();o=o||l;const u=V1(c.id),d=x.useRef(i);return x.useEffect(()=>{const p=d.current;if(!u||!p||!r)return;const f=s({id:u,element:p});return o?.renderItem(f)},[u,r,s,o]),c=zt($e({},c),{ref:ur(d,c.ref)}),ws(c)});Xt(function(t){const n=ML(t);return Zt(A9e,n)});var v9e="button";function x9e(e){return r8(e)?!0:e.tagName==="INPUT"&&!xd(e)}function w9e(e,t=!1){const n=e.clientHeight,{top:o}=e.getBoundingClientRect(),r=Math.max(n*.875,n-40)*1.5,s=t?n-r+o:r+o;return e.tagName==="HTML"?s+e.scrollTop:s}function _9e(e,t=!1){const{top:n}=e.getBoundingClientRect();return t?n+e.clientHeight:n}function jX(e,t,n,o=!1){var r;if(!t||!n)return;const{renderedItems:s}=t.getState(),i=Oae(e);if(!i)return;const c=w9e(i,o);let l,u;for(let d=0;d<s.length;d+=1){const p=l;if(l=n(d),!l)break;if(l===p)continue;const f=(r=Uu(t,l))==null?void 0:r.element;if(!f)continue;const h=_9e(f,o)-c,g=Math.abs(h);if(o&&h<=0||!o&&h>=0){u!==void 0&&u<g&&(l=p);break}u=g}return l}function k9e(e,t){return cs(e)?!1:vM(t,e.target)}var Jh=en(function(t){var n=t,{store:o,rowId:r,preventScrollOnKeyDown:s=!1,moveOnKeyPress:i=!0,tabbable:c=!1,getItem:l,"aria-setsize":u,"aria-posinset":d}=n,p=Jt(n,["store","rowId","preventScrollOnKeyDown","moveOnKeyPress","tabbable","getItem","aria-setsize","aria-posinset"]);const f=x3();o=o||f;const b=V1(p.id),h=x.useRef(null),g=x.useContext(Sae),A=Ql(p)&&!p.accessibleWhenDisabled,{rowId:_,baseElement:v,isActiveItem:M,ariaSetSize:y,ariaPosInSet:k,isTabbable:S}=Rae(o,{rowId(X){if(r)return r;if(X&&g?.baseElement&&g.baseElement===X.baseElement)return g.id},baseElement(X){return X?.baseElement||void 0},isActiveItem(X){return!!X&&X.activeId===b},ariaSetSize(X){if(u!=null)return u;if(X&&g?.ariaSetSize&&g.baseElement===X.baseElement)return g.ariaSetSize},ariaPosInSet(X){if(d!=null)return d;if(!X||!g?.ariaPosInSet||g.baseElement!==X.baseElement)return;const Z=X.renderedItems.filter(V=>V.rowId===_);return g.ariaPosInSet+Z.findIndex(V=>V.id===b)},isTabbable(X){if(!X?.renderedItems.length)return!0;if(X.virtualFocus)return!1;if(c)return!0;if(X.activeId===null)return!1;const Z=o?.item(X.activeId);return Z?.disabled||!Z?.element?!0:X.activeId===b}}),C=x.useCallback(X=>{var Z;const V=zt($e({},X),{id:b||X.id,rowId:_,disabled:!!A,children:(Z=X.element)==null?void 0:Z.textContent});return l?l(V):V},[b,_,A,l]),R=p.onFocus,T=x.useRef(!1),E=un(X=>{if(R?.(X),X.defaultPrevented||Aae(X)||!b||!o||k9e(X,o))return;const{virtualFocus:Z,baseElement:V}=o.getState();if(o.setActiveId(b),r8(X.currentTarget)&&CIe(X.currentTarget),!Z||!cs(X)||x9e(X.currentTarget)||!V?.isConnected)return;nL()&&X.currentTarget.hasAttribute("data-autofocus")&&X.currentTarget.scrollIntoView({block:"nearest",inline:"nearest"}),T.current=!0,X.relatedTarget===V||vM(o,X.relatedTarget)?qIe(V):V.focus()}),B=p.onBlurCapture,N=un(X=>{if(B?.(X),X.defaultPrevented)return;const Z=o?.getState();Z?.virtualFocus&&T.current&&(T.current=!1,X.preventDefault(),X.stopPropagation())}),j=p.onKeyDown,I=s0(s),P=s0(i),$=un(X=>{if(j?.(X),X.defaultPrevented||!cs(X)||!o)return;const{currentTarget:Z}=X,V=o.getState(),ee=o.item(b),te=!!ee?.rowId,J=V.orientation!=="horizontal",ue=V.orientation!=="vertical",ce=()=>!!(te||ue||!V.baseElement||!eu(V.baseElement)),de={ArrowUp:(te||J)&&o.up,ArrowRight:(te||ue)&&o.next,ArrowDown:(te||J)&&o.down,ArrowLeft:(te||ue)&&o.previous,Home:()=>{if(ce())return!te||X.ctrlKey?o?.first():o?.previous(-1)},End:()=>{if(ce())return!te||X.ctrlKey?o?.last():o?.next(-1)},PageUp:()=>jX(Z,o,o?.up,!0),PageDown:()=>jX(Z,o,o?.down)}[X.key];if(de){if(r8(Z)){const ye=I7e(Z),Ne=ue&&X.key==="ArrowLeft",je=ue&&X.key==="ArrowRight",ie=J&&X.key==="ArrowUp",we=J&&X.key==="ArrowDown";if(je||we){const{length:re}=j7e(Z);if(ye.end!==re)return}else if((Ne||ie)&&ye.start!==0)return}const Ae=de();if(I(X)||Ae!==void 0){if(!P(X))return;X.preventDefault(),o.move(Ae)}}}),F=x.useMemo(()=>({id:b,baseElement:v}),[b,v]);return p=Lo(p,X=>a.jsx(eIe.Provider,{value:F,children:X}),[F]),p=zt($e({id:b,"data-active-item":M||void 0},p),{ref:ur(h,p.ref),tabIndex:S?p.tabIndex:-1,onFocus:E,onBlurCapture:N,onKeyDown:$}),p=uw(p),p=ML(zt($e({store:o},p),{getItem:C,shouldRegisterItem:b?p.shouldRegisterItem:!1})),ws(zt($e({},p),{"aria-setsize":y,"aria-posinset":k}))}),c8=Tc(Xt(function(t){const n=Jh(t);return Zt(v9e,n)})),S9e="div";function IX(e,t){const n=setTimeout(t,e);return()=>clearTimeout(n)}function C9e(e){let t=requestAnimationFrame(()=>{t=requestAnimationFrame(e)});return()=>cancelAnimationFrame(t)}function DX(...e){return e.join(", ").split(", ").reduce((t,n)=>{const o=n.endsWith("ms")?1:1e3,r=Number.parseFloat(n||"0s")*o;return r>t?r:t},0)}function dw(e,t,n){return!n&&t!==!1&&(!e||!!t)}var pw=en(function(t){var n=t,{store:o,alwaysVisible:r}=n,s=Jt(n,["store","alwaysVisible"]);const i=dL();o=o||i,wo(o,!1);const c=x.useRef(null),l=V1(s.id),[u,d]=x.useState(null),p=o.useState("open"),f=o.useState("mounted"),b=o.useState("animated"),h=o.useState("contentElement"),g=Hn(o.disclosure,"contentElement");Uo(()=>{c.current&&o?.setContentElement(c.current)},[o]),Uo(()=>{let v;return o?.setState("animated",M=>(v=M,!0)),()=>{v!==void 0&&o?.setState("animated",v)}},[o]),Uo(()=>{if(b){if(!h?.isConnected){d(null);return}return C9e(()=>{d(p?"enter":f?"leave":null)})}},[b,h,p,f]),Uo(()=>{if(!o||!b||!u||!h)return;const v=()=>o?.setState("animating",!1),M=()=>hs.flushSync(v);if(u==="leave"&&p||u==="enter"&&!p)return;if(typeof b=="number")return IX(b,M);const{transitionDuration:y,animationDuration:k,transitionDelay:S,animationDelay:C}=getComputedStyle(h),{transitionDuration:R="0",animationDuration:T="0",transitionDelay:E="0",animationDelay:B="0"}=g?getComputedStyle(g):{},N=DX(S,C,E,B),j=DX(y,k,R,T),I=N+j;if(!I){u==="enter"&&o.setState("animated",!1),v();return}const P=1e3/60,$=Math.max(I-P,0);return IX($,M)},[o,b,h,g,p,u]),s=Lo(s,v=>a.jsx(pL,{value:o,children:v}),[o]);const z=dw(f,s.hidden,r),A=s.style,_=x.useMemo(()=>z?zt($e({},A),{display:"none"}):A,[z,A]);return s=zt($e({id:l,"data-open":p||void 0,"data-enter":u==="enter"||void 0,"data-leave":u==="leave"||void 0,hidden:z},s),{ref:ur(l?o.setContentElement:null,c,s.ref),style:_}),ws(s)}),q9e=Xt(function(t){const n=pw(t);return Zt(S9e,n)});Xt(function(t){var n=t,{unmountOnHide:o}=n,r=Jt(n,["unmountOnHide"]);const s=dL(),i=r.store||s;return Hn(i,l=>!o||l?.mounted)===!1?null:a.jsx(q9e,$e({},r))});function cce(e,...t){if(!e)return!1;const n=e.getAttribute("data-backdrop");return n==null?!1:n===""||n==="true"||!t.length?!0:t.some(o=>n===o)}var uC=new WeakMap;function R3(e,t,n){uC.has(e)||uC.set(e,new Map);const o=uC.get(e),r=o.get(t);if(!r)return o.set(t,n()),()=>{var c;(c=o.get(t))==null||c(),o.delete(t)};const s=n(),i=()=>{s(),r(),o.delete(t)};return o.set(t,i),()=>{o.get(t)===i&&(s(),o.set(t,r))}}function zL(e,t,n){return R3(e,t,()=>{const r=e.getAttribute(t);return e.setAttribute(t,n),()=>{r==null?e.removeAttribute(t):e.setAttribute(t,r)}})}function Of(e,t,n){return R3(e,t,()=>{const r=t in e,s=e[t];return e[t]=n,()=>{r?e[t]=s:delete e[t]}})}function l8(e,t){return e?R3(e,"style",()=>{const o=e.style.cssText;return Object.assign(e.style,t),()=>{e.style.cssText=o}}):()=>{}}function R9e(e,t,n){return e?R3(e,t,()=>{const r=e.style.getPropertyValue(t);return e.style.setProperty(t,n),()=>{r?e.style.setProperty(t,r):e.style.removeProperty(t)}}):()=>{}}var T9e=["SCRIPT","STYLE"];function u8(e){return`__ariakit-dialog-snapshot-${e}`}function E9e(e,t){const n=zr(t),o=u8(e);if(!n.body[o])return!0;do{if(t===n.body)return!1;if(t[o])return!0;if(!t.parentElement)return!1;t=t.parentElement}while(!0)}function W9e(e,t,n){return T9e.includes(t.tagName)||!E9e(e,t)?!1:!n.some(o=>o&&Yr(t,o))}function OL(e,t,n,o){for(let r of t){if(!r?.isConnected)continue;const s=t.some(l=>!l||l===r?!1:l.contains(r)),i=zr(r),c=r;for(;r.parentElement&&r!==i.body;){if(o?.(r.parentElement,c),!s)for(const l of r.parentElement.children)W9e(e,l,t)&&n(l,c);r=r.parentElement}}}function N9e(e,t){const{body:n}=zr(t[0]),o=[];return OL(e,t,s=>{o.push(Of(s,u8(e),!0))}),_1(Of(n,u8(e),!0),()=>{for(const s of o)s()})}function dh(e="",t=!1){return`__ariakit-dialog-${t?"ancestor":"outside"}${e?`-${e}`:""}`}function B9e(e,t=""){return _1(Of(e,dh(),!0),Of(e,dh(t),!0))}function lce(e,t=""){return _1(Of(e,dh("",!0),!0),Of(e,dh(t,!0),!0))}function yL(e,t){const n=dh(t,!0);if(e[n])return!0;const o=dh(t);do{if(e[o])return!0;if(!e.parentElement)return!1;e=e.parentElement}while(!0)}function FX(e,t){const n=[],o=t.map(s=>s?.id);return OL(e,t,s=>{cce(s,...o)||n.unshift(B9e(s,e))},(s,i)=>{i.hasAttribute("data-dialog")&&i.id!==e||n.unshift(lce(s,e))}),()=>{for(const s of n)s()}}var L9e="div",P9e=["a","button","details","dialog","div","form","h1","h2","h3","h4","h5","h6","header","img","input","label","li","nav","ol","p","section","select","span","summary","textarea","ul","svg"];en(function(t){return t});var iz=Xt(function(t){return Zt(L9e,t)});Object.assign(iz,P9e.reduce((e,t)=>(e[t]=Xt(function(o){return Zt(t,o)}),e),{}));function j9e({store:e,backdrop:t,alwaysVisible:n,hidden:o}){const r=x.useRef(null),s=Iae({disclosure:e}),i=Hn(e,"contentElement");x.useEffect(()=>{const u=r.current,d=i;u&&d&&(u.style.zIndex=getComputedStyle(d).zIndex)},[i]),Uo(()=>{const u=i?.id;if(!u)return;const d=r.current;if(d)return lce(d,u)},[i]);const c=pw({ref:r,store:s,role:"presentation","data-backdrop":i?.id||"",alwaysVisible:n,hidden:o??void 0,style:{position:"fixed",top:0,right:0,bottom:0,left:0}});if(!t)return null;if(x.isValidElement(t))return a.jsx(iz,zt($e({},c),{render:t}));const l=typeof t!="boolean"?t:"div";return a.jsx(iz,zt($e({},c),{render:a.jsx(l,{})}))}function I9e(e,...t){if(!e)return!1;const n=e.getAttribute("data-focus-trap");return n==null?!1:t.length?n===""?!1:t.some(o=>n===o):!0}function D9e(e){return zL(e,"aria-hidden","true")}function uce(){return"inert"in HTMLElement.prototype}function dce(e,t){if(!("style"in e))return Vv;if(uce())return Of(e,"inert",!0);const o=q3(e,!0).map(r=>{if(t?.some(i=>i&&Yr(i,r)))return Vv;const s=R3(r,"focus",()=>(r.focus=Vv,()=>{delete r.focus}));return _1(zL(r,"tabindex","-1"),s)});return _1(...o,D9e(e),l8(e,{pointerEvents:"none",userSelect:"none",cursor:"default"}))}function F9e(e,t){const n=[],o=t.map(s=>s?.id);return OL(e,t,s=>{cce(s,...o)||I9e(s,...o)||n.unshift(dce(s,t))},s=>{s.hasAttribute("role")&&(t.some(i=>i&&Yr(i,s))||n.unshift(zL(s,"role","none")))}),()=>{for(const s of n)s()}}function $9e({attribute:e,contentId:t,contentElement:n,enabled:o}){const[r,s]=sL(),i=x.useCallback(()=>{if(!o||!n)return!1;const{body:c}=zr(n),l=c.getAttribute(e);return!l||l===t},[r,o,n,e,t]);return x.useEffect(()=>{if(!o||!t||!n)return;const{body:c}=zr(n);if(i())return c.setAttribute(e,t),()=>c.removeAttribute(e);const l=new MutationObserver(()=>hs.flushSync(s));return l.observe(c,{attributeFilter:[e]}),()=>l.disconnect()},[r,o,t,n,i,e]),i}function V9e(e){const t=e.getBoundingClientRect().left;return Math.round(t)+e.scrollLeft?"paddingLeft":"paddingRight"}function H9e(e,t,n){const o=$9e({attribute:"data-dialog-prevent-body-scroll",contentElement:e,contentId:t,enabled:n});x.useEffect(()=>{if(!o()||!e)return;const r=zr(e),s=Mae(e),{documentElement:i,body:c}=r,l=i.style.getPropertyValue("--scrollbar-width"),u=l?Number.parseInt(l):s.innerWidth-i.clientWidth,d=()=>R9e(i,"--scrollbar-width",`${u}px`),p=V9e(i),f=()=>l8(c,{overflow:"hidden",[p]:`${u}px`}),b=()=>{var g,z;const{scrollX:A,scrollY:_,visualViewport:v}=s,M=(g=v?.offsetLeft)!=null?g:0,y=(z=v?.offsetTop)!=null?z:0,k=l8(c,{position:"fixed",overflow:"hidden",top:`${-(_-Math.floor(y))}px`,left:`${-(A-Math.floor(M))}px`,right:"0",[p]:`${u}px`});return()=>{k(),s.scrollTo({left:A,top:_,behavior:"instant"})}},h=tL()&&!V7e();return _1(d(),h?b():f())},[o,e])}var $X=x.createContext({});function U9e(e){const t=x.useContext($X),[n,o]=x.useState([]),r=x.useCallback(c=>{var l;return o(u=>[...u,c]),_1((l=t.add)==null?void 0:l.call(t,c),()=>{o(u=>u.filter(d=>d!==c))})},[t]);Uo(()=>Ir(e,["open","contentElement"],c=>{var l;if(c.open&&c.contentElement)return(l=t.add)==null?void 0:l.call(t,e)}),[e,t]);const s=x.useMemo(()=>({store:e,add:r}),[e,r]);return{wrapElement:x.useCallback(c=>a.jsx($X.Provider,{value:s,children:c}),[s]),nestedDialogs:n}}function X9e(e){const t=x.useRef();return x.useEffect(()=>{if(!e){t.current=null;return}return X0("mousedown",o=>{t.current=o.target},!0)},[e]),t}function G9e(e){return e.tagName==="HTML"?!0:Yr(zr(e).body,e)}function K9e(e,t){if(!e)return!1;if(Yr(e,t))return!0;const n=t.getAttribute("aria-activedescendant");if(n){const o=zr(e).getElementById(n);if(o)return Yr(e,o)}return!1}function Y9e(e,t){if(!("clientY"in e))return!1;const n=t.getBoundingClientRect();return n.width===0||n.height===0?!1:n.top<=e.clientY&&e.clientY<=n.top+n.height&&n.left<=e.clientX&&e.clientX<=n.left+n.width}function dC({store:e,type:t,listener:n,capture:o,domReady:r}){const s=un(n),i=Hn(e,"open"),c=x.useRef(!1);Uo(()=>{if(!i||!r)return;const{contentElement:l}=e.getState();if(!l)return;const u=()=>{c.current=!0};return l.addEventListener("focusin",u,!0),()=>l.removeEventListener("focusin",u,!0)},[e,i,r]),x.useEffect(()=>i?X0(t,u=>{const{contentElement:d,disclosureElement:p}=e.getState(),f=u.target;!d||!f||!G9e(f)||Yr(d,f)||K9e(p,f)||f.hasAttribute("data-focus-trap")||Y9e(u,d)||c.current&&!yL(f,d.id)||$Ie(f)||s(u)},o):void 0,[i,o])}function pC(e,t){return typeof e=="function"?e(t):!!e}function Z9e(e,t,n){const o=Hn(e,"open"),r=X9e(o),s={store:e,domReady:n,capture:!0};dC(zt($e({},s),{type:"click",listener:i=>{const{contentElement:c}=e.getState(),l=r.current;l&&zae(l)&&yL(l,c?.id)&&pC(t,i)&&e.hide()}})),dC(zt($e({},s),{type:"focusin",listener:i=>{const{contentElement:c}=e.getState();c&&i.target!==zr(c)&&pC(t,i)&&e.hide()}})),dC(zt($e({},s),{type:"contextmenu",listener:i=>{pC(t,i)&&e.hide()}}))}function Q9e(e,t){const o=zr(e).createElement("button");return o.type="button",o.tabIndex=-1,o.textContent="Dismiss popup",Object.assign(o.style,{border:"0px",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0px",position:"absolute",whiteSpace:"nowrap",width:"1px"}),o.addEventListener("click",t),e.prepend(o),()=>{o.removeEventListener("click",t),o.remove()}}var J9e="div",pce=en(function(t){var n=t,{autoFocusOnShow:o=!0}=n,r=Jt(n,["autoFocusOnShow"]);return r=Lo(r,s=>a.jsx(Gae.Provider,{value:o,children:s}),[o]),r});Xt(function(t){const n=pce(t);return Zt(J9e,n)});var VX=x.createContext(0);function eDe({level:e,children:t}){const n=x.useContext(VX),o=Math.max(Math.min(e||n+1,6),1);return a.jsx(VX.Provider,{value:o,children:t})}var tDe="span",fce=en(function(t){return t=zt($e({},t),{style:$e({border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",whiteSpace:"nowrap",width:"1px"},t.style)}),t});Xt(function(t){const n=fce(t);return Zt(tDe,n)});var nDe="span",oDe=en(function(t){return t=zt($e({"data-focus-trap":"",tabIndex:0,"aria-hidden":!0},t),{style:$e({position:"fixed",top:0,left:0},t.style)}),t=fce(t),t}),AA=Xt(function(t){const n=oDe(t);return Zt(nDe,n)}),HX=x.createContext(null),rDe="div";function sDe(e){return zr(e).body}function iDe(e,t){return t?typeof t=="function"?t(e):t:zr(e).createElement("div")}function aDe(e="id"){return`${e?`${e}-`:""}${Math.random().toString(36).slice(2,8)}`}function Ru(e){queueMicrotask(()=>{e?.focus()})}var bce=en(function(t){var n=t,{preserveTabOrder:o,preserveTabOrderAnchor:r,portalElement:s,portalRef:i,portal:c=!0}=n,l=Jt(n,["preserveTabOrder","preserveTabOrderAnchor","portalElement","portalRef","portal"]);const u=x.useRef(null),d=ur(u,l.ref),p=x.useContext(HX),[f,b]=x.useState(null),[h,g]=x.useState(null),z=x.useRef(null),A=x.useRef(null),_=x.useRef(null),v=x.useRef(null);return Uo(()=>{const M=u.current;if(!M||!c){b(null);return}const y=iDe(M,s);if(!y){b(null);return}const k=y.isConnected;if(k||(p||sDe(M)).appendChild(y),y.id||(y.id=M.id?`portal/${M.id}`:aDe()),b(y),o8(i,y),!k)return()=>{y.remove(),o8(i,null)}},[c,s,p,i]),Uo(()=>{if(!c||!o||!r)return;const y=zr(r).createElement("span");return y.style.position="fixed",r.insertAdjacentElement("afterend",y),g(y),()=>{y.remove(),g(null)}},[c,o,r]),x.useEffect(()=>{if(!f||!o)return;let M=0;const y=k=>{if(!r2(k))return;const S=k.type==="focusin";if(cancelAnimationFrame(M),S)return jIe(f);M=requestAnimationFrame(()=>{PIe(f,!0)})};return f.addEventListener("focusin",y,!0),f.addEventListener("focusout",y,!0),()=>{cancelAnimationFrame(M),f.removeEventListener("focusin",y,!0),f.removeEventListener("focusout",y,!0)}},[f,o]),l=Lo(l,M=>{if(M=a.jsx(HX.Provider,{value:f||p,children:M}),!c)return M;if(!f)return a.jsx("span",{ref:d,id:l.id,style:{position:"fixed"},hidden:!0});M=a.jsxs(a.Fragment,{children:[o&&f&&a.jsx(AA,{ref:A,"data-focus-trap":l.id,className:"__focus-trap-inner-before",onFocus:k=>{r2(k,f)?Ru(cC()):Ru(z.current)}}),M,o&&f&&a.jsx(AA,{ref:_,"data-focus-trap":l.id,className:"__focus-trap-inner-after",onFocus:k=>{r2(k,f)?Ru(EX()):Ru(v.current)}})]}),f&&(M=hs.createPortal(M,f));let y=a.jsxs(a.Fragment,{children:[o&&f&&a.jsx(AA,{ref:z,"data-focus-trap":l.id,className:"__focus-trap-outer-before",onFocus:k=>{!(k.relatedTarget===v.current)&&r2(k,f)?Ru(A.current):Ru(EX())}}),o&&a.jsx("span",{"aria-owns":f?.id,style:{position:"fixed"}}),o&&f&&a.jsx(AA,{ref:v,"data-focus-trap":l.id,className:"__focus-trap-outer-after",onFocus:k=>{if(r2(k,f))Ru(_.current);else{const S=cC();if(S===A.current){requestAnimationFrame(()=>{var C;return(C=cC())==null?void 0:C.focus()});return}Ru(S)}}})]});return h&&o&&(y=hs.createPortal(y,h)),a.jsxs(a.Fragment,{children:[y,M]})},[f,p,c,l.id,o,h]),l=zt($e({},l),{ref:d}),l});Xt(function(t){const n=bce(t);return Zt(rDe,n)});var cDe="div",UX=nL();function lDe(e){const t=Jl();return!t||e&&Yr(e,t)?!1:!!la(t)}function XX(e,t=!1){if(!e)return null;const n="current"in e?e.current:e;return n?t?la(n)?n:null:n:null}var hce=en(function(t){var n=t,{store:o,open:r,onClose:s,focusable:i=!0,modal:c=!0,portal:l=!!c,backdrop:u=!!c,hideOnEscape:d=!0,hideOnInteractOutside:p=!0,getPersistentElements:f,preventBodyScroll:b=!!c,autoFocusOnShow:h=!0,autoFocusOnHide:g=!0,initialFocus:z,finalFocus:A,unmountOnHide:_,unstable_treeSnapshotKey:v}=n,M=Jt(n,["store","open","onClose","focusable","modal","portal","backdrop","hideOnEscape","hideOnInteractOutside","getPersistentElements","preventBodyScroll","autoFocusOnShow","autoFocusOnHide","initialFocus","finalFocus","unmountOnHide","unstable_treeSnapshotKey"]);const y=aw(),k=x.useRef(null),S=mIe({store:o||y,open:r,setOpen(Se){if(Se)return;const se=k.current;if(!se)return;const L=new Event("close",{bubbles:!1,cancelable:!0});s&&se.addEventListener("close",s,{once:!0}),se.dispatchEvent(L),L.defaultPrevented&&S.setOpen(!0)}}),{portalRef:C,domReady:R}=iL(l,M.portalRef),T=M.preserveTabOrder,E=Hn(S,Se=>T&&!c&&Se.mounted),B=V1(M.id),N=Hn(S,"open"),j=Hn(S,"mounted"),I=Hn(S,"contentElement"),P=dw(j,M.hidden,M.alwaysVisible);H9e(I,B,b&&!P),Z9e(S,p,R);const{wrapElement:$,nestedDialogs:F}=U9e(S);M=Lo(M,$,[$]),Uo(()=>{if(!N)return;const Se=k.current,se=Jl(Se,!0);se&&se.tagName!=="BODY"&&(Se&&Yr(Se,se)||S.setDisclosureElement(se))},[S,N]),UX&&x.useEffect(()=>{if(!j)return;const{disclosureElement:Se}=S.getState();if(!Se||!xd(Se))return;const se=()=>{let L=!1;const U=()=>{L=!0},ne={capture:!0,once:!0};Se.addEventListener("focusin",U,ne),N2(Se,"mouseup",()=>{Se.removeEventListener("focusin",U,!0),!L&&Kae(Se)})};return Se.addEventListener("mousedown",se),()=>{Se.removeEventListener("mousedown",se)}},[S,j]),x.useEffect(()=>{if(!j||!R)return;const Se=k.current;if(!Se)return;const se=Mae(Se),L=se.visualViewport||se,U=()=>{var ne,ve;const qe=(ve=(ne=se.visualViewport)==null?void 0:ne.height)!=null?ve:se.innerHeight;Se.style.setProperty("--dialog-viewport-height",`${qe}px`)};return U(),L.addEventListener("resize",U),()=>{L.removeEventListener("resize",U)}},[j,R]),x.useEffect(()=>{if(!c||!j||!R)return;const Se=k.current;if(!(!Se||Se.querySelector("[data-dialog-dismiss]")))return Q9e(Se,S.hide)},[S,c,j,R]),Uo(()=>{if(!uce()||N||!j||!R)return;const Se=k.current;if(Se)return dce(Se)},[N,j,R]);const X=N&&R;Uo(()=>{if(!B||!X)return;const Se=k.current;return N9e(B,[Se])},[B,X,v]);const Z=un(f);Uo(()=>{if(!B||!X)return;const{disclosureElement:Se}=S.getState(),se=k.current,L=Z()||[],U=[se,...L,...F.map(ne=>ne.getState().contentElement)];return c?_1(FX(B,U),F9e(B,U)):FX(B,[Se,...U])},[B,S,X,Z,F,c,v]);const V=!!h,ee=s0(h),[te,J]=x.useState(!1);x.useEffect(()=>{if(!N||!V||!R||!I?.isConnected)return;const Se=XX(z,!0)||I.querySelector("[data-autofocus=true],[autofocus]")||EIe(I,!0,l&&E)||I,se=la(Se);ee(se?Se:null)&&(J(!0),queueMicrotask(()=>{Se.focus(),UX&&Se.scrollIntoView({block:"nearest",inline:"nearest"})}))},[N,V,R,I,z,l,E,ee]);const ue=!!g,ce=s0(g),[me,de]=x.useState(!1);x.useEffect(()=>{if(N)return de(!0),()=>de(!1)},[N]);const Ae=x.useCallback((Se,se=!0)=>{const{disclosureElement:L}=S.getState();if(lDe(Se))return;let U=XX(A)||L;if(U?.id){const ve=zr(U),qe=`[aria-activedescendant="${U.id}"]`,Pe=ve.querySelector(qe);Pe&&(U=Pe)}if(U&&!la(U)){const ve=U.closest("[data-dialog]");if(ve?.id){const qe=zr(ve),Pe=`[aria-controls~="${ve.id}"]`,rt=qe.querySelector(Pe);rt&&(U=rt)}}const ne=U&&la(U);if(!ne&&se){requestAnimationFrame(()=>Ae(Se,!1));return}ce(ne?U:null)&&ne&&U?.focus()},[S,A,ce]),ye=x.useRef(!1);Uo(()=>{if(N||!me||!ue)return;const Se=k.current;ye.current=!0,Ae(Se)},[N,me,R,ue,Ae]),x.useEffect(()=>{if(!me||!ue)return;const Se=k.current;return()=>{if(ye.current){ye.current=!1;return}Ae(Se)}},[me,ue,Ae]);const Ne=s0(d);x.useEffect(()=>!R||!j?void 0:X0("keydown",se=>{if(se.key!=="Escape"||se.defaultPrevented)return;const L=k.current;if(!L||yL(L))return;const U=se.target;if(!U)return;const{disclosureElement:ne}=S.getState();!!(U.tagName==="BODY"||Yr(L,U)||!ne||Yr(ne,U))&&Ne(se)&&S.hide()},!0),[S,R,j,Ne]),M=Lo(M,Se=>a.jsx(eDe,{level:c?1:void 0,children:Se}),[c]);const je=M.hidden,ie=M.alwaysVisible;M=Lo(M,Se=>u?a.jsxs(a.Fragment,{children:[a.jsx(j9e,{store:S,backdrop:u,hidden:je,alwaysVisible:ie}),Se]}):Se,[S,u,je,ie]);const[we,re]=x.useState(),[pe,ke]=x.useState();return M=Lo(M,Se=>a.jsx(pL,{value:S,children:a.jsx(OIe.Provider,{value:re,children:a.jsx(yIe.Provider,{value:ke,children:Se})})}),[S]),M=zt($e({id:B,"data-dialog":"",role:"dialog",tabIndex:i?-1:void 0,"aria-labelledby":we,"aria-describedby":pe},M),{ref:ur(k,M.ref)}),M=pce(zt($e({},M),{autoFocusOnShow:te})),M=pw($e({store:S},M)),M=Zh(zt($e({},M),{focusable:i})),M=bce(zt($e({portal:l},M),{portalRef:C,preserveTabOrder:E})),M});function em(e,t=aw){return Xt(function(o){const r=t(),s=o.store||r;return Hn(s,c=>!o.unmountOnHide||c?.mounted||!!o.open)?a.jsx(e,$e({},o)):null})}em(Xt(function(t){const n=hce(t);return Zt(cDe,n)}),aw);const _d=Math.min,Es=Math.max,ax=Math.round,vA=Math.floor,kd=e=>({x:e,y:e}),uDe={left:"right",right:"left",bottom:"top",top:"bottom"},dDe={start:"end",end:"start"};function d8(e,t,n){return Es(e,_d(t,n))}function Sd(e,t){return typeof e=="function"?e(t):e}function Ll(e){return e.split("-")[0]}function tm(e){return e.split("-")[1]}function AL(e){return e==="x"?"y":"x"}function vL(e){return e==="y"?"height":"width"}function Cd(e){return["top","bottom"].includes(Ll(e))?"y":"x"}function xL(e){return AL(Cd(e))}function pDe(e,t,n){n===void 0&&(n=!1);const o=tm(e),r=xL(e),s=vL(r);let i=r==="x"?o===(n?"end":"start")?"right":"left":o==="start"?"bottom":"top";return t.reference[s]>t.floating[s]&&(i=cx(i)),[i,cx(i)]}function fDe(e){const t=cx(e);return[p8(e),t,p8(t)]}function p8(e){return e.replace(/start|end/g,t=>dDe[t])}function bDe(e,t,n){const o=["left","right"],r=["right","left"],s=["top","bottom"],i=["bottom","top"];switch(e){case"top":case"bottom":return n?t?r:o:t?o:r;case"left":case"right":return t?s:i;default:return[]}}function hDe(e,t,n,o){const r=tm(e);let s=bDe(Ll(e),n==="start",o);return r&&(s=s.map(i=>i+"-"+r),t&&(s=s.concat(s.map(p8)))),s}function cx(e){return e.replace(/left|right|bottom|top/g,t=>uDe[t])}function mDe(e){return{top:0,right:0,bottom:0,left:0,...e}}function mce(e){return typeof e!="number"?mDe(e):{top:e,right:e,bottom:e,left:e}}function lx(e){const{x:t,y:n,width:o,height:r}=e;return{width:o,height:r,top:n,left:t,right:t+o,bottom:n+r,x:t,y:n}}function GX(e,t,n){let{reference:o,floating:r}=e;const s=Cd(t),i=xL(t),c=vL(i),l=Ll(t),u=s==="y",d=o.x+o.width/2-r.width/2,p=o.y+o.height/2-r.height/2,f=o[c]/2-r[c]/2;let b;switch(l){case"top":b={x:d,y:o.y-r.height};break;case"bottom":b={x:d,y:o.y+o.height};break;case"right":b={x:o.x+o.width,y:p};break;case"left":b={x:o.x-r.width,y:p};break;default:b={x:o.x,y:o.y}}switch(tm(t)){case"start":b[i]-=f*(n&&u?-1:1);break;case"end":b[i]+=f*(n&&u?-1:1);break}return b}const gDe=async(e,t,n)=>{const{placement:o="bottom",strategy:r="absolute",middleware:s=[],platform:i}=n,c=s.filter(Boolean),l=await(i.isRTL==null?void 0:i.isRTL(t));let u=await i.getElementRects({reference:e,floating:t,strategy:r}),{x:d,y:p}=GX(u,o,l),f=o,b={},h=0;for(let g=0;g<c.length;g++){const{name:z,fn:A}=c[g],{x:_,y:v,data:M,reset:y}=await A({x:d,y:p,initialPlacement:o,placement:f,strategy:r,middlewareData:b,rects:u,platform:i,elements:{reference:e,floating:t}});d=_??d,p=v??p,b={...b,[z]:{...b[z],...M}},y&&h<=50&&(h++,typeof y=="object"&&(y.placement&&(f=y.placement),y.rects&&(u=y.rects===!0?await i.getElementRects({reference:e,floating:t,strategy:r}):y.rects),{x:d,y:p}=GX(u,f,l)),g=-1)}return{x:d,y:p,placement:f,strategy:r,middlewareData:b}};async function wL(e,t){var n;t===void 0&&(t={});const{x:o,y:r,platform:s,rects:i,elements:c,strategy:l}=e,{boundary:u="clippingAncestors",rootBoundary:d="viewport",elementContext:p="floating",altBoundary:f=!1,padding:b=0}=Sd(t,e),h=mce(b),z=c[f?p==="floating"?"reference":"floating":p],A=lx(await s.getClippingRect({element:(n=await(s.isElement==null?void 0:s.isElement(z)))==null||n?z:z.contextElement||await(s.getDocumentElement==null?void 0:s.getDocumentElement(c.floating)),boundary:u,rootBoundary:d,strategy:l})),_=p==="floating"?{x:o,y:r,width:i.floating.width,height:i.floating.height}:i.reference,v=await(s.getOffsetParent==null?void 0:s.getOffsetParent(c.floating)),M=await(s.isElement==null?void 0:s.isElement(v))?await(s.getScale==null?void 0:s.getScale(v))||{x:1,y:1}:{x:1,y:1},y=lx(s.convertOffsetParentRelativeRectToViewportRelativeRect?await s.convertOffsetParentRelativeRectToViewportRelativeRect({elements:c,rect:_,offsetParent:v,strategy:l}):_);return{top:(A.top-y.top+h.top)/M.y,bottom:(y.bottom-A.bottom+h.bottom)/M.y,left:(A.left-y.left+h.left)/M.x,right:(y.right-A.right+h.right)/M.x}}const MDe=e=>({name:"arrow",options:e,async fn(t){const{x:n,y:o,placement:r,rects:s,platform:i,elements:c,middlewareData:l}=t,{element:u,padding:d=0}=Sd(e,t)||{};if(u==null)return{};const p=mce(d),f={x:n,y:o},b=xL(r),h=vL(b),g=await i.getDimensions(u),z=b==="y",A=z?"top":"left",_=z?"bottom":"right",v=z?"clientHeight":"clientWidth",M=s.reference[h]+s.reference[b]-f[b]-s.floating[h],y=f[b]-s.reference[b],k=await(i.getOffsetParent==null?void 0:i.getOffsetParent(u));let S=k?k[v]:0;(!S||!await(i.isElement==null?void 0:i.isElement(k)))&&(S=c.floating[v]||s.floating[h]);const C=M/2-y/2,R=S/2-g[h]/2-1,T=_d(p[A],R),E=_d(p[_],R),B=T,N=S-g[h]-E,j=S/2-g[h]/2+C,I=d8(B,j,N),P=!l.arrow&&tm(r)!=null&&j!==I&&s.reference[h]/2-(j<B?T:E)-g[h]/2<0,$=P?j<B?j-B:j-N:0;return{[b]:f[b]+$,data:{[b]:I,centerOffset:j-I-$,...P&&{alignmentOffset:$}},reset:P}}}),zDe=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n,o;const{placement:r,middlewareData:s,rects:i,initialPlacement:c,platform:l,elements:u}=t,{mainAxis:d=!0,crossAxis:p=!0,fallbackPlacements:f,fallbackStrategy:b="bestFit",fallbackAxisSideDirection:h="none",flipAlignment:g=!0,...z}=Sd(e,t);if((n=s.arrow)!=null&&n.alignmentOffset)return{};const A=Ll(r),_=Cd(c),v=Ll(c)===c,M=await(l.isRTL==null?void 0:l.isRTL(u.floating)),y=f||(v||!g?[cx(c)]:fDe(c)),k=h!=="none";!f&&k&&y.push(...hDe(c,g,h,M));const S=[c,...y],C=await wL(t,z),R=[];let T=((o=s.flip)==null?void 0:o.overflows)||[];if(d&&R.push(C[A]),p){const j=pDe(r,i,M);R.push(C[j[0]],C[j[1]])}if(T=[...T,{placement:r,overflows:R}],!R.every(j=>j<=0)){var E,B;const j=(((E=s.flip)==null?void 0:E.index)||0)+1,I=S[j];if(I)return{data:{index:j,overflows:T},reset:{placement:I}};let P=(B=T.filter($=>$.overflows[0]<=0).sort(($,F)=>$.overflows[1]-F.overflows[1])[0])==null?void 0:B.placement;if(!P)switch(b){case"bestFit":{var N;const $=(N=T.filter(F=>{if(k){const X=Cd(F.placement);return X===_||X==="y"}return!0}).map(F=>[F.placement,F.overflows.filter(X=>X>0).reduce((X,Z)=>X+Z,0)]).sort((F,X)=>F[1]-X[1])[0])==null?void 0:N[0];$&&(P=$);break}case"initialPlacement":P=c;break}if(r!==P)return{reset:{placement:P}}}return{}}}};async function ODe(e,t){const{placement:n,platform:o,elements:r}=e,s=await(o.isRTL==null?void 0:o.isRTL(r.floating)),i=Ll(n),c=tm(n),l=Cd(n)==="y",u=["left","top"].includes(i)?-1:1,d=s&&l?-1:1,p=Sd(t,e);let{mainAxis:f,crossAxis:b,alignmentAxis:h}=typeof p=="number"?{mainAxis:p,crossAxis:0,alignmentAxis:null}:{mainAxis:p.mainAxis||0,crossAxis:p.crossAxis||0,alignmentAxis:p.alignmentAxis};return c&&typeof h=="number"&&(b=c==="end"?h*-1:h),l?{x:b*d,y:f*u}:{x:f*u,y:b*d}}const yDe=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var n,o;const{x:r,y:s,placement:i,middlewareData:c}=t,l=await ODe(t,e);return i===((n=c.offset)==null?void 0:n.placement)&&(o=c.arrow)!=null&&o.alignmentOffset?{}:{x:r+l.x,y:s+l.y,data:{...l,placement:i}}}}},ADe=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:o,placement:r}=t,{mainAxis:s=!0,crossAxis:i=!1,limiter:c={fn:z=>{let{x:A,y:_}=z;return{x:A,y:_}}},...l}=Sd(e,t),u={x:n,y:o},d=await wL(t,l),p=Cd(Ll(r)),f=AL(p);let b=u[f],h=u[p];if(s){const z=f==="y"?"top":"left",A=f==="y"?"bottom":"right",_=b+d[z],v=b-d[A];b=d8(_,b,v)}if(i){const z=p==="y"?"top":"left",A=p==="y"?"bottom":"right",_=h+d[z],v=h-d[A];h=d8(_,h,v)}const g=c.fn({...t,[f]:b,[p]:h});return{...g,data:{x:g.x-n,y:g.y-o,enabled:{[f]:s,[p]:i}}}}}},vDe=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:n,y:o,placement:r,rects:s,middlewareData:i}=t,{offset:c=0,mainAxis:l=!0,crossAxis:u=!0}=Sd(e,t),d={x:n,y:o},p=Cd(r),f=AL(p);let b=d[f],h=d[p];const g=Sd(c,t),z=typeof g=="number"?{mainAxis:g,crossAxis:0}:{mainAxis:0,crossAxis:0,...g};if(l){const v=f==="y"?"height":"width",M=s.reference[f]-s.floating[v]+z.mainAxis,y=s.reference[f]+s.reference[v]-z.mainAxis;b<M?b=M:b>y&&(b=y)}if(u){var A,_;const v=f==="y"?"width":"height",M=["top","left"].includes(Ll(r)),y=s.reference[p]-s.floating[v]+(M&&((A=i.offset)==null?void 0:A[p])||0)+(M?0:z.crossAxis),k=s.reference[p]+s.reference[v]+(M?0:((_=i.offset)==null?void 0:_[p])||0)-(M?z.crossAxis:0);h<y?h=y:h>k&&(h=k)}return{[f]:b,[p]:h}}}},xDe=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var n,o;const{placement:r,rects:s,platform:i,elements:c}=t,{apply:l=()=>{},...u}=Sd(e,t),d=await wL(t,u),p=Ll(r),f=tm(r),b=Cd(r)==="y",{width:h,height:g}=s.floating;let z,A;p==="top"||p==="bottom"?(z=p,A=f===(await(i.isRTL==null?void 0:i.isRTL(c.floating))?"start":"end")?"left":"right"):(A=p,z=f==="end"?"top":"bottom");const _=g-d.top-d.bottom,v=h-d.left-d.right,M=_d(g-d[z],_),y=_d(h-d[A],v),k=!t.middlewareData.shift;let S=M,C=y;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(C=v),(o=t.middlewareData.shift)!=null&&o.enabled.y&&(S=_),k&&!f){const T=Es(d.left,0),E=Es(d.right,0),B=Es(d.top,0),N=Es(d.bottom,0);b?C=h-2*(T!==0||E!==0?T+E:Es(d.left,d.right)):S=g-2*(B!==0||N!==0?B+N:Es(d.top,d.bottom))}await l({...t,availableWidth:C,availableHeight:S});const R=await i.getDimensions(c.floating);return h!==R.width||g!==R.height?{reset:{rects:!0}}:{}}}};function fw(){return typeof window<"u"}function nm(e){return gce(e)?(e.nodeName||"").toLowerCase():"#document"}function Bs(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function Ec(e){var t;return(t=(gce(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function gce(e){return fw()?e instanceof Node||e instanceof Bs(e).Node:!1}function ha(e){return fw()?e instanceof Element||e instanceof Bs(e).Element:!1}function wc(e){return fw()?e instanceof HTMLElement||e instanceof Bs(e).HTMLElement:!1}function KX(e){return!fw()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof Bs(e).ShadowRoot}function T3(e){const{overflow:t,overflowX:n,overflowY:o,display:r}=ma(e);return/auto|scroll|overlay|hidden|clip/.test(t+o+n)&&!["inline","contents"].includes(r)}function wDe(e){return["table","td","th"].includes(nm(e))}function bw(e){return[":popover-open",":modal"].some(t=>{try{return e.matches(t)}catch{return!1}})}function _L(e){const t=kL(),n=ha(e)?ma(e):e;return n.transform!=="none"||n.perspective!=="none"||(n.containerType?n.containerType!=="normal":!1)||!t&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!t&&(n.filter?n.filter!=="none":!1)||["transform","perspective","filter"].some(o=>(n.willChange||"").includes(o))||["paint","layout","strict","content"].some(o=>(n.contain||"").includes(o))}function _De(e){let t=qd(e);for(;wc(t)&&!ph(t);){if(_L(t))return t;if(bw(t))return null;t=qd(t)}return null}function kL(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function ph(e){return["html","body","#document"].includes(nm(e))}function ma(e){return Bs(e).getComputedStyle(e)}function hw(e){return ha(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function qd(e){if(nm(e)==="html")return e;const t=e.assignedSlot||e.parentNode||KX(e)&&e.host||Ec(e);return KX(t)?t.host:t}function Mce(e){const t=qd(e);return ph(t)?e.ownerDocument?e.ownerDocument.body:e.body:wc(t)&&T3(t)?t:Mce(t)}function az(e,t,n){var o;t===void 0&&(t=[]),n===void 0&&(n=!0);const r=Mce(e),s=r===((o=e.ownerDocument)==null?void 0:o.body),i=Bs(r);if(s){const c=f8(i);return t.concat(i,i.visualViewport||[],T3(r)?r:[],c&&n?az(c):[])}return t.concat(r,az(r,[],n))}function f8(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function zce(e){const t=ma(e);let n=parseFloat(t.width)||0,o=parseFloat(t.height)||0;const r=wc(e),s=r?e.offsetWidth:n,i=r?e.offsetHeight:o,c=ax(n)!==s||ax(o)!==i;return c&&(n=s,o=i),{width:n,height:o,$:c}}function SL(e){return ha(e)?e:e.contextElement}function B2(e){const t=SL(e);if(!wc(t))return kd(1);const n=t.getBoundingClientRect(),{width:o,height:r,$:s}=zce(t);let i=(s?ax(n.width):n.width)/o,c=(s?ax(n.height):n.height)/r;return(!i||!Number.isFinite(i))&&(i=1),(!c||!Number.isFinite(c))&&(c=1),{x:i,y:c}}const kDe=kd(0);function Oce(e){const t=Bs(e);return!kL()||!t.visualViewport?kDe:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function SDe(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==Bs(e)?!1:t}function yf(e,t,n,o){t===void 0&&(t=!1),n===void 0&&(n=!1);const r=e.getBoundingClientRect(),s=SL(e);let i=kd(1);t&&(o?ha(o)&&(i=B2(o)):i=B2(e));const c=SDe(s,n,o)?Oce(s):kd(0);let l=(r.left+c.x)/i.x,u=(r.top+c.y)/i.y,d=r.width/i.x,p=r.height/i.y;if(s){const f=Bs(s),b=o&&ha(o)?Bs(o):o;let h=f,g=f8(h);for(;g&&o&&b!==h;){const z=B2(g),A=g.getBoundingClientRect(),_=ma(g),v=A.left+(g.clientLeft+parseFloat(_.paddingLeft))*z.x,M=A.top+(g.clientTop+parseFloat(_.paddingTop))*z.y;l*=z.x,u*=z.y,d*=z.x,p*=z.y,l+=v,u+=M,h=Bs(g),g=f8(h)}}return lx({width:d,height:p,x:l,y:u})}function CDe(e){let{elements:t,rect:n,offsetParent:o,strategy:r}=e;const s=r==="fixed",i=Ec(o),c=t?bw(t.floating):!1;if(o===i||c&&s)return n;let l={scrollLeft:0,scrollTop:0},u=kd(1);const d=kd(0),p=wc(o);if((p||!p&&!s)&&((nm(o)!=="body"||T3(i))&&(l=hw(o)),wc(o))){const f=yf(o);u=B2(o),d.x=f.x+o.clientLeft,d.y=f.y+o.clientTop}return{width:n.width*u.x,height:n.height*u.y,x:n.x*u.x-l.scrollLeft*u.x+d.x,y:n.y*u.y-l.scrollTop*u.y+d.y}}function qDe(e){return Array.from(e.getClientRects())}function b8(e,t){const n=hw(e).scrollLeft;return t?t.left+n:yf(Ec(e)).left+n}function RDe(e){const t=Ec(e),n=hw(e),o=e.ownerDocument.body,r=Es(t.scrollWidth,t.clientWidth,o.scrollWidth,o.clientWidth),s=Es(t.scrollHeight,t.clientHeight,o.scrollHeight,o.clientHeight);let i=-n.scrollLeft+b8(e);const c=-n.scrollTop;return ma(o).direction==="rtl"&&(i+=Es(t.clientWidth,o.clientWidth)-r),{width:r,height:s,x:i,y:c}}function TDe(e,t){const n=Bs(e),o=Ec(e),r=n.visualViewport;let s=o.clientWidth,i=o.clientHeight,c=0,l=0;if(r){s=r.width,i=r.height;const u=kL();(!u||u&&t==="fixed")&&(c=r.offsetLeft,l=r.offsetTop)}return{width:s,height:i,x:c,y:l}}function EDe(e,t){const n=yf(e,!0,t==="fixed"),o=n.top+e.clientTop,r=n.left+e.clientLeft,s=wc(e)?B2(e):kd(1),i=e.clientWidth*s.x,c=e.clientHeight*s.y,l=r*s.x,u=o*s.y;return{width:i,height:c,x:l,y:u}}function YX(e,t,n){let o;if(t==="viewport")o=TDe(e,n);else if(t==="document")o=RDe(Ec(e));else if(ha(t))o=EDe(t,n);else{const r=Oce(e);o={...t,x:t.x-r.x,y:t.y-r.y}}return lx(o)}function yce(e,t){const n=qd(e);return n===t||!ha(n)||ph(n)?!1:ma(n).position==="fixed"||yce(n,t)}function WDe(e,t){const n=t.get(e);if(n)return n;let o=az(e,[],!1).filter(c=>ha(c)&&nm(c)!=="body"),r=null;const s=ma(e).position==="fixed";let i=s?qd(e):e;for(;ha(i)&&!ph(i);){const c=ma(i),l=_L(i);!l&&c.position==="fixed"&&(r=null),(s?!l&&!r:!l&&c.position==="static"&&!!r&&["absolute","fixed"].includes(r.position)||T3(i)&&!l&&yce(e,i))?o=o.filter(d=>d!==i):r=c,i=qd(i)}return t.set(e,o),o}function NDe(e){let{element:t,boundary:n,rootBoundary:o,strategy:r}=e;const i=[...n==="clippingAncestors"?bw(t)?[]:WDe(t,this._c):[].concat(n),o],c=i[0],l=i.reduce((u,d)=>{const p=YX(t,d,r);return u.top=Es(p.top,u.top),u.right=_d(p.right,u.right),u.bottom=_d(p.bottom,u.bottom),u.left=Es(p.left,u.left),u},YX(t,c,r));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function BDe(e){const{width:t,height:n}=zce(e);return{width:t,height:n}}function LDe(e,t,n){const o=wc(t),r=Ec(t),s=n==="fixed",i=yf(e,!0,s,t);let c={scrollLeft:0,scrollTop:0};const l=kd(0);if(o||!o&&!s)if((nm(t)!=="body"||T3(r))&&(c=hw(t)),o){const b=yf(t,!0,s,t);l.x=b.x+t.clientLeft,l.y=b.y+t.clientTop}else r&&(l.x=b8(r));let u=0,d=0;if(r&&!o&&!s){const b=r.getBoundingClientRect();d=b.top+c.scrollTop,u=b.left+c.scrollLeft-b8(r,b)}const p=i.left+c.scrollLeft-l.x-u,f=i.top+c.scrollTop-l.y-d;return{x:p,y:f,width:i.width,height:i.height}}function fC(e){return ma(e).position==="static"}function ZX(e,t){if(!wc(e)||ma(e).position==="fixed")return null;if(t)return t(e);let n=e.offsetParent;return Ec(e)===n&&(n=n.ownerDocument.body),n}function Ace(e,t){const n=Bs(e);if(bw(e))return n;if(!wc(e)){let r=qd(e);for(;r&&!ph(r);){if(ha(r)&&!fC(r))return r;r=qd(r)}return n}let o=ZX(e,t);for(;o&&wDe(o)&&fC(o);)o=ZX(o,t);return o&&ph(o)&&fC(o)&&!_L(o)?n:o||_De(e)||n}const PDe=async function(e){const t=this.getOffsetParent||Ace,n=this.getDimensions,o=await n(e.floating);return{reference:LDe(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:o.width,height:o.height}}};function jDe(e){return ma(e).direction==="rtl"}const IDe={convertOffsetParentRelativeRectToViewportRelativeRect:CDe,getDocumentElement:Ec,getClippingRect:NDe,getOffsetParent:Ace,getElementRects:PDe,getClientRects:qDe,getDimensions:BDe,getScale:B2,isElement:ha,isRTL:jDe};function DDe(e,t){let n=null,o;const r=Ec(e);function s(){var c;clearTimeout(o),(c=n)==null||c.disconnect(),n=null}function i(c,l){c===void 0&&(c=!1),l===void 0&&(l=1),s();const{left:u,top:d,width:p,height:f}=e.getBoundingClientRect();if(c||t(),!p||!f)return;const b=vA(d),h=vA(r.clientWidth-(u+p)),g=vA(r.clientHeight-(d+f)),z=vA(u),_={rootMargin:-b+"px "+-h+"px "+-g+"px "+-z+"px",threshold:Es(0,_d(1,l))||1};let v=!0;function M(y){const k=y[0].intersectionRatio;if(k!==l){if(!v)return i();k?i(!1,k):o=setTimeout(()=>{i(!1,1e-7)},1e3)}v=!1}try{n=new IntersectionObserver(M,{..._,root:r.ownerDocument})}catch{n=new IntersectionObserver(M,_)}n.observe(e)}return i(!0),s}function vce(e,t,n,o){o===void 0&&(o={});const{ancestorScroll:r=!0,ancestorResize:s=!0,elementResize:i=typeof ResizeObserver=="function",layoutShift:c=typeof IntersectionObserver=="function",animationFrame:l=!1}=o,u=SL(e),d=r||s?[...u?az(u):[],...az(t)]:[];d.forEach(A=>{r&&A.addEventListener("scroll",n,{passive:!0}),s&&A.addEventListener("resize",n)});const p=u&&c?DDe(u,n):null;let f=-1,b=null;i&&(b=new ResizeObserver(A=>{let[_]=A;_&&_.target===u&&b&&(b.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var v;(v=b)==null||v.observe(t)})),n()}),u&&!l&&b.observe(u),b.observe(t));let h,g=l?yf(e):null;l&&z();function z(){const A=yf(e);g&&(A.x!==g.x||A.y!==g.y||A.width!==g.width||A.height!==g.height)&&n(),g=A,h=requestAnimationFrame(z)}return n(),()=>{var A;d.forEach(_=>{r&&_.removeEventListener("scroll",n),s&&_.removeEventListener("resize",n)}),p?.(),(A=b)==null||A.disconnect(),b=null,l&&cancelAnimationFrame(h)}}const xce=yDe,wce=ADe,_ce=zDe,kce=xDe,h8=MDe,Sce=vDe,Cce=(e,t,n)=>{const o=new Map,r={platform:IDe,...n},s={...r.platform,_c:o};return gDe(e,t,{...r,platform:s})};var FDe="div";function QX(e=0,t=0,n=0,o=0){if(typeof DOMRect=="function")return new DOMRect(e,t,n,o);const r={x:e,y:t,width:n,height:o,top:t,right:e+n,bottom:t+o,left:e};return zt($e({},r),{toJSON:()=>r})}function $De(e){if(!e)return QX();const{x:t,y:n,width:o,height:r}=e;return QX(t,n,o,r)}function VDe(e,t){return{contextElement:e||void 0,getBoundingClientRect:()=>{const o=e,r=t?.(o);return r||!o?$De(r):o.getBoundingClientRect()}}}function HDe(e){return/^(?:top|bottom|left|right)(?:-(?:start|end))?$/.test(e)}function JX(e){const t=window.devicePixelRatio||1;return Math.round(e*t)/t}function UDe(e,t){return xce(({placement:n})=>{var o;const r=(e?.clientHeight||0)/2,s=typeof t.gutter=="number"?t.gutter+r:(o=t.gutter)!=null?o:r;return{crossAxis:!!n.split("-")[1]?void 0:t.shift,mainAxis:s,alignmentAxis:t.shift}})}function XDe(e){if(e.flip===!1)return;const t=typeof e.flip=="string"?e.flip.split(" "):void 0;return wo(!t||t.every(HDe),!1),_ce({padding:e.overflowPadding,fallbackPlacements:t})}function GDe(e){if(!(!e.slide&&!e.overlap))return wce({mainAxis:e.slide,crossAxis:e.overlap,padding:e.overflowPadding,limiter:Sce()})}function KDe(e){return kce({padding:e.overflowPadding,apply({elements:t,availableWidth:n,availableHeight:o,rects:r}){const s=t.floating,i=Math.round(r.reference.width);n=Math.floor(n),o=Math.floor(o),s.style.setProperty("--popover-anchor-width",`${i}px`),s.style.setProperty("--popover-available-width",`${n}px`),s.style.setProperty("--popover-available-height",`${o}px`),e.sameWidth&&(s.style.width=`${i}px`),e.fitViewport&&(s.style.maxWidth=`${n}px`,s.style.maxHeight=`${o}px`)}})}function YDe(e,t){if(e)return h8({element:e,padding:t.arrowPadding})}var CL=en(function(t){var n=t,{store:o,modal:r=!1,portal:s=!!r,preserveTabOrder:i=!0,autoFocusOnShow:c=!0,wrapperProps:l,fixed:u=!1,flip:d=!0,shift:p=0,slide:f=!0,overlap:b=!1,sameWidth:h=!1,fitViewport:g=!1,gutter:z,arrowPadding:A=4,overflowPadding:_=8,getAnchorRect:v,updatePosition:M}=n,y=Jt(n,["store","modal","portal","preserveTabOrder","autoFocusOnShow","wrapperProps","fixed","flip","shift","slide","overlap","sameWidth","fitViewport","gutter","arrowPadding","overflowPadding","getAnchorRect","updatePosition"]);const k=cw();o=o||k,wo(o,!1);const S=o.useState("arrowElement"),C=o.useState("anchorElement"),R=o.useState("disclosureElement"),T=o.useState("popoverElement"),E=o.useState("contentElement"),B=o.useState("placement"),N=o.useState("mounted"),j=o.useState("rendered"),I=x.useRef(null),[P,$]=x.useState(!1),{portalRef:F,domReady:X}=iL(s,y.portalRef),Z=un(v),V=un(M),ee=!!M;Uo(()=>{if(!T?.isConnected)return;T.style.setProperty("--popover-overflow-padding",`${_}px`);const J=VDe(C,Z),ue=async()=>{if(!N)return;S||(I.current=I.current||document.createElement("div"));const de=S||I.current,Ae=[UDe(de,{gutter:z,shift:p}),XDe({flip:d,overflowPadding:_}),GDe({slide:f,shift:p,overlap:b,overflowPadding:_}),YDe(de,{arrowPadding:A}),KDe({sameWidth:h,fitViewport:g,overflowPadding:_})],ye=await Cce(J,T,{placement:B,strategy:u?"fixed":"absolute",middleware:Ae});o?.setState("currentPlacement",ye.placement),$(!0);const Ne=JX(ye.x),je=JX(ye.y);if(Object.assign(T.style,{top:"0",left:"0",transform:`translate3d(${Ne}px,${je}px,0)`}),de&&ye.middlewareData.arrow){const{x:ie,y:we}=ye.middlewareData.arrow,re=ye.placement.split("-")[0],pe=de.clientWidth/2,ke=de.clientHeight/2,Se=ie!=null?ie+pe:-pe,se=we!=null?we+ke:-ke;T.style.setProperty("--popover-transform-origin",{top:`${Se}px calc(100% + ${ke}px)`,bottom:`${Se}px ${-ke}px`,left:`calc(100% + ${pe}px) ${se}px`,right:`${-pe}px ${se}px`}[re]),Object.assign(de.style,{left:ie!=null?`${ie}px`:"",top:we!=null?`${we}px`:"",[re]:"100%"})}},me=vce(J,T,async()=>{ee?(await V({updatePosition:ue}),$(!0)):await ue()},{elementResize:typeof ResizeObserver=="function"});return()=>{$(!1),me()}},[o,j,T,S,C,T,B,N,X,u,d,p,f,b,h,g,z,A,_,Z,ee,V]),Uo(()=>{if(!N||!X||!T?.isConnected||!E?.isConnected)return;const J=()=>{T.style.zIndex=getComputedStyle(E).zIndex};J();let ue=requestAnimationFrame(()=>{ue=requestAnimationFrame(J)});return()=>cancelAnimationFrame(ue)},[N,X,T,E]);const te=u?"fixed":"absolute";return y=Lo(y,J=>a.jsx("div",zt($e({},l),{style:$e({position:te,top:0,left:0,width:"max-content"},l?.style),ref:o?.setPopoverElement,children:J})),[o,te,l]),y=Lo(y,J=>a.jsx(C3,{value:o,children:J}),[o]),y=zt($e({"data-placing":!P||void 0},y),{style:$e({position:"relative"},y.style)}),y=hce(zt($e({store:o,modal:r,portal:s,preserveTabOrder:i,preserveTabOrderAnchor:R||C,autoFocusOnShow:P&&c},y),{portalRef:F})),y});em(Xt(function(t){const n=CL(t);return Zt(FDe,n)}),cw);var ZDe="div",QDe=en(function(t){var n=t,{store:o,"aria-setsize":r,"aria-posinset":s}=n,i=Jt(n,["store","aria-setsize","aria-posinset"]);const c=x3();o=o||c,wo(o,!1);const l=V1(i.id),u=o.useState(p=>p.baseElement||void 0),d=x.useMemo(()=>({id:l,baseElement:u,ariaSetSize:r,ariaPosInSet:s}),[l,u,r,s]);return i=Lo(i,p=>a.jsx(Sae.Provider,{value:d,children:p}),[d]),i=$e({id:l},i),ws(i)}),JDe=Xt(function(t){const n=QDe(t);return Zt(ZDe,n)}),eFe="hr",qce=en(function(t){var n=t,{orientation:o="horizontal"}=n,r=Jt(n,["orientation"]);return r=$e({role:"separator","aria-orientation":o},r),r});Xt(function(t){const n=qce(t);return Zt(eFe,n)});var tFe="hr",Rce=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=x3();o=o||s,wo(o,!1);const i=o.useState(c=>c.orientation==="horizontal"?"vertical":"horizontal");return r=qce(zt($e({},r),{orientation:i})),r});Xt(function(t){const n=Rce(t);return Zt(tFe,n)});function nFe(e={}){var t;e.store;const n=(t=e.store)==null?void 0:t.getState(),o={value:nn(e.value,n?.value,e.defaultValue,!1)},r=k1(o,e.store);return lo(mn({},r),{setValue:s=>r.setState("value",s)})}function oFe(e,t,n){return wd(t,[n.store]),ar(e,n,"value","setValue"),e}function rFe(e={}){const[t,n]=va(nFe,e);return oFe(t,n,e)}var sFe=H1(),iFe=sFe.useContext,Tce="input";function eG(e,t){t?e.indeterminate=!0:e.indeterminate&&(e.indeterminate=!1)}function aFe(e,t){return e==="input"&&(!t||t==="checkbox")}function tG(e){return Array.isArray(e)?e.toString():e}var Ece=en(function(t){var n=t,{store:o,name:r,value:s,checked:i,defaultChecked:c}=n,l=Jt(n,["store","name","value","checked","defaultChecked"]);const u=iFe();o=o||u;const[d,p]=x.useState(c??!1),f=Hn(o,R=>{if(i!==void 0)return i;if(R?.value===void 0)return d;if(s!=null){if(Array.isArray(R.value)){const T=tG(s);return R.value.includes(T)}return R.value===s}return Array.isArray(R.value)?!1:typeof R.value=="boolean"?R.value:!1}),b=x.useRef(null),h=iw(b,Tce),g=aFe(h,l.type),z=f?f==="mixed":void 0,A=f==="mixed"?!1:f,_=Ql(l),[v,M]=sL();x.useEffect(()=>{const R=b.current;R&&(eG(R,z),!g&&(R.checked=A,r!==void 0&&(R.name=r),s!==void 0&&(R.value=`${s}`)))},[v,z,g,A,r,s]);const y=l.onChange,k=un(R=>{if(_){R.stopPropagation(),R.preventDefault();return}if(eG(R.currentTarget,z),g||(R.currentTarget.checked=!R.currentTarget.checked,M()),y?.(R),R.defaultPrevented)return;const T=R.currentTarget.checked;p(T),o?.setValue(E=>{if(s==null)return T;const B=tG(s);return Array.isArray(E)?T?E.includes(B)?E:[...E,B]:E.filter(N=>N!==B):E===B?!1:B})}),S=l.onClick,C=un(R=>{S?.(R),!R.defaultPrevented&&(g||k(R))});return l=Lo(l,R=>a.jsx(ice.Provider,{value:A,children:R}),[A]),l=zt($e({role:g?void 0:"checkbox",type:g?"checkbox":void 0,"aria-checked":f},l),{ref:ur(b,l.ref),onChange:k,onClick:C}),l=uw($e({clickOnEnter:!g},l)),ws($e({name:g?r:void 0,value:g?s:void 0,checked:A},l))});Xt(function(t){const n=Ece(t);return Zt(Tce,n)});var qL=H1([ep],[Kf]),cFe=qL.useContext,lFe=qL.useProviderContext,uFe=qL.ScopedContextProvider,Wce="input";function dFe(e,t){if(t!==void 0)return e!=null&&t!=null?t===e:!!t}function pFe(e,t){return e==="input"&&(!t||t==="radio")}var Nce=en(function(t){var n=t,{store:o,name:r,value:s,checked:i}=n,c=Jt(n,["store","name","value","checked"]);const l=cFe();o=o||l;const u=V1(c.id),d=x.useRef(null),p=Hn(o,S=>i??dFe(s,S?.value));x.useEffect(()=>{!u||!p||o?.getState().activeId===u||o?.setActiveId(u)},[o,p,u]);const f=c.onChange,b=iw(d,Wce),h=pFe(b,c.type),g=Ql(c),[z,A]=sL();x.useEffect(()=>{const S=d.current;S&&(h||(p!==void 0&&(S.checked=p),r!==void 0&&(S.name=r),s!==void 0&&(S.value=`${s}`)))},[z,h,p,r,s]);const _=un(S=>{if(g){S.preventDefault(),S.stopPropagation();return}o?.getState().value!==s&&(h||(S.currentTarget.checked=!0,A()),f?.(S),!S.defaultPrevented&&o?.setValue(s))}),v=c.onClick,M=un(S=>{v?.(S),!S.defaultPrevented&&(h||_(S))}),y=c.onFocus,k=un(S=>{if(y?.(S),S.defaultPrevented||!h||!o)return;const{moves:C,activeId:R}=o.getState();C&&(u&&R!==u||_(S))});return c=zt($e({id:u,role:h?void 0:"radio",type:h?"radio":void 0,"aria-checked":p},c),{ref:ur(d,c.ref),onChange:_,onClick:M,onFocus:k}),c=Jh($e({store:o,clickOnEnter:!h},c)),ws($e({name:h?r:void 0,value:h?s:void 0,checked:p},c))}),fFe=Tc(Xt(function(t){const n=Nce(t);return Zt(Wce,n)})),bFe="div",hl="";function bC(){hl=""}function hFe(e){const t=e.target;return t&&eu(t)?!1:e.key===" "&&hl.length?!0:e.key.length===1&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&/^[\p{Letter}\p{Number}]$/u.test(e.key)}function mFe(e,t){if(cs(e))return!0;const n=e.target;return n?t.some(r=>r.element===n):!1}function gFe(e){return e.filter(t=>!t.disabled)}function Hv(e,t){var n;const o=((n=e.element)==null?void 0:n.textContent)||e.children||"value"in e&&e.value;return o?q7e(o).trim().toLowerCase().startsWith(t.toLowerCase()):!1}function MFe(e,t,n){if(!n)return e;const o=e.find(r=>r.id===n);return!o||!Hv(o,t)||hl!==t&&Hv(o,hl)?e:(hl=t,_Ie(e.filter(r=>Hv(r,hl)),n).filter(r=>r.id!==n))}var E3=en(function(t){var n=t,{store:o,typeahead:r=!0}=n,s=Jt(n,["store","typeahead"]);const i=x3();o=o||i,wo(o,!1);const c=s.onKeyDownCapture,l=x.useRef(0),u=un(d=>{if(c?.(d),d.defaultPrevented||!r||!o)return;if(!hFe(d))return bC();const{renderedItems:p,items:f,activeId:b,id:h}=o.getState();let g=gFe(f.length>p.length?f:p);const z=zr(d.currentTarget),A=`[data-offscreen-id="${h}"]`,_=z.querySelectorAll(A);for(const y of _){const k=y.ariaDisabled==="true"||"disabled"in y&&!!y.disabled;g.push({id:y.id,element:y,disabled:k})}if(_.length&&(g=yae(g,y=>y.element)),!mFe(d,g))return bC();d.preventDefault(),window.clearTimeout(l.current),l.current=window.setTimeout(()=>{hl=""},500);const v=d.key.toLowerCase();hl+=v,g=MFe(g,v,b);const M=g.find(y=>Hv(y,hl));M?o.move(M.id):bC()});return s=zt($e({},s),{onKeyDownCapture:u}),ws(s)}),zFe=Xt(function(t){const n=E3(t);return Zt(bFe,n)});function OFe(e={}){var t=y3(e,[]),n;const o=(n=t.store)==null?void 0:n.getState(),r=Kh(lo(mn({},t),{focusLoop:nn(t.focusLoop,o?.focusLoop,!0)})),s=lo(mn({},r.getState()),{value:nn(t.value,o?.value,t.defaultValue,null)}),i=k1(s,r,t.store);return lo(mn(mn({},r),i),{setValue:c=>i.setState("value",c)})}function yFe(e,t,n){return e=Yh(e,t,n),ar(e,n,"value","setValue"),e}function AFe(e={}){const[t,n]=va(OFe,e);return yFe(t,n,e)}var vFe="div",xFe=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=lFe();return o=o||s,wo(o,!1),r=Lo(r,i=>a.jsx(uFe,{value:o,children:i}),[o]),r=$e({role:"radiogroup"},r),r=Qh($e({store:o},r)),r}),wFe=Xt(function(t){const n=xFe(t);return Zt(vFe,n)}),_Fe="span",kFe={top:"4,10 8,6 12,10",right:"6,4 10,8 6,12",bottom:"4,6 8,10 12,6",left:"10,4 6,8 10,12"},Bce=en(function(t){var n=t,{store:o,placement:r}=n,s=Jt(n,["store","placement"]);const i=AIe();o=o||i,wo(o,!1);const l=o.useState(p=>r||p.placement).split("-")[0],u=kFe[l],d=x.useMemo(()=>a.jsx("svg",{display:"block",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,viewBox:"0 0 16 16",height:"1em",width:"1em",children:a.jsx("polyline",{points:u})}),[u]);return s=zt($e({children:d,"aria-hidden":!0},s),{style:$e({width:"1em",height:"1em",pointerEvents:"none"},s.style)}),ws(s)});Xt(function(t){const n=Bce(t);return Zt(_Fe,n)});var SFe="button",RL=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=cw();o=o||s,wo(o,!1);const i=r.onClick,c=un(l=>{o?.setAnchorElement(l.currentTarget),i?.(l)});return r=Lo(r,l=>a.jsx(C3,{value:o,children:l}),[o]),r=zt($e({},r),{onClick:c}),r=Xae($e({store:o},r)),r=ece($e({store:o},r)),r});Xt(function(t){const n=RL(t);return Zt(SFe,n)});var Lce=H1([ep],[Kf]),CFe=Lce.useContext,qFe=Lce.useScopedContext;x.createContext(void 0);var W3=H1([fL],[C3]);W3.useContext;W3.useScopedContext;var TL=W3.useProviderContext,Pce=W3.ContextProvider,EL=W3.ScopedContextProvider,N3=H1([ep,Pce],[Kf,EL]),jce=N3.useContext,WL=N3.useScopedContext,mw=N3.useProviderContext,RFe=N3.ContextProvider,TFe=N3.ScopedContextProvider,Ice=x.createContext(void 0);function Dce(e={}){var t;const n=(t=e.store)==null?void 0:t.getState(),o=$ae(lo(mn({},e),{placement:nn(e.placement,n?.placement,"bottom")})),r=nn(e.timeout,n?.timeout,500),s=lo(mn({},o.getState()),{timeout:r,showTimeout:nn(e.showTimeout,n?.showTimeout),hideTimeout:nn(e.hideTimeout,n?.hideTimeout),autoFocusOnShow:nn(n?.autoFocusOnShow,!1)}),i=k1(s,o,e.store);return lo(mn(mn({},o),i),{setAutoFocusOnShow:c=>i.setState("autoFocusOnShow",c)})}function Fce(e,t,n){return ar(e,n,"timeout"),ar(e,n,"showTimeout"),ar(e,n,"hideTimeout"),Vae(e,t,n)}function EFe(e={}){var t=e,{combobox:n,parent:o,menubar:r}=t,s=y3(t,["combobox","parent","menubar"]);const i=!!r&&!o,c=w3(s.store,tIe(o,["values"]),uh(n,["arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),l=c.getState(),u=Kh(lo(mn({},s),{store:c,orientation:nn(s.orientation,l.orientation,"vertical")})),d=Dce(lo(mn({},s),{store:c,placement:nn(s.placement,l.placement,"bottom-start"),timeout:nn(s.timeout,l.timeout,i?0:150),hideTimeout:nn(s.hideTimeout,l.hideTimeout,0)})),p=lo(mn(mn({},u.getState()),d.getState()),{initialFocus:nn(l.initialFocus,"container"),values:nn(s.values,l.values,s.defaultValues,{})}),f=k1(p,u,d,c);return C0(f,()=>Ir(f,["mounted"],b=>{b.mounted||f.setState("activeId",null)})),C0(f,()=>Ir(o,["orientation"],b=>{f.setState("placement",b.orientation==="vertical"?"right-start":"bottom-start")})),lo(mn(mn(mn({},u),d),f),{combobox:n,parent:o,menubar:r,hideAll:()=>{d.hide(),o?.hideAll()},setInitialFocus:b=>f.setState("initialFocus",b),setValues:b=>f.setState("values",b),setValue:(b,h)=>{b!=="__proto__"&&b!=="constructor"&&(Array.isArray(b)||f.setState("values",g=>{const z=g[b],A=mae(h,z);return A===z?g:lo(mn({},g),{[b]:A!==void 0&&A})}))}})}function WFe(e,t,n){return wd(t,[n.combobox,n.parent,n.menubar]),ar(e,n,"values","setValues"),Object.assign(Fce(Yh(e,t,n),t,n),{combobox:n.combobox,parent:n.parent,menubar:n.menubar})}function NFe(e={}){const t=jce(),n=CFe(),o=Uae();e=zt($e({},e),{parent:e.parent!==void 0?e.parent:t,menubar:e.menubar!==void 0?e.menubar:n,combobox:e.combobox!==void 0?e.combobox:o});const[r,s]=va(EFe,e);return WFe(r,s,e)}var BFe="div";function LFe(e){var t=e,{store:n}=t,o=Jt(t,["store"]);const[r,s]=x.useState(void 0),i=o["aria-label"],c=Hn(n,"disclosureElement"),l=Hn(n,"contentElement");return x.useEffect(()=>{const u=c;if(!u)return;const d=l;if(!d)return;i||d.hasAttribute("aria-label")?s(void 0):u.id&&s(u.id)},[i,c,l]),r}var $ce=en(function(t){var n=t,{store:o,alwaysVisible:r,composite:s}=n,i=Jt(n,["store","alwaysVisible","composite"]);const c=mw();o=o||c,wo(o,!1);const l=o.parent,u=o.menubar,d=!!l,p=V1(i.id),f=i.onKeyDown,b=o.useState(S=>S.placement.split("-")[0]),h=o.useState(S=>S.orientation==="both"?void 0:S.orientation),g=h!=="vertical",z=Hn(u,S=>!!S&&S.orientation!=="vertical"),A=un(S=>{if(f?.(S),!S.defaultPrevented){if(d||u&&!g){const R={ArrowRight:()=>b==="left"&&!g,ArrowLeft:()=>b==="right"&&!g,ArrowUp:()=>b==="bottom"&&g,ArrowDown:()=>b==="top"&&g}[S.key];if(R?.())return S.stopPropagation(),S.preventDefault(),o?.hide()}if(u){const R={ArrowRight:()=>{if(z)return u.next()},ArrowLeft:()=>{if(z)return u.previous()},ArrowDown:()=>{if(!z)return u.next()},ArrowUp:()=>{if(!z)return u.previous()}}[S.key],T=R?.();T!==void 0&&(S.stopPropagation(),S.preventDefault(),u.move(T))}}});i=Lo(i,S=>a.jsx(TFe,{value:o,children:S}),[o]);const _=LFe($e({store:o},i)),v=o.useState("mounted"),M=dw(v,i.hidden,r),y=M?zt($e({},i.style),{display:"none"}):i.style;i=zt($e({id:p,"aria-labelledby":_,hidden:M},i),{ref:ur(p?o.setContentElement:null,i.ref),style:y,onKeyDown:A});const k=!!o.combobox;return s=s??!k,s&&(i=$e({role:"menu","aria-orientation":h},i)),i=Qh($e({store:o,composite:s},i)),i=E3($e({store:o,typeahead:!k},i)),i});Xt(function(t){const n=$ce(t);return Zt(BFe,n)});function hC(e){return[e.clientX,e.clientY]}function nG(e,t){const[n,o]=e;let r=!1;const s=t.length;for(let i=s,c=0,l=i-1;c<i;l=c++){const[u,d]=t[c],[p,f]=t[l],[,b]=t[l===0?i-1:l-1]||[0,0],h=(d-f)*(n-u)-(u-p)*(o-d);if(f<d){if(o>=f&&o<d){if(h===0)return!0;h>0&&(o===f?o>b&&(r=!r):r=!r)}}else if(d<f){if(o>d&&o<=f){if(h===0)return!0;h<0&&(o===f?o<b&&(r=!r):r=!r)}}else if(o===d&&(n>=p&&n<=u||n>=u&&n<=p))return!0}return r}function PFe(e,t){const{top:n,right:o,bottom:r,left:s}=t,[i,c]=e,l=i<s?"left":i>o?"right":null,u=c<n?"top":c>r?"bottom":null;return[l,u]}function oG(e,t){const n=e.getBoundingClientRect(),{top:o,right:r,bottom:s,left:i}=n,[c,l]=PFe(t,n),u=[t];return c?(l!=="top"&&u.push([c==="left"?i:r,o]),u.push([c==="left"?r:i,o]),u.push([c==="left"?r:i,s]),l!=="bottom"&&u.push([c==="left"?i:r,s])):l==="top"?(u.push([i,o]),u.push([i,s]),u.push([r,s]),u.push([r,o])):(u.push([i,s]),u.push([i,o]),u.push([r,o]),u.push([r,s])),u}var jFe="div";function Vce(e,t,n,o){return cd(t)?!0:e?!!(Yr(t,e)||n&&Yr(n,e)||o?.some(r=>Vce(e,r,n))):!1}function IFe(e){var t=e,{store:n}=t,o=Jt(t,["store"]);const[r,s]=x.useState(!1),i=n.useState("mounted");x.useEffect(()=>{i||s(!1)},[i]);const c=o.onFocus,l=un(d=>{c?.(d),!d.defaultPrevented&&s(!0)}),u=x.useRef(null);return x.useEffect(()=>Ir(n,["anchorElement"],d=>{u.current=d.anchorElement}),[]),o=zt($e({autoFocusOnHide:r,finalFocus:u},o),{onFocus:l}),o}var rG=x.createContext(null),NL=en(function(t){var n=t,{store:o,modal:r=!1,portal:s=!!r,hideOnEscape:i=!0,hideOnHoverOutside:c=!0,disablePointerEventsOnApproach:l=!!c}=n,u=Jt(n,["store","modal","portal","hideOnEscape","hideOnHoverOutside","disablePointerEventsOnApproach"]);const d=TL();o=o||d,wo(o,!1);const p=x.useRef(null),[f,b]=x.useState([]),h=x.useRef(0),g=x.useRef(null),{portalRef:z,domReady:A}=iL(s,u.portalRef),_=aL(),v=!!c,M=s0(c),y=!!l,k=s0(l),S=o.useState("open"),C=o.useState("mounted");x.useEffect(()=>{if(!A||!C||!v&&!y)return;const N=p.current;return N?_1(X0("mousemove",I=>{if(!o||!_())return;const{anchorElement:P,hideTimeout:$,timeout:F}=o.getState(),X=g.current,[Z]=I.composedPath(),V=P;if(Vce(Z,N,V,f)){g.current=Z&&V&&Yr(V,Z)?hC(I):null,window.clearTimeout(h.current),h.current=0;return}if(!h.current){if(X){const ee=hC(I),te=oG(N,X);if(nG(ee,te)){if(g.current=ee,!k(I))return;I.preventDefault(),I.stopPropagation();return}}M(I)&&(h.current=window.setTimeout(()=>{h.current=0,o?.hide()},$??F))}},!0),()=>clearTimeout(h.current)):void 0},[o,_,A,C,v,y,f,k,M]),x.useEffect(()=>{if(!A||!C||!y)return;const N=j=>{const I=p.current;if(!I)return;const P=g.current;if(!P)return;const $=oG(I,P);if(nG(hC(j),$)){if(!k(j))return;j.preventDefault(),j.stopPropagation()}};return _1(X0("mouseenter",N,!0),X0("mouseover",N,!0),X0("mouseout",N,!0),X0("mouseleave",N,!0))},[A,C,y,k]),x.useEffect(()=>{A&&(S||o?.setAutoFocusOnShow(!1))},[o,A,S]);const R=wae(S);x.useEffect(()=>{if(A)return()=>{R.current||o?.setAutoFocusOnShow(!1)}},[o,A]);const T=x.useContext(rG);Uo(()=>{if(r||!s||!C||!A)return;const N=p.current;if(N)return T?.(N)},[r,s,C,A]);const E=x.useCallback(N=>{b(I=>[...I,N]);const j=T?.(N);return()=>{b(I=>I.filter(P=>P!==N)),j?.()}},[T]);u=Lo(u,N=>a.jsx(EL,{value:o,children:a.jsx(rG.Provider,{value:E,children:N})}),[o,E]),u=zt($e({},u),{ref:ur(p,u.ref)}),u=IFe($e({store:o},u));const B=o.useState(N=>r||N.autoFocusOnShow);return u=CL(zt($e({store:o,modal:r,portal:s,autoFocusOnShow:B},u),{portalRef:z,hideOnEscape(N){return rz(i,N)?!1:(requestAnimationFrame(()=>{requestAnimationFrame(()=>{o?.hide()})}),!0)}})),u});em(Xt(function(t){const n=NL(t);return Zt(jFe,n)}),TL);var DFe="div",FFe=en(function(t){var n=t,{store:o,modal:r=!1,portal:s=!!r,hideOnEscape:i=!0,autoFocusOnShow:c=!0,hideOnHoverOutside:l,alwaysVisible:u}=n,d=Jt(n,["store","modal","portal","hideOnEscape","autoFocusOnShow","hideOnHoverOutside","alwaysVisible"]);const p=mw();o=o||p,wo(o,!1);const f=x.useRef(null),b=o.parent,h=o.menubar,g=!!b,z=!!h&&!g;d=zt($e({},d),{ref:ur(f,d.ref)});const A=$ce($e({store:o,alwaysVisible:u},d)),{"aria-labelledby":_}=A;d=Jt(A,["aria-labelledby"]);const[M,y]=x.useState(),k=o.useState("autoFocusOnShow"),S=o.useState("initialFocus"),C=o.useState("baseElement"),R=o.useState("renderedItems");x.useEffect(()=>{let P=!1;return y($=>{var F,X,Z;if(P||!k)return;if((F=$?.current)!=null&&F.isConnected)return $;const V=x.createRef();switch(S){case"first":V.current=((X=R.find(ee=>!ee.disabled&&ee.element))==null?void 0:X.element)||null;break;case"last":V.current=((Z=[...R].reverse().find(ee=>!ee.disabled&&ee.element))==null?void 0:Z.element)||null;break;default:V.current=C}return V}),()=>{P=!0}},[o,k,S,R,C]);const T=g?!1:r,E=!!c,B=!!M||!!d.initialFocus||!!T,N=Hn(o.combobox||o,"contentElement"),j=Hn(b?.combobox||b,"contentElement"),I=x.useMemo(()=>{if(!j||!N)return;const P=N.getAttribute("role"),$=j.getAttribute("role");if(!(($==="menu"||$==="menubar")&&P==="menu"))return j},[N,j]);return I!==void 0&&(d=$e({preserveTabOrderAnchor:I},d)),d=NL(zt($e({store:o,alwaysVisible:u,initialFocus:M,autoFocusOnShow:E?B&&c:k||!!T},d),{hideOnEscape(P){return rz(i,P)?!1:(o?.hideAll(),!0)},hideOnHoverOutside(P){const $=o?.getState().disclosureElement;return(typeof l=="function"?l(P):l??(g?!0:z?$?!cd($):!0:!1))?P.defaultPrevented||!g||!$||(H7e($,"mouseout",P),!cd($))?!0:(requestAnimationFrame(()=>{cd($)||o?.hide()}),!1):!1},modal:T,portal:s,backdrop:g?!1:d.backdrop})),d=$e({"aria-labelledby":_},d),d}),$Fe=em(Xt(function(t){const n=FFe(t);return Zt(DFe,n)}),mw),VFe="a",BL=en(function(t){var n=t,{store:o,showOnHover:r=!0}=n,s=Jt(n,["store","showOnHover"]);const i=TL();o=o||i,wo(o,!1);const c=Ql(s),l=x.useRef(0);x.useEffect(()=>()=>window.clearTimeout(l.current),[]),x.useEffect(()=>X0("mouseleave",A=>{if(!o)return;const{anchorElement:_}=o.getState();_&&A.target===_&&(window.clearTimeout(l.current),l.current=0)},!0),[o]);const u=s.onMouseMove,d=s0(r),p=aL(),f=un(z=>{if(u?.(z),c||!o||z.defaultPrevented||l.current||!p()||!d(z))return;const A=z.currentTarget;o.setAnchorElement(A),o.setDisclosureElement(A);const{showTimeout:_,timeout:v}=o.getState(),M=()=>{l.current=0,p()&&(o?.setAnchorElement(A),o?.show(),queueMicrotask(()=>{o?.setDisclosureElement(A)}))},y=_??v;y===0?M():l.current=window.setTimeout(M,y)}),b=s.onClick,h=un(z=>{b?.(z),o&&(window.clearTimeout(l.current),l.current=0)}),g=x.useCallback(z=>{if(!o)return;const{anchorElement:A}=o.getState();A?.isConnected||o.setAnchorElement(z)},[o]);return s=zt($e({},s),{ref:ur(g,s.ref),onMouseMove:f,onClick:h}),s=Zh(s),s});Xt(function(t){const n=BL(t);return Zt(VFe,n)});var HFe="button";function UFe(e,t){return{ArrowDown:t==="bottom"||t==="top"?"first":!1,ArrowUp:t==="bottom"||t==="top"?"last":!1,ArrowRight:t==="right"?"first":!1,ArrowLeft:t==="left"?"first":!1}[e.key]}function sG(e,t){return!!e?.some(n=>!n.element||n.element===t?!1:n.element.getAttribute("aria-expanded")==="true")}var XFe=en(function(t){var n=t,{store:o,focusable:r,accessibleWhenDisabled:s,showOnHover:i}=n,c=Jt(n,["store","focusable","accessibleWhenDisabled","showOnHover"]);const l=mw();o=o||l,wo(o,!1);const u=x.useRef(null),d=o.parent,p=o.menubar,f=!!d,b=!!p&&!f,h=Ql(c),g=()=>{const E=u.current;E&&(o?.setDisclosureElement(E),o?.setAnchorElement(E),o?.show())},z=c.onFocus,A=un(E=>{if(z?.(E),h||E.defaultPrevented||(o?.setAutoFocusOnShow(!1),o?.setActiveId(null),!p)||!b)return;const{items:B}=p.getState();sG(B,E.currentTarget)&&g()}),_=Hn(o,E=>E.placement.split("-")[0]),v=c.onKeyDown,M=un(E=>{if(v?.(E),h||E.defaultPrevented)return;const B=UFe(E,_);B&&(E.preventDefault(),g(),o?.setAutoFocusOnShow(!0),o?.setInitialFocus(B))}),y=c.onClick,k=un(E=>{if(y?.(E),E.defaultPrevented||!o)return;const B=!E.detail,{open:N}=o.getState();(!N||B)&&((!f||B)&&o.setAutoFocusOnShow(!0),o.setInitialFocus(B?"first":"container")),f&&g()});c=Lo(c,E=>a.jsx(RFe,{value:o,children:E}),[o]),f&&(c=zt($e({},c),{render:a.jsx(iz.div,{render:c.render})}));const S=V1(c.id),C=Hn(d?.combobox||d,"contentElement"),R=f||b?eL(C,"menuitem"):void 0,T=o.useState("contentElement");return c=zt($e({id:S,role:R,"aria-haspopup":sw(T,"menu")},c),{ref:ur(u,c.ref),onFocus:A,onKeyDown:M,onClick:k}),c=BL(zt($e({store:o,focusable:r,accessibleWhenDisabled:s},c),{showOnHover:E=>{if(!(()=>{if(typeof i=="function")return i(E);if(i!=null)return i;if(f)return!0;if(!p)return!1;const{items:I}=p.getState();return b&&sG(I)})())return!1;const j=b?p:d;return j&&j.setActiveId(E.currentTarget.id),!0}})),c=RL($e({store:o,toggleOnClick:!f,focusable:r,accessibleWhenDisabled:s},c)),c=E3($e({store:o,typeahead:b},c)),c}),Hce=Xt(function(t){const n=XFe(t);return Zt(HFe,n)}),GFe="div",KFe=en(function(t){return t=oce(t),t}),YFe=Xt(function(t){const n=KFe(t);return Zt(GFe,n)}),ZFe="div",QFe=en(function(t){return t=sce(t),t}),JFe=Xt(function(t){const n=QFe(t);return Zt(ZFe,n)}),e$e="span",t$e=en(function(t){var n=t,{store:o,checked:r}=n,s=Jt(n,["store","checked"]);const i=x.useContext(Ice);return r=r??i,s=mL(zt($e({},s),{checked:r})),s}),Uce=Xt(function(t){const n=t$e(t);return Zt(e$e,n)}),n$e="div";function o$e(e,t,n){var o;if(!e)return!1;if(cd(e))return!0;const r=t?.find(l=>{var u;return l.element===n?!1:((u=l.element)==null?void 0:u.getAttribute("aria-expanded"))==="true"}),s=(o=r?.element)==null?void 0:o.getAttribute("aria-controls");if(!s)return!1;const c=zr(e).getElementById(s);return c?cd(c)?!0:!!c.querySelector("[role=menuitem][aria-expanded=true]"):!1}var LL=en(function(t){var n=t,{store:o,hideOnClick:r=!0,preventScrollOnKeyDown:s=!0,focusOnHover:i,blurOnHoverEnd:c}=n,l=Jt(n,["store","hideOnClick","preventScrollOnKeyDown","focusOnHover","blurOnHoverEnd"]);const u=WL(!0),d=qFe();o=o||u||d,wo(o,!1);const p=l.onClick,f=s0(r),b="hideAll"in o?o.hideAll:void 0,h=!!b,g=un(_=>{p?.(_),!(_.defaultPrevented||xae(_)||vae(_)||!b||_.currentTarget.getAttribute("aria-haspopup")==="menu")&&f(_)&&b()}),z=Hn(o,_=>"contentElement"in _?_.contentElement:null),A=eL(z,"menuitem");return l=zt($e({role:A},l),{onClick:g}),l=Jh($e({store:o,preventScrollOnKeyDown:s},l)),l=gL(zt($e({store:o},l),{focusOnHover(_){const v=()=>typeof i=="function"?i(_):i??!0;if(!o||!v())return!1;const{baseElement:M,items:y}=o.getState();return h?(_.currentTarget.hasAttribute("aria-expanded")&&_.currentTarget.focus(),!0):o$e(M,y,_.currentTarget)?(_.currentTarget.focus(),!0):!1},blurOnHoverEnd(_){return typeof c=="function"?c(_):c??h}})),l}),r$e=Tc(Xt(function(t){const n=LL(t);return Zt(n$e,n)})),s$e="div";function i$e(e){return Array.isArray(e)?e.toString():e}function mC(e,t,n){if(t===void 0)return Array.isArray(e)?e:!!n;const o=i$e(t);return Array.isArray(e)?n?e.includes(o)?e:[...e,o]:e.filter(r=>r!==o):n?o:e===o?!1:e}var a$e=en(function(t){var n=t,{store:o,name:r,value:s,checked:i,defaultChecked:c,hideOnClick:l=!1}=n,u=Jt(n,["store","name","value","checked","defaultChecked","hideOnClick"]);const d=WL();o=o||d,wo(o,!1);const p=rL(c);x.useEffect(()=>{o?.setValue(r,(b=[])=>p?mC(b,s,!0):b)},[o,r,s,p]),x.useEffect(()=>{i!==void 0&&o?.setValue(r,b=>mC(b,s,i))},[o,r,s,i]);const f=rFe({value:o.useState(b=>b.values[r]),setValue(b){o?.setValue(r,()=>{if(i===void 0)return b;const h=mC(b,s,i);return!Array.isArray(h)||!Array.isArray(b)?h:k7e(b,h)?b:h})}});return u=$e({role:"menuitemcheckbox"},u),u=Ece($e({store:f,name:r,value:s,checked:i},u)),u=LL($e({store:o,hideOnClick:l},u)),u}),c$e=Tc(Xt(function(t){const n=a$e(t);return Zt(s$e,n)})),l$e="div";function gC(e,t,n){return n===void 0?e:n?t:e}var u$e=en(function(t){var n=t,{store:o,name:r,value:s,checked:i,onChange:c,hideOnClick:l=!1}=n,u=Jt(n,["store","name","value","checked","onChange","hideOnClick"]);const d=WL();o=o||d,wo(o,!1);const p=rL(u.defaultChecked);x.useEffect(()=>{o?.setValue(r,(b=!1)=>gC(b,s,p))},[o,r,s,p]),x.useEffect(()=>{i!==void 0&&o?.setValue(r,b=>gC(b,s,i))},[o,r,s,i]);const f=o.useState(b=>b.values[r]===s);return u=Lo(u,b=>a.jsx(Ice.Provider,{value:!!f,children:b}),[f]),u=$e({role:"menuitemradio"},u),u=Nce($e({name:r,value:s,checked:f,onChange(b){if(c?.(b),b.defaultPrevented)return;const h=b.currentTarget;o?.setValue(r,g=>gC(g,s,i??h.checked))}},u)),u=LL($e({store:o,hideOnClick:l},u)),u}),d$e=Tc(Xt(function(t){const n=u$e(t);return Zt(l$e,n)})),p$e="hr",f$e=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=jce();return o=o||s,r=Rce($e({store:o},r)),r}),b$e=Xt(function(t){const n=f$e(t);return Zt(p$e,n)});function h$e(e={}){var t;const n=(t=e.store)==null?void 0:t.getState(),o=Dce(lo(mn({},e),{placement:nn(e.placement,n?.placement,"top"),hideTimeout:nn(e.hideTimeout,n?.hideTimeout,0)})),r=lo(mn({},o.getState()),{type:nn(e.type,n?.type,"description"),skipTimeout:nn(e.skipTimeout,n?.skipTimeout,300)}),s=k1(r,o,e.store);return mn(mn({},o),s)}function m$e(e,t,n){return ar(e,n,"type"),ar(e,n,"skipTimeout"),Fce(e,t,n)}function g$e(e={}){const[t,n]=va(h$e,e);return m$e(t,n,e)}var Xce=H1([Pce],[EL]),PL=Xce.useProviderContext,M$e=Xce.ScopedContextProvider,z$e="div",O$e=en(function(t){var n=t,{store:o,portal:r=!0,gutter:s=8,preserveTabOrder:i=!1,hideOnHoverOutside:c=!0,hideOnInteractOutside:l=!0}=n,u=Jt(n,["store","portal","gutter","preserveTabOrder","hideOnHoverOutside","hideOnInteractOutside"]);const d=PL();o=o||d,wo(o,!1),u=Lo(u,f=>a.jsx(M$e,{value:o,children:f}),[o]);const p=o.useState(f=>f.type==="description"?"tooltip":"none");return u=$e({role:p},u),u=NL(zt($e({},u),{store:o,portal:r,gutter:s,preserveTabOrder:i,hideOnHoverOutside(f){if(rz(c,f))return!1;const b=o?.getState().anchorElement;return b?!("focusVisible"in b.dataset):!0},hideOnInteractOutside:f=>{if(rz(l,f))return!1;const b=o?.getState().anchorElement;return b?!Yr(b,f.target):!0}})),u}),y$e=em(Xt(function(t){const n=O$e(t);return Zt(z$e,n)}),PL),A$e="div",Vp=k1({activeStore:null});function iG(e){return()=>{const{activeStore:t}=Vp.getState();t===e&&Vp.setState("activeStore",null)}}var v$e=en(function(t){var n=t,{store:o,showOnHover:r=!0}=n,s=Jt(n,["store","showOnHover"]);const i=PL();o=o||i,wo(o,!1);const c=x.useRef(!1);x.useEffect(()=>Ir(o,["mounted"],z=>{z.mounted||(c.current=!1)}),[o]),x.useEffect(()=>{if(o)return _1(iG(o),Ir(o,["mounted","skipTimeout"],z=>{if(!o)return;if(z.mounted){const{activeStore:_}=Vp.getState();return _!==o&&_?.hide(),Vp.setState("activeStore",o)}const A=setTimeout(iG(o),z.skipTimeout);return()=>clearTimeout(A)}))},[o]);const l=s.onMouseEnter,u=un(z=>{l?.(z),c.current=!0}),d=s.onFocusVisible,p=un(z=>{d?.(z),!z.defaultPrevented&&(o?.setAnchorElement(z.currentTarget),o?.show())}),f=s.onBlur,b=un(z=>{if(f?.(z),z.defaultPrevented)return;const{activeStore:A}=Vp.getState();c.current=!1,A===o&&Vp.setState("activeStore",null)}),h=o.useState("type"),g=o.useState(z=>{var A;return(A=z.contentElement)==null?void 0:A.id});return s=zt($e({"aria-labelledby":h==="label"?g:void 0},s),{onMouseEnter:u,onFocusVisible:p,onBlur:b}),s=BL($e({store:o,showOnHover(z){if(!c.current||rz(r,z))return!1;const{activeStore:A}=Vp.getState();return A?(o?.show(),!1):!0}},s)),s}),x$e=Xt(function(t){const n=v$e(t);return Zt(A$e,n)});function w$e(e={}){var t;const n=(t=e.store)==null?void 0:t.getState();return Kh(lo(mn({},e),{orientation:nn(e.orientation,n?.orientation,"horizontal"),focusLoop:nn(e.focusLoop,n?.focusLoop,!0)}))}function _$e(e,t,n){return Yh(e,t,n)}function Gce(e={}){const[t,n]=va(w$e,e);return _$e(t,n,e)}var jL=H1([ep],[Kf]),k$e=jL.useContext,S$e=jL.useProviderContext,C$e=jL.ScopedContextProvider,q$e="div",R$e=en(function(t){var n=t,{store:o,orientation:r,virtualFocus:s,focusLoop:i,rtl:c}=n,l=Jt(n,["store","orientation","virtualFocus","focusLoop","rtl"]);const u=S$e();o=o||u;const d=Gce({store:o,orientation:r,virtualFocus:s,focusLoop:i,rtl:c}),p=d.useState(f=>f.orientation==="both"?void 0:f.orientation);return l=Lo(l,f=>a.jsx(C$e,{value:d,children:f}),[d]),l=$e({role:"toolbar","aria-orientation":p},l),l=Qh($e({store:d},l)),l}),T$e=Xt(function(t){const n=R$e(t);return Zt(q$e,n)}),E$e="button",W$e=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=k$e();return o=o||s,r=Jh($e({store:o},r)),r}),N$e=Tc(Xt(function(t){const n=W$e(t);return Zt(E$e,n)})),gw=H1([fL,ep],[C3,Kf]),IL=gw.useContext,B$e=gw.useScopedContext,Mw=gw.useProviderContext,Kce=gw.ScopedContextProvider,Yce=x.createContext(!1),aG=x.createContext(null);function L$e(e={}){var t=e,{composite:n,combobox:o}=t,r=y3(t,["composite","combobox"]);const s=["items","renderedItems","moves","orientation","virtualFocus","includesBaseElement","baseElement","focusLoop","focusShift","focusWrap"],i=w3(r.store,uh(n,s),uh(o,s)),c=i?.getState(),l=Kh(lo(mn({},r),{store:i,includesBaseElement:nn(r.includesBaseElement,c?.includesBaseElement,!1),orientation:nn(r.orientation,c?.orientation,"horizontal"),focusLoop:nn(r.focusLoop,c?.focusLoop,!0)})),u=Tae(),d=lo(mn({},l.getState()),{selectedId:nn(r.selectedId,c?.selectedId,r.defaultSelectedId),selectOnMove:nn(r.selectOnMove,c?.selectOnMove,!0)}),p=k1(d,l,i);C0(p,()=>Ir(p,["moves"],()=>{const{activeId:h,selectOnMove:g}=p.getState();if(!g||!h)return;const z=l.item(h);z&&(z.dimmed||z.disabled||p.setState("selectedId",z.id))}));let f=!0;C0(p,()=>sz(p,["selectedId"],(h,g)=>{if(!f){f=!0;return}n&&h.selectedId===g.selectedId||p.setState("activeId",h.selectedId)})),C0(p,()=>Ir(p,["selectedId","renderedItems"],h=>{if(h.selectedId!==void 0)return;const{activeId:g,renderedItems:z}=p.getState(),A=l.item(g);if(A&&!A.disabled&&!A.dimmed)p.setState("selectedId",A.id);else{const _=z.find(v=>!v.disabled&&!v.dimmed);p.setState("selectedId",_?.id)}})),C0(p,()=>Ir(p,["renderedItems"],h=>{const g=h.renderedItems;if(g.length)return Ir(u,["renderedItems"],z=>{const A=z.renderedItems;A.some(v=>!v.tabId)&&A.forEach((v,M)=>{if(v.tabId)return;const y=g[M];y&&u.renderItem(lo(mn({},v),{tabId:y.id}))})})}));let b=null;return C0(p,()=>{const h=()=>{b=p.getState().selectedId},g=()=>{f=!1,p.setState("selectedId",b)};if(n&&"setSelectElement"in n)return _1(Ir(n,["value"],h),Ir(n,["mounted"],g));if(o)return _1(Ir(o,["selectedValue"],h),Ir(o,["mounted"],g))}),lo(mn(mn({},l),p),{panels:u,setSelectedId:h=>p.setState("selectedId",h),select:h=>{p.setState("selectedId",h),l.move(h)}})}function P$e(e,t,n){wd(t,[n.composite,n.combobox]),e=Yh(e,t,n),ar(e,n,"selectedId","setSelectedId"),ar(e,n,"selectOnMove");const[o,r]=va(()=>e.panels,{});return wd(r,[e,r]),Object.assign(x.useMemo(()=>zt($e({},e),{panels:o}),[e,o]),{composite:n.composite,combobox:n.combobox})}function j$e(e={}){const t=vIe(),n=IL()||t;e=zt($e({},e),{composite:e.composite!==void 0?e.composite:n,combobox:e.combobox!==void 0?e.combobox:t});const[o,r]=va(L$e,e);return P$e(o,r,e)}var DL=H1([ep],[Kf]),I$e=DL.useScopedContext,Zce=DL.useProviderContext,Qce=DL.ScopedContextProvider,D$e="button",F$e=en(function(t){var n=t,{store:o,getItem:r}=n,s=Jt(n,["store","getItem"]),i;const c=I$e();o=o||c,wo(o,!1);const l=V1(),u=s.id||l,d=Ql(s),p=x.useCallback(k=>{const S=zt($e({},k),{dimmed:d});return r?r(S):S},[d,r]),f=s.onClick,b=un(k=>{f?.(k),!k.defaultPrevented&&o?.setSelectedId(u)}),h=o.panels.useState(k=>{var S;return(S=k.items.find(C=>C.tabId===u))==null?void 0:S.id}),g=l?s.shouldRegisterItem:!1,z=o.useState(k=>!!u&&k.activeId===u),A=o.useState(k=>!!u&&k.selectedId===u),_=o.useState(k=>!!o.item(k.activeId)),v=z||A&&!_,M=A||((i=s.accessibleWhenDisabled)!=null?i:!0);if(Hn(o.combobox||o.composite,"virtualFocus")&&(s=zt($e({},s),{tabIndex:-1})),s=zt($e({id:u,role:"tab","aria-selected":A,"aria-controls":h||void 0},s),{onClick:b}),o.composite){const k={id:u,accessibleWhenDisabled:M,store:o.composite,shouldRegisterItem:v&&g,rowId:s.rowId,render:s.render};s=zt($e({},s),{render:a.jsx(c8,zt($e({},k),{render:o.combobox&&o.composite!==o.combobox?a.jsx(c8,zt($e({},k),{store:o.combobox})):k.render}))})}return s=Jh(zt($e({store:o},s),{accessibleWhenDisabled:M,getItem:p,shouldRegisterItem:g})),s}),$$e=Tc(Xt(function(t){const n=F$e(t);return Zt(D$e,n)})),V$e="div",H$e=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=Zce();o=o||s,wo(o,!1);const i=o.useState(c=>c.orientation==="both"?void 0:c.orientation);return r=Lo(r,c=>a.jsx(Qce,{value:o,children:c}),[o]),o.composite&&(r=$e({focusable:!1},r)),r=$e({role:"tablist","aria-orientation":i},r),r=Qh($e({store:o},r)),r}),U$e=Xt(function(t){const n=H$e(t);return Zt(V$e,n)}),X$e="div",G$e=en(function(t){var n=t,{store:o,unmountOnHide:r,tabId:s,getItem:i,scrollRestoration:c,scrollElement:l}=n,u=Jt(n,["store","unmountOnHide","tabId","getItem","scrollRestoration","scrollElement"]);const d=Zce();o=o||d,wo(o,!1);const p=x.useRef(null),f=V1(u.id),b=Hn(o.panels,()=>{var C;return s||((C=o?.panels.item(f))==null?void 0:C.tabId)}),h=Hn(o,C=>!!b&&C.selectedId===b),g=Iae({open:h}),z=Hn(g,"mounted"),A=x.useRef(new Map),_=un(()=>{const C=p.current;return C?l?typeof l=="function"?l(C):"current"in l?l.current:l:C:null});x.useEffect(()=>{var C,R;if(!c||!z)return;const T=_();if(!T)return;if(c==="reset"){T.scroll(0,0);return}if(!b)return;const E=A.current.get(b);T.scroll((C=E?.x)!=null?C:0,(R=E?.y)!=null?R:0);const B=()=>{A.current.set(b,{x:T.scrollLeft,y:T.scrollTop})};return T.addEventListener("scroll",B),()=>{T.removeEventListener("scroll",B)}},[c,z,b,_,o]);const[v,M]=x.useState(!1);x.useEffect(()=>{const C=p.current;if(!C)return;const R=q3(C);M(!!R.length)},[]);const y=x.useCallback(C=>{const R=zt($e({},C),{id:f||C.id,tabId:s});return i?i(R):R},[f,s,i]),k=u.onKeyDown,S=un(C=>{if(k?.(C),C.defaultPrevented||!o?.composite)return;const T={ArrowLeft:o.previous,ArrowRight:o.next,Home:o.first,End:o.last}[C.key];if(!T)return;const{selectedId:E}=o.getState(),B=T({activeId:E});B&&(C.preventDefault(),o.move(B))});return u=Lo(u,C=>a.jsx(Qce,{value:o,children:C}),[o]),u=zt($e({id:f,role:"tabpanel","aria-labelledby":b||void 0},u),{children:r&&!z?null:u.children,ref:ur(p,u.ref),onKeyDown:S}),u=Zh($e({focusable:!o.composite&&!v},u)),u=pw($e({store:g},u)),u=ML(zt($e({store:o.panels},u),{getItem:y})),u}),K$e=Xt(function(t){const n=G$e(t);return Zt(X$e,n)});function Y$e(e={}){var t=e,{combobox:n}=t,o=y3(t,["combobox"]);const r=w3(o.store,uh(n,["value","items","renderedItems","baseElement","arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),s=r.getState(),i=Kh(lo(mn({},o),{store:r,virtualFocus:nn(o.virtualFocus,s.virtualFocus,!0),includesBaseElement:nn(o.includesBaseElement,s.includesBaseElement,!1),activeId:nn(o.activeId,s.activeId,o.defaultActiveId,null),orientation:nn(o.orientation,s.orientation,"vertical")})),c=$ae(lo(mn({},o),{store:r,placement:nn(o.placement,s.placement,"bottom-start")})),l=new String(""),u=lo(mn(mn({},i.getState()),c.getState()),{value:nn(o.value,s.value,o.defaultValue,l),setValueOnMove:nn(o.setValueOnMove,s.setValueOnMove,!1),labelElement:nn(s.labelElement,null),selectElement:nn(s.selectElement,null),listElement:nn(s.listElement,null)}),d=k1(u,i,c,r);return C0(d,()=>Ir(d,["value","items"],p=>{if(p.value!==l||!p.items.length)return;const f=p.items.find(b=>!b.disabled&&b.value!=null);f?.value!=null&&d.setState("value",f.value)})),C0(d,()=>Ir(d,["mounted"],p=>{p.mounted||d.setState("activeId",u.activeId)})),C0(d,()=>Ir(d,["mounted","items","value"],p=>{if(n||p.mounted)return;const f=Eae(p.value),b=f[f.length-1];if(b==null)return;const h=p.items.find(g=>!g.disabled&&g.value===b);h&&d.setState("activeId",h.id)})),C0(d,()=>sz(d,["setValueOnMove","moves"],p=>{const{mounted:f,value:b,activeId:h}=d.getState();if(!p.setValueOnMove&&f||Array.isArray(b)||!p.moves||!h)return;const g=i.item(h);!g||g.disabled||g.value==null||d.setState("value",g.value)})),lo(mn(mn(mn({},i),c),d),{combobox:n,setValue:p=>d.setState("value",p),setLabelElement:p=>d.setState("labelElement",p),setSelectElement:p=>d.setState("selectElement",p),setListElement:p=>d.setState("listElement",p)})}function Z$e(e){const t=Uae();return e=zt($e({},e),{combobox:e.combobox!==void 0?e.combobox:t}),Lae(e)}function Q$e(e,t,n){return wd(t,[n.combobox]),ar(e,n,"value","setValue"),ar(e,n,"setValueOnMove"),Object.assign(Vae(Yh(e,t,n),t,n),{combobox:n.combobox})}function J$e(e={}){e=Z$e(e);const[t,n]=va(Y$e,e);return Q$e(t,n,e)}var eVe="span",tVe=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=IL();return o=o||s,r=Bce($e({store:o},r)),r}),nVe=Xt(function(t){const n=tVe(t);return Zt(eVe,n)}),oVe="button";function rVe(e){return Array.from(e.selectedOptions).map(t=>t.value)}function xA(e,t){return()=>{const n=t();if(!n)return;let o=0,r=e.item(n);const s=r;for(;r&&r.value==null;){const i=t(++o);if(!i)return;if(r=e.item(i),r===s)break}return r?.id}}var sVe=en(function(t){var n=t,{store:o,name:r,form:s,required:i,showOnKeyDown:c=!0,moveOnKeyDown:l=!0,toggleOnPress:u=!0,toggleOnClick:d=u}=n,p=Jt(n,["store","name","form","required","showOnKeyDown","moveOnKeyDown","toggleOnPress","toggleOnClick"]);const f=Mw();o=o||f,wo(o,!1);const b=p.onKeyDown,h=s0(c),g=s0(l),A=o.useState("placement").split("-")[0],_=o.useState("value"),v=Array.isArray(_),M=un(I=>{var P;if(b?.(I),I.defaultPrevented||!o)return;const{orientation:$,items:F,activeId:X}=o.getState(),Z=$!=="horizontal",V=$!=="vertical",ee=!!((P=F.find(ye=>!ye.disabled&&ye.value!=null))!=null&&P.rowId),J={ArrowUp:(ee||Z)&&xA(o,o.up),ArrowRight:(ee||V)&&xA(o,o.next),ArrowDown:(ee||Z)&&xA(o,o.down),ArrowLeft:(ee||V)&&xA(o,o.previous)}[I.key];J&&g(I)&&(I.preventDefault(),o.move(J()));const ue=A==="top"||A==="bottom";({ArrowDown:ue,ArrowUp:ue,ArrowLeft:A==="left",ArrowRight:A==="right"})[I.key]&&h(I)&&(I.preventDefault(),o.move(X),N2(I.currentTarget,"keyup",o.show))});p=Lo(p,I=>a.jsx(Kce,{value:o,children:I}),[o]);const[y,k]=x.useState(!1),S=x.useRef(!1);x.useEffect(()=>{const I=S.current;S.current=!1,!I&&k(!1)},[_]);const C=o.useState(I=>{var P;return(P=I.labelElement)==null?void 0:P.id}),R=p["aria-label"],T=p["aria-labelledby"]||C,E=o.useState(I=>{if(r)return I.items}),B=x.useMemo(()=>[...new Set(E?.map(I=>I.value).filter(I=>I!=null))],[E]);p=Lo(p,I=>r?a.jsxs(a.Fragment,{children:[a.jsxs("select",{style:{border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",whiteSpace:"nowrap",width:"1px"},tabIndex:-1,"aria-hidden":!0,"aria-label":R,"aria-labelledby":T,name:r,form:s,required:i,value:_,multiple:v,onFocus:()=>{var P;return(P=o?.getState().selectElement)==null?void 0:P.focus()},onChange:P=>{S.current=!0,k(!0),o?.setValue(v?rVe(P.target):P.target.value)},children:[Eae(_).map(P=>P==null||B.includes(P)?null:a.jsx("option",{value:P,children:P},P)),B.map(P=>a.jsx("option",{value:P,children:P},P))]}),I]}):I,[o,R,T,r,s,i,_,v,B]);const N=a.jsxs(a.Fragment,{children:[_,a.jsx(nVe,{})]}),j=o.useState("contentElement");return p=zt($e({role:"combobox","aria-autocomplete":"none","aria-labelledby":C,"aria-haspopup":sw(j,"listbox"),"data-autofill":y||void 0,"data-name":r,children:N},p),{ref:ur(o.setSelectElement,p.ref),onKeyDown:M}),p=RL($e({store:o,toggleOnClick:d},p)),p=E3($e({store:o},p)),p}),iVe=Xt(function(t){const n=sVe(t);return Zt(oVe,n)}),aVe="span",cVe=en(function(t){var n=t,{store:o,checked:r}=n,s=Jt(n,["store","checked"]);const i=x.useContext(Yce);return r=r??i,s=mL(zt($e({},s),{checked:r})),s}),lVe=Xt(function(t){const n=cVe(t);return Zt(aVe,n)}),uVe="div";function dVe(e,t){if(t!=null)return e==null?!1:Array.isArray(e)?e.includes(t):e===t}var pVe=en(function(t){var n=t,{store:o,value:r,getItem:s,hideOnClick:i,setValueOnClick:c=r!=null,preventScrollOnKeyDown:l=!0,focusOnHover:u=!0}=n,d=Jt(n,["store","value","getItem","hideOnClick","setValueOnClick","preventScrollOnKeyDown","focusOnHover"]),p;const f=B$e();o=o||f,wo(o,!1);const b=V1(d.id),h=Ql(d),{listElement:g,multiSelectable:z,selected:A,autoFocus:_}=Rae(o,{listElement:"listElement",multiSelectable(R){return Array.isArray(R.value)},selected(R){return dVe(R.value,r)},autoFocus(R){return r==null||R.value==null||R.activeId!==b&&o?.item(R.activeId)?!1:Array.isArray(R.value)?R.value[R.value.length-1]===r:R.value===r}}),v=x.useCallback(R=>{const T=zt($e({},R),{value:h?void 0:r,children:r});return s?s(T):T},[h,r,s]);i=i??(r!=null&&!z);const M=d.onClick,y=s0(c),k=s0(i),S=un(R=>{M?.(R),!R.defaultPrevented&&(xae(R)||vae(R)||(y(R)&&r!=null&&o?.setValue(T=>Array.isArray(T)?T.includes(r)?T.filter(E=>E!==r):[...T,r]:r),k(R)&&o?.hide()))});d=Lo(d,R=>a.jsx(Yce.Provider,{value:A??!1,children:R}),[A]),d=zt($e({id:b,role:eL(g),"aria-selected":A,children:r},d),{autoFocus:(p=d.autoFocus)!=null?p:_,onClick:S}),d=Jh($e({store:o,getItem:v,preventScrollOnKeyDown:l},d));const C=s0(u);return d=gL(zt($e({store:o},d),{focusOnHover(R){if(!C(R))return!1;const T=o?.getState();return!!T?.open}})),d}),fVe=Tc(Xt(function(t){const n=pVe(t);return Zt(uVe,n)})),bVe="div",hVe=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=Mw();o=o||s,wo(o,!1);const i=V1(r.id),c=r.onClick,l=un(u=>{c?.(u),!u.defaultPrevented&&queueMicrotask(()=>{const d=o?.getState().selectElement;d?.focus()})});return r=zt($e({id:i},r),{ref:ur(o.setLabelElement,r.ref),onClick:l,style:$e({cursor:"default"},r.style)}),ws(r)}),mVe=Tc(Xt(function(t){const n=hVe(t);return Zt(bVe,n)})),gVe="div",cG=x.createContext(null),Jce=en(function(t){var n=t,{store:o,resetOnEscape:r=!0,hideOnEnter:s=!0,focusOnMove:i=!0,composite:c,alwaysVisible:l}=n,u=Jt(n,["store","resetOnEscape","hideOnEnter","focusOnMove","composite","alwaysVisible"]);const d=IL();o=o||d,wo(o,!1);const p=V1(u.id),f=o.useState("value"),b=Array.isArray(f),[h,g]=x.useState(f),z=o.useState("mounted");x.useEffect(()=>{z||g(f)},[z,f]),r=r&&!b;const A=u.onKeyDown,_=s0(r),v=s0(s),M=un(ee=>{A?.(ee),!ee.defaultPrevented&&(ee.key==="Escape"&&_(ee)&&o?.setValue(h),(ee.key===" "||ee.key==="Enter")&&cs(ee)&&v(ee)&&(ee.preventDefault(),o?.hide()))}),y=x.useContext(aG),k=x.useState(),[S,C]=y||k,R=x.useMemo(()=>[S,C],[S]),[T,E]=x.useState(null),B=x.useContext(cG);x.useEffect(()=>{if(B)return B(o),()=>B(null)},[B,o]),u=Lo(u,ee=>a.jsx(Kce,{value:o,children:a.jsx(cG.Provider,{value:E,children:a.jsx(aG.Provider,{value:R,children:ee})})}),[o,R]);const N=!!o.combobox;c=c??(!N&&T!==o);const[j,I]=_ae(c?o.setListElement:null),P=X7e(j,"role",u.role),F=(c||(P==="listbox"||P==="menu"||P==="tree"||P==="grid"))&&b||void 0,X=dw(z,u.hidden,l),Z=X?zt($e({},u.style),{display:"none"}):u.style;c&&(u=$e({role:"listbox","aria-multiselectable":F},u));const V=o.useState(ee=>{var te;return S||((te=ee.labelElement)==null?void 0:te.id)});return u=zt($e({id:p,"aria-labelledby":V,hidden:X},u),{ref:ur(I,u.ref),style:Z,onKeyDown:M}),u=Qh(zt($e({store:o},u),{composite:c})),u=E3($e({store:o,typeahead:!N},u)),u});Xt(function(t){const n=Jce(t);return Zt(gVe,n)});var MVe="div",zVe=en(function(t){var n=t,{store:o,alwaysVisible:r}=n,s=Jt(n,["store","alwaysVisible"]);const i=Mw();return o=o||i,s=Jce($e({store:o,alwaysVisible:r},s)),s=CL($e({store:o,alwaysVisible:r},s)),s}),OVe=em(Xt(function(t){const n=zVe(t);return Zt(MVe,n)}),Mw);const m8=x.createContext({}),om=()=>x.useContext(m8),yVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(b9e,{store:s,...t,ref:n})}),AVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(d9e,{store:s,...t,ref:n})}),vVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(y9e,{store:s,...t,ref:n})}),xVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(c8,{store:s,...t,ref:n})}),wVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(JDe,{store:s,...t,ref:n})}),_Ve=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(zFe,{store:s,...t,ref:n})}),S1=Object.assign(x.forwardRef(function({activeId:t,defaultActiveId:n,setActiveId:o,focusLoop:r=!1,focusWrap:s=!1,focusShift:i=!1,virtualFocus:c=!1,orientation:l="both",rtl:u=jt(),children:d,disabled:p=!1,...f},b){const h=f.store,g=hIe({activeId:t,defaultActiveId:n,setActiveId:o,focusLoop:r,focusWrap:s,focusShift:i,virtualFocus:c,orientation:l,rtl:u}),z=h??g,A=x.useMemo(()=>({store:z}),[z]);return a.jsx(o9e,{disabled:p,store:z,...f,ref:b,children:a.jsx(m8.Provider,{value:A,children:d})})}),{Group:Object.assign(yVe,{displayName:"Composite.Group"}),GroupLabel:Object.assign(AVe,{displayName:"Composite.GroupLabel"}),Item:Object.assign(xVe,{displayName:"Composite.Item"}),Row:Object.assign(wVe,{displayName:"Composite.Row"}),Hover:Object.assign(vVe,{displayName:"Composite.Hover"}),Typeahead:Object.assign(_Ve,{displayName:"Composite.Typeahead"}),Context:Object.assign(m8,{displayName:"Composite.Context"})});function ele(e){const{shortcut:t,className:n}=e;if(!t)return null;let o,r;return typeof t=="string"&&(o=t),t!==null&&typeof t=="object"&&(o=t.display,r=t.ariaLabel),a.jsx("span",{className:n,"aria-label":r,children:o})}const kVe={bottom:"bottom",top:"top","middle left":"left","middle right":"right","bottom left":"bottom-end","bottom center":"bottom","bottom right":"bottom-start","top left":"top-end","top center":"top","top right":"top-start","middle left left":"left","middle left right":"left","middle left bottom":"left-end","middle left top":"left-start","middle right left":"right","middle right right":"right","middle right bottom":"right-end","middle right top":"right-start","bottom left left":"bottom-end","bottom left right":"bottom-end","bottom left bottom":"bottom-end","bottom left top":"bottom-end","bottom center left":"bottom","bottom center right":"bottom","bottom center bottom":"bottom","bottom center top":"bottom","bottom right left":"bottom-start","bottom right right":"bottom-start","bottom right bottom":"bottom-start","bottom right top":"bottom-start","top left left":"top-end","top left right":"top-end","top left bottom":"top-end","top left top":"top-end","top center left":"top","top center right":"top","top center bottom":"top","top center top":"top","top right left":"top-start","top right right":"top-start","top right bottom":"top-start","top right top":"top-start",middle:"bottom","middle center":"bottom","middle center bottom":"bottom","middle center left":"bottom","middle center right":"bottom","middle center top":"bottom"},zw=e=>{var t;return(t=kVe[e])!==null&&t!==void 0?t:"bottom"},SVe={top:{originX:.5,originY:1},"top-start":{originX:0,originY:1},"top-end":{originX:1,originY:1},right:{originX:0,originY:.5},"right-start":{originX:0,originY:0},"right-end":{originX:0,originY:1},bottom:{originX:.5,originY:0},"bottom-start":{originX:0,originY:0},"bottom-end":{originX:1,originY:0},left:{originX:1,originY:.5},"left-start":{originX:1,originY:0},"left-end":{originX:1,originY:1},overlay:{originX:.5,originY:.5}},CVe=e=>{const t=e.startsWith("top")||e.startsWith("bottom")?"translateY":"translateX",n=e.startsWith("top")||e.startsWith("left")?1:-1;return{style:SVe[e],initial:{opacity:0,scale:0,[t]:`${2*n}em`},animate:{opacity:1,scale:1,[t]:0},transition:{duration:.1,ease:[0,0,.2,1]}}};function qVe(e){return!!e?.top}function RVe(e){return!!e?.current}const TVe=({anchor:e,anchorRef:t,anchorRect:n,getAnchorRect:o,fallbackReferenceElement:r})=>{var s;let i=null;return e?i=e:qVe(t)?i={getBoundingClientRect(){const c=t.top.getBoundingClientRect(),l=t.bottom.getBoundingClientRect();return new window.DOMRect(c.x,c.y,c.width,l.bottom-c.top)}}:RVe(t)?i=t.current:t?i=t:n?i={getBoundingClientRect(){return n}}:o?i={getBoundingClientRect(){var c,l,u,d;const p=o(r);return new window.DOMRect((c=p.x)!==null&&c!==void 0?c:p.left,(l=p.y)!==null&&l!==void 0?l:p.top,(u=p.width)!==null&&u!==void 0?u:p.right-p.left,(d=p.height)!==null&&d!==void 0?d:p.bottom-p.top)}}:r&&(i=r.parentElement),(s=i)!==null&&s!==void 0?s:null},lG=e=>e===null||Number.isNaN(e)?void 0:Math.round(e),uG=x.createContext({isNestedInTooltip:!1}),EVe=700,WVe={isNestedInTooltip:!0};function NVe(e,t){const{children:n,className:o,delay:r=EVe,hideOnClick:s=!0,placement:i,position:c,shortcut:l,text:u,...d}=e,{isNestedInTooltip:p}=x.useContext(uG),f=vt(B0,"tooltip"),b=u||l?f:void 0,h=x.Children.count(n)===1;let g;i!==void 0?g=i:c!==void 0&&(g=zw(c),Ke("`position` prop in wp.components.tooltip",{since:"6.4",alternative:"`placement` prop"})),g=g||"bottom";const z=g$e({placement:g,showTimeout:r}),A=Hn(z,"mounted");if(p)return h?a.jsx(iz,{...d,render:n}):n;function _(v){return b&&A&&v.props["aria-describedby"]===void 0&&v.props["aria-label"]!==u?x.cloneElement(v,{"aria-describedby":b}):v}return a.jsxs(uG.Provider,{value:WVe,children:[a.jsx(x$e,{onClick:s?z.hide:void 0,store:z,render:h?_(n):void 0,ref:t,children:h?void 0:n}),h&&(u||l)&&a.jsxs(y$e,{...d,className:oe("components-tooltip",o),unmountOnHide:!0,gutter:4,id:b,overflowPadding:.5,store:z,children:[u,l&&a.jsx(ele,{className:u?"components-tooltip__shortcut":"",shortcut:l})]})]})}const B0=x.forwardRef(NVe);function bi(e){return e!=null}function BVe(e){const t=e==="";return!bi(e)||t}function LVe(e=[],t){var n;return(n=e.find(bi))!==null&&n!==void 0?n:t}const PVe=e=>parseFloat(e),wg=e=>typeof e=="string"?PVe(e):e,dG={initial:void 0,fallback:""};function Ow(e,t=dG){const{initial:n,fallback:o}={...dG,...t},[r,s]=x.useState(e),i=bi(e);x.useEffect(()=>{i&&r&&s(void 0)},[i,r]);const c=LVe([e,r,n],o),l=x.useCallback(u=>{i||s(u)},[i]);return[c,l]}function FL(e,t){const n=x.useRef(!1);x.useEffect(()=>{if(n.current)return e();n.current=!0},t),x.useEffect(()=>()=>{n.current=!1},[])}function B3({defaultValue:e,onChange:t,value:n}){const o=typeof n<"u",r=o?n:e,[s,i]=x.useState(r),c=o?n:s;let l;return o&&typeof t=="function"?l=t:!o&&typeof t=="function"?l=u=>{t(u),i(u)}:l=i,[c,l]}var jVe=!1;function IVe(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}function DVe(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),e.nonce!==void 0&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}var FVe=function(){function e(n){var o=this;this._insertTag=function(r){var s;o.tags.length===0?o.insertionPoint?s=o.insertionPoint.nextSibling:o.prepend?s=o.container.firstChild:s=o.before:s=o.tags[o.tags.length-1].nextSibling,o.container.insertBefore(r,s),o.tags.push(r)},this.isSpeedy=n.speedy===void 0?!jVe:n.speedy,this.tags=[],this.ctr=0,this.nonce=n.nonce,this.key=n.key,this.container=n.container,this.prepend=n.prepend,this.insertionPoint=n.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(o){o.forEach(this._insertTag)},t.insert=function(o){this.ctr%(this.isSpeedy?65e3:1)===0&&this._insertTag(DVe(this));var r=this.tags[this.tags.length-1];if(this.isSpeedy){var s=IVe(r);try{s.insertRule(o,s.cssRules.length)}catch{}}else r.appendChild(document.createTextNode(o));this.ctr++},t.flush=function(){this.tags.forEach(function(o){var r;return(r=o.parentNode)==null?void 0:r.removeChild(o)}),this.tags=[],this.ctr=0},e}(),l1="-ms-",ux="-moz-",zo="-webkit-",tle="comm",$L="rule",VL="decl",$Ve="@import",nle="@keyframes",VVe="@layer",HVe=Math.abs,yw=String.fromCharCode,UVe=Object.assign;function XVe(e,t){return U0(e,0)^45?(((t<<2^U0(e,0))<<2^U0(e,1))<<2^U0(e,2))<<2^U0(e,3):0}function ole(e){return e.trim()}function GVe(e,t){return(e=t.exec(e))?e[0]:e}function Oo(e,t,n){return e.replace(t,n)}function g8(e,t){return e.indexOf(t)}function U0(e,t){return e.charCodeAt(t)|0}function cz(e,t,n){return e.slice(t,n)}function tc(e){return e.length}function HL(e){return e.length}function wA(e,t){return t.push(e),e}function KVe(e,t){return e.map(t).join("")}var Aw=1,fh=1,rle=0,Ms=0,o0=0,rm="";function vw(e,t,n,o,r,s,i){return{value:e,root:t,parent:n,type:o,props:r,children:s,line:Aw,column:fh,length:i,return:""}}function _g(e,t){return UVe(vw("",null,null,"",null,null,0),e,{length:-e.length},t)}function YVe(){return o0}function ZVe(){return o0=Ms>0?U0(rm,--Ms):0,fh--,o0===10&&(fh=1,Aw--),o0}function Ls(){return o0=Ms<rle?U0(rm,Ms++):0,fh++,o0===10&&(fh=1,Aw++),o0}function bc(){return U0(rm,Ms)}function Uv(){return Ms}function L3(e,t){return cz(rm,e,t)}function lz(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function sle(e){return Aw=fh=1,rle=tc(rm=e),Ms=0,[]}function ile(e){return rm="",e}function Xv(e){return ole(L3(Ms-1,M8(e===91?e+2:e===40?e+1:e)))}function QVe(e){for(;(o0=bc())&&o0<33;)Ls();return lz(e)>2||lz(o0)>3?"":" "}function JVe(e,t){for(;--t&&Ls()&&!(o0<48||o0>102||o0>57&&o0<65||o0>70&&o0<97););return L3(e,Uv()+(t<6&&bc()==32&&Ls()==32))}function M8(e){for(;Ls();)switch(o0){case e:return Ms;case 34:case 39:e!==34&&e!==39&&M8(o0);break;case 40:e===41&&M8(e);break;case 92:Ls();break}return Ms}function eHe(e,t){for(;Ls()&&e+o0!==57;)if(e+o0===84&&bc()===47)break;return"/*"+L3(t,Ms-1)+"*"+yw(e===47?e:Ls())}function tHe(e){for(;!lz(bc());)Ls();return L3(e,Ms)}function nHe(e){return ile(Gv("",null,null,null,[""],e=sle(e),0,[0],e))}function Gv(e,t,n,o,r,s,i,c,l){for(var u=0,d=0,p=i,f=0,b=0,h=0,g=1,z=1,A=1,_=0,v="",M=r,y=s,k=o,S=v;z;)switch(h=_,_=Ls()){case 40:if(h!=108&&U0(S,p-1)==58){g8(S+=Oo(Xv(_),"&","&\f"),"&\f")!=-1&&(A=-1);break}case 34:case 39:case 91:S+=Xv(_);break;case 9:case 10:case 13:case 32:S+=QVe(h);break;case 92:S+=JVe(Uv()-1,7);continue;case 47:switch(bc()){case 42:case 47:wA(oHe(eHe(Ls(),Uv()),t,n),l);break;default:S+="/"}break;case 123*g:c[u++]=tc(S)*A;case 125*g:case 59:case 0:switch(_){case 0:case 125:z=0;case 59+d:A==-1&&(S=Oo(S,/\f/g,"")),b>0&&tc(S)-p&&wA(b>32?fG(S+";",o,n,p-1):fG(Oo(S," ","")+";",o,n,p-2),l);break;case 59:S+=";";default:if(wA(k=pG(S,t,n,u,d,r,c,v,M=[],y=[],p),s),_===123)if(d===0)Gv(S,t,k,k,M,s,p,c,y);else switch(f===99&&U0(S,3)===110?100:f){case 100:case 108:case 109:case 115:Gv(e,k,k,o&&wA(pG(e,k,k,0,0,r,c,v,r,M=[],p),y),r,y,p,c,o?M:y);break;default:Gv(S,k,k,k,[""],y,0,c,y)}}u=d=b=0,g=A=1,v=S="",p=i;break;case 58:p=1+tc(S),b=h;default:if(g<1){if(_==123)--g;else if(_==125&&g++==0&&ZVe()==125)continue}switch(S+=yw(_),_*g){case 38:A=d>0?1:(S+="\f",-1);break;case 44:c[u++]=(tc(S)-1)*A,A=1;break;case 64:bc()===45&&(S+=Xv(Ls())),f=bc(),d=p=tc(v=S+=tHe(Uv())),_++;break;case 45:h===45&&tc(S)==2&&(g=0)}}return s}function pG(e,t,n,o,r,s,i,c,l,u,d){for(var p=r-1,f=r===0?s:[""],b=HL(f),h=0,g=0,z=0;h<o;++h)for(var A=0,_=cz(e,p+1,p=HVe(g=i[h])),v=e;A<b;++A)(v=ole(g>0?f[A]+" "+_:Oo(_,/&\f/g,f[A])))&&(l[z++]=v);return vw(e,t,n,r===0?$L:c,l,u,d)}function oHe(e,t,n){return vw(e,t,n,tle,yw(YVe()),cz(e,2,-2),0)}function fG(e,t,n,o){return vw(e,t,n,VL,cz(e,0,o),cz(e,o+1,-1),o)}function L2(e,t){for(var n="",o=HL(e),r=0;r<o;r++)n+=t(e[r],r,e,t)||"";return n}function rHe(e,t,n,o){switch(e.type){case VVe:if(e.children.length)break;case $Ve:case VL:return e.return=e.return||e.value;case tle:return"";case nle:return e.return=e.value+"{"+L2(e.children,o)+"}";case $L:e.value=e.props.join(",")}return tc(n=L2(e.children,o))?e.return=e.value+"{"+n+"}":""}function sHe(e){var t=HL(e);return function(n,o,r,s){for(var i="",c=0;c<t;c++)i+=e[c](n,o,r,s)||"";return i}}function iHe(e){return function(t){t.root||(t=t.return)&&e(t)}}function ale(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var aHe=function(t,n,o){for(var r=0,s=0;r=s,s=bc(),r===38&&s===12&&(n[o]=1),!lz(s);)Ls();return L3(t,Ms)},cHe=function(t,n){var o=-1,r=44;do switch(lz(r)){case 0:r===38&&bc()===12&&(n[o]=1),t[o]+=aHe(Ms-1,n,o);break;case 2:t[o]+=Xv(r);break;case 4:if(r===44){t[++o]=bc()===58?"&\f":"",n[o]=t[o].length;break}default:t[o]+=yw(r)}while(r=Ls());return t},lHe=function(t,n){return ile(cHe(sle(t),n))},bG=new WeakMap,uHe=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,o=t.parent,r=t.column===o.column&&t.line===o.line;o.type!=="rule";)if(o=o.parent,!o)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!bG.get(o))&&!r){bG.set(t,!0);for(var s=[],i=lHe(n,s),c=o.props,l=0,u=0;l<i.length;l++)for(var d=0;d<c.length;d++,u++)t.props[u]=s[l]?i[l].replace(/&\f/g,c[d]):c[d]+" "+i[l]}}},dHe=function(t){if(t.type==="decl"){var n=t.value;n.charCodeAt(0)===108&&n.charCodeAt(2)===98&&(t.return="",t.value="")}};function cle(e,t){switch(XVe(e,t)){case 5103:return zo+"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 zo+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return zo+e+ux+e+l1+e+e;case 6828:case 4268:return zo+e+l1+e+e;case 6165:return zo+e+l1+"flex-"+e+e;case 5187:return zo+e+Oo(e,/(\w+).+(:[^]+)/,zo+"box-$1$2"+l1+"flex-$1$2")+e;case 5443:return zo+e+l1+"flex-item-"+Oo(e,/flex-|-self/,"")+e;case 4675:return zo+e+l1+"flex-line-pack"+Oo(e,/align-content|flex-|-self/,"")+e;case 5548:return zo+e+l1+Oo(e,"shrink","negative")+e;case 5292:return zo+e+l1+Oo(e,"basis","preferred-size")+e;case 6060:return zo+"box-"+Oo(e,"-grow","")+zo+e+l1+Oo(e,"grow","positive")+e;case 4554:return zo+Oo(e,/([^-])(transform)/g,"$1"+zo+"$2")+e;case 6187:return Oo(Oo(Oo(e,/(zoom-|grab)/,zo+"$1"),/(image-set)/,zo+"$1"),e,"")+e;case 5495:case 3959:return Oo(e,/(image-set\([^]*)/,zo+"$1$`$1");case 4968:return Oo(Oo(e,/(.+:)(flex-)?(.*)/,zo+"box-pack:$3"+l1+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+zo+e+e;case 4095:case 3583:case 4068:case 2532:return Oo(e,/(.+)-inline(.+)/,zo+"$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(tc(e)-1-t>6)switch(U0(e,t+1)){case 109:if(U0(e,t+4)!==45)break;case 102:return Oo(e,/(.+:)(.+)-([^]+)/,"$1"+zo+"$2-$3$1"+ux+(U0(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~g8(e,"stretch")?cle(Oo(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(U0(e,t+1)!==115)break;case 6444:switch(U0(e,tc(e)-3-(~g8(e,"!important")&&10))){case 107:return Oo(e,":",":"+zo)+e;case 101:return Oo(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+zo+(U0(e,14)===45?"inline-":"")+"box$3$1"+zo+"$2$3$1"+l1+"$2box$3")+e}break;case 5936:switch(U0(e,t+11)){case 114:return zo+e+l1+Oo(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return zo+e+l1+Oo(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return zo+e+l1+Oo(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return zo+e+l1+e+e}return e}var pHe=function(t,n,o,r){if(t.length>-1&&!t.return)switch(t.type){case VL:t.return=cle(t.value,t.length);break;case nle:return L2([_g(t,{value:Oo(t.value,"@","@"+zo)})],r);case $L:if(t.length)return KVe(t.props,function(s){switch(GVe(s,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return L2([_g(t,{props:[Oo(s,/:(read-\w+)/,":"+ux+"$1")]})],r);case"::placeholder":return L2([_g(t,{props:[Oo(s,/:(plac\w+)/,":"+zo+"input-$1")]}),_g(t,{props:[Oo(s,/:(plac\w+)/,":"+ux+"$1")]}),_g(t,{props:[Oo(s,/:(plac\w+)/,l1+"input-$1")]})],r)}return""})}},fHe=[pHe],UL=function(t){var n=t.key;if(n==="css"){var o=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(o,function(g){var z=g.getAttribute("data-emotion");z.indexOf(" ")!==-1&&(document.head.appendChild(g),g.setAttribute("data-s",""))})}var r=t.stylisPlugins||fHe,s={},i,c=[];i=t.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+n+' "]'),function(g){for(var z=g.getAttribute("data-emotion").split(" "),A=1;A<z.length;A++)s[z[A]]=!0;c.push(g)});var l,u=[uHe,dHe];{var d,p=[rHe,iHe(function(g){d.insert(g)})],f=sHe(u.concat(r,p)),b=function(z){return L2(nHe(z),f)};l=function(z,A,_,v){d=_,b(z?z+"{"+A.styles+"}":A.styles),v&&(h.inserted[A.name]=!0)}}var h={key:n,sheet:new FVe({key:n,container:i,nonce:t.nonce,speedy:t.speedy,prepend:t.prepend,insertionPoint:t.insertionPoint}),nonce:t.nonce,inserted:s,registered:{},insert:l};return h.sheet.hydrate(c),h};function uz(){return uz=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)({}).hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},uz.apply(null,arguments)}var MC={exports:{}},So={};/** @license React v16.13.1 + */var qX;function tIe(){if(qX)return iC;qX=1;var e=i3();function t(p,f){return p===f&&(p!==0||1/p===1/f)||p!==p&&f!==f}var n=typeof Object.is=="function"?Object.is:t,o=e.useState,r=e.useEffect,s=e.useLayoutEffect,i=e.useDebugValue;function c(p,f){var b=f(),h=o({inst:{value:b,getSnapshot:f}}),g=h[0].inst,z=h[1];return s(function(){g.value=b,g.getSnapshot=f,l(g)&&z({inst:g})},[p,b,f]),r(function(){return l(g)&&z({inst:g}),p(function(){l(g)&&z({inst:g})})},[p]),i(b),b}function l(p){var f=p.getSnapshot;p=p.value;try{var b=f();return!n(p,b)}catch{return!0}}function u(p,f){return f()}var d=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?u:c;return iC.useSyncExternalStore=e.useSyncExternalStore!==void 0?e.useSyncExternalStore:d,iC}var RX;function nIe(){return RX||(RX=1,sC.exports=tIe()),sC.exports}var oIe=nIe();const rIe=Zr(oIe);var{useSyncExternalStore:Cae}=rIe,qae=()=>()=>{};function Hn(e,t=gae){const n=x.useCallback(r=>e?lL(e,null,r):qae(),[e]),o=()=>{const r=typeof t=="string"?t:null,s=typeof t=="function"?t:null,i=e?.getState();if(s)return s(i);if(i&&r&&Nl(i,r))return i[r]};return Cae(n,o,o)}function Rae(e,t){const n=x.useRef({}),o=x.useCallback(s=>e?lL(e,null,s):qae(),[e]),r=()=>{const s=e?.getState();let i=!1;const c=n.current;for(const l in t){const u=t[l];if(typeof u=="function"){const d=u(s);d!==c[l]&&(c[l]=d,i=!0)}if(typeof u=="string"){if(!s||!Nl(s,u))continue;const d=s[u];d!==c[l]&&(c[l]=d,i=!0)}}return i&&(n.current=$e({},c)),n.current};return Cae(o,r,r)}function ar(e,t,n,o){const r=Nl(t,n)?t[n]:void 0,s=o?t[o]:void 0,i=wae({value:r,setValue:s});Uo(()=>Ir(e,[n],(c,l)=>{const{value:u,setValue:d}=i.current;d&&c[n]!==l[n]&&c[n]!==u&&d(c[n])}),[e,n]),Uo(()=>{if(r!==void 0)return e.setState(n,r),sz(e,[n],()=>{r!==void 0&&e.setState(n,r)})})}function va(e,t){const[n,o]=x.useState(()=>e(t));Uo(()=>cL(n),[n]);const r=x.useCallback(c=>Hn(n,c),[n]),s=x.useMemo(()=>zt($e({},n),{useState:r}),[n,r]),i=un(()=>{o(c=>e($e($e({},t),c.getState())))});return[s,i]}function sIe(e){var t;const n=e.find(s=>!!s.element),o=[...e].reverse().find(s=>!!s.element);let r=(t=n?.element)==null?void 0:t.parentElement;for(;r&&o?.element;){if(o&&r.contains(o.element))return r;r=r.parentElement}return zr(r).body}function iIe(e){return e?.__unstablePrivateStore}function Tae(e={}){var t;e.store;const n=(t=e.store)==null?void 0:t.getState(),o=nn(e.items,n?.items,e.defaultItems,[]),r=new Map(o.map(f=>[f.id,f])),s={items:o,renderedItems:nn(n?.renderedItems,[])},i=iIe(e.store),c=k1({items:o,renderedItems:s.renderedItems},i),l=k1(s,e.store),u=f=>{const b=yae(f,h=>h.element);c.setState("renderedItems",b),l.setState("renderedItems",b)};C0(l,()=>cL(c)),C0(c,()=>sz(c,["items"],f=>{l.setState("items",f.items)})),C0(c,()=>sz(c,["renderedItems"],f=>{let b=!0,h=requestAnimationFrame(()=>{const{renderedItems:_}=l.getState();f.renderedItems!==_&&u(f.renderedItems)});if(typeof IntersectionObserver!="function")return()=>cancelAnimationFrame(h);const g=()=>{if(b){b=!1;return}cancelAnimationFrame(h),h=requestAnimationFrame(()=>u(f.renderedItems))},z=sIe(f.renderedItems),A=new IntersectionObserver(g,{root:z});for(const _ of f.renderedItems)_.element&&A.observe(_.element);return()=>{cancelAnimationFrame(h),A.disconnect()}}));const d=(f,b,h=!1)=>{let g;return b(A=>{const _=A.findIndex(({id:M})=>M===f.id),v=A.slice();if(_!==-1){g=A[_];const M=mn(mn({},g),f);v[_]=M,r.set(f.id,M)}else v.push(f),r.set(f.id,f);return v}),()=>{b(A=>{if(!g)return h&&r.delete(f.id),A.filter(({id:M})=>M!==f.id);const _=A.findIndex(({id:M})=>M===f.id);if(_===-1)return A;const v=A.slice();return v[_]=g,r.set(f.id,g),v})}},p=f=>d(f,b=>c.setState("items",b),!0);return lo(mn({},l),{registerItem:p,renderItem:f=>_1(p(f),d(f,b=>c.setState("renderedItems",b))),item:f=>{if(!f)return null;let b=r.get(f);if(!b){const{items:h}=c.getState();b=h.find(g=>g.id===f),b&&r.set(f,b)}return b||null},__unstablePrivateStore:c})}function aIe(e,t,n){return wd(t,[n.store]),ar(e,n,"items","setItems"),e}function Eae(e){return Array.isArray(e)?e:typeof e<"u"?[e]:[]}function Wae(e){const t=[];for(const n of e)t.push(...n);return t}function r8(e){return e.slice().reverse()}var cIe={id:null};function rl(e,t){return e.find(n=>t?!n.disabled&&n.id!==t:!n.disabled)}function lIe(e,t){return e.filter(n=>t?!n.disabled&&n.id!==t:!n.disabled)}function TX(e,t){return e.filter(n=>n.rowId===t)}function uIe(e,t,n=!1){const o=e.findIndex(r=>r.id===t);return[...e.slice(o+1),...n?[cIe]:[],...e.slice(0,o)]}function Nae(e){const t=[];for(const n of e){const o=t.find(r=>{var s;return((s=r[0])==null?void 0:s.rowId)===n.rowId});o?o.push(n):t.push([n])}return t}function Bae(e){let t=0;for(const{length:n}of e)n>t&&(t=n);return t}function dIe(e){return{id:"__EMPTY_ITEM__",disabled:!0,rowId:e}}function pIe(e,t,n){const o=Bae(e);for(const r of e)for(let s=0;s<o;s+=1){const i=r[s];if(!i||n&&i.disabled){const l=s===0&&n?rl(r):r[s-1];r[s]=l&&t!==l.id&&n?l:dIe(l?.rowId)}}return e}function fIe(e){const t=Nae(e),n=Bae(t),o=[];for(let r=0;r<n;r+=1)for(const s of t){const i=s[r];i&&o.push(lo(mn({},i),{rowId:i.rowId?`${r}`:void 0}))}return o}function Kh(e={}){var t;const n=(t=e.store)==null?void 0:t.getState(),o=Tae(e),r=nn(e.activeId,n?.activeId,e.defaultActiveId),s=lo(mn({},o.getState()),{id:nn(e.id,n?.id,`id-${Math.random().toString(36).slice(2,8)}`),activeId:r,baseElement:nn(n?.baseElement,null),includesBaseElement:nn(e.includesBaseElement,n?.includesBaseElement,r===null),moves:nn(n?.moves,0),orientation:nn(e.orientation,n?.orientation,"both"),rtl:nn(e.rtl,n?.rtl,!1),virtualFocus:nn(e.virtualFocus,n?.virtualFocus,!1),focusLoop:nn(e.focusLoop,n?.focusLoop,!1),focusWrap:nn(e.focusWrap,n?.focusWrap,!1),focusShift:nn(e.focusShift,n?.focusShift,!1)}),i=k1(s,o,e.store);C0(i,()=>Ir(i,["renderedItems","activeId"],l=>{i.setState("activeId",u=>{var d;return u!==void 0?u:(d=rl(l.renderedItems))==null?void 0:d.id})}));const c=(l="next",u={})=>{var d,p;const f=i.getState(),{skip:b=0,activeId:h=f.activeId,focusShift:g=f.focusShift,focusLoop:z=f.focusLoop,focusWrap:A=f.focusWrap,includesBaseElement:_=f.includesBaseElement,renderedItems:v=f.renderedItems,rtl:M=f.rtl}=u,y=l==="up"||l==="down",k=l==="next"||l==="down",S=k?M&&!y:!M||y,C=g&&!b;let R=y?Wae(pIe(Nae(v),h,C)):v;if(R=S?r8(R):R,R=y?fIe(R):R,h==null)return(d=rl(R))==null?void 0:d.id;const T=R.find(X=>X.id===h);if(!T)return(p=rl(R))==null?void 0:p.id;const E=R.some(X=>X.rowId),B=R.indexOf(T),N=R.slice(B+1),j=TX(N,T.rowId);if(b){const X=lIe(j,h),Z=X.slice(b)[0]||X[X.length-1];return Z?.id}const I=z&&(y?z!=="horizontal":z!=="vertical"),P=E&&A&&(y?A!=="horizontal":A!=="vertical"),$=k?(!E||y)&&I&&_:y?_:!1;if(I){const X=P&&!$?R:TX(R,T.rowId),Z=uIe(X,h,$),V=rl(Z,h);return V?.id}if(P){const X=rl($?j:N,h);return $?X?.id||null:X?.id}const F=rl(j,h);return!F&&$?null:F?.id};return lo(mn(mn({},o),i),{setBaseElement:l=>i.setState("baseElement",l),setActiveId:l=>i.setState("activeId",l),move:l=>{l!==void 0&&(i.setState("activeId",l),i.setState("moves",u=>u+1))},first:()=>{var l;return(l=rl(i.getState().renderedItems))==null?void 0:l.id},last:()=>{var l;return(l=rl(r8(i.getState().renderedItems)))==null?void 0:l.id},next:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("next",l)),previous:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("previous",l)),down:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("down",l)),up:l=>(l!==void 0&&typeof l=="number"&&(l={skip:l}),c("up",l))})}function Lae(e){const t=V1(e.id);return $e({id:t},e)}function Yh(e,t,n){return e=aIe(e,t,n),ar(e,n,"activeId","setActiveId"),ar(e,n,"includesBaseElement"),ar(e,n,"virtualFocus"),ar(e,n,"orientation"),ar(e,n,"rtl"),ar(e,n,"focusLoop"),ar(e,n,"focusWrap"),ar(e,n,"focusShift"),e}function bIe(e={}){e=Lae(e);const[t,n]=va(Kh,e);return Yh(t,n,e)}function Pae(e={}){const t=w3(e.store,uh(e.disclosure,["contentElement","disclosureElement"])),n=t?.getState(),o=nn(e.open,n?.open,e.defaultOpen,!1),r=nn(e.animated,n?.animated,!1),s={open:o,animated:r,animating:!!r&&o,mounted:o,contentElement:nn(n?.contentElement,null),disclosureElement:nn(n?.disclosureElement,null)},i=k1(s,t);return C0(i,()=>Ir(i,["animated","animating"],c=>{c.animated||i.setState("animating",!1)})),C0(i,()=>lL(i,["open"],()=>{i.getState().animated&&i.setState("animating",!0)})),C0(i,()=>Ir(i,["open","animating"],c=>{i.setState("mounted",c.open||c.animating)})),lo(mn({},i),{disclosure:e.disclosure,setOpen:c=>i.setState("open",c),show:()=>i.setState("open",!0),hide:()=>i.setState("open",!1),toggle:()=>i.setState("open",c=>!c),stopAnimation:()=>i.setState("animating",!1),setContentElement:c=>i.setState("contentElement",c),setDisclosureElement:c=>i.setState("disclosureElement",c)})}function jae(e,t,n){return wd(t,[n.store,n.disclosure]),ar(e,n,"open","setOpen"),ar(e,n,"mounted","setMounted"),ar(e,n,"animated"),Object.assign(e,{disclosure:n.disclosure})}function Iae(e={}){const[t,n]=va(Pae,e);return jae(t,n,e)}function Dae(e={}){return Pae(e)}function Fae(e,t,n){return jae(e,t,n)}function hIe(e={}){const[t,n]=va(Dae,e);return Fae(t,n,e)}function $ae(e={}){var t=e,{popover:n}=t,o=y3(t,["popover"]);const r=w3(o.store,uh(n,["arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),s=r?.getState(),i=Dae(lo(mn({},o),{store:r})),c=nn(o.placement,s?.placement,"bottom"),l=lo(mn({},i.getState()),{placement:c,currentPlacement:c,anchorElement:nn(s?.anchorElement,null),popoverElement:nn(s?.popoverElement,null),arrowElement:nn(s?.arrowElement,null),rendered:Symbol("rendered")}),u=k1(l,i,r);return lo(mn(mn({},i),u),{setAnchorElement:d=>u.setState("anchorElement",d),setPopoverElement:d=>u.setState("popoverElement",d),setArrowElement:d=>u.setState("arrowElement",d),render:()=>u.setState("rendered",Symbol("rendered"))})}function Vae(e,t,n){return wd(t,[n.popover]),ar(e,n,"placement"),Fae(e,t,n)}var _3=H1();_3.useContext;_3.useScopedContext;var uL=_3.useProviderContext,mIe=_3.ContextProvider,gIe=_3.ScopedContextProvider,k3=H1([mIe],[gIe]);k3.useContext;k3.useScopedContext;var iw=k3.useProviderContext,MIe=k3.ContextProvider,dL=k3.ScopedContextProvider,zIe=x.createContext(void 0),OIe=x.createContext(void 0),S3=H1([MIe],[dL]),yIe=S3.useContext;S3.useScopedContext;var aw=S3.useProviderContext,pL=S3.ContextProvider,C3=S3.ScopedContextProvider;x.createContext(void 0);var Hae=H1([pL,ep],[C3,Kf]),AIe=Hae.useContext,Uae=Hae.useProviderContext;x.createContext(void 0);x.createContext(!1);var vIe="div",Xae=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=aw();return o=o||s,r=zt($e({},r),{ref:ur(o?.setAnchorElement,r.ref)}),r});Xt(function(t){const n=Xae(t);return Zt(vIe,n)});var xIe={id:null};function wIe(e,t,n=!1){const o=e.findIndex(r=>r.id===t);return[...e.slice(o+1),...n?[xIe]:[],...e.slice(0,o)]}function _Ie(e,t){return e.find(n=>!n.disabled)}function Uu(e,t){return t&&e.item(t)||null}function kIe(e){const t=[];for(const n of e){const o=t.find(r=>{var s;return((s=r[0])==null?void 0:s.rowId)===n.rowId});o?o.push(n):t.push([n])}return t}function SIe(e,t=!1){if(Jl(e))e.setSelectionRange(t?e.value.length:0,e.value.length);else if(e.isContentEditable){const n=zr(e).getSelection();n?.selectAllChildren(e),t&&n?.collapseToEnd()}}var s8=Symbol("FOCUS_SILENTLY");function CIe(e){e[s8]=!0,e.focus({preventScroll:!0})}function qIe(e){const t=e[s8];return delete e[s8],t}function vM(e,t,n){return!(!t||t===n||!e.item(t.id))}var Gae=x.createContext(!0),cw="input:not([type='hidden']):not([disabled]), select:not([disabled]), textarea:not([disabled]), a[href], button:not([disabled]), [tabindex], summary, iframe, object, embed, area[href], audio[controls], video[controls], [contenteditable]:not([contenteditable='false'])";function RIe(e){return Number.parseInt(e.getAttribute("tabindex")||"0",10)<0}function ca(e){return!(!e.matches(cw)||!zae(e)||e.closest("[inert]"))}function rx(e){if(!ca(e)||RIe(e))return!1;if(!("form"in e)||!e.form||e.checked||e.type!=="radio")return!0;const t=e.form.elements.namedItem(e.name);if(!t||!("length"in t))return!0;const n=Ql(e);return!n||n===e||!("form"in n)||n.form!==e.form||n.name!==e.name}function fL(e,t){const n=Array.from(e.querySelectorAll(cw));t&&n.unshift(e);const o=n.filter(ca);return o.forEach((r,s)=>{if(QB(r)&&r.contentDocument){const i=r.contentDocument.body;o.splice(s,1,...fL(i))}}),o}function q3(e,t,n){const o=Array.from(e.querySelectorAll(cw)),r=o.filter(rx);return t&&rx(e)&&r.unshift(e),r.forEach((s,i)=>{if(QB(s)&&s.contentDocument){const c=s.contentDocument.body,l=q3(c,!1,n);r.splice(i,1,...l)}}),!r.length&&n?o:r}function TIe(e,t,n){const[o]=q3(e,t,n);return o||null}function EIe(e,t,n,o){const r=Ql(e),s=fL(e,t),i=s.indexOf(r);return s.slice(i+1).find(rx)||null||null||null}function aC(e,t){return EIe(document.body,!1)}function WIe(e,t,n,o){const r=Ql(e),s=fL(e,t).reverse(),i=s.indexOf(r);return s.slice(i+1).find(rx)||null||null||null}function EX(e,t){return WIe(document.body,!1)}function NIe(e){for(;e&&!ca(e);)e=e.closest(cw);return e||null}function sx(e){const t=Ql(e);if(!t)return!1;if(t===e)return!0;const n=t.getAttribute("aria-activedescendant");return n?n===e.id:!1}function cd(e){const t=Ql(e);if(!t)return!1;if(Yr(e,t))return!0;const n=t.getAttribute("aria-activedescendant");return!n||!("id"in e)?!1:n===e.id?!0:!!e.querySelector(`#${CSS.escape(n)}`)}function Kae(e){!cd(e)&&ca(e)&&e.focus()}function BIe(e){var t;const n=(t=e.getAttribute("tabindex"))!=null?t:"";e.setAttribute("data-tabindex",n),e.setAttribute("tabindex","-1")}function LIe(e,t){const n=q3(e,t);for(const o of n)BIe(o)}function PIe(e){const t=e.querySelectorAll("[data-tabindex]"),n=o=>{const r=o.getAttribute("data-tabindex");o.removeAttribute("data-tabindex"),r?o.setAttribute("tabindex",r):o.removeAttribute("tabindex")};e.hasAttribute("data-tabindex")&&n(e);for(const o of t)n(o)}function jIe(e,t){"scrollIntoView"in e?(e.focus({preventScroll:!0}),e.scrollIntoView(mn({block:"nearest",inline:"nearest"},t))):e.focus()}var IIe="div",WX=tL(),DIe=["text","search","url","tel","email","password","number","date","month","week","time","datetime","datetime-local"],Yae=Symbol("safariFocusAncestor");function FIe(e){return e?!!e[Yae]:!1}function NX(e,t){e&&(e[Yae]=t)}function $Ie(e){const{tagName:t,readOnly:n,type:o}=e;return t==="TEXTAREA"&&!n||t==="SELECT"&&!n?!0:t==="INPUT"&&!n?DIe.includes(o):!!(e.isContentEditable||e.getAttribute("role")==="combobox"&&e.dataset.name)}function VIe(e){return"labels"in e?e.labels:null}function BX(e){return e.tagName.toLowerCase()==="input"&&e.type?e.type==="radio"||e.type==="checkbox":!1}function HIe(e){return e?e==="button"||e==="summary"||e==="input"||e==="select"||e==="textarea"||e==="a":!0}function UIe(e){return e?e==="button"||e==="input"||e==="select"||e==="textarea":!0}function XIe(e,t,n,o,r){return e?t?n&&!o?-1:void 0:n?r:r||0:r}function cC(e,t){return un(n=>{e?.(n),!n.defaultPrevented&&t&&(n.stopPropagation(),n.preventDefault())})}var bL=!0;function GIe(e){const t=e.target;t&&"hasAttribute"in t&&(t.hasAttribute("data-focus-visible")||(bL=!1))}function KIe(e){e.metaKey||e.ctrlKey||e.altKey||(bL=!0)}var Zh=en(function(t){var n=t,{focusable:o=!0,accessibleWhenDisabled:r,autoFocus:s,onFocusVisible:i}=n,c=Jt(n,["focusable","accessibleWhenDisabled","autoFocus","onFocusVisible"]);const l=x.useRef(null);x.useEffect(()=>{o&&(X0("mousedown",GIe,!0),X0("keydown",KIe,!0))},[o]),WX&&x.useEffect(()=>{if(!o)return;const P=l.current;if(!P||!BX(P))return;const $=VIe(P);if(!$)return;const F=()=>queueMicrotask(()=>P.focus());for(const X of $)X.addEventListener("mouseup",F);return()=>{for(const X of $)X.removeEventListener("mouseup",F)}},[o]);const u=o&&Zl(c),d=!!u&&!r,[p,f]=x.useState(!1);x.useEffect(()=>{o&&d&&p&&f(!1)},[o,d,p]),x.useEffect(()=>{if(!o||!p)return;const P=l.current;if(!P||typeof IntersectionObserver>"u")return;const $=new IntersectionObserver(()=>{ca(P)||f(!1)});return $.observe(P),()=>$.disconnect()},[o,p]);const b=cC(c.onKeyPressCapture,u),h=cC(c.onMouseDownCapture,u),g=cC(c.onClickCapture,u),z=c.onMouseDown,A=un(P=>{if(z?.(P),P.defaultPrevented||!o)return;const $=P.currentTarget;if(!WX||Aae(P)||!xd($)&&!BX($))return;let F=!1;const X=()=>{F=!0},Z={capture:!0,once:!0};$.addEventListener("focusin",X,Z);const V=NIe($.parentElement);NX(V,!0),N2($,"mouseup",()=>{$.removeEventListener("focusin",X,!0),NX(V,!1),!F&&Kae($)})}),_=(P,$)=>{if($&&(P.currentTarget=$),!o)return;const F=P.currentTarget;F&&sx(F)&&(i?.(P),!P.defaultPrevented&&(F.dataset.focusVisible="true",f(!0)))},v=c.onKeyDownCapture,M=un(P=>{if(v?.(P),P.defaultPrevented||!o||p||P.metaKey||P.altKey||P.ctrlKey||!cs(P))return;const $=P.currentTarget;N2($,"focusout",()=>_(P,$))}),y=c.onFocusCapture,k=un(P=>{if(y?.(P),P.defaultPrevented||!o)return;if(!cs(P)){f(!1);return}const $=P.currentTarget,F=()=>_(P,$);bL||$Ie(P.target)?N2(P.target,"focusout",F):f(!1)}),S=c.onBlur,C=un(P=>{S?.(P),o&&r2(P)&&f(!1)}),R=x.useContext(Gae),T=un(P=>{o&&s&&P&&R&&queueMicrotask(()=>{sx(P)||ca(P)&&P.focus()})}),E=sw(l),B=o&&HIe(E),N=o&&UIe(E),j=c.style,I=x.useMemo(()=>d?$e({pointerEvents:"none"},j):j,[d,j]);return c=zt($e({"data-focus-visible":o&&p||void 0,"data-autofocus":s||void 0,"aria-disabled":u||void 0},c),{ref:ur(l,T,c.ref),style:I,tabIndex:XIe(o,d,B,N,c.tabIndex),disabled:N&&d?!0:void 0,contentEditable:u?void 0:c.contentEditable,onKeyPressCapture:b,onClickCapture:g,onMouseDownCapture:h,onMouseDown:A,onKeyDownCapture:M,onFocusCapture:k,onBlur:C}),ws(c)});Xt(function(t){const n=Zh(t);return Zt(IIe,n)});var YIe="div";function ZIe(e){return e.some(t=>!!t.rowId)}function QIe(e){const t=e.target;return t&&!Jl(t)?!1:e.key.length===1&&!e.ctrlKey&&!e.metaKey}function JIe(e){return e.key==="Shift"||e.key==="Control"||e.key==="Alt"||e.key==="Meta"}function LX(e,t,n){return un(o=>{var r;if(t?.(o),o.defaultPrevented||o.isPropagationStopped()||!cs(o)||JIe(o)||QIe(o))return;const s=e.getState(),i=(r=Uu(e,s.activeId))==null?void 0:r.element;if(!i)return;const c=o,l=Jt(c,["view"]),u=n?.current;i!==u&&i.focus(),H7e(i,o.type,l)||o.preventDefault(),o.currentTarget.contains(i)&&o.stopPropagation()})}function e9e(e){return _Ie(Wae(r8(kIe(e))))}function t9e(e){const[t,n]=x.useState(!1),o=x.useCallback(()=>n(!0),[]),r=e.useState(s=>Uu(e,s.activeId));return x.useEffect(()=>{const s=r?.element;t&&s&&(n(!1),s.focus({preventScroll:!0}))},[r,t]),o}var Qh=en(function(t){var n=t,{store:o,composite:r=!0,focusOnMove:s=r,moveOnKeyPress:i=!0}=n,c=Jt(n,["store","composite","focusOnMove","moveOnKeyPress"]);const l=Q7e();o=o||l,wo(o,!1);const u=x.useRef(null),d=x.useRef(null),p=t9e(o),f=o.useState("moves"),[,b]=_ae(r?o.setBaseElement:null);x.useEffect(()=>{var N;if(!o||!f||!r||!s)return;const{activeId:j}=o.getState(),I=(N=Uu(o,j))==null?void 0:N.element;I&&jIe(I)},[o,f,r,s]),Uo(()=>{if(!o||!f||!r)return;const{baseElement:N,activeId:j}=o.getState();if(!(j===null)||!N)return;const P=d.current;d.current=null,P&&Vb(P,{relatedTarget:N}),sx(N)||N.focus()},[o,f,r]);const h=o.useState("activeId"),g=o.useState("virtualFocus");Uo(()=>{var N;if(!o||!r||!g)return;const j=d.current;if(d.current=null,!j)return;const P=((N=Uu(o,h))==null?void 0:N.element)||Ql(j);P!==j&&Vb(j,{relatedTarget:P})},[o,h,g,r]);const z=LX(o,c.onKeyDownCapture,d),A=LX(o,c.onKeyUpCapture,d),_=c.onFocusCapture,v=un(N=>{if(_?.(N),N.defaultPrevented||!o)return;const{virtualFocus:j}=o.getState();if(!j)return;const I=N.relatedTarget,P=qIe(N.currentTarget);cs(N)&&P&&(N.stopPropagation(),d.current=I)}),M=c.onFocus,y=un(N=>{if(M?.(N),N.defaultPrevented||!r||!o)return;const{relatedTarget:j}=N,{virtualFocus:I}=o.getState();I?cs(N)&&!vM(o,j)&&queueMicrotask(p):cs(N)&&o.setActiveId(null)}),k=c.onBlurCapture,S=un(N=>{var j;if(k?.(N),N.defaultPrevented||!o)return;const{virtualFocus:I,activeId:P}=o.getState();if(!I)return;const $=(j=Uu(o,P))==null?void 0:j.element,F=N.relatedTarget,X=vM(o,F),Z=d.current;d.current=null,cs(N)&&X?(F===$?Z&&Z!==F&&Vb(Z,N):$?Vb($,N):Z&&Vb(Z,N),N.stopPropagation()):!vM(o,N.target)&&$&&Vb($,N)}),C=c.onKeyDown,R=s0(i),T=un(N=>{var j;if(C?.(N),N.defaultPrevented||!o||!cs(N))return;const{orientation:I,renderedItems:P,activeId:$}=o.getState(),F=Uu(o,$);if((j=F?.element)!=null&&j.isConnected)return;const X=I!=="horizontal",Z=I!=="vertical",V=ZIe(P);if((N.key==="ArrowLeft"||N.key==="ArrowRight"||N.key==="Home"||N.key==="End")&&Jl(N.currentTarget))return;const ue={ArrowUp:(V||X)&&(()=>{if(V){const ce=e9e(P);return ce?.id}return o?.last()}),ArrowRight:(V||Z)&&o.first,ArrowDown:(V||X)&&o.first,ArrowLeft:(V||Z)&&o.last,Home:o.first,End:o.last,PageUp:o.first,PageDown:o.last}[N.key];if(ue){const ce=ue();if(ce!==void 0){if(!R(N))return;N.preventDefault(),o.move(ce)}}});c=Lo(c,N=>a.jsx(ep,{value:o,children:N}),[o]);const E=o.useState(N=>{var j;if(o&&r&&N.virtualFocus)return(j=Uu(o,N.activeId))==null?void 0:j.id});c=zt($e({"aria-activedescendant":E},c),{ref:ur(u,b,c.ref),onKeyDownCapture:z,onKeyUpCapture:A,onFocusCapture:v,onFocus:y,onBlurCapture:S,onKeyDown:T});const B=o.useState(N=>r&&(N.virtualFocus||N.activeId===null));return c=Zh($e({focusable:B},c)),c}),n9e=Xt(function(t){const n=Qh(t);return Zt(YIe,n)}),o9e="button";function PX(e){if(!e.isTrusted)return!1;const t=e.currentTarget;return e.key==="Enter"?xd(t)||t.tagName==="SUMMARY"||t.tagName==="A":e.key===" "?xd(t)||t.tagName==="SUMMARY"||t.tagName==="INPUT"||t.tagName==="SELECT":!1}var r9e=Symbol("command"),lw=en(function(t){var n=t,{clickOnEnter:o=!0,clickOnSpace:r=!0}=n,s=Jt(n,["clickOnEnter","clickOnSpace"]);const i=x.useRef(null),[c,l]=x.useState(!1);x.useEffect(()=>{i.current&&l(xd(i.current))},[]);const[u,d]=x.useState(!1),p=x.useRef(!1),f=Zl(s),[b,h]=kae(s,r9e,!0),g=s.onKeyDown,z=un(v=>{g?.(v);const M=v.currentTarget;if(v.defaultPrevented||b||f||!cs(v)||Jl(M)||M.isContentEditable)return;const y=o&&v.key==="Enter",k=r&&v.key===" ",S=v.key==="Enter"&&!o,C=v.key===" "&&!r;if(S||C){v.preventDefault();return}if(y||k){const R=PX(v);if(y){if(!R){v.preventDefault();const T=v,E=Jt(T,["view"]),B=()=>wX(M,E);F7e()?N2(M,"keyup",B):queueMicrotask(B)}}else k&&(p.current=!0,R||(v.preventDefault(),d(!0)))}}),A=s.onKeyUp,_=un(v=>{if(A?.(v),v.defaultPrevented||b||f||v.metaKey)return;const M=r&&v.key===" ";if(p.current&&M&&(p.current=!1,!PX(v))){v.preventDefault(),d(!1);const y=v.currentTarget,k=v,S=Jt(k,["view"]);queueMicrotask(()=>wX(y,S))}});return s=zt($e($e({"data-active":u||void 0,type:c?"button":void 0},h),s),{ref:ur(i,s.ref),onKeyDown:z,onKeyUp:_}),s=Zh(s),s});Xt(function(t){const n=lw(t);return Zt(o9e,n)});var Zae="button",Qae=en(function(t){const n=x.useRef(null),o=sw(n,Zae),[r,s]=x.useState(()=>!!o&&xd({tagName:o,type:t.type}));return x.useEffect(()=>{n.current&&s(xd(n.current))},[]),t=zt($e({role:!r&&o!=="a"?"button":void 0},t),{ref:ur(n,t.ref)}),t=lw(t),t});Xt(function(t){const n=Qae(t);return Zt(Zae,n)});var s9e="button",i9e=Symbol("disclosure"),Jae=en(function(t){var n=t,{store:o,toggleOnClick:r=!0}=n,s=Jt(n,["store","toggleOnClick"]);const i=uL();o=o||i,wo(o,!1);const c=x.useRef(null),[l,u]=x.useState(!1),d=o.useState("disclosureElement"),p=o.useState("open");x.useEffect(()=>{let _=d===c.current;d?.isConnected||(o?.setDisclosureElement(c.current),_=!0),u(p&&_)},[d,o,p]);const f=s.onClick,b=s0(r),[h,g]=kae(s,i9e,!0),z=un(_=>{f?.(_),!_.defaultPrevented&&(h||b(_)&&(o?.setDisclosureElement(_.currentTarget),o?.toggle()))}),A=o.useState("contentElement");return s=zt($e($e({"aria-expanded":l,"aria-controls":A?.id},g),s),{ref:ur(c,s.ref),onClick:z}),s=Qae(s),s});Xt(function(t){const n=Jae(t);return Zt(s9e,n)});var a9e="button",ece=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=iw();o=o||s,wo(o,!1);const i=o.useState("contentElement");return r=$e({"aria-haspopup":rw(i,"dialog")},r),r=Jae($e({store:o},r)),r});Xt(function(t){const n=ece(t);return Zt(a9e,n)});var tce=x.createContext(void 0),c9e="div",nce=en(function(t){const n=x.useContext(tce),o=V1(t.id);return Uo(()=>(n?.(o),()=>n?.(void 0)),[n,o]),t=$e({id:o,"aria-hidden":!0},t),ws(t)});Xt(function(t){const n=nce(t);return Zt(c9e,n)});var l9e="div",oce=en(function(t){var n=t,o=Jt(n,["store"]);return o=nce(o),o}),u9e=Xt(function(t){const n=oce(t);return Zt(l9e,n)}),d9e="div",rce=en(function(t){const[n,o]=x.useState();return t=Lo(t,r=>a.jsx(tce.Provider,{value:o,children:r}),[]),t=$e({role:"group","aria-labelledby":n},t),ws(t)});Xt(function(t){const n=rce(t);return Zt(d9e,n)});var p9e="div",sce=en(function(t){var n=t,o=Jt(n,["store"]);return o=rce(o),o}),f9e=Xt(function(t){const n=sce(t);return Zt(p9e,n)}),ice=x.createContext(!1),b9e="span",h9e=a.jsx("svg",{display:"block",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,viewBox:"0 0 16 16",height:"1em",width:"1em",children:a.jsx("polyline",{points:"4,8 7,12 12,4"})});function m9e(e){return e.checked?e.children||h9e:typeof e.children=="function"?e.children:null}var hL=en(function(t){var n=t,{store:o,checked:r}=n,s=Jt(n,["store","checked"]);const i=x.useContext(ice);r=r??i;const c=m9e({checked:r,children:s.children});return s=zt($e({"aria-hidden":!0},s),{children:c,style:$e({width:"1em",height:"1em",pointerEvents:"none"},s.style)}),ws(s)});Xt(function(t){const n=hL(t);return Zt(b9e,n)});var g9e="div";function ace(e){const t=e.relatedTarget;return t?.nodeType===Node.ELEMENT_NODE?t:null}function M9e(e){const t=ace(e);return t?Yr(e.currentTarget,t):!1}var i8=Symbol("composite-hover");function z9e(e){let t=ace(e);if(!t)return!1;do{if(Nl(t,i8)&&t[i8])return!0;t=t.parentElement}while(t);return!1}var mL=en(function(t){var n=t,{store:o,focusOnHover:r=!0,blurOnHoverEnd:s=!!r}=n,i=Jt(n,["store","focusOnHover","blurOnHoverEnd"]);const c=x3();o=o||c,wo(o,!1);const l=iL(),u=i.onMouseMove,d=s0(r),p=un(z=>{if(u?.(z),!z.defaultPrevented&&l()&&d(z)){if(!cd(z.currentTarget)){const A=o?.getState().baseElement;A&&!sx(A)&&A.focus()}o?.setActiveId(z.currentTarget.id)}}),f=i.onMouseLeave,b=s0(s),h=un(z=>{var A;f?.(z),!z.defaultPrevented&&l()&&(M9e(z)||z9e(z)||d(z)&&b(z)&&(o?.setActiveId(null),(A=o?.getState().baseElement)==null||A.focus()))}),g=x.useCallback(z=>{z&&(z[i8]=!0)},[]);return i=zt($e({},i),{ref:ur(g,i.ref),onMouseMove:p,onMouseLeave:h}),ws(i)}),O9e=Tc(Xt(function(t){const n=mL(t);return Zt(g9e,n)})),y9e="div",gL=en(function(t){var n=t,{store:o,shouldRegisterItem:r=!0,getItem:s=gae,element:i}=n,c=Jt(n,["store","shouldRegisterItem","getItem","element"]);const l=K7e();o=o||l;const u=V1(c.id),d=x.useRef(i);return x.useEffect(()=>{const p=d.current;if(!u||!p||!r)return;const f=s({id:u,element:p});return o?.renderItem(f)},[u,r,s,o]),c=zt($e({},c),{ref:ur(d,c.ref)}),ws(c)});Xt(function(t){const n=gL(t);return Zt(y9e,n)});var A9e="button";function v9e(e){return o8(e)?!0:e.tagName==="INPUT"&&!xd(e)}function x9e(e,t=!1){const n=e.clientHeight,{top:o}=e.getBoundingClientRect(),r=Math.max(n*.875,n-40)*1.5,s=t?n-r+o:r+o;return e.tagName==="HTML"?s+e.scrollTop:s}function w9e(e,t=!1){const{top:n}=e.getBoundingClientRect();return t?n+e.clientHeight:n}function jX(e,t,n,o=!1){var r;if(!t||!n)return;const{renderedItems:s}=t.getState(),i=Oae(e);if(!i)return;const c=x9e(i,o);let l,u;for(let d=0;d<s.length;d+=1){const p=l;if(l=n(d),!l)break;if(l===p)continue;const f=(r=Uu(t,l))==null?void 0:r.element;if(!f)continue;const h=w9e(f,o)-c,g=Math.abs(h);if(o&&h<=0||!o&&h>=0){u!==void 0&&u<g&&(l=p);break}u=g}return l}function _9e(e,t){return cs(e)?!1:vM(t,e.target)}var Jh=en(function(t){var n=t,{store:o,rowId:r,preventScrollOnKeyDown:s=!1,moveOnKeyPress:i=!0,tabbable:c=!1,getItem:l,"aria-setsize":u,"aria-posinset":d}=n,p=Jt(n,["store","rowId","preventScrollOnKeyDown","moveOnKeyPress","tabbable","getItem","aria-setsize","aria-posinset"]);const f=x3();o=o||f;const b=V1(p.id),h=x.useRef(null),g=x.useContext(Sae),A=Zl(p)&&!p.accessibleWhenDisabled,{rowId:_,baseElement:v,isActiveItem:M,ariaSetSize:y,ariaPosInSet:k,isTabbable:S}=Rae(o,{rowId(X){if(r)return r;if(X&&g?.baseElement&&g.baseElement===X.baseElement)return g.id},baseElement(X){return X?.baseElement||void 0},isActiveItem(X){return!!X&&X.activeId===b},ariaSetSize(X){if(u!=null)return u;if(X&&g?.ariaSetSize&&g.baseElement===X.baseElement)return g.ariaSetSize},ariaPosInSet(X){if(d!=null)return d;if(!X||!g?.ariaPosInSet||g.baseElement!==X.baseElement)return;const Z=X.renderedItems.filter(V=>V.rowId===_);return g.ariaPosInSet+Z.findIndex(V=>V.id===b)},isTabbable(X){if(!X?.renderedItems.length)return!0;if(X.virtualFocus)return!1;if(c)return!0;if(X.activeId===null)return!1;const Z=o?.item(X.activeId);return Z?.disabled||!Z?.element?!0:X.activeId===b}}),C=x.useCallback(X=>{var Z;const V=zt($e({},X),{id:b||X.id,rowId:_,disabled:!!A,children:(Z=X.element)==null?void 0:Z.textContent});return l?l(V):V},[b,_,A,l]),R=p.onFocus,T=x.useRef(!1),E=un(X=>{if(R?.(X),X.defaultPrevented||Aae(X)||!b||!o||_9e(X,o))return;const{virtualFocus:Z,baseElement:V}=o.getState();if(o.setActiveId(b),o8(X.currentTarget)&&SIe(X.currentTarget),!Z||!cs(X)||v9e(X.currentTarget)||!V?.isConnected)return;tL()&&X.currentTarget.hasAttribute("data-autofocus")&&X.currentTarget.scrollIntoView({block:"nearest",inline:"nearest"}),T.current=!0,X.relatedTarget===V||vM(o,X.relatedTarget)?CIe(V):V.focus()}),B=p.onBlurCapture,N=un(X=>{if(B?.(X),X.defaultPrevented)return;const Z=o?.getState();Z?.virtualFocus&&T.current&&(T.current=!1,X.preventDefault(),X.stopPropagation())}),j=p.onKeyDown,I=s0(s),P=s0(i),$=un(X=>{if(j?.(X),X.defaultPrevented||!cs(X)||!o)return;const{currentTarget:Z}=X,V=o.getState(),ee=o.item(b),te=!!ee?.rowId,J=V.orientation!=="horizontal",ue=V.orientation!=="vertical",ce=()=>!!(te||ue||!V.baseElement||!Jl(V.baseElement)),de={ArrowUp:(te||J)&&o.up,ArrowRight:(te||ue)&&o.next,ArrowDown:(te||J)&&o.down,ArrowLeft:(te||ue)&&o.previous,Home:()=>{if(ce())return!te||X.ctrlKey?o?.first():o?.previous(-1)},End:()=>{if(ce())return!te||X.ctrlKey?o?.last():o?.next(-1)},PageUp:()=>jX(Z,o,o?.up,!0),PageDown:()=>jX(Z,o,o?.down)}[X.key];if(de){if(o8(Z)){const ye=j7e(Z),Ne=ue&&X.key==="ArrowLeft",je=ue&&X.key==="ArrowRight",ie=J&&X.key==="ArrowUp",we=J&&X.key==="ArrowDown";if(je||we){const{length:re}=P7e(Z);if(ye.end!==re)return}else if((Ne||ie)&&ye.start!==0)return}const Ae=de();if(I(X)||Ae!==void 0){if(!P(X))return;X.preventDefault(),o.move(Ae)}}}),F=x.useMemo(()=>({id:b,baseElement:v}),[b,v]);return p=Lo(p,X=>a.jsx(J7e.Provider,{value:F,children:X}),[F]),p=zt($e({id:b,"data-active-item":M||void 0},p),{ref:ur(h,p.ref),tabIndex:S?p.tabIndex:-1,onFocus:E,onBlurCapture:N,onKeyDown:$}),p=lw(p),p=gL(zt($e({store:o},p),{getItem:C,shouldRegisterItem:b?p.shouldRegisterItem:!1})),ws(zt($e({},p),{"aria-setsize":y,"aria-posinset":k}))}),a8=Tc(Xt(function(t){const n=Jh(t);return Zt(A9e,n)})),k9e="div";function IX(e,t){const n=setTimeout(t,e);return()=>clearTimeout(n)}function S9e(e){let t=requestAnimationFrame(()=>{t=requestAnimationFrame(e)});return()=>cancelAnimationFrame(t)}function DX(...e){return e.join(", ").split(", ").reduce((t,n)=>{const o=n.endsWith("ms")?1:1e3,r=Number.parseFloat(n||"0s")*o;return r>t?r:t},0)}function uw(e,t,n){return!n&&t!==!1&&(!e||!!t)}var dw=en(function(t){var n=t,{store:o,alwaysVisible:r}=n,s=Jt(n,["store","alwaysVisible"]);const i=uL();o=o||i,wo(o,!1);const c=x.useRef(null),l=V1(s.id),[u,d]=x.useState(null),p=o.useState("open"),f=o.useState("mounted"),b=o.useState("animated"),h=o.useState("contentElement"),g=Hn(o.disclosure,"contentElement");Uo(()=>{c.current&&o?.setContentElement(c.current)},[o]),Uo(()=>{let v;return o?.setState("animated",M=>(v=M,!0)),()=>{v!==void 0&&o?.setState("animated",v)}},[o]),Uo(()=>{if(b){if(!h?.isConnected){d(null);return}return S9e(()=>{d(p?"enter":f?"leave":null)})}},[b,h,p,f]),Uo(()=>{if(!o||!b||!u||!h)return;const v=()=>o?.setState("animating",!1),M=()=>hs.flushSync(v);if(u==="leave"&&p||u==="enter"&&!p)return;if(typeof b=="number")return IX(b,M);const{transitionDuration:y,animationDuration:k,transitionDelay:S,animationDelay:C}=getComputedStyle(h),{transitionDuration:R="0",animationDuration:T="0",transitionDelay:E="0",animationDelay:B="0"}=g?getComputedStyle(g):{},N=DX(S,C,E,B),j=DX(y,k,R,T),I=N+j;if(!I){u==="enter"&&o.setState("animated",!1),v();return}const P=1e3/60,$=Math.max(I-P,0);return IX($,M)},[o,b,h,g,p,u]),s=Lo(s,v=>a.jsx(dL,{value:o,children:v}),[o]);const z=uw(f,s.hidden,r),A=s.style,_=x.useMemo(()=>z?zt($e({},A),{display:"none"}):A,[z,A]);return s=zt($e({id:l,"data-open":p||void 0,"data-enter":u==="enter"||void 0,"data-leave":u==="leave"||void 0,hidden:z},s),{ref:ur(l?o.setContentElement:null,c,s.ref),style:_}),ws(s)}),C9e=Xt(function(t){const n=dw(t);return Zt(k9e,n)});Xt(function(t){var n=t,{unmountOnHide:o}=n,r=Jt(n,["unmountOnHide"]);const s=uL(),i=r.store||s;return Hn(i,l=>!o||l?.mounted)===!1?null:a.jsx(C9e,$e({},r))});function cce(e,...t){if(!e)return!1;const n=e.getAttribute("data-backdrop");return n==null?!1:n===""||n==="true"||!t.length?!0:t.some(o=>n===o)}var lC=new WeakMap;function R3(e,t,n){lC.has(e)||lC.set(e,new Map);const o=lC.get(e),r=o.get(t);if(!r)return o.set(t,n()),()=>{var c;(c=o.get(t))==null||c(),o.delete(t)};const s=n(),i=()=>{s(),r(),o.delete(t)};return o.set(t,i),()=>{o.get(t)===i&&(s(),o.set(t,r))}}function ML(e,t,n){return R3(e,t,()=>{const r=e.getAttribute(t);return e.setAttribute(t,n),()=>{r==null?e.removeAttribute(t):e.setAttribute(t,r)}})}function Of(e,t,n){return R3(e,t,()=>{const r=t in e,s=e[t];return e[t]=n,()=>{r?e[t]=s:delete e[t]}})}function c8(e,t){return e?R3(e,"style",()=>{const o=e.style.cssText;return Object.assign(e.style,t),()=>{e.style.cssText=o}}):()=>{}}function q9e(e,t,n){return e?R3(e,t,()=>{const r=e.style.getPropertyValue(t);return e.style.setProperty(t,n),()=>{r?e.style.setProperty(t,r):e.style.removeProperty(t)}}):()=>{}}var R9e=["SCRIPT","STYLE"];function l8(e){return`__ariakit-dialog-snapshot-${e}`}function T9e(e,t){const n=zr(t),o=l8(e);if(!n.body[o])return!0;do{if(t===n.body)return!1;if(t[o])return!0;if(!t.parentElement)return!1;t=t.parentElement}while(!0)}function E9e(e,t,n){return R9e.includes(t.tagName)||!T9e(e,t)?!1:!n.some(o=>o&&Yr(t,o))}function zL(e,t,n,o){for(let r of t){if(!r?.isConnected)continue;const s=t.some(l=>!l||l===r?!1:l.contains(r)),i=zr(r),c=r;for(;r.parentElement&&r!==i.body;){if(o?.(r.parentElement,c),!s)for(const l of r.parentElement.children)E9e(e,l,t)&&n(l,c);r=r.parentElement}}}function W9e(e,t){const{body:n}=zr(t[0]),o=[];return zL(e,t,s=>{o.push(Of(s,l8(e),!0))}),_1(Of(n,l8(e),!0),()=>{for(const s of o)s()})}function dh(e="",t=!1){return`__ariakit-dialog-${t?"ancestor":"outside"}${e?`-${e}`:""}`}function N9e(e,t=""){return _1(Of(e,dh(),!0),Of(e,dh(t),!0))}function lce(e,t=""){return _1(Of(e,dh("",!0),!0),Of(e,dh(t,!0),!0))}function OL(e,t){const n=dh(t,!0);if(e[n])return!0;const o=dh(t);do{if(e[o])return!0;if(!e.parentElement)return!1;e=e.parentElement}while(!0)}function FX(e,t){const n=[],o=t.map(s=>s?.id);return zL(e,t,s=>{cce(s,...o)||n.unshift(N9e(s,e))},(s,i)=>{i.hasAttribute("data-dialog")&&i.id!==e||n.unshift(lce(s,e))}),()=>{for(const s of n)s()}}var B9e="div",L9e=["a","button","details","dialog","div","form","h1","h2","h3","h4","h5","h6","header","img","input","label","li","nav","ol","p","section","select","span","summary","textarea","ul","svg"];en(function(t){return t});var iz=Xt(function(t){return Zt(B9e,t)});Object.assign(iz,L9e.reduce((e,t)=>(e[t]=Xt(function(o){return Zt(t,o)}),e),{}));function P9e({store:e,backdrop:t,alwaysVisible:n,hidden:o}){const r=x.useRef(null),s=Iae({disclosure:e}),i=Hn(e,"contentElement");x.useEffect(()=>{const u=r.current,d=i;u&&d&&(u.style.zIndex=getComputedStyle(d).zIndex)},[i]),Uo(()=>{const u=i?.id;if(!u)return;const d=r.current;if(d)return lce(d,u)},[i]);const c=dw({ref:r,store:s,role:"presentation","data-backdrop":i?.id||"",alwaysVisible:n,hidden:o??void 0,style:{position:"fixed",top:0,right:0,bottom:0,left:0}});if(!t)return null;if(x.isValidElement(t))return a.jsx(iz,zt($e({},c),{render:t}));const l=typeof t!="boolean"?t:"div";return a.jsx(iz,zt($e({},c),{render:a.jsx(l,{})}))}function j9e(e,...t){if(!e)return!1;const n=e.getAttribute("data-focus-trap");return n==null?!1:t.length?n===""?!1:t.some(o=>n===o):!0}function I9e(e){return ML(e,"aria-hidden","true")}function uce(){return"inert"in HTMLElement.prototype}function dce(e,t){if(!("style"in e))return $v;if(uce())return Of(e,"inert",!0);const o=q3(e,!0).map(r=>{if(t?.some(i=>i&&Yr(i,r)))return $v;const s=R3(r,"focus",()=>(r.focus=$v,()=>{delete r.focus}));return _1(ML(r,"tabindex","-1"),s)});return _1(...o,I9e(e),c8(e,{pointerEvents:"none",userSelect:"none",cursor:"default"}))}function D9e(e,t){const n=[],o=t.map(s=>s?.id);return zL(e,t,s=>{cce(s,...o)||j9e(s,...o)||n.unshift(dce(s,t))},s=>{s.hasAttribute("role")&&(t.some(i=>i&&Yr(i,s))||n.unshift(ML(s,"role","none")))}),()=>{for(const s of n)s()}}function F9e({attribute:e,contentId:t,contentElement:n,enabled:o}){const[r,s]=rL(),i=x.useCallback(()=>{if(!o||!n)return!1;const{body:c}=zr(n),l=c.getAttribute(e);return!l||l===t},[r,o,n,e,t]);return x.useEffect(()=>{if(!o||!t||!n)return;const{body:c}=zr(n);if(i())return c.setAttribute(e,t),()=>c.removeAttribute(e);const l=new MutationObserver(()=>hs.flushSync(s));return l.observe(c,{attributeFilter:[e]}),()=>l.disconnect()},[r,o,t,n,i,e]),i}function $9e(e){const t=e.getBoundingClientRect().left;return Math.round(t)+e.scrollLeft?"paddingLeft":"paddingRight"}function V9e(e,t,n){const o=F9e({attribute:"data-dialog-prevent-body-scroll",contentElement:e,contentId:t,enabled:n});x.useEffect(()=>{if(!o()||!e)return;const r=zr(e),s=Mae(e),{documentElement:i,body:c}=r,l=i.style.getPropertyValue("--scrollbar-width"),u=l?Number.parseInt(l):s.innerWidth-i.clientWidth,d=()=>q9e(i,"--scrollbar-width",`${u}px`),p=$9e(i),f=()=>c8(c,{overflow:"hidden",[p]:`${u}px`}),b=()=>{var g,z;const{scrollX:A,scrollY:_,visualViewport:v}=s,M=(g=v?.offsetLeft)!=null?g:0,y=(z=v?.offsetTop)!=null?z:0,k=c8(c,{position:"fixed",overflow:"hidden",top:`${-(_-Math.floor(y))}px`,left:`${-(A-Math.floor(M))}px`,right:"0",[p]:`${u}px`});return()=>{k(),s.scrollTo({left:A,top:_,behavior:"instant"})}},h=eL()&&!$7e();return _1(d(),h?b():f())},[o,e])}var $X=x.createContext({});function H9e(e){const t=x.useContext($X),[n,o]=x.useState([]),r=x.useCallback(c=>{var l;return o(u=>[...u,c]),_1((l=t.add)==null?void 0:l.call(t,c),()=>{o(u=>u.filter(d=>d!==c))})},[t]);Uo(()=>Ir(e,["open","contentElement"],c=>{var l;if(c.open&&c.contentElement)return(l=t.add)==null?void 0:l.call(t,e)}),[e,t]);const s=x.useMemo(()=>({store:e,add:r}),[e,r]);return{wrapElement:x.useCallback(c=>a.jsx($X.Provider,{value:s,children:c}),[s]),nestedDialogs:n}}function U9e(e){const t=x.useRef();return x.useEffect(()=>{if(!e){t.current=null;return}return X0("mousedown",o=>{t.current=o.target},!0)},[e]),t}function X9e(e){return e.tagName==="HTML"?!0:Yr(zr(e).body,e)}function G9e(e,t){if(!e)return!1;if(Yr(e,t))return!0;const n=t.getAttribute("aria-activedescendant");if(n){const o=zr(e).getElementById(n);if(o)return Yr(e,o)}return!1}function K9e(e,t){if(!("clientY"in e))return!1;const n=t.getBoundingClientRect();return n.width===0||n.height===0?!1:n.top<=e.clientY&&e.clientY<=n.top+n.height&&n.left<=e.clientX&&e.clientX<=n.left+n.width}function uC({store:e,type:t,listener:n,capture:o,domReady:r}){const s=un(n),i=Hn(e,"open"),c=x.useRef(!1);Uo(()=>{if(!i||!r)return;const{contentElement:l}=e.getState();if(!l)return;const u=()=>{c.current=!0};return l.addEventListener("focusin",u,!0),()=>l.removeEventListener("focusin",u,!0)},[e,i,r]),x.useEffect(()=>i?X0(t,u=>{const{contentElement:d,disclosureElement:p}=e.getState(),f=u.target;!d||!f||!X9e(f)||Yr(d,f)||G9e(p,f)||f.hasAttribute("data-focus-trap")||K9e(u,d)||c.current&&!OL(f,d.id)||FIe(f)||s(u)},o):void 0,[i,o])}function dC(e,t){return typeof e=="function"?e(t):!!e}function Y9e(e,t,n){const o=Hn(e,"open"),r=U9e(o),s={store:e,domReady:n,capture:!0};uC(zt($e({},s),{type:"click",listener:i=>{const{contentElement:c}=e.getState(),l=r.current;l&&zae(l)&&OL(l,c?.id)&&dC(t,i)&&e.hide()}})),uC(zt($e({},s),{type:"focusin",listener:i=>{const{contentElement:c}=e.getState();c&&i.target!==zr(c)&&dC(t,i)&&e.hide()}})),uC(zt($e({},s),{type:"contextmenu",listener:i=>{dC(t,i)&&e.hide()}}))}function Z9e(e,t){const o=zr(e).createElement("button");return o.type="button",o.tabIndex=-1,o.textContent="Dismiss popup",Object.assign(o.style,{border:"0px",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0px",position:"absolute",whiteSpace:"nowrap",width:"1px"}),o.addEventListener("click",t),e.prepend(o),()=>{o.removeEventListener("click",t),o.remove()}}var Q9e="div",pce=en(function(t){var n=t,{autoFocusOnShow:o=!0}=n,r=Jt(n,["autoFocusOnShow"]);return r=Lo(r,s=>a.jsx(Gae.Provider,{value:o,children:s}),[o]),r});Xt(function(t){const n=pce(t);return Zt(Q9e,n)});var VX=x.createContext(0);function J9e({level:e,children:t}){const n=x.useContext(VX),o=Math.max(Math.min(e||n+1,6),1);return a.jsx(VX.Provider,{value:o,children:t})}var eDe="span",fce=en(function(t){return t=zt($e({},t),{style:$e({border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",whiteSpace:"nowrap",width:"1px"},t.style)}),t});Xt(function(t){const n=fce(t);return Zt(eDe,n)});var tDe="span",nDe=en(function(t){return t=zt($e({"data-focus-trap":"",tabIndex:0,"aria-hidden":!0},t),{style:$e({position:"fixed",top:0,left:0},t.style)}),t=fce(t),t}),yA=Xt(function(t){const n=nDe(t);return Zt(tDe,n)}),HX=x.createContext(null),oDe="div";function rDe(e){return zr(e).body}function sDe(e,t){return t?typeof t=="function"?t(e):t:zr(e).createElement("div")}function iDe(e="id"){return`${e?`${e}-`:""}${Math.random().toString(36).slice(2,8)}`}function Ru(e){queueMicrotask(()=>{e?.focus()})}var bce=en(function(t){var n=t,{preserveTabOrder:o,preserveTabOrderAnchor:r,portalElement:s,portalRef:i,portal:c=!0}=n,l=Jt(n,["preserveTabOrder","preserveTabOrderAnchor","portalElement","portalRef","portal"]);const u=x.useRef(null),d=ur(u,l.ref),p=x.useContext(HX),[f,b]=x.useState(null),[h,g]=x.useState(null),z=x.useRef(null),A=x.useRef(null),_=x.useRef(null),v=x.useRef(null);return Uo(()=>{const M=u.current;if(!M||!c){b(null);return}const y=sDe(M,s);if(!y){b(null);return}const k=y.isConnected;if(k||(p||rDe(M)).appendChild(y),y.id||(y.id=M.id?`portal/${M.id}`:iDe()),b(y),n8(i,y),!k)return()=>{y.remove(),n8(i,null)}},[c,s,p,i]),Uo(()=>{if(!c||!o||!r)return;const y=zr(r).createElement("span");return y.style.position="fixed",r.insertAdjacentElement("afterend",y),g(y),()=>{y.remove(),g(null)}},[c,o,r]),x.useEffect(()=>{if(!f||!o)return;let M=0;const y=k=>{if(!r2(k))return;const S=k.type==="focusin";if(cancelAnimationFrame(M),S)return PIe(f);M=requestAnimationFrame(()=>{LIe(f,!0)})};return f.addEventListener("focusin",y,!0),f.addEventListener("focusout",y,!0),()=>{cancelAnimationFrame(M),f.removeEventListener("focusin",y,!0),f.removeEventListener("focusout",y,!0)}},[f,o]),l=Lo(l,M=>{if(M=a.jsx(HX.Provider,{value:f||p,children:M}),!c)return M;if(!f)return a.jsx("span",{ref:d,id:l.id,style:{position:"fixed"},hidden:!0});M=a.jsxs(a.Fragment,{children:[o&&f&&a.jsx(yA,{ref:A,"data-focus-trap":l.id,className:"__focus-trap-inner-before",onFocus:k=>{r2(k,f)?Ru(aC()):Ru(z.current)}}),M,o&&f&&a.jsx(yA,{ref:_,"data-focus-trap":l.id,className:"__focus-trap-inner-after",onFocus:k=>{r2(k,f)?Ru(EX()):Ru(v.current)}})]}),f&&(M=hs.createPortal(M,f));let y=a.jsxs(a.Fragment,{children:[o&&f&&a.jsx(yA,{ref:z,"data-focus-trap":l.id,className:"__focus-trap-outer-before",onFocus:k=>{!(k.relatedTarget===v.current)&&r2(k,f)?Ru(A.current):Ru(EX())}}),o&&a.jsx("span",{"aria-owns":f?.id,style:{position:"fixed"}}),o&&f&&a.jsx(yA,{ref:v,"data-focus-trap":l.id,className:"__focus-trap-outer-after",onFocus:k=>{if(r2(k,f))Ru(_.current);else{const S=aC();if(S===A.current){requestAnimationFrame(()=>{var C;return(C=aC())==null?void 0:C.focus()});return}Ru(S)}}})]});return h&&o&&(y=hs.createPortal(y,h)),a.jsxs(a.Fragment,{children:[y,M]})},[f,p,c,l.id,o,h]),l=zt($e({},l),{ref:d}),l});Xt(function(t){const n=bce(t);return Zt(oDe,n)});var aDe="div",UX=tL();function cDe(e){const t=Ql();return!t||e&&Yr(e,t)?!1:!!ca(t)}function XX(e,t=!1){if(!e)return null;const n="current"in e?e.current:e;return n?t?ca(n)?n:null:n:null}var hce=en(function(t){var n=t,{store:o,open:r,onClose:s,focusable:i=!0,modal:c=!0,portal:l=!!c,backdrop:u=!!c,hideOnEscape:d=!0,hideOnInteractOutside:p=!0,getPersistentElements:f,preventBodyScroll:b=!!c,autoFocusOnShow:h=!0,autoFocusOnHide:g=!0,initialFocus:z,finalFocus:A,unmountOnHide:_,unstable_treeSnapshotKey:v}=n,M=Jt(n,["store","open","onClose","focusable","modal","portal","backdrop","hideOnEscape","hideOnInteractOutside","getPersistentElements","preventBodyScroll","autoFocusOnShow","autoFocusOnHide","initialFocus","finalFocus","unmountOnHide","unstable_treeSnapshotKey"]);const y=iw(),k=x.useRef(null),S=hIe({store:o||y,open:r,setOpen(Se){if(Se)return;const se=k.current;if(!se)return;const L=new Event("close",{bubbles:!1,cancelable:!0});s&&se.addEventListener("close",s,{once:!0}),se.dispatchEvent(L),L.defaultPrevented&&S.setOpen(!0)}}),{portalRef:C,domReady:R}=sL(l,M.portalRef),T=M.preserveTabOrder,E=Hn(S,Se=>T&&!c&&Se.mounted),B=V1(M.id),N=Hn(S,"open"),j=Hn(S,"mounted"),I=Hn(S,"contentElement"),P=uw(j,M.hidden,M.alwaysVisible);V9e(I,B,b&&!P),Y9e(S,p,R);const{wrapElement:$,nestedDialogs:F}=H9e(S);M=Lo(M,$,[$]),Uo(()=>{if(!N)return;const Se=k.current,se=Ql(Se,!0);se&&se.tagName!=="BODY"&&(Se&&Yr(Se,se)||S.setDisclosureElement(se))},[S,N]),UX&&x.useEffect(()=>{if(!j)return;const{disclosureElement:Se}=S.getState();if(!Se||!xd(Se))return;const se=()=>{let L=!1;const U=()=>{L=!0},ne={capture:!0,once:!0};Se.addEventListener("focusin",U,ne),N2(Se,"mouseup",()=>{Se.removeEventListener("focusin",U,!0),!L&&Kae(Se)})};return Se.addEventListener("mousedown",se),()=>{Se.removeEventListener("mousedown",se)}},[S,j]),x.useEffect(()=>{if(!j||!R)return;const Se=k.current;if(!Se)return;const se=Mae(Se),L=se.visualViewport||se,U=()=>{var ne,ve;const qe=(ve=(ne=se.visualViewport)==null?void 0:ne.height)!=null?ve:se.innerHeight;Se.style.setProperty("--dialog-viewport-height",`${qe}px`)};return U(),L.addEventListener("resize",U),()=>{L.removeEventListener("resize",U)}},[j,R]),x.useEffect(()=>{if(!c||!j||!R)return;const Se=k.current;if(!(!Se||Se.querySelector("[data-dialog-dismiss]")))return Z9e(Se,S.hide)},[S,c,j,R]),Uo(()=>{if(!uce()||N||!j||!R)return;const Se=k.current;if(Se)return dce(Se)},[N,j,R]);const X=N&&R;Uo(()=>{if(!B||!X)return;const Se=k.current;return W9e(B,[Se])},[B,X,v]);const Z=un(f);Uo(()=>{if(!B||!X)return;const{disclosureElement:Se}=S.getState(),se=k.current,L=Z()||[],U=[se,...L,...F.map(ne=>ne.getState().contentElement)];return c?_1(FX(B,U),D9e(B,U)):FX(B,[Se,...U])},[B,S,X,Z,F,c,v]);const V=!!h,ee=s0(h),[te,J]=x.useState(!1);x.useEffect(()=>{if(!N||!V||!R||!I?.isConnected)return;const Se=XX(z,!0)||I.querySelector("[data-autofocus=true],[autofocus]")||TIe(I,!0,l&&E)||I,se=ca(Se);ee(se?Se:null)&&(J(!0),queueMicrotask(()=>{Se.focus(),UX&&Se.scrollIntoView({block:"nearest",inline:"nearest"})}))},[N,V,R,I,z,l,E,ee]);const ue=!!g,ce=s0(g),[me,de]=x.useState(!1);x.useEffect(()=>{if(N)return de(!0),()=>de(!1)},[N]);const Ae=x.useCallback((Se,se=!0)=>{const{disclosureElement:L}=S.getState();if(cDe(Se))return;let U=XX(A)||L;if(U?.id){const ve=zr(U),qe=`[aria-activedescendant="${U.id}"]`,Pe=ve.querySelector(qe);Pe&&(U=Pe)}if(U&&!ca(U)){const ve=U.closest("[data-dialog]");if(ve?.id){const qe=zr(ve),Pe=`[aria-controls~="${ve.id}"]`,rt=qe.querySelector(Pe);rt&&(U=rt)}}const ne=U&&ca(U);if(!ne&&se){requestAnimationFrame(()=>Ae(Se,!1));return}ce(ne?U:null)&&ne&&U?.focus()},[S,A,ce]),ye=x.useRef(!1);Uo(()=>{if(N||!me||!ue)return;const Se=k.current;ye.current=!0,Ae(Se)},[N,me,R,ue,Ae]),x.useEffect(()=>{if(!me||!ue)return;const Se=k.current;return()=>{if(ye.current){ye.current=!1;return}Ae(Se)}},[me,ue,Ae]);const Ne=s0(d);x.useEffect(()=>!R||!j?void 0:X0("keydown",se=>{if(se.key!=="Escape"||se.defaultPrevented)return;const L=k.current;if(!L||OL(L))return;const U=se.target;if(!U)return;const{disclosureElement:ne}=S.getState();!!(U.tagName==="BODY"||Yr(L,U)||!ne||Yr(ne,U))&&Ne(se)&&S.hide()},!0),[S,R,j,Ne]),M=Lo(M,Se=>a.jsx(J9e,{level:c?1:void 0,children:Se}),[c]);const je=M.hidden,ie=M.alwaysVisible;M=Lo(M,Se=>u?a.jsxs(a.Fragment,{children:[a.jsx(P9e,{store:S,backdrop:u,hidden:je,alwaysVisible:ie}),Se]}):Se,[S,u,je,ie]);const[we,re]=x.useState(),[pe,ke]=x.useState();return M=Lo(M,Se=>a.jsx(dL,{value:S,children:a.jsx(zIe.Provider,{value:re,children:a.jsx(OIe.Provider,{value:ke,children:Se})})}),[S]),M=zt($e({id:B,"data-dialog":"",role:"dialog",tabIndex:i?-1:void 0,"aria-labelledby":we,"aria-describedby":pe},M),{ref:ur(k,M.ref)}),M=pce(zt($e({},M),{autoFocusOnShow:te})),M=dw($e({store:S},M)),M=Zh(zt($e({},M),{focusable:i})),M=bce(zt($e({portal:l},M),{portalRef:C,preserveTabOrder:E})),M});function em(e,t=iw){return Xt(function(o){const r=t(),s=o.store||r;return Hn(s,c=>!o.unmountOnHide||c?.mounted||!!o.open)?a.jsx(e,$e({},o)):null})}em(Xt(function(t){const n=hce(t);return Zt(aDe,n)}),iw);const _d=Math.min,Es=Math.max,ix=Math.round,AA=Math.floor,kd=e=>({x:e,y:e}),lDe={left:"right",right:"left",bottom:"top",top:"bottom"},uDe={start:"end",end:"start"};function u8(e,t,n){return Es(e,_d(t,n))}function Sd(e,t){return typeof e=="function"?e(t):e}function Bl(e){return e.split("-")[0]}function tm(e){return e.split("-")[1]}function yL(e){return e==="x"?"y":"x"}function AL(e){return e==="y"?"height":"width"}function Cd(e){return["top","bottom"].includes(Bl(e))?"y":"x"}function vL(e){return yL(Cd(e))}function dDe(e,t,n){n===void 0&&(n=!1);const o=tm(e),r=vL(e),s=AL(r);let i=r==="x"?o===(n?"end":"start")?"right":"left":o==="start"?"bottom":"top";return t.reference[s]>t.floating[s]&&(i=ax(i)),[i,ax(i)]}function pDe(e){const t=ax(e);return[d8(e),t,d8(t)]}function d8(e){return e.replace(/start|end/g,t=>uDe[t])}function fDe(e,t,n){const o=["left","right"],r=["right","left"],s=["top","bottom"],i=["bottom","top"];switch(e){case"top":case"bottom":return n?t?r:o:t?o:r;case"left":case"right":return t?s:i;default:return[]}}function bDe(e,t,n,o){const r=tm(e);let s=fDe(Bl(e),n==="start",o);return r&&(s=s.map(i=>i+"-"+r),t&&(s=s.concat(s.map(d8)))),s}function ax(e){return e.replace(/left|right|bottom|top/g,t=>lDe[t])}function hDe(e){return{top:0,right:0,bottom:0,left:0,...e}}function mce(e){return typeof e!="number"?hDe(e):{top:e,right:e,bottom:e,left:e}}function cx(e){const{x:t,y:n,width:o,height:r}=e;return{width:o,height:r,top:n,left:t,right:t+o,bottom:n+r,x:t,y:n}}function GX(e,t,n){let{reference:o,floating:r}=e;const s=Cd(t),i=vL(t),c=AL(i),l=Bl(t),u=s==="y",d=o.x+o.width/2-r.width/2,p=o.y+o.height/2-r.height/2,f=o[c]/2-r[c]/2;let b;switch(l){case"top":b={x:d,y:o.y-r.height};break;case"bottom":b={x:d,y:o.y+o.height};break;case"right":b={x:o.x+o.width,y:p};break;case"left":b={x:o.x-r.width,y:p};break;default:b={x:o.x,y:o.y}}switch(tm(t)){case"start":b[i]-=f*(n&&u?-1:1);break;case"end":b[i]+=f*(n&&u?-1:1);break}return b}const mDe=async(e,t,n)=>{const{placement:o="bottom",strategy:r="absolute",middleware:s=[],platform:i}=n,c=s.filter(Boolean),l=await(i.isRTL==null?void 0:i.isRTL(t));let u=await i.getElementRects({reference:e,floating:t,strategy:r}),{x:d,y:p}=GX(u,o,l),f=o,b={},h=0;for(let g=0;g<c.length;g++){const{name:z,fn:A}=c[g],{x:_,y:v,data:M,reset:y}=await A({x:d,y:p,initialPlacement:o,placement:f,strategy:r,middlewareData:b,rects:u,platform:i,elements:{reference:e,floating:t}});d=_??d,p=v??p,b={...b,[z]:{...b[z],...M}},y&&h<=50&&(h++,typeof y=="object"&&(y.placement&&(f=y.placement),y.rects&&(u=y.rects===!0?await i.getElementRects({reference:e,floating:t,strategy:r}):y.rects),{x:d,y:p}=GX(u,f,l)),g=-1)}return{x:d,y:p,placement:f,strategy:r,middlewareData:b}};async function xL(e,t){var n;t===void 0&&(t={});const{x:o,y:r,platform:s,rects:i,elements:c,strategy:l}=e,{boundary:u="clippingAncestors",rootBoundary:d="viewport",elementContext:p="floating",altBoundary:f=!1,padding:b=0}=Sd(t,e),h=mce(b),z=c[f?p==="floating"?"reference":"floating":p],A=cx(await s.getClippingRect({element:(n=await(s.isElement==null?void 0:s.isElement(z)))==null||n?z:z.contextElement||await(s.getDocumentElement==null?void 0:s.getDocumentElement(c.floating)),boundary:u,rootBoundary:d,strategy:l})),_=p==="floating"?{x:o,y:r,width:i.floating.width,height:i.floating.height}:i.reference,v=await(s.getOffsetParent==null?void 0:s.getOffsetParent(c.floating)),M=await(s.isElement==null?void 0:s.isElement(v))?await(s.getScale==null?void 0:s.getScale(v))||{x:1,y:1}:{x:1,y:1},y=cx(s.convertOffsetParentRelativeRectToViewportRelativeRect?await s.convertOffsetParentRelativeRectToViewportRelativeRect({elements:c,rect:_,offsetParent:v,strategy:l}):_);return{top:(A.top-y.top+h.top)/M.y,bottom:(y.bottom-A.bottom+h.bottom)/M.y,left:(A.left-y.left+h.left)/M.x,right:(y.right-A.right+h.right)/M.x}}const gDe=e=>({name:"arrow",options:e,async fn(t){const{x:n,y:o,placement:r,rects:s,platform:i,elements:c,middlewareData:l}=t,{element:u,padding:d=0}=Sd(e,t)||{};if(u==null)return{};const p=mce(d),f={x:n,y:o},b=vL(r),h=AL(b),g=await i.getDimensions(u),z=b==="y",A=z?"top":"left",_=z?"bottom":"right",v=z?"clientHeight":"clientWidth",M=s.reference[h]+s.reference[b]-f[b]-s.floating[h],y=f[b]-s.reference[b],k=await(i.getOffsetParent==null?void 0:i.getOffsetParent(u));let S=k?k[v]:0;(!S||!await(i.isElement==null?void 0:i.isElement(k)))&&(S=c.floating[v]||s.floating[h]);const C=M/2-y/2,R=S/2-g[h]/2-1,T=_d(p[A],R),E=_d(p[_],R),B=T,N=S-g[h]-E,j=S/2-g[h]/2+C,I=u8(B,j,N),P=!l.arrow&&tm(r)!=null&&j!==I&&s.reference[h]/2-(j<B?T:E)-g[h]/2<0,$=P?j<B?j-B:j-N:0;return{[b]:f[b]+$,data:{[b]:I,centerOffset:j-I-$,...P&&{alignmentOffset:$}},reset:P}}}),MDe=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n,o;const{placement:r,middlewareData:s,rects:i,initialPlacement:c,platform:l,elements:u}=t,{mainAxis:d=!0,crossAxis:p=!0,fallbackPlacements:f,fallbackStrategy:b="bestFit",fallbackAxisSideDirection:h="none",flipAlignment:g=!0,...z}=Sd(e,t);if((n=s.arrow)!=null&&n.alignmentOffset)return{};const A=Bl(r),_=Cd(c),v=Bl(c)===c,M=await(l.isRTL==null?void 0:l.isRTL(u.floating)),y=f||(v||!g?[ax(c)]:pDe(c)),k=h!=="none";!f&&k&&y.push(...bDe(c,g,h,M));const S=[c,...y],C=await xL(t,z),R=[];let T=((o=s.flip)==null?void 0:o.overflows)||[];if(d&&R.push(C[A]),p){const j=dDe(r,i,M);R.push(C[j[0]],C[j[1]])}if(T=[...T,{placement:r,overflows:R}],!R.every(j=>j<=0)){var E,B;const j=(((E=s.flip)==null?void 0:E.index)||0)+1,I=S[j];if(I)return{data:{index:j,overflows:T},reset:{placement:I}};let P=(B=T.filter($=>$.overflows[0]<=0).sort(($,F)=>$.overflows[1]-F.overflows[1])[0])==null?void 0:B.placement;if(!P)switch(b){case"bestFit":{var N;const $=(N=T.filter(F=>{if(k){const X=Cd(F.placement);return X===_||X==="y"}return!0}).map(F=>[F.placement,F.overflows.filter(X=>X>0).reduce((X,Z)=>X+Z,0)]).sort((F,X)=>F[1]-X[1])[0])==null?void 0:N[0];$&&(P=$);break}case"initialPlacement":P=c;break}if(r!==P)return{reset:{placement:P}}}return{}}}};async function zDe(e,t){const{placement:n,platform:o,elements:r}=e,s=await(o.isRTL==null?void 0:o.isRTL(r.floating)),i=Bl(n),c=tm(n),l=Cd(n)==="y",u=["left","top"].includes(i)?-1:1,d=s&&l?-1:1,p=Sd(t,e);let{mainAxis:f,crossAxis:b,alignmentAxis:h}=typeof p=="number"?{mainAxis:p,crossAxis:0,alignmentAxis:null}:{mainAxis:p.mainAxis||0,crossAxis:p.crossAxis||0,alignmentAxis:p.alignmentAxis};return c&&typeof h=="number"&&(b=c==="end"?h*-1:h),l?{x:b*d,y:f*u}:{x:f*u,y:b*d}}const ODe=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var n,o;const{x:r,y:s,placement:i,middlewareData:c}=t,l=await zDe(t,e);return i===((n=c.offset)==null?void 0:n.placement)&&(o=c.arrow)!=null&&o.alignmentOffset?{}:{x:r+l.x,y:s+l.y,data:{...l,placement:i}}}}},yDe=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:o,placement:r}=t,{mainAxis:s=!0,crossAxis:i=!1,limiter:c={fn:z=>{let{x:A,y:_}=z;return{x:A,y:_}}},...l}=Sd(e,t),u={x:n,y:o},d=await xL(t,l),p=Cd(Bl(r)),f=yL(p);let b=u[f],h=u[p];if(s){const z=f==="y"?"top":"left",A=f==="y"?"bottom":"right",_=b+d[z],v=b-d[A];b=u8(_,b,v)}if(i){const z=p==="y"?"top":"left",A=p==="y"?"bottom":"right",_=h+d[z],v=h-d[A];h=u8(_,h,v)}const g=c.fn({...t,[f]:b,[p]:h});return{...g,data:{x:g.x-n,y:g.y-o,enabled:{[f]:s,[p]:i}}}}}},ADe=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:n,y:o,placement:r,rects:s,middlewareData:i}=t,{offset:c=0,mainAxis:l=!0,crossAxis:u=!0}=Sd(e,t),d={x:n,y:o},p=Cd(r),f=yL(p);let b=d[f],h=d[p];const g=Sd(c,t),z=typeof g=="number"?{mainAxis:g,crossAxis:0}:{mainAxis:0,crossAxis:0,...g};if(l){const v=f==="y"?"height":"width",M=s.reference[f]-s.floating[v]+z.mainAxis,y=s.reference[f]+s.reference[v]-z.mainAxis;b<M?b=M:b>y&&(b=y)}if(u){var A,_;const v=f==="y"?"width":"height",M=["top","left"].includes(Bl(r)),y=s.reference[p]-s.floating[v]+(M&&((A=i.offset)==null?void 0:A[p])||0)+(M?0:z.crossAxis),k=s.reference[p]+s.reference[v]+(M?0:((_=i.offset)==null?void 0:_[p])||0)-(M?z.crossAxis:0);h<y?h=y:h>k&&(h=k)}return{[f]:b,[p]:h}}}},vDe=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var n,o;const{placement:r,rects:s,platform:i,elements:c}=t,{apply:l=()=>{},...u}=Sd(e,t),d=await xL(t,u),p=Bl(r),f=tm(r),b=Cd(r)==="y",{width:h,height:g}=s.floating;let z,A;p==="top"||p==="bottom"?(z=p,A=f===(await(i.isRTL==null?void 0:i.isRTL(c.floating))?"start":"end")?"left":"right"):(A=p,z=f==="end"?"top":"bottom");const _=g-d.top-d.bottom,v=h-d.left-d.right,M=_d(g-d[z],_),y=_d(h-d[A],v),k=!t.middlewareData.shift;let S=M,C=y;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(C=v),(o=t.middlewareData.shift)!=null&&o.enabled.y&&(S=_),k&&!f){const T=Es(d.left,0),E=Es(d.right,0),B=Es(d.top,0),N=Es(d.bottom,0);b?C=h-2*(T!==0||E!==0?T+E:Es(d.left,d.right)):S=g-2*(B!==0||N!==0?B+N:Es(d.top,d.bottom))}await l({...t,availableWidth:C,availableHeight:S});const R=await i.getDimensions(c.floating);return h!==R.width||g!==R.height?{reset:{rects:!0}}:{}}}};function pw(){return typeof window<"u"}function nm(e){return gce(e)?(e.nodeName||"").toLowerCase():"#document"}function Bs(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function Ec(e){var t;return(t=(gce(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function gce(e){return pw()?e instanceof Node||e instanceof Bs(e).Node:!1}function ba(e){return pw()?e instanceof Element||e instanceof Bs(e).Element:!1}function wc(e){return pw()?e instanceof HTMLElement||e instanceof Bs(e).HTMLElement:!1}function KX(e){return!pw()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof Bs(e).ShadowRoot}function T3(e){const{overflow:t,overflowX:n,overflowY:o,display:r}=ha(e);return/auto|scroll|overlay|hidden|clip/.test(t+o+n)&&!["inline","contents"].includes(r)}function xDe(e){return["table","td","th"].includes(nm(e))}function fw(e){return[":popover-open",":modal"].some(t=>{try{return e.matches(t)}catch{return!1}})}function wL(e){const t=_L(),n=ba(e)?ha(e):e;return n.transform!=="none"||n.perspective!=="none"||(n.containerType?n.containerType!=="normal":!1)||!t&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!t&&(n.filter?n.filter!=="none":!1)||["transform","perspective","filter"].some(o=>(n.willChange||"").includes(o))||["paint","layout","strict","content"].some(o=>(n.contain||"").includes(o))}function wDe(e){let t=qd(e);for(;wc(t)&&!ph(t);){if(wL(t))return t;if(fw(t))return null;t=qd(t)}return null}function _L(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function ph(e){return["html","body","#document"].includes(nm(e))}function ha(e){return Bs(e).getComputedStyle(e)}function bw(e){return ba(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function qd(e){if(nm(e)==="html")return e;const t=e.assignedSlot||e.parentNode||KX(e)&&e.host||Ec(e);return KX(t)?t.host:t}function Mce(e){const t=qd(e);return ph(t)?e.ownerDocument?e.ownerDocument.body:e.body:wc(t)&&T3(t)?t:Mce(t)}function az(e,t,n){var o;t===void 0&&(t=[]),n===void 0&&(n=!0);const r=Mce(e),s=r===((o=e.ownerDocument)==null?void 0:o.body),i=Bs(r);if(s){const c=p8(i);return t.concat(i,i.visualViewport||[],T3(r)?r:[],c&&n?az(c):[])}return t.concat(r,az(r,[],n))}function p8(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function zce(e){const t=ha(e);let n=parseFloat(t.width)||0,o=parseFloat(t.height)||0;const r=wc(e),s=r?e.offsetWidth:n,i=r?e.offsetHeight:o,c=ix(n)!==s||ix(o)!==i;return c&&(n=s,o=i),{width:n,height:o,$:c}}function kL(e){return ba(e)?e:e.contextElement}function B2(e){const t=kL(e);if(!wc(t))return kd(1);const n=t.getBoundingClientRect(),{width:o,height:r,$:s}=zce(t);let i=(s?ix(n.width):n.width)/o,c=(s?ix(n.height):n.height)/r;return(!i||!Number.isFinite(i))&&(i=1),(!c||!Number.isFinite(c))&&(c=1),{x:i,y:c}}const _De=kd(0);function Oce(e){const t=Bs(e);return!_L()||!t.visualViewport?_De:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function kDe(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==Bs(e)?!1:t}function yf(e,t,n,o){t===void 0&&(t=!1),n===void 0&&(n=!1);const r=e.getBoundingClientRect(),s=kL(e);let i=kd(1);t&&(o?ba(o)&&(i=B2(o)):i=B2(e));const c=kDe(s,n,o)?Oce(s):kd(0);let l=(r.left+c.x)/i.x,u=(r.top+c.y)/i.y,d=r.width/i.x,p=r.height/i.y;if(s){const f=Bs(s),b=o&&ba(o)?Bs(o):o;let h=f,g=p8(h);for(;g&&o&&b!==h;){const z=B2(g),A=g.getBoundingClientRect(),_=ha(g),v=A.left+(g.clientLeft+parseFloat(_.paddingLeft))*z.x,M=A.top+(g.clientTop+parseFloat(_.paddingTop))*z.y;l*=z.x,u*=z.y,d*=z.x,p*=z.y,l+=v,u+=M,h=Bs(g),g=p8(h)}}return cx({width:d,height:p,x:l,y:u})}function SDe(e){let{elements:t,rect:n,offsetParent:o,strategy:r}=e;const s=r==="fixed",i=Ec(o),c=t?fw(t.floating):!1;if(o===i||c&&s)return n;let l={scrollLeft:0,scrollTop:0},u=kd(1);const d=kd(0),p=wc(o);if((p||!p&&!s)&&((nm(o)!=="body"||T3(i))&&(l=bw(o)),wc(o))){const f=yf(o);u=B2(o),d.x=f.x+o.clientLeft,d.y=f.y+o.clientTop}return{width:n.width*u.x,height:n.height*u.y,x:n.x*u.x-l.scrollLeft*u.x+d.x,y:n.y*u.y-l.scrollTop*u.y+d.y}}function CDe(e){return Array.from(e.getClientRects())}function f8(e,t){const n=bw(e).scrollLeft;return t?t.left+n:yf(Ec(e)).left+n}function qDe(e){const t=Ec(e),n=bw(e),o=e.ownerDocument.body,r=Es(t.scrollWidth,t.clientWidth,o.scrollWidth,o.clientWidth),s=Es(t.scrollHeight,t.clientHeight,o.scrollHeight,o.clientHeight);let i=-n.scrollLeft+f8(e);const c=-n.scrollTop;return ha(o).direction==="rtl"&&(i+=Es(t.clientWidth,o.clientWidth)-r),{width:r,height:s,x:i,y:c}}function RDe(e,t){const n=Bs(e),o=Ec(e),r=n.visualViewport;let s=o.clientWidth,i=o.clientHeight,c=0,l=0;if(r){s=r.width,i=r.height;const u=_L();(!u||u&&t==="fixed")&&(c=r.offsetLeft,l=r.offsetTop)}return{width:s,height:i,x:c,y:l}}function TDe(e,t){const n=yf(e,!0,t==="fixed"),o=n.top+e.clientTop,r=n.left+e.clientLeft,s=wc(e)?B2(e):kd(1),i=e.clientWidth*s.x,c=e.clientHeight*s.y,l=r*s.x,u=o*s.y;return{width:i,height:c,x:l,y:u}}function YX(e,t,n){let o;if(t==="viewport")o=RDe(e,n);else if(t==="document")o=qDe(Ec(e));else if(ba(t))o=TDe(t,n);else{const r=Oce(e);o={...t,x:t.x-r.x,y:t.y-r.y}}return cx(o)}function yce(e,t){const n=qd(e);return n===t||!ba(n)||ph(n)?!1:ha(n).position==="fixed"||yce(n,t)}function EDe(e,t){const n=t.get(e);if(n)return n;let o=az(e,[],!1).filter(c=>ba(c)&&nm(c)!=="body"),r=null;const s=ha(e).position==="fixed";let i=s?qd(e):e;for(;ba(i)&&!ph(i);){const c=ha(i),l=wL(i);!l&&c.position==="fixed"&&(r=null),(s?!l&&!r:!l&&c.position==="static"&&!!r&&["absolute","fixed"].includes(r.position)||T3(i)&&!l&&yce(e,i))?o=o.filter(d=>d!==i):r=c,i=qd(i)}return t.set(e,o),o}function WDe(e){let{element:t,boundary:n,rootBoundary:o,strategy:r}=e;const i=[...n==="clippingAncestors"?fw(t)?[]:EDe(t,this._c):[].concat(n),o],c=i[0],l=i.reduce((u,d)=>{const p=YX(t,d,r);return u.top=Es(p.top,u.top),u.right=_d(p.right,u.right),u.bottom=_d(p.bottom,u.bottom),u.left=Es(p.left,u.left),u},YX(t,c,r));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function NDe(e){const{width:t,height:n}=zce(e);return{width:t,height:n}}function BDe(e,t,n){const o=wc(t),r=Ec(t),s=n==="fixed",i=yf(e,!0,s,t);let c={scrollLeft:0,scrollTop:0};const l=kd(0);if(o||!o&&!s)if((nm(t)!=="body"||T3(r))&&(c=bw(t)),o){const b=yf(t,!0,s,t);l.x=b.x+t.clientLeft,l.y=b.y+t.clientTop}else r&&(l.x=f8(r));let u=0,d=0;if(r&&!o&&!s){const b=r.getBoundingClientRect();d=b.top+c.scrollTop,u=b.left+c.scrollLeft-f8(r,b)}const p=i.left+c.scrollLeft-l.x-u,f=i.top+c.scrollTop-l.y-d;return{x:p,y:f,width:i.width,height:i.height}}function pC(e){return ha(e).position==="static"}function ZX(e,t){if(!wc(e)||ha(e).position==="fixed")return null;if(t)return t(e);let n=e.offsetParent;return Ec(e)===n&&(n=n.ownerDocument.body),n}function Ace(e,t){const n=Bs(e);if(fw(e))return n;if(!wc(e)){let r=qd(e);for(;r&&!ph(r);){if(ba(r)&&!pC(r))return r;r=qd(r)}return n}let o=ZX(e,t);for(;o&&xDe(o)&&pC(o);)o=ZX(o,t);return o&&ph(o)&&pC(o)&&!wL(o)?n:o||wDe(e)||n}const LDe=async function(e){const t=this.getOffsetParent||Ace,n=this.getDimensions,o=await n(e.floating);return{reference:BDe(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:o.width,height:o.height}}};function PDe(e){return ha(e).direction==="rtl"}const jDe={convertOffsetParentRelativeRectToViewportRelativeRect:SDe,getDocumentElement:Ec,getClippingRect:WDe,getOffsetParent:Ace,getElementRects:LDe,getClientRects:CDe,getDimensions:NDe,getScale:B2,isElement:ba,isRTL:PDe};function IDe(e,t){let n=null,o;const r=Ec(e);function s(){var c;clearTimeout(o),(c=n)==null||c.disconnect(),n=null}function i(c,l){c===void 0&&(c=!1),l===void 0&&(l=1),s();const{left:u,top:d,width:p,height:f}=e.getBoundingClientRect();if(c||t(),!p||!f)return;const b=AA(d),h=AA(r.clientWidth-(u+p)),g=AA(r.clientHeight-(d+f)),z=AA(u),_={rootMargin:-b+"px "+-h+"px "+-g+"px "+-z+"px",threshold:Es(0,_d(1,l))||1};let v=!0;function M(y){const k=y[0].intersectionRatio;if(k!==l){if(!v)return i();k?i(!1,k):o=setTimeout(()=>{i(!1,1e-7)},1e3)}v=!1}try{n=new IntersectionObserver(M,{..._,root:r.ownerDocument})}catch{n=new IntersectionObserver(M,_)}n.observe(e)}return i(!0),s}function vce(e,t,n,o){o===void 0&&(o={});const{ancestorScroll:r=!0,ancestorResize:s=!0,elementResize:i=typeof ResizeObserver=="function",layoutShift:c=typeof IntersectionObserver=="function",animationFrame:l=!1}=o,u=kL(e),d=r||s?[...u?az(u):[],...az(t)]:[];d.forEach(A=>{r&&A.addEventListener("scroll",n,{passive:!0}),s&&A.addEventListener("resize",n)});const p=u&&c?IDe(u,n):null;let f=-1,b=null;i&&(b=new ResizeObserver(A=>{let[_]=A;_&&_.target===u&&b&&(b.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var v;(v=b)==null||v.observe(t)})),n()}),u&&!l&&b.observe(u),b.observe(t));let h,g=l?yf(e):null;l&&z();function z(){const A=yf(e);g&&(A.x!==g.x||A.y!==g.y||A.width!==g.width||A.height!==g.height)&&n(),g=A,h=requestAnimationFrame(z)}return n(),()=>{var A;d.forEach(_=>{r&&_.removeEventListener("scroll",n),s&&_.removeEventListener("resize",n)}),p?.(),(A=b)==null||A.disconnect(),b=null,l&&cancelAnimationFrame(h)}}const xce=ODe,wce=yDe,_ce=MDe,kce=vDe,b8=gDe,Sce=ADe,Cce=(e,t,n)=>{const o=new Map,r={platform:jDe,...n},s={...r.platform,_c:o};return mDe(e,t,{...r,platform:s})};var DDe="div";function QX(e=0,t=0,n=0,o=0){if(typeof DOMRect=="function")return new DOMRect(e,t,n,o);const r={x:e,y:t,width:n,height:o,top:t,right:e+n,bottom:t+o,left:e};return zt($e({},r),{toJSON:()=>r})}function FDe(e){if(!e)return QX();const{x:t,y:n,width:o,height:r}=e;return QX(t,n,o,r)}function $De(e,t){return{contextElement:e||void 0,getBoundingClientRect:()=>{const o=e,r=t?.(o);return r||!o?FDe(r):o.getBoundingClientRect()}}}function VDe(e){return/^(?:top|bottom|left|right)(?:-(?:start|end))?$/.test(e)}function JX(e){const t=window.devicePixelRatio||1;return Math.round(e*t)/t}function HDe(e,t){return xce(({placement:n})=>{var o;const r=(e?.clientHeight||0)/2,s=typeof t.gutter=="number"?t.gutter+r:(o=t.gutter)!=null?o:r;return{crossAxis:!!n.split("-")[1]?void 0:t.shift,mainAxis:s,alignmentAxis:t.shift}})}function UDe(e){if(e.flip===!1)return;const t=typeof e.flip=="string"?e.flip.split(" "):void 0;return wo(!t||t.every(VDe),!1),_ce({padding:e.overflowPadding,fallbackPlacements:t})}function XDe(e){if(!(!e.slide&&!e.overlap))return wce({mainAxis:e.slide,crossAxis:e.overlap,padding:e.overflowPadding,limiter:Sce()})}function GDe(e){return kce({padding:e.overflowPadding,apply({elements:t,availableWidth:n,availableHeight:o,rects:r}){const s=t.floating,i=Math.round(r.reference.width);n=Math.floor(n),o=Math.floor(o),s.style.setProperty("--popover-anchor-width",`${i}px`),s.style.setProperty("--popover-available-width",`${n}px`),s.style.setProperty("--popover-available-height",`${o}px`),e.sameWidth&&(s.style.width=`${i}px`),e.fitViewport&&(s.style.maxWidth=`${n}px`,s.style.maxHeight=`${o}px`)}})}function KDe(e,t){if(e)return b8({element:e,padding:t.arrowPadding})}var SL=en(function(t){var n=t,{store:o,modal:r=!1,portal:s=!!r,preserveTabOrder:i=!0,autoFocusOnShow:c=!0,wrapperProps:l,fixed:u=!1,flip:d=!0,shift:p=0,slide:f=!0,overlap:b=!1,sameWidth:h=!1,fitViewport:g=!1,gutter:z,arrowPadding:A=4,overflowPadding:_=8,getAnchorRect:v,updatePosition:M}=n,y=Jt(n,["store","modal","portal","preserveTabOrder","autoFocusOnShow","wrapperProps","fixed","flip","shift","slide","overlap","sameWidth","fitViewport","gutter","arrowPadding","overflowPadding","getAnchorRect","updatePosition"]);const k=aw();o=o||k,wo(o,!1);const S=o.useState("arrowElement"),C=o.useState("anchorElement"),R=o.useState("disclosureElement"),T=o.useState("popoverElement"),E=o.useState("contentElement"),B=o.useState("placement"),N=o.useState("mounted"),j=o.useState("rendered"),I=x.useRef(null),[P,$]=x.useState(!1),{portalRef:F,domReady:X}=sL(s,y.portalRef),Z=un(v),V=un(M),ee=!!M;Uo(()=>{if(!T?.isConnected)return;T.style.setProperty("--popover-overflow-padding",`${_}px`);const J=$De(C,Z),ue=async()=>{if(!N)return;S||(I.current=I.current||document.createElement("div"));const de=S||I.current,Ae=[HDe(de,{gutter:z,shift:p}),UDe({flip:d,overflowPadding:_}),XDe({slide:f,shift:p,overlap:b,overflowPadding:_}),KDe(de,{arrowPadding:A}),GDe({sameWidth:h,fitViewport:g,overflowPadding:_})],ye=await Cce(J,T,{placement:B,strategy:u?"fixed":"absolute",middleware:Ae});o?.setState("currentPlacement",ye.placement),$(!0);const Ne=JX(ye.x),je=JX(ye.y);if(Object.assign(T.style,{top:"0",left:"0",transform:`translate3d(${Ne}px,${je}px,0)`}),de&&ye.middlewareData.arrow){const{x:ie,y:we}=ye.middlewareData.arrow,re=ye.placement.split("-")[0],pe=de.clientWidth/2,ke=de.clientHeight/2,Se=ie!=null?ie+pe:-pe,se=we!=null?we+ke:-ke;T.style.setProperty("--popover-transform-origin",{top:`${Se}px calc(100% + ${ke}px)`,bottom:`${Se}px ${-ke}px`,left:`calc(100% + ${pe}px) ${se}px`,right:`${-pe}px ${se}px`}[re]),Object.assign(de.style,{left:ie!=null?`${ie}px`:"",top:we!=null?`${we}px`:"",[re]:"100%"})}},me=vce(J,T,async()=>{ee?(await V({updatePosition:ue}),$(!0)):await ue()},{elementResize:typeof ResizeObserver=="function"});return()=>{$(!1),me()}},[o,j,T,S,C,T,B,N,X,u,d,p,f,b,h,g,z,A,_,Z,ee,V]),Uo(()=>{if(!N||!X||!T?.isConnected||!E?.isConnected)return;const J=()=>{T.style.zIndex=getComputedStyle(E).zIndex};J();let ue=requestAnimationFrame(()=>{ue=requestAnimationFrame(J)});return()=>cancelAnimationFrame(ue)},[N,X,T,E]);const te=u?"fixed":"absolute";return y=Lo(y,J=>a.jsx("div",zt($e({},l),{style:$e({position:te,top:0,left:0,width:"max-content"},l?.style),ref:o?.setPopoverElement,children:J})),[o,te,l]),y=Lo(y,J=>a.jsx(C3,{value:o,children:J}),[o]),y=zt($e({"data-placing":!P||void 0},y),{style:$e({position:"relative"},y.style)}),y=hce(zt($e({store:o,modal:r,portal:s,preserveTabOrder:i,preserveTabOrderAnchor:R||C,autoFocusOnShow:P&&c},y),{portalRef:F})),y});em(Xt(function(t){const n=SL(t);return Zt(DDe,n)}),aw);var YDe="div",ZDe=en(function(t){var n=t,{store:o,"aria-setsize":r,"aria-posinset":s}=n,i=Jt(n,["store","aria-setsize","aria-posinset"]);const c=x3();o=o||c,wo(o,!1);const l=V1(i.id),u=o.useState(p=>p.baseElement||void 0),d=x.useMemo(()=>({id:l,baseElement:u,ariaSetSize:r,ariaPosInSet:s}),[l,u,r,s]);return i=Lo(i,p=>a.jsx(Sae.Provider,{value:d,children:p}),[d]),i=$e({id:l},i),ws(i)}),QDe=Xt(function(t){const n=ZDe(t);return Zt(YDe,n)}),JDe="hr",qce=en(function(t){var n=t,{orientation:o="horizontal"}=n,r=Jt(n,["orientation"]);return r=$e({role:"separator","aria-orientation":o},r),r});Xt(function(t){const n=qce(t);return Zt(JDe,n)});var eFe="hr",Rce=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=x3();o=o||s,wo(o,!1);const i=o.useState(c=>c.orientation==="horizontal"?"vertical":"horizontal");return r=qce(zt($e({},r),{orientation:i})),r});Xt(function(t){const n=Rce(t);return Zt(eFe,n)});function tFe(e={}){var t;e.store;const n=(t=e.store)==null?void 0:t.getState(),o={value:nn(e.value,n?.value,e.defaultValue,!1)},r=k1(o,e.store);return lo(mn({},r),{setValue:s=>r.setState("value",s)})}function nFe(e,t,n){return wd(t,[n.store]),ar(e,n,"value","setValue"),e}function oFe(e={}){const[t,n]=va(tFe,e);return nFe(t,n,e)}var rFe=H1(),sFe=rFe.useContext,Tce="input";function eG(e,t){t?e.indeterminate=!0:e.indeterminate&&(e.indeterminate=!1)}function iFe(e,t){return e==="input"&&(!t||t==="checkbox")}function tG(e){return Array.isArray(e)?e.toString():e}var Ece=en(function(t){var n=t,{store:o,name:r,value:s,checked:i,defaultChecked:c}=n,l=Jt(n,["store","name","value","checked","defaultChecked"]);const u=sFe();o=o||u;const[d,p]=x.useState(c??!1),f=Hn(o,R=>{if(i!==void 0)return i;if(R?.value===void 0)return d;if(s!=null){if(Array.isArray(R.value)){const T=tG(s);return R.value.includes(T)}return R.value===s}return Array.isArray(R.value)?!1:typeof R.value=="boolean"?R.value:!1}),b=x.useRef(null),h=sw(b,Tce),g=iFe(h,l.type),z=f?f==="mixed":void 0,A=f==="mixed"?!1:f,_=Zl(l),[v,M]=rL();x.useEffect(()=>{const R=b.current;R&&(eG(R,z),!g&&(R.checked=A,r!==void 0&&(R.name=r),s!==void 0&&(R.value=`${s}`)))},[v,z,g,A,r,s]);const y=l.onChange,k=un(R=>{if(_){R.stopPropagation(),R.preventDefault();return}if(eG(R.currentTarget,z),g||(R.currentTarget.checked=!R.currentTarget.checked,M()),y?.(R),R.defaultPrevented)return;const T=R.currentTarget.checked;p(T),o?.setValue(E=>{if(s==null)return T;const B=tG(s);return Array.isArray(E)?T?E.includes(B)?E:[...E,B]:E.filter(N=>N!==B):E===B?!1:B})}),S=l.onClick,C=un(R=>{S?.(R),!R.defaultPrevented&&(g||k(R))});return l=Lo(l,R=>a.jsx(ice.Provider,{value:A,children:R}),[A]),l=zt($e({role:g?void 0:"checkbox",type:g?"checkbox":void 0,"aria-checked":f},l),{ref:ur(b,l.ref),onChange:k,onClick:C}),l=lw($e({clickOnEnter:!g},l)),ws($e({name:g?r:void 0,value:g?s:void 0,checked:A},l))});Xt(function(t){const n=Ece(t);return Zt(Tce,n)});var CL=H1([ep],[Kf]),aFe=CL.useContext,cFe=CL.useProviderContext,lFe=CL.ScopedContextProvider,Wce="input";function uFe(e,t){if(t!==void 0)return e!=null&&t!=null?t===e:!!t}function dFe(e,t){return e==="input"&&(!t||t==="radio")}var Nce=en(function(t){var n=t,{store:o,name:r,value:s,checked:i}=n,c=Jt(n,["store","name","value","checked"]);const l=aFe();o=o||l;const u=V1(c.id),d=x.useRef(null),p=Hn(o,S=>i??uFe(s,S?.value));x.useEffect(()=>{!u||!p||o?.getState().activeId===u||o?.setActiveId(u)},[o,p,u]);const f=c.onChange,b=sw(d,Wce),h=dFe(b,c.type),g=Zl(c),[z,A]=rL();x.useEffect(()=>{const S=d.current;S&&(h||(p!==void 0&&(S.checked=p),r!==void 0&&(S.name=r),s!==void 0&&(S.value=`${s}`)))},[z,h,p,r,s]);const _=un(S=>{if(g){S.preventDefault(),S.stopPropagation();return}o?.getState().value!==s&&(h||(S.currentTarget.checked=!0,A()),f?.(S),!S.defaultPrevented&&o?.setValue(s))}),v=c.onClick,M=un(S=>{v?.(S),!S.defaultPrevented&&(h||_(S))}),y=c.onFocus,k=un(S=>{if(y?.(S),S.defaultPrevented||!h||!o)return;const{moves:C,activeId:R}=o.getState();C&&(u&&R!==u||_(S))});return c=zt($e({id:u,role:h?void 0:"radio",type:h?"radio":void 0,"aria-checked":p},c),{ref:ur(d,c.ref),onChange:_,onClick:M,onFocus:k}),c=Jh($e({store:o,clickOnEnter:!h},c)),ws($e({name:h?r:void 0,value:h?s:void 0,checked:p},c))}),pFe=Tc(Xt(function(t){const n=Nce(t);return Zt(Wce,n)})),fFe="div",bl="";function fC(){bl=""}function bFe(e){const t=e.target;return t&&Jl(t)?!1:e.key===" "&&bl.length?!0:e.key.length===1&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&/^[\p{Letter}\p{Number}]$/u.test(e.key)}function hFe(e,t){if(cs(e))return!0;const n=e.target;return n?t.some(r=>r.element===n):!1}function mFe(e){return e.filter(t=>!t.disabled)}function Vv(e,t){var n;const o=((n=e.element)==null?void 0:n.textContent)||e.children||"value"in e&&e.value;return o?C7e(o).trim().toLowerCase().startsWith(t.toLowerCase()):!1}function gFe(e,t,n){if(!n)return e;const o=e.find(r=>r.id===n);return!o||!Vv(o,t)||bl!==t&&Vv(o,bl)?e:(bl=t,wIe(e.filter(r=>Vv(r,bl)),n).filter(r=>r.id!==n))}var E3=en(function(t){var n=t,{store:o,typeahead:r=!0}=n,s=Jt(n,["store","typeahead"]);const i=x3();o=o||i,wo(o,!1);const c=s.onKeyDownCapture,l=x.useRef(0),u=un(d=>{if(c?.(d),d.defaultPrevented||!r||!o)return;if(!bFe(d))return fC();const{renderedItems:p,items:f,activeId:b,id:h}=o.getState();let g=mFe(f.length>p.length?f:p);const z=zr(d.currentTarget),A=`[data-offscreen-id="${h}"]`,_=z.querySelectorAll(A);for(const y of _){const k=y.ariaDisabled==="true"||"disabled"in y&&!!y.disabled;g.push({id:y.id,element:y,disabled:k})}if(_.length&&(g=yae(g,y=>y.element)),!hFe(d,g))return fC();d.preventDefault(),window.clearTimeout(l.current),l.current=window.setTimeout(()=>{bl=""},500);const v=d.key.toLowerCase();bl+=v,g=gFe(g,v,b);const M=g.find(y=>Vv(y,bl));M?o.move(M.id):fC()});return s=zt($e({},s),{onKeyDownCapture:u}),ws(s)}),MFe=Xt(function(t){const n=E3(t);return Zt(fFe,n)});function zFe(e={}){var t=y3(e,[]),n;const o=(n=t.store)==null?void 0:n.getState(),r=Kh(lo(mn({},t),{focusLoop:nn(t.focusLoop,o?.focusLoop,!0)})),s=lo(mn({},r.getState()),{value:nn(t.value,o?.value,t.defaultValue,null)}),i=k1(s,r,t.store);return lo(mn(mn({},r),i),{setValue:c=>i.setState("value",c)})}function OFe(e,t,n){return e=Yh(e,t,n),ar(e,n,"value","setValue"),e}function yFe(e={}){const[t,n]=va(zFe,e);return OFe(t,n,e)}var AFe="div",vFe=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=cFe();return o=o||s,wo(o,!1),r=Lo(r,i=>a.jsx(lFe,{value:o,children:i}),[o]),r=$e({role:"radiogroup"},r),r=Qh($e({store:o},r)),r}),xFe=Xt(function(t){const n=vFe(t);return Zt(AFe,n)}),wFe="span",_Fe={top:"4,10 8,6 12,10",right:"6,4 10,8 6,12",bottom:"4,6 8,10 12,6",left:"10,4 6,8 10,12"},Bce=en(function(t){var n=t,{store:o,placement:r}=n,s=Jt(n,["store","placement"]);const i=yIe();o=o||i,wo(o,!1);const l=o.useState(p=>r||p.placement).split("-")[0],u=_Fe[l],d=x.useMemo(()=>a.jsx("svg",{display:"block",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,viewBox:"0 0 16 16",height:"1em",width:"1em",children:a.jsx("polyline",{points:u})}),[u]);return s=zt($e({children:d,"aria-hidden":!0},s),{style:$e({width:"1em",height:"1em",pointerEvents:"none"},s.style)}),ws(s)});Xt(function(t){const n=Bce(t);return Zt(wFe,n)});var kFe="button",qL=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=aw();o=o||s,wo(o,!1);const i=r.onClick,c=un(l=>{o?.setAnchorElement(l.currentTarget),i?.(l)});return r=Lo(r,l=>a.jsx(C3,{value:o,children:l}),[o]),r=zt($e({},r),{onClick:c}),r=Xae($e({store:o},r)),r=ece($e({store:o},r)),r});Xt(function(t){const n=qL(t);return Zt(kFe,n)});var Lce=H1([ep],[Kf]),SFe=Lce.useContext,CFe=Lce.useScopedContext;x.createContext(void 0);var W3=H1([pL],[C3]);W3.useContext;W3.useScopedContext;var RL=W3.useProviderContext,Pce=W3.ContextProvider,TL=W3.ScopedContextProvider,N3=H1([ep,Pce],[Kf,TL]),jce=N3.useContext,EL=N3.useScopedContext,hw=N3.useProviderContext,qFe=N3.ContextProvider,RFe=N3.ScopedContextProvider,Ice=x.createContext(void 0);function Dce(e={}){var t;const n=(t=e.store)==null?void 0:t.getState(),o=$ae(lo(mn({},e),{placement:nn(e.placement,n?.placement,"bottom")})),r=nn(e.timeout,n?.timeout,500),s=lo(mn({},o.getState()),{timeout:r,showTimeout:nn(e.showTimeout,n?.showTimeout),hideTimeout:nn(e.hideTimeout,n?.hideTimeout),autoFocusOnShow:nn(n?.autoFocusOnShow,!1)}),i=k1(s,o,e.store);return lo(mn(mn({},o),i),{setAutoFocusOnShow:c=>i.setState("autoFocusOnShow",c)})}function Fce(e,t,n){return ar(e,n,"timeout"),ar(e,n,"showTimeout"),ar(e,n,"hideTimeout"),Vae(e,t,n)}function TFe(e={}){var t=e,{combobox:n,parent:o,menubar:r}=t,s=y3(t,["combobox","parent","menubar"]);const i=!!r&&!o,c=w3(s.store,eIe(o,["values"]),uh(n,["arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),l=c.getState(),u=Kh(lo(mn({},s),{store:c,orientation:nn(s.orientation,l.orientation,"vertical")})),d=Dce(lo(mn({},s),{store:c,placement:nn(s.placement,l.placement,"bottom-start"),timeout:nn(s.timeout,l.timeout,i?0:150),hideTimeout:nn(s.hideTimeout,l.hideTimeout,0)})),p=lo(mn(mn({},u.getState()),d.getState()),{initialFocus:nn(l.initialFocus,"container"),values:nn(s.values,l.values,s.defaultValues,{})}),f=k1(p,u,d,c);return C0(f,()=>Ir(f,["mounted"],b=>{b.mounted||f.setState("activeId",null)})),C0(f,()=>Ir(o,["orientation"],b=>{f.setState("placement",b.orientation==="vertical"?"right-start":"bottom-start")})),lo(mn(mn(mn({},u),d),f),{combobox:n,parent:o,menubar:r,hideAll:()=>{d.hide(),o?.hideAll()},setInitialFocus:b=>f.setState("initialFocus",b),setValues:b=>f.setState("values",b),setValue:(b,h)=>{b!=="__proto__"&&b!=="constructor"&&(Array.isArray(b)||f.setState("values",g=>{const z=g[b],A=mae(h,z);return A===z?g:lo(mn({},g),{[b]:A!==void 0&&A})}))}})}function EFe(e,t,n){return wd(t,[n.combobox,n.parent,n.menubar]),ar(e,n,"values","setValues"),Object.assign(Fce(Yh(e,t,n),t,n),{combobox:n.combobox,parent:n.parent,menubar:n.menubar})}function WFe(e={}){const t=jce(),n=SFe(),o=Uae();e=zt($e({},e),{parent:e.parent!==void 0?e.parent:t,menubar:e.menubar!==void 0?e.menubar:n,combobox:e.combobox!==void 0?e.combobox:o});const[r,s]=va(TFe,e);return EFe(r,s,e)}var NFe="div";function BFe(e){var t=e,{store:n}=t,o=Jt(t,["store"]);const[r,s]=x.useState(void 0),i=o["aria-label"],c=Hn(n,"disclosureElement"),l=Hn(n,"contentElement");return x.useEffect(()=>{const u=c;if(!u)return;const d=l;if(!d)return;i||d.hasAttribute("aria-label")?s(void 0):u.id&&s(u.id)},[i,c,l]),r}var $ce=en(function(t){var n=t,{store:o,alwaysVisible:r,composite:s}=n,i=Jt(n,["store","alwaysVisible","composite"]);const c=hw();o=o||c,wo(o,!1);const l=o.parent,u=o.menubar,d=!!l,p=V1(i.id),f=i.onKeyDown,b=o.useState(S=>S.placement.split("-")[0]),h=o.useState(S=>S.orientation==="both"?void 0:S.orientation),g=h!=="vertical",z=Hn(u,S=>!!S&&S.orientation!=="vertical"),A=un(S=>{if(f?.(S),!S.defaultPrevented){if(d||u&&!g){const R={ArrowRight:()=>b==="left"&&!g,ArrowLeft:()=>b==="right"&&!g,ArrowUp:()=>b==="bottom"&&g,ArrowDown:()=>b==="top"&&g}[S.key];if(R?.())return S.stopPropagation(),S.preventDefault(),o?.hide()}if(u){const R={ArrowRight:()=>{if(z)return u.next()},ArrowLeft:()=>{if(z)return u.previous()},ArrowDown:()=>{if(!z)return u.next()},ArrowUp:()=>{if(!z)return u.previous()}}[S.key],T=R?.();T!==void 0&&(S.stopPropagation(),S.preventDefault(),u.move(T))}}});i=Lo(i,S=>a.jsx(RFe,{value:o,children:S}),[o]);const _=BFe($e({store:o},i)),v=o.useState("mounted"),M=uw(v,i.hidden,r),y=M?zt($e({},i.style),{display:"none"}):i.style;i=zt($e({id:p,"aria-labelledby":_,hidden:M},i),{ref:ur(p?o.setContentElement:null,i.ref),style:y,onKeyDown:A});const k=!!o.combobox;return s=s??!k,s&&(i=$e({role:"menu","aria-orientation":h},i)),i=Qh($e({store:o,composite:s},i)),i=E3($e({store:o,typeahead:!k},i)),i});Xt(function(t){const n=$ce(t);return Zt(NFe,n)});function bC(e){return[e.clientX,e.clientY]}function nG(e,t){const[n,o]=e;let r=!1;const s=t.length;for(let i=s,c=0,l=i-1;c<i;l=c++){const[u,d]=t[c],[p,f]=t[l],[,b]=t[l===0?i-1:l-1]||[0,0],h=(d-f)*(n-u)-(u-p)*(o-d);if(f<d){if(o>=f&&o<d){if(h===0)return!0;h>0&&(o===f?o>b&&(r=!r):r=!r)}}else if(d<f){if(o>d&&o<=f){if(h===0)return!0;h<0&&(o===f?o<b&&(r=!r):r=!r)}}else if(o===d&&(n>=p&&n<=u||n>=u&&n<=p))return!0}return r}function LFe(e,t){const{top:n,right:o,bottom:r,left:s}=t,[i,c]=e,l=i<s?"left":i>o?"right":null,u=c<n?"top":c>r?"bottom":null;return[l,u]}function oG(e,t){const n=e.getBoundingClientRect(),{top:o,right:r,bottom:s,left:i}=n,[c,l]=LFe(t,n),u=[t];return c?(l!=="top"&&u.push([c==="left"?i:r,o]),u.push([c==="left"?r:i,o]),u.push([c==="left"?r:i,s]),l!=="bottom"&&u.push([c==="left"?i:r,s])):l==="top"?(u.push([i,o]),u.push([i,s]),u.push([r,s]),u.push([r,o])):(u.push([i,s]),u.push([i,o]),u.push([r,o]),u.push([r,s])),u}var PFe="div";function Vce(e,t,n,o){return cd(t)?!0:e?!!(Yr(t,e)||n&&Yr(n,e)||o?.some(r=>Vce(e,r,n))):!1}function jFe(e){var t=e,{store:n}=t,o=Jt(t,["store"]);const[r,s]=x.useState(!1),i=n.useState("mounted");x.useEffect(()=>{i||s(!1)},[i]);const c=o.onFocus,l=un(d=>{c?.(d),!d.defaultPrevented&&s(!0)}),u=x.useRef(null);return x.useEffect(()=>Ir(n,["anchorElement"],d=>{u.current=d.anchorElement}),[]),o=zt($e({autoFocusOnHide:r,finalFocus:u},o),{onFocus:l}),o}var rG=x.createContext(null),WL=en(function(t){var n=t,{store:o,modal:r=!1,portal:s=!!r,hideOnEscape:i=!0,hideOnHoverOutside:c=!0,disablePointerEventsOnApproach:l=!!c}=n,u=Jt(n,["store","modal","portal","hideOnEscape","hideOnHoverOutside","disablePointerEventsOnApproach"]);const d=RL();o=o||d,wo(o,!1);const p=x.useRef(null),[f,b]=x.useState([]),h=x.useRef(0),g=x.useRef(null),{portalRef:z,domReady:A}=sL(s,u.portalRef),_=iL(),v=!!c,M=s0(c),y=!!l,k=s0(l),S=o.useState("open"),C=o.useState("mounted");x.useEffect(()=>{if(!A||!C||!v&&!y)return;const N=p.current;return N?_1(X0("mousemove",I=>{if(!o||!_())return;const{anchorElement:P,hideTimeout:$,timeout:F}=o.getState(),X=g.current,[Z]=I.composedPath(),V=P;if(Vce(Z,N,V,f)){g.current=Z&&V&&Yr(V,Z)?bC(I):null,window.clearTimeout(h.current),h.current=0;return}if(!h.current){if(X){const ee=bC(I),te=oG(N,X);if(nG(ee,te)){if(g.current=ee,!k(I))return;I.preventDefault(),I.stopPropagation();return}}M(I)&&(h.current=window.setTimeout(()=>{h.current=0,o?.hide()},$??F))}},!0),()=>clearTimeout(h.current)):void 0},[o,_,A,C,v,y,f,k,M]),x.useEffect(()=>{if(!A||!C||!y)return;const N=j=>{const I=p.current;if(!I)return;const P=g.current;if(!P)return;const $=oG(I,P);if(nG(bC(j),$)){if(!k(j))return;j.preventDefault(),j.stopPropagation()}};return _1(X0("mouseenter",N,!0),X0("mouseover",N,!0),X0("mouseout",N,!0),X0("mouseleave",N,!0))},[A,C,y,k]),x.useEffect(()=>{A&&(S||o?.setAutoFocusOnShow(!1))},[o,A,S]);const R=wae(S);x.useEffect(()=>{if(A)return()=>{R.current||o?.setAutoFocusOnShow(!1)}},[o,A]);const T=x.useContext(rG);Uo(()=>{if(r||!s||!C||!A)return;const N=p.current;if(N)return T?.(N)},[r,s,C,A]);const E=x.useCallback(N=>{b(I=>[...I,N]);const j=T?.(N);return()=>{b(I=>I.filter(P=>P!==N)),j?.()}},[T]);u=Lo(u,N=>a.jsx(TL,{value:o,children:a.jsx(rG.Provider,{value:E,children:N})}),[o,E]),u=zt($e({},u),{ref:ur(p,u.ref)}),u=jFe($e({store:o},u));const B=o.useState(N=>r||N.autoFocusOnShow);return u=SL(zt($e({store:o,modal:r,portal:s,autoFocusOnShow:B},u),{portalRef:z,hideOnEscape(N){return rz(i,N)?!1:(requestAnimationFrame(()=>{requestAnimationFrame(()=>{o?.hide()})}),!0)}})),u});em(Xt(function(t){const n=WL(t);return Zt(PFe,n)}),RL);var IFe="div",DFe=en(function(t){var n=t,{store:o,modal:r=!1,portal:s=!!r,hideOnEscape:i=!0,autoFocusOnShow:c=!0,hideOnHoverOutside:l,alwaysVisible:u}=n,d=Jt(n,["store","modal","portal","hideOnEscape","autoFocusOnShow","hideOnHoverOutside","alwaysVisible"]);const p=hw();o=o||p,wo(o,!1);const f=x.useRef(null),b=o.parent,h=o.menubar,g=!!b,z=!!h&&!g;d=zt($e({},d),{ref:ur(f,d.ref)});const A=$ce($e({store:o,alwaysVisible:u},d)),{"aria-labelledby":_}=A;d=Jt(A,["aria-labelledby"]);const[M,y]=x.useState(),k=o.useState("autoFocusOnShow"),S=o.useState("initialFocus"),C=o.useState("baseElement"),R=o.useState("renderedItems");x.useEffect(()=>{let P=!1;return y($=>{var F,X,Z;if(P||!k)return;if((F=$?.current)!=null&&F.isConnected)return $;const V=x.createRef();switch(S){case"first":V.current=((X=R.find(ee=>!ee.disabled&&ee.element))==null?void 0:X.element)||null;break;case"last":V.current=((Z=[...R].reverse().find(ee=>!ee.disabled&&ee.element))==null?void 0:Z.element)||null;break;default:V.current=C}return V}),()=>{P=!0}},[o,k,S,R,C]);const T=g?!1:r,E=!!c,B=!!M||!!d.initialFocus||!!T,N=Hn(o.combobox||o,"contentElement"),j=Hn(b?.combobox||b,"contentElement"),I=x.useMemo(()=>{if(!j||!N)return;const P=N.getAttribute("role"),$=j.getAttribute("role");if(!(($==="menu"||$==="menubar")&&P==="menu"))return j},[N,j]);return I!==void 0&&(d=$e({preserveTabOrderAnchor:I},d)),d=WL(zt($e({store:o,alwaysVisible:u,initialFocus:M,autoFocusOnShow:E?B&&c:k||!!T},d),{hideOnEscape(P){return rz(i,P)?!1:(o?.hideAll(),!0)},hideOnHoverOutside(P){const $=o?.getState().disclosureElement;return(typeof l=="function"?l(P):l??(g?!0:z?$?!cd($):!0:!1))?P.defaultPrevented||!g||!$||(V7e($,"mouseout",P),!cd($))?!0:(requestAnimationFrame(()=>{cd($)||o?.hide()}),!1):!1},modal:T,portal:s,backdrop:g?!1:d.backdrop})),d=$e({"aria-labelledby":_},d),d}),FFe=em(Xt(function(t){const n=DFe(t);return Zt(IFe,n)}),hw),$Fe="a",NL=en(function(t){var n=t,{store:o,showOnHover:r=!0}=n,s=Jt(n,["store","showOnHover"]);const i=RL();o=o||i,wo(o,!1);const c=Zl(s),l=x.useRef(0);x.useEffect(()=>()=>window.clearTimeout(l.current),[]),x.useEffect(()=>X0("mouseleave",A=>{if(!o)return;const{anchorElement:_}=o.getState();_&&A.target===_&&(window.clearTimeout(l.current),l.current=0)},!0),[o]);const u=s.onMouseMove,d=s0(r),p=iL(),f=un(z=>{if(u?.(z),c||!o||z.defaultPrevented||l.current||!p()||!d(z))return;const A=z.currentTarget;o.setAnchorElement(A),o.setDisclosureElement(A);const{showTimeout:_,timeout:v}=o.getState(),M=()=>{l.current=0,p()&&(o?.setAnchorElement(A),o?.show(),queueMicrotask(()=>{o?.setDisclosureElement(A)}))},y=_??v;y===0?M():l.current=window.setTimeout(M,y)}),b=s.onClick,h=un(z=>{b?.(z),o&&(window.clearTimeout(l.current),l.current=0)}),g=x.useCallback(z=>{if(!o)return;const{anchorElement:A}=o.getState();A?.isConnected||o.setAnchorElement(z)},[o]);return s=zt($e({},s),{ref:ur(g,s.ref),onMouseMove:f,onClick:h}),s=Zh(s),s});Xt(function(t){const n=NL(t);return Zt($Fe,n)});var VFe="button";function HFe(e,t){return{ArrowDown:t==="bottom"||t==="top"?"first":!1,ArrowUp:t==="bottom"||t==="top"?"last":!1,ArrowRight:t==="right"?"first":!1,ArrowLeft:t==="left"?"first":!1}[e.key]}function sG(e,t){return!!e?.some(n=>!n.element||n.element===t?!1:n.element.getAttribute("aria-expanded")==="true")}var UFe=en(function(t){var n=t,{store:o,focusable:r,accessibleWhenDisabled:s,showOnHover:i}=n,c=Jt(n,["store","focusable","accessibleWhenDisabled","showOnHover"]);const l=hw();o=o||l,wo(o,!1);const u=x.useRef(null),d=o.parent,p=o.menubar,f=!!d,b=!!p&&!f,h=Zl(c),g=()=>{const E=u.current;E&&(o?.setDisclosureElement(E),o?.setAnchorElement(E),o?.show())},z=c.onFocus,A=un(E=>{if(z?.(E),h||E.defaultPrevented||(o?.setAutoFocusOnShow(!1),o?.setActiveId(null),!p)||!b)return;const{items:B}=p.getState();sG(B,E.currentTarget)&&g()}),_=Hn(o,E=>E.placement.split("-")[0]),v=c.onKeyDown,M=un(E=>{if(v?.(E),h||E.defaultPrevented)return;const B=HFe(E,_);B&&(E.preventDefault(),g(),o?.setAutoFocusOnShow(!0),o?.setInitialFocus(B))}),y=c.onClick,k=un(E=>{if(y?.(E),E.defaultPrevented||!o)return;const B=!E.detail,{open:N}=o.getState();(!N||B)&&((!f||B)&&o.setAutoFocusOnShow(!0),o.setInitialFocus(B?"first":"container")),f&&g()});c=Lo(c,E=>a.jsx(qFe,{value:o,children:E}),[o]),f&&(c=zt($e({},c),{render:a.jsx(iz.div,{render:c.render})}));const S=V1(c.id),C=Hn(d?.combobox||d,"contentElement"),R=f||b?JB(C,"menuitem"):void 0,T=o.useState("contentElement");return c=zt($e({id:S,role:R,"aria-haspopup":rw(T,"menu")},c),{ref:ur(u,c.ref),onFocus:A,onKeyDown:M,onClick:k}),c=NL(zt($e({store:o,focusable:r,accessibleWhenDisabled:s},c),{showOnHover:E=>{if(!(()=>{if(typeof i=="function")return i(E);if(i!=null)return i;if(f)return!0;if(!p)return!1;const{items:I}=p.getState();return b&&sG(I)})())return!1;const j=b?p:d;return j&&j.setActiveId(E.currentTarget.id),!0}})),c=qL($e({store:o,toggleOnClick:!f,focusable:r,accessibleWhenDisabled:s},c)),c=E3($e({store:o,typeahead:b},c)),c}),Hce=Xt(function(t){const n=UFe(t);return Zt(VFe,n)}),XFe="div",GFe=en(function(t){return t=oce(t),t}),KFe=Xt(function(t){const n=GFe(t);return Zt(XFe,n)}),YFe="div",ZFe=en(function(t){return t=sce(t),t}),QFe=Xt(function(t){const n=ZFe(t);return Zt(YFe,n)}),JFe="span",e$e=en(function(t){var n=t,{store:o,checked:r}=n,s=Jt(n,["store","checked"]);const i=x.useContext(Ice);return r=r??i,s=hL(zt($e({},s),{checked:r})),s}),Uce=Xt(function(t){const n=e$e(t);return Zt(JFe,n)}),t$e="div";function n$e(e,t,n){var o;if(!e)return!1;if(cd(e))return!0;const r=t?.find(l=>{var u;return l.element===n?!1:((u=l.element)==null?void 0:u.getAttribute("aria-expanded"))==="true"}),s=(o=r?.element)==null?void 0:o.getAttribute("aria-controls");if(!s)return!1;const c=zr(e).getElementById(s);return c?cd(c)?!0:!!c.querySelector("[role=menuitem][aria-expanded=true]"):!1}var BL=en(function(t){var n=t,{store:o,hideOnClick:r=!0,preventScrollOnKeyDown:s=!0,focusOnHover:i,blurOnHoverEnd:c}=n,l=Jt(n,["store","hideOnClick","preventScrollOnKeyDown","focusOnHover","blurOnHoverEnd"]);const u=EL(!0),d=CFe();o=o||u||d,wo(o,!1);const p=l.onClick,f=s0(r),b="hideAll"in o?o.hideAll:void 0,h=!!b,g=un(_=>{p?.(_),!(_.defaultPrevented||xae(_)||vae(_)||!b||_.currentTarget.getAttribute("aria-haspopup")==="menu")&&f(_)&&b()}),z=Hn(o,_=>"contentElement"in _?_.contentElement:null),A=JB(z,"menuitem");return l=zt($e({role:A},l),{onClick:g}),l=Jh($e({store:o,preventScrollOnKeyDown:s},l)),l=mL(zt($e({store:o},l),{focusOnHover(_){const v=()=>typeof i=="function"?i(_):i??!0;if(!o||!v())return!1;const{baseElement:M,items:y}=o.getState();return h?(_.currentTarget.hasAttribute("aria-expanded")&&_.currentTarget.focus(),!0):n$e(M,y,_.currentTarget)?(_.currentTarget.focus(),!0):!1},blurOnHoverEnd(_){return typeof c=="function"?c(_):c??h}})),l}),o$e=Tc(Xt(function(t){const n=BL(t);return Zt(t$e,n)})),r$e="div";function s$e(e){return Array.isArray(e)?e.toString():e}function hC(e,t,n){if(t===void 0)return Array.isArray(e)?e:!!n;const o=s$e(t);return Array.isArray(e)?n?e.includes(o)?e:[...e,o]:e.filter(r=>r!==o):n?o:e===o?!1:e}var i$e=en(function(t){var n=t,{store:o,name:r,value:s,checked:i,defaultChecked:c,hideOnClick:l=!1}=n,u=Jt(n,["store","name","value","checked","defaultChecked","hideOnClick"]);const d=EL();o=o||d,wo(o,!1);const p=oL(c);x.useEffect(()=>{o?.setValue(r,(b=[])=>p?hC(b,s,!0):b)},[o,r,s,p]),x.useEffect(()=>{i!==void 0&&o?.setValue(r,b=>hC(b,s,i))},[o,r,s,i]);const f=oFe({value:o.useState(b=>b.values[r]),setValue(b){o?.setValue(r,()=>{if(i===void 0)return b;const h=hC(b,s,i);return!Array.isArray(h)||!Array.isArray(b)?h:_7e(b,h)?b:h})}});return u=$e({role:"menuitemcheckbox"},u),u=Ece($e({store:f,name:r,value:s,checked:i},u)),u=BL($e({store:o,hideOnClick:l},u)),u}),a$e=Tc(Xt(function(t){const n=i$e(t);return Zt(r$e,n)})),c$e="div";function mC(e,t,n){return n===void 0?e:n?t:e}var l$e=en(function(t){var n=t,{store:o,name:r,value:s,checked:i,onChange:c,hideOnClick:l=!1}=n,u=Jt(n,["store","name","value","checked","onChange","hideOnClick"]);const d=EL();o=o||d,wo(o,!1);const p=oL(u.defaultChecked);x.useEffect(()=>{o?.setValue(r,(b=!1)=>mC(b,s,p))},[o,r,s,p]),x.useEffect(()=>{i!==void 0&&o?.setValue(r,b=>mC(b,s,i))},[o,r,s,i]);const f=o.useState(b=>b.values[r]===s);return u=Lo(u,b=>a.jsx(Ice.Provider,{value:!!f,children:b}),[f]),u=$e({role:"menuitemradio"},u),u=Nce($e({name:r,value:s,checked:f,onChange(b){if(c?.(b),b.defaultPrevented)return;const h=b.currentTarget;o?.setValue(r,g=>mC(g,s,i??h.checked))}},u)),u=BL($e({store:o,hideOnClick:l},u)),u}),u$e=Tc(Xt(function(t){const n=l$e(t);return Zt(c$e,n)})),d$e="hr",p$e=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=jce();return o=o||s,r=Rce($e({store:o},r)),r}),f$e=Xt(function(t){const n=p$e(t);return Zt(d$e,n)});function b$e(e={}){var t;const n=(t=e.store)==null?void 0:t.getState(),o=Dce(lo(mn({},e),{placement:nn(e.placement,n?.placement,"top"),hideTimeout:nn(e.hideTimeout,n?.hideTimeout,0)})),r=lo(mn({},o.getState()),{type:nn(e.type,n?.type,"description"),skipTimeout:nn(e.skipTimeout,n?.skipTimeout,300)}),s=k1(r,o,e.store);return mn(mn({},o),s)}function h$e(e,t,n){return ar(e,n,"type"),ar(e,n,"skipTimeout"),Fce(e,t,n)}function m$e(e={}){const[t,n]=va(b$e,e);return h$e(t,n,e)}var Xce=H1([Pce],[TL]),LL=Xce.useProviderContext,g$e=Xce.ScopedContextProvider,M$e="div",z$e=en(function(t){var n=t,{store:o,portal:r=!0,gutter:s=8,preserveTabOrder:i=!1,hideOnHoverOutside:c=!0,hideOnInteractOutside:l=!0}=n,u=Jt(n,["store","portal","gutter","preserveTabOrder","hideOnHoverOutside","hideOnInteractOutside"]);const d=LL();o=o||d,wo(o,!1),u=Lo(u,f=>a.jsx(g$e,{value:o,children:f}),[o]);const p=o.useState(f=>f.type==="description"?"tooltip":"none");return u=$e({role:p},u),u=WL(zt($e({},u),{store:o,portal:r,gutter:s,preserveTabOrder:i,hideOnHoverOutside(f){if(rz(c,f))return!1;const b=o?.getState().anchorElement;return b?!("focusVisible"in b.dataset):!0},hideOnInteractOutside:f=>{if(rz(l,f))return!1;const b=o?.getState().anchorElement;return b?!Yr(b,f.target):!0}})),u}),O$e=em(Xt(function(t){const n=z$e(t);return Zt(M$e,n)}),LL),y$e="div",Vp=k1({activeStore:null});function iG(e){return()=>{const{activeStore:t}=Vp.getState();t===e&&Vp.setState("activeStore",null)}}var A$e=en(function(t){var n=t,{store:o,showOnHover:r=!0}=n,s=Jt(n,["store","showOnHover"]);const i=LL();o=o||i,wo(o,!1);const c=x.useRef(!1);x.useEffect(()=>Ir(o,["mounted"],z=>{z.mounted||(c.current=!1)}),[o]),x.useEffect(()=>{if(o)return _1(iG(o),Ir(o,["mounted","skipTimeout"],z=>{if(!o)return;if(z.mounted){const{activeStore:_}=Vp.getState();return _!==o&&_?.hide(),Vp.setState("activeStore",o)}const A=setTimeout(iG(o),z.skipTimeout);return()=>clearTimeout(A)}))},[o]);const l=s.onMouseEnter,u=un(z=>{l?.(z),c.current=!0}),d=s.onFocusVisible,p=un(z=>{d?.(z),!z.defaultPrevented&&(o?.setAnchorElement(z.currentTarget),o?.show())}),f=s.onBlur,b=un(z=>{if(f?.(z),z.defaultPrevented)return;const{activeStore:A}=Vp.getState();c.current=!1,A===o&&Vp.setState("activeStore",null)}),h=o.useState("type"),g=o.useState(z=>{var A;return(A=z.contentElement)==null?void 0:A.id});return s=zt($e({"aria-labelledby":h==="label"?g:void 0},s),{onMouseEnter:u,onFocusVisible:p,onBlur:b}),s=NL($e({store:o,showOnHover(z){if(!c.current||rz(r,z))return!1;const{activeStore:A}=Vp.getState();return A?(o?.show(),!1):!0}},s)),s}),v$e=Xt(function(t){const n=A$e(t);return Zt(y$e,n)});function x$e(e={}){var t;const n=(t=e.store)==null?void 0:t.getState();return Kh(lo(mn({},e),{orientation:nn(e.orientation,n?.orientation,"horizontal"),focusLoop:nn(e.focusLoop,n?.focusLoop,!0)}))}function w$e(e,t,n){return Yh(e,t,n)}function Gce(e={}){const[t,n]=va(x$e,e);return w$e(t,n,e)}var PL=H1([ep],[Kf]),_$e=PL.useContext,k$e=PL.useProviderContext,S$e=PL.ScopedContextProvider,C$e="div",q$e=en(function(t){var n=t,{store:o,orientation:r,virtualFocus:s,focusLoop:i,rtl:c}=n,l=Jt(n,["store","orientation","virtualFocus","focusLoop","rtl"]);const u=k$e();o=o||u;const d=Gce({store:o,orientation:r,virtualFocus:s,focusLoop:i,rtl:c}),p=d.useState(f=>f.orientation==="both"?void 0:f.orientation);return l=Lo(l,f=>a.jsx(S$e,{value:d,children:f}),[d]),l=$e({role:"toolbar","aria-orientation":p},l),l=Qh($e({store:d},l)),l}),R$e=Xt(function(t){const n=q$e(t);return Zt(C$e,n)}),T$e="button",E$e=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=_$e();return o=o||s,r=Jh($e({store:o},r)),r}),W$e=Tc(Xt(function(t){const n=E$e(t);return Zt(T$e,n)})),mw=H1([pL,ep],[C3,Kf]),jL=mw.useContext,N$e=mw.useScopedContext,gw=mw.useProviderContext,Kce=mw.ScopedContextProvider,Yce=x.createContext(!1),aG=x.createContext(null);function B$e(e={}){var t=e,{composite:n,combobox:o}=t,r=y3(t,["composite","combobox"]);const s=["items","renderedItems","moves","orientation","virtualFocus","includesBaseElement","baseElement","focusLoop","focusShift","focusWrap"],i=w3(r.store,uh(n,s),uh(o,s)),c=i?.getState(),l=Kh(lo(mn({},r),{store:i,includesBaseElement:nn(r.includesBaseElement,c?.includesBaseElement,!1),orientation:nn(r.orientation,c?.orientation,"horizontal"),focusLoop:nn(r.focusLoop,c?.focusLoop,!0)})),u=Tae(),d=lo(mn({},l.getState()),{selectedId:nn(r.selectedId,c?.selectedId,r.defaultSelectedId),selectOnMove:nn(r.selectOnMove,c?.selectOnMove,!0)}),p=k1(d,l,i);C0(p,()=>Ir(p,["moves"],()=>{const{activeId:h,selectOnMove:g}=p.getState();if(!g||!h)return;const z=l.item(h);z&&(z.dimmed||z.disabled||p.setState("selectedId",z.id))}));let f=!0;C0(p,()=>sz(p,["selectedId"],(h,g)=>{if(!f){f=!0;return}n&&h.selectedId===g.selectedId||p.setState("activeId",h.selectedId)})),C0(p,()=>Ir(p,["selectedId","renderedItems"],h=>{if(h.selectedId!==void 0)return;const{activeId:g,renderedItems:z}=p.getState(),A=l.item(g);if(A&&!A.disabled&&!A.dimmed)p.setState("selectedId",A.id);else{const _=z.find(v=>!v.disabled&&!v.dimmed);p.setState("selectedId",_?.id)}})),C0(p,()=>Ir(p,["renderedItems"],h=>{const g=h.renderedItems;if(g.length)return Ir(u,["renderedItems"],z=>{const A=z.renderedItems;A.some(v=>!v.tabId)&&A.forEach((v,M)=>{if(v.tabId)return;const y=g[M];y&&u.renderItem(lo(mn({},v),{tabId:y.id}))})})}));let b=null;return C0(p,()=>{const h=()=>{b=p.getState().selectedId},g=()=>{f=!1,p.setState("selectedId",b)};if(n&&"setSelectElement"in n)return _1(Ir(n,["value"],h),Ir(n,["mounted"],g));if(o)return _1(Ir(o,["selectedValue"],h),Ir(o,["mounted"],g))}),lo(mn(mn({},l),p),{panels:u,setSelectedId:h=>p.setState("selectedId",h),select:h=>{p.setState("selectedId",h),l.move(h)}})}function L$e(e,t,n){wd(t,[n.composite,n.combobox]),e=Yh(e,t,n),ar(e,n,"selectedId","setSelectedId"),ar(e,n,"selectOnMove");const[o,r]=va(()=>e.panels,{});return wd(r,[e,r]),Object.assign(x.useMemo(()=>zt($e({},e),{panels:o}),[e,o]),{composite:n.composite,combobox:n.combobox})}function P$e(e={}){const t=AIe(),n=jL()||t;e=zt($e({},e),{composite:e.composite!==void 0?e.composite:n,combobox:e.combobox!==void 0?e.combobox:t});const[o,r]=va(B$e,e);return L$e(o,r,e)}var IL=H1([ep],[Kf]),j$e=IL.useScopedContext,Zce=IL.useProviderContext,Qce=IL.ScopedContextProvider,I$e="button",D$e=en(function(t){var n=t,{store:o,getItem:r}=n,s=Jt(n,["store","getItem"]),i;const c=j$e();o=o||c,wo(o,!1);const l=V1(),u=s.id||l,d=Zl(s),p=x.useCallback(k=>{const S=zt($e({},k),{dimmed:d});return r?r(S):S},[d,r]),f=s.onClick,b=un(k=>{f?.(k),!k.defaultPrevented&&o?.setSelectedId(u)}),h=o.panels.useState(k=>{var S;return(S=k.items.find(C=>C.tabId===u))==null?void 0:S.id}),g=l?s.shouldRegisterItem:!1,z=o.useState(k=>!!u&&k.activeId===u),A=o.useState(k=>!!u&&k.selectedId===u),_=o.useState(k=>!!o.item(k.activeId)),v=z||A&&!_,M=A||((i=s.accessibleWhenDisabled)!=null?i:!0);if(Hn(o.combobox||o.composite,"virtualFocus")&&(s=zt($e({},s),{tabIndex:-1})),s=zt($e({id:u,role:"tab","aria-selected":A,"aria-controls":h||void 0},s),{onClick:b}),o.composite){const k={id:u,accessibleWhenDisabled:M,store:o.composite,shouldRegisterItem:v&&g,rowId:s.rowId,render:s.render};s=zt($e({},s),{render:a.jsx(a8,zt($e({},k),{render:o.combobox&&o.composite!==o.combobox?a.jsx(a8,zt($e({},k),{store:o.combobox})):k.render}))})}return s=Jh(zt($e({store:o},s),{accessibleWhenDisabled:M,getItem:p,shouldRegisterItem:g})),s}),F$e=Tc(Xt(function(t){const n=D$e(t);return Zt(I$e,n)})),$$e="div",V$e=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=Zce();o=o||s,wo(o,!1);const i=o.useState(c=>c.orientation==="both"?void 0:c.orientation);return r=Lo(r,c=>a.jsx(Qce,{value:o,children:c}),[o]),o.composite&&(r=$e({focusable:!1},r)),r=$e({role:"tablist","aria-orientation":i},r),r=Qh($e({store:o},r)),r}),H$e=Xt(function(t){const n=V$e(t);return Zt($$e,n)}),U$e="div",X$e=en(function(t){var n=t,{store:o,unmountOnHide:r,tabId:s,getItem:i,scrollRestoration:c,scrollElement:l}=n,u=Jt(n,["store","unmountOnHide","tabId","getItem","scrollRestoration","scrollElement"]);const d=Zce();o=o||d,wo(o,!1);const p=x.useRef(null),f=V1(u.id),b=Hn(o.panels,()=>{var C;return s||((C=o?.panels.item(f))==null?void 0:C.tabId)}),h=Hn(o,C=>!!b&&C.selectedId===b),g=Iae({open:h}),z=Hn(g,"mounted"),A=x.useRef(new Map),_=un(()=>{const C=p.current;return C?l?typeof l=="function"?l(C):"current"in l?l.current:l:C:null});x.useEffect(()=>{var C,R;if(!c||!z)return;const T=_();if(!T)return;if(c==="reset"){T.scroll(0,0);return}if(!b)return;const E=A.current.get(b);T.scroll((C=E?.x)!=null?C:0,(R=E?.y)!=null?R:0);const B=()=>{A.current.set(b,{x:T.scrollLeft,y:T.scrollTop})};return T.addEventListener("scroll",B),()=>{T.removeEventListener("scroll",B)}},[c,z,b,_,o]);const[v,M]=x.useState(!1);x.useEffect(()=>{const C=p.current;if(!C)return;const R=q3(C);M(!!R.length)},[]);const y=x.useCallback(C=>{const R=zt($e({},C),{id:f||C.id,tabId:s});return i?i(R):R},[f,s,i]),k=u.onKeyDown,S=un(C=>{if(k?.(C),C.defaultPrevented||!o?.composite)return;const T={ArrowLeft:o.previous,ArrowRight:o.next,Home:o.first,End:o.last}[C.key];if(!T)return;const{selectedId:E}=o.getState(),B=T({activeId:E});B&&(C.preventDefault(),o.move(B))});return u=Lo(u,C=>a.jsx(Qce,{value:o,children:C}),[o]),u=zt($e({id:f,role:"tabpanel","aria-labelledby":b||void 0},u),{children:r&&!z?null:u.children,ref:ur(p,u.ref),onKeyDown:S}),u=Zh($e({focusable:!o.composite&&!v},u)),u=dw($e({store:g},u)),u=gL(zt($e({store:o.panels},u),{getItem:y})),u}),G$e=Xt(function(t){const n=X$e(t);return Zt(U$e,n)});function K$e(e={}){var t=e,{combobox:n}=t,o=y3(t,["combobox"]);const r=w3(o.store,uh(n,["value","items","renderedItems","baseElement","arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),s=r.getState(),i=Kh(lo(mn({},o),{store:r,virtualFocus:nn(o.virtualFocus,s.virtualFocus,!0),includesBaseElement:nn(o.includesBaseElement,s.includesBaseElement,!1),activeId:nn(o.activeId,s.activeId,o.defaultActiveId,null),orientation:nn(o.orientation,s.orientation,"vertical")})),c=$ae(lo(mn({},o),{store:r,placement:nn(o.placement,s.placement,"bottom-start")})),l=new String(""),u=lo(mn(mn({},i.getState()),c.getState()),{value:nn(o.value,s.value,o.defaultValue,l),setValueOnMove:nn(o.setValueOnMove,s.setValueOnMove,!1),labelElement:nn(s.labelElement,null),selectElement:nn(s.selectElement,null),listElement:nn(s.listElement,null)}),d=k1(u,i,c,r);return C0(d,()=>Ir(d,["value","items"],p=>{if(p.value!==l||!p.items.length)return;const f=p.items.find(b=>!b.disabled&&b.value!=null);f?.value!=null&&d.setState("value",f.value)})),C0(d,()=>Ir(d,["mounted"],p=>{p.mounted||d.setState("activeId",u.activeId)})),C0(d,()=>Ir(d,["mounted","items","value"],p=>{if(n||p.mounted)return;const f=Eae(p.value),b=f[f.length-1];if(b==null)return;const h=p.items.find(g=>!g.disabled&&g.value===b);h&&d.setState("activeId",h.id)})),C0(d,()=>sz(d,["setValueOnMove","moves"],p=>{const{mounted:f,value:b,activeId:h}=d.getState();if(!p.setValueOnMove&&f||Array.isArray(b)||!p.moves||!h)return;const g=i.item(h);!g||g.disabled||g.value==null||d.setState("value",g.value)})),lo(mn(mn(mn({},i),c),d),{combobox:n,setValue:p=>d.setState("value",p),setLabelElement:p=>d.setState("labelElement",p),setSelectElement:p=>d.setState("selectElement",p),setListElement:p=>d.setState("listElement",p)})}function Y$e(e){const t=Uae();return e=zt($e({},e),{combobox:e.combobox!==void 0?e.combobox:t}),Lae(e)}function Z$e(e,t,n){return wd(t,[n.combobox]),ar(e,n,"value","setValue"),ar(e,n,"setValueOnMove"),Object.assign(Vae(Yh(e,t,n),t,n),{combobox:n.combobox})}function Q$e(e={}){e=Y$e(e);const[t,n]=va(K$e,e);return Z$e(t,n,e)}var J$e="span",eVe=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=jL();return o=o||s,r=Bce($e({store:o},r)),r}),tVe=Xt(function(t){const n=eVe(t);return Zt(J$e,n)}),nVe="button";function oVe(e){return Array.from(e.selectedOptions).map(t=>t.value)}function vA(e,t){return()=>{const n=t();if(!n)return;let o=0,r=e.item(n);const s=r;for(;r&&r.value==null;){const i=t(++o);if(!i)return;if(r=e.item(i),r===s)break}return r?.id}}var rVe=en(function(t){var n=t,{store:o,name:r,form:s,required:i,showOnKeyDown:c=!0,moveOnKeyDown:l=!0,toggleOnPress:u=!0,toggleOnClick:d=u}=n,p=Jt(n,["store","name","form","required","showOnKeyDown","moveOnKeyDown","toggleOnPress","toggleOnClick"]);const f=gw();o=o||f,wo(o,!1);const b=p.onKeyDown,h=s0(c),g=s0(l),A=o.useState("placement").split("-")[0],_=o.useState("value"),v=Array.isArray(_),M=un(I=>{var P;if(b?.(I),I.defaultPrevented||!o)return;const{orientation:$,items:F,activeId:X}=o.getState(),Z=$!=="horizontal",V=$!=="vertical",ee=!!((P=F.find(ye=>!ye.disabled&&ye.value!=null))!=null&&P.rowId),J={ArrowUp:(ee||Z)&&vA(o,o.up),ArrowRight:(ee||V)&&vA(o,o.next),ArrowDown:(ee||Z)&&vA(o,o.down),ArrowLeft:(ee||V)&&vA(o,o.previous)}[I.key];J&&g(I)&&(I.preventDefault(),o.move(J()));const ue=A==="top"||A==="bottom";({ArrowDown:ue,ArrowUp:ue,ArrowLeft:A==="left",ArrowRight:A==="right"})[I.key]&&h(I)&&(I.preventDefault(),o.move(X),N2(I.currentTarget,"keyup",o.show))});p=Lo(p,I=>a.jsx(Kce,{value:o,children:I}),[o]);const[y,k]=x.useState(!1),S=x.useRef(!1);x.useEffect(()=>{const I=S.current;S.current=!1,!I&&k(!1)},[_]);const C=o.useState(I=>{var P;return(P=I.labelElement)==null?void 0:P.id}),R=p["aria-label"],T=p["aria-labelledby"]||C,E=o.useState(I=>{if(r)return I.items}),B=x.useMemo(()=>[...new Set(E?.map(I=>I.value).filter(I=>I!=null))],[E]);p=Lo(p,I=>r?a.jsxs(a.Fragment,{children:[a.jsxs("select",{style:{border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",whiteSpace:"nowrap",width:"1px"},tabIndex:-1,"aria-hidden":!0,"aria-label":R,"aria-labelledby":T,name:r,form:s,required:i,value:_,multiple:v,onFocus:()=>{var P;return(P=o?.getState().selectElement)==null?void 0:P.focus()},onChange:P=>{S.current=!0,k(!0),o?.setValue(v?oVe(P.target):P.target.value)},children:[Eae(_).map(P=>P==null||B.includes(P)?null:a.jsx("option",{value:P,children:P},P)),B.map(P=>a.jsx("option",{value:P,children:P},P))]}),I]}):I,[o,R,T,r,s,i,_,v,B]);const N=a.jsxs(a.Fragment,{children:[_,a.jsx(tVe,{})]}),j=o.useState("contentElement");return p=zt($e({role:"combobox","aria-autocomplete":"none","aria-labelledby":C,"aria-haspopup":rw(j,"listbox"),"data-autofill":y||void 0,"data-name":r,children:N},p),{ref:ur(o.setSelectElement,p.ref),onKeyDown:M}),p=qL($e({store:o,toggleOnClick:d},p)),p=E3($e({store:o},p)),p}),sVe=Xt(function(t){const n=rVe(t);return Zt(nVe,n)}),iVe="span",aVe=en(function(t){var n=t,{store:o,checked:r}=n,s=Jt(n,["store","checked"]);const i=x.useContext(Yce);return r=r??i,s=hL(zt($e({},s),{checked:r})),s}),cVe=Xt(function(t){const n=aVe(t);return Zt(iVe,n)}),lVe="div";function uVe(e,t){if(t!=null)return e==null?!1:Array.isArray(e)?e.includes(t):e===t}var dVe=en(function(t){var n=t,{store:o,value:r,getItem:s,hideOnClick:i,setValueOnClick:c=r!=null,preventScrollOnKeyDown:l=!0,focusOnHover:u=!0}=n,d=Jt(n,["store","value","getItem","hideOnClick","setValueOnClick","preventScrollOnKeyDown","focusOnHover"]),p;const f=N$e();o=o||f,wo(o,!1);const b=V1(d.id),h=Zl(d),{listElement:g,multiSelectable:z,selected:A,autoFocus:_}=Rae(o,{listElement:"listElement",multiSelectable(R){return Array.isArray(R.value)},selected(R){return uVe(R.value,r)},autoFocus(R){return r==null||R.value==null||R.activeId!==b&&o?.item(R.activeId)?!1:Array.isArray(R.value)?R.value[R.value.length-1]===r:R.value===r}}),v=x.useCallback(R=>{const T=zt($e({},R),{value:h?void 0:r,children:r});return s?s(T):T},[h,r,s]);i=i??(r!=null&&!z);const M=d.onClick,y=s0(c),k=s0(i),S=un(R=>{M?.(R),!R.defaultPrevented&&(xae(R)||vae(R)||(y(R)&&r!=null&&o?.setValue(T=>Array.isArray(T)?T.includes(r)?T.filter(E=>E!==r):[...T,r]:r),k(R)&&o?.hide()))});d=Lo(d,R=>a.jsx(Yce.Provider,{value:A??!1,children:R}),[A]),d=zt($e({id:b,role:JB(g),"aria-selected":A,children:r},d),{autoFocus:(p=d.autoFocus)!=null?p:_,onClick:S}),d=Jh($e({store:o,getItem:v,preventScrollOnKeyDown:l},d));const C=s0(u);return d=mL(zt($e({store:o},d),{focusOnHover(R){if(!C(R))return!1;const T=o?.getState();return!!T?.open}})),d}),pVe=Tc(Xt(function(t){const n=dVe(t);return Zt(lVe,n)})),fVe="div",bVe=en(function(t){var n=t,{store:o}=n,r=Jt(n,["store"]);const s=gw();o=o||s,wo(o,!1);const i=V1(r.id),c=r.onClick,l=un(u=>{c?.(u),!u.defaultPrevented&&queueMicrotask(()=>{const d=o?.getState().selectElement;d?.focus()})});return r=zt($e({id:i},r),{ref:ur(o.setLabelElement,r.ref),onClick:l,style:$e({cursor:"default"},r.style)}),ws(r)}),hVe=Tc(Xt(function(t){const n=bVe(t);return Zt(fVe,n)})),mVe="div",cG=x.createContext(null),Jce=en(function(t){var n=t,{store:o,resetOnEscape:r=!0,hideOnEnter:s=!0,focusOnMove:i=!0,composite:c,alwaysVisible:l}=n,u=Jt(n,["store","resetOnEscape","hideOnEnter","focusOnMove","composite","alwaysVisible"]);const d=jL();o=o||d,wo(o,!1);const p=V1(u.id),f=o.useState("value"),b=Array.isArray(f),[h,g]=x.useState(f),z=o.useState("mounted");x.useEffect(()=>{z||g(f)},[z,f]),r=r&&!b;const A=u.onKeyDown,_=s0(r),v=s0(s),M=un(ee=>{A?.(ee),!ee.defaultPrevented&&(ee.key==="Escape"&&_(ee)&&o?.setValue(h),(ee.key===" "||ee.key==="Enter")&&cs(ee)&&v(ee)&&(ee.preventDefault(),o?.hide()))}),y=x.useContext(aG),k=x.useState(),[S,C]=y||k,R=x.useMemo(()=>[S,C],[S]),[T,E]=x.useState(null),B=x.useContext(cG);x.useEffect(()=>{if(B)return B(o),()=>B(null)},[B,o]),u=Lo(u,ee=>a.jsx(Kce,{value:o,children:a.jsx(cG.Provider,{value:E,children:a.jsx(aG.Provider,{value:R,children:ee})})}),[o,R]);const N=!!o.combobox;c=c??(!N&&T!==o);const[j,I]=_ae(c?o.setListElement:null),P=U7e(j,"role",u.role),F=(c||(P==="listbox"||P==="menu"||P==="tree"||P==="grid"))&&b||void 0,X=uw(z,u.hidden,l),Z=X?zt($e({},u.style),{display:"none"}):u.style;c&&(u=$e({role:"listbox","aria-multiselectable":F},u));const V=o.useState(ee=>{var te;return S||((te=ee.labelElement)==null?void 0:te.id)});return u=zt($e({id:p,"aria-labelledby":V,hidden:X},u),{ref:ur(I,u.ref),style:Z,onKeyDown:M}),u=Qh(zt($e({store:o},u),{composite:c})),u=E3($e({store:o,typeahead:!N},u)),u});Xt(function(t){const n=Jce(t);return Zt(mVe,n)});var gVe="div",MVe=en(function(t){var n=t,{store:o,alwaysVisible:r}=n,s=Jt(n,["store","alwaysVisible"]);const i=gw();return o=o||i,s=Jce($e({store:o,alwaysVisible:r},s)),s=SL($e({store:o,alwaysVisible:r},s)),s}),zVe=em(Xt(function(t){const n=MVe(t);return Zt(gVe,n)}),gw);const h8=x.createContext({}),om=()=>x.useContext(h8),OVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(f9e,{store:s,...t,ref:n})}),yVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(u9e,{store:s,...t,ref:n})}),AVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(O9e,{store:s,...t,ref:n})}),vVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(a8,{store:s,...t,ref:n})}),xVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(QDe,{store:s,...t,ref:n})}),wVe=x.forwardRef(function(t,n){var o;const r=om(),s=(o=t.store)!==null&&o!==void 0?o:r.store;return a.jsx(MFe,{store:s,...t,ref:n})}),S1=Object.assign(x.forwardRef(function({activeId:t,defaultActiveId:n,setActiveId:o,focusLoop:r=!1,focusWrap:s=!1,focusShift:i=!1,virtualFocus:c=!1,orientation:l="both",rtl:u=jt(),children:d,disabled:p=!1,...f},b){const h=f.store,g=bIe({activeId:t,defaultActiveId:n,setActiveId:o,focusLoop:r,focusWrap:s,focusShift:i,virtualFocus:c,orientation:l,rtl:u}),z=h??g,A=x.useMemo(()=>({store:z}),[z]);return a.jsx(n9e,{disabled:p,store:z,...f,ref:b,children:a.jsx(h8.Provider,{value:A,children:d})})}),{Group:Object.assign(OVe,{displayName:"Composite.Group"}),GroupLabel:Object.assign(yVe,{displayName:"Composite.GroupLabel"}),Item:Object.assign(vVe,{displayName:"Composite.Item"}),Row:Object.assign(xVe,{displayName:"Composite.Row"}),Hover:Object.assign(AVe,{displayName:"Composite.Hover"}),Typeahead:Object.assign(wVe,{displayName:"Composite.Typeahead"}),Context:Object.assign(h8,{displayName:"Composite.Context"})});function ele(e){const{shortcut:t,className:n}=e;if(!t)return null;let o,r;return typeof t=="string"&&(o=t),t!==null&&typeof t=="object"&&(o=t.display,r=t.ariaLabel),a.jsx("span",{className:n,"aria-label":r,children:o})}const _Ve={bottom:"bottom",top:"top","middle left":"left","middle right":"right","bottom left":"bottom-end","bottom center":"bottom","bottom right":"bottom-start","top left":"top-end","top center":"top","top right":"top-start","middle left left":"left","middle left right":"left","middle left bottom":"left-end","middle left top":"left-start","middle right left":"right","middle right right":"right","middle right bottom":"right-end","middle right top":"right-start","bottom left left":"bottom-end","bottom left right":"bottom-end","bottom left bottom":"bottom-end","bottom left top":"bottom-end","bottom center left":"bottom","bottom center right":"bottom","bottom center bottom":"bottom","bottom center top":"bottom","bottom right left":"bottom-start","bottom right right":"bottom-start","bottom right bottom":"bottom-start","bottom right top":"bottom-start","top left left":"top-end","top left right":"top-end","top left bottom":"top-end","top left top":"top-end","top center left":"top","top center right":"top","top center bottom":"top","top center top":"top","top right left":"top-start","top right right":"top-start","top right bottom":"top-start","top right top":"top-start",middle:"bottom","middle center":"bottom","middle center bottom":"bottom","middle center left":"bottom","middle center right":"bottom","middle center top":"bottom"},Mw=e=>{var t;return(t=_Ve[e])!==null&&t!==void 0?t:"bottom"},kVe={top:{originX:.5,originY:1},"top-start":{originX:0,originY:1},"top-end":{originX:1,originY:1},right:{originX:0,originY:.5},"right-start":{originX:0,originY:0},"right-end":{originX:0,originY:1},bottom:{originX:.5,originY:0},"bottom-start":{originX:0,originY:0},"bottom-end":{originX:1,originY:0},left:{originX:1,originY:.5},"left-start":{originX:1,originY:0},"left-end":{originX:1,originY:1},overlay:{originX:.5,originY:.5}},SVe=e=>{const t=e.startsWith("top")||e.startsWith("bottom")?"translateY":"translateX",n=e.startsWith("top")||e.startsWith("left")?1:-1;return{style:kVe[e],initial:{opacity:0,scale:0,[t]:`${2*n}em`},animate:{opacity:1,scale:1,[t]:0},transition:{duration:.1,ease:[0,0,.2,1]}}};function CVe(e){return!!e?.top}function qVe(e){return!!e?.current}const RVe=({anchor:e,anchorRef:t,anchorRect:n,getAnchorRect:o,fallbackReferenceElement:r})=>{var s;let i=null;return e?i=e:CVe(t)?i={getBoundingClientRect(){const c=t.top.getBoundingClientRect(),l=t.bottom.getBoundingClientRect();return new window.DOMRect(c.x,c.y,c.width,l.bottom-c.top)}}:qVe(t)?i=t.current:t?i=t:n?i={getBoundingClientRect(){return n}}:o?i={getBoundingClientRect(){var c,l,u,d;const p=o(r);return new window.DOMRect((c=p.x)!==null&&c!==void 0?c:p.left,(l=p.y)!==null&&l!==void 0?l:p.top,(u=p.width)!==null&&u!==void 0?u:p.right-p.left,(d=p.height)!==null&&d!==void 0?d:p.bottom-p.top)}}:r&&(i=r.parentElement),(s=i)!==null&&s!==void 0?s:null},lG=e=>e===null||Number.isNaN(e)?void 0:Math.round(e),uG=x.createContext({isNestedInTooltip:!1}),TVe=700,EVe={isNestedInTooltip:!0};function WVe(e,t){const{children:n,className:o,delay:r=TVe,hideOnClick:s=!0,placement:i,position:c,shortcut:l,text:u,...d}=e,{isNestedInTooltip:p}=x.useContext(uG),f=vt(B0,"tooltip"),b=u||l?f:void 0,h=x.Children.count(n)===1;let g;i!==void 0?g=i:c!==void 0&&(g=Mw(c),Ke("`position` prop in wp.components.tooltip",{since:"6.4",alternative:"`placement` prop"})),g=g||"bottom";const z=m$e({placement:g,showTimeout:r}),A=Hn(z,"mounted");if(p)return h?a.jsx(iz,{...d,render:n}):n;function _(v){return b&&A&&v.props["aria-describedby"]===void 0&&v.props["aria-label"]!==u?x.cloneElement(v,{"aria-describedby":b}):v}return a.jsxs(uG.Provider,{value:EVe,children:[a.jsx(v$e,{onClick:s?z.hide:void 0,store:z,render:h?_(n):void 0,ref:t,children:h?void 0:n}),h&&(u||l)&&a.jsxs(O$e,{...d,className:oe("components-tooltip",o),unmountOnHide:!0,gutter:4,id:b,overflowPadding:.5,store:z,children:[u,l&&a.jsx(ele,{className:u?"components-tooltip__shortcut":"",shortcut:l})]})]})}const B0=x.forwardRef(WVe);function bi(e){return e!=null}function NVe(e){const t=e==="";return!bi(e)||t}function BVe(e=[],t){var n;return(n=e.find(bi))!==null&&n!==void 0?n:t}const LVe=e=>parseFloat(e),wg=e=>typeof e=="string"?LVe(e):e,dG={initial:void 0,fallback:""};function zw(e,t=dG){const{initial:n,fallback:o}={...dG,...t},[r,s]=x.useState(e),i=bi(e);x.useEffect(()=>{i&&r&&s(void 0)},[i,r]);const c=BVe([e,r,n],o),l=x.useCallback(u=>{i||s(u)},[i]);return[c,l]}function DL(e,t){const n=x.useRef(!1);x.useEffect(()=>{if(n.current)return e();n.current=!0},t),x.useEffect(()=>()=>{n.current=!1},[])}function B3({defaultValue:e,onChange:t,value:n}){const o=typeof n<"u",r=o?n:e,[s,i]=x.useState(r),c=o?n:s;let l;return o&&typeof t=="function"?l=t:!o&&typeof t=="function"?l=u=>{t(u),i(u)}:l=i,[c,l]}var PVe=!1;function jVe(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}function IVe(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),e.nonce!==void 0&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}var DVe=function(){function e(n){var o=this;this._insertTag=function(r){var s;o.tags.length===0?o.insertionPoint?s=o.insertionPoint.nextSibling:o.prepend?s=o.container.firstChild:s=o.before:s=o.tags[o.tags.length-1].nextSibling,o.container.insertBefore(r,s),o.tags.push(r)},this.isSpeedy=n.speedy===void 0?!PVe:n.speedy,this.tags=[],this.ctr=0,this.nonce=n.nonce,this.key=n.key,this.container=n.container,this.prepend=n.prepend,this.insertionPoint=n.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(o){o.forEach(this._insertTag)},t.insert=function(o){this.ctr%(this.isSpeedy?65e3:1)===0&&this._insertTag(IVe(this));var r=this.tags[this.tags.length-1];if(this.isSpeedy){var s=jVe(r);try{s.insertRule(o,s.cssRules.length)}catch{}}else r.appendChild(document.createTextNode(o));this.ctr++},t.flush=function(){this.tags.forEach(function(o){var r;return(r=o.parentNode)==null?void 0:r.removeChild(o)}),this.tags=[],this.ctr=0},e}(),l1="-ms-",lx="-moz-",zo="-webkit-",tle="comm",FL="rule",$L="decl",FVe="@import",nle="@keyframes",$Ve="@layer",VVe=Math.abs,Ow=String.fromCharCode,HVe=Object.assign;function UVe(e,t){return U0(e,0)^45?(((t<<2^U0(e,0))<<2^U0(e,1))<<2^U0(e,2))<<2^U0(e,3):0}function ole(e){return e.trim()}function XVe(e,t){return(e=t.exec(e))?e[0]:e}function Oo(e,t,n){return e.replace(t,n)}function m8(e,t){return e.indexOf(t)}function U0(e,t){return e.charCodeAt(t)|0}function cz(e,t,n){return e.slice(t,n)}function tc(e){return e.length}function VL(e){return e.length}function xA(e,t){return t.push(e),e}function GVe(e,t){return e.map(t).join("")}var yw=1,fh=1,rle=0,Ms=0,o0=0,rm="";function Aw(e,t,n,o,r,s,i){return{value:e,root:t,parent:n,type:o,props:r,children:s,line:yw,column:fh,length:i,return:""}}function _g(e,t){return HVe(Aw("",null,null,"",null,null,0),e,{length:-e.length},t)}function KVe(){return o0}function YVe(){return o0=Ms>0?U0(rm,--Ms):0,fh--,o0===10&&(fh=1,yw--),o0}function Ls(){return o0=Ms<rle?U0(rm,Ms++):0,fh++,o0===10&&(fh=1,yw++),o0}function bc(){return U0(rm,Ms)}function Hv(){return Ms}function L3(e,t){return cz(rm,e,t)}function lz(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function sle(e){return yw=fh=1,rle=tc(rm=e),Ms=0,[]}function ile(e){return rm="",e}function Uv(e){return ole(L3(Ms-1,g8(e===91?e+2:e===40?e+1:e)))}function ZVe(e){for(;(o0=bc())&&o0<33;)Ls();return lz(e)>2||lz(o0)>3?"":" "}function QVe(e,t){for(;--t&&Ls()&&!(o0<48||o0>102||o0>57&&o0<65||o0>70&&o0<97););return L3(e,Hv()+(t<6&&bc()==32&&Ls()==32))}function g8(e){for(;Ls();)switch(o0){case e:return Ms;case 34:case 39:e!==34&&e!==39&&g8(o0);break;case 40:e===41&&g8(e);break;case 92:Ls();break}return Ms}function JVe(e,t){for(;Ls()&&e+o0!==57;)if(e+o0===84&&bc()===47)break;return"/*"+L3(t,Ms-1)+"*"+Ow(e===47?e:Ls())}function eHe(e){for(;!lz(bc());)Ls();return L3(e,Ms)}function tHe(e){return ile(Xv("",null,null,null,[""],e=sle(e),0,[0],e))}function Xv(e,t,n,o,r,s,i,c,l){for(var u=0,d=0,p=i,f=0,b=0,h=0,g=1,z=1,A=1,_=0,v="",M=r,y=s,k=o,S=v;z;)switch(h=_,_=Ls()){case 40:if(h!=108&&U0(S,p-1)==58){m8(S+=Oo(Uv(_),"&","&\f"),"&\f")!=-1&&(A=-1);break}case 34:case 39:case 91:S+=Uv(_);break;case 9:case 10:case 13:case 32:S+=ZVe(h);break;case 92:S+=QVe(Hv()-1,7);continue;case 47:switch(bc()){case 42:case 47:xA(nHe(JVe(Ls(),Hv()),t,n),l);break;default:S+="/"}break;case 123*g:c[u++]=tc(S)*A;case 125*g:case 59:case 0:switch(_){case 0:case 125:z=0;case 59+d:A==-1&&(S=Oo(S,/\f/g,"")),b>0&&tc(S)-p&&xA(b>32?fG(S+";",o,n,p-1):fG(Oo(S," ","")+";",o,n,p-2),l);break;case 59:S+=";";default:if(xA(k=pG(S,t,n,u,d,r,c,v,M=[],y=[],p),s),_===123)if(d===0)Xv(S,t,k,k,M,s,p,c,y);else switch(f===99&&U0(S,3)===110?100:f){case 100:case 108:case 109:case 115:Xv(e,k,k,o&&xA(pG(e,k,k,0,0,r,c,v,r,M=[],p),y),r,y,p,c,o?M:y);break;default:Xv(S,k,k,k,[""],y,0,c,y)}}u=d=b=0,g=A=1,v=S="",p=i;break;case 58:p=1+tc(S),b=h;default:if(g<1){if(_==123)--g;else if(_==125&&g++==0&&YVe()==125)continue}switch(S+=Ow(_),_*g){case 38:A=d>0?1:(S+="\f",-1);break;case 44:c[u++]=(tc(S)-1)*A,A=1;break;case 64:bc()===45&&(S+=Uv(Ls())),f=bc(),d=p=tc(v=S+=eHe(Hv())),_++;break;case 45:h===45&&tc(S)==2&&(g=0)}}return s}function pG(e,t,n,o,r,s,i,c,l,u,d){for(var p=r-1,f=r===0?s:[""],b=VL(f),h=0,g=0,z=0;h<o;++h)for(var A=0,_=cz(e,p+1,p=VVe(g=i[h])),v=e;A<b;++A)(v=ole(g>0?f[A]+" "+_:Oo(_,/&\f/g,f[A])))&&(l[z++]=v);return Aw(e,t,n,r===0?FL:c,l,u,d)}function nHe(e,t,n){return Aw(e,t,n,tle,Ow(KVe()),cz(e,2,-2),0)}function fG(e,t,n,o){return Aw(e,t,n,$L,cz(e,0,o),cz(e,o+1,-1),o)}function L2(e,t){for(var n="",o=VL(e),r=0;r<o;r++)n+=t(e[r],r,e,t)||"";return n}function oHe(e,t,n,o){switch(e.type){case $Ve:if(e.children.length)break;case FVe:case $L:return e.return=e.return||e.value;case tle:return"";case nle:return e.return=e.value+"{"+L2(e.children,o)+"}";case FL:e.value=e.props.join(",")}return tc(n=L2(e.children,o))?e.return=e.value+"{"+n+"}":""}function rHe(e){var t=VL(e);return function(n,o,r,s){for(var i="",c=0;c<t;c++)i+=e[c](n,o,r,s)||"";return i}}function sHe(e){return function(t){t.root||(t=t.return)&&e(t)}}function ale(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var iHe=function(t,n,o){for(var r=0,s=0;r=s,s=bc(),r===38&&s===12&&(n[o]=1),!lz(s);)Ls();return L3(t,Ms)},aHe=function(t,n){var o=-1,r=44;do switch(lz(r)){case 0:r===38&&bc()===12&&(n[o]=1),t[o]+=iHe(Ms-1,n,o);break;case 2:t[o]+=Uv(r);break;case 4:if(r===44){t[++o]=bc()===58?"&\f":"",n[o]=t[o].length;break}default:t[o]+=Ow(r)}while(r=Ls());return t},cHe=function(t,n){return ile(aHe(sle(t),n))},bG=new WeakMap,lHe=function(t){if(!(t.type!=="rule"||!t.parent||t.length<1)){for(var n=t.value,o=t.parent,r=t.column===o.column&&t.line===o.line;o.type!=="rule";)if(o=o.parent,!o)return;if(!(t.props.length===1&&n.charCodeAt(0)!==58&&!bG.get(o))&&!r){bG.set(t,!0);for(var s=[],i=cHe(n,s),c=o.props,l=0,u=0;l<i.length;l++)for(var d=0;d<c.length;d++,u++)t.props[u]=s[l]?i[l].replace(/&\f/g,c[d]):c[d]+" "+i[l]}}},uHe=function(t){if(t.type==="decl"){var n=t.value;n.charCodeAt(0)===108&&n.charCodeAt(2)===98&&(t.return="",t.value="")}};function cle(e,t){switch(UVe(e,t)){case 5103:return zo+"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 zo+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return zo+e+lx+e+l1+e+e;case 6828:case 4268:return zo+e+l1+e+e;case 6165:return zo+e+l1+"flex-"+e+e;case 5187:return zo+e+Oo(e,/(\w+).+(:[^]+)/,zo+"box-$1$2"+l1+"flex-$1$2")+e;case 5443:return zo+e+l1+"flex-item-"+Oo(e,/flex-|-self/,"")+e;case 4675:return zo+e+l1+"flex-line-pack"+Oo(e,/align-content|flex-|-self/,"")+e;case 5548:return zo+e+l1+Oo(e,"shrink","negative")+e;case 5292:return zo+e+l1+Oo(e,"basis","preferred-size")+e;case 6060:return zo+"box-"+Oo(e,"-grow","")+zo+e+l1+Oo(e,"grow","positive")+e;case 4554:return zo+Oo(e,/([^-])(transform)/g,"$1"+zo+"$2")+e;case 6187:return Oo(Oo(Oo(e,/(zoom-|grab)/,zo+"$1"),/(image-set)/,zo+"$1"),e,"")+e;case 5495:case 3959:return Oo(e,/(image-set\([^]*)/,zo+"$1$`$1");case 4968:return Oo(Oo(e,/(.+:)(flex-)?(.*)/,zo+"box-pack:$3"+l1+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+zo+e+e;case 4095:case 3583:case 4068:case 2532:return Oo(e,/(.+)-inline(.+)/,zo+"$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(tc(e)-1-t>6)switch(U0(e,t+1)){case 109:if(U0(e,t+4)!==45)break;case 102:return Oo(e,/(.+:)(.+)-([^]+)/,"$1"+zo+"$2-$3$1"+lx+(U0(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~m8(e,"stretch")?cle(Oo(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(U0(e,t+1)!==115)break;case 6444:switch(U0(e,tc(e)-3-(~m8(e,"!important")&&10))){case 107:return Oo(e,":",":"+zo)+e;case 101:return Oo(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+zo+(U0(e,14)===45?"inline-":"")+"box$3$1"+zo+"$2$3$1"+l1+"$2box$3")+e}break;case 5936:switch(U0(e,t+11)){case 114:return zo+e+l1+Oo(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return zo+e+l1+Oo(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return zo+e+l1+Oo(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return zo+e+l1+e+e}return e}var dHe=function(t,n,o,r){if(t.length>-1&&!t.return)switch(t.type){case $L:t.return=cle(t.value,t.length);break;case nle:return L2([_g(t,{value:Oo(t.value,"@","@"+zo)})],r);case FL:if(t.length)return GVe(t.props,function(s){switch(XVe(s,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return L2([_g(t,{props:[Oo(s,/:(read-\w+)/,":"+lx+"$1")]})],r);case"::placeholder":return L2([_g(t,{props:[Oo(s,/:(plac\w+)/,":"+zo+"input-$1")]}),_g(t,{props:[Oo(s,/:(plac\w+)/,":"+lx+"$1")]}),_g(t,{props:[Oo(s,/:(plac\w+)/,l1+"input-$1")]})],r)}return""})}},pHe=[dHe],HL=function(t){var n=t.key;if(n==="css"){var o=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(o,function(g){var z=g.getAttribute("data-emotion");z.indexOf(" ")!==-1&&(document.head.appendChild(g),g.setAttribute("data-s",""))})}var r=t.stylisPlugins||pHe,s={},i,c=[];i=t.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+n+' "]'),function(g){for(var z=g.getAttribute("data-emotion").split(" "),A=1;A<z.length;A++)s[z[A]]=!0;c.push(g)});var l,u=[lHe,uHe];{var d,p=[oHe,sHe(function(g){d.insert(g)})],f=rHe(u.concat(r,p)),b=function(z){return L2(tHe(z),f)};l=function(z,A,_,v){d=_,b(z?z+"{"+A.styles+"}":A.styles),v&&(h.inserted[A.name]=!0)}}var h={key:n,sheet:new DVe({key:n,container:i,nonce:t.nonce,speedy:t.speedy,prepend:t.prepend,insertionPoint:t.insertionPoint}),nonce:t.nonce,inserted:s,registered:{},insert:l};return h.sheet.hydrate(c),h};function uz(){return uz=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)({}).hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},uz.apply(null,arguments)}var gC={exports:{}},So={};/** @license React v16.13.1 * 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 hG;function bHe(){if(hG)return So;hG=1;var e=typeof Symbol=="function"&&Symbol.for,t=e?Symbol.for("react.element"):60103,n=e?Symbol.for("react.portal"):60106,o=e?Symbol.for("react.fragment"):60107,r=e?Symbol.for("react.strict_mode"):60108,s=e?Symbol.for("react.profiler"):60114,i=e?Symbol.for("react.provider"):60109,c=e?Symbol.for("react.context"):60110,l=e?Symbol.for("react.async_mode"):60111,u=e?Symbol.for("react.concurrent_mode"):60111,d=e?Symbol.for("react.forward_ref"):60112,p=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,b=e?Symbol.for("react.memo"):60115,h=e?Symbol.for("react.lazy"):60116,g=e?Symbol.for("react.block"):60121,z=e?Symbol.for("react.fundamental"):60117,A=e?Symbol.for("react.responder"):60118,_=e?Symbol.for("react.scope"):60119;function v(y){if(typeof y=="object"&&y!==null){var k=y.$$typeof;switch(k){case t:switch(y=y.type,y){case l:case u:case o:case s:case r:case p:return y;default:switch(y=y&&y.$$typeof,y){case c:case d:case h:case b:case i:return y;default:return k}}case n:return k}}}function M(y){return v(y)===u}return So.AsyncMode=l,So.ConcurrentMode=u,So.ContextConsumer=c,So.ContextProvider=i,So.Element=t,So.ForwardRef=d,So.Fragment=o,So.Lazy=h,So.Memo=b,So.Portal=n,So.Profiler=s,So.StrictMode=r,So.Suspense=p,So.isAsyncMode=function(y){return M(y)||v(y)===l},So.isConcurrentMode=M,So.isContextConsumer=function(y){return v(y)===c},So.isContextProvider=function(y){return v(y)===i},So.isElement=function(y){return typeof y=="object"&&y!==null&&y.$$typeof===t},So.isForwardRef=function(y){return v(y)===d},So.isFragment=function(y){return v(y)===o},So.isLazy=function(y){return v(y)===h},So.isMemo=function(y){return v(y)===b},So.isPortal=function(y){return v(y)===n},So.isProfiler=function(y){return v(y)===s},So.isStrictMode=function(y){return v(y)===r},So.isSuspense=function(y){return v(y)===p},So.isValidElementType=function(y){return typeof y=="string"||typeof y=="function"||y===o||y===u||y===s||y===r||y===p||y===f||typeof y=="object"&&y!==null&&(y.$$typeof===h||y.$$typeof===b||y.$$typeof===i||y.$$typeof===c||y.$$typeof===d||y.$$typeof===z||y.$$typeof===A||y.$$typeof===_||y.$$typeof===g)},So.typeOf=v,So}var mG;function hHe(){return mG||(mG=1,MC.exports=bHe()),MC.exports}var zC,gG;function mHe(){if(gG)return zC;gG=1;var e=hHe(),t={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},n={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},r={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};s[e.ForwardRef]=o,s[e.Memo]=r;function i(h){return e.isMemo(h)?r:s[h.$$typeof]||t}var c=Object.defineProperty,l=Object.getOwnPropertyNames,u=Object.getOwnPropertySymbols,d=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,f=Object.prototype;function b(h,g,z){if(typeof g!="string"){if(f){var A=p(g);A&&A!==f&&b(h,A,z)}var _=l(g);u&&(_=_.concat(u(g)));for(var v=i(h),M=i(g),y=0;y<_.length;++y){var k=_[y];if(!n[k]&&!(z&&z[k])&&!(M&&M[k])&&!(v&&v[k])){var S=d(g,k);try{c(h,k,S)}catch{}}}}return h}return zC=b,zC}mHe();var gHe=!0;function XL(e,t,n){var o="";return n.split(" ").forEach(function(r){e[r]!==void 0?t.push(e[r]+";"):r&&(o+=r+" ")}),o}var lle=function(t,n,o){var r=t.key+"-"+n.name;(o===!1||gHe===!1)&&t.registered[r]===void 0&&(t.registered[r]=n.styles)},GL=function(t,n,o){lle(t,n,o);var r=t.key+"-"+n.name;if(t.inserted[n.name]===void 0){var s=n;do t.insert(n===s?"."+r:"",s,t.sheet,!0),s=s.next;while(s!==void 0)}};function MHe(e){for(var t=0,n,o=0,r=e.length;r>=4;++o,r-=4)n=e.charCodeAt(o)&255|(e.charCodeAt(++o)&255)<<8|(e.charCodeAt(++o)&255)<<16|(e.charCodeAt(++o)&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(r){case 3:t^=(e.charCodeAt(o+2)&255)<<16;case 2:t^=(e.charCodeAt(o+1)&255)<<8;case 1:t^=e.charCodeAt(o)&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 zHe={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},OHe=!1,yHe=/[A-Z]|^ms/g,AHe=/_EMO_([^_]+?)_([^]*?)_EMO_/g,ule=function(t){return t.charCodeAt(1)===45},MG=function(t){return t!=null&&typeof t!="boolean"},OC=ale(function(e){return ule(e)?e:e.replace(yHe,"-$&").toLowerCase()}),zG=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(AHe,function(o,r,s){return nc={name:r,styles:s,next:nc},r})}return zHe[t]!==1&&!ule(t)&&typeof n=="number"&&n!==0?n+"px":n},vHe="Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.";function dz(e,t,n){if(n==null)return"";var o=n;if(o.__emotion_styles!==void 0)return o;switch(typeof n){case"boolean":return"";case"object":{var r=n;if(r.anim===1)return nc={name:r.name,styles:r.styles,next:nc},r.name;var s=n;if(s.styles!==void 0){var i=s.next;if(i!==void 0)for(;i!==void 0;)nc={name:i.name,styles:i.styles,next:nc},i=i.next;var c=s.styles+";";return c}return xHe(e,t,n)}case"function":{if(e!==void 0){var l=nc,u=n(e);return nc=l,dz(e,t,u)}break}}var d=n;if(t==null)return d;var p=t[d];return p!==void 0?p:d}function xHe(e,t,n){var o="";if(Array.isArray(n))for(var r=0;r<n.length;r++)o+=dz(e,t,n[r])+";";else for(var s in n){var i=n[s];if(typeof i!="object"){var c=i;t!=null&&t[c]!==void 0?o+=s+"{"+t[c]+"}":MG(c)&&(o+=OC(s)+":"+zG(s,c)+";")}else{if(s==="NO_COMPONENT_SELECTOR"&&OHe)throw new Error(vHe);if(Array.isArray(i)&&typeof i[0]=="string"&&(t==null||t[i[0]]===void 0))for(var l=0;l<i.length;l++)MG(i[l])&&(o+=OC(s)+":"+zG(s,i[l])+";");else{var u=dz(e,t,i);switch(s){case"animation":case"animationName":{o+=OC(s)+":"+u+";";break}default:o+=s+"{"+u+"}"}}}}return o}var OG=/label:\s*([^\s;{]+)\s*(;|$)/g,nc;function xM(e,t,n){if(e.length===1&&typeof e[0]=="object"&&e[0]!==null&&e[0].styles!==void 0)return e[0];var o=!0,r="";nc=void 0;var s=e[0];if(s==null||s.raw===void 0)o=!1,r+=dz(n,t,s);else{var i=s;r+=i[0]}for(var c=1;c<e.length;c++)if(r+=dz(n,t,e[c]),o){var l=s;r+=l[c]}OG.lastIndex=0;for(var u="",d;(d=OG.exec(r))!==null;)u+="-"+d[1];var p=MHe(r)+u;return{name:p,styles:r,next:nc}}var wHe=function(t){return t()},_He=hE.useInsertionEffect?hE.useInsertionEffect:!1,kHe=_He||wHe,KL=x.createContext(typeof HTMLElement<"u"?UL({key:"css"}):null),SHe=KL.Provider,CHe=function(){return x.useContext(KL)},qHe=function(t){return x.forwardRef(function(n,o){var r=x.useContext(KL);return t(n,r,o)})},RHe=x.createContext({});function Xe(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return xM(t)}var tp=function(){var t=Xe.apply(void 0,arguments),n="animation-"+t.name;return{name:n,styles:"@keyframes "+n+"{"+t.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}};function yG(e,t){if(e.inserted[t.name]===void 0)return e.insert("",t,e.sheet,!0)}function AG(e,t,n){var o=[],r=XL(e,o,n);return o.length<2?n:r+t(o)}var THe=function(t){var n=UL(t);n.sheet.speedy=function(c){this.isSpeedy=c},n.compat=!0;var o=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];var p=xM(u,n.registered,void 0);return GL(n,p,!1),n.key+"-"+p.name},r=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];var p=xM(u,n.registered),f="animation-"+p.name;return yG(n,{name:p.name,styles:"@keyframes "+f+"{"+p.styles+"}"}),f},s=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];var p=xM(u,n.registered);yG(n,p)},i=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];return AG(n.registered,o,EHe(u))};return{css:o,cx:i,injectGlobal:s,keyframes:r,hydrate:function(l){l.forEach(function(u){n.inserted[u]=!0})},flush:function(){n.registered={},n.inserted={},n.sheet.flush()},sheet:n.sheet,cache:n,getRegisteredStyles:XL.bind(null,n.registered),merge:AG.bind(null,n.registered,o)}},EHe=function e(t){for(var n="",o=0;o<t.length;o++){var r=t[o];if(r!=null){var s=void 0;switch(typeof r){case"boolean":break;case"object":{if(Array.isArray(r))s=e(r);else{s="";for(var i in r)r[i]&&i&&(s&&(s+=" "),s+=i)}break}default:s=r}s&&(n&&(n+=" "),n+=s)}}return n},WHe=THe({key:"css"}),NHe=WHe.cx;const BHe=e=>typeof e<"u"&&e!==null&&["name","styles"].every(t=>typeof e[t]<"u"),ro=()=>{const e=CHe();return x.useCallback((...n)=>{if(e===null)throw new Error("The `useCx` hook should be only used within a valid Emotion Cache Context");return NHe(...n.map(o=>BHe(o)?(GL(e,o,!1),`${e.key}-${o.name}`):o))},[e])},P3={name:"kv6lnz",styles:"box-sizing:border-box;*,*::before,*::after{box-sizing:inherit;}"};let yC;Xs([Gs]);function LHe(){if(!(typeof document>"u")){if(!yC){const e=document.createElement("div");e.setAttribute("data-g2-color-computation-node",""),document.body.appendChild(e),yC=e}return yC}}function PHe(e){return typeof e!="string"?!1:an(e).isValid()}function jHe(e){if(typeof e!="string")return"";if(PHe(e))return e;if(!e.includes("var(")||typeof document>"u")return"";const t=LHe();if(!t)return"";t.style.background=e;const n=window?.getComputedStyle(t).background;return t.style.background="",n||""}const IHe=Hs(jHe);function DHe(e){const t=IHe(e);return an(t).isLight()?"#000000":"#ffffff"}function FHe(e){return DHe(e)==="#000000"?"dark":"light"}const vG=new RegExp(/-left/g),xG=new RegExp(/-right/g),wG=new RegExp(/Left/g),_G=new RegExp(/Right/g);function $He(e){return e==="left"?"right":e==="right"?"left":vG.test(e)?e.replace(vG,"-right"):xG.test(e)?e.replace(xG,"-left"):wG.test(e)?e.replace(wG,"Right"):_G.test(e)?e.replace(_G,"Left"):e}const VHe=(e={})=>Object.fromEntries(Object.entries(e).map(([t,n])=>[$He(t),n]));function Go(e={},t){return()=>t?jt()?Xe(t,"",""):Xe(e,"",""):jt()?Xe(VHe(e),"",""):Xe(e,"","")}Go.watch=()=>jt();const HHe={"default.fontFamily":"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif","default.fontSize":"13px","helpText.fontSize":"12px",mobileTextMinFontSize:"16px"};function ua(e){var t;return(t=HHe[e])!==null&&t!==void 0?t:""}const UHe={huge:"1440px",wide:"1280px","x-large":"1080px",large:"960px",medium:"782px",small:"600px",mobile:"480px","zoomed-in":"280px"},XHe=e=>`@media (min-width: ${UHe[e]})`,GHe="4px";function Je(e){if(typeof e>"u")return;if(!e)return"0";const t=typeof e=="number"?e:Number(e);return typeof window<"u"&&window.CSS?.supports?.("margin",e.toString())||Number.isNaN(t)?e.toString():`calc(${GHe} * ${e})`}const Kv="#fff",Fa={900:"#1e1e1e",800:"#2f2f2f",700:"#757575",600:"#949494",400:"#ccc",300:"#ddd",200:"#e0e0e0",100:"#f0f0f0"},KHe={yellow:"#f0b849",red:"#d94f4f",green:"#4ab866"},$a={accent:"var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))",accentDarker10:"var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6))",accentDarker20:"var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6))",accentInverted:`var(--wp-components-color-accent-inverted, ${Kv})`,background:`var(--wp-components-color-background, ${Kv})`,foreground:`var(--wp-components-color-foreground, ${Fa[900]})`,foregroundInverted:`var(--wp-components-color-foreground-inverted, ${Kv})`,gray:{900:`var(--wp-components-color-foreground, ${Fa[900]})`,800:`var(--wp-components-color-gray-800, ${Fa[800]})`,700:`var(--wp-components-color-gray-700, ${Fa[700]})`,600:`var(--wp-components-color-gray-600, ${Fa[600]})`,400:`var(--wp-components-color-gray-400, ${Fa[400]})`,300:`var(--wp-components-color-gray-300, ${Fa[300]})`,200:`var(--wp-components-color-gray-200, ${Fa[200]})`,100:`var(--wp-components-color-gray-100, ${Fa[100]})`}},YHe={background:$a.background,backgroundDisabled:$a.gray[100],border:$a.gray[600],borderHover:$a.gray[700],borderFocus:$a.accent,borderDisabled:$a.gray[400],textDisabled:$a.gray[600],darkGrayPlaceholder:`color-mix(in srgb, ${$a.foreground}, transparent 38%)`,lightGrayPlaceholder:`color-mix(in srgb, ${$a.background}, transparent 35%)`},Ze=Object.freeze({gray:Fa,white:Kv,alert:KHe,theme:$a,ui:YHe}),kg="36px",ZHe={controlPaddingX:12,controlPaddingXSmall:8,controlPaddingXLarge:12*1.3334,controlBoxShadowFocus:`0 0 0 0.5px ${Ze.theme.accent}`,controlHeight:kg,controlHeightXSmall:`calc( ${kg} * 0.6 )`,controlHeightSmall:`calc( ${kg} * 0.8 )`,controlHeightLarge:`calc( ${kg} * 1.2 )`,controlHeightXLarge:`calc( ${kg} * 1.4 )`},Ye=Object.assign({},ZHe,{colorDivider:"rgba(0, 0, 0, 0.1)",colorScrollbarThumb:"rgba(0, 0, 0, 0.2)",colorScrollbarThumbHover:"rgba(0, 0, 0, 0.5)",colorScrollbarTrack:"rgba(0, 0, 0, 0.04)",elevationIntensity:1,radiusXSmall:"1px",radiusSmall:"2px",radiusMedium:"4px",radiusLarge:"8px",radiusFull:"9999px",radiusRound:"50%",borderWidth:"1px",borderWidthFocus:"1.5px",borderWidthTab:"4px",spinnerSize:16,fontSize:"13px",fontSizeH1:"calc(2.44 * 13px)",fontSizeH2:"calc(1.95 * 13px)",fontSizeH3:"calc(1.56 * 13px)",fontSizeH4:"calc(1.25 * 13px)",fontSizeH5:"13px",fontSizeH6:"calc(0.8 * 13px)",fontSizeInputMobile:"16px",fontSizeMobile:"15px",fontSizeSmall:"calc(0.92 * 13px)",fontSizeXSmall:"calc(0.75 * 13px)",fontLineHeightBase:"1.4",fontWeight:"normal",fontWeightHeading:"600",gridBase:"4px",cardPaddingXSmall:`${Je(2)}`,cardPaddingSmall:`${Je(4)}`,cardPaddingMedium:`${Je(4)} ${Je(6)}`,cardPaddingLarge:`${Je(6)} ${Je(8)}`,elevationXSmall:"0 1px 1px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02), 0 3px 3px rgba(0, 0, 0, 0.02), 0 4px 4px rgba(0, 0, 0, 0.01)",elevationSmall:"0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.04), 0 6px 6px rgba(0, 0, 0, 0.03), 0 8px 8px rgba(0, 0, 0, 0.02)",elevationMedium:"0 2px 3px rgba(0, 0, 0, 0.05), 0 4px 5px rgba(0, 0, 0, 0.04), 0 12px 12px rgba(0, 0, 0, 0.03), 0 16px 16px rgba(0, 0, 0, 0.02)",elevationLarge:"0 5px 15px rgba(0, 0, 0, 0.08), 0 15px 27px rgba(0, 0, 0, 0.07), 0 30px 36px rgba(0, 0, 0, 0.04), 0 50px 43px rgba(0, 0, 0, 0.02)",surfaceBackgroundColor:Ze.white,surfaceBackgroundSubtleColor:"#F3F3F3",surfaceBackgroundTintColor:"#F5F5F5",surfaceBorderColor:"rgba(0, 0, 0, 0.1)",surfaceBorderBoldColor:"rgba(0, 0, 0, 0.15)",surfaceBorderSubtleColor:"rgba(0, 0, 0, 0.05)",surfaceBackgroundTertiaryColor:Ze.white,surfaceColor:Ze.white,transitionDuration:"200ms",transitionDurationFast:"160ms",transitionDurationFaster:"120ms",transitionDurationFastest:"100ms",transitionTimingFunction:"cubic-bezier(0.08, 0.52, 0.52, 1)",transitionTimingFunctionControl:"cubic-bezier(0.12, 0.8, 0.32, 1)"}),dle={name:"9amh4a",styles:"font-size:11px;font-weight:500;line-height:1.4;text-transform:uppercase"},YL=x.createContext({}),ple=()=>x.useContext(YL);function QHe({value:e}){const t=ple(),n=x.useRef(e);return FL(()=>{N0(n.current,e)&&n.current!==e&&globalThis.SCRIPT_DEBUG===!0&&zn(`Please memoize your context: ${JSON.stringify(e)}`)},[e]),x.useMemo(()=>B0e(t??{},e??{},{isMergeableObject:a3}),[t,e])}const JHe=({children:e,value:t})=>{const n=QHe({value:t});return a.jsx(YL.Provider,{value:n,children:e})},j3=x.memo(JHe),eUe="data-wp-component",tUe="data-wp-c16t",d2="__contextSystemKey__";function nUe(e){return`components-${Ti(e)}`}const fle=Hs(nUe);function Rn(e,t){return ble(e,t,{forwardsRef:!0})}function ZL(e,t){return ble(e,t)}function ble(e,t,n){const o=n?.forwardsRef?x.forwardRef(e):e;typeof t>"u"&&globalThis.SCRIPT_DEBUG===!0&&zn("contextConnect: Please provide a namespace");let r=o[d2]||[t];return Array.isArray(t)&&(r=[...r,...t]),typeof t=="string"&&(r=[...r,t]),Object.assign(o,{[d2]:[...new Set(r)],displayName:t,selector:`.${fle(t)}`})}function kG(e){if(!e)return[];let t=[];return e[d2]&&(t=e[d2]),e.type&&e.type[d2]&&(t=e.type[d2]),t}function hle(e,t){return e?typeof t=="string"?kG(e).includes(t):Array.isArray(t)?t.some(n=>kG(e).includes(n)):!1:!1}function oUe(e){return{[eUe]:e}}function rUe(){return{[tUe]:!0}}function vn(e,t){const n=ple();typeof t>"u"&&globalThis.SCRIPT_DEBUG===!0&&zn("useContextSystem: Please provide a namespace");const o=n?.[t]||{},r={...rUe(),...oUe(t)},{_overrides:s,...i}=o,c=Object.entries(i).length?Object.assign({},i,e):e,u=ro()(fle(t),e.className),d=typeof c.renderChildren=="function"?c.renderChildren(c):c.children;for(const p in c)r[p]=c[p];for(const p in s)r[p]=s[p];return d!==void 0&&(r.children=d),r.className=u,r}const sUe={border:0,clip:"rect(1px, 1px, 1px, 1px)",WebkitClipPath:"inset( 50% )",clipPath:"inset( 50% )",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",wordWrap:"normal"};var iUe=/^((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|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|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)-.*))$/,aUe=ale(function(e){return iUe.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),cUe=aUe,lUe=function(t){return t!=="theme"},SG=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?cUe:lUe},CG=function(t,n,o){var r;if(n){var s=n.shouldForwardProp;r=t.__emotion_forwardProp&&s?function(i){return t.__emotion_forwardProp(i)&&s(i)}:s}return typeof r!="function"&&o&&(r=t.__emotion_forwardProp),r},uUe=!1,dUe=function(t){var n=t.cache,o=t.serialized,r=t.isStringTag;return lle(n,o,r),kHe(function(){return GL(n,o,r)}),null},He=function e(t,n){var o=t.__emotion_real===t,r=o&&t.__emotion_base||t,s,i;n!==void 0&&(s=n.label,i=n.target);var c=CG(t,n,o),l=c||SG(r),u=!l("as");return function(){var d=arguments,p=o&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(s!==void 0&&p.push("label:"+s+";"),d[0]==null||d[0].raw===void 0)p.push.apply(p,d);else{p.push(d[0][0]);for(var f=d.length,b=1;b<f;b++)p.push(d[b],d[0][b])}var h=qHe(function(g,z,A){var _=u&&g.as||r,v="",M=[],y=g;if(g.theme==null){y={};for(var k in g)y[k]=g[k];y.theme=x.useContext(RHe)}typeof g.className=="string"?v=XL(z.registered,M,g.className):g.className!=null&&(v=g.className+" ");var S=xM(p.concat(M),z.registered,y);v+=z.key+"-"+S.name,i!==void 0&&(v+=" "+i);var C=u&&c===void 0?SG(_):l,R={};for(var T in g)u&&T==="as"||C(T)&&(R[T]=g[T]);return R.className=v,A&&(R.ref=A),x.createElement(x.Fragment,null,x.createElement(dUe,{cache:z,serialized:S,isStringTag:typeof _=="string"}),x.createElement(_,R))});return h.displayName=s!==void 0?s:"Styled("+(typeof r=="string"?r:r.displayName||r.name||"Component")+")",h.defaultProps=t.defaultProps,h.__emotion_real=h,h.__emotion_base=r,h.__emotion_styles=p,h.__emotion_forwardProp=c,Object.defineProperty(h,"toString",{value:function(){return i===void 0&&uUe?"NO_COMPONENT_SELECTOR":"."+i}}),h.withComponent=function(g,z){return e(g,uz({},n,z,{shouldForwardProp:CG(h,z,!0)})).apply(void 0,p)},h}};const pUe=He("div",{target:"e19lxcc00"})("");function fUe({as:e,...t},n){return a.jsx(pUe,{as:e,ref:n,...t})}const mo=Object.assign(x.forwardRef(fUe),{selector:".components-view"});function bUe(e,t){const{style:n,...o}=vn(e,"VisuallyHidden");return a.jsx(mo,{ref:t,...o,style:{...sUe,...n||{}}})}const qn=Rn(bUe,"VisuallyHidden"),mle=[["top left","top center","top right"],["center left","center center","center right"],["bottom left","bottom center","bottom right"]],hUe={"top left":m("Top Left"),"top center":m("Top Center"),"top right":m("Top Right"),"center left":m("Center Left"),"center center":m("Center"),center:m("Center"),"center right":m("Center Right"),"bottom left":m("Bottom Left"),"bottom center":m("Bottom Center"),"bottom right":m("Bottom Right")},QL=mle.flat();function JL(e){const n=(e==="center"?"center center":e)?.replace("-"," ");return QL.includes(n)?n:void 0}function AC(e,t){const n=JL(t);if(!n)return;const o=n.replace(" ","-");return`${e}-${o}`}function mUe(e,t){const n=t?.replace(e+"-","");return JL(n)}function gUe(e="center"){const t=JL(e);if(!t)return;const n=QL.indexOf(t);return n>-1?n:void 0}const MUe=({size:e=92})=>Xe("direction:ltr;display:grid;grid-template-columns:repeat( 3, 1fr );grid-template-rows:repeat( 3, 1fr );box-sizing:border-box;width:",e,"px;aspect-ratio:1;border-radius:",Ye.radiusMedium,";outline:none;","");var zUe={name:"e0dnmk",styles:"cursor:pointer"};const OUe=He("div",{target:"e1r95csn3"})(MUe," border:1px solid transparent;",e=>e.disablePointerEvents?Xe("",""):zUe,";"),yUe=He("div",{target:"e1r95csn2"})({name:"1fbxn64",styles:"grid-column:1/-1;box-sizing:border-box;display:grid;grid-template-columns:repeat( 3, 1fr )"}),Yv=He("span",{target:"e1r95csn1"})({name:"e2kws5",styles:"position:relative;display:flex;align-items:center;justify-content:center;box-sizing:border-box;margin:0;padding:0;appearance:none;border:none;outline:none"}),qG=6,AUe=He("span",{target:"e1r95csn0"})("display:block;contain:strict;box-sizing:border-box;width:",qG,"px;aspect-ratio:1;margin:auto;color:",Ze.theme.gray[400],";border:",qG/2,"px solid currentColor;",Yv,"[data-active-item] &{color:",Ze.gray[900],";transform:scale( calc( 5 / 3 ) );}",Yv,":not([data-active-item]):hover &{color:",Ze.theme.accent,";}",Yv,"[data-focus-visible] &{outline:1px solid ",Ze.theme.accent,";outline-offset:1px;}@media not ( prefers-reduced-motion ){transition-property:color,transform;transition-duration:120ms;transition-timing-function:linear;}");function vUe({id:e,value:t,...n}){return a.jsx(B0,{text:hUe[t],children:a.jsxs(S1.Item,{id:e,render:a.jsx(Yv,{...n,role:"gridcell"}),children:[a.jsx(qn,{children:t}),a.jsx(AUe,{role:"presentation"})]})})}const Jg=24,eM=7,RG=(Jg-3*eM)/2,xUe=2,wUe=4;function _Ue({className:e,disablePointerEvents:t=!0,size:n,width:o,height:r,style:s={},value:i="center",...c}){var l,u;return a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${Jg} ${Jg}`,width:(l=n??o)!==null&&l!==void 0?l:Jg,height:(u=n??r)!==null&&u!==void 0?u:Jg,role:"presentation",className:oe("component-alignment-matrix-control-icon",e),style:{pointerEvents:t?"none":void 0,...s},...c,children:QL.map((d,p)=>{const f=gUe(i)===p?wUe:xUe;return a.jsx(S0,{x:RG+p%3*eM+(eM-f)/2,y:RG+Math.floor(p/3)*eM+(eM-f)/2,width:f,height:f,fill:"currentColor"},d)})})}function gle({className:e,id:t,label:n=m("Alignment Matrix Control"),defaultValue:o="center center",value:r,onChange:s,width:i=92,...c}){const l=vt(gle,"alignment-matrix-control",t),u=x.useCallback(p=>{const f=mUe(l,p);f&&s?.(f)},[l,s]),d=oe("component-alignment-matrix-control",e);return a.jsx(S1,{defaultActiveId:AC(l,o),activeId:AC(l,r),setActiveId:u,rtl:jt(),render:a.jsx(OUe,{...c,"aria-label":n,className:d,id:l,role:"grid",size:i}),children:mle.map((p,f)=>a.jsx(S1.Row,{render:a.jsx(yUe,{role:"row"}),children:p.map(b=>a.jsx(vUe,{id:AC(l,b),value:b},b))},f))})}const TG=Object.assign(gle,{Icon:Object.assign(_Ue,{displayName:"AlignmentMatrixControl.Icon"})});function kUe(e){return e==="appear"?"top":"left"}function Mle(e){if(e.type==="loading")return"components-animate__loading";const{type:t,origin:n=kUe(t)}=e;if(t==="appear"){const[o,r="center"]=n.split(" ");return oe("components-animate__appear",{["is-from-"+r]:r!=="center",["is-from-"+o]:o!=="middle"})}if(t==="slide-in")return oe("components-animate__slide-in","is-from-"+n)}function SUe(e){if(typeof Proxy>"u")return e;const t=new Map,n=(...o)=>e(...o);return new Proxy(n,{get:(o,r)=>r==="create"?e:(t.has(r)||t.set(r,e(r)),t.get(r))})}function pz(e){return e!==null&&typeof e=="object"&&typeof e.start=="function"}const z8=e=>Array.isArray(e);function zle(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let o=0;o<n;o++)if(t[o]!==e[o])return!1;return!0}function fz(e){return typeof e=="string"||Array.isArray(e)}function EG(e){const t=[{},{}];return e?.values.forEach((n,o)=>{t[0][o]=n.get(),t[1][o]=n.getVelocity()}),t}function eP(e,t,n,o){if(typeof t=="function"){const[r,s]=EG(o);t=t(n!==void 0?n:e.custom,r,s)}if(typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"){const[r,s]=EG(o);t=t(n!==void 0?n:e.custom,r,s)}return t}function xw(e,t,n){const o=e.getProps();return eP(o,t,n!==void 0?n:o.custom,e)}const tP=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],nP=["initial",...tP],I3=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],np=new Set(I3),wl=e=>e*1e3,_l=e=>e/1e3,CUe={type:"spring",stiffness:500,damping:25,restSpeed:10},qUe=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),RUe={type:"keyframes",duration:.8},TUe={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},EUe=(e,{keyframes:t})=>t.length>2?RUe:np.has(e)?e.startsWith("scale")?qUe(t[1]):CUe:TUe;function oP(e,t){return e?e[t]||e.default||e:void 0}const WUe={skipAnimations:!1,useManualTiming:!1},NUe=e=>e!==null;function ww(e,{repeat:t,repeatType:n="loop"},o){const r=e.filter(NUe),s=t&&n!=="loop"&&t%2===1?0:r.length-1;return!s||o===void 0?r[s]:o}const O1=e=>e;function BUe(e){let t=new Set,n=new Set,o=!1,r=!1;const s=new WeakSet;let i={delta:0,timestamp:0,isProcessing:!1};function c(u){s.has(u)&&(l.schedule(u),e()),u(i)}const l={schedule:(u,d=!1,p=!1)=>{const b=p&&o?t:n;return d&&s.add(u),b.has(u)||b.add(u),u},cancel:u=>{n.delete(u),s.delete(u)},process:u=>{if(i=u,o){r=!0;return}o=!0,[t,n]=[n,t],n.clear(),t.forEach(c),o=!1,r&&(r=!1,l.process(u))}};return l}const _A=["read","resolveKeyframes","update","preRender","render","postRender"],LUe=40;function Ole(e,t){let n=!1,o=!0;const r={delta:0,timestamp:0,isProcessing:!1},s=()=>n=!0,i=_A.reduce((A,_)=>(A[_]=BUe(s),A),{}),{read:c,resolveKeyframes:l,update:u,preRender:d,render:p,postRender:f}=i,b=()=>{const A=performance.now();n=!1,r.delta=o?1e3/60:Math.max(Math.min(A-r.timestamp,LUe),1),r.timestamp=A,r.isProcessing=!0,c.process(r),l.process(r),u.process(r),d.process(r),p.process(r),f.process(r),r.isProcessing=!1,n&&t&&(o=!1,e(b))},h=()=>{n=!0,o=!0,r.isProcessing||e(b)};return{schedule:_A.reduce((A,_)=>{const v=i[_];return A[_]=(M,y=!1,k=!1)=>(n||h(),v.schedule(M,y,k)),A},{}),cancel:A=>{for(let _=0;_<_A.length;_++)i[_A[_]].cancel(A)},state:r,steps:i}}const{schedule:Po,cancel:Rd,state:V0,steps:vC}=Ole(typeof requestAnimationFrame<"u"?requestAnimationFrame:O1,!0),yle=(e,t,n)=>(((1-3*n+3*t)*e+(3*n-6*t))*e+3*t)*e,PUe=1e-7,jUe=12;function IUe(e,t,n,o,r){let s,i,c=0;do i=t+(n-t)/2,s=yle(i,o,r)-e,s>0?n=i:t=i;while(Math.abs(s)>PUe&&++c<jUe);return i}function D3(e,t,n,o){if(e===t&&n===o)return O1;const r=s=>IUe(s,0,1,e,n);return s=>s===0||s===1?s:yle(r(s),t,o)}const Ale=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,vle=e=>t=>1-e(1-t),xle=D3(.33,1.53,.69,.99),rP=vle(xle),wle=Ale(rP),_le=e=>(e*=2)<1?.5*rP(e):.5*(2-Math.pow(2,-10*(e-1))),sP=e=>1-Math.sin(Math.acos(e)),kle=vle(sP),Sle=Ale(sP),Cle=e=>/^0[^.\s]+$/u.test(e);function DUe(e){return typeof e=="number"?e===0:e!==null?e==="none"||e==="0"||Cle(e):!0}let O8=O1;const qle=e=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(e),Rle=e=>t=>typeof t=="string"&&t.startsWith(e),Tle=Rle("--"),FUe=Rle("var(--"),iP=e=>FUe(e)?$Ue.test(e.split("/*")[0].trim()):!1,$Ue=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,VUe=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function HUe(e){const t=VUe.exec(e);if(!t)return[,];const[,n,o,r]=t;return[`--${n??o}`,r]}function Ele(e,t,n=1){const[o,r]=HUe(e);if(!o)return;const s=window.getComputedStyle(t).getPropertyValue(o);if(s){const i=s.trim();return qle(i)?parseFloat(i):i}return iP(r)?Ele(r,t,n+1):r}const Td=(e,t,n)=>n>t?t:n<e?e:n,sm={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},bz={...sm,transform:e=>Td(0,1,e)},kA={...sm,default:1},F3=e=>({test:t=>typeof t=="string"&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),ju=F3("deg"),hc=F3("%"),hn=F3("px"),UUe=F3("vh"),XUe=F3("vw"),WG={...hc,parse:e=>hc.parse(e)/100,transform:e=>hc.transform(e*100)},GUe=new Set(["width","height","top","left","right","bottom","x","y","translateX","translateY"]),NG=e=>e===sm||e===hn,BG=(e,t)=>parseFloat(e.split(", ")[t]),LG=(e,t)=>(n,{transform:o})=>{if(o==="none"||!o)return 0;const r=o.match(/^matrix3d\((.+)\)$/u);if(r)return BG(r[1],t);{const s=o.match(/^matrix\((.+)\)$/u);return s?BG(s[1],e):0}},KUe=new Set(["x","y","z"]),YUe=I3.filter(e=>!KUe.has(e));function ZUe(e){const t=[];return YUe.forEach(n=>{const o=e.getValue(n);o!==void 0&&(t.push([n,o.get()]),o.set(n.startsWith("scale")?1:0))}),t}const bh={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:LG(4,13),y:LG(5,14)};bh.translateX=bh.x;bh.translateY=bh.y;const Wle=e=>t=>t.test(e),QUe={test:e=>e==="auto",parse:e=>e},Nle=[sm,hn,hc,ju,XUe,UUe,QUe],PG=e=>Nle.find(Wle(e)),nf=new Set;let y8=!1,A8=!1;function Ble(){if(A8){const e=Array.from(nf).filter(o=>o.needsMeasurement),t=new Set(e.map(o=>o.element)),n=new Map;t.forEach(o=>{const r=ZUe(o);r.length&&(n.set(o,r),o.render())}),e.forEach(o=>o.measureInitialState()),t.forEach(o=>{o.render();const r=n.get(o);r&&r.forEach(([s,i])=>{var c;(c=o.getValue(s))===null||c===void 0||c.set(i)})}),e.forEach(o=>o.measureEndState()),e.forEach(o=>{o.suspendedScrollY!==void 0&&window.scrollTo(0,o.suspendedScrollY)})}A8=!1,y8=!1,nf.forEach(e=>e.complete()),nf.clear()}function Lle(){nf.forEach(e=>{e.readKeyframes(),e.needsMeasurement&&(A8=!0)})}function JUe(){Lle(),Ble()}class aP{constructor(t,n,o,r,s,i=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...t],this.onComplete=n,this.name=o,this.motionValue=r,this.element=s,this.isAsync=i}scheduleResolve(){this.isScheduled=!0,this.isAsync?(nf.add(this),y8||(y8=!0,Po.read(Lle),Po.resolveKeyframes(Ble))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:t,name:n,element:o,motionValue:r}=this;for(let s=0;s<t.length;s++)if(t[s]===null)if(s===0){const i=r?.get(),c=t[t.length-1];if(i!==void 0)t[0]=i;else if(o&&n){const l=o.readValue(n,c);l!=null&&(t[0]=l)}t[0]===void 0&&(t[0]=c),r&&i===void 0&&r.set(t[0])}else t[s]=t[s-1]}setFinalKeyframe(){}measureInitialState(){}renderEndStyles(){}measureEndState(){}complete(){this.isComplete=!0,this.onComplete(this.unresolvedKeyframes,this.finalKeyframe),nf.delete(this)}cancel(){this.isComplete||(this.isScheduled=!1,nf.delete(this))}resume(){this.isComplete||this.scheduleResolve()}}const wM=e=>Math.round(e*1e5)/1e5,cP=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu;function eXe(e){return e==null}const tXe=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,lP=(e,t)=>n=>!!(typeof n=="string"&&tXe.test(n)&&n.startsWith(e)||t&&!eXe(n)&&Object.prototype.hasOwnProperty.call(n,t)),Ple=(e,t,n)=>o=>{if(typeof o!="string")return o;const[r,s,i,c]=o.match(cP);return{[e]:parseFloat(r),[t]:parseFloat(s),[n]:parseFloat(i),alpha:c!==void 0?parseFloat(c):1}},nXe=e=>Td(0,255,e),xC={...sm,transform:e=>Math.round(nXe(e))},Gp={test:lP("rgb","red"),parse:Ple("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:o=1})=>"rgba("+xC.transform(e)+", "+xC.transform(t)+", "+xC.transform(n)+", "+wM(bz.transform(o))+")"};function oXe(e){let t="",n="",o="",r="";return e.length>5?(t=e.substring(1,3),n=e.substring(3,5),o=e.substring(5,7),r=e.substring(7,9)):(t=e.substring(1,2),n=e.substring(2,3),o=e.substring(3,4),r=e.substring(4,5),t+=t,n+=n,o+=o,r+=r),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(o,16),alpha:r?parseInt(r,16)/255:1}}const v8={test:lP("#"),parse:oXe,transform:Gp.transform},p2={test:lP("hsl","hue"),parse:Ple("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:o=1})=>"hsla("+Math.round(e)+", "+hc.transform(wM(t))+", "+hc.transform(wM(n))+", "+wM(bz.transform(o))+")"},f1={test:e=>Gp.test(e)||v8.test(e)||p2.test(e),parse:e=>Gp.test(e)?Gp.parse(e):p2.test(e)?p2.parse(e):v8.parse(e),transform:e=>typeof e=="string"?e:e.hasOwnProperty("red")?Gp.transform(e):p2.transform(e)},rXe=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;function sXe(e){var t,n;return isNaN(e)&&typeof e=="string"&&(((t=e.match(cP))===null||t===void 0?void 0:t.length)||0)+(((n=e.match(rXe))===null||n===void 0?void 0:n.length)||0)>0}const jle="number",Ile="color",iXe="var",aXe="var(",jG="${}",cXe=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function hz(e){const t=e.toString(),n=[],o={color:[],number:[],var:[]},r=[];let s=0;const c=t.replace(cXe,l=>(f1.test(l)?(o.color.push(s),r.push(Ile),n.push(f1.parse(l))):l.startsWith(aXe)?(o.var.push(s),r.push(iXe),n.push(l)):(o.number.push(s),r.push(jle),n.push(parseFloat(l))),++s,jG)).split(jG);return{values:n,split:c,indexes:o,types:r}}function Dle(e){return hz(e).values}function Fle(e){const{split:t,types:n}=hz(e),o=t.length;return r=>{let s="";for(let i=0;i<o;i++)if(s+=t[i],r[i]!==void 0){const c=n[i];c===jle?s+=wM(r[i]):c===Ile?s+=f1.transform(r[i]):s+=r[i]}return s}}const lXe=e=>typeof e=="number"?0:e;function uXe(e){const t=Dle(e);return Fle(e)(t.map(lXe))}const Ed={test:sXe,parse:Dle,createTransformer:Fle,getAnimatableNone:uXe},dXe=new Set(["brightness","contrast","saturate","opacity"]);function pXe(e){const[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[o]=n.match(cP)||[];if(!o)return e;const r=n.replace(o,"");let s=dXe.has(t)?1:0;return o!==n&&(s*=100),t+"("+s+r+")"}const fXe=/\b([a-z-]*)\(.*?\)/gu,x8={...Ed,getAnimatableNone:e=>{const t=e.match(fXe);return t?t.map(pXe).join(" "):e}},bXe={borderWidth:hn,borderTopWidth:hn,borderRightWidth:hn,borderBottomWidth:hn,borderLeftWidth:hn,borderRadius:hn,radius:hn,borderTopLeftRadius:hn,borderTopRightRadius:hn,borderBottomRightRadius:hn,borderBottomLeftRadius:hn,width:hn,maxWidth:hn,height:hn,maxHeight:hn,top:hn,right:hn,bottom:hn,left:hn,padding:hn,paddingTop:hn,paddingRight:hn,paddingBottom:hn,paddingLeft:hn,margin:hn,marginTop:hn,marginRight:hn,marginBottom:hn,marginLeft:hn,backgroundPositionX:hn,backgroundPositionY:hn},hXe={rotate:ju,rotateX:ju,rotateY:ju,rotateZ:ju,scale:kA,scaleX:kA,scaleY:kA,scaleZ:kA,skew:ju,skewX:ju,skewY:ju,distance:hn,translateX:hn,translateY:hn,translateZ:hn,x:hn,y:hn,z:hn,perspective:hn,transformPerspective:hn,opacity:bz,originX:WG,originY:WG,originZ:hn},IG={...sm,transform:Math.round},uP={...bXe,...hXe,zIndex:IG,size:hn,fillOpacity:bz,strokeOpacity:bz,numOctaves:IG},mXe={...uP,color:f1,backgroundColor:f1,outlineColor:f1,fill:f1,stroke:f1,borderColor:f1,borderTopColor:f1,borderRightColor:f1,borderBottomColor:f1,borderLeftColor:f1,filter:x8,WebkitFilter:x8},dP=e=>mXe[e];function $le(e,t){let n=dP(e);return n!==x8&&(n=Ed),n.getAnimatableNone?n.getAnimatableNone(t):void 0}const gXe=new Set(["auto","none","0"]);function MXe(e,t,n){let o=0,r;for(;o<e.length&&!r;){const s=e[o];typeof s=="string"&&!gXe.has(s)&&hz(s).values.length&&(r=e[o]),o++}if(r&&n)for(const s of t)e[s]=$le(n,r)}class Vle extends aP{constructor(t,n,o,r,s){super(t,n,o,r,s,!0)}readKeyframes(){const{unresolvedKeyframes:t,element:n,name:o}=this;if(!n||!n.current)return;super.readKeyframes();for(let l=0;l<t.length;l++){let u=t[l];if(typeof u=="string"&&(u=u.trim(),iP(u))){const d=Ele(u,n.current);d!==void 0&&(t[l]=d),l===t.length-1&&(this.finalKeyframe=u)}}if(this.resolveNoneKeyframes(),!GUe.has(o)||t.length!==2)return;const[r,s]=t,i=PG(r),c=PG(s);if(i!==c)if(NG(i)&&NG(c))for(let l=0;l<t.length;l++){const u=t[l];typeof u=="string"&&(t[l]=parseFloat(u))}else this.needsMeasurement=!0}resolveNoneKeyframes(){const{unresolvedKeyframes:t,name:n}=this,o=[];for(let r=0;r<t.length;r++)DUe(t[r])&&o.push(r);o.length&&MXe(t,o,n)}measureInitialState(){const{element:t,unresolvedKeyframes:n,name:o}=this;if(!t||!t.current)return;o==="height"&&(this.suspendedScrollY=window.pageYOffset),this.measuredOrigin=bh[o](t.measureViewportBox(),window.getComputedStyle(t.current)),n[0]=this.measuredOrigin;const r=n[n.length-1];r!==void 0&&t.getValue(o,r).jump(r,!1)}measureEndState(){var t;const{element:n,name:o,unresolvedKeyframes:r}=this;if(!n||!n.current)return;const s=n.getValue(o);s&&s.jump(this.measuredOrigin,!1);const i=r.length-1,c=r[i];r[i]=bh[o](n.measureViewportBox(),window.getComputedStyle(n.current)),c!==null&&this.finalKeyframe===void 0&&(this.finalKeyframe=c),!((t=this.removedTransforms)===null||t===void 0)&&t.length&&this.removedTransforms.forEach(([l,u])=>{n.getValue(l).set(u)}),this.resolveNoneKeyframes()}}function pP(e){return typeof e=="function"}let Zv;function zXe(){Zv=void 0}const mc={now:()=>(Zv===void 0&&mc.set(V0.isProcessing||WUe.useManualTiming?V0.timestamp:performance.now()),Zv),set:e=>{Zv=e,queueMicrotask(zXe)}},DG=(e,t)=>t==="zIndex"?!1:!!(typeof e=="number"||Array.isArray(e)||typeof e=="string"&&(Ed.test(e)||e==="0")&&!e.startsWith("url("));function OXe(e){const t=e[0];if(e.length===1)return!0;for(let n=0;n<e.length;n++)if(e[n]!==t)return!0}function yXe(e,t,n,o){const r=e[0];if(r===null)return!1;if(t==="display"||t==="visibility")return!0;const s=e[e.length-1],i=DG(r,t),c=DG(s,t);return!i||!c?!1:OXe(e)||(n==="spring"||pP(n))&&o}const AXe=40;class Hle{constructor({autoplay:t=!0,delay:n=0,type:o="keyframes",repeat:r=0,repeatDelay:s=0,repeatType:i="loop",...c}){this.isStopped=!1,this.hasAttemptedResolve=!1,this.createdAt=mc.now(),this.options={autoplay:t,delay:n,type:o,repeat:r,repeatDelay:s,repeatType:i,...c},this.updateFinishedPromise()}calcStartTime(){return this.resolvedAt?this.resolvedAt-this.createdAt>AXe?this.resolvedAt:this.createdAt:this.createdAt}get resolved(){return!this._resolved&&!this.hasAttemptedResolve&&JUe(),this._resolved}onKeyframesResolved(t,n){this.resolvedAt=mc.now(),this.hasAttemptedResolve=!0;const{name:o,type:r,velocity:s,delay:i,onComplete:c,onUpdate:l,isGenerator:u}=this.options;if(!u&&!yXe(t,o,r,s))if(i)this.options.duration=0;else{l?.(ww(t,this.options,n)),c?.(),this.resolveFinishedPromise();return}const d=this.initPlayback(t,n);d!==!1&&(this._resolved={keyframes:t,finalKeyframe:n,...d},this.onPostResolved())}onPostResolved(){}then(t,n){return this.currentFinishedPromise.then(t,n)}updateFinishedPromise(){this.currentFinishedPromise=new Promise(t=>{this.resolveFinishedPromise=t})}}function Ule(e,t){return t?e*(1e3/t):0}const vXe=5;function Xle(e,t,n){const o=Math.max(t-vXe,0);return Ule(n-e(o),t-o)}const wC=.001,xXe=.01,wXe=10,_Xe=.05,kXe=1;function SXe({duration:e=800,bounce:t=.25,velocity:n=0,mass:o=1}){let r,s,i=1-t;i=Td(_Xe,kXe,i),e=Td(xXe,wXe,_l(e)),i<1?(r=u=>{const d=u*i,p=d*e,f=d-n,b=w8(u,i),h=Math.exp(-p);return wC-f/b*h},s=u=>{const p=u*i*e,f=p*n+n,b=Math.pow(i,2)*Math.pow(u,2)*e,h=Math.exp(-p),g=w8(Math.pow(u,2),i);return(-r(u)+wC>0?-1:1)*((f-b)*h)/g}):(r=u=>{const d=Math.exp(-u*e),p=(u-n)*e+1;return-wC+d*p},s=u=>{const d=Math.exp(-u*e),p=(n-u)*(e*e);return d*p});const c=5/e,l=qXe(r,s,c);if(e=wl(e),isNaN(l))return{stiffness:100,damping:10,duration:e};{const u=Math.pow(l,2)*o;return{stiffness:u,damping:i*2*Math.sqrt(o*u),duration:e}}}const CXe=12;function qXe(e,t,n){let o=n;for(let r=1;r<CXe;r++)o=o-e(o)/t(o);return o}function w8(e,t){return e*Math.sqrt(1-t*t)}const RXe=["duration","bounce"],TXe=["stiffness","damping","mass"];function FG(e,t){return t.some(n=>e[n]!==void 0)}function EXe(e){let t={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...e};if(!FG(e,TXe)&&FG(e,RXe)){const n=SXe(e);t={...t,...n,mass:1},t.isResolvedFromDuration=!0}return t}function Gle({keyframes:e,restDelta:t,restSpeed:n,...o}){const r=e[0],s=e[e.length-1],i={done:!1,value:r},{stiffness:c,damping:l,mass:u,duration:d,velocity:p,isResolvedFromDuration:f}=EXe({...o,velocity:-_l(o.velocity||0)}),b=p||0,h=l/(2*Math.sqrt(c*u)),g=s-r,z=_l(Math.sqrt(c/u)),A=Math.abs(g)<5;n||(n=A?.01:2),t||(t=A?.005:.5);let _;if(h<1){const v=w8(z,h);_=M=>{const y=Math.exp(-h*z*M);return s-y*((b+h*z*g)/v*Math.sin(v*M)+g*Math.cos(v*M))}}else if(h===1)_=v=>s-Math.exp(-z*v)*(g+(b+z*g)*v);else{const v=z*Math.sqrt(h*h-1);_=M=>{const y=Math.exp(-h*z*M),k=Math.min(v*M,300);return s-y*((b+h*z*g)*Math.sinh(k)+v*g*Math.cosh(k))/v}}return{calculatedDuration:f&&d||null,next:v=>{const M=_(v);if(f)i.done=v>=d;else{let y=0;h<1&&(y=v===0?wl(b):Xle(_,v,M));const k=Math.abs(y)<=n,S=Math.abs(s-M)<=t;i.done=k&&S}return i.value=i.done?s:M,i}}}function $G({keyframes:e,velocity:t=0,power:n=.8,timeConstant:o=325,bounceDamping:r=10,bounceStiffness:s=500,modifyTarget:i,min:c,max:l,restDelta:u=.5,restSpeed:d}){const p=e[0],f={done:!1,value:p},b=C=>c!==void 0&&C<c||l!==void 0&&C>l,h=C=>c===void 0?l:l===void 0||Math.abs(c-C)<Math.abs(l-C)?c:l;let g=n*t;const z=p+g,A=i===void 0?z:i(z);A!==z&&(g=A-p);const _=C=>-g*Math.exp(-C/o),v=C=>A+_(C),M=C=>{const R=_(C),T=v(C);f.done=Math.abs(R)<=u,f.value=f.done?A:T};let y,k;const S=C=>{b(f.value)&&(y=C,k=Gle({keyframes:[f.value,h(f.value)],velocity:Xle(v,C,f.value),damping:r,stiffness:s,restDelta:u,restSpeed:d}))};return S(0),{calculatedDuration:null,next:C=>{let R=!1;return!k&&y===void 0&&(R=!0,M(C),S(C)),y!==void 0&&C>=y?k.next(C-y):(!R&&M(C),f)}}}const WXe=D3(.42,0,1,1),NXe=D3(0,0,.58,1),Kle=D3(.42,0,.58,1),BXe=e=>Array.isArray(e)&&typeof e[0]!="number",fP=e=>Array.isArray(e)&&typeof e[0]=="number",VG={linear:O1,easeIn:WXe,easeInOut:Kle,easeOut:NXe,circIn:sP,circInOut:Sle,circOut:kle,backIn:rP,backInOut:wle,backOut:xle,anticipate:_le},HG=e=>{if(fP(e)){O8(e.length===4);const[t,n,o,r]=e;return D3(t,n,o,r)}else if(typeof e=="string")return O8(VG[e]!==void 0),VG[e];return e},LXe=(e,t)=>n=>t(e(n)),kl=(...e)=>e.reduce(LXe),hh=(e,t,n)=>{const o=t-e;return o===0?1:(n-e)/o},Cr=(e,t,n)=>e+(t-e)*n;function _C(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 PXe({hue:e,saturation:t,lightness:n,alpha:o}){e/=360,t/=100,n/=100;let r=0,s=0,i=0;if(!t)r=s=i=n;else{const c=n<.5?n*(1+t):n+t-n*t,l=2*n-c;r=_C(l,c,e+1/3),s=_C(l,c,e),i=_C(l,c,e-1/3)}return{red:Math.round(r*255),green:Math.round(s*255),blue:Math.round(i*255),alpha:o}}function dx(e,t){return n=>n>0?t:e}const kC=(e,t,n)=>{const o=e*e,r=n*(t*t-o)+o;return r<0?0:Math.sqrt(r)},jXe=[v8,Gp,p2],IXe=e=>jXe.find(t=>t.test(e));function UG(e){const t=IXe(e);if(!t)return!1;let n=t.parse(e);return t===p2&&(n=PXe(n)),n}const XG=(e,t)=>{const n=UG(e),o=UG(t);if(!n||!o)return dx(e,t);const r={...n};return s=>(r.red=kC(n.red,o.red,s),r.green=kC(n.green,o.green,s),r.blue=kC(n.blue,o.blue,s),r.alpha=Cr(n.alpha,o.alpha,s),Gp.transform(r))},_8=new Set(["none","hidden"]);function DXe(e,t){return _8.has(e)?n=>n<=0?e:t:n=>n>=1?t:e}function FXe(e,t){return n=>Cr(e,t,n)}function bP(e){return typeof e=="number"?FXe:typeof e=="string"?iP(e)?dx:f1.test(e)?XG:HXe:Array.isArray(e)?Yle:typeof e=="object"?f1.test(e)?XG:$Xe:dx}function Yle(e,t){const n=[...e],o=n.length,r=e.map((s,i)=>bP(s)(s,t[i]));return s=>{for(let i=0;i<o;i++)n[i]=r[i](s);return n}}function $Xe(e,t){const n={...e,...t},o={};for(const r in n)e[r]!==void 0&&t[r]!==void 0&&(o[r]=bP(e[r])(e[r],t[r]));return r=>{for(const s in o)n[s]=o[s](r);return n}}function VXe(e,t){var n;const o=[],r={color:0,var:0,number:0};for(let s=0;s<t.values.length;s++){const i=t.types[s],c=e.indexes[i][r[i]],l=(n=e.values[c])!==null&&n!==void 0?n:0;o[s]=l,r[i]++}return o}const HXe=(e,t)=>{const n=Ed.createTransformer(t),o=hz(e),r=hz(t);return o.indexes.var.length===r.indexes.var.length&&o.indexes.color.length===r.indexes.color.length&&o.indexes.number.length>=r.indexes.number.length?_8.has(e)&&!r.values.length||_8.has(t)&&!o.values.length?DXe(e,t):kl(Yle(VXe(o,r),r.values),n):dx(e,t)};function Zle(e,t,n){return typeof e=="number"&&typeof t=="number"&&typeof n=="number"?Cr(e,t,n):bP(e)(e,t)}function UXe(e,t,n){const o=[],r=n||Zle,s=e.length-1;for(let i=0;i<s;i++){let c=r(e[i],e[i+1]);if(t){const l=Array.isArray(t)?t[i]||O1:t;c=kl(l,c)}o.push(c)}return o}function XXe(e,t,{clamp:n=!0,ease:o,mixer:r}={}){const s=e.length;if(O8(s===t.length),s===1)return()=>t[0];if(s===2&&e[0]===e[1])return()=>t[1];e[0]>e[s-1]&&(e=[...e].reverse(),t=[...t].reverse());const i=UXe(t,o,r),c=i.length,l=u=>{let d=0;if(c>1)for(;d<e.length-2&&!(u<e[d+1]);d++);const p=hh(e[d],e[d+1],u);return i[d](p)};return n?u=>l(Td(e[0],e[s-1],u)):l}function GXe(e,t){const n=e[e.length-1];for(let o=1;o<=t;o++){const r=hh(0,t,o);e.push(Cr(n,1,r))}}function KXe(e){const t=[0];return GXe(t,e.length-1),t}function YXe(e,t){return e.map(n=>n*t)}function ZXe(e,t){return e.map(()=>t||Kle).splice(0,e.length-1)}function px({duration:e=300,keyframes:t,times:n,ease:o="easeInOut"}){const r=BXe(o)?o.map(HG):HG(o),s={done:!1,value:t[0]},i=YXe(n&&n.length===t.length?n:KXe(t),e),c=XXe(i,t,{ease:Array.isArray(r)?r:ZXe(t,r)});return{calculatedDuration:e,next:l=>(s.value=c(l),s.done=l>=e,s)}}const GG=2e4;function QXe(e){let t=0;const n=50;let o=e.next(t);for(;!o.done&&t<GG;)t+=n,o=e.next(t);return t>=GG?1/0:t}const JXe=e=>{const t=({timestamp:n})=>e(n);return{start:()=>Po.update(t,!0),stop:()=>Rd(t),now:()=>V0.isProcessing?V0.timestamp:mc.now()}},eGe={decay:$G,inertia:$G,tween:px,keyframes:px,spring:Gle},tGe=e=>e/100;class hP extends Hle{constructor(t){super(t),this.holdTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.startTime=null,this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.teardown();const{onStop:l}=this.options;l&&l()};const{name:n,motionValue:o,element:r,keyframes:s}=this.options,i=r?.KeyframeResolver||aP,c=(l,u)=>this.onKeyframesResolved(l,u);this.resolver=new i(s,c,n,o,r),this.resolver.scheduleResolve()}initPlayback(t){const{type:n="keyframes",repeat:o=0,repeatDelay:r=0,repeatType:s,velocity:i=0}=this.options,c=pP(n)?n:eGe[n]||px;let l,u;c!==px&&typeof t[0]!="number"&&(l=kl(tGe,Zle(t[0],t[1])),t=[0,100]);const d=c({...this.options,keyframes:t});s==="mirror"&&(u=c({...this.options,keyframes:[...t].reverse(),velocity:-i})),d.calculatedDuration===null&&(d.calculatedDuration=QXe(d));const{calculatedDuration:p}=d,f=p+r,b=f*(o+1)-r;return{generator:d,mirroredGenerator:u,mapPercentToKeyframes:l,calculatedDuration:p,resolvedDuration:f,totalDuration:b}}onPostResolved(){const{autoplay:t=!0}=this.options;this.play(),this.pendingPlayState==="paused"||!t?this.pause():this.state=this.pendingPlayState}tick(t,n=!1){const{resolved:o}=this;if(!o){const{keyframes:C}=this.options;return{done:!0,value:C[C.length-1]}}const{finalKeyframe:r,generator:s,mirroredGenerator:i,mapPercentToKeyframes:c,keyframes:l,calculatedDuration:u,totalDuration:d,resolvedDuration:p}=o;if(this.startTime===null)return s.next(0);const{delay:f,repeat:b,repeatType:h,repeatDelay:g,onUpdate:z}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,t):this.speed<0&&(this.startTime=Math.min(t-d/this.speed,this.startTime)),n?this.currentTime=t:this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=Math.round(t-this.startTime)*this.speed;const A=this.currentTime-f*(this.speed>=0?1:-1),_=this.speed>=0?A<0:A>d;this.currentTime=Math.max(A,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=d);let v=this.currentTime,M=s;if(b){const C=Math.min(this.currentTime,d)/p;let R=Math.floor(C),T=C%1;!T&&C>=1&&(T=1),T===1&&R--,R=Math.min(R,b+1),!!(R%2)&&(h==="reverse"?(T=1-T,g&&(T-=g/p)):h==="mirror"&&(M=i)),v=Td(0,1,T)*p}const y=_?{done:!1,value:l[0]}:M.next(v);c&&(y.value=c(y.value));let{done:k}=y;!_&&u!==null&&(k=this.speed>=0?this.currentTime>=d:this.currentTime<=0);const S=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&k);return S&&r!==void 0&&(y.value=ww(l,this.options,r)),z&&z(y.value),S&&this.finish(),y}get duration(){const{resolved:t}=this;return t?_l(t.calculatedDuration):0}get time(){return _l(this.currentTime)}set time(t){t=wl(t),this.currentTime=t,this.holdTime!==null||this.speed===0?this.holdTime=t:this.driver&&(this.startTime=this.driver.now()-t/this.speed)}get speed(){return this.playbackSpeed}set speed(t){const n=this.playbackSpeed!==t;this.playbackSpeed=t,n&&(this.time=_l(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState="running";return}if(this.isStopped)return;const{driver:t=JXe,onPlay:n,startTime:o}=this.options;this.driver||(this.driver=t(s=>this.tick(s))),n&&n();const r=this.driver.now();this.holdTime!==null?this.startTime=r-this.holdTime:this.startTime?this.state==="finished"&&(this.startTime=r):this.startTime=o??this.calcStartTime(),this.state==="finished"&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var t;if(!this._resolved){this.pendingPlayState="paused";return}this.state="paused",this.holdTime=(t=this.currentTime)!==null&&t!==void 0?t:0}complete(){this.state!=="running"&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";const{onComplete:t}=this.options;t&&t()}cancel(){this.cancelTime!==null&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(t){return this.startTime=0,this.tick(t,!0)}}const Qle=new Set(["opacity","clipPath","filter","transform"]),nGe=10,oGe=(e,t)=>{let n="";const o=Math.max(Math.round(t/nGe),2);for(let r=0;r<o;r++)n+=e(hh(0,o-1,r))+", ";return`linear(${n.substring(0,n.length-2)})`};function mP(e){let t;return()=>(t===void 0&&(t=e()),t)}const rGe={linearEasing:void 0};function sGe(e,t){const n=mP(e);return()=>{var o;return(o=rGe[t])!==null&&o!==void 0?o:n()}}const fx=sGe(()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch{return!1}return!0},"linearEasing");function Jle(e){return!!(typeof e=="function"&&fx()||!e||typeof e=="string"&&(e in k8||fx())||fP(e)||Array.isArray(e)&&e.every(Jle))}const tM=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`,k8={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:tM([0,.65,.55,1]),circOut:tM([.55,0,1,.45]),backIn:tM([.31,.01,.66,-.59]),backOut:tM([.33,1.53,.69,.99])};function eue(e,t){if(e)return typeof e=="function"&&fx()?oGe(e,t):fP(e)?tM(e):Array.isArray(e)?e.map(n=>eue(n,t)||k8.easeOut):k8[e]}function iGe(e,t,n,{delay:o=0,duration:r=300,repeat:s=0,repeatType:i="loop",ease:c,times:l}={}){const u={[t]:n};l&&(u.offset=l);const d=eue(c,r);return Array.isArray(d)&&(u.easing=d),e.animate(u,{delay:o,duration:r,easing:Array.isArray(d)?"linear":d,fill:"both",iterations:s+1,direction:i==="reverse"?"alternate":"normal"})}function KG(e,t){e.timeline=t,e.onfinish=null}const aGe=mP(()=>Object.hasOwnProperty.call(Element.prototype,"animate")),bx=10,cGe=2e4;function lGe(e){return pP(e.type)||e.type==="spring"||!Jle(e.ease)}function uGe(e,t){const n=new hP({...t,keyframes:e,repeat:0,delay:0,isGenerator:!0});let o={done:!1,value:e[0]};const r=[];let s=0;for(;!o.done&&s<cGe;)o=n.sample(s),r.push(o.value),s+=bx;return{times:void 0,keyframes:r,duration:s-bx,ease:"linear"}}const tue={anticipate:_le,backInOut:wle,circInOut:Sle};function dGe(e){return e in tue}class YG extends Hle{constructor(t){super(t);const{name:n,motionValue:o,element:r,keyframes:s}=this.options;this.resolver=new Vle(s,(i,c)=>this.onKeyframesResolved(i,c),n,o,r),this.resolver.scheduleResolve()}initPlayback(t,n){var o;let{duration:r=300,times:s,ease:i,type:c,motionValue:l,name:u,startTime:d}=this.options;if(!(!((o=l.owner)===null||o===void 0)&&o.current))return!1;if(typeof i=="string"&&fx()&&dGe(i)&&(i=tue[i]),lGe(this.options)){const{onComplete:f,onUpdate:b,motionValue:h,element:g,...z}=this.options,A=uGe(t,z);t=A.keyframes,t.length===1&&(t[1]=t[0]),r=A.duration,s=A.times,i=A.ease,c="keyframes"}const p=iGe(l.owner.current,u,t,{...this.options,duration:r,times:s,ease:i});return p.startTime=d??this.calcStartTime(),this.pendingTimeline?(KG(p,this.pendingTimeline),this.pendingTimeline=void 0):p.onfinish=()=>{const{onComplete:f}=this.options;l.set(ww(t,this.options,n)),f&&f(),this.cancel(),this.resolveFinishedPromise()},{animation:p,duration:r,times:s,type:c,ease:i,keyframes:t}}get duration(){const{resolved:t}=this;if(!t)return 0;const{duration:n}=t;return _l(n)}get time(){const{resolved:t}=this;if(!t)return 0;const{animation:n}=t;return _l(n.currentTime||0)}set time(t){const{resolved:n}=this;if(!n)return;const{animation:o}=n;o.currentTime=wl(t)}get speed(){const{resolved:t}=this;if(!t)return 1;const{animation:n}=t;return n.playbackRate}set speed(t){const{resolved:n}=this;if(!n)return;const{animation:o}=n;o.playbackRate=t}get state(){const{resolved:t}=this;if(!t)return"idle";const{animation:n}=t;return n.playState}get startTime(){const{resolved:t}=this;if(!t)return null;const{animation:n}=t;return n.startTime}attachTimeline(t){if(!this._resolved)this.pendingTimeline=t;else{const{resolved:n}=this;if(!n)return O1;const{animation:o}=n;KG(o,t)}return O1}play(){if(this.isStopped)return;const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.playState==="finished"&&this.updateFinishedPromise(),n.play()}pause(){const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.resolveFinishedPromise(),this.updateFinishedPromise();const{resolved:t}=this;if(!t)return;const{animation:n,keyframes:o,duration:r,type:s,ease:i,times:c}=t;if(n.playState==="idle"||n.playState==="finished")return;if(this.time){const{motionValue:u,onUpdate:d,onComplete:p,element:f,...b}=this.options,h=new hP({...b,keyframes:o,duration:r,type:s,ease:i,times:c,isGenerator:!0}),g=wl(this.time);u.setWithVelocity(h.sample(g-bx).value,h.sample(g).value,bx)}const{onStop:l}=this.options;l&&l(),this.cancel()}complete(){const{resolved:t}=this;t&&t.animation.finish()}cancel(){const{resolved:t}=this;t&&t.animation.cancel()}static supports(t){const{motionValue:n,name:o,repeatDelay:r,repeatType:s,damping:i,type:c}=t;return aGe()&&o&&Qle.has(o)&&n&&n.owner&&n.owner.current instanceof HTMLElement&&!n.owner.getProps().onUpdate&&!r&&s!=="mirror"&&i!==0&&c!=="inertia"}}const pGe=mP(()=>window.ScrollTimeline!==void 0);class fGe{constructor(t){this.stop=()=>this.runAll("stop"),this.animations=t.filter(Boolean)}then(t,n){return Promise.all(this.animations).then(t).catch(n)}getAll(t){return this.animations[0][t]}setAll(t,n){for(let o=0;o<this.animations.length;o++)this.animations[o][t]=n}attachTimeline(t,n){const o=this.animations.map(r=>pGe()&&r.attachTimeline?r.attachTimeline(t):n(r));return()=>{o.forEach((r,s)=>{r&&r(),this.animations[s].stop()})}}get time(){return this.getAll("time")}set time(t){this.setAll("time",t)}get speed(){return this.getAll("speed")}set speed(t){this.setAll("speed",t)}get startTime(){return this.getAll("startTime")}get duration(){let t=0;for(let n=0;n<this.animations.length;n++)t=Math.max(t,this.animations[n].duration);return t}runAll(t){this.animations.forEach(n=>n[t]())}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}function bGe({when:e,delay:t,delayChildren:n,staggerChildren:o,staggerDirection:r,repeat:s,repeatType:i,repeatDelay:c,from:l,elapsed:u,...d}){return!!Object.keys(d).length}const gP=(e,t,n,o={},r,s)=>i=>{const c=oP(o,e)||{},l=c.delay||o.delay||0;let{elapsed:u=0}=o;u=u-wl(l);let d={keyframes:Array.isArray(n)?n:[null,n],ease:"easeOut",velocity:t.getVelocity(),...c,delay:-u,onUpdate:f=>{t.set(f),c.onUpdate&&c.onUpdate(f)},onComplete:()=>{i(),c.onComplete&&c.onComplete()},name:e,motionValue:t,element:s?void 0:r};bGe(c)||(d={...d,...EUe(e,d)}),d.duration&&(d.duration=wl(d.duration)),d.repeatDelay&&(d.repeatDelay=wl(d.repeatDelay)),d.from!==void 0&&(d.keyframes[0]=d.from);let p=!1;if((d.type===!1||d.duration===0&&!d.repeatDelay)&&(d.duration=0,d.delay===0&&(p=!0)),p&&!s&&t.get()!==void 0){const f=ww(d.keyframes,c);if(f!==void 0)return Po.update(()=>{d.onUpdate(f),d.onComplete()}),new fGe([])}return!s&&YG.supports(d)?new YG(d):new hP(d)},hGe=e=>!!(e&&typeof e=="object"&&e.mix&&e.toValue),mGe=e=>z8(e)?e[e.length-1]||0:e;function MP(e,t){e.indexOf(t)===-1&&e.push(t)}function zP(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class OP{constructor(){this.subscriptions=[]}add(t){return MP(this.subscriptions,t),()=>zP(this.subscriptions,t)}notify(t,n,o){const r=this.subscriptions.length;if(r)if(r===1)this.subscriptions[0](t,n,o);else for(let s=0;s<r;s++){const i=this.subscriptions[s];i&&i(t,n,o)}}getSize(){return this.subscriptions.length}clear(){this.subscriptions.length=0}}const ZG=30,gGe=e=>!isNaN(parseFloat(e));class MGe{constructor(t,n={}){this.version="11.11.9",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(o,r=!0)=>{const s=mc.now();this.updatedAt!==s&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(o),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),r&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(t),this.owner=n.owner}setCurrent(t){this.current=t,this.updatedAt=mc.now(),this.canTrackVelocity===null&&t!==void 0&&(this.canTrackVelocity=gGe(this.current))}setPrevFrameValue(t=this.current){this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt}onChange(t){return this.on("change",t)}on(t,n){this.events[t]||(this.events[t]=new OP);const o=this.events[t].add(n);return t==="change"?()=>{o(),Po.read(()=>{this.events.change.getSize()||this.stop()})}:o}clearListeners(){for(const t in this.events)this.events[t].clear()}attach(t,n){this.passiveEffect=t,this.stopPassiveEffect=n}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}setWithVelocity(t,n,o){this.set(n),this.prev=void 0,this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt-o}jump(t,n=!0){this.updateAndNotify(t),this.prev=t,this.prevUpdatedAt=this.prevFrameValue=void 0,n&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return this.current}getPrevious(){return this.prev}getVelocity(){const t=mc.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||t-this.updatedAt>ZG)return 0;const n=Math.min(this.updatedAt-this.prevUpdatedAt,ZG);return Ule(parseFloat(this.current)-parseFloat(this.prevFrameValue),n)}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.animation=t(n),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function mz(e,t){return new MGe(e,t)}function zGe(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,mz(n))}function OGe(e,t){const n=xw(e,t);let{transitionEnd:o={},transition:r={},...s}=n||{};s={...s,...o};for(const i in s){const c=mGe(s[i]);zGe(e,i,c)}}const _w=e=>e.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),yGe="framerAppearId",nue="data-"+_w(yGe);function oue(e){return e.props[nue]}const h1=e=>!!(e&&e.getVelocity);function AGe(e){return!!(h1(e)&&e.add)}function S8(e,t){if(!e.applyWillChange)return;const n=e.getValue("willChange");if(AGe(n))return n.add(t)}function vGe({protectedKeys:e,needsAnimating:t},n){const o=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,o}function rue(e,t,{delay:n=0,transitionOverride:o,type:r}={}){var s;let{transition:i=e.getDefaultTransition(),transitionEnd:c,...l}=t;o&&(i=o);const u=[],d=r&&e.animationState&&e.animationState.getState()[r];for(const p in l){const f=e.getValue(p,(s=e.latestValues[p])!==null&&s!==void 0?s:null),b=l[p];if(b===void 0||d&&vGe(d,p))continue;const h={delay:n,...oP(i||{},p)};let g=!1;if(window.MotionHandoffAnimation){const A=oue(e);if(A){const _=window.MotionHandoffAnimation(A,p,Po);_!==null&&(h.startTime=_,g=!0)}}S8(e,p),f.start(gP(p,f,b,e.shouldReduceMotion&&np.has(p)?{type:!1}:h,e,g));const z=f.animation;z&&u.push(z)}return c&&Promise.all(u).then(()=>{Po.update(()=>{c&&OGe(e,c)})}),u}function C8(e,t,n={}){var o;const r=xw(e,t,n.type==="exit"?(o=e.presenceContext)===null||o===void 0?void 0:o.custom:void 0);let{transition:s=e.getDefaultTransition()||{}}=r||{};n.transitionOverride&&(s=n.transitionOverride);const i=r?()=>Promise.all(rue(e,r,n)):()=>Promise.resolve(),c=e.variantChildren&&e.variantChildren.size?(u=0)=>{const{delayChildren:d=0,staggerChildren:p,staggerDirection:f}=s;return xGe(e,t,d+u,p,f,n)}:()=>Promise.resolve(),{when:l}=s;if(l){const[u,d]=l==="beforeChildren"?[i,c]:[c,i];return u().then(()=>d())}else return Promise.all([i(),c(n.delay)])}function xGe(e,t,n=0,o=0,r=1,s){const i=[],c=(e.variantChildren.size-1)*o,l=r===1?(u=0)=>u*o:(u=0)=>c-u*o;return Array.from(e.variantChildren).sort(wGe).forEach((u,d)=>{u.notify("AnimationStart",t),i.push(C8(u,t,{...s,delay:n+l(d)}).then(()=>u.notify("AnimationComplete",t)))}),Promise.all(i)}function wGe(e,t){return e.sortNodePosition(t)}function _Ge(e,t,n={}){e.notify("AnimationStart",t);let o;if(Array.isArray(t)){const r=t.map(s=>C8(e,s,n));o=Promise.all(r)}else if(typeof t=="string")o=C8(e,t,n);else{const r=typeof t=="function"?xw(e,t,n.custom):t;o=Promise.all(rue(e,r,n))}return o.then(()=>{e.notify("AnimationComplete",t)})}const kGe=nP.length;function sue(e){if(!e)return;if(!e.isControllingVariants){const n=e.parent?sue(e.parent)||{}:{};return e.props.initial!==void 0&&(n.initial=e.props.initial),n}const t={};for(let n=0;n<kGe;n++){const o=nP[n],r=e.props[o];(fz(r)||r===!1)&&(t[o]=r)}return t}const SGe=[...tP].reverse(),CGe=tP.length;function qGe(e){return t=>Promise.all(t.map(({animation:n,options:o})=>_Ge(e,n,o)))}function RGe(e){let t=qGe(e),n=QG(),o=!0;const r=l=>(u,d)=>{var p;const f=xw(e,d,l==="exit"?(p=e.presenceContext)===null||p===void 0?void 0:p.custom:void 0);if(f){const{transition:b,transitionEnd:h,...g}=f;u={...u,...g,...h}}return u};function s(l){t=l(e)}function i(l){const{props:u}=e,d=sue(e.parent)||{},p=[],f=new Set;let b={},h=1/0;for(let z=0;z<CGe;z++){const A=SGe[z],_=n[A],v=u[A]!==void 0?u[A]:d[A],M=fz(v),y=A===l?_.isActive:null;y===!1&&(h=z);let k=v===d[A]&&v!==u[A]&&M;if(k&&o&&e.manuallyAnimateOnMount&&(k=!1),_.protectedKeys={...b},!_.isActive&&y===null||!v&&!_.prevProp||pz(v)||typeof v=="boolean")continue;const S=TGe(_.prevProp,v);let C=S||A===l&&_.isActive&&!k&&M||z>h&&M,R=!1;const T=Array.isArray(v)?v:[v];let E=T.reduce(r(A),{});y===!1&&(E={});const{prevResolvedValues:B={}}=_,N={...B,...E},j=$=>{C=!0,f.has($)&&(R=!0,f.delete($)),_.needsAnimating[$]=!0;const F=e.getValue($);F&&(F.liveStyle=!1)};for(const $ in N){const F=E[$],X=B[$];if(b.hasOwnProperty($))continue;let Z=!1;z8(F)&&z8(X)?Z=!zle(F,X):Z=F!==X,Z?F!=null?j($):f.add($):F!==void 0&&f.has($)?j($):_.protectedKeys[$]=!0}_.prevProp=v,_.prevResolvedValues=E,_.isActive&&(b={...b,...E}),o&&e.blockInitialAnimation&&(C=!1),C&&(!(k&&S)||R)&&p.push(...T.map($=>({animation:$,options:{type:A}})))}if(f.size){const z={};f.forEach(A=>{const _=e.getBaseTarget(A),v=e.getValue(A);v&&(v.liveStyle=!0),z[A]=_??null}),p.push({animation:z})}let g=!!p.length;return o&&(u.initial===!1||u.initial===u.animate)&&!e.manuallyAnimateOnMount&&(g=!1),o=!1,g?t(p):Promise.resolve()}function c(l,u){var d;if(n[l].isActive===u)return Promise.resolve();(d=e.variantChildren)===null||d===void 0||d.forEach(f=>{var b;return(b=f.animationState)===null||b===void 0?void 0:b.setActive(l,u)}),n[l].isActive=u;const p=i(l);for(const f in n)n[f].protectedKeys={};return p}return{animateChanges:i,setActive:c,setAnimateFunction:s,getState:()=>n,reset:()=>{n=QG(),o=!0}}}function TGe(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!zle(t,e):!1}function Rp(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function QG(){return{animate:Rp(!0),whileInView:Rp(),whileHover:Rp(),whileTap:Rp(),whileDrag:Rp(),whileFocus:Rp(),exit:Rp()}}class op{constructor(t){this.isMounted=!1,this.node=t}update(){}}class EGe extends op{constructor(t){super(t),t.animationState||(t.animationState=RGe(t))}updateAnimationControlsSubscription(){const{animate:t}=this.node.getProps();pz(t)&&(this.unmountControls=t.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:t}=this.node.getProps(),{animate:n}=this.node.prevProps||{};t!==n&&this.updateAnimationControlsSubscription()}unmount(){var t;this.node.animationState.reset(),(t=this.unmountControls)===null||t===void 0||t.call(this)}}let WGe=0;class NGe extends op{constructor(){super(...arguments),this.id=WGe++}update(){if(!this.node.presenceContext)return;const{isPresent:t,onExitComplete:n}=this.node.presenceContext,{isPresent:o}=this.node.prevPresenceContext||{};if(!this.node.animationState||t===o)return;const r=this.node.animationState.setActive("exit",!t);n&&!t&&r.then(()=>n(this.id))}mount(){const{register:t}=this.node.presenceContext||{};t&&(this.unmount=t(this.id))}unmount(){}}const BGe={animation:{Feature:EGe},exit:{Feature:NGe}},iue=e=>e.pointerType==="mouse"?typeof e.button!="number"||e.button<=0:e.isPrimary!==!1;function kw(e,t="page"){return{point:{x:e[`${t}X`],y:e[`${t}Y`]}}}const LGe=e=>t=>iue(t)&&e(t,kw(t));function ml(e,t,n,o={passive:!0}){return e.addEventListener(t,n,o),()=>e.removeEventListener(t,n)}function Sl(e,t,n,o){return ml(e,t,LGe(n),o)}const JG=(e,t)=>Math.abs(e-t);function PGe(e,t){const n=JG(e.x,t.x),o=JG(e.y,t.y);return Math.sqrt(n**2+o**2)}class aue{constructor(t,n,{transformPagePoint:o,contextWindow:r,dragSnapToOrigin:s=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const p=CC(this.lastMoveEventInfo,this.history),f=this.startEvent!==null,b=PGe(p.offset,{x:0,y:0})>=3;if(!f&&!b)return;const{point:h}=p,{timestamp:g}=V0;this.history.push({...h,timestamp:g});const{onStart:z,onMove:A}=this.handlers;f||(z&&z(this.lastMoveEvent,p),this.startEvent=this.lastMoveEvent),A&&A(this.lastMoveEvent,p)},this.handlePointerMove=(p,f)=>{this.lastMoveEvent=p,this.lastMoveEventInfo=SC(f,this.transformPagePoint),Po.update(this.updatePoint,!0)},this.handlePointerUp=(p,f)=>{this.end();const{onEnd:b,onSessionEnd:h,resumeAnimation:g}=this.handlers;if(this.dragSnapToOrigin&&g&&g(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const z=CC(p.type==="pointercancel"?this.lastMoveEventInfo:SC(f,this.transformPagePoint),this.history);this.startEvent&&b&&b(p,z),h&&h(p,z)},!iue(t))return;this.dragSnapToOrigin=s,this.handlers=n,this.transformPagePoint=o,this.contextWindow=r||window;const i=kw(t),c=SC(i,this.transformPagePoint),{point:l}=c,{timestamp:u}=V0;this.history=[{...l,timestamp:u}];const{onSessionStart:d}=n;d&&d(t,CC(c,this.history)),this.removeListeners=kl(Sl(this.contextWindow,"pointermove",this.handlePointerMove),Sl(this.contextWindow,"pointerup",this.handlePointerUp),Sl(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),Rd(this.updatePoint)}}function SC(e,t){return t?{point:t(e.point)}:e}function eK(e,t){return{x:e.x-t.x,y:e.y-t.y}}function CC({point:e},t){return{point:e,delta:eK(e,cue(t)),offset:eK(e,jGe(t)),velocity:IGe(t,.1)}}function jGe(e){return e[0]}function cue(e){return e[e.length-1]}function IGe(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,o=null;const r=cue(e);for(;n>=0&&(o=e[n],!(r.timestamp-o.timestamp>wl(t)));)n--;if(!o)return{x:0,y:0};const s=_l(r.timestamp-o.timestamp);if(s===0)return{x:0,y:0};const i={x:(r.x-o.x)/s,y:(r.y-o.y)/s};return i.x===1/0&&(i.x=0),i.y===1/0&&(i.y=0),i}function lue(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const tK=lue("dragHorizontal"),nK=lue("dragVertical");function uue(e){let t=!1;if(e==="y")t=nK();else if(e==="x")t=tK();else{const n=tK(),o=nK();n&&o?t=()=>{n(),o()}:(n&&n(),o&&o())}return t}function due(){const e=uue(!0);return e?(e(),!1):!0}function f2(e){return e&&typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}const pue=1e-4,DGe=1-pue,FGe=1+pue,fue=.01,$Ge=0-fue,VGe=0+fue;function Ds(e){return e.max-e.min}function HGe(e,t,n){return Math.abs(e-t)<=n}function oK(e,t,n,o=.5){e.origin=o,e.originPoint=Cr(t.min,t.max,e.origin),e.scale=Ds(n)/Ds(t),e.translate=Cr(n.min,n.max,e.origin)-e.originPoint,(e.scale>=DGe&&e.scale<=FGe||isNaN(e.scale))&&(e.scale=1),(e.translate>=$Ge&&e.translate<=VGe||isNaN(e.translate))&&(e.translate=0)}function _M(e,t,n,o){oK(e.x,t.x,n.x,o?o.originX:void 0),oK(e.y,t.y,n.y,o?o.originY:void 0)}function rK(e,t,n){e.min=n.min+t.min,e.max=e.min+Ds(t)}function UGe(e,t,n){rK(e.x,t.x,n.x),rK(e.y,t.y,n.y)}function sK(e,t,n){e.min=t.min-n.min,e.max=e.min+Ds(t)}function kM(e,t,n){sK(e.x,t.x,n.x),sK(e.y,t.y,n.y)}function XGe(e,{min:t,max:n},o){return t!==void 0&&e<t?e=o?Cr(t,e,o.min):Math.max(e,t):n!==void 0&&e>n&&(e=o?Cr(n,e,o.max):Math.min(e,n)),e}function iK(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 GGe(e,{top:t,left:n,bottom:o,right:r}){return{x:iK(e.x,n,r),y:iK(e.y,t,o)}}function aK(e,t){let n=t.min-e.min,o=t.max-e.max;return t.max-t.min<e.max-e.min&&([n,o]=[o,n]),{min:n,max:o}}function KGe(e,t){return{x:aK(e.x,t.x),y:aK(e.y,t.y)}}function YGe(e,t){let n=.5;const o=Ds(e),r=Ds(t);return r>o?n=hh(t.min,t.max-o,e.min):o>r&&(n=hh(e.min,e.max-r,t.min)),Td(0,1,n)}function ZGe(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 q8=.35;function QGe(e=q8){return e===!1?e=0:e===!0&&(e=q8),{x:cK(e,"left","right"),y:cK(e,"top","bottom")}}function cK(e,t,n){return{min:lK(e,t),max:lK(e,n)}}function lK(e,t){return typeof e=="number"?e:e[t]||0}const uK=()=>({translate:0,scale:1,origin:0,originPoint:0}),b2=()=>({x:uK(),y:uK()}),dK=()=>({min:0,max:0}),Hr=()=>({x:dK(),y:dK()});function pi(e){return[e("x"),e("y")]}function bue({top:e,left:t,right:n,bottom:o}){return{x:{min:t,max:n},y:{min:e,max:o}}}function JGe({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function eKe(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),o=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:o.y,right:o.x}}function qC(e){return e===void 0||e===1}function R8({scale:e,scaleX:t,scaleY:n}){return!qC(e)||!qC(t)||!qC(n)}function jp(e){return R8(e)||hue(e)||e.z||e.rotate||e.rotateX||e.rotateY||e.skewX||e.skewY}function hue(e){return pK(e.x)||pK(e.y)}function pK(e){return e&&e!=="0%"}function hx(e,t,n){const o=e-n,r=t*o;return n+r}function fK(e,t,n,o,r){return r!==void 0&&(e=hx(e,r,o)),hx(e,n,o)+t}function T8(e,t=0,n=1,o,r){e.min=fK(e.min,t,n,o,r),e.max=fK(e.max,t,n,o,r)}function mue(e,{x:t,y:n}){T8(e.x,t.translate,t.scale,t.originPoint),T8(e.y,n.translate,n.scale,n.originPoint)}const bK=.999999999999,hK=1.0000000000001;function tKe(e,t,n,o=!1){const r=n.length;if(!r)return;t.x=t.y=1;let s,i;for(let c=0;c<r;c++){s=n[c],i=s.projectionDelta;const{visualElement:l}=s.options;l&&l.props.style&&l.props.style.display==="contents"||(o&&s.options.layoutScroll&&s.scroll&&s!==s.root&&m2(e,{x:-s.scroll.offset.x,y:-s.scroll.offset.y}),i&&(t.x*=i.x.scale,t.y*=i.y.scale,mue(e,i)),o&&jp(s.latestValues)&&m2(e,s.latestValues))}t.x<hK&&t.x>bK&&(t.x=1),t.y<hK&&t.y>bK&&(t.y=1)}function h2(e,t){e.min=e.min+t,e.max=e.max+t}function mK(e,t,n,o,r=.5){const s=Cr(e.min,e.max,r);T8(e,t,n,s,o)}function m2(e,t){mK(e.x,t.x,t.scaleX,t.scale,t.originX),mK(e.y,t.y,t.scaleY,t.scale,t.originY)}function gue(e,t){return bue(eKe(e.getBoundingClientRect(),t))}function nKe(e,t,n){const o=gue(e,n),{scroll:r}=t;return r&&(h2(o.x,r.offset.x),h2(o.y,r.offset.y)),o}const Mue=({current:e})=>e?e.ownerDocument.defaultView:null,oKe=new WeakMap;class rKe{constructor(t){this.openGlobalLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=Hr(),this.visualElement=t}start(t,{snapToCursor:n=!1}={}){const{presenceContext:o}=this.visualElement;if(o&&o.isPresent===!1)return;const r=d=>{const{dragSnapToOrigin:p}=this.getProps();p?this.pauseAnimation():this.stopAnimation(),n&&this.snapToCursor(kw(d,"page").point)},s=(d,p)=>{const{drag:f,dragPropagation:b,onDragStart:h}=this.getProps();if(f&&!b&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=uue(f),!this.openGlobalLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),pi(z=>{let A=this.getAxisMotionValue(z).get()||0;if(hc.test(A)){const{projection:_}=this.visualElement;if(_&&_.layout){const v=_.layout.layoutBox[z];v&&(A=Ds(v)*(parseFloat(A)/100))}}this.originPoint[z]=A}),h&&Po.postRender(()=>h(d,p)),S8(this.visualElement,"transform");const{animationState:g}=this.visualElement;g&&g.setActive("whileDrag",!0)},i=(d,p)=>{const{dragPropagation:f,dragDirectionLock:b,onDirectionLock:h,onDrag:g}=this.getProps();if(!f&&!this.openGlobalLock)return;const{offset:z}=p;if(b&&this.currentDirection===null){this.currentDirection=sKe(z),this.currentDirection!==null&&h&&h(this.currentDirection);return}this.updateAxis("x",p.point,z),this.updateAxis("y",p.point,z),this.visualElement.render(),g&&g(d,p)},c=(d,p)=>this.stop(d,p),l=()=>pi(d=>{var p;return this.getAnimationState(d)==="paused"&&((p=this.getAxisMotionValue(d).animation)===null||p===void 0?void 0:p.play())}),{dragSnapToOrigin:u}=this.getProps();this.panSession=new aue(t,{onSessionStart:r,onStart:s,onMove:i,onSessionEnd:c,resumeAnimation:l},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:u,contextWindow:Mue(this.visualElement)})}stop(t,n){const o=this.isDragging;if(this.cancel(),!o)return;const{velocity:r}=n;this.startAnimation(r);const{onDragEnd:s}=this.getProps();s&&Po.postRender(()=>s(t,n))}cancel(){this.isDragging=!1;const{projection:t,animationState:n}=this.visualElement;t&&(t.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:o}=this.getProps();!o&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),n&&n.setActive("whileDrag",!1)}updateAxis(t,n,o){const{drag:r}=this.getProps();if(!o||!SA(t,r,this.currentDirection))return;const s=this.getAxisMotionValue(t);let i=this.originPoint[t]+o[t];this.constraints&&this.constraints[t]&&(i=XGe(i,this.constraints[t],this.elastic[t])),s.set(i)}resolveConstraints(){var t;const{dragConstraints:n,dragElastic:o}=this.getProps(),r=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(t=this.visualElement.projection)===null||t===void 0?void 0:t.layout,s=this.constraints;n&&f2(n)?this.constraints||(this.constraints=this.resolveRefConstraints()):n&&r?this.constraints=GGe(r.layoutBox,n):this.constraints=!1,this.elastic=QGe(o),s!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&pi(i=>{this.constraints!==!1&&this.getAxisMotionValue(i)&&(this.constraints[i]=ZGe(r.layoutBox[i],this.constraints[i]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!f2(t))return!1;const o=t.current,{projection:r}=this.visualElement;if(!r||!r.layout)return!1;const s=nKe(o,r.root,this.visualElement.getTransformPagePoint());let i=KGe(r.layout.layoutBox,s);if(n){const c=n(JGe(i));this.hasMutatedConstraints=!!c,c&&(i=bue(c))}return i}startAnimation(t){const{drag:n,dragMomentum:o,dragElastic:r,dragTransition:s,dragSnapToOrigin:i,onDragTransitionEnd:c}=this.getProps(),l=this.constraints||{},u=pi(d=>{if(!SA(d,n,this.currentDirection))return;let p=l&&l[d]||{};i&&(p={min:0,max:0});const f=r?200:1e6,b=r?40:1e7,h={type:"inertia",velocity:o?t[d]:0,bounceStiffness:f,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...s,...p};return this.startAxisValueAnimation(d,h)});return Promise.all(u).then(c)}startAxisValueAnimation(t,n){const o=this.getAxisMotionValue(t);return S8(this.visualElement,t),o.start(gP(t,o,0,n,this.visualElement,!1))}stopAnimation(){pi(t=>this.getAxisMotionValue(t).stop())}pauseAnimation(){pi(t=>{var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.pause()})}getAnimationState(t){var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.state}getAxisMotionValue(t){const n=`_drag${t.toUpperCase()}`,o=this.visualElement.getProps(),r=o[n];return r||this.visualElement.getValue(t,(o.initial?o.initial[t]:void 0)||0)}snapToCursor(t){pi(n=>{const{drag:o}=this.getProps();if(!SA(n,o,this.currentDirection))return;const{projection:r}=this.visualElement,s=this.getAxisMotionValue(n);if(r&&r.layout){const{min:i,max:c}=r.layout.layoutBox[n];s.set(t[n]-Cr(i,c,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:t,dragConstraints:n}=this.getProps(),{projection:o}=this.visualElement;if(!f2(n)||!o||!this.constraints)return;this.stopAnimation();const r={x:0,y:0};pi(i=>{const c=this.getAxisMotionValue(i);if(c&&this.constraints!==!1){const l=c.get();r[i]=YGe({min:l,max:l},this.constraints[i])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.current.style.transform=s?s({},""):"none",o.root&&o.root.updateScroll(),o.updateLayout(),this.resolveConstraints(),pi(i=>{if(!SA(i,t,null))return;const c=this.getAxisMotionValue(i),{min:l,max:u}=this.constraints[i];c.set(Cr(l,u,r[i]))})}addListeners(){if(!this.visualElement.current)return;oKe.set(this.visualElement,this);const t=this.visualElement.current,n=Sl(t,"pointerdown",l=>{const{drag:u,dragListener:d=!0}=this.getProps();u&&d&&this.start(l)}),o=()=>{const{dragConstraints:l}=this.getProps();f2(l)&&l.current&&(this.constraints=this.resolveRefConstraints())},{projection:r}=this.visualElement,s=r.addEventListener("measure",o);r&&!r.layout&&(r.root&&r.root.updateScroll(),r.updateLayout()),Po.read(o);const i=ml(window,"resize",()=>this.scalePositionWithinConstraints()),c=r.addEventListener("didUpdate",({delta:l,hasLayoutChanged:u})=>{this.isDragging&&u&&(pi(d=>{const p=this.getAxisMotionValue(d);p&&(this.originPoint[d]+=l[d].translate,p.set(p.get()+l[d].translate))}),this.visualElement.render())});return()=>{i(),n(),s(),c&&c()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:o=!1,dragPropagation:r=!1,dragConstraints:s=!1,dragElastic:i=q8,dragMomentum:c=!0}=t;return{...t,drag:n,dragDirectionLock:o,dragPropagation:r,dragConstraints:s,dragElastic:i,dragMomentum:c}}}function SA(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function sKe(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}class iKe extends op{constructor(t){super(t),this.removeGroupControls=O1,this.removeListeners=O1,this.controls=new rKe(t)}mount(){const{dragControls:t}=this.node.getProps();t&&(this.removeGroupControls=t.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||O1}unmount(){this.removeGroupControls(),this.removeListeners()}}const gK=e=>(t,n)=>{e&&Po.postRender(()=>e(t,n))};class aKe extends op{constructor(){super(...arguments),this.removePointerDownListener=O1}onPointerDown(t){this.session=new aue(t,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Mue(this.node)})}createPanHandlers(){const{onPanSessionStart:t,onPanStart:n,onPan:o,onPanEnd:r}=this.node.getProps();return{onSessionStart:gK(t),onStart:gK(n),onMove:o,onEnd:(s,i)=>{delete this.session,r&&Po.postRender(()=>r(s,i))}}}mount(){this.removePointerDownListener=Sl(this.node.current,"pointerdown",t=>this.onPointerDown(t))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}const Sw=x.createContext(null);function cKe(){const e=x.useContext(Sw);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:o}=e,r=x.useId();x.useEffect(()=>o(r),[]);const s=x.useCallback(()=>n&&n(r),[r,n]);return!t&&n?[!1,s]:[!0]}const yP=x.createContext({}),zue=x.createContext({}),Qv={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function MK(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const Sg={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(hn.test(e))e=parseFloat(e);else return e;const n=MK(e,t.target.x),o=MK(e,t.target.y);return`${n}% ${o}%`}},lKe={correct:(e,{treeScale:t,projectionDelta:n})=>{const o=e,r=Ed.parse(e);if(r.length>5)return o;const s=Ed.createTransformer(e),i=typeof r[0]!="number"?1:0,c=n.x.scale*t.x,l=n.y.scale*t.y;r[0+i]/=c,r[1+i]/=l;const u=Cr(c,l,.5);return typeof r[2+i]=="number"&&(r[2+i]/=u),typeof r[3+i]=="number"&&(r[3+i]/=u),s(r)}},mx={};function uKe(e){Object.assign(mx,e)}const{schedule:AP,cancel:tgn}=Ole(queueMicrotask,!1);class dKe extends x.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:o,layoutId:r}=this.props,{projection:s}=t;uKe(pKe),s&&(n.group&&n.group.add(s),o&&o.register&&r&&o.register(s),s.root.didUpdate(),s.addEventListener("animationComplete",()=>{this.safeToRemove()}),s.setOptions({...s.options,onExitComplete:()=>this.safeToRemove()})),Qv.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:o,drag:r,isPresent:s}=this.props,i=o.projection;return i&&(i.isPresent=s,r||t.layoutDependency!==n||n===void 0?i.willUpdate():this.safeToRemove(),t.isPresent!==s&&(s?i.promote():i.relegate()||Po.postRender(()=>{const c=i.getStack();(!c||!c.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),AP.postRender(()=>{!t.currentAnimation&&t.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:o}=this.props,{projection:r}=t;r&&(r.scheduleCheckAfterUnmount(),n&&n.group&&n.group.remove(r),o&&o.deregister&&o.deregister(r))}safeToRemove(){const{safeToRemove:t}=this.props;t&&t()}render(){return null}}function Oue(e){const[t,n]=cKe(),o=x.useContext(yP);return a.jsx(dKe,{...e,layoutGroup:o,switchLayoutGroup:x.useContext(zue),isPresent:t,safeToRemove:n})}const pKe={borderRadius:{...Sg,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Sg,borderTopRightRadius:Sg,borderBottomLeftRadius:Sg,borderBottomRightRadius:Sg,boxShadow:lKe},yue=["TopLeft","TopRight","BottomLeft","BottomRight"],fKe=yue.length,zK=e=>typeof e=="string"?parseFloat(e):e,OK=e=>typeof e=="number"||hn.test(e);function bKe(e,t,n,o,r,s){r?(e.opacity=Cr(0,n.opacity!==void 0?n.opacity:1,hKe(o)),e.opacityExit=Cr(t.opacity!==void 0?t.opacity:1,0,mKe(o))):s&&(e.opacity=Cr(t.opacity!==void 0?t.opacity:1,n.opacity!==void 0?n.opacity:1,o));for(let i=0;i<fKe;i++){const c=`border${yue[i]}Radius`;let l=yK(t,c),u=yK(n,c);if(l===void 0&&u===void 0)continue;l||(l=0),u||(u=0),l===0||u===0||OK(l)===OK(u)?(e[c]=Math.max(Cr(zK(l),zK(u),o),0),(hc.test(u)||hc.test(l))&&(e[c]+="%")):e[c]=u}(t.rotate||n.rotate)&&(e.rotate=Cr(t.rotate||0,n.rotate||0,o))}function yK(e,t){return e[t]!==void 0?e[t]:e.borderRadius}const hKe=Aue(0,.5,kle),mKe=Aue(.5,.95,O1);function Aue(e,t,n){return o=>o<e?0:o>t?1:n(hh(e,t,o))}function AK(e,t){e.min=t.min,e.max=t.max}function ci(e,t){AK(e.x,t.x),AK(e.y,t.y)}function vK(e,t){e.translate=t.translate,e.scale=t.scale,e.originPoint=t.originPoint,e.origin=t.origin}function xK(e,t,n,o,r){return e-=t,e=hx(e,1/n,o),r!==void 0&&(e=hx(e,1/r,o)),e}function gKe(e,t=0,n=1,o=.5,r,s=e,i=e){if(hc.test(t)&&(t=parseFloat(t),t=Cr(i.min,i.max,t/100)-i.min),typeof t!="number")return;let c=Cr(s.min,s.max,o);e===s&&(c-=t),e.min=xK(e.min,t,n,c,r),e.max=xK(e.max,t,n,c,r)}function wK(e,t,[n,o,r],s,i){gKe(e,t[n],t[o],t[r],t.scale,s,i)}const MKe=["x","scaleX","originX"],zKe=["y","scaleY","originY"];function _K(e,t,n,o){wK(e.x,t,MKe,n?n.x:void 0,o?o.x:void 0),wK(e.y,t,zKe,n?n.y:void 0,o?o.y:void 0)}function kK(e){return e.translate===0&&e.scale===1}function vue(e){return kK(e.x)&&kK(e.y)}function SK(e,t){return e.min===t.min&&e.max===t.max}function OKe(e,t){return SK(e.x,t.x)&&SK(e.y,t.y)}function CK(e,t){return Math.round(e.min)===Math.round(t.min)&&Math.round(e.max)===Math.round(t.max)}function xue(e,t){return CK(e.x,t.x)&&CK(e.y,t.y)}function qK(e){return Ds(e.x)/Ds(e.y)}function RK(e,t){return e.translate===t.translate&&e.scale===t.scale&&e.originPoint===t.originPoint}class yKe{constructor(){this.members=[]}add(t){MP(this.members,t),t.scheduleRender()}remove(t){if(zP(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(r=>t===r);if(n===0)return!1;let o;for(let r=n;r>=0;r--){const s=this.members[r];if(s.isPresent!==!1){o=s;break}}return o?(this.promote(o),!0):!1}promote(t,n){const o=this.lead;if(t!==o&&(this.prevLead=o,this.lead=t,t.show(),o)){o.instance&&o.scheduleRender(),t.scheduleRender(),t.resumeFrom=o,n&&(t.resumeFrom.preserveOpacity=!0),o.snapshot&&(t.snapshot=o.snapshot,t.snapshot.latestValues=o.animationValues||o.latestValues),t.root&&t.root.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:r}=t.options;r===!1&&o.hide()}}exitAnimationComplete(){this.members.forEach(t=>{const{options:n,resumingFrom:o}=t;n.onExitComplete&&n.onExitComplete(),o&&o.options.onExitComplete&&o.options.onExitComplete()})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function AKe(e,t,n){let o="";const r=e.x.translate/t.x,s=e.y.translate/t.y,i=n?.z||0;if((r||s||i)&&(o=`translate3d(${r}px, ${s}px, ${i}px) `),(t.x!==1||t.y!==1)&&(o+=`scale(${1/t.x}, ${1/t.y}) `),n){const{transformPerspective:u,rotate:d,rotateX:p,rotateY:f,skewX:b,skewY:h}=n;u&&(o=`perspective(${u}px) ${o}`),d&&(o+=`rotate(${d}deg) `),p&&(o+=`rotateX(${p}deg) `),f&&(o+=`rotateY(${f}deg) `),b&&(o+=`skewX(${b}deg) `),h&&(o+=`skewY(${h}deg) `)}const c=e.x.scale*t.x,l=e.y.scale*t.y;return(c!==1||l!==1)&&(o+=`scale(${c}, ${l})`),o||"none"}const vKe=(e,t)=>e.depth-t.depth;class xKe{constructor(){this.children=[],this.isDirty=!1}add(t){MP(this.children,t),this.isDirty=!0}remove(t){zP(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(vKe),this.isDirty=!1,this.children.forEach(t)}}function Jv(e){const t=h1(e)?e.get():e;return hGe(t)?t.toValue():t}function wKe(e,t){const n=mc.now(),o=({timestamp:r})=>{const s=r-n;s>=t&&(Rd(o),e(s-t))};return Po.read(o,!0),()=>Rd(o)}function _Ke(e){return e instanceof SVGElement&&e.tagName!=="svg"}function kKe(e,t,n){const o=h1(e)?e:mz(e);return o.start(gP("",o,t,n)),o.animation}const Ip={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0},nM=typeof window<"u"&&window.MotionDebug!==void 0,RC=["","X","Y","Z"],SKe={visibility:"hidden"},TK=1e3;let CKe=0;function TC(e,t,n,o){const{latestValues:r}=t;r[e]&&(n[e]=r[e],t.setStaticValue(e,0),o&&(o[e]=0))}function wue(e){if(e.hasCheckedOptimisedAppear=!0,e.root===e)return;const{visualElement:t}=e.options;if(!t)return;const n=oue(t);if(window.MotionHasOptimisedAnimation(n,"transform")){const{layout:r,layoutId:s}=e.options;window.MotionCancelOptimisedAnimation(n,"transform",Po,!(r||s))}const{parent:o}=e;o&&!o.hasCheckedOptimisedAppear&&wue(o)}function _ue({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:o,resetTransform:r}){return class{constructor(i={},c=t?.()){this.id=CKe++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,nM&&(Ip.totalNodes=Ip.resolvedTargetDeltas=Ip.recalculatedProjection=0),this.nodes.forEach(TKe),this.nodes.forEach(LKe),this.nodes.forEach(PKe),this.nodes.forEach(EKe),nM&&window.MotionDebug.record(Ip)},this.resolvedRelativeTargetAt=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=i,this.root=c?c.root||c:this,this.path=c?[...c.path,c]:[],this.parent=c,this.depth=c?c.depth+1:0;for(let l=0;l<this.path.length;l++)this.path[l].shouldResetTransform=!0;this.root===this&&(this.nodes=new xKe)}addEventListener(i,c){return this.eventHandlers.has(i)||this.eventHandlers.set(i,new OP),this.eventHandlers.get(i).add(c)}notifyListeners(i,...c){const l=this.eventHandlers.get(i);l&&l.notify(...c)}hasListeners(i){return this.eventHandlers.has(i)}mount(i,c=this.root.hasTreeAnimated){if(this.instance)return;this.isSVG=_Ke(i),this.instance=i;const{layoutId:l,layout:u,visualElement:d}=this.options;if(d&&!d.current&&d.mount(i),this.root.nodes.add(this),this.parent&&this.parent.children.add(this),c&&(u||l)&&(this.isLayoutDirty=!0),e){let p;const f=()=>this.root.updateBlockedByResize=!1;e(i,()=>{this.root.updateBlockedByResize=!0,p&&p(),p=wKe(f,250),Qv.hasAnimatedSinceResize&&(Qv.hasAnimatedSinceResize=!1,this.nodes.forEach(WK))})}l&&this.root.registerSharedNode(l,this),this.options.animate!==!1&&d&&(l||u)&&this.addEventListener("didUpdate",({delta:p,hasLayoutChanged:f,hasRelativeTargetChanged:b,layout:h})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const g=this.options.transition||d.getDefaultTransition()||$Ke,{onLayoutAnimationStart:z,onLayoutAnimationComplete:A}=d.getProps(),_=!this.targetLayout||!xue(this.targetLayout,h)||b,v=!f&&b;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||v||f&&(_||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(p,v);const M={...oP(g,"layout"),onPlay:z,onComplete:A};(d.shouldReduceMotion||this.options.layoutRoot)&&(M.delay=0,M.type=!1),this.startAnimation(M)}else f||WK(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=h})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const i=this.getStack();i&&i.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,Rd(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(jKe),this.animationId++)}getTransformTemplate(){const{visualElement:i}=this.options;return i&&i.getProps().transformTemplate}willUpdate(i=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&wue(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let d=0;d<this.path.length;d++){const p=this.path[d];p.shouldResetTransform=!0,p.updateScroll("snapshot"),p.options.layoutRoot&&p.willUpdate(!1)}const{layoutId:c,layout:l}=this.options;if(c===void 0&&!l)return;const u=this.getTransformTemplate();this.prevTransformTemplateValue=u?u(this.latestValues,""):void 0,this.updateSnapshot(),i&&this.notifyListeners("willUpdate")}update(){if(this.updateScheduled=!1,this.isUpdateBlocked()){this.unblockUpdate(),this.clearAllSnapshots(),this.nodes.forEach(EK);return}this.isUpdating||this.nodes.forEach(NKe),this.isUpdating=!1,this.nodes.forEach(BKe),this.nodes.forEach(qKe),this.nodes.forEach(RKe),this.clearAllSnapshots();const c=mc.now();V0.delta=Td(0,1e3/60,c-V0.timestamp),V0.timestamp=c,V0.isProcessing=!0,vC.update.process(V0),vC.preRender.process(V0),vC.render.process(V0),V0.isProcessing=!1}didUpdate(){this.updateScheduled||(this.updateScheduled=!0,AP.read(this.scheduleUpdate))}clearAllSnapshots(){this.nodes.forEach(WKe),this.sharedNodes.forEach(IKe)}scheduleUpdateProjection(){this.projectionUpdateScheduled||(this.projectionUpdateScheduled=!0,Po.preRender(this.updateProjection,!1,!0))}scheduleCheckAfterUnmount(){Po.postRender(()=>{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let l=0;l<this.path.length;l++)this.path[l].updateScroll();const i=this.layout;this.layout=this.measure(!1),this.layoutCorrected=Hr(),this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners("measure",this.layout.layoutBox);const{visualElement:c}=this.options;c&&c.notify("LayoutMeasure",this.layout.layoutBox,i?i.layoutBox:void 0)}updateScroll(i="measure"){let c=!!(this.options.layoutScroll&&this.instance);if(this.scroll&&this.scroll.animationId===this.root.animationId&&this.scroll.phase===i&&(c=!1),c){const l=o(this.instance);this.scroll={animationId:this.root.animationId,phase:i,isRoot:l,offset:n(this.instance),wasRoot:this.scroll?this.scroll.isRoot:l}}}resetTransform(){if(!r)return;const i=this.isLayoutDirty||this.shouldResetTransform||this.options.alwaysMeasureLayout,c=this.projectionDelta&&!vue(this.projectionDelta),l=this.getTransformTemplate(),u=l?l(this.latestValues,""):void 0,d=u!==this.prevTransformTemplateValue;i&&(c||jp(this.latestValues)||d)&&(r(this.instance,u),this.shouldResetTransform=!1,this.scheduleRender())}measure(i=!0){const c=this.measurePageBox();let l=this.removeElementScroll(c);return i&&(l=this.removeTransform(l)),VKe(l),{animationId:this.root.animationId,measuredBox:c,layoutBox:l,latestValues:{},source:this.id}}measurePageBox(){var i;const{visualElement:c}=this.options;if(!c)return Hr();const l=c.measureViewportBox();if(!(((i=this.scroll)===null||i===void 0?void 0:i.wasRoot)||this.path.some(HKe))){const{scroll:d}=this.root;d&&(h2(l.x,d.offset.x),h2(l.y,d.offset.y))}return l}removeElementScroll(i){var c;const l=Hr();if(ci(l,i),!((c=this.scroll)===null||c===void 0)&&c.wasRoot)return l;for(let u=0;u<this.path.length;u++){const d=this.path[u],{scroll:p,options:f}=d;d!==this.root&&p&&f.layoutScroll&&(p.wasRoot&&ci(l,i),h2(l.x,p.offset.x),h2(l.y,p.offset.y))}return l}applyTransform(i,c=!1){const l=Hr();ci(l,i);for(let u=0;u<this.path.length;u++){const d=this.path[u];!c&&d.options.layoutScroll&&d.scroll&&d!==d.root&&m2(l,{x:-d.scroll.offset.x,y:-d.scroll.offset.y}),jp(d.latestValues)&&m2(l,d.latestValues)}return jp(this.latestValues)&&m2(l,this.latestValues),l}removeTransform(i){const c=Hr();ci(c,i);for(let l=0;l<this.path.length;l++){const u=this.path[l];if(!u.instance||!jp(u.latestValues))continue;R8(u.latestValues)&&u.updateSnapshot();const d=Hr(),p=u.measurePageBox();ci(d,p),_K(c,u.latestValues,u.snapshot?u.snapshot.layoutBox:void 0,d)}return jp(this.latestValues)&&_K(c,this.latestValues),c}setTargetDelta(i){this.targetDelta=i,this.root.scheduleUpdateProjection(),this.isProjectionDirty=!0}setOptions(i){this.options={...this.options,...i,crossfade:i.crossfade!==void 0?i.crossfade:!0}}clearMeasurements(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1}forceRelativeParentToResolveTarget(){this.relativeParent&&this.relativeParent.resolvedRelativeTargetAt!==V0.timestamp&&this.relativeParent.resolveTargetDelta(!0)}resolveTargetDelta(i=!1){var c;const l=this.getLead();this.isProjectionDirty||(this.isProjectionDirty=l.isProjectionDirty),this.isTransformDirty||(this.isTransformDirty=l.isTransformDirty),this.isSharedProjectionDirty||(this.isSharedProjectionDirty=l.isSharedProjectionDirty);const u=!!this.resumingFrom||this!==l;if(!(i||u&&this.isSharedProjectionDirty||this.isProjectionDirty||!((c=this.parent)===null||c===void 0)&&c.isProjectionDirty||this.attemptToResolveRelativeTarget||this.root.updateBlockedByResize))return;const{layout:p,layoutId:f}=this.options;if(!(!this.layout||!(p||f))){if(this.resolvedRelativeTargetAt=V0.timestamp,!this.targetDelta&&!this.relativeTarget){const b=this.getClosestProjectingParent();b&&b.layout&&this.animationProgress!==1?(this.relativeParent=b,this.forceRelativeParentToResolveTarget(),this.relativeTarget=Hr(),this.relativeTargetOrigin=Hr(),kM(this.relativeTargetOrigin,this.layout.layoutBox,b.layout.layoutBox),ci(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}if(!(!this.relativeTarget&&!this.targetDelta)){if(this.target||(this.target=Hr(),this.targetWithTransforms=Hr()),this.relativeTarget&&this.relativeTargetOrigin&&this.relativeParent&&this.relativeParent.target?(this.forceRelativeParentToResolveTarget(),UGe(this.target,this.relativeTarget,this.relativeParent.target)):this.targetDelta?(this.resumingFrom?this.target=this.applyTransform(this.layout.layoutBox):ci(this.target,this.layout.layoutBox),mue(this.target,this.targetDelta)):ci(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget){this.attemptToResolveRelativeTarget=!1;const b=this.getClosestProjectingParent();b&&!!b.resumingFrom==!!this.resumingFrom&&!b.options.layoutScroll&&b.target&&this.animationProgress!==1?(this.relativeParent=b,this.forceRelativeParentToResolveTarget(),this.relativeTarget=Hr(),this.relativeTargetOrigin=Hr(),kM(this.relativeTargetOrigin,this.target,b.target),ci(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}nM&&Ip.resolvedTargetDeltas++}}}getClosestProjectingParent(){if(!(!this.parent||R8(this.parent.latestValues)||hue(this.parent.latestValues)))return this.parent.isProjecting()?this.parent:this.parent.getClosestProjectingParent()}isProjecting(){return!!((this.relativeTarget||this.targetDelta||this.options.layoutRoot)&&this.layout)}calcProjection(){var i;const c=this.getLead(),l=!!this.resumingFrom||this!==c;let u=!0;if((this.isProjectionDirty||!((i=this.parent)===null||i===void 0)&&i.isProjectionDirty)&&(u=!1),l&&(this.isSharedProjectionDirty||this.isTransformDirty)&&(u=!1),this.resolvedRelativeTargetAt===V0.timestamp&&(u=!1),u)return;const{layout:d,layoutId:p}=this.options;if(this.isTreeAnimating=!!(this.parent&&this.parent.isTreeAnimating||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!this.layout||!(d||p))return;ci(this.layoutCorrected,this.layout.layoutBox);const f=this.treeScale.x,b=this.treeScale.y;tKe(this.layoutCorrected,this.treeScale,this.path,l),c.layout&&!c.target&&(this.treeScale.x!==1||this.treeScale.y!==1)&&(c.target=c.layout.layoutBox,c.targetWithTransforms=Hr());const{target:h}=c;if(!h){this.prevProjectionDelta&&(this.createProjectionDeltas(),this.scheduleRender());return}!this.projectionDelta||!this.prevProjectionDelta?this.createProjectionDeltas():(vK(this.prevProjectionDelta.x,this.projectionDelta.x),vK(this.prevProjectionDelta.y,this.projectionDelta.y)),_M(this.projectionDelta,this.layoutCorrected,h,this.latestValues),(this.treeScale.x!==f||this.treeScale.y!==b||!RK(this.projectionDelta.x,this.prevProjectionDelta.x)||!RK(this.projectionDelta.y,this.prevProjectionDelta.y))&&(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",h)),nM&&Ip.recalculatedProjection++}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(i=!0){var c;if((c=this.options.visualElement)===null||c===void 0||c.scheduleRender(),i){const l=this.getStack();l&&l.scheduleRender()}this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}createProjectionDeltas(){this.prevProjectionDelta=b2(),this.projectionDelta=b2(),this.projectionDeltaWithTransform=b2()}setAnimationOrigin(i,c=!1){const l=this.snapshot,u=l?l.latestValues:{},d={...this.latestValues},p=b2();(!this.relativeParent||!this.relativeParent.options.layoutRoot)&&(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!c;const f=Hr(),b=l?l.source:void 0,h=this.layout?this.layout.source:void 0,g=b!==h,z=this.getStack(),A=!z||z.members.length<=1,_=!!(g&&!A&&this.options.crossfade===!0&&!this.path.some(FKe));this.animationProgress=0;let v;this.mixTargetDelta=M=>{const y=M/1e3;NK(p.x,i.x,y),NK(p.y,i.y,y),this.setTargetDelta(p),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(kM(f,this.layout.layoutBox,this.relativeParent.layout.layoutBox),DKe(this.relativeTarget,this.relativeTargetOrigin,f,y),v&&OKe(this.relativeTarget,v)&&(this.isProjectionDirty=!1),v||(v=Hr()),ci(v,this.relativeTarget)),g&&(this.animationValues=d,bKe(d,u,this.latestValues,y,_,A)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=y},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(i){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(Rd(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Po.update(()=>{Qv.hasAnimatedSinceResize=!0,this.currentAnimation=kKe(0,TK,{...i,onUpdate:c=>{this.mixTargetDelta(c),i.onUpdate&&i.onUpdate(c)},onComplete:()=>{i.onComplete&&i.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const i=this.getStack();i&&i.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(TK),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const i=this.getLead();let{targetWithTransforms:c,target:l,layout:u,latestValues:d}=i;if(!(!c||!l||!u)){if(this!==i&&this.layout&&u&&kue(this.options.animationType,this.layout.layoutBox,u.layoutBox)){l=this.target||Hr();const p=Ds(this.layout.layoutBox.x);l.x.min=i.target.x.min,l.x.max=l.x.min+p;const f=Ds(this.layout.layoutBox.y);l.y.min=i.target.y.min,l.y.max=l.y.min+f}ci(c,l),m2(c,d),_M(this.projectionDeltaWithTransform,this.layoutCorrected,c,d)}}registerSharedNode(i,c){this.sharedNodes.has(i)||this.sharedNodes.set(i,new yKe),this.sharedNodes.get(i).add(c);const u=c.options.initialPromotionConfig;c.promote({transition:u?u.transition:void 0,preserveFollowOpacity:u&&u.shouldPreserveFollowOpacity?u.shouldPreserveFollowOpacity(c):void 0})}isLead(){const i=this.getStack();return i?i.lead===this:!0}getLead(){var i;const{layoutId:c}=this.options;return c?((i=this.getStack())===null||i===void 0?void 0:i.lead)||this:this}getPrevLead(){var i;const{layoutId:c}=this.options;return c?(i=this.getStack())===null||i===void 0?void 0:i.prevLead:void 0}getStack(){const{layoutId:i}=this.options;if(i)return this.root.sharedNodes.get(i)}promote({needsReset:i,transition:c,preserveFollowOpacity:l}={}){const u=this.getStack();u&&u.promote(this,l),i&&(this.projectionDelta=void 0,this.needsReset=!0),c&&this.setOptions({transition:c})}relegate(){const i=this.getStack();return i?i.relegate(this):!1}resetSkewAndRotation(){const{visualElement:i}=this.options;if(!i)return;let c=!1;const{latestValues:l}=i;if((l.z||l.rotate||l.rotateX||l.rotateY||l.rotateZ||l.skewX||l.skewY)&&(c=!0),!c)return;const u={};l.z&&TC("z",i,u,this.animationValues);for(let d=0;d<RC.length;d++)TC(`rotate${RC[d]}`,i,u,this.animationValues),TC(`skew${RC[d]}`,i,u,this.animationValues);i.render();for(const d in u)i.setStaticValue(d,u[d]),this.animationValues&&(this.animationValues[d]=u[d]);i.scheduleRender()}getProjectionStyles(i){var c,l;if(!this.instance||this.isSVG)return;if(!this.isVisible)return SKe;const u={visibility:""},d=this.getTransformTemplate();if(this.needsReset)return this.needsReset=!1,u.opacity="",u.pointerEvents=Jv(i?.pointerEvents)||"",u.transform=d?d(this.latestValues,""):"none",u;const p=this.getLead();if(!this.projectionDelta||!this.layout||!p.target){const g={};return this.options.layoutId&&(g.opacity=this.latestValues.opacity!==void 0?this.latestValues.opacity:1,g.pointerEvents=Jv(i?.pointerEvents)||""),this.hasProjected&&!jp(this.latestValues)&&(g.transform=d?d({},""):"none",this.hasProjected=!1),g}const f=p.animationValues||p.latestValues;this.applyTransformsToTarget(),u.transform=AKe(this.projectionDeltaWithTransform,this.treeScale,f),d&&(u.transform=d(f,u.transform));const{x:b,y:h}=this.projectionDelta;u.transformOrigin=`${b.origin*100}% ${h.origin*100}% 0`,p.animationValues?u.opacity=p===this?(l=(c=f.opacity)!==null&&c!==void 0?c:this.latestValues.opacity)!==null&&l!==void 0?l:1:this.preserveOpacity?this.latestValues.opacity:f.opacityExit:u.opacity=p===this?f.opacity!==void 0?f.opacity:"":f.opacityExit!==void 0?f.opacityExit:0;for(const g in mx){if(f[g]===void 0)continue;const{correct:z,applyTo:A}=mx[g],_=u.transform==="none"?f[g]:z(f[g],p);if(A){const v=A.length;for(let M=0;M<v;M++)u[A[M]]=_}else u[g]=_}return this.options.layoutId&&(u.pointerEvents=p===this?Jv(i?.pointerEvents)||"":"none"),u}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach(i=>{var c;return(c=i.currentAnimation)===null||c===void 0?void 0:c.stop()}),this.root.nodes.forEach(EK),this.root.sharedNodes.clear()}}}function qKe(e){e.updateLayout()}function RKe(e){var t;const n=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&n&&e.hasListeners("didUpdate")){const{layoutBox:o,measuredBox:r}=e.layout,{animationType:s}=e.options,i=n.source!==e.layout.source;s==="size"?pi(p=>{const f=i?n.measuredBox[p]:n.layoutBox[p],b=Ds(f);f.min=o[p].min,f.max=f.min+b}):kue(s,n.layoutBox,o)&&pi(p=>{const f=i?n.measuredBox[p]:n.layoutBox[p],b=Ds(o[p]);f.max=f.min+b,e.relativeTarget&&!e.currentAnimation&&(e.isProjectionDirty=!0,e.relativeTarget[p].max=e.relativeTarget[p].min+b)});const c=b2();_M(c,o,n.layoutBox);const l=b2();i?_M(l,e.applyTransform(r,!0),n.measuredBox):_M(l,o,n.layoutBox);const u=!vue(c);let d=!1;if(!e.resumeFrom){const p=e.getClosestProjectingParent();if(p&&!p.resumeFrom){const{snapshot:f,layout:b}=p;if(f&&b){const h=Hr();kM(h,n.layoutBox,f.layoutBox);const g=Hr();kM(g,o,b.layoutBox),xue(h,g)||(d=!0),p.options.layoutRoot&&(e.relativeTarget=g,e.relativeTargetOrigin=h,e.relativeParent=p)}}}e.notifyListeners("didUpdate",{layout:o,snapshot:n,delta:l,layoutDelta:c,hasLayoutChanged:u,hasRelativeTargetChanged:d})}else if(e.isLead()){const{onExitComplete:o}=e.options;o&&o()}e.options.transition=void 0}function TKe(e){nM&&Ip.totalNodes++,e.parent&&(e.isProjecting()||(e.isProjectionDirty=e.parent.isProjectionDirty),e.isSharedProjectionDirty||(e.isSharedProjectionDirty=!!(e.isProjectionDirty||e.parent.isProjectionDirty||e.parent.isSharedProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=e.parent.isTransformDirty))}function EKe(e){e.isProjectionDirty=e.isSharedProjectionDirty=e.isTransformDirty=!1}function WKe(e){e.clearSnapshot()}function EK(e){e.clearMeasurements()}function NKe(e){e.isLayoutDirty=!1}function BKe(e){const{visualElement:t}=e.options;t&&t.getProps().onBeforeLayoutMeasure&&t.notify("BeforeLayoutMeasure"),e.resetTransform()}function WK(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0,e.isProjectionDirty=!0}function LKe(e){e.resolveTargetDelta()}function PKe(e){e.calcProjection()}function jKe(e){e.resetSkewAndRotation()}function IKe(e){e.removeLeadSnapshot()}function NK(e,t,n){e.translate=Cr(t.translate,0,n),e.scale=Cr(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function BK(e,t,n,o){e.min=Cr(t.min,n.min,o),e.max=Cr(t.max,n.max,o)}function DKe(e,t,n,o){BK(e.x,t.x,n.x,o),BK(e.y,t.y,n.y,o)}function FKe(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const $Ke={duration:.45,ease:[.4,0,.1,1]},LK=e=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(e),PK=LK("applewebkit/")&&!LK("chrome/")?Math.round:O1;function jK(e){e.min=PK(e.min),e.max=PK(e.max)}function VKe(e){jK(e.x),jK(e.y)}function kue(e,t,n){return e==="position"||e==="preserve-aspect"&&!HGe(qK(t),qK(n),.2)}function HKe(e){var t;return e!==e.root&&((t=e.scroll)===null||t===void 0?void 0:t.wasRoot)}const UKe=_ue({attachResizeListener:(e,t)=>ml(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),EC={current:void 0},Sue=_ue({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!EC.current){const e=new UKe({});e.mount(window),e.setOptions({layoutScroll:!0}),EC.current=e}return EC.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>window.getComputedStyle(e).position==="fixed"}),XKe={pan:{Feature:aKe},drag:{Feature:iKe,ProjectionNode:Sue,MeasureLayout:Oue}};function IK(e,t){const n=t?"pointerenter":"pointerleave",o=t?"onHoverStart":"onHoverEnd",r=(s,i)=>{if(s.pointerType==="touch"||due())return;const c=e.getProps();e.animationState&&c.whileHover&&e.animationState.setActive("whileHover",t);const l=c[o];l&&Po.postRender(()=>l(s,i))};return Sl(e.current,n,r,{passive:!e.getProps()[o]})}class GKe extends op{mount(){this.unmount=kl(IK(this.node,!0),IK(this.node,!1))}unmount(){}}class KKe extends op{constructor(){super(...arguments),this.isActive=!1}onFocus(){let t=!1;try{t=this.node.current.matches(":focus-visible")}catch{t=!0}!t||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=kl(ml(this.node.current,"focus",()=>this.onFocus()),ml(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}const Cue=(e,t)=>t?e===t?!0:Cue(e,t.parentElement):!1;function WC(e,t){if(!t)return;const n=new PointerEvent("pointer"+e);t(n,kw(n))}class YKe extends op{constructor(){super(...arguments),this.removeStartListeners=O1,this.removeEndListeners=O1,this.removeAccessibleListeners=O1,this.startPointerPress=(t,n)=>{if(this.isPressing)return;this.removeEndListeners();const o=this.node.getProps(),s=Sl(window,"pointerup",(c,l)=>{if(!this.checkPressEnd())return;const{onTap:u,onTapCancel:d,globalTapTarget:p}=this.node.getProps(),f=!p&&!Cue(this.node.current,c.target)?d:u;f&&Po.update(()=>f(c,l))},{passive:!(o.onTap||o.onPointerUp)}),i=Sl(window,"pointercancel",(c,l)=>this.cancelPress(c,l),{passive:!(o.onTapCancel||o.onPointerCancel)});this.removeEndListeners=kl(s,i),this.startPress(t,n)},this.startAccessiblePress=()=>{const t=s=>{if(s.key!=="Enter"||this.isPressing)return;const i=c=>{c.key!=="Enter"||!this.checkPressEnd()||WC("up",(l,u)=>{const{onTap:d}=this.node.getProps();d&&Po.postRender(()=>d(l,u))})};this.removeEndListeners(),this.removeEndListeners=ml(this.node.current,"keyup",i),WC("down",(c,l)=>{this.startPress(c,l)})},n=ml(this.node.current,"keydown",t),o=()=>{this.isPressing&&WC("cancel",(s,i)=>this.cancelPress(s,i))},r=ml(this.node.current,"blur",o);this.removeAccessibleListeners=kl(n,r)}}startPress(t,n){this.isPressing=!0;const{onTapStart:o,whileTap:r}=this.node.getProps();r&&this.node.animationState&&this.node.animationState.setActive("whileTap",!0),o&&Po.postRender(()=>o(t,n))}checkPressEnd(){return this.removeEndListeners(),this.isPressing=!1,this.node.getProps().whileTap&&this.node.animationState&&this.node.animationState.setActive("whileTap",!1),!due()}cancelPress(t,n){if(!this.checkPressEnd())return;const{onTapCancel:o}=this.node.getProps();o&&Po.postRender(()=>o(t,n))}mount(){const t=this.node.getProps(),n=Sl(t.globalTapTarget?window:this.node.current,"pointerdown",this.startPointerPress,{passive:!(t.onTapStart||t.onPointerStart)}),o=ml(this.node.current,"focus",this.startAccessiblePress);this.removeStartListeners=kl(n,o)}unmount(){this.removeStartListeners(),this.removeEndListeners(),this.removeAccessibleListeners()}}const E8=new WeakMap,NC=new WeakMap,ZKe=e=>{const t=E8.get(e.target);t&&t(e)},QKe=e=>{e.forEach(ZKe)};function JKe({root:e,...t}){const n=e||document;NC.has(n)||NC.set(n,{});const o=NC.get(n),r=JSON.stringify(t);return o[r]||(o[r]=new IntersectionObserver(QKe,{root:e,...t})),o[r]}function eYe(e,t,n){const o=JKe(t);return E8.set(e,n),o.observe(e),()=>{E8.delete(e),o.unobserve(e)}}const tYe={some:0,all:1};class nYe extends op{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:t={}}=this.node.getProps(),{root:n,margin:o,amount:r="some",once:s}=t,i={root:n?n.current:void 0,rootMargin:o,threshold:typeof r=="number"?r:tYe[r]},c=l=>{const{isIntersecting:u}=l;if(this.isInView===u||(this.isInView=u,s&&!u&&this.hasEnteredView))return;u&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",u);const{onViewportEnter:d,onViewportLeave:p}=this.node.getProps(),f=u?d:p;f&&f(l)};return eYe(this.node.current,i,c)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:t,prevProps:n}=this.node;["amount","margin","root"].some(oYe(t,n))&&this.startObserver()}unmount(){}}function oYe({viewport:e={}},{viewport:t={}}={}){return n=>e[n]!==t[n]}const rYe={inView:{Feature:nYe},tap:{Feature:YKe},focus:{Feature:KKe},hover:{Feature:GKe}},sYe={layout:{ProjectionNode:Sue,MeasureLayout:Oue}},vP=x.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),Cw=x.createContext({}),xP=typeof window<"u",que=xP?x.useLayoutEffect:x.useEffect,Rue=x.createContext({strict:!1});function iYe(e,t,n,o,r){var s,i;const{visualElement:c}=x.useContext(Cw),l=x.useContext(Rue),u=x.useContext(Sw),d=x.useContext(vP).reducedMotion,p=x.useRef();o=o||l.renderer,!p.current&&o&&(p.current=o(e,{visualState:t,parent:c,props:n,presenceContext:u,blockInitialAnimation:u?u.initial===!1:!1,reducedMotionConfig:d}));const f=p.current,b=x.useContext(zue);f&&!f.projection&&r&&(f.type==="html"||f.type==="svg")&&aYe(p.current,n,r,b),x.useInsertionEffect(()=>{f&&f.update(n,u)});const h=n[nue],g=x.useRef(!!h&&!(!((s=window.MotionHandoffIsComplete)===null||s===void 0)&&s.call(window,h))&&((i=window.MotionHasOptimisedAnimation)===null||i===void 0?void 0:i.call(window,h)));return que(()=>{f&&(window.MotionIsMounted=!0,f.updateFeatures(),AP.render(f.render),g.current&&f.animationState&&f.animationState.animateChanges())}),x.useEffect(()=>{f&&(!g.current&&f.animationState&&f.animationState.animateChanges(),g.current&&(queueMicrotask(()=>{var z;(z=window.MotionHandoffMarkAsComplete)===null||z===void 0||z.call(window,h)}),g.current=!1))}),f}function aYe(e,t,n,o){const{layoutId:r,layout:s,drag:i,dragConstraints:c,layoutScroll:l,layoutRoot:u}=t;e.projection=new n(e.latestValues,t["data-framer-portal-id"]?void 0:Tue(e.parent)),e.projection.setOptions({layoutId:r,layout:s,alwaysMeasureLayout:!!i||c&&f2(c),visualElement:e,animationType:typeof s=="string"?s:"both",initialPromotionConfig:o,layoutScroll:l,layoutRoot:u})}function Tue(e){if(e)return e.options.allowProjection!==!1?e.projection:Tue(e.parent)}function cYe(e,t,n){return x.useCallback(o=>{o&&e.mount&&e.mount(o),t&&(o?t.mount(o):t.unmount()),n&&(typeof n=="function"?n(o):f2(n)&&(n.current=o))},[t])}function qw(e){return pz(e.animate)||nP.some(t=>fz(e[t]))}function Eue(e){return!!(qw(e)||e.variants)}function lYe(e,t){if(qw(e)){const{initial:n,animate:o}=e;return{initial:n===!1||fz(n)?n:void 0,animate:fz(o)?o:void 0}}return e.inherit!==!1?t:{}}function uYe(e){const{initial:t,animate:n}=lYe(e,x.useContext(Cw));return x.useMemo(()=>({initial:t,animate:n}),[DK(t),DK(n)])}function DK(e){return Array.isArray(e)?e.join(" "):e}const FK={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]},mh={};for(const e in FK)mh[e]={isEnabled:t=>FK[e].some(n=>!!t[n])};function dYe(e){for(const t in e)mh[t]={...mh[t],...e[t]}}const pYe=Symbol.for("motionComponentSymbol");function fYe({preloadedFeatures:e,createVisualElement:t,useRender:n,useVisualState:o,Component:r}){e&&dYe(e);function s(c,l){let u;const d={...x.useContext(vP),...c,layoutId:bYe(c)},{isStatic:p}=d,f=uYe(c),b=o(c,p);if(!p&&xP){hYe();const h=mYe(d);u=h.MeasureLayout,f.visualElement=iYe(r,b,d,t,h.ProjectionNode)}return a.jsxs(Cw.Provider,{value:f,children:[u&&f.visualElement?a.jsx(u,{visualElement:f.visualElement,...d}):null,n(r,c,cYe(b,f.visualElement,l),b,p,f.visualElement)]})}const i=x.forwardRef(s);return i[pYe]=r,i}function bYe({layoutId:e}){const t=x.useContext(yP).id;return t&&e!==void 0?t+"-"+e:e}function hYe(e,t){x.useContext(Rue).strict}function mYe(e){const{drag:t,layout:n}=mh;if(!t&&!n)return{};const o={...t,...n};return{MeasureLayout:t?.isEnabled(e)||n?.isEnabled(e)?o.MeasureLayout:void 0,ProjectionNode:o.ProjectionNode}}const gYe=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function wP(e){return typeof e!="string"||e.includes("-")?!1:!!(gYe.indexOf(e)>-1||/[A-Z]/u.test(e))}function Wue(e,{style:t,vars:n},o,r){Object.assign(e.style,t,r&&r.getProjectionStyles(o));for(const s in n)e.style.setProperty(s,n[s])}const Nue=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function Bue(e,t,n,o){Wue(e,t,void 0,o);for(const r in t.attrs)e.setAttribute(Nue.has(r)?r:_w(r),t.attrs[r])}function Lue(e,{layout:t,layoutId:n}){return np.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!mx[e]||e==="opacity")}function _P(e,t,n){var o;const{style:r}=e,s={};for(const i in r)(h1(r[i])||t.style&&h1(t.style[i])||Lue(i,e)||((o=n?.getValue(i))===null||o===void 0?void 0:o.liveStyle)!==void 0)&&(s[i]=r[i]);return n&&r&&typeof r.willChange=="string"&&(n.applyWillChange=!1),s}function Pue(e,t,n){const o=_P(e,t,n);for(const r in e)if(h1(e[r])||h1(t[r])){const s=I3.indexOf(r)!==-1?"attr"+r.charAt(0).toUpperCase()+r.substring(1):r;o[s]=e[r]}return o}function kP(e){const t=x.useRef(null);return t.current===null&&(t.current=e()),t.current}function MYe(e){if(np.has(e))return"transform";if(Qle.has(e))return _w(e)}function zYe({applyWillChange:e=!1,scrapeMotionValuesFromProps:t,createRenderState:n,onMount:o},r,s,i,c){const l={latestValues:OYe(r,s,i,c?!1:e,t),renderState:n()};return o&&(l.mount=u=>o(r,u,l)),l}const jue=e=>(t,n)=>{const o=x.useContext(Cw),r=x.useContext(Sw),s=()=>zYe(e,t,o,r,n);return n?s():kP(s)};function $K(e,t,n){const o=Array.isArray(t)?t:[t];for(let r=0;r<o.length;r++){const s=eP(e,o[r]);if(s){const{transitionEnd:i,transition:c,...l}=s;n(l,i)}}}function OYe(e,t,n,o,r){var s;const i={},c=new Set,l=o&&((s=e.style)===null||s===void 0?void 0:s.willChange)===void 0,u=r(e,{});for(const z in u)i[z]=Jv(u[z]);let{initial:d,animate:p}=e;const f=qw(e),b=Eue(e);t&&b&&!f&&e.inherit!==!1&&(d===void 0&&(d=t.initial),p===void 0&&(p=t.animate));let h=n?n.initial===!1:!1;h=h||d===!1;const g=h?p:d;return g&&typeof g!="boolean"&&!pz(g)&&$K(e,g,(z,A)=>{for(const _ in z){let v=z[_];if(Array.isArray(v)){const M=h?v.length-1:0;v=v[M]}v!==null&&(i[_]=v)}for(const _ in A)i[_]=A[_]}),l&&(p&&d!==!1&&!pz(p)&&$K(e,p,z=>{for(const A in z){const _=MYe(A);_&&c.add(_)}}),c.size&&(i.willChange=Array.from(c).join(","))),i}const SP=()=>({style:{},transform:{},transformOrigin:{},vars:{}}),Iue=()=>({...SP(),attrs:{}}),Due=(e,t)=>t&&typeof e=="number"?t.transform(e):e,yYe={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},AYe=I3.length;function vYe(e,t,n){let o="",r=!0;for(let s=0;s<AYe;s++){const i=I3[s],c=e[i];if(c===void 0)continue;let l=!0;if(typeof c=="number"?l=c===(i.startsWith("scale")?1:0):l=parseFloat(c)===0,!l||n){const u=Due(c,uP[i]);if(!l){r=!1;const d=yYe[i]||i;o+=`${d}(${u}) `}n&&(t[i]=u)}}return o=o.trim(),n?o=n(t,r?"":o):r&&(o="none"),o}function CP(e,t,n){const{style:o,vars:r,transformOrigin:s}=e;let i=!1,c=!1;for(const l in t){const u=t[l];if(np.has(l)){i=!0;continue}else if(Tle(l)){r[l]=u;continue}else{const d=Due(u,uP[l]);l.startsWith("origin")?(c=!0,s[l]=d):o[l]=d}}if(t.transform||(i||n?o.transform=vYe(t,e.transform,n):o.transform&&(o.transform="none")),c){const{originX:l="50%",originY:u="50%",originZ:d=0}=s;o.transformOrigin=`${l} ${u} ${d}`}}function VK(e,t,n){return typeof e=="string"?e:hn.transform(t+n*e)}function xYe(e,t,n){const o=VK(t,e.x,e.width),r=VK(n,e.y,e.height);return`${o} ${r}`}const wYe={offset:"stroke-dashoffset",array:"stroke-dasharray"},_Ye={offset:"strokeDashoffset",array:"strokeDasharray"};function kYe(e,t,n=1,o=0,r=!0){e.pathLength=1;const s=r?wYe:_Ye;e[s.offset]=hn.transform(-o);const i=hn.transform(t),c=hn.transform(n);e[s.array]=`${i} ${c}`}function qP(e,{attrX:t,attrY:n,attrScale:o,originX:r,originY:s,pathLength:i,pathSpacing:c=1,pathOffset:l=0,...u},d,p){if(CP(e,u,p),d){e.style.viewBox&&(e.attrs.viewBox=e.style.viewBox);return}e.attrs=e.style,e.style={};const{attrs:f,style:b,dimensions:h}=e;f.transform&&(h&&(b.transform=f.transform),delete f.transform),h&&(r!==void 0||s!==void 0||b.transform)&&(b.transformOrigin=xYe(h,r!==void 0?r:.5,s!==void 0?s:.5)),t!==void 0&&(f.x=t),n!==void 0&&(f.y=n),o!==void 0&&(f.scale=o),i!==void 0&&kYe(f,i,c,l,!1)}const RP=e=>typeof e=="string"&&e.toLowerCase()==="svg",SYe={useVisualState:jue({scrapeMotionValuesFromProps:Pue,createRenderState:Iue,onMount:(e,t,{renderState:n,latestValues:o})=>{Po.read(()=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}}),Po.render(()=>{qP(n,o,RP(t.tagName),e.transformTemplate),Bue(t,n)})}})},CYe={useVisualState:jue({applyWillChange:!0,scrapeMotionValuesFromProps:_P,createRenderState:SP})};function Fue(e,t,n){for(const o in t)!h1(t[o])&&!Lue(o,n)&&(e[o]=t[o])}function qYe({transformTemplate:e},t){return x.useMemo(()=>{const n=SP();return CP(n,t,e),Object.assign({},n.vars,n.style)},[t])}function RYe(e,t){const n=e.style||{},o={};return Fue(o,n,e),Object.assign(o,qYe(e,t)),o}function TYe(e,t){const n={},o=RYe(e,t);return e.drag&&e.dragListener!==!1&&(n.draggable=!1,o.userSelect=o.WebkitUserSelect=o.WebkitTouchCallout="none",o.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),e.tabIndex===void 0&&(e.onTap||e.onTapStart||e.whileTap)&&(n.tabIndex=0),n.style=o,n}const EYe=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function gx(e){return e.startsWith("while")||e.startsWith("drag")&&e!=="draggable"||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||EYe.has(e)}let $ue=e=>!gx(e);function WYe(e){e&&($ue=t=>t.startsWith("on")?!gx(t):e(t))}try{WYe(require("@emotion/is-prop-valid").default)}catch{}function NYe(e,t,n){const o={};for(const r in e)r==="values"&&typeof e.values=="object"||($ue(r)||n===!0&&gx(r)||!t&&!gx(r)||e.draggable&&r.startsWith("onDrag"))&&(o[r]=e[r]);return o}function BYe(e,t,n,o){const r=x.useMemo(()=>{const s=Iue();return qP(s,t,RP(o),e.transformTemplate),{...s.attrs,style:{...s.style}}},[t]);if(e.style){const s={};Fue(s,e.style,e),r.style={...s,...r.style}}return r}function LYe(e=!1){return(n,o,r,{latestValues:s},i)=>{const l=(wP(n)?BYe:TYe)(o,s,i,n),u=NYe(o,typeof n=="string",e),d=n!==x.Fragment?{...u,...l,ref:r}:{},{children:p}=o,f=x.useMemo(()=>h1(p)?p.get():p,[p]);return x.createElement(n,{...d,children:f})}}function PYe(e,t){return function(o,{forwardMotionProps:r}={forwardMotionProps:!1}){const i={...wP(o)?SYe:CYe,preloadedFeatures:e,useRender:LYe(r),createVisualElement:t,Component:o};return fYe(i)}}const W8={current:null},Vue={current:!1};function jYe(){if(Vue.current=!0,!!xP)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>W8.current=e.matches;e.addListener(t),t()}else W8.current=!1}function IYe(e,t,n){for(const o in t){const r=t[o],s=n[o];if(h1(r))e.addValue(o,r);else if(h1(s))e.addValue(o,mz(r,{owner:e}));else if(s!==r)if(e.hasValue(o)){const i=e.getValue(o);i.liveStyle===!0?i.jump(r):i.hasAnimated||i.set(r)}else{const i=e.getStaticValue(o);e.addValue(o,mz(i!==void 0?i:r,{owner:e}))}}for(const o in n)t[o]===void 0&&e.removeValue(o);return t}const HK=new WeakMap,DYe=[...Nle,f1,Ed],FYe=e=>DYe.find(Wle(e)),UK=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];class $Ye{scrapeMotionValuesFromProps(t,n,o){return{}}constructor({parent:t,props:n,presenceContext:o,reducedMotionConfig:r,blockInitialAnimation:s,visualState:i},c={}){this.applyWillChange=!1,this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=aP,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const f=mc.now();this.renderScheduledAt<f&&(this.renderScheduledAt=f,Po.render(this.render,!1,!0))};const{latestValues:l,renderState:u}=i;this.latestValues=l,this.baseTarget={...l},this.initialValues=n.initial?{...l}:{},this.renderState=u,this.parent=t,this.props=n,this.presenceContext=o,this.depth=t?t.depth+1:0,this.reducedMotionConfig=r,this.options=c,this.blockInitialAnimation=!!s,this.isControllingVariants=qw(n),this.isVariantNode=Eue(n),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=!!(t&&t.current);const{willChange:d,...p}=this.scrapeMotionValuesFromProps(n,{},this);for(const f in p){const b=p[f];l[f]!==void 0&&h1(b)&&b.set(l[f],!1)}}mount(t){this.current=t,HK.set(t,this),this.projection&&!this.projection.instance&&this.projection.mount(t),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach((n,o)=>this.bindToMotionValue(o,n)),Vue.current||jYe(),this.shouldReduceMotion=this.reducedMotionConfig==="never"?!1:this.reducedMotionConfig==="always"?!0:W8.current,this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){HK.delete(this.current),this.projection&&this.projection.unmount(),Rd(this.notifyUpdate),Rd(this.render),this.valueSubscriptions.forEach(t=>t()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const t in this.events)this.events[t].clear();for(const t in this.features){const n=this.features[t];n&&(n.unmount(),n.isMounted=!1)}this.current=null}bindToMotionValue(t,n){this.valueSubscriptions.has(t)&&this.valueSubscriptions.get(t)();const o=np.has(t),r=n.on("change",c=>{this.latestValues[t]=c,this.props.onUpdate&&Po.preRender(this.notifyUpdate),o&&this.projection&&(this.projection.isTransformDirty=!0)}),s=n.on("renderRequest",this.scheduleRender);let i;window.MotionCheckAppearSync&&(i=window.MotionCheckAppearSync(this,t,n)),this.valueSubscriptions.set(t,()=>{r(),s(),i&&i(),n.owner&&n.stop()})}sortNodePosition(t){return!this.current||!this.sortInstanceNodePosition||this.type!==t.type?0:this.sortInstanceNodePosition(this.current,t.current)}updateFeatures(){let t="animation";for(t in mh){const n=mh[t];if(!n)continue;const{isEnabled:o,Feature:r}=n;if(!this.features[t]&&r&&o(this.props)&&(this.features[t]=new r(this)),this.features[t]){const s=this.features[t];s.isMounted?s.update():(s.mount(),s.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):Hr()}getStaticValue(t){return this.latestValues[t]}setStaticValue(t,n){this.latestValues[t]=n}update(t,n){(t.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=t,this.prevPresenceContext=this.presenceContext,this.presenceContext=n;for(let o=0;o<UK.length;o++){const r=UK[o];this.propEventSubscriptions[r]&&(this.propEventSubscriptions[r](),delete this.propEventSubscriptions[r]);const s="on"+r,i=t[s];i&&(this.propEventSubscriptions[r]=this.on(r,i))}this.prevMotionValues=IYe(this,this.scrapeMotionValuesFromProps(t,this.prevProps,this),this.prevMotionValues),this.handleChildMotionValue&&this.handleChildMotionValue()}getProps(){return this.props}getVariant(t){return this.props.variants?this.props.variants[t]:void 0}getDefaultTransition(){return this.props.transition}getTransformPagePoint(){return this.props.transformPagePoint}getClosestVariantNode(){return this.isVariantNode?this:this.parent?this.parent.getClosestVariantNode():void 0}addVariantChild(t){const n=this.getClosestVariantNode();if(n)return n.variantChildren&&n.variantChildren.add(t),()=>n.variantChildren.delete(t)}addValue(t,n){const o=this.values.get(t);n!==o&&(o&&this.removeValue(t),this.bindToMotionValue(t,n),this.values.set(t,n),this.latestValues[t]=n.get())}removeValue(t){this.values.delete(t);const n=this.valueSubscriptions.get(t);n&&(n(),this.valueSubscriptions.delete(t)),delete this.latestValues[t],this.removeValueFromRenderState(t,this.renderState)}hasValue(t){return this.values.has(t)}getValue(t,n){if(this.props.values&&this.props.values[t])return this.props.values[t];let o=this.values.get(t);return o===void 0&&n!==void 0&&(o=mz(n===null?void 0:n,{owner:this}),this.addValue(t,o)),o}readValue(t,n){var o;let r=this.latestValues[t]!==void 0||!this.current?this.latestValues[t]:(o=this.getBaseTargetFromProps(this.props,t))!==null&&o!==void 0?o:this.readValueFromInstance(this.current,t,this.options);return r!=null&&(typeof r=="string"&&(qle(r)||Cle(r))?r=parseFloat(r):!FYe(r)&&Ed.test(n)&&(r=$le(t,n)),this.setBaseTarget(t,h1(r)?r.get():r)),h1(r)?r.get():r}setBaseTarget(t,n){this.baseTarget[t]=n}getBaseTarget(t){var n;const{initial:o}=this.props;let r;if(typeof o=="string"||typeof o=="object"){const i=eP(this.props,o,(n=this.presenceContext)===null||n===void 0?void 0:n.custom);i&&(r=i[t])}if(o&&r!==void 0)return r;const s=this.getBaseTargetFromProps(this.props,t);return s!==void 0&&!h1(s)?s:this.initialValues[t]!==void 0&&r===void 0?void 0:this.baseTarget[t]}on(t,n){return this.events[t]||(this.events[t]=new OP),this.events[t].add(n)}notify(t,...n){this.events[t]&&this.events[t].notify(...n)}}class Hue extends $Ye{constructor(){super(...arguments),this.KeyframeResolver=Vle}sortInstanceNodePosition(t,n){return t.compareDocumentPosition(n)&2?1:-1}getBaseTargetFromProps(t,n){return t.style?t.style[n]:void 0}removeValueFromRenderState(t,{vars:n,style:o}){delete n[t],delete o[t]}}function VYe(e){return window.getComputedStyle(e)}class HYe extends Hue{constructor(){super(...arguments),this.type="html",this.applyWillChange=!0,this.renderInstance=Wue}readValueFromInstance(t,n){if(np.has(n)){const o=dP(n);return o&&o.default||0}else{const o=VYe(t),r=(Tle(n)?o.getPropertyValue(n):o[n])||0;return typeof r=="string"?r.trim():r}}measureInstanceViewportBox(t,{transformPagePoint:n}){return gue(t,n)}build(t,n,o){CP(t,n,o.transformTemplate)}scrapeMotionValuesFromProps(t,n,o){return _P(t,n,o)}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:t}=this.props;h1(t)&&(this.childSubscription=t.on("change",n=>{this.current&&(this.current.textContent=`${n}`)}))}}class UYe extends Hue{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=Hr}getBaseTargetFromProps(t,n){return t[n]}readValueFromInstance(t,n){if(np.has(n)){const o=dP(n);return o&&o.default||0}return n=Nue.has(n)?n:_w(n),t.getAttribute(n)}scrapeMotionValuesFromProps(t,n,o){return Pue(t,n,o)}build(t,n,o){qP(t,n,this.isSVGTag,o.transformTemplate)}renderInstance(t,n,o,r){Bue(t,n,o,r)}mount(t){this.isSVGTag=RP(t.tagName),super.mount(t)}}const XYe=(e,t)=>wP(e)?new UYe(t):new HYe(t,{allowProjection:e!==x.Fragment}),GYe=PYe({...BGe,...rYe,...XKe,...sYe},XYe),Rr=SUe(GYe);class KYe extends x.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const o=this.props.sizeRef.current;o.height=n.offsetHeight||0,o.width=n.offsetWidth||0,o.top=n.offsetTop,o.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function YYe({children:e,isPresent:t}){const n=x.useId(),o=x.useRef(null),r=x.useRef({width:0,height:0,top:0,left:0}),{nonce:s}=x.useContext(vP);return x.useInsertionEffect(()=>{const{width:i,height:c,top:l,left:u}=r.current;if(t||!o.current||!i||!c)return;o.current.dataset.motionPopId=n;const d=document.createElement("style");return s&&(d.nonce=s),document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` + */var hG;function fHe(){if(hG)return So;hG=1;var e=typeof Symbol=="function"&&Symbol.for,t=e?Symbol.for("react.element"):60103,n=e?Symbol.for("react.portal"):60106,o=e?Symbol.for("react.fragment"):60107,r=e?Symbol.for("react.strict_mode"):60108,s=e?Symbol.for("react.profiler"):60114,i=e?Symbol.for("react.provider"):60109,c=e?Symbol.for("react.context"):60110,l=e?Symbol.for("react.async_mode"):60111,u=e?Symbol.for("react.concurrent_mode"):60111,d=e?Symbol.for("react.forward_ref"):60112,p=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,b=e?Symbol.for("react.memo"):60115,h=e?Symbol.for("react.lazy"):60116,g=e?Symbol.for("react.block"):60121,z=e?Symbol.for("react.fundamental"):60117,A=e?Symbol.for("react.responder"):60118,_=e?Symbol.for("react.scope"):60119;function v(y){if(typeof y=="object"&&y!==null){var k=y.$$typeof;switch(k){case t:switch(y=y.type,y){case l:case u:case o:case s:case r:case p:return y;default:switch(y=y&&y.$$typeof,y){case c:case d:case h:case b:case i:return y;default:return k}}case n:return k}}}function M(y){return v(y)===u}return So.AsyncMode=l,So.ConcurrentMode=u,So.ContextConsumer=c,So.ContextProvider=i,So.Element=t,So.ForwardRef=d,So.Fragment=o,So.Lazy=h,So.Memo=b,So.Portal=n,So.Profiler=s,So.StrictMode=r,So.Suspense=p,So.isAsyncMode=function(y){return M(y)||v(y)===l},So.isConcurrentMode=M,So.isContextConsumer=function(y){return v(y)===c},So.isContextProvider=function(y){return v(y)===i},So.isElement=function(y){return typeof y=="object"&&y!==null&&y.$$typeof===t},So.isForwardRef=function(y){return v(y)===d},So.isFragment=function(y){return v(y)===o},So.isLazy=function(y){return v(y)===h},So.isMemo=function(y){return v(y)===b},So.isPortal=function(y){return v(y)===n},So.isProfiler=function(y){return v(y)===s},So.isStrictMode=function(y){return v(y)===r},So.isSuspense=function(y){return v(y)===p},So.isValidElementType=function(y){return typeof y=="string"||typeof y=="function"||y===o||y===u||y===s||y===r||y===p||y===f||typeof y=="object"&&y!==null&&(y.$$typeof===h||y.$$typeof===b||y.$$typeof===i||y.$$typeof===c||y.$$typeof===d||y.$$typeof===z||y.$$typeof===A||y.$$typeof===_||y.$$typeof===g)},So.typeOf=v,So}var mG;function bHe(){return mG||(mG=1,gC.exports=fHe()),gC.exports}var MC,gG;function hHe(){if(gG)return MC;gG=1;var e=bHe(),t={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},n={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},r={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};s[e.ForwardRef]=o,s[e.Memo]=r;function i(h){return e.isMemo(h)?r:s[h.$$typeof]||t}var c=Object.defineProperty,l=Object.getOwnPropertyNames,u=Object.getOwnPropertySymbols,d=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,f=Object.prototype;function b(h,g,z){if(typeof g!="string"){if(f){var A=p(g);A&&A!==f&&b(h,A,z)}var _=l(g);u&&(_=_.concat(u(g)));for(var v=i(h),M=i(g),y=0;y<_.length;++y){var k=_[y];if(!n[k]&&!(z&&z[k])&&!(M&&M[k])&&!(v&&v[k])){var S=d(g,k);try{c(h,k,S)}catch{}}}}return h}return MC=b,MC}hHe();var mHe=!0;function UL(e,t,n){var o="";return n.split(" ").forEach(function(r){e[r]!==void 0?t.push(e[r]+";"):r&&(o+=r+" ")}),o}var lle=function(t,n,o){var r=t.key+"-"+n.name;(o===!1||mHe===!1)&&t.registered[r]===void 0&&(t.registered[r]=n.styles)},XL=function(t,n,o){lle(t,n,o);var r=t.key+"-"+n.name;if(t.inserted[n.name]===void 0){var s=n;do t.insert(n===s?"."+r:"",s,t.sheet,!0),s=s.next;while(s!==void 0)}};function gHe(e){for(var t=0,n,o=0,r=e.length;r>=4;++o,r-=4)n=e.charCodeAt(o)&255|(e.charCodeAt(++o)&255)<<8|(e.charCodeAt(++o)&255)<<16|(e.charCodeAt(++o)&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(r){case 3:t^=(e.charCodeAt(o+2)&255)<<16;case 2:t^=(e.charCodeAt(o+1)&255)<<8;case 1:t^=e.charCodeAt(o)&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 MHe={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},zHe=!1,OHe=/[A-Z]|^ms/g,yHe=/_EMO_([^_]+?)_([^]*?)_EMO_/g,ule=function(t){return t.charCodeAt(1)===45},MG=function(t){return t!=null&&typeof t!="boolean"},zC=ale(function(e){return ule(e)?e:e.replace(OHe,"-$&").toLowerCase()}),zG=function(t,n){switch(t){case"animation":case"animationName":if(typeof n=="string")return n.replace(yHe,function(o,r,s){return nc={name:r,styles:s,next:nc},r})}return MHe[t]!==1&&!ule(t)&&typeof n=="number"&&n!==0?n+"px":n},AHe="Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.";function dz(e,t,n){if(n==null)return"";var o=n;if(o.__emotion_styles!==void 0)return o;switch(typeof n){case"boolean":return"";case"object":{var r=n;if(r.anim===1)return nc={name:r.name,styles:r.styles,next:nc},r.name;var s=n;if(s.styles!==void 0){var i=s.next;if(i!==void 0)for(;i!==void 0;)nc={name:i.name,styles:i.styles,next:nc},i=i.next;var c=s.styles+";";return c}return vHe(e,t,n)}case"function":{if(e!==void 0){var l=nc,u=n(e);return nc=l,dz(e,t,u)}break}}var d=n;if(t==null)return d;var p=t[d];return p!==void 0?p:d}function vHe(e,t,n){var o="";if(Array.isArray(n))for(var r=0;r<n.length;r++)o+=dz(e,t,n[r])+";";else for(var s in n){var i=n[s];if(typeof i!="object"){var c=i;t!=null&&t[c]!==void 0?o+=s+"{"+t[c]+"}":MG(c)&&(o+=zC(s)+":"+zG(s,c)+";")}else{if(s==="NO_COMPONENT_SELECTOR"&&zHe)throw new Error(AHe);if(Array.isArray(i)&&typeof i[0]=="string"&&(t==null||t[i[0]]===void 0))for(var l=0;l<i.length;l++)MG(i[l])&&(o+=zC(s)+":"+zG(s,i[l])+";");else{var u=dz(e,t,i);switch(s){case"animation":case"animationName":{o+=zC(s)+":"+u+";";break}default:o+=s+"{"+u+"}"}}}}return o}var OG=/label:\s*([^\s;{]+)\s*(;|$)/g,nc;function xM(e,t,n){if(e.length===1&&typeof e[0]=="object"&&e[0]!==null&&e[0].styles!==void 0)return e[0];var o=!0,r="";nc=void 0;var s=e[0];if(s==null||s.raw===void 0)o=!1,r+=dz(n,t,s);else{var i=s;r+=i[0]}for(var c=1;c<e.length;c++)if(r+=dz(n,t,e[c]),o){var l=s;r+=l[c]}OG.lastIndex=0;for(var u="",d;(d=OG.exec(r))!==null;)u+="-"+d[1];var p=gHe(r)+u;return{name:p,styles:r,next:nc}}var xHe=function(t){return t()},wHe=bE.useInsertionEffect?bE.useInsertionEffect:!1,_He=wHe||xHe,GL=x.createContext(typeof HTMLElement<"u"?HL({key:"css"}):null),kHe=GL.Provider,SHe=function(){return x.useContext(GL)},CHe=function(t){return x.forwardRef(function(n,o){var r=x.useContext(GL);return t(n,r,o)})},qHe=x.createContext({});function Xe(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return xM(t)}var tp=function(){var t=Xe.apply(void 0,arguments),n="animation-"+t.name;return{name:n,styles:"@keyframes "+n+"{"+t.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}};function yG(e,t){if(e.inserted[t.name]===void 0)return e.insert("",t,e.sheet,!0)}function AG(e,t,n){var o=[],r=UL(e,o,n);return o.length<2?n:r+t(o)}var RHe=function(t){var n=HL(t);n.sheet.speedy=function(c){this.isSpeedy=c},n.compat=!0;var o=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];var p=xM(u,n.registered,void 0);return XL(n,p,!1),n.key+"-"+p.name},r=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];var p=xM(u,n.registered),f="animation-"+p.name;return yG(n,{name:p.name,styles:"@keyframes "+f+"{"+p.styles+"}"}),f},s=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];var p=xM(u,n.registered);yG(n,p)},i=function(){for(var l=arguments.length,u=new Array(l),d=0;d<l;d++)u[d]=arguments[d];return AG(n.registered,o,THe(u))};return{css:o,cx:i,injectGlobal:s,keyframes:r,hydrate:function(l){l.forEach(function(u){n.inserted[u]=!0})},flush:function(){n.registered={},n.inserted={},n.sheet.flush()},sheet:n.sheet,cache:n,getRegisteredStyles:UL.bind(null,n.registered),merge:AG.bind(null,n.registered,o)}},THe=function e(t){for(var n="",o=0;o<t.length;o++){var r=t[o];if(r!=null){var s=void 0;switch(typeof r){case"boolean":break;case"object":{if(Array.isArray(r))s=e(r);else{s="";for(var i in r)r[i]&&i&&(s&&(s+=" "),s+=i)}break}default:s=r}s&&(n&&(n+=" "),n+=s)}}return n},EHe=RHe({key:"css"}),WHe=EHe.cx;const NHe=e=>typeof e<"u"&&e!==null&&["name","styles"].every(t=>typeof e[t]<"u"),ro=()=>{const e=SHe();return x.useCallback((...n)=>{if(e===null)throw new Error("The `useCx` hook should be only used within a valid Emotion Cache Context");return WHe(...n.map(o=>NHe(o)?(XL(e,o,!1),`${e.key}-${o.name}`):o))},[e])},P3={name:"kv6lnz",styles:"box-sizing:border-box;*,*::before,*::after{box-sizing:inherit;}"};let OC;Xs([Gs]);function BHe(){if(!(typeof document>"u")){if(!OC){const e=document.createElement("div");e.setAttribute("data-g2-color-computation-node",""),document.body.appendChild(e),OC=e}return OC}}function LHe(e){return typeof e!="string"?!1:an(e).isValid()}function PHe(e){if(typeof e!="string")return"";if(LHe(e))return e;if(!e.includes("var(")||typeof document>"u")return"";const t=BHe();if(!t)return"";t.style.background=e;const n=window?.getComputedStyle(t).background;return t.style.background="",n||""}const jHe=Hs(PHe);function IHe(e){const t=jHe(e);return an(t).isLight()?"#000000":"#ffffff"}function DHe(e){return IHe(e)==="#000000"?"dark":"light"}const vG=new RegExp(/-left/g),xG=new RegExp(/-right/g),wG=new RegExp(/Left/g),_G=new RegExp(/Right/g);function FHe(e){return e==="left"?"right":e==="right"?"left":vG.test(e)?e.replace(vG,"-right"):xG.test(e)?e.replace(xG,"-left"):wG.test(e)?e.replace(wG,"Right"):_G.test(e)?e.replace(_G,"Left"):e}const $He=(e={})=>Object.fromEntries(Object.entries(e).map(([t,n])=>[FHe(t),n]));function Go(e={},t){return()=>t?jt()?Xe(t,"",""):Xe(e,"",""):jt()?Xe($He(e),"",""):Xe(e,"","")}Go.watch=()=>jt();const VHe={"default.fontFamily":"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif","default.fontSize":"13px","helpText.fontSize":"12px",mobileTextMinFontSize:"16px"};function la(e){var t;return(t=VHe[e])!==null&&t!==void 0?t:""}const HHe={huge:"1440px",wide:"1280px","x-large":"1080px",large:"960px",medium:"782px",small:"600px",mobile:"480px","zoomed-in":"280px"},UHe=e=>`@media (min-width: ${HHe[e]})`,XHe="4px";function Je(e){if(typeof e>"u")return;if(!e)return"0";const t=typeof e=="number"?e:Number(e);return typeof window<"u"&&window.CSS?.supports?.("margin",e.toString())||Number.isNaN(t)?e.toString():`calc(${XHe} * ${e})`}const Gv="#fff",Fa={900:"#1e1e1e",800:"#2f2f2f",700:"#757575",600:"#949494",400:"#ccc",300:"#ddd",200:"#e0e0e0",100:"#f0f0f0"},GHe={yellow:"#f0b849",red:"#d94f4f",green:"#4ab866"},$a={accent:"var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))",accentDarker10:"var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6))",accentDarker20:"var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6))",accentInverted:`var(--wp-components-color-accent-inverted, ${Gv})`,background:`var(--wp-components-color-background, ${Gv})`,foreground:`var(--wp-components-color-foreground, ${Fa[900]})`,foregroundInverted:`var(--wp-components-color-foreground-inverted, ${Gv})`,gray:{900:`var(--wp-components-color-foreground, ${Fa[900]})`,800:`var(--wp-components-color-gray-800, ${Fa[800]})`,700:`var(--wp-components-color-gray-700, ${Fa[700]})`,600:`var(--wp-components-color-gray-600, ${Fa[600]})`,400:`var(--wp-components-color-gray-400, ${Fa[400]})`,300:`var(--wp-components-color-gray-300, ${Fa[300]})`,200:`var(--wp-components-color-gray-200, ${Fa[200]})`,100:`var(--wp-components-color-gray-100, ${Fa[100]})`}},KHe={background:$a.background,backgroundDisabled:$a.gray[100],border:$a.gray[600],borderHover:$a.gray[700],borderFocus:$a.accent,borderDisabled:$a.gray[400],textDisabled:$a.gray[600],darkGrayPlaceholder:`color-mix(in srgb, ${$a.foreground}, transparent 38%)`,lightGrayPlaceholder:`color-mix(in srgb, ${$a.background}, transparent 35%)`},Ze=Object.freeze({gray:Fa,white:Gv,alert:GHe,theme:$a,ui:KHe}),kg="36px",YHe={controlPaddingX:12,controlPaddingXSmall:8,controlPaddingXLarge:12*1.3334,controlBoxShadowFocus:`0 0 0 0.5px ${Ze.theme.accent}`,controlHeight:kg,controlHeightXSmall:`calc( ${kg} * 0.6 )`,controlHeightSmall:`calc( ${kg} * 0.8 )`,controlHeightLarge:`calc( ${kg} * 1.2 )`,controlHeightXLarge:`calc( ${kg} * 1.4 )`},Ye=Object.assign({},YHe,{colorDivider:"rgba(0, 0, 0, 0.1)",colorScrollbarThumb:"rgba(0, 0, 0, 0.2)",colorScrollbarThumbHover:"rgba(0, 0, 0, 0.5)",colorScrollbarTrack:"rgba(0, 0, 0, 0.04)",elevationIntensity:1,radiusXSmall:"1px",radiusSmall:"2px",radiusMedium:"4px",radiusLarge:"8px",radiusFull:"9999px",radiusRound:"50%",borderWidth:"1px",borderWidthFocus:"1.5px",borderWidthTab:"4px",spinnerSize:16,fontSize:"13px",fontSizeH1:"calc(2.44 * 13px)",fontSizeH2:"calc(1.95 * 13px)",fontSizeH3:"calc(1.56 * 13px)",fontSizeH4:"calc(1.25 * 13px)",fontSizeH5:"13px",fontSizeH6:"calc(0.8 * 13px)",fontSizeInputMobile:"16px",fontSizeMobile:"15px",fontSizeSmall:"calc(0.92 * 13px)",fontSizeXSmall:"calc(0.75 * 13px)",fontLineHeightBase:"1.4",fontWeight:"normal",fontWeightHeading:"600",gridBase:"4px",cardPaddingXSmall:`${Je(2)}`,cardPaddingSmall:`${Je(4)}`,cardPaddingMedium:`${Je(4)} ${Je(6)}`,cardPaddingLarge:`${Je(6)} ${Je(8)}`,elevationXSmall:"0 1px 1px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02), 0 3px 3px rgba(0, 0, 0, 0.02), 0 4px 4px rgba(0, 0, 0, 0.01)",elevationSmall:"0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.04), 0 6px 6px rgba(0, 0, 0, 0.03), 0 8px 8px rgba(0, 0, 0, 0.02)",elevationMedium:"0 2px 3px rgba(0, 0, 0, 0.05), 0 4px 5px rgba(0, 0, 0, 0.04), 0 12px 12px rgba(0, 0, 0, 0.03), 0 16px 16px rgba(0, 0, 0, 0.02)",elevationLarge:"0 5px 15px rgba(0, 0, 0, 0.08), 0 15px 27px rgba(0, 0, 0, 0.07), 0 30px 36px rgba(0, 0, 0, 0.04), 0 50px 43px rgba(0, 0, 0, 0.02)",surfaceBackgroundColor:Ze.white,surfaceBackgroundSubtleColor:"#F3F3F3",surfaceBackgroundTintColor:"#F5F5F5",surfaceBorderColor:"rgba(0, 0, 0, 0.1)",surfaceBorderBoldColor:"rgba(0, 0, 0, 0.15)",surfaceBorderSubtleColor:"rgba(0, 0, 0, 0.05)",surfaceBackgroundTertiaryColor:Ze.white,surfaceColor:Ze.white,transitionDuration:"200ms",transitionDurationFast:"160ms",transitionDurationFaster:"120ms",transitionDurationFastest:"100ms",transitionTimingFunction:"cubic-bezier(0.08, 0.52, 0.52, 1)",transitionTimingFunctionControl:"cubic-bezier(0.12, 0.8, 0.32, 1)"}),dle={name:"9amh4a",styles:"font-size:11px;font-weight:500;line-height:1.4;text-transform:uppercase"},KL=x.createContext({}),ple=()=>x.useContext(KL);function ZHe({value:e}){const t=ple(),n=x.useRef(e);return DL(()=>{N0(n.current,e)&&n.current!==e&&globalThis.SCRIPT_DEBUG===!0&&zn(`Please memoize your context: ${JSON.stringify(e)}`)},[e]),x.useMemo(()=>B0e(t??{},e??{},{isMergeableObject:a3}),[t,e])}const QHe=({children:e,value:t})=>{const n=ZHe({value:t});return a.jsx(KL.Provider,{value:n,children:e})},j3=x.memo(QHe),JHe="data-wp-component",eUe="data-wp-c16t",d2="__contextSystemKey__";function tUe(e){return`components-${Ti(e)}`}const fle=Hs(tUe);function Rn(e,t){return ble(e,t,{forwardsRef:!0})}function YL(e,t){return ble(e,t)}function ble(e,t,n){const o=n?.forwardsRef?x.forwardRef(e):e;typeof t>"u"&&globalThis.SCRIPT_DEBUG===!0&&zn("contextConnect: Please provide a namespace");let r=o[d2]||[t];return Array.isArray(t)&&(r=[...r,...t]),typeof t=="string"&&(r=[...r,t]),Object.assign(o,{[d2]:[...new Set(r)],displayName:t,selector:`.${fle(t)}`})}function kG(e){if(!e)return[];let t=[];return e[d2]&&(t=e[d2]),e.type&&e.type[d2]&&(t=e.type[d2]),t}function hle(e,t){return e?typeof t=="string"?kG(e).includes(t):Array.isArray(t)?t.some(n=>kG(e).includes(n)):!1:!1}function nUe(e){return{[JHe]:e}}function oUe(){return{[eUe]:!0}}function vn(e,t){const n=ple();typeof t>"u"&&globalThis.SCRIPT_DEBUG===!0&&zn("useContextSystem: Please provide a namespace");const o=n?.[t]||{},r={...oUe(),...nUe(t)},{_overrides:s,...i}=o,c=Object.entries(i).length?Object.assign({},i,e):e,u=ro()(fle(t),e.className),d=typeof c.renderChildren=="function"?c.renderChildren(c):c.children;for(const p in c)r[p]=c[p];for(const p in s)r[p]=s[p];return d!==void 0&&(r.children=d),r.className=u,r}const rUe={border:0,clip:"rect(1px, 1px, 1px, 1px)",WebkitClipPath:"inset( 50% )",clipPath:"inset( 50% )",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",wordWrap:"normal"};var sUe=/^((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|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|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)-.*))$/,iUe=ale(function(e){return sUe.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),aUe=iUe,cUe=function(t){return t!=="theme"},SG=function(t){return typeof t=="string"&&t.charCodeAt(0)>96?aUe:cUe},CG=function(t,n,o){var r;if(n){var s=n.shouldForwardProp;r=t.__emotion_forwardProp&&s?function(i){return t.__emotion_forwardProp(i)&&s(i)}:s}return typeof r!="function"&&o&&(r=t.__emotion_forwardProp),r},lUe=!1,uUe=function(t){var n=t.cache,o=t.serialized,r=t.isStringTag;return lle(n,o,r),_He(function(){return XL(n,o,r)}),null},He=function e(t,n){var o=t.__emotion_real===t,r=o&&t.__emotion_base||t,s,i;n!==void 0&&(s=n.label,i=n.target);var c=CG(t,n,o),l=c||SG(r),u=!l("as");return function(){var d=arguments,p=o&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(s!==void 0&&p.push("label:"+s+";"),d[0]==null||d[0].raw===void 0)p.push.apply(p,d);else{p.push(d[0][0]);for(var f=d.length,b=1;b<f;b++)p.push(d[b],d[0][b])}var h=CHe(function(g,z,A){var _=u&&g.as||r,v="",M=[],y=g;if(g.theme==null){y={};for(var k in g)y[k]=g[k];y.theme=x.useContext(qHe)}typeof g.className=="string"?v=UL(z.registered,M,g.className):g.className!=null&&(v=g.className+" ");var S=xM(p.concat(M),z.registered,y);v+=z.key+"-"+S.name,i!==void 0&&(v+=" "+i);var C=u&&c===void 0?SG(_):l,R={};for(var T in g)u&&T==="as"||C(T)&&(R[T]=g[T]);return R.className=v,A&&(R.ref=A),x.createElement(x.Fragment,null,x.createElement(uUe,{cache:z,serialized:S,isStringTag:typeof _=="string"}),x.createElement(_,R))});return h.displayName=s!==void 0?s:"Styled("+(typeof r=="string"?r:r.displayName||r.name||"Component")+")",h.defaultProps=t.defaultProps,h.__emotion_real=h,h.__emotion_base=r,h.__emotion_styles=p,h.__emotion_forwardProp=c,Object.defineProperty(h,"toString",{value:function(){return i===void 0&&lUe?"NO_COMPONENT_SELECTOR":"."+i}}),h.withComponent=function(g,z){return e(g,uz({},n,z,{shouldForwardProp:CG(h,z,!0)})).apply(void 0,p)},h}};const dUe=He("div",{target:"e19lxcc00"})("");function pUe({as:e,...t},n){return a.jsx(dUe,{as:e,ref:n,...t})}const mo=Object.assign(x.forwardRef(pUe),{selector:".components-view"});function fUe(e,t){const{style:n,...o}=vn(e,"VisuallyHidden");return a.jsx(mo,{ref:t,...o,style:{...rUe,...n||{}}})}const qn=Rn(fUe,"VisuallyHidden"),mle=[["top left","top center","top right"],["center left","center center","center right"],["bottom left","bottom center","bottom right"]],bUe={"top left":m("Top Left"),"top center":m("Top Center"),"top right":m("Top Right"),"center left":m("Center Left"),"center center":m("Center"),center:m("Center"),"center right":m("Center Right"),"bottom left":m("Bottom Left"),"bottom center":m("Bottom Center"),"bottom right":m("Bottom Right")},ZL=mle.flat();function QL(e){const n=(e==="center"?"center center":e)?.replace("-"," ");return ZL.includes(n)?n:void 0}function yC(e,t){const n=QL(t);if(!n)return;const o=n.replace(" ","-");return`${e}-${o}`}function hUe(e,t){const n=t?.replace(e+"-","");return QL(n)}function mUe(e="center"){const t=QL(e);if(!t)return;const n=ZL.indexOf(t);return n>-1?n:void 0}const gUe=({size:e=92})=>Xe("direction:ltr;display:grid;grid-template-columns:repeat( 3, 1fr );grid-template-rows:repeat( 3, 1fr );box-sizing:border-box;width:",e,"px;aspect-ratio:1;border-radius:",Ye.radiusMedium,";outline:none;","");var MUe={name:"e0dnmk",styles:"cursor:pointer"};const zUe=He("div",{target:"e1r95csn3"})(gUe," border:1px solid transparent;",e=>e.disablePointerEvents?Xe("",""):MUe,";"),OUe=He("div",{target:"e1r95csn2"})({name:"1fbxn64",styles:"grid-column:1/-1;box-sizing:border-box;display:grid;grid-template-columns:repeat( 3, 1fr )"}),Kv=He("span",{target:"e1r95csn1"})({name:"e2kws5",styles:"position:relative;display:flex;align-items:center;justify-content:center;box-sizing:border-box;margin:0;padding:0;appearance:none;border:none;outline:none"}),qG=6,yUe=He("span",{target:"e1r95csn0"})("display:block;contain:strict;box-sizing:border-box;width:",qG,"px;aspect-ratio:1;margin:auto;color:",Ze.theme.gray[400],";border:",qG/2,"px solid currentColor;",Kv,"[data-active-item] &{color:",Ze.gray[900],";transform:scale( calc( 5 / 3 ) );}",Kv,":not([data-active-item]):hover &{color:",Ze.theme.accent,";}",Kv,"[data-focus-visible] &{outline:1px solid ",Ze.theme.accent,";outline-offset:1px;}@media not ( prefers-reduced-motion ){transition-property:color,transform;transition-duration:120ms;transition-timing-function:linear;}");function AUe({id:e,value:t,...n}){return a.jsx(B0,{text:bUe[t],children:a.jsxs(S1.Item,{id:e,render:a.jsx(Kv,{...n,role:"gridcell"}),children:[a.jsx(qn,{children:t}),a.jsx(yUe,{role:"presentation"})]})})}const Jg=24,eM=7,RG=(Jg-3*eM)/2,vUe=2,xUe=4;function wUe({className:e,disablePointerEvents:t=!0,size:n,width:o,height:r,style:s={},value:i="center",...c}){var l,u;return a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${Jg} ${Jg}`,width:(l=n??o)!==null&&l!==void 0?l:Jg,height:(u=n??r)!==null&&u!==void 0?u:Jg,role:"presentation",className:oe("component-alignment-matrix-control-icon",e),style:{pointerEvents:t?"none":void 0,...s},...c,children:ZL.map((d,p)=>{const f=mUe(i)===p?xUe:vUe;return a.jsx(S0,{x:RG+p%3*eM+(eM-f)/2,y:RG+Math.floor(p/3)*eM+(eM-f)/2,width:f,height:f,fill:"currentColor"},d)})})}function gle({className:e,id:t,label:n=m("Alignment Matrix Control"),defaultValue:o="center center",value:r,onChange:s,width:i=92,...c}){const l=vt(gle,"alignment-matrix-control",t),u=x.useCallback(p=>{const f=hUe(l,p);f&&s?.(f)},[l,s]),d=oe("component-alignment-matrix-control",e);return a.jsx(S1,{defaultActiveId:yC(l,o),activeId:yC(l,r),setActiveId:u,rtl:jt(),render:a.jsx(zUe,{...c,"aria-label":n,className:d,id:l,role:"grid",size:i}),children:mle.map((p,f)=>a.jsx(S1.Row,{render:a.jsx(OUe,{role:"row"}),children:p.map(b=>a.jsx(AUe,{id:yC(l,b),value:b},b))},f))})}const TG=Object.assign(gle,{Icon:Object.assign(wUe,{displayName:"AlignmentMatrixControl.Icon"})});function _Ue(e){return e==="appear"?"top":"left"}function Mle(e){if(e.type==="loading")return"components-animate__loading";const{type:t,origin:n=_Ue(t)}=e;if(t==="appear"){const[o,r="center"]=n.split(" ");return oe("components-animate__appear",{["is-from-"+r]:r!=="center",["is-from-"+o]:o!=="middle"})}if(t==="slide-in")return oe("components-animate__slide-in","is-from-"+n)}function kUe(e){if(typeof Proxy>"u")return e;const t=new Map,n=(...o)=>e(...o);return new Proxy(n,{get:(o,r)=>r==="create"?e:(t.has(r)||t.set(r,e(r)),t.get(r))})}function pz(e){return e!==null&&typeof e=="object"&&typeof e.start=="function"}const M8=e=>Array.isArray(e);function zle(e,t){if(!Array.isArray(t))return!1;const n=t.length;if(n!==e.length)return!1;for(let o=0;o<n;o++)if(t[o]!==e[o])return!1;return!0}function fz(e){return typeof e=="string"||Array.isArray(e)}function EG(e){const t=[{},{}];return e?.values.forEach((n,o)=>{t[0][o]=n.get(),t[1][o]=n.getVelocity()}),t}function JL(e,t,n,o){if(typeof t=="function"){const[r,s]=EG(o);t=t(n!==void 0?n:e.custom,r,s)}if(typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"){const[r,s]=EG(o);t=t(n!==void 0?n:e.custom,r,s)}return t}function vw(e,t,n){const o=e.getProps();return JL(o,t,n!==void 0?n:o.custom,e)}const eP=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],tP=["initial",...eP],I3=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],np=new Set(I3),xl=e=>e*1e3,wl=e=>e/1e3,SUe={type:"spring",stiffness:500,damping:25,restSpeed:10},CUe=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),qUe={type:"keyframes",duration:.8},RUe={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},TUe=(e,{keyframes:t})=>t.length>2?qUe:np.has(e)?e.startsWith("scale")?CUe(t[1]):SUe:RUe;function nP(e,t){return e?e[t]||e.default||e:void 0}const EUe={skipAnimations:!1,useManualTiming:!1},WUe=e=>e!==null;function xw(e,{repeat:t,repeatType:n="loop"},o){const r=e.filter(WUe),s=t&&n!=="loop"&&t%2===1?0:r.length-1;return!s||o===void 0?r[s]:o}const O1=e=>e;function NUe(e){let t=new Set,n=new Set,o=!1,r=!1;const s=new WeakSet;let i={delta:0,timestamp:0,isProcessing:!1};function c(u){s.has(u)&&(l.schedule(u),e()),u(i)}const l={schedule:(u,d=!1,p=!1)=>{const b=p&&o?t:n;return d&&s.add(u),b.has(u)||b.add(u),u},cancel:u=>{n.delete(u),s.delete(u)},process:u=>{if(i=u,o){r=!0;return}o=!0,[t,n]=[n,t],n.clear(),t.forEach(c),o=!1,r&&(r=!1,l.process(u))}};return l}const wA=["read","resolveKeyframes","update","preRender","render","postRender"],BUe=40;function Ole(e,t){let n=!1,o=!0;const r={delta:0,timestamp:0,isProcessing:!1},s=()=>n=!0,i=wA.reduce((A,_)=>(A[_]=NUe(s),A),{}),{read:c,resolveKeyframes:l,update:u,preRender:d,render:p,postRender:f}=i,b=()=>{const A=performance.now();n=!1,r.delta=o?1e3/60:Math.max(Math.min(A-r.timestamp,BUe),1),r.timestamp=A,r.isProcessing=!0,c.process(r),l.process(r),u.process(r),d.process(r),p.process(r),f.process(r),r.isProcessing=!1,n&&t&&(o=!1,e(b))},h=()=>{n=!0,o=!0,r.isProcessing||e(b)};return{schedule:wA.reduce((A,_)=>{const v=i[_];return A[_]=(M,y=!1,k=!1)=>(n||h(),v.schedule(M,y,k)),A},{}),cancel:A=>{for(let _=0;_<wA.length;_++)i[wA[_]].cancel(A)},state:r,steps:i}}const{schedule:Po,cancel:Rd,state:V0,steps:AC}=Ole(typeof requestAnimationFrame<"u"?requestAnimationFrame:O1,!0),yle=(e,t,n)=>(((1-3*n+3*t)*e+(3*n-6*t))*e+3*t)*e,LUe=1e-7,PUe=12;function jUe(e,t,n,o,r){let s,i,c=0;do i=t+(n-t)/2,s=yle(i,o,r)-e,s>0?n=i:t=i;while(Math.abs(s)>LUe&&++c<PUe);return i}function D3(e,t,n,o){if(e===t&&n===o)return O1;const r=s=>jUe(s,0,1,e,n);return s=>s===0||s===1?s:yle(r(s),t,o)}const Ale=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,vle=e=>t=>1-e(1-t),xle=D3(.33,1.53,.69,.99),oP=vle(xle),wle=Ale(oP),_le=e=>(e*=2)<1?.5*oP(e):.5*(2-Math.pow(2,-10*(e-1))),rP=e=>1-Math.sin(Math.acos(e)),kle=vle(rP),Sle=Ale(rP),Cle=e=>/^0[^.\s]+$/u.test(e);function IUe(e){return typeof e=="number"?e===0:e!==null?e==="none"||e==="0"||Cle(e):!0}let z8=O1;const qle=e=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(e),Rle=e=>t=>typeof t=="string"&&t.startsWith(e),Tle=Rle("--"),DUe=Rle("var(--"),sP=e=>DUe(e)?FUe.test(e.split("/*")[0].trim()):!1,FUe=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,$Ue=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function VUe(e){const t=$Ue.exec(e);if(!t)return[,];const[,n,o,r]=t;return[`--${n??o}`,r]}function Ele(e,t,n=1){const[o,r]=VUe(e);if(!o)return;const s=window.getComputedStyle(t).getPropertyValue(o);if(s){const i=s.trim();return qle(i)?parseFloat(i):i}return sP(r)?Ele(r,t,n+1):r}const Td=(e,t,n)=>n>t?t:n<e?e:n,sm={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},bz={...sm,transform:e=>Td(0,1,e)},_A={...sm,default:1},F3=e=>({test:t=>typeof t=="string"&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),ju=F3("deg"),hc=F3("%"),hn=F3("px"),HUe=F3("vh"),UUe=F3("vw"),WG={...hc,parse:e=>hc.parse(e)/100,transform:e=>hc.transform(e*100)},XUe=new Set(["width","height","top","left","right","bottom","x","y","translateX","translateY"]),NG=e=>e===sm||e===hn,BG=(e,t)=>parseFloat(e.split(", ")[t]),LG=(e,t)=>(n,{transform:o})=>{if(o==="none"||!o)return 0;const r=o.match(/^matrix3d\((.+)\)$/u);if(r)return BG(r[1],t);{const s=o.match(/^matrix\((.+)\)$/u);return s?BG(s[1],e):0}},GUe=new Set(["x","y","z"]),KUe=I3.filter(e=>!GUe.has(e));function YUe(e){const t=[];return KUe.forEach(n=>{const o=e.getValue(n);o!==void 0&&(t.push([n,o.get()]),o.set(n.startsWith("scale")?1:0))}),t}const bh={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:LG(4,13),y:LG(5,14)};bh.translateX=bh.x;bh.translateY=bh.y;const Wle=e=>t=>t.test(e),ZUe={test:e=>e==="auto",parse:e=>e},Nle=[sm,hn,hc,ju,UUe,HUe,ZUe],PG=e=>Nle.find(Wle(e)),nf=new Set;let O8=!1,y8=!1;function Ble(){if(y8){const e=Array.from(nf).filter(o=>o.needsMeasurement),t=new Set(e.map(o=>o.element)),n=new Map;t.forEach(o=>{const r=YUe(o);r.length&&(n.set(o,r),o.render())}),e.forEach(o=>o.measureInitialState()),t.forEach(o=>{o.render();const r=n.get(o);r&&r.forEach(([s,i])=>{var c;(c=o.getValue(s))===null||c===void 0||c.set(i)})}),e.forEach(o=>o.measureEndState()),e.forEach(o=>{o.suspendedScrollY!==void 0&&window.scrollTo(0,o.suspendedScrollY)})}y8=!1,O8=!1,nf.forEach(e=>e.complete()),nf.clear()}function Lle(){nf.forEach(e=>{e.readKeyframes(),e.needsMeasurement&&(y8=!0)})}function QUe(){Lle(),Ble()}class iP{constructor(t,n,o,r,s,i=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...t],this.onComplete=n,this.name=o,this.motionValue=r,this.element=s,this.isAsync=i}scheduleResolve(){this.isScheduled=!0,this.isAsync?(nf.add(this),O8||(O8=!0,Po.read(Lle),Po.resolveKeyframes(Ble))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:t,name:n,element:o,motionValue:r}=this;for(let s=0;s<t.length;s++)if(t[s]===null)if(s===0){const i=r?.get(),c=t[t.length-1];if(i!==void 0)t[0]=i;else if(o&&n){const l=o.readValue(n,c);l!=null&&(t[0]=l)}t[0]===void 0&&(t[0]=c),r&&i===void 0&&r.set(t[0])}else t[s]=t[s-1]}setFinalKeyframe(){}measureInitialState(){}renderEndStyles(){}measureEndState(){}complete(){this.isComplete=!0,this.onComplete(this.unresolvedKeyframes,this.finalKeyframe),nf.delete(this)}cancel(){this.isComplete||(this.isScheduled=!1,nf.delete(this))}resume(){this.isComplete||this.scheduleResolve()}}const wM=e=>Math.round(e*1e5)/1e5,aP=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu;function JUe(e){return e==null}const eXe=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,cP=(e,t)=>n=>!!(typeof n=="string"&&eXe.test(n)&&n.startsWith(e)||t&&!JUe(n)&&Object.prototype.hasOwnProperty.call(n,t)),Ple=(e,t,n)=>o=>{if(typeof o!="string")return o;const[r,s,i,c]=o.match(aP);return{[e]:parseFloat(r),[t]:parseFloat(s),[n]:parseFloat(i),alpha:c!==void 0?parseFloat(c):1}},tXe=e=>Td(0,255,e),vC={...sm,transform:e=>Math.round(tXe(e))},Gp={test:cP("rgb","red"),parse:Ple("red","green","blue"),transform:({red:e,green:t,blue:n,alpha:o=1})=>"rgba("+vC.transform(e)+", "+vC.transform(t)+", "+vC.transform(n)+", "+wM(bz.transform(o))+")"};function nXe(e){let t="",n="",o="",r="";return e.length>5?(t=e.substring(1,3),n=e.substring(3,5),o=e.substring(5,7),r=e.substring(7,9)):(t=e.substring(1,2),n=e.substring(2,3),o=e.substring(3,4),r=e.substring(4,5),t+=t,n+=n,o+=o,r+=r),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(o,16),alpha:r?parseInt(r,16)/255:1}}const A8={test:cP("#"),parse:nXe,transform:Gp.transform},p2={test:cP("hsl","hue"),parse:Ple("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:n,alpha:o=1})=>"hsla("+Math.round(e)+", "+hc.transform(wM(t))+", "+hc.transform(wM(n))+", "+wM(bz.transform(o))+")"},f1={test:e=>Gp.test(e)||A8.test(e)||p2.test(e),parse:e=>Gp.test(e)?Gp.parse(e):p2.test(e)?p2.parse(e):A8.parse(e),transform:e=>typeof e=="string"?e:e.hasOwnProperty("red")?Gp.transform(e):p2.transform(e)},oXe=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;function rXe(e){var t,n;return isNaN(e)&&typeof e=="string"&&(((t=e.match(aP))===null||t===void 0?void 0:t.length)||0)+(((n=e.match(oXe))===null||n===void 0?void 0:n.length)||0)>0}const jle="number",Ile="color",sXe="var",iXe="var(",jG="${}",aXe=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function hz(e){const t=e.toString(),n=[],o={color:[],number:[],var:[]},r=[];let s=0;const c=t.replace(aXe,l=>(f1.test(l)?(o.color.push(s),r.push(Ile),n.push(f1.parse(l))):l.startsWith(iXe)?(o.var.push(s),r.push(sXe),n.push(l)):(o.number.push(s),r.push(jle),n.push(parseFloat(l))),++s,jG)).split(jG);return{values:n,split:c,indexes:o,types:r}}function Dle(e){return hz(e).values}function Fle(e){const{split:t,types:n}=hz(e),o=t.length;return r=>{let s="";for(let i=0;i<o;i++)if(s+=t[i],r[i]!==void 0){const c=n[i];c===jle?s+=wM(r[i]):c===Ile?s+=f1.transform(r[i]):s+=r[i]}return s}}const cXe=e=>typeof e=="number"?0:e;function lXe(e){const t=Dle(e);return Fle(e)(t.map(cXe))}const Ed={test:rXe,parse:Dle,createTransformer:Fle,getAnimatableNone:lXe},uXe=new Set(["brightness","contrast","saturate","opacity"]);function dXe(e){const[t,n]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[o]=n.match(aP)||[];if(!o)return e;const r=n.replace(o,"");let s=uXe.has(t)?1:0;return o!==n&&(s*=100),t+"("+s+r+")"}const pXe=/\b([a-z-]*)\(.*?\)/gu,v8={...Ed,getAnimatableNone:e=>{const t=e.match(pXe);return t?t.map(dXe).join(" "):e}},fXe={borderWidth:hn,borderTopWidth:hn,borderRightWidth:hn,borderBottomWidth:hn,borderLeftWidth:hn,borderRadius:hn,radius:hn,borderTopLeftRadius:hn,borderTopRightRadius:hn,borderBottomRightRadius:hn,borderBottomLeftRadius:hn,width:hn,maxWidth:hn,height:hn,maxHeight:hn,top:hn,right:hn,bottom:hn,left:hn,padding:hn,paddingTop:hn,paddingRight:hn,paddingBottom:hn,paddingLeft:hn,margin:hn,marginTop:hn,marginRight:hn,marginBottom:hn,marginLeft:hn,backgroundPositionX:hn,backgroundPositionY:hn},bXe={rotate:ju,rotateX:ju,rotateY:ju,rotateZ:ju,scale:_A,scaleX:_A,scaleY:_A,scaleZ:_A,skew:ju,skewX:ju,skewY:ju,distance:hn,translateX:hn,translateY:hn,translateZ:hn,x:hn,y:hn,z:hn,perspective:hn,transformPerspective:hn,opacity:bz,originX:WG,originY:WG,originZ:hn},IG={...sm,transform:Math.round},lP={...fXe,...bXe,zIndex:IG,size:hn,fillOpacity:bz,strokeOpacity:bz,numOctaves:IG},hXe={...lP,color:f1,backgroundColor:f1,outlineColor:f1,fill:f1,stroke:f1,borderColor:f1,borderTopColor:f1,borderRightColor:f1,borderBottomColor:f1,borderLeftColor:f1,filter:v8,WebkitFilter:v8},uP=e=>hXe[e];function $le(e,t){let n=uP(e);return n!==v8&&(n=Ed),n.getAnimatableNone?n.getAnimatableNone(t):void 0}const mXe=new Set(["auto","none","0"]);function gXe(e,t,n){let o=0,r;for(;o<e.length&&!r;){const s=e[o];typeof s=="string"&&!mXe.has(s)&&hz(s).values.length&&(r=e[o]),o++}if(r&&n)for(const s of t)e[s]=$le(n,r)}class Vle extends iP{constructor(t,n,o,r,s){super(t,n,o,r,s,!0)}readKeyframes(){const{unresolvedKeyframes:t,element:n,name:o}=this;if(!n||!n.current)return;super.readKeyframes();for(let l=0;l<t.length;l++){let u=t[l];if(typeof u=="string"&&(u=u.trim(),sP(u))){const d=Ele(u,n.current);d!==void 0&&(t[l]=d),l===t.length-1&&(this.finalKeyframe=u)}}if(this.resolveNoneKeyframes(),!XUe.has(o)||t.length!==2)return;const[r,s]=t,i=PG(r),c=PG(s);if(i!==c)if(NG(i)&&NG(c))for(let l=0;l<t.length;l++){const u=t[l];typeof u=="string"&&(t[l]=parseFloat(u))}else this.needsMeasurement=!0}resolveNoneKeyframes(){const{unresolvedKeyframes:t,name:n}=this,o=[];for(let r=0;r<t.length;r++)IUe(t[r])&&o.push(r);o.length&&gXe(t,o,n)}measureInitialState(){const{element:t,unresolvedKeyframes:n,name:o}=this;if(!t||!t.current)return;o==="height"&&(this.suspendedScrollY=window.pageYOffset),this.measuredOrigin=bh[o](t.measureViewportBox(),window.getComputedStyle(t.current)),n[0]=this.measuredOrigin;const r=n[n.length-1];r!==void 0&&t.getValue(o,r).jump(r,!1)}measureEndState(){var t;const{element:n,name:o,unresolvedKeyframes:r}=this;if(!n||!n.current)return;const s=n.getValue(o);s&&s.jump(this.measuredOrigin,!1);const i=r.length-1,c=r[i];r[i]=bh[o](n.measureViewportBox(),window.getComputedStyle(n.current)),c!==null&&this.finalKeyframe===void 0&&(this.finalKeyframe=c),!((t=this.removedTransforms)===null||t===void 0)&&t.length&&this.removedTransforms.forEach(([l,u])=>{n.getValue(l).set(u)}),this.resolveNoneKeyframes()}}function dP(e){return typeof e=="function"}let Yv;function MXe(){Yv=void 0}const mc={now:()=>(Yv===void 0&&mc.set(V0.isProcessing||EUe.useManualTiming?V0.timestamp:performance.now()),Yv),set:e=>{Yv=e,queueMicrotask(MXe)}},DG=(e,t)=>t==="zIndex"?!1:!!(typeof e=="number"||Array.isArray(e)||typeof e=="string"&&(Ed.test(e)||e==="0")&&!e.startsWith("url("));function zXe(e){const t=e[0];if(e.length===1)return!0;for(let n=0;n<e.length;n++)if(e[n]!==t)return!0}function OXe(e,t,n,o){const r=e[0];if(r===null)return!1;if(t==="display"||t==="visibility")return!0;const s=e[e.length-1],i=DG(r,t),c=DG(s,t);return!i||!c?!1:zXe(e)||(n==="spring"||dP(n))&&o}const yXe=40;class Hle{constructor({autoplay:t=!0,delay:n=0,type:o="keyframes",repeat:r=0,repeatDelay:s=0,repeatType:i="loop",...c}){this.isStopped=!1,this.hasAttemptedResolve=!1,this.createdAt=mc.now(),this.options={autoplay:t,delay:n,type:o,repeat:r,repeatDelay:s,repeatType:i,...c},this.updateFinishedPromise()}calcStartTime(){return this.resolvedAt?this.resolvedAt-this.createdAt>yXe?this.resolvedAt:this.createdAt:this.createdAt}get resolved(){return!this._resolved&&!this.hasAttemptedResolve&&QUe(),this._resolved}onKeyframesResolved(t,n){this.resolvedAt=mc.now(),this.hasAttemptedResolve=!0;const{name:o,type:r,velocity:s,delay:i,onComplete:c,onUpdate:l,isGenerator:u}=this.options;if(!u&&!OXe(t,o,r,s))if(i)this.options.duration=0;else{l?.(xw(t,this.options,n)),c?.(),this.resolveFinishedPromise();return}const d=this.initPlayback(t,n);d!==!1&&(this._resolved={keyframes:t,finalKeyframe:n,...d},this.onPostResolved())}onPostResolved(){}then(t,n){return this.currentFinishedPromise.then(t,n)}updateFinishedPromise(){this.currentFinishedPromise=new Promise(t=>{this.resolveFinishedPromise=t})}}function Ule(e,t){return t?e*(1e3/t):0}const AXe=5;function Xle(e,t,n){const o=Math.max(t-AXe,0);return Ule(n-e(o),t-o)}const xC=.001,vXe=.01,xXe=10,wXe=.05,_Xe=1;function kXe({duration:e=800,bounce:t=.25,velocity:n=0,mass:o=1}){let r,s,i=1-t;i=Td(wXe,_Xe,i),e=Td(vXe,xXe,wl(e)),i<1?(r=u=>{const d=u*i,p=d*e,f=d-n,b=x8(u,i),h=Math.exp(-p);return xC-f/b*h},s=u=>{const p=u*i*e,f=p*n+n,b=Math.pow(i,2)*Math.pow(u,2)*e,h=Math.exp(-p),g=x8(Math.pow(u,2),i);return(-r(u)+xC>0?-1:1)*((f-b)*h)/g}):(r=u=>{const d=Math.exp(-u*e),p=(u-n)*e+1;return-xC+d*p},s=u=>{const d=Math.exp(-u*e),p=(n-u)*(e*e);return d*p});const c=5/e,l=CXe(r,s,c);if(e=xl(e),isNaN(l))return{stiffness:100,damping:10,duration:e};{const u=Math.pow(l,2)*o;return{stiffness:u,damping:i*2*Math.sqrt(o*u),duration:e}}}const SXe=12;function CXe(e,t,n){let o=n;for(let r=1;r<SXe;r++)o=o-e(o)/t(o);return o}function x8(e,t){return e*Math.sqrt(1-t*t)}const qXe=["duration","bounce"],RXe=["stiffness","damping","mass"];function FG(e,t){return t.some(n=>e[n]!==void 0)}function TXe(e){let t={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...e};if(!FG(e,RXe)&&FG(e,qXe)){const n=kXe(e);t={...t,...n,mass:1},t.isResolvedFromDuration=!0}return t}function Gle({keyframes:e,restDelta:t,restSpeed:n,...o}){const r=e[0],s=e[e.length-1],i={done:!1,value:r},{stiffness:c,damping:l,mass:u,duration:d,velocity:p,isResolvedFromDuration:f}=TXe({...o,velocity:-wl(o.velocity||0)}),b=p||0,h=l/(2*Math.sqrt(c*u)),g=s-r,z=wl(Math.sqrt(c/u)),A=Math.abs(g)<5;n||(n=A?.01:2),t||(t=A?.005:.5);let _;if(h<1){const v=x8(z,h);_=M=>{const y=Math.exp(-h*z*M);return s-y*((b+h*z*g)/v*Math.sin(v*M)+g*Math.cos(v*M))}}else if(h===1)_=v=>s-Math.exp(-z*v)*(g+(b+z*g)*v);else{const v=z*Math.sqrt(h*h-1);_=M=>{const y=Math.exp(-h*z*M),k=Math.min(v*M,300);return s-y*((b+h*z*g)*Math.sinh(k)+v*g*Math.cosh(k))/v}}return{calculatedDuration:f&&d||null,next:v=>{const M=_(v);if(f)i.done=v>=d;else{let y=0;h<1&&(y=v===0?xl(b):Xle(_,v,M));const k=Math.abs(y)<=n,S=Math.abs(s-M)<=t;i.done=k&&S}return i.value=i.done?s:M,i}}}function $G({keyframes:e,velocity:t=0,power:n=.8,timeConstant:o=325,bounceDamping:r=10,bounceStiffness:s=500,modifyTarget:i,min:c,max:l,restDelta:u=.5,restSpeed:d}){const p=e[0],f={done:!1,value:p},b=C=>c!==void 0&&C<c||l!==void 0&&C>l,h=C=>c===void 0?l:l===void 0||Math.abs(c-C)<Math.abs(l-C)?c:l;let g=n*t;const z=p+g,A=i===void 0?z:i(z);A!==z&&(g=A-p);const _=C=>-g*Math.exp(-C/o),v=C=>A+_(C),M=C=>{const R=_(C),T=v(C);f.done=Math.abs(R)<=u,f.value=f.done?A:T};let y,k;const S=C=>{b(f.value)&&(y=C,k=Gle({keyframes:[f.value,h(f.value)],velocity:Xle(v,C,f.value),damping:r,stiffness:s,restDelta:u,restSpeed:d}))};return S(0),{calculatedDuration:null,next:C=>{let R=!1;return!k&&y===void 0&&(R=!0,M(C),S(C)),y!==void 0&&C>=y?k.next(C-y):(!R&&M(C),f)}}}const EXe=D3(.42,0,1,1),WXe=D3(0,0,.58,1),Kle=D3(.42,0,.58,1),NXe=e=>Array.isArray(e)&&typeof e[0]!="number",pP=e=>Array.isArray(e)&&typeof e[0]=="number",VG={linear:O1,easeIn:EXe,easeInOut:Kle,easeOut:WXe,circIn:rP,circInOut:Sle,circOut:kle,backIn:oP,backInOut:wle,backOut:xle,anticipate:_le},HG=e=>{if(pP(e)){z8(e.length===4);const[t,n,o,r]=e;return D3(t,n,o,r)}else if(typeof e=="string")return z8(VG[e]!==void 0),VG[e];return e},BXe=(e,t)=>n=>t(e(n)),_l=(...e)=>e.reduce(BXe),hh=(e,t,n)=>{const o=t-e;return o===0?1:(n-e)/o},Cr=(e,t,n)=>e+(t-e)*n;function wC(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 LXe({hue:e,saturation:t,lightness:n,alpha:o}){e/=360,t/=100,n/=100;let r=0,s=0,i=0;if(!t)r=s=i=n;else{const c=n<.5?n*(1+t):n+t-n*t,l=2*n-c;r=wC(l,c,e+1/3),s=wC(l,c,e),i=wC(l,c,e-1/3)}return{red:Math.round(r*255),green:Math.round(s*255),blue:Math.round(i*255),alpha:o}}function ux(e,t){return n=>n>0?t:e}const _C=(e,t,n)=>{const o=e*e,r=n*(t*t-o)+o;return r<0?0:Math.sqrt(r)},PXe=[A8,Gp,p2],jXe=e=>PXe.find(t=>t.test(e));function UG(e){const t=jXe(e);if(!t)return!1;let n=t.parse(e);return t===p2&&(n=LXe(n)),n}const XG=(e,t)=>{const n=UG(e),o=UG(t);if(!n||!o)return ux(e,t);const r={...n};return s=>(r.red=_C(n.red,o.red,s),r.green=_C(n.green,o.green,s),r.blue=_C(n.blue,o.blue,s),r.alpha=Cr(n.alpha,o.alpha,s),Gp.transform(r))},w8=new Set(["none","hidden"]);function IXe(e,t){return w8.has(e)?n=>n<=0?e:t:n=>n>=1?t:e}function DXe(e,t){return n=>Cr(e,t,n)}function fP(e){return typeof e=="number"?DXe:typeof e=="string"?sP(e)?ux:f1.test(e)?XG:VXe:Array.isArray(e)?Yle:typeof e=="object"?f1.test(e)?XG:FXe:ux}function Yle(e,t){const n=[...e],o=n.length,r=e.map((s,i)=>fP(s)(s,t[i]));return s=>{for(let i=0;i<o;i++)n[i]=r[i](s);return n}}function FXe(e,t){const n={...e,...t},o={};for(const r in n)e[r]!==void 0&&t[r]!==void 0&&(o[r]=fP(e[r])(e[r],t[r]));return r=>{for(const s in o)n[s]=o[s](r);return n}}function $Xe(e,t){var n;const o=[],r={color:0,var:0,number:0};for(let s=0;s<t.values.length;s++){const i=t.types[s],c=e.indexes[i][r[i]],l=(n=e.values[c])!==null&&n!==void 0?n:0;o[s]=l,r[i]++}return o}const VXe=(e,t)=>{const n=Ed.createTransformer(t),o=hz(e),r=hz(t);return o.indexes.var.length===r.indexes.var.length&&o.indexes.color.length===r.indexes.color.length&&o.indexes.number.length>=r.indexes.number.length?w8.has(e)&&!r.values.length||w8.has(t)&&!o.values.length?IXe(e,t):_l(Yle($Xe(o,r),r.values),n):ux(e,t)};function Zle(e,t,n){return typeof e=="number"&&typeof t=="number"&&typeof n=="number"?Cr(e,t,n):fP(e)(e,t)}function HXe(e,t,n){const o=[],r=n||Zle,s=e.length-1;for(let i=0;i<s;i++){let c=r(e[i],e[i+1]);if(t){const l=Array.isArray(t)?t[i]||O1:t;c=_l(l,c)}o.push(c)}return o}function UXe(e,t,{clamp:n=!0,ease:o,mixer:r}={}){const s=e.length;if(z8(s===t.length),s===1)return()=>t[0];if(s===2&&e[0]===e[1])return()=>t[1];e[0]>e[s-1]&&(e=[...e].reverse(),t=[...t].reverse());const i=HXe(t,o,r),c=i.length,l=u=>{let d=0;if(c>1)for(;d<e.length-2&&!(u<e[d+1]);d++);const p=hh(e[d],e[d+1],u);return i[d](p)};return n?u=>l(Td(e[0],e[s-1],u)):l}function XXe(e,t){const n=e[e.length-1];for(let o=1;o<=t;o++){const r=hh(0,t,o);e.push(Cr(n,1,r))}}function GXe(e){const t=[0];return XXe(t,e.length-1),t}function KXe(e,t){return e.map(n=>n*t)}function YXe(e,t){return e.map(()=>t||Kle).splice(0,e.length-1)}function dx({duration:e=300,keyframes:t,times:n,ease:o="easeInOut"}){const r=NXe(o)?o.map(HG):HG(o),s={done:!1,value:t[0]},i=KXe(n&&n.length===t.length?n:GXe(t),e),c=UXe(i,t,{ease:Array.isArray(r)?r:YXe(t,r)});return{calculatedDuration:e,next:l=>(s.value=c(l),s.done=l>=e,s)}}const GG=2e4;function ZXe(e){let t=0;const n=50;let o=e.next(t);for(;!o.done&&t<GG;)t+=n,o=e.next(t);return t>=GG?1/0:t}const QXe=e=>{const t=({timestamp:n})=>e(n);return{start:()=>Po.update(t,!0),stop:()=>Rd(t),now:()=>V0.isProcessing?V0.timestamp:mc.now()}},JXe={decay:$G,inertia:$G,tween:dx,keyframes:dx,spring:Gle},eGe=e=>e/100;class bP extends Hle{constructor(t){super(t),this.holdTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.startTime=null,this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.teardown();const{onStop:l}=this.options;l&&l()};const{name:n,motionValue:o,element:r,keyframes:s}=this.options,i=r?.KeyframeResolver||iP,c=(l,u)=>this.onKeyframesResolved(l,u);this.resolver=new i(s,c,n,o,r),this.resolver.scheduleResolve()}initPlayback(t){const{type:n="keyframes",repeat:o=0,repeatDelay:r=0,repeatType:s,velocity:i=0}=this.options,c=dP(n)?n:JXe[n]||dx;let l,u;c!==dx&&typeof t[0]!="number"&&(l=_l(eGe,Zle(t[0],t[1])),t=[0,100]);const d=c({...this.options,keyframes:t});s==="mirror"&&(u=c({...this.options,keyframes:[...t].reverse(),velocity:-i})),d.calculatedDuration===null&&(d.calculatedDuration=ZXe(d));const{calculatedDuration:p}=d,f=p+r,b=f*(o+1)-r;return{generator:d,mirroredGenerator:u,mapPercentToKeyframes:l,calculatedDuration:p,resolvedDuration:f,totalDuration:b}}onPostResolved(){const{autoplay:t=!0}=this.options;this.play(),this.pendingPlayState==="paused"||!t?this.pause():this.state=this.pendingPlayState}tick(t,n=!1){const{resolved:o}=this;if(!o){const{keyframes:C}=this.options;return{done:!0,value:C[C.length-1]}}const{finalKeyframe:r,generator:s,mirroredGenerator:i,mapPercentToKeyframes:c,keyframes:l,calculatedDuration:u,totalDuration:d,resolvedDuration:p}=o;if(this.startTime===null)return s.next(0);const{delay:f,repeat:b,repeatType:h,repeatDelay:g,onUpdate:z}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,t):this.speed<0&&(this.startTime=Math.min(t-d/this.speed,this.startTime)),n?this.currentTime=t:this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=Math.round(t-this.startTime)*this.speed;const A=this.currentTime-f*(this.speed>=0?1:-1),_=this.speed>=0?A<0:A>d;this.currentTime=Math.max(A,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=d);let v=this.currentTime,M=s;if(b){const C=Math.min(this.currentTime,d)/p;let R=Math.floor(C),T=C%1;!T&&C>=1&&(T=1),T===1&&R--,R=Math.min(R,b+1),!!(R%2)&&(h==="reverse"?(T=1-T,g&&(T-=g/p)):h==="mirror"&&(M=i)),v=Td(0,1,T)*p}const y=_?{done:!1,value:l[0]}:M.next(v);c&&(y.value=c(y.value));let{done:k}=y;!_&&u!==null&&(k=this.speed>=0?this.currentTime>=d:this.currentTime<=0);const S=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&k);return S&&r!==void 0&&(y.value=xw(l,this.options,r)),z&&z(y.value),S&&this.finish(),y}get duration(){const{resolved:t}=this;return t?wl(t.calculatedDuration):0}get time(){return wl(this.currentTime)}set time(t){t=xl(t),this.currentTime=t,this.holdTime!==null||this.speed===0?this.holdTime=t:this.driver&&(this.startTime=this.driver.now()-t/this.speed)}get speed(){return this.playbackSpeed}set speed(t){const n=this.playbackSpeed!==t;this.playbackSpeed=t,n&&(this.time=wl(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState="running";return}if(this.isStopped)return;const{driver:t=QXe,onPlay:n,startTime:o}=this.options;this.driver||(this.driver=t(s=>this.tick(s))),n&&n();const r=this.driver.now();this.holdTime!==null?this.startTime=r-this.holdTime:this.startTime?this.state==="finished"&&(this.startTime=r):this.startTime=o??this.calcStartTime(),this.state==="finished"&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var t;if(!this._resolved){this.pendingPlayState="paused";return}this.state="paused",this.holdTime=(t=this.currentTime)!==null&&t!==void 0?t:0}complete(){this.state!=="running"&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";const{onComplete:t}=this.options;t&&t()}cancel(){this.cancelTime!==null&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(t){return this.startTime=0,this.tick(t,!0)}}const Qle=new Set(["opacity","clipPath","filter","transform"]),tGe=10,nGe=(e,t)=>{let n="";const o=Math.max(Math.round(t/tGe),2);for(let r=0;r<o;r++)n+=e(hh(0,o-1,r))+", ";return`linear(${n.substring(0,n.length-2)})`};function hP(e){let t;return()=>(t===void 0&&(t=e()),t)}const oGe={linearEasing:void 0};function rGe(e,t){const n=hP(e);return()=>{var o;return(o=oGe[t])!==null&&o!==void 0?o:n()}}const px=rGe(()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch{return!1}return!0},"linearEasing");function Jle(e){return!!(typeof e=="function"&&px()||!e||typeof e=="string"&&(e in _8||px())||pP(e)||Array.isArray(e)&&e.every(Jle))}const tM=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`,_8={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:tM([0,.65,.55,1]),circOut:tM([.55,0,1,.45]),backIn:tM([.31,.01,.66,-.59]),backOut:tM([.33,1.53,.69,.99])};function eue(e,t){if(e)return typeof e=="function"&&px()?nGe(e,t):pP(e)?tM(e):Array.isArray(e)?e.map(n=>eue(n,t)||_8.easeOut):_8[e]}function sGe(e,t,n,{delay:o=0,duration:r=300,repeat:s=0,repeatType:i="loop",ease:c,times:l}={}){const u={[t]:n};l&&(u.offset=l);const d=eue(c,r);return Array.isArray(d)&&(u.easing=d),e.animate(u,{delay:o,duration:r,easing:Array.isArray(d)?"linear":d,fill:"both",iterations:s+1,direction:i==="reverse"?"alternate":"normal"})}function KG(e,t){e.timeline=t,e.onfinish=null}const iGe=hP(()=>Object.hasOwnProperty.call(Element.prototype,"animate")),fx=10,aGe=2e4;function cGe(e){return dP(e.type)||e.type==="spring"||!Jle(e.ease)}function lGe(e,t){const n=new bP({...t,keyframes:e,repeat:0,delay:0,isGenerator:!0});let o={done:!1,value:e[0]};const r=[];let s=0;for(;!o.done&&s<aGe;)o=n.sample(s),r.push(o.value),s+=fx;return{times:void 0,keyframes:r,duration:s-fx,ease:"linear"}}const tue={anticipate:_le,backInOut:wle,circInOut:Sle};function uGe(e){return e in tue}class YG extends Hle{constructor(t){super(t);const{name:n,motionValue:o,element:r,keyframes:s}=this.options;this.resolver=new Vle(s,(i,c)=>this.onKeyframesResolved(i,c),n,o,r),this.resolver.scheduleResolve()}initPlayback(t,n){var o;let{duration:r=300,times:s,ease:i,type:c,motionValue:l,name:u,startTime:d}=this.options;if(!(!((o=l.owner)===null||o===void 0)&&o.current))return!1;if(typeof i=="string"&&px()&&uGe(i)&&(i=tue[i]),cGe(this.options)){const{onComplete:f,onUpdate:b,motionValue:h,element:g,...z}=this.options,A=lGe(t,z);t=A.keyframes,t.length===1&&(t[1]=t[0]),r=A.duration,s=A.times,i=A.ease,c="keyframes"}const p=sGe(l.owner.current,u,t,{...this.options,duration:r,times:s,ease:i});return p.startTime=d??this.calcStartTime(),this.pendingTimeline?(KG(p,this.pendingTimeline),this.pendingTimeline=void 0):p.onfinish=()=>{const{onComplete:f}=this.options;l.set(xw(t,this.options,n)),f&&f(),this.cancel(),this.resolveFinishedPromise()},{animation:p,duration:r,times:s,type:c,ease:i,keyframes:t}}get duration(){const{resolved:t}=this;if(!t)return 0;const{duration:n}=t;return wl(n)}get time(){const{resolved:t}=this;if(!t)return 0;const{animation:n}=t;return wl(n.currentTime||0)}set time(t){const{resolved:n}=this;if(!n)return;const{animation:o}=n;o.currentTime=xl(t)}get speed(){const{resolved:t}=this;if(!t)return 1;const{animation:n}=t;return n.playbackRate}set speed(t){const{resolved:n}=this;if(!n)return;const{animation:o}=n;o.playbackRate=t}get state(){const{resolved:t}=this;if(!t)return"idle";const{animation:n}=t;return n.playState}get startTime(){const{resolved:t}=this;if(!t)return null;const{animation:n}=t;return n.startTime}attachTimeline(t){if(!this._resolved)this.pendingTimeline=t;else{const{resolved:n}=this;if(!n)return O1;const{animation:o}=n;KG(o,t)}return O1}play(){if(this.isStopped)return;const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.playState==="finished"&&this.updateFinishedPromise(),n.play()}pause(){const{resolved:t}=this;if(!t)return;const{animation:n}=t;n.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,this.state==="idle")return;this.resolveFinishedPromise(),this.updateFinishedPromise();const{resolved:t}=this;if(!t)return;const{animation:n,keyframes:o,duration:r,type:s,ease:i,times:c}=t;if(n.playState==="idle"||n.playState==="finished")return;if(this.time){const{motionValue:u,onUpdate:d,onComplete:p,element:f,...b}=this.options,h=new bP({...b,keyframes:o,duration:r,type:s,ease:i,times:c,isGenerator:!0}),g=xl(this.time);u.setWithVelocity(h.sample(g-fx).value,h.sample(g).value,fx)}const{onStop:l}=this.options;l&&l(),this.cancel()}complete(){const{resolved:t}=this;t&&t.animation.finish()}cancel(){const{resolved:t}=this;t&&t.animation.cancel()}static supports(t){const{motionValue:n,name:o,repeatDelay:r,repeatType:s,damping:i,type:c}=t;return iGe()&&o&&Qle.has(o)&&n&&n.owner&&n.owner.current instanceof HTMLElement&&!n.owner.getProps().onUpdate&&!r&&s!=="mirror"&&i!==0&&c!=="inertia"}}const dGe=hP(()=>window.ScrollTimeline!==void 0);class pGe{constructor(t){this.stop=()=>this.runAll("stop"),this.animations=t.filter(Boolean)}then(t,n){return Promise.all(this.animations).then(t).catch(n)}getAll(t){return this.animations[0][t]}setAll(t,n){for(let o=0;o<this.animations.length;o++)this.animations[o][t]=n}attachTimeline(t,n){const o=this.animations.map(r=>dGe()&&r.attachTimeline?r.attachTimeline(t):n(r));return()=>{o.forEach((r,s)=>{r&&r(),this.animations[s].stop()})}}get time(){return this.getAll("time")}set time(t){this.setAll("time",t)}get speed(){return this.getAll("speed")}set speed(t){this.setAll("speed",t)}get startTime(){return this.getAll("startTime")}get duration(){let t=0;for(let n=0;n<this.animations.length;n++)t=Math.max(t,this.animations[n].duration);return t}runAll(t){this.animations.forEach(n=>n[t]())}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}function fGe({when:e,delay:t,delayChildren:n,staggerChildren:o,staggerDirection:r,repeat:s,repeatType:i,repeatDelay:c,from:l,elapsed:u,...d}){return!!Object.keys(d).length}const mP=(e,t,n,o={},r,s)=>i=>{const c=nP(o,e)||{},l=c.delay||o.delay||0;let{elapsed:u=0}=o;u=u-xl(l);let d={keyframes:Array.isArray(n)?n:[null,n],ease:"easeOut",velocity:t.getVelocity(),...c,delay:-u,onUpdate:f=>{t.set(f),c.onUpdate&&c.onUpdate(f)},onComplete:()=>{i(),c.onComplete&&c.onComplete()},name:e,motionValue:t,element:s?void 0:r};fGe(c)||(d={...d,...TUe(e,d)}),d.duration&&(d.duration=xl(d.duration)),d.repeatDelay&&(d.repeatDelay=xl(d.repeatDelay)),d.from!==void 0&&(d.keyframes[0]=d.from);let p=!1;if((d.type===!1||d.duration===0&&!d.repeatDelay)&&(d.duration=0,d.delay===0&&(p=!0)),p&&!s&&t.get()!==void 0){const f=xw(d.keyframes,c);if(f!==void 0)return Po.update(()=>{d.onUpdate(f),d.onComplete()}),new pGe([])}return!s&&YG.supports(d)?new YG(d):new bP(d)},bGe=e=>!!(e&&typeof e=="object"&&e.mix&&e.toValue),hGe=e=>M8(e)?e[e.length-1]||0:e;function gP(e,t){e.indexOf(t)===-1&&e.push(t)}function MP(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class zP{constructor(){this.subscriptions=[]}add(t){return gP(this.subscriptions,t),()=>MP(this.subscriptions,t)}notify(t,n,o){const r=this.subscriptions.length;if(r)if(r===1)this.subscriptions[0](t,n,o);else for(let s=0;s<r;s++){const i=this.subscriptions[s];i&&i(t,n,o)}}getSize(){return this.subscriptions.length}clear(){this.subscriptions.length=0}}const ZG=30,mGe=e=>!isNaN(parseFloat(e));class gGe{constructor(t,n={}){this.version="11.11.9",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(o,r=!0)=>{const s=mc.now();this.updatedAt!==s&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(o),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),r&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(t),this.owner=n.owner}setCurrent(t){this.current=t,this.updatedAt=mc.now(),this.canTrackVelocity===null&&t!==void 0&&(this.canTrackVelocity=mGe(this.current))}setPrevFrameValue(t=this.current){this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt}onChange(t){return this.on("change",t)}on(t,n){this.events[t]||(this.events[t]=new zP);const o=this.events[t].add(n);return t==="change"?()=>{o(),Po.read(()=>{this.events.change.getSize()||this.stop()})}:o}clearListeners(){for(const t in this.events)this.events[t].clear()}attach(t,n){this.passiveEffect=t,this.stopPassiveEffect=n}set(t,n=!0){!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)}setWithVelocity(t,n,o){this.set(n),this.prev=void 0,this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt-o}jump(t,n=!0){this.updateAndNotify(t),this.prev=t,this.prevUpdatedAt=this.prevFrameValue=void 0,n&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return this.current}getPrevious(){return this.prev}getVelocity(){const t=mc.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||t-this.updatedAt>ZG)return 0;const n=Math.min(this.updatedAt-this.prevUpdatedAt,ZG);return Ule(parseFloat(this.current)-parseFloat(this.prevFrameValue),n)}start(t){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.animation=t(n),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function mz(e,t){return new gGe(e,t)}function MGe(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,mz(n))}function zGe(e,t){const n=vw(e,t);let{transitionEnd:o={},transition:r={},...s}=n||{};s={...s,...o};for(const i in s){const c=hGe(s[i]);MGe(e,i,c)}}const ww=e=>e.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),OGe="framerAppearId",nue="data-"+ww(OGe);function oue(e){return e.props[nue]}const h1=e=>!!(e&&e.getVelocity);function yGe(e){return!!(h1(e)&&e.add)}function k8(e,t){if(!e.applyWillChange)return;const n=e.getValue("willChange");if(yGe(n))return n.add(t)}function AGe({protectedKeys:e,needsAnimating:t},n){const o=e.hasOwnProperty(n)&&t[n]!==!0;return t[n]=!1,o}function rue(e,t,{delay:n=0,transitionOverride:o,type:r}={}){var s;let{transition:i=e.getDefaultTransition(),transitionEnd:c,...l}=t;o&&(i=o);const u=[],d=r&&e.animationState&&e.animationState.getState()[r];for(const p in l){const f=e.getValue(p,(s=e.latestValues[p])!==null&&s!==void 0?s:null),b=l[p];if(b===void 0||d&&AGe(d,p))continue;const h={delay:n,...nP(i||{},p)};let g=!1;if(window.MotionHandoffAnimation){const A=oue(e);if(A){const _=window.MotionHandoffAnimation(A,p,Po);_!==null&&(h.startTime=_,g=!0)}}k8(e,p),f.start(mP(p,f,b,e.shouldReduceMotion&&np.has(p)?{type:!1}:h,e,g));const z=f.animation;z&&u.push(z)}return c&&Promise.all(u).then(()=>{Po.update(()=>{c&&zGe(e,c)})}),u}function S8(e,t,n={}){var o;const r=vw(e,t,n.type==="exit"?(o=e.presenceContext)===null||o===void 0?void 0:o.custom:void 0);let{transition:s=e.getDefaultTransition()||{}}=r||{};n.transitionOverride&&(s=n.transitionOverride);const i=r?()=>Promise.all(rue(e,r,n)):()=>Promise.resolve(),c=e.variantChildren&&e.variantChildren.size?(u=0)=>{const{delayChildren:d=0,staggerChildren:p,staggerDirection:f}=s;return vGe(e,t,d+u,p,f,n)}:()=>Promise.resolve(),{when:l}=s;if(l){const[u,d]=l==="beforeChildren"?[i,c]:[c,i];return u().then(()=>d())}else return Promise.all([i(),c(n.delay)])}function vGe(e,t,n=0,o=0,r=1,s){const i=[],c=(e.variantChildren.size-1)*o,l=r===1?(u=0)=>u*o:(u=0)=>c-u*o;return Array.from(e.variantChildren).sort(xGe).forEach((u,d)=>{u.notify("AnimationStart",t),i.push(S8(u,t,{...s,delay:n+l(d)}).then(()=>u.notify("AnimationComplete",t)))}),Promise.all(i)}function xGe(e,t){return e.sortNodePosition(t)}function wGe(e,t,n={}){e.notify("AnimationStart",t);let o;if(Array.isArray(t)){const r=t.map(s=>S8(e,s,n));o=Promise.all(r)}else if(typeof t=="string")o=S8(e,t,n);else{const r=typeof t=="function"?vw(e,t,n.custom):t;o=Promise.all(rue(e,r,n))}return o.then(()=>{e.notify("AnimationComplete",t)})}const _Ge=tP.length;function sue(e){if(!e)return;if(!e.isControllingVariants){const n=e.parent?sue(e.parent)||{}:{};return e.props.initial!==void 0&&(n.initial=e.props.initial),n}const t={};for(let n=0;n<_Ge;n++){const o=tP[n],r=e.props[o];(fz(r)||r===!1)&&(t[o]=r)}return t}const kGe=[...eP].reverse(),SGe=eP.length;function CGe(e){return t=>Promise.all(t.map(({animation:n,options:o})=>wGe(e,n,o)))}function qGe(e){let t=CGe(e),n=QG(),o=!0;const r=l=>(u,d)=>{var p;const f=vw(e,d,l==="exit"?(p=e.presenceContext)===null||p===void 0?void 0:p.custom:void 0);if(f){const{transition:b,transitionEnd:h,...g}=f;u={...u,...g,...h}}return u};function s(l){t=l(e)}function i(l){const{props:u}=e,d=sue(e.parent)||{},p=[],f=new Set;let b={},h=1/0;for(let z=0;z<SGe;z++){const A=kGe[z],_=n[A],v=u[A]!==void 0?u[A]:d[A],M=fz(v),y=A===l?_.isActive:null;y===!1&&(h=z);let k=v===d[A]&&v!==u[A]&&M;if(k&&o&&e.manuallyAnimateOnMount&&(k=!1),_.protectedKeys={...b},!_.isActive&&y===null||!v&&!_.prevProp||pz(v)||typeof v=="boolean")continue;const S=RGe(_.prevProp,v);let C=S||A===l&&_.isActive&&!k&&M||z>h&&M,R=!1;const T=Array.isArray(v)?v:[v];let E=T.reduce(r(A),{});y===!1&&(E={});const{prevResolvedValues:B={}}=_,N={...B,...E},j=$=>{C=!0,f.has($)&&(R=!0,f.delete($)),_.needsAnimating[$]=!0;const F=e.getValue($);F&&(F.liveStyle=!1)};for(const $ in N){const F=E[$],X=B[$];if(b.hasOwnProperty($))continue;let Z=!1;M8(F)&&M8(X)?Z=!zle(F,X):Z=F!==X,Z?F!=null?j($):f.add($):F!==void 0&&f.has($)?j($):_.protectedKeys[$]=!0}_.prevProp=v,_.prevResolvedValues=E,_.isActive&&(b={...b,...E}),o&&e.blockInitialAnimation&&(C=!1),C&&(!(k&&S)||R)&&p.push(...T.map($=>({animation:$,options:{type:A}})))}if(f.size){const z={};f.forEach(A=>{const _=e.getBaseTarget(A),v=e.getValue(A);v&&(v.liveStyle=!0),z[A]=_??null}),p.push({animation:z})}let g=!!p.length;return o&&(u.initial===!1||u.initial===u.animate)&&!e.manuallyAnimateOnMount&&(g=!1),o=!1,g?t(p):Promise.resolve()}function c(l,u){var d;if(n[l].isActive===u)return Promise.resolve();(d=e.variantChildren)===null||d===void 0||d.forEach(f=>{var b;return(b=f.animationState)===null||b===void 0?void 0:b.setActive(l,u)}),n[l].isActive=u;const p=i(l);for(const f in n)n[f].protectedKeys={};return p}return{animateChanges:i,setActive:c,setAnimateFunction:s,getState:()=>n,reset:()=>{n=QG(),o=!0}}}function RGe(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!zle(t,e):!1}function Rp(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function QG(){return{animate:Rp(!0),whileInView:Rp(),whileHover:Rp(),whileTap:Rp(),whileDrag:Rp(),whileFocus:Rp(),exit:Rp()}}class op{constructor(t){this.isMounted=!1,this.node=t}update(){}}class TGe extends op{constructor(t){super(t),t.animationState||(t.animationState=qGe(t))}updateAnimationControlsSubscription(){const{animate:t}=this.node.getProps();pz(t)&&(this.unmountControls=t.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:t}=this.node.getProps(),{animate:n}=this.node.prevProps||{};t!==n&&this.updateAnimationControlsSubscription()}unmount(){var t;this.node.animationState.reset(),(t=this.unmountControls)===null||t===void 0||t.call(this)}}let EGe=0;class WGe extends op{constructor(){super(...arguments),this.id=EGe++}update(){if(!this.node.presenceContext)return;const{isPresent:t,onExitComplete:n}=this.node.presenceContext,{isPresent:o}=this.node.prevPresenceContext||{};if(!this.node.animationState||t===o)return;const r=this.node.animationState.setActive("exit",!t);n&&!t&&r.then(()=>n(this.id))}mount(){const{register:t}=this.node.presenceContext||{};t&&(this.unmount=t(this.id))}unmount(){}}const NGe={animation:{Feature:TGe},exit:{Feature:WGe}},iue=e=>e.pointerType==="mouse"?typeof e.button!="number"||e.button<=0:e.isPrimary!==!1;function _w(e,t="page"){return{point:{x:e[`${t}X`],y:e[`${t}Y`]}}}const BGe=e=>t=>iue(t)&&e(t,_w(t));function hl(e,t,n,o={passive:!0}){return e.addEventListener(t,n,o),()=>e.removeEventListener(t,n)}function kl(e,t,n,o){return hl(e,t,BGe(n),o)}const JG=(e,t)=>Math.abs(e-t);function LGe(e,t){const n=JG(e.x,t.x),o=JG(e.y,t.y);return Math.sqrt(n**2+o**2)}class aue{constructor(t,n,{transformPagePoint:o,contextWindow:r,dragSnapToOrigin:s=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const p=SC(this.lastMoveEventInfo,this.history),f=this.startEvent!==null,b=LGe(p.offset,{x:0,y:0})>=3;if(!f&&!b)return;const{point:h}=p,{timestamp:g}=V0;this.history.push({...h,timestamp:g});const{onStart:z,onMove:A}=this.handlers;f||(z&&z(this.lastMoveEvent,p),this.startEvent=this.lastMoveEvent),A&&A(this.lastMoveEvent,p)},this.handlePointerMove=(p,f)=>{this.lastMoveEvent=p,this.lastMoveEventInfo=kC(f,this.transformPagePoint),Po.update(this.updatePoint,!0)},this.handlePointerUp=(p,f)=>{this.end();const{onEnd:b,onSessionEnd:h,resumeAnimation:g}=this.handlers;if(this.dragSnapToOrigin&&g&&g(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const z=SC(p.type==="pointercancel"?this.lastMoveEventInfo:kC(f,this.transformPagePoint),this.history);this.startEvent&&b&&b(p,z),h&&h(p,z)},!iue(t))return;this.dragSnapToOrigin=s,this.handlers=n,this.transformPagePoint=o,this.contextWindow=r||window;const i=_w(t),c=kC(i,this.transformPagePoint),{point:l}=c,{timestamp:u}=V0;this.history=[{...l,timestamp:u}];const{onSessionStart:d}=n;d&&d(t,SC(c,this.history)),this.removeListeners=_l(kl(this.contextWindow,"pointermove",this.handlePointerMove),kl(this.contextWindow,"pointerup",this.handlePointerUp),kl(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),Rd(this.updatePoint)}}function kC(e,t){return t?{point:t(e.point)}:e}function eK(e,t){return{x:e.x-t.x,y:e.y-t.y}}function SC({point:e},t){return{point:e,delta:eK(e,cue(t)),offset:eK(e,PGe(t)),velocity:jGe(t,.1)}}function PGe(e){return e[0]}function cue(e){return e[e.length-1]}function jGe(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,o=null;const r=cue(e);for(;n>=0&&(o=e[n],!(r.timestamp-o.timestamp>xl(t)));)n--;if(!o)return{x:0,y:0};const s=wl(r.timestamp-o.timestamp);if(s===0)return{x:0,y:0};const i={x:(r.x-o.x)/s,y:(r.y-o.y)/s};return i.x===1/0&&(i.x=0),i.y===1/0&&(i.y=0),i}function lue(e){let t=null;return()=>{const n=()=>{t=null};return t===null?(t=e,n):!1}}const tK=lue("dragHorizontal"),nK=lue("dragVertical");function uue(e){let t=!1;if(e==="y")t=nK();else if(e==="x")t=tK();else{const n=tK(),o=nK();n&&o?t=()=>{n(),o()}:(n&&n(),o&&o())}return t}function due(){const e=uue(!0);return e?(e(),!1):!0}function f2(e){return e&&typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}const pue=1e-4,IGe=1-pue,DGe=1+pue,fue=.01,FGe=0-fue,$Ge=0+fue;function Ds(e){return e.max-e.min}function VGe(e,t,n){return Math.abs(e-t)<=n}function oK(e,t,n,o=.5){e.origin=o,e.originPoint=Cr(t.min,t.max,e.origin),e.scale=Ds(n)/Ds(t),e.translate=Cr(n.min,n.max,e.origin)-e.originPoint,(e.scale>=IGe&&e.scale<=DGe||isNaN(e.scale))&&(e.scale=1),(e.translate>=FGe&&e.translate<=$Ge||isNaN(e.translate))&&(e.translate=0)}function _M(e,t,n,o){oK(e.x,t.x,n.x,o?o.originX:void 0),oK(e.y,t.y,n.y,o?o.originY:void 0)}function rK(e,t,n){e.min=n.min+t.min,e.max=e.min+Ds(t)}function HGe(e,t,n){rK(e.x,t.x,n.x),rK(e.y,t.y,n.y)}function sK(e,t,n){e.min=t.min-n.min,e.max=e.min+Ds(t)}function kM(e,t,n){sK(e.x,t.x,n.x),sK(e.y,t.y,n.y)}function UGe(e,{min:t,max:n},o){return t!==void 0&&e<t?e=o?Cr(t,e,o.min):Math.max(e,t):n!==void 0&&e>n&&(e=o?Cr(n,e,o.max):Math.min(e,n)),e}function iK(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 XGe(e,{top:t,left:n,bottom:o,right:r}){return{x:iK(e.x,n,r),y:iK(e.y,t,o)}}function aK(e,t){let n=t.min-e.min,o=t.max-e.max;return t.max-t.min<e.max-e.min&&([n,o]=[o,n]),{min:n,max:o}}function GGe(e,t){return{x:aK(e.x,t.x),y:aK(e.y,t.y)}}function KGe(e,t){let n=.5;const o=Ds(e),r=Ds(t);return r>o?n=hh(t.min,t.max-o,e.min):o>r&&(n=hh(e.min,e.max-r,t.min)),Td(0,1,n)}function YGe(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 C8=.35;function ZGe(e=C8){return e===!1?e=0:e===!0&&(e=C8),{x:cK(e,"left","right"),y:cK(e,"top","bottom")}}function cK(e,t,n){return{min:lK(e,t),max:lK(e,n)}}function lK(e,t){return typeof e=="number"?e:e[t]||0}const uK=()=>({translate:0,scale:1,origin:0,originPoint:0}),b2=()=>({x:uK(),y:uK()}),dK=()=>({min:0,max:0}),Hr=()=>({x:dK(),y:dK()});function pi(e){return[e("x"),e("y")]}function bue({top:e,left:t,right:n,bottom:o}){return{x:{min:t,max:n},y:{min:e,max:o}}}function QGe({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function JGe(e,t){if(!t)return e;const n=t({x:e.left,y:e.top}),o=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:o.y,right:o.x}}function CC(e){return e===void 0||e===1}function q8({scale:e,scaleX:t,scaleY:n}){return!CC(e)||!CC(t)||!CC(n)}function jp(e){return q8(e)||hue(e)||e.z||e.rotate||e.rotateX||e.rotateY||e.skewX||e.skewY}function hue(e){return pK(e.x)||pK(e.y)}function pK(e){return e&&e!=="0%"}function bx(e,t,n){const o=e-n,r=t*o;return n+r}function fK(e,t,n,o,r){return r!==void 0&&(e=bx(e,r,o)),bx(e,n,o)+t}function R8(e,t=0,n=1,o,r){e.min=fK(e.min,t,n,o,r),e.max=fK(e.max,t,n,o,r)}function mue(e,{x:t,y:n}){R8(e.x,t.translate,t.scale,t.originPoint),R8(e.y,n.translate,n.scale,n.originPoint)}const bK=.999999999999,hK=1.0000000000001;function eKe(e,t,n,o=!1){const r=n.length;if(!r)return;t.x=t.y=1;let s,i;for(let c=0;c<r;c++){s=n[c],i=s.projectionDelta;const{visualElement:l}=s.options;l&&l.props.style&&l.props.style.display==="contents"||(o&&s.options.layoutScroll&&s.scroll&&s!==s.root&&m2(e,{x:-s.scroll.offset.x,y:-s.scroll.offset.y}),i&&(t.x*=i.x.scale,t.y*=i.y.scale,mue(e,i)),o&&jp(s.latestValues)&&m2(e,s.latestValues))}t.x<hK&&t.x>bK&&(t.x=1),t.y<hK&&t.y>bK&&(t.y=1)}function h2(e,t){e.min=e.min+t,e.max=e.max+t}function mK(e,t,n,o,r=.5){const s=Cr(e.min,e.max,r);R8(e,t,n,s,o)}function m2(e,t){mK(e.x,t.x,t.scaleX,t.scale,t.originX),mK(e.y,t.y,t.scaleY,t.scale,t.originY)}function gue(e,t){return bue(JGe(e.getBoundingClientRect(),t))}function tKe(e,t,n){const o=gue(e,n),{scroll:r}=t;return r&&(h2(o.x,r.offset.x),h2(o.y,r.offset.y)),o}const Mue=({current:e})=>e?e.ownerDocument.defaultView:null,nKe=new WeakMap;class oKe{constructor(t){this.openGlobalLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=Hr(),this.visualElement=t}start(t,{snapToCursor:n=!1}={}){const{presenceContext:o}=this.visualElement;if(o&&o.isPresent===!1)return;const r=d=>{const{dragSnapToOrigin:p}=this.getProps();p?this.pauseAnimation():this.stopAnimation(),n&&this.snapToCursor(_w(d,"page").point)},s=(d,p)=>{const{drag:f,dragPropagation:b,onDragStart:h}=this.getProps();if(f&&!b&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=uue(f),!this.openGlobalLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),pi(z=>{let A=this.getAxisMotionValue(z).get()||0;if(hc.test(A)){const{projection:_}=this.visualElement;if(_&&_.layout){const v=_.layout.layoutBox[z];v&&(A=Ds(v)*(parseFloat(A)/100))}}this.originPoint[z]=A}),h&&Po.postRender(()=>h(d,p)),k8(this.visualElement,"transform");const{animationState:g}=this.visualElement;g&&g.setActive("whileDrag",!0)},i=(d,p)=>{const{dragPropagation:f,dragDirectionLock:b,onDirectionLock:h,onDrag:g}=this.getProps();if(!f&&!this.openGlobalLock)return;const{offset:z}=p;if(b&&this.currentDirection===null){this.currentDirection=rKe(z),this.currentDirection!==null&&h&&h(this.currentDirection);return}this.updateAxis("x",p.point,z),this.updateAxis("y",p.point,z),this.visualElement.render(),g&&g(d,p)},c=(d,p)=>this.stop(d,p),l=()=>pi(d=>{var p;return this.getAnimationState(d)==="paused"&&((p=this.getAxisMotionValue(d).animation)===null||p===void 0?void 0:p.play())}),{dragSnapToOrigin:u}=this.getProps();this.panSession=new aue(t,{onSessionStart:r,onStart:s,onMove:i,onSessionEnd:c,resumeAnimation:l},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:u,contextWindow:Mue(this.visualElement)})}stop(t,n){const o=this.isDragging;if(this.cancel(),!o)return;const{velocity:r}=n;this.startAnimation(r);const{onDragEnd:s}=this.getProps();s&&Po.postRender(()=>s(t,n))}cancel(){this.isDragging=!1;const{projection:t,animationState:n}=this.visualElement;t&&(t.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:o}=this.getProps();!o&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),n&&n.setActive("whileDrag",!1)}updateAxis(t,n,o){const{drag:r}=this.getProps();if(!o||!kA(t,r,this.currentDirection))return;const s=this.getAxisMotionValue(t);let i=this.originPoint[t]+o[t];this.constraints&&this.constraints[t]&&(i=UGe(i,this.constraints[t],this.elastic[t])),s.set(i)}resolveConstraints(){var t;const{dragConstraints:n,dragElastic:o}=this.getProps(),r=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(t=this.visualElement.projection)===null||t===void 0?void 0:t.layout,s=this.constraints;n&&f2(n)?this.constraints||(this.constraints=this.resolveRefConstraints()):n&&r?this.constraints=XGe(r.layoutBox,n):this.constraints=!1,this.elastic=ZGe(o),s!==this.constraints&&r&&this.constraints&&!this.hasMutatedConstraints&&pi(i=>{this.constraints!==!1&&this.getAxisMotionValue(i)&&(this.constraints[i]=YGe(r.layoutBox[i],this.constraints[i]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!f2(t))return!1;const o=t.current,{projection:r}=this.visualElement;if(!r||!r.layout)return!1;const s=tKe(o,r.root,this.visualElement.getTransformPagePoint());let i=GGe(r.layout.layoutBox,s);if(n){const c=n(QGe(i));this.hasMutatedConstraints=!!c,c&&(i=bue(c))}return i}startAnimation(t){const{drag:n,dragMomentum:o,dragElastic:r,dragTransition:s,dragSnapToOrigin:i,onDragTransitionEnd:c}=this.getProps(),l=this.constraints||{},u=pi(d=>{if(!kA(d,n,this.currentDirection))return;let p=l&&l[d]||{};i&&(p={min:0,max:0});const f=r?200:1e6,b=r?40:1e7,h={type:"inertia",velocity:o?t[d]:0,bounceStiffness:f,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10,...s,...p};return this.startAxisValueAnimation(d,h)});return Promise.all(u).then(c)}startAxisValueAnimation(t,n){const o=this.getAxisMotionValue(t);return k8(this.visualElement,t),o.start(mP(t,o,0,n,this.visualElement,!1))}stopAnimation(){pi(t=>this.getAxisMotionValue(t).stop())}pauseAnimation(){pi(t=>{var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.pause()})}getAnimationState(t){var n;return(n=this.getAxisMotionValue(t).animation)===null||n===void 0?void 0:n.state}getAxisMotionValue(t){const n=`_drag${t.toUpperCase()}`,o=this.visualElement.getProps(),r=o[n];return r||this.visualElement.getValue(t,(o.initial?o.initial[t]:void 0)||0)}snapToCursor(t){pi(n=>{const{drag:o}=this.getProps();if(!kA(n,o,this.currentDirection))return;const{projection:r}=this.visualElement,s=this.getAxisMotionValue(n);if(r&&r.layout){const{min:i,max:c}=r.layout.layoutBox[n];s.set(t[n]-Cr(i,c,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:t,dragConstraints:n}=this.getProps(),{projection:o}=this.visualElement;if(!f2(n)||!o||!this.constraints)return;this.stopAnimation();const r={x:0,y:0};pi(i=>{const c=this.getAxisMotionValue(i);if(c&&this.constraints!==!1){const l=c.get();r[i]=KGe({min:l,max:l},this.constraints[i])}});const{transformTemplate:s}=this.visualElement.getProps();this.visualElement.current.style.transform=s?s({},""):"none",o.root&&o.root.updateScroll(),o.updateLayout(),this.resolveConstraints(),pi(i=>{if(!kA(i,t,null))return;const c=this.getAxisMotionValue(i),{min:l,max:u}=this.constraints[i];c.set(Cr(l,u,r[i]))})}addListeners(){if(!this.visualElement.current)return;nKe.set(this.visualElement,this);const t=this.visualElement.current,n=kl(t,"pointerdown",l=>{const{drag:u,dragListener:d=!0}=this.getProps();u&&d&&this.start(l)}),o=()=>{const{dragConstraints:l}=this.getProps();f2(l)&&l.current&&(this.constraints=this.resolveRefConstraints())},{projection:r}=this.visualElement,s=r.addEventListener("measure",o);r&&!r.layout&&(r.root&&r.root.updateScroll(),r.updateLayout()),Po.read(o);const i=hl(window,"resize",()=>this.scalePositionWithinConstraints()),c=r.addEventListener("didUpdate",({delta:l,hasLayoutChanged:u})=>{this.isDragging&&u&&(pi(d=>{const p=this.getAxisMotionValue(d);p&&(this.originPoint[d]+=l[d].translate,p.set(p.get()+l[d].translate))}),this.visualElement.render())});return()=>{i(),n(),s(),c&&c()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:o=!1,dragPropagation:r=!1,dragConstraints:s=!1,dragElastic:i=C8,dragMomentum:c=!0}=t;return{...t,drag:n,dragDirectionLock:o,dragPropagation:r,dragConstraints:s,dragElastic:i,dragMomentum:c}}}function kA(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function rKe(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}class sKe extends op{constructor(t){super(t),this.removeGroupControls=O1,this.removeListeners=O1,this.controls=new oKe(t)}mount(){const{dragControls:t}=this.node.getProps();t&&(this.removeGroupControls=t.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||O1}unmount(){this.removeGroupControls(),this.removeListeners()}}const gK=e=>(t,n)=>{e&&Po.postRender(()=>e(t,n))};class iKe extends op{constructor(){super(...arguments),this.removePointerDownListener=O1}onPointerDown(t){this.session=new aue(t,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Mue(this.node)})}createPanHandlers(){const{onPanSessionStart:t,onPanStart:n,onPan:o,onPanEnd:r}=this.node.getProps();return{onSessionStart:gK(t),onStart:gK(n),onMove:o,onEnd:(s,i)=>{delete this.session,r&&Po.postRender(()=>r(s,i))}}}mount(){this.removePointerDownListener=kl(this.node.current,"pointerdown",t=>this.onPointerDown(t))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}const kw=x.createContext(null);function aKe(){const e=x.useContext(kw);if(e===null)return[!0,null];const{isPresent:t,onExitComplete:n,register:o}=e,r=x.useId();x.useEffect(()=>o(r),[]);const s=x.useCallback(()=>n&&n(r),[r,n]);return!t&&n?[!1,s]:[!0]}const OP=x.createContext({}),zue=x.createContext({}),Zv={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function MK(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const Sg={correct:(e,t)=>{if(!t.target)return e;if(typeof e=="string")if(hn.test(e))e=parseFloat(e);else return e;const n=MK(e,t.target.x),o=MK(e,t.target.y);return`${n}% ${o}%`}},cKe={correct:(e,{treeScale:t,projectionDelta:n})=>{const o=e,r=Ed.parse(e);if(r.length>5)return o;const s=Ed.createTransformer(e),i=typeof r[0]!="number"?1:0,c=n.x.scale*t.x,l=n.y.scale*t.y;r[0+i]/=c,r[1+i]/=l;const u=Cr(c,l,.5);return typeof r[2+i]=="number"&&(r[2+i]/=u),typeof r[3+i]=="number"&&(r[3+i]/=u),s(r)}},hx={};function lKe(e){Object.assign(hx,e)}const{schedule:yP,cancel:Jmn}=Ole(queueMicrotask,!1);class uKe extends x.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:o,layoutId:r}=this.props,{projection:s}=t;lKe(dKe),s&&(n.group&&n.group.add(s),o&&o.register&&r&&o.register(s),s.root.didUpdate(),s.addEventListener("animationComplete",()=>{this.safeToRemove()}),s.setOptions({...s.options,onExitComplete:()=>this.safeToRemove()})),Zv.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:o,drag:r,isPresent:s}=this.props,i=o.projection;return i&&(i.isPresent=s,r||t.layoutDependency!==n||n===void 0?i.willUpdate():this.safeToRemove(),t.isPresent!==s&&(s?i.promote():i.relegate()||Po.postRender(()=>{const c=i.getStack();(!c||!c.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),yP.postRender(()=>{!t.currentAnimation&&t.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:o}=this.props,{projection:r}=t;r&&(r.scheduleCheckAfterUnmount(),n&&n.group&&n.group.remove(r),o&&o.deregister&&o.deregister(r))}safeToRemove(){const{safeToRemove:t}=this.props;t&&t()}render(){return null}}function Oue(e){const[t,n]=aKe(),o=x.useContext(OP);return a.jsx(uKe,{...e,layoutGroup:o,switchLayoutGroup:x.useContext(zue),isPresent:t,safeToRemove:n})}const dKe={borderRadius:{...Sg,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Sg,borderTopRightRadius:Sg,borderBottomLeftRadius:Sg,borderBottomRightRadius:Sg,boxShadow:cKe},yue=["TopLeft","TopRight","BottomLeft","BottomRight"],pKe=yue.length,zK=e=>typeof e=="string"?parseFloat(e):e,OK=e=>typeof e=="number"||hn.test(e);function fKe(e,t,n,o,r,s){r?(e.opacity=Cr(0,n.opacity!==void 0?n.opacity:1,bKe(o)),e.opacityExit=Cr(t.opacity!==void 0?t.opacity:1,0,hKe(o))):s&&(e.opacity=Cr(t.opacity!==void 0?t.opacity:1,n.opacity!==void 0?n.opacity:1,o));for(let i=0;i<pKe;i++){const c=`border${yue[i]}Radius`;let l=yK(t,c),u=yK(n,c);if(l===void 0&&u===void 0)continue;l||(l=0),u||(u=0),l===0||u===0||OK(l)===OK(u)?(e[c]=Math.max(Cr(zK(l),zK(u),o),0),(hc.test(u)||hc.test(l))&&(e[c]+="%")):e[c]=u}(t.rotate||n.rotate)&&(e.rotate=Cr(t.rotate||0,n.rotate||0,o))}function yK(e,t){return e[t]!==void 0?e[t]:e.borderRadius}const bKe=Aue(0,.5,kle),hKe=Aue(.5,.95,O1);function Aue(e,t,n){return o=>o<e?0:o>t?1:n(hh(e,t,o))}function AK(e,t){e.min=t.min,e.max=t.max}function ci(e,t){AK(e.x,t.x),AK(e.y,t.y)}function vK(e,t){e.translate=t.translate,e.scale=t.scale,e.originPoint=t.originPoint,e.origin=t.origin}function xK(e,t,n,o,r){return e-=t,e=bx(e,1/n,o),r!==void 0&&(e=bx(e,1/r,o)),e}function mKe(e,t=0,n=1,o=.5,r,s=e,i=e){if(hc.test(t)&&(t=parseFloat(t),t=Cr(i.min,i.max,t/100)-i.min),typeof t!="number")return;let c=Cr(s.min,s.max,o);e===s&&(c-=t),e.min=xK(e.min,t,n,c,r),e.max=xK(e.max,t,n,c,r)}function wK(e,t,[n,o,r],s,i){mKe(e,t[n],t[o],t[r],t.scale,s,i)}const gKe=["x","scaleX","originX"],MKe=["y","scaleY","originY"];function _K(e,t,n,o){wK(e.x,t,gKe,n?n.x:void 0,o?o.x:void 0),wK(e.y,t,MKe,n?n.y:void 0,o?o.y:void 0)}function kK(e){return e.translate===0&&e.scale===1}function vue(e){return kK(e.x)&&kK(e.y)}function SK(e,t){return e.min===t.min&&e.max===t.max}function zKe(e,t){return SK(e.x,t.x)&&SK(e.y,t.y)}function CK(e,t){return Math.round(e.min)===Math.round(t.min)&&Math.round(e.max)===Math.round(t.max)}function xue(e,t){return CK(e.x,t.x)&&CK(e.y,t.y)}function qK(e){return Ds(e.x)/Ds(e.y)}function RK(e,t){return e.translate===t.translate&&e.scale===t.scale&&e.originPoint===t.originPoint}class OKe{constructor(){this.members=[]}add(t){gP(this.members,t),t.scheduleRender()}remove(t){if(MP(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(r=>t===r);if(n===0)return!1;let o;for(let r=n;r>=0;r--){const s=this.members[r];if(s.isPresent!==!1){o=s;break}}return o?(this.promote(o),!0):!1}promote(t,n){const o=this.lead;if(t!==o&&(this.prevLead=o,this.lead=t,t.show(),o)){o.instance&&o.scheduleRender(),t.scheduleRender(),t.resumeFrom=o,n&&(t.resumeFrom.preserveOpacity=!0),o.snapshot&&(t.snapshot=o.snapshot,t.snapshot.latestValues=o.animationValues||o.latestValues),t.root&&t.root.isUpdating&&(t.isLayoutDirty=!0);const{crossfade:r}=t.options;r===!1&&o.hide()}}exitAnimationComplete(){this.members.forEach(t=>{const{options:n,resumingFrom:o}=t;n.onExitComplete&&n.onExitComplete(),o&&o.options.onExitComplete&&o.options.onExitComplete()})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function yKe(e,t,n){let o="";const r=e.x.translate/t.x,s=e.y.translate/t.y,i=n?.z||0;if((r||s||i)&&(o=`translate3d(${r}px, ${s}px, ${i}px) `),(t.x!==1||t.y!==1)&&(o+=`scale(${1/t.x}, ${1/t.y}) `),n){const{transformPerspective:u,rotate:d,rotateX:p,rotateY:f,skewX:b,skewY:h}=n;u&&(o=`perspective(${u}px) ${o}`),d&&(o+=`rotate(${d}deg) `),p&&(o+=`rotateX(${p}deg) `),f&&(o+=`rotateY(${f}deg) `),b&&(o+=`skewX(${b}deg) `),h&&(o+=`skewY(${h}deg) `)}const c=e.x.scale*t.x,l=e.y.scale*t.y;return(c!==1||l!==1)&&(o+=`scale(${c}, ${l})`),o||"none"}const AKe=(e,t)=>e.depth-t.depth;class vKe{constructor(){this.children=[],this.isDirty=!1}add(t){gP(this.children,t),this.isDirty=!0}remove(t){MP(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(AKe),this.isDirty=!1,this.children.forEach(t)}}function Qv(e){const t=h1(e)?e.get():e;return bGe(t)?t.toValue():t}function xKe(e,t){const n=mc.now(),o=({timestamp:r})=>{const s=r-n;s>=t&&(Rd(o),e(s-t))};return Po.read(o,!0),()=>Rd(o)}function wKe(e){return e instanceof SVGElement&&e.tagName!=="svg"}function _Ke(e,t,n){const o=h1(e)?e:mz(e);return o.start(mP("",o,t,n)),o.animation}const Ip={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0},nM=typeof window<"u"&&window.MotionDebug!==void 0,qC=["","X","Y","Z"],kKe={visibility:"hidden"},TK=1e3;let SKe=0;function RC(e,t,n,o){const{latestValues:r}=t;r[e]&&(n[e]=r[e],t.setStaticValue(e,0),o&&(o[e]=0))}function wue(e){if(e.hasCheckedOptimisedAppear=!0,e.root===e)return;const{visualElement:t}=e.options;if(!t)return;const n=oue(t);if(window.MotionHasOptimisedAnimation(n,"transform")){const{layout:r,layoutId:s}=e.options;window.MotionCancelOptimisedAnimation(n,"transform",Po,!(r||s))}const{parent:o}=e;o&&!o.hasCheckedOptimisedAppear&&wue(o)}function _ue({attachResizeListener:e,defaultParent:t,measureScroll:n,checkIsScrollRoot:o,resetTransform:r}){return class{constructor(i={},c=t?.()){this.id=SKe++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,nM&&(Ip.totalNodes=Ip.resolvedTargetDeltas=Ip.recalculatedProjection=0),this.nodes.forEach(RKe),this.nodes.forEach(BKe),this.nodes.forEach(LKe),this.nodes.forEach(TKe),nM&&window.MotionDebug.record(Ip)},this.resolvedRelativeTargetAt=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=i,this.root=c?c.root||c:this,this.path=c?[...c.path,c]:[],this.parent=c,this.depth=c?c.depth+1:0;for(let l=0;l<this.path.length;l++)this.path[l].shouldResetTransform=!0;this.root===this&&(this.nodes=new vKe)}addEventListener(i,c){return this.eventHandlers.has(i)||this.eventHandlers.set(i,new zP),this.eventHandlers.get(i).add(c)}notifyListeners(i,...c){const l=this.eventHandlers.get(i);l&&l.notify(...c)}hasListeners(i){return this.eventHandlers.has(i)}mount(i,c=this.root.hasTreeAnimated){if(this.instance)return;this.isSVG=wKe(i),this.instance=i;const{layoutId:l,layout:u,visualElement:d}=this.options;if(d&&!d.current&&d.mount(i),this.root.nodes.add(this),this.parent&&this.parent.children.add(this),c&&(u||l)&&(this.isLayoutDirty=!0),e){let p;const f=()=>this.root.updateBlockedByResize=!1;e(i,()=>{this.root.updateBlockedByResize=!0,p&&p(),p=xKe(f,250),Zv.hasAnimatedSinceResize&&(Zv.hasAnimatedSinceResize=!1,this.nodes.forEach(WK))})}l&&this.root.registerSharedNode(l,this),this.options.animate!==!1&&d&&(l||u)&&this.addEventListener("didUpdate",({delta:p,hasLayoutChanged:f,hasRelativeTargetChanged:b,layout:h})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const g=this.options.transition||d.getDefaultTransition()||FKe,{onLayoutAnimationStart:z,onLayoutAnimationComplete:A}=d.getProps(),_=!this.targetLayout||!xue(this.targetLayout,h)||b,v=!f&&b;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||v||f&&(_||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(p,v);const M={...nP(g,"layout"),onPlay:z,onComplete:A};(d.shouldReduceMotion||this.options.layoutRoot)&&(M.delay=0,M.type=!1),this.startAnimation(M)}else f||WK(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=h})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const i=this.getStack();i&&i.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,Rd(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(PKe),this.animationId++)}getTransformTemplate(){const{visualElement:i}=this.options;return i&&i.getProps().transformTemplate}willUpdate(i=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&wue(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let d=0;d<this.path.length;d++){const p=this.path[d];p.shouldResetTransform=!0,p.updateScroll("snapshot"),p.options.layoutRoot&&p.willUpdate(!1)}const{layoutId:c,layout:l}=this.options;if(c===void 0&&!l)return;const u=this.getTransformTemplate();this.prevTransformTemplateValue=u?u(this.latestValues,""):void 0,this.updateSnapshot(),i&&this.notifyListeners("willUpdate")}update(){if(this.updateScheduled=!1,this.isUpdateBlocked()){this.unblockUpdate(),this.clearAllSnapshots(),this.nodes.forEach(EK);return}this.isUpdating||this.nodes.forEach(WKe),this.isUpdating=!1,this.nodes.forEach(NKe),this.nodes.forEach(CKe),this.nodes.forEach(qKe),this.clearAllSnapshots();const c=mc.now();V0.delta=Td(0,1e3/60,c-V0.timestamp),V0.timestamp=c,V0.isProcessing=!0,AC.update.process(V0),AC.preRender.process(V0),AC.render.process(V0),V0.isProcessing=!1}didUpdate(){this.updateScheduled||(this.updateScheduled=!0,yP.read(this.scheduleUpdate))}clearAllSnapshots(){this.nodes.forEach(EKe),this.sharedNodes.forEach(jKe)}scheduleUpdateProjection(){this.projectionUpdateScheduled||(this.projectionUpdateScheduled=!0,Po.preRender(this.updateProjection,!1,!0))}scheduleCheckAfterUnmount(){Po.postRender(()=>{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let l=0;l<this.path.length;l++)this.path[l].updateScroll();const i=this.layout;this.layout=this.measure(!1),this.layoutCorrected=Hr(),this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners("measure",this.layout.layoutBox);const{visualElement:c}=this.options;c&&c.notify("LayoutMeasure",this.layout.layoutBox,i?i.layoutBox:void 0)}updateScroll(i="measure"){let c=!!(this.options.layoutScroll&&this.instance);if(this.scroll&&this.scroll.animationId===this.root.animationId&&this.scroll.phase===i&&(c=!1),c){const l=o(this.instance);this.scroll={animationId:this.root.animationId,phase:i,isRoot:l,offset:n(this.instance),wasRoot:this.scroll?this.scroll.isRoot:l}}}resetTransform(){if(!r)return;const i=this.isLayoutDirty||this.shouldResetTransform||this.options.alwaysMeasureLayout,c=this.projectionDelta&&!vue(this.projectionDelta),l=this.getTransformTemplate(),u=l?l(this.latestValues,""):void 0,d=u!==this.prevTransformTemplateValue;i&&(c||jp(this.latestValues)||d)&&(r(this.instance,u),this.shouldResetTransform=!1,this.scheduleRender())}measure(i=!0){const c=this.measurePageBox();let l=this.removeElementScroll(c);return i&&(l=this.removeTransform(l)),$Ke(l),{animationId:this.root.animationId,measuredBox:c,layoutBox:l,latestValues:{},source:this.id}}measurePageBox(){var i;const{visualElement:c}=this.options;if(!c)return Hr();const l=c.measureViewportBox();if(!(((i=this.scroll)===null||i===void 0?void 0:i.wasRoot)||this.path.some(VKe))){const{scroll:d}=this.root;d&&(h2(l.x,d.offset.x),h2(l.y,d.offset.y))}return l}removeElementScroll(i){var c;const l=Hr();if(ci(l,i),!((c=this.scroll)===null||c===void 0)&&c.wasRoot)return l;for(let u=0;u<this.path.length;u++){const d=this.path[u],{scroll:p,options:f}=d;d!==this.root&&p&&f.layoutScroll&&(p.wasRoot&&ci(l,i),h2(l.x,p.offset.x),h2(l.y,p.offset.y))}return l}applyTransform(i,c=!1){const l=Hr();ci(l,i);for(let u=0;u<this.path.length;u++){const d=this.path[u];!c&&d.options.layoutScroll&&d.scroll&&d!==d.root&&m2(l,{x:-d.scroll.offset.x,y:-d.scroll.offset.y}),jp(d.latestValues)&&m2(l,d.latestValues)}return jp(this.latestValues)&&m2(l,this.latestValues),l}removeTransform(i){const c=Hr();ci(c,i);for(let l=0;l<this.path.length;l++){const u=this.path[l];if(!u.instance||!jp(u.latestValues))continue;q8(u.latestValues)&&u.updateSnapshot();const d=Hr(),p=u.measurePageBox();ci(d,p),_K(c,u.latestValues,u.snapshot?u.snapshot.layoutBox:void 0,d)}return jp(this.latestValues)&&_K(c,this.latestValues),c}setTargetDelta(i){this.targetDelta=i,this.root.scheduleUpdateProjection(),this.isProjectionDirty=!0}setOptions(i){this.options={...this.options,...i,crossfade:i.crossfade!==void 0?i.crossfade:!0}}clearMeasurements(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1}forceRelativeParentToResolveTarget(){this.relativeParent&&this.relativeParent.resolvedRelativeTargetAt!==V0.timestamp&&this.relativeParent.resolveTargetDelta(!0)}resolveTargetDelta(i=!1){var c;const l=this.getLead();this.isProjectionDirty||(this.isProjectionDirty=l.isProjectionDirty),this.isTransformDirty||(this.isTransformDirty=l.isTransformDirty),this.isSharedProjectionDirty||(this.isSharedProjectionDirty=l.isSharedProjectionDirty);const u=!!this.resumingFrom||this!==l;if(!(i||u&&this.isSharedProjectionDirty||this.isProjectionDirty||!((c=this.parent)===null||c===void 0)&&c.isProjectionDirty||this.attemptToResolveRelativeTarget||this.root.updateBlockedByResize))return;const{layout:p,layoutId:f}=this.options;if(!(!this.layout||!(p||f))){if(this.resolvedRelativeTargetAt=V0.timestamp,!this.targetDelta&&!this.relativeTarget){const b=this.getClosestProjectingParent();b&&b.layout&&this.animationProgress!==1?(this.relativeParent=b,this.forceRelativeParentToResolveTarget(),this.relativeTarget=Hr(),this.relativeTargetOrigin=Hr(),kM(this.relativeTargetOrigin,this.layout.layoutBox,b.layout.layoutBox),ci(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}if(!(!this.relativeTarget&&!this.targetDelta)){if(this.target||(this.target=Hr(),this.targetWithTransforms=Hr()),this.relativeTarget&&this.relativeTargetOrigin&&this.relativeParent&&this.relativeParent.target?(this.forceRelativeParentToResolveTarget(),HGe(this.target,this.relativeTarget,this.relativeParent.target)):this.targetDelta?(this.resumingFrom?this.target=this.applyTransform(this.layout.layoutBox):ci(this.target,this.layout.layoutBox),mue(this.target,this.targetDelta)):ci(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget){this.attemptToResolveRelativeTarget=!1;const b=this.getClosestProjectingParent();b&&!!b.resumingFrom==!!this.resumingFrom&&!b.options.layoutScroll&&b.target&&this.animationProgress!==1?(this.relativeParent=b,this.forceRelativeParentToResolveTarget(),this.relativeTarget=Hr(),this.relativeTargetOrigin=Hr(),kM(this.relativeTargetOrigin,this.target,b.target),ci(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}nM&&Ip.resolvedTargetDeltas++}}}getClosestProjectingParent(){if(!(!this.parent||q8(this.parent.latestValues)||hue(this.parent.latestValues)))return this.parent.isProjecting()?this.parent:this.parent.getClosestProjectingParent()}isProjecting(){return!!((this.relativeTarget||this.targetDelta||this.options.layoutRoot)&&this.layout)}calcProjection(){var i;const c=this.getLead(),l=!!this.resumingFrom||this!==c;let u=!0;if((this.isProjectionDirty||!((i=this.parent)===null||i===void 0)&&i.isProjectionDirty)&&(u=!1),l&&(this.isSharedProjectionDirty||this.isTransformDirty)&&(u=!1),this.resolvedRelativeTargetAt===V0.timestamp&&(u=!1),u)return;const{layout:d,layoutId:p}=this.options;if(this.isTreeAnimating=!!(this.parent&&this.parent.isTreeAnimating||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!this.layout||!(d||p))return;ci(this.layoutCorrected,this.layout.layoutBox);const f=this.treeScale.x,b=this.treeScale.y;eKe(this.layoutCorrected,this.treeScale,this.path,l),c.layout&&!c.target&&(this.treeScale.x!==1||this.treeScale.y!==1)&&(c.target=c.layout.layoutBox,c.targetWithTransforms=Hr());const{target:h}=c;if(!h){this.prevProjectionDelta&&(this.createProjectionDeltas(),this.scheduleRender());return}!this.projectionDelta||!this.prevProjectionDelta?this.createProjectionDeltas():(vK(this.prevProjectionDelta.x,this.projectionDelta.x),vK(this.prevProjectionDelta.y,this.projectionDelta.y)),_M(this.projectionDelta,this.layoutCorrected,h,this.latestValues),(this.treeScale.x!==f||this.treeScale.y!==b||!RK(this.projectionDelta.x,this.prevProjectionDelta.x)||!RK(this.projectionDelta.y,this.prevProjectionDelta.y))&&(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",h)),nM&&Ip.recalculatedProjection++}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(i=!0){var c;if((c=this.options.visualElement)===null||c===void 0||c.scheduleRender(),i){const l=this.getStack();l&&l.scheduleRender()}this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}createProjectionDeltas(){this.prevProjectionDelta=b2(),this.projectionDelta=b2(),this.projectionDeltaWithTransform=b2()}setAnimationOrigin(i,c=!1){const l=this.snapshot,u=l?l.latestValues:{},d={...this.latestValues},p=b2();(!this.relativeParent||!this.relativeParent.options.layoutRoot)&&(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!c;const f=Hr(),b=l?l.source:void 0,h=this.layout?this.layout.source:void 0,g=b!==h,z=this.getStack(),A=!z||z.members.length<=1,_=!!(g&&!A&&this.options.crossfade===!0&&!this.path.some(DKe));this.animationProgress=0;let v;this.mixTargetDelta=M=>{const y=M/1e3;NK(p.x,i.x,y),NK(p.y,i.y,y),this.setTargetDelta(p),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(kM(f,this.layout.layoutBox,this.relativeParent.layout.layoutBox),IKe(this.relativeTarget,this.relativeTargetOrigin,f,y),v&&zKe(this.relativeTarget,v)&&(this.isProjectionDirty=!1),v||(v=Hr()),ci(v,this.relativeTarget)),g&&(this.animationValues=d,fKe(d,u,this.latestValues,y,_,A)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=y},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(i){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(Rd(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Po.update(()=>{Zv.hasAnimatedSinceResize=!0,this.currentAnimation=_Ke(0,TK,{...i,onUpdate:c=>{this.mixTargetDelta(c),i.onUpdate&&i.onUpdate(c)},onComplete:()=>{i.onComplete&&i.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const i=this.getStack();i&&i.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(TK),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const i=this.getLead();let{targetWithTransforms:c,target:l,layout:u,latestValues:d}=i;if(!(!c||!l||!u)){if(this!==i&&this.layout&&u&&kue(this.options.animationType,this.layout.layoutBox,u.layoutBox)){l=this.target||Hr();const p=Ds(this.layout.layoutBox.x);l.x.min=i.target.x.min,l.x.max=l.x.min+p;const f=Ds(this.layout.layoutBox.y);l.y.min=i.target.y.min,l.y.max=l.y.min+f}ci(c,l),m2(c,d),_M(this.projectionDeltaWithTransform,this.layoutCorrected,c,d)}}registerSharedNode(i,c){this.sharedNodes.has(i)||this.sharedNodes.set(i,new OKe),this.sharedNodes.get(i).add(c);const u=c.options.initialPromotionConfig;c.promote({transition:u?u.transition:void 0,preserveFollowOpacity:u&&u.shouldPreserveFollowOpacity?u.shouldPreserveFollowOpacity(c):void 0})}isLead(){const i=this.getStack();return i?i.lead===this:!0}getLead(){var i;const{layoutId:c}=this.options;return c?((i=this.getStack())===null||i===void 0?void 0:i.lead)||this:this}getPrevLead(){var i;const{layoutId:c}=this.options;return c?(i=this.getStack())===null||i===void 0?void 0:i.prevLead:void 0}getStack(){const{layoutId:i}=this.options;if(i)return this.root.sharedNodes.get(i)}promote({needsReset:i,transition:c,preserveFollowOpacity:l}={}){const u=this.getStack();u&&u.promote(this,l),i&&(this.projectionDelta=void 0,this.needsReset=!0),c&&this.setOptions({transition:c})}relegate(){const i=this.getStack();return i?i.relegate(this):!1}resetSkewAndRotation(){const{visualElement:i}=this.options;if(!i)return;let c=!1;const{latestValues:l}=i;if((l.z||l.rotate||l.rotateX||l.rotateY||l.rotateZ||l.skewX||l.skewY)&&(c=!0),!c)return;const u={};l.z&&RC("z",i,u,this.animationValues);for(let d=0;d<qC.length;d++)RC(`rotate${qC[d]}`,i,u,this.animationValues),RC(`skew${qC[d]}`,i,u,this.animationValues);i.render();for(const d in u)i.setStaticValue(d,u[d]),this.animationValues&&(this.animationValues[d]=u[d]);i.scheduleRender()}getProjectionStyles(i){var c,l;if(!this.instance||this.isSVG)return;if(!this.isVisible)return kKe;const u={visibility:""},d=this.getTransformTemplate();if(this.needsReset)return this.needsReset=!1,u.opacity="",u.pointerEvents=Qv(i?.pointerEvents)||"",u.transform=d?d(this.latestValues,""):"none",u;const p=this.getLead();if(!this.projectionDelta||!this.layout||!p.target){const g={};return this.options.layoutId&&(g.opacity=this.latestValues.opacity!==void 0?this.latestValues.opacity:1,g.pointerEvents=Qv(i?.pointerEvents)||""),this.hasProjected&&!jp(this.latestValues)&&(g.transform=d?d({},""):"none",this.hasProjected=!1),g}const f=p.animationValues||p.latestValues;this.applyTransformsToTarget(),u.transform=yKe(this.projectionDeltaWithTransform,this.treeScale,f),d&&(u.transform=d(f,u.transform));const{x:b,y:h}=this.projectionDelta;u.transformOrigin=`${b.origin*100}% ${h.origin*100}% 0`,p.animationValues?u.opacity=p===this?(l=(c=f.opacity)!==null&&c!==void 0?c:this.latestValues.opacity)!==null&&l!==void 0?l:1:this.preserveOpacity?this.latestValues.opacity:f.opacityExit:u.opacity=p===this?f.opacity!==void 0?f.opacity:"":f.opacityExit!==void 0?f.opacityExit:0;for(const g in hx){if(f[g]===void 0)continue;const{correct:z,applyTo:A}=hx[g],_=u.transform==="none"?f[g]:z(f[g],p);if(A){const v=A.length;for(let M=0;M<v;M++)u[A[M]]=_}else u[g]=_}return this.options.layoutId&&(u.pointerEvents=p===this?Qv(i?.pointerEvents)||"":"none"),u}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach(i=>{var c;return(c=i.currentAnimation)===null||c===void 0?void 0:c.stop()}),this.root.nodes.forEach(EK),this.root.sharedNodes.clear()}}}function CKe(e){e.updateLayout()}function qKe(e){var t;const n=((t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&n&&e.hasListeners("didUpdate")){const{layoutBox:o,measuredBox:r}=e.layout,{animationType:s}=e.options,i=n.source!==e.layout.source;s==="size"?pi(p=>{const f=i?n.measuredBox[p]:n.layoutBox[p],b=Ds(f);f.min=o[p].min,f.max=f.min+b}):kue(s,n.layoutBox,o)&&pi(p=>{const f=i?n.measuredBox[p]:n.layoutBox[p],b=Ds(o[p]);f.max=f.min+b,e.relativeTarget&&!e.currentAnimation&&(e.isProjectionDirty=!0,e.relativeTarget[p].max=e.relativeTarget[p].min+b)});const c=b2();_M(c,o,n.layoutBox);const l=b2();i?_M(l,e.applyTransform(r,!0),n.measuredBox):_M(l,o,n.layoutBox);const u=!vue(c);let d=!1;if(!e.resumeFrom){const p=e.getClosestProjectingParent();if(p&&!p.resumeFrom){const{snapshot:f,layout:b}=p;if(f&&b){const h=Hr();kM(h,n.layoutBox,f.layoutBox);const g=Hr();kM(g,o,b.layoutBox),xue(h,g)||(d=!0),p.options.layoutRoot&&(e.relativeTarget=g,e.relativeTargetOrigin=h,e.relativeParent=p)}}}e.notifyListeners("didUpdate",{layout:o,snapshot:n,delta:l,layoutDelta:c,hasLayoutChanged:u,hasRelativeTargetChanged:d})}else if(e.isLead()){const{onExitComplete:o}=e.options;o&&o()}e.options.transition=void 0}function RKe(e){nM&&Ip.totalNodes++,e.parent&&(e.isProjecting()||(e.isProjectionDirty=e.parent.isProjectionDirty),e.isSharedProjectionDirty||(e.isSharedProjectionDirty=!!(e.isProjectionDirty||e.parent.isProjectionDirty||e.parent.isSharedProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=e.parent.isTransformDirty))}function TKe(e){e.isProjectionDirty=e.isSharedProjectionDirty=e.isTransformDirty=!1}function EKe(e){e.clearSnapshot()}function EK(e){e.clearMeasurements()}function WKe(e){e.isLayoutDirty=!1}function NKe(e){const{visualElement:t}=e.options;t&&t.getProps().onBeforeLayoutMeasure&&t.notify("BeforeLayoutMeasure"),e.resetTransform()}function WK(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0,e.isProjectionDirty=!0}function BKe(e){e.resolveTargetDelta()}function LKe(e){e.calcProjection()}function PKe(e){e.resetSkewAndRotation()}function jKe(e){e.removeLeadSnapshot()}function NK(e,t,n){e.translate=Cr(t.translate,0,n),e.scale=Cr(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function BK(e,t,n,o){e.min=Cr(t.min,n.min,o),e.max=Cr(t.max,n.max,o)}function IKe(e,t,n,o){BK(e.x,t.x,n.x,o),BK(e.y,t.y,n.y,o)}function DKe(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const FKe={duration:.45,ease:[.4,0,.1,1]},LK=e=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(e),PK=LK("applewebkit/")&&!LK("chrome/")?Math.round:O1;function jK(e){e.min=PK(e.min),e.max=PK(e.max)}function $Ke(e){jK(e.x),jK(e.y)}function kue(e,t,n){return e==="position"||e==="preserve-aspect"&&!VGe(qK(t),qK(n),.2)}function VKe(e){var t;return e!==e.root&&((t=e.scroll)===null||t===void 0?void 0:t.wasRoot)}const HKe=_ue({attachResizeListener:(e,t)=>hl(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),TC={current:void 0},Sue=_ue({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!TC.current){const e=new HKe({});e.mount(window),e.setOptions({layoutScroll:!0}),TC.current=e}return TC.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>window.getComputedStyle(e).position==="fixed"}),UKe={pan:{Feature:iKe},drag:{Feature:sKe,ProjectionNode:Sue,MeasureLayout:Oue}};function IK(e,t){const n=t?"pointerenter":"pointerleave",o=t?"onHoverStart":"onHoverEnd",r=(s,i)=>{if(s.pointerType==="touch"||due())return;const c=e.getProps();e.animationState&&c.whileHover&&e.animationState.setActive("whileHover",t);const l=c[o];l&&Po.postRender(()=>l(s,i))};return kl(e.current,n,r,{passive:!e.getProps()[o]})}class XKe extends op{mount(){this.unmount=_l(IK(this.node,!0),IK(this.node,!1))}unmount(){}}class GKe extends op{constructor(){super(...arguments),this.isActive=!1}onFocus(){let t=!1;try{t=this.node.current.matches(":focus-visible")}catch{t=!0}!t||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=_l(hl(this.node.current,"focus",()=>this.onFocus()),hl(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}const Cue=(e,t)=>t?e===t?!0:Cue(e,t.parentElement):!1;function EC(e,t){if(!t)return;const n=new PointerEvent("pointer"+e);t(n,_w(n))}class KKe extends op{constructor(){super(...arguments),this.removeStartListeners=O1,this.removeEndListeners=O1,this.removeAccessibleListeners=O1,this.startPointerPress=(t,n)=>{if(this.isPressing)return;this.removeEndListeners();const o=this.node.getProps(),s=kl(window,"pointerup",(c,l)=>{if(!this.checkPressEnd())return;const{onTap:u,onTapCancel:d,globalTapTarget:p}=this.node.getProps(),f=!p&&!Cue(this.node.current,c.target)?d:u;f&&Po.update(()=>f(c,l))},{passive:!(o.onTap||o.onPointerUp)}),i=kl(window,"pointercancel",(c,l)=>this.cancelPress(c,l),{passive:!(o.onTapCancel||o.onPointerCancel)});this.removeEndListeners=_l(s,i),this.startPress(t,n)},this.startAccessiblePress=()=>{const t=s=>{if(s.key!=="Enter"||this.isPressing)return;const i=c=>{c.key!=="Enter"||!this.checkPressEnd()||EC("up",(l,u)=>{const{onTap:d}=this.node.getProps();d&&Po.postRender(()=>d(l,u))})};this.removeEndListeners(),this.removeEndListeners=hl(this.node.current,"keyup",i),EC("down",(c,l)=>{this.startPress(c,l)})},n=hl(this.node.current,"keydown",t),o=()=>{this.isPressing&&EC("cancel",(s,i)=>this.cancelPress(s,i))},r=hl(this.node.current,"blur",o);this.removeAccessibleListeners=_l(n,r)}}startPress(t,n){this.isPressing=!0;const{onTapStart:o,whileTap:r}=this.node.getProps();r&&this.node.animationState&&this.node.animationState.setActive("whileTap",!0),o&&Po.postRender(()=>o(t,n))}checkPressEnd(){return this.removeEndListeners(),this.isPressing=!1,this.node.getProps().whileTap&&this.node.animationState&&this.node.animationState.setActive("whileTap",!1),!due()}cancelPress(t,n){if(!this.checkPressEnd())return;const{onTapCancel:o}=this.node.getProps();o&&Po.postRender(()=>o(t,n))}mount(){const t=this.node.getProps(),n=kl(t.globalTapTarget?window:this.node.current,"pointerdown",this.startPointerPress,{passive:!(t.onTapStart||t.onPointerStart)}),o=hl(this.node.current,"focus",this.startAccessiblePress);this.removeStartListeners=_l(n,o)}unmount(){this.removeStartListeners(),this.removeEndListeners(),this.removeAccessibleListeners()}}const T8=new WeakMap,WC=new WeakMap,YKe=e=>{const t=T8.get(e.target);t&&t(e)},ZKe=e=>{e.forEach(YKe)};function QKe({root:e,...t}){const n=e||document;WC.has(n)||WC.set(n,{});const o=WC.get(n),r=JSON.stringify(t);return o[r]||(o[r]=new IntersectionObserver(ZKe,{root:e,...t})),o[r]}function JKe(e,t,n){const o=QKe(t);return T8.set(e,n),o.observe(e),()=>{T8.delete(e),o.unobserve(e)}}const eYe={some:0,all:1};class tYe extends op{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:t={}}=this.node.getProps(),{root:n,margin:o,amount:r="some",once:s}=t,i={root:n?n.current:void 0,rootMargin:o,threshold:typeof r=="number"?r:eYe[r]},c=l=>{const{isIntersecting:u}=l;if(this.isInView===u||(this.isInView=u,s&&!u&&this.hasEnteredView))return;u&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",u);const{onViewportEnter:d,onViewportLeave:p}=this.node.getProps(),f=u?d:p;f&&f(l)};return JKe(this.node.current,i,c)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:t,prevProps:n}=this.node;["amount","margin","root"].some(nYe(t,n))&&this.startObserver()}unmount(){}}function nYe({viewport:e={}},{viewport:t={}}={}){return n=>e[n]!==t[n]}const oYe={inView:{Feature:tYe},tap:{Feature:KKe},focus:{Feature:GKe},hover:{Feature:XKe}},rYe={layout:{ProjectionNode:Sue,MeasureLayout:Oue}},AP=x.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),Sw=x.createContext({}),vP=typeof window<"u",que=vP?x.useLayoutEffect:x.useEffect,Rue=x.createContext({strict:!1});function sYe(e,t,n,o,r){var s,i;const{visualElement:c}=x.useContext(Sw),l=x.useContext(Rue),u=x.useContext(kw),d=x.useContext(AP).reducedMotion,p=x.useRef();o=o||l.renderer,!p.current&&o&&(p.current=o(e,{visualState:t,parent:c,props:n,presenceContext:u,blockInitialAnimation:u?u.initial===!1:!1,reducedMotionConfig:d}));const f=p.current,b=x.useContext(zue);f&&!f.projection&&r&&(f.type==="html"||f.type==="svg")&&iYe(p.current,n,r,b),x.useInsertionEffect(()=>{f&&f.update(n,u)});const h=n[nue],g=x.useRef(!!h&&!(!((s=window.MotionHandoffIsComplete)===null||s===void 0)&&s.call(window,h))&&((i=window.MotionHasOptimisedAnimation)===null||i===void 0?void 0:i.call(window,h)));return que(()=>{f&&(window.MotionIsMounted=!0,f.updateFeatures(),yP.render(f.render),g.current&&f.animationState&&f.animationState.animateChanges())}),x.useEffect(()=>{f&&(!g.current&&f.animationState&&f.animationState.animateChanges(),g.current&&(queueMicrotask(()=>{var z;(z=window.MotionHandoffMarkAsComplete)===null||z===void 0||z.call(window,h)}),g.current=!1))}),f}function iYe(e,t,n,o){const{layoutId:r,layout:s,drag:i,dragConstraints:c,layoutScroll:l,layoutRoot:u}=t;e.projection=new n(e.latestValues,t["data-framer-portal-id"]?void 0:Tue(e.parent)),e.projection.setOptions({layoutId:r,layout:s,alwaysMeasureLayout:!!i||c&&f2(c),visualElement:e,animationType:typeof s=="string"?s:"both",initialPromotionConfig:o,layoutScroll:l,layoutRoot:u})}function Tue(e){if(e)return e.options.allowProjection!==!1?e.projection:Tue(e.parent)}function aYe(e,t,n){return x.useCallback(o=>{o&&e.mount&&e.mount(o),t&&(o?t.mount(o):t.unmount()),n&&(typeof n=="function"?n(o):f2(n)&&(n.current=o))},[t])}function Cw(e){return pz(e.animate)||tP.some(t=>fz(e[t]))}function Eue(e){return!!(Cw(e)||e.variants)}function cYe(e,t){if(Cw(e)){const{initial:n,animate:o}=e;return{initial:n===!1||fz(n)?n:void 0,animate:fz(o)?o:void 0}}return e.inherit!==!1?t:{}}function lYe(e){const{initial:t,animate:n}=cYe(e,x.useContext(Sw));return x.useMemo(()=>({initial:t,animate:n}),[DK(t),DK(n)])}function DK(e){return Array.isArray(e)?e.join(" "):e}const FK={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]},mh={};for(const e in FK)mh[e]={isEnabled:t=>FK[e].some(n=>!!t[n])};function uYe(e){for(const t in e)mh[t]={...mh[t],...e[t]}}const dYe=Symbol.for("motionComponentSymbol");function pYe({preloadedFeatures:e,createVisualElement:t,useRender:n,useVisualState:o,Component:r}){e&&uYe(e);function s(c,l){let u;const d={...x.useContext(AP),...c,layoutId:fYe(c)},{isStatic:p}=d,f=lYe(c),b=o(c,p);if(!p&&vP){bYe();const h=hYe(d);u=h.MeasureLayout,f.visualElement=sYe(r,b,d,t,h.ProjectionNode)}return a.jsxs(Sw.Provider,{value:f,children:[u&&f.visualElement?a.jsx(u,{visualElement:f.visualElement,...d}):null,n(r,c,aYe(b,f.visualElement,l),b,p,f.visualElement)]})}const i=x.forwardRef(s);return i[dYe]=r,i}function fYe({layoutId:e}){const t=x.useContext(OP).id;return t&&e!==void 0?t+"-"+e:e}function bYe(e,t){x.useContext(Rue).strict}function hYe(e){const{drag:t,layout:n}=mh;if(!t&&!n)return{};const o={...t,...n};return{MeasureLayout:t?.isEnabled(e)||n?.isEnabled(e)?o.MeasureLayout:void 0,ProjectionNode:o.ProjectionNode}}const mYe=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function xP(e){return typeof e!="string"||e.includes("-")?!1:!!(mYe.indexOf(e)>-1||/[A-Z]/u.test(e))}function Wue(e,{style:t,vars:n},o,r){Object.assign(e.style,t,r&&r.getProjectionStyles(o));for(const s in n)e.style.setProperty(s,n[s])}const Nue=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function Bue(e,t,n,o){Wue(e,t,void 0,o);for(const r in t.attrs)e.setAttribute(Nue.has(r)?r:ww(r),t.attrs[r])}function Lue(e,{layout:t,layoutId:n}){return np.has(e)||e.startsWith("origin")||(t||n!==void 0)&&(!!hx[e]||e==="opacity")}function wP(e,t,n){var o;const{style:r}=e,s={};for(const i in r)(h1(r[i])||t.style&&h1(t.style[i])||Lue(i,e)||((o=n?.getValue(i))===null||o===void 0?void 0:o.liveStyle)!==void 0)&&(s[i]=r[i]);return n&&r&&typeof r.willChange=="string"&&(n.applyWillChange=!1),s}function Pue(e,t,n){const o=wP(e,t,n);for(const r in e)if(h1(e[r])||h1(t[r])){const s=I3.indexOf(r)!==-1?"attr"+r.charAt(0).toUpperCase()+r.substring(1):r;o[s]=e[r]}return o}function _P(e){const t=x.useRef(null);return t.current===null&&(t.current=e()),t.current}function gYe(e){if(np.has(e))return"transform";if(Qle.has(e))return ww(e)}function MYe({applyWillChange:e=!1,scrapeMotionValuesFromProps:t,createRenderState:n,onMount:o},r,s,i,c){const l={latestValues:zYe(r,s,i,c?!1:e,t),renderState:n()};return o&&(l.mount=u=>o(r,u,l)),l}const jue=e=>(t,n)=>{const o=x.useContext(Sw),r=x.useContext(kw),s=()=>MYe(e,t,o,r,n);return n?s():_P(s)};function $K(e,t,n){const o=Array.isArray(t)?t:[t];for(let r=0;r<o.length;r++){const s=JL(e,o[r]);if(s){const{transitionEnd:i,transition:c,...l}=s;n(l,i)}}}function zYe(e,t,n,o,r){var s;const i={},c=new Set,l=o&&((s=e.style)===null||s===void 0?void 0:s.willChange)===void 0,u=r(e,{});for(const z in u)i[z]=Qv(u[z]);let{initial:d,animate:p}=e;const f=Cw(e),b=Eue(e);t&&b&&!f&&e.inherit!==!1&&(d===void 0&&(d=t.initial),p===void 0&&(p=t.animate));let h=n?n.initial===!1:!1;h=h||d===!1;const g=h?p:d;return g&&typeof g!="boolean"&&!pz(g)&&$K(e,g,(z,A)=>{for(const _ in z){let v=z[_];if(Array.isArray(v)){const M=h?v.length-1:0;v=v[M]}v!==null&&(i[_]=v)}for(const _ in A)i[_]=A[_]}),l&&(p&&d!==!1&&!pz(p)&&$K(e,p,z=>{for(const A in z){const _=gYe(A);_&&c.add(_)}}),c.size&&(i.willChange=Array.from(c).join(","))),i}const kP=()=>({style:{},transform:{},transformOrigin:{},vars:{}}),Iue=()=>({...kP(),attrs:{}}),Due=(e,t)=>t&&typeof e=="number"?t.transform(e):e,OYe={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},yYe=I3.length;function AYe(e,t,n){let o="",r=!0;for(let s=0;s<yYe;s++){const i=I3[s],c=e[i];if(c===void 0)continue;let l=!0;if(typeof c=="number"?l=c===(i.startsWith("scale")?1:0):l=parseFloat(c)===0,!l||n){const u=Due(c,lP[i]);if(!l){r=!1;const d=OYe[i]||i;o+=`${d}(${u}) `}n&&(t[i]=u)}}return o=o.trim(),n?o=n(t,r?"":o):r&&(o="none"),o}function SP(e,t,n){const{style:o,vars:r,transformOrigin:s}=e;let i=!1,c=!1;for(const l in t){const u=t[l];if(np.has(l)){i=!0;continue}else if(Tle(l)){r[l]=u;continue}else{const d=Due(u,lP[l]);l.startsWith("origin")?(c=!0,s[l]=d):o[l]=d}}if(t.transform||(i||n?o.transform=AYe(t,e.transform,n):o.transform&&(o.transform="none")),c){const{originX:l="50%",originY:u="50%",originZ:d=0}=s;o.transformOrigin=`${l} ${u} ${d}`}}function VK(e,t,n){return typeof e=="string"?e:hn.transform(t+n*e)}function vYe(e,t,n){const o=VK(t,e.x,e.width),r=VK(n,e.y,e.height);return`${o} ${r}`}const xYe={offset:"stroke-dashoffset",array:"stroke-dasharray"},wYe={offset:"strokeDashoffset",array:"strokeDasharray"};function _Ye(e,t,n=1,o=0,r=!0){e.pathLength=1;const s=r?xYe:wYe;e[s.offset]=hn.transform(-o);const i=hn.transform(t),c=hn.transform(n);e[s.array]=`${i} ${c}`}function CP(e,{attrX:t,attrY:n,attrScale:o,originX:r,originY:s,pathLength:i,pathSpacing:c=1,pathOffset:l=0,...u},d,p){if(SP(e,u,p),d){e.style.viewBox&&(e.attrs.viewBox=e.style.viewBox);return}e.attrs=e.style,e.style={};const{attrs:f,style:b,dimensions:h}=e;f.transform&&(h&&(b.transform=f.transform),delete f.transform),h&&(r!==void 0||s!==void 0||b.transform)&&(b.transformOrigin=vYe(h,r!==void 0?r:.5,s!==void 0?s:.5)),t!==void 0&&(f.x=t),n!==void 0&&(f.y=n),o!==void 0&&(f.scale=o),i!==void 0&&_Ye(f,i,c,l,!1)}const qP=e=>typeof e=="string"&&e.toLowerCase()==="svg",kYe={useVisualState:jue({scrapeMotionValuesFromProps:Pue,createRenderState:Iue,onMount:(e,t,{renderState:n,latestValues:o})=>{Po.read(()=>{try{n.dimensions=typeof t.getBBox=="function"?t.getBBox():t.getBoundingClientRect()}catch{n.dimensions={x:0,y:0,width:0,height:0}}}),Po.render(()=>{CP(n,o,qP(t.tagName),e.transformTemplate),Bue(t,n)})}})},SYe={useVisualState:jue({applyWillChange:!0,scrapeMotionValuesFromProps:wP,createRenderState:kP})};function Fue(e,t,n){for(const o in t)!h1(t[o])&&!Lue(o,n)&&(e[o]=t[o])}function CYe({transformTemplate:e},t){return x.useMemo(()=>{const n=kP();return SP(n,t,e),Object.assign({},n.vars,n.style)},[t])}function qYe(e,t){const n=e.style||{},o={};return Fue(o,n,e),Object.assign(o,CYe(e,t)),o}function RYe(e,t){const n={},o=qYe(e,t);return e.drag&&e.dragListener!==!1&&(n.draggable=!1,o.userSelect=o.WebkitUserSelect=o.WebkitTouchCallout="none",o.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),e.tabIndex===void 0&&(e.onTap||e.onTapStart||e.whileTap)&&(n.tabIndex=0),n.style=o,n}const TYe=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function mx(e){return e.startsWith("while")||e.startsWith("drag")&&e!=="draggable"||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||TYe.has(e)}let $ue=e=>!mx(e);function EYe(e){e&&($ue=t=>t.startsWith("on")?!mx(t):e(t))}try{EYe(require("@emotion/is-prop-valid").default)}catch{}function WYe(e,t,n){const o={};for(const r in e)r==="values"&&typeof e.values=="object"||($ue(r)||n===!0&&mx(r)||!t&&!mx(r)||e.draggable&&r.startsWith("onDrag"))&&(o[r]=e[r]);return o}function NYe(e,t,n,o){const r=x.useMemo(()=>{const s=Iue();return CP(s,t,qP(o),e.transformTemplate),{...s.attrs,style:{...s.style}}},[t]);if(e.style){const s={};Fue(s,e.style,e),r.style={...s,...r.style}}return r}function BYe(e=!1){return(n,o,r,{latestValues:s},i)=>{const l=(xP(n)?NYe:RYe)(o,s,i,n),u=WYe(o,typeof n=="string",e),d=n!==x.Fragment?{...u,...l,ref:r}:{},{children:p}=o,f=x.useMemo(()=>h1(p)?p.get():p,[p]);return x.createElement(n,{...d,children:f})}}function LYe(e,t){return function(o,{forwardMotionProps:r}={forwardMotionProps:!1}){const i={...xP(o)?kYe:SYe,preloadedFeatures:e,useRender:BYe(r),createVisualElement:t,Component:o};return pYe(i)}}const E8={current:null},Vue={current:!1};function PYe(){if(Vue.current=!0,!!vP)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>E8.current=e.matches;e.addListener(t),t()}else E8.current=!1}function jYe(e,t,n){for(const o in t){const r=t[o],s=n[o];if(h1(r))e.addValue(o,r);else if(h1(s))e.addValue(o,mz(r,{owner:e}));else if(s!==r)if(e.hasValue(o)){const i=e.getValue(o);i.liveStyle===!0?i.jump(r):i.hasAnimated||i.set(r)}else{const i=e.getStaticValue(o);e.addValue(o,mz(i!==void 0?i:r,{owner:e}))}}for(const o in n)t[o]===void 0&&e.removeValue(o);return t}const HK=new WeakMap,IYe=[...Nle,f1,Ed],DYe=e=>IYe.find(Wle(e)),UK=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];class FYe{scrapeMotionValuesFromProps(t,n,o){return{}}constructor({parent:t,props:n,presenceContext:o,reducedMotionConfig:r,blockInitialAnimation:s,visualState:i},c={}){this.applyWillChange=!1,this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=iP,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const f=mc.now();this.renderScheduledAt<f&&(this.renderScheduledAt=f,Po.render(this.render,!1,!0))};const{latestValues:l,renderState:u}=i;this.latestValues=l,this.baseTarget={...l},this.initialValues=n.initial?{...l}:{},this.renderState=u,this.parent=t,this.props=n,this.presenceContext=o,this.depth=t?t.depth+1:0,this.reducedMotionConfig=r,this.options=c,this.blockInitialAnimation=!!s,this.isControllingVariants=Cw(n),this.isVariantNode=Eue(n),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=!!(t&&t.current);const{willChange:d,...p}=this.scrapeMotionValuesFromProps(n,{},this);for(const f in p){const b=p[f];l[f]!==void 0&&h1(b)&&b.set(l[f],!1)}}mount(t){this.current=t,HK.set(t,this),this.projection&&!this.projection.instance&&this.projection.mount(t),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach((n,o)=>this.bindToMotionValue(o,n)),Vue.current||PYe(),this.shouldReduceMotion=this.reducedMotionConfig==="never"?!1:this.reducedMotionConfig==="always"?!0:E8.current,this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){HK.delete(this.current),this.projection&&this.projection.unmount(),Rd(this.notifyUpdate),Rd(this.render),this.valueSubscriptions.forEach(t=>t()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const t in this.events)this.events[t].clear();for(const t in this.features){const n=this.features[t];n&&(n.unmount(),n.isMounted=!1)}this.current=null}bindToMotionValue(t,n){this.valueSubscriptions.has(t)&&this.valueSubscriptions.get(t)();const o=np.has(t),r=n.on("change",c=>{this.latestValues[t]=c,this.props.onUpdate&&Po.preRender(this.notifyUpdate),o&&this.projection&&(this.projection.isTransformDirty=!0)}),s=n.on("renderRequest",this.scheduleRender);let i;window.MotionCheckAppearSync&&(i=window.MotionCheckAppearSync(this,t,n)),this.valueSubscriptions.set(t,()=>{r(),s(),i&&i(),n.owner&&n.stop()})}sortNodePosition(t){return!this.current||!this.sortInstanceNodePosition||this.type!==t.type?0:this.sortInstanceNodePosition(this.current,t.current)}updateFeatures(){let t="animation";for(t in mh){const n=mh[t];if(!n)continue;const{isEnabled:o,Feature:r}=n;if(!this.features[t]&&r&&o(this.props)&&(this.features[t]=new r(this)),this.features[t]){const s=this.features[t];s.isMounted?s.update():(s.mount(),s.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):Hr()}getStaticValue(t){return this.latestValues[t]}setStaticValue(t,n){this.latestValues[t]=n}update(t,n){(t.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=t,this.prevPresenceContext=this.presenceContext,this.presenceContext=n;for(let o=0;o<UK.length;o++){const r=UK[o];this.propEventSubscriptions[r]&&(this.propEventSubscriptions[r](),delete this.propEventSubscriptions[r]);const s="on"+r,i=t[s];i&&(this.propEventSubscriptions[r]=this.on(r,i))}this.prevMotionValues=jYe(this,this.scrapeMotionValuesFromProps(t,this.prevProps,this),this.prevMotionValues),this.handleChildMotionValue&&this.handleChildMotionValue()}getProps(){return this.props}getVariant(t){return this.props.variants?this.props.variants[t]:void 0}getDefaultTransition(){return this.props.transition}getTransformPagePoint(){return this.props.transformPagePoint}getClosestVariantNode(){return this.isVariantNode?this:this.parent?this.parent.getClosestVariantNode():void 0}addVariantChild(t){const n=this.getClosestVariantNode();if(n)return n.variantChildren&&n.variantChildren.add(t),()=>n.variantChildren.delete(t)}addValue(t,n){const o=this.values.get(t);n!==o&&(o&&this.removeValue(t),this.bindToMotionValue(t,n),this.values.set(t,n),this.latestValues[t]=n.get())}removeValue(t){this.values.delete(t);const n=this.valueSubscriptions.get(t);n&&(n(),this.valueSubscriptions.delete(t)),delete this.latestValues[t],this.removeValueFromRenderState(t,this.renderState)}hasValue(t){return this.values.has(t)}getValue(t,n){if(this.props.values&&this.props.values[t])return this.props.values[t];let o=this.values.get(t);return o===void 0&&n!==void 0&&(o=mz(n===null?void 0:n,{owner:this}),this.addValue(t,o)),o}readValue(t,n){var o;let r=this.latestValues[t]!==void 0||!this.current?this.latestValues[t]:(o=this.getBaseTargetFromProps(this.props,t))!==null&&o!==void 0?o:this.readValueFromInstance(this.current,t,this.options);return r!=null&&(typeof r=="string"&&(qle(r)||Cle(r))?r=parseFloat(r):!DYe(r)&&Ed.test(n)&&(r=$le(t,n)),this.setBaseTarget(t,h1(r)?r.get():r)),h1(r)?r.get():r}setBaseTarget(t,n){this.baseTarget[t]=n}getBaseTarget(t){var n;const{initial:o}=this.props;let r;if(typeof o=="string"||typeof o=="object"){const i=JL(this.props,o,(n=this.presenceContext)===null||n===void 0?void 0:n.custom);i&&(r=i[t])}if(o&&r!==void 0)return r;const s=this.getBaseTargetFromProps(this.props,t);return s!==void 0&&!h1(s)?s:this.initialValues[t]!==void 0&&r===void 0?void 0:this.baseTarget[t]}on(t,n){return this.events[t]||(this.events[t]=new zP),this.events[t].add(n)}notify(t,...n){this.events[t]&&this.events[t].notify(...n)}}class Hue extends FYe{constructor(){super(...arguments),this.KeyframeResolver=Vle}sortInstanceNodePosition(t,n){return t.compareDocumentPosition(n)&2?1:-1}getBaseTargetFromProps(t,n){return t.style?t.style[n]:void 0}removeValueFromRenderState(t,{vars:n,style:o}){delete n[t],delete o[t]}}function $Ye(e){return window.getComputedStyle(e)}class VYe extends Hue{constructor(){super(...arguments),this.type="html",this.applyWillChange=!0,this.renderInstance=Wue}readValueFromInstance(t,n){if(np.has(n)){const o=uP(n);return o&&o.default||0}else{const o=$Ye(t),r=(Tle(n)?o.getPropertyValue(n):o[n])||0;return typeof r=="string"?r.trim():r}}measureInstanceViewportBox(t,{transformPagePoint:n}){return gue(t,n)}build(t,n,o){SP(t,n,o.transformTemplate)}scrapeMotionValuesFromProps(t,n,o){return wP(t,n,o)}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:t}=this.props;h1(t)&&(this.childSubscription=t.on("change",n=>{this.current&&(this.current.textContent=`${n}`)}))}}class HYe extends Hue{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=Hr}getBaseTargetFromProps(t,n){return t[n]}readValueFromInstance(t,n){if(np.has(n)){const o=uP(n);return o&&o.default||0}return n=Nue.has(n)?n:ww(n),t.getAttribute(n)}scrapeMotionValuesFromProps(t,n,o){return Pue(t,n,o)}build(t,n,o){CP(t,n,this.isSVGTag,o.transformTemplate)}renderInstance(t,n,o,r){Bue(t,n,o,r)}mount(t){this.isSVGTag=qP(t.tagName),super.mount(t)}}const UYe=(e,t)=>xP(e)?new HYe(t):new VYe(t,{allowProjection:e!==x.Fragment}),XYe=LYe({...NGe,...oYe,...UKe,...rYe},UYe),Rr=kUe(XYe);class GYe extends x.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent){const o=this.props.sizeRef.current;o.height=n.offsetHeight||0,o.width=n.offsetWidth||0,o.top=n.offsetTop,o.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function KYe({children:e,isPresent:t}){const n=x.useId(),o=x.useRef(null),r=x.useRef({width:0,height:0,top:0,left:0}),{nonce:s}=x.useContext(AP);return x.useInsertionEffect(()=>{const{width:i,height:c,top:l,left:u}=r.current;if(t||!o.current||!i||!c)return;o.current.dataset.motionPopId=n;const d=document.createElement("style");return s&&(d.nonce=s),document.head.appendChild(d),d.sheet&&d.sheet.insertRule(` [data-motion-pop-id="${n}"] { position: absolute !important; width: ${i}px !important; @@ -306,7 +306,7 @@ ${r}`)}function u7e(e){return e.replace(/(^|\n)•( +)/g,"$1*$2")}function d7e(e top: ${l}px !important; left: ${u}px !important; } - `),()=>{document.head.removeChild(d)}},[t]),a.jsx(KYe,{isPresent:t,childRef:o,sizeRef:r,children:x.cloneElement(e,{ref:o})})}const ZYe=({children:e,initial:t,isPresent:n,onExitComplete:o,custom:r,presenceAffectsLayout:s,mode:i})=>{const c=kP(QYe),l=x.useId(),u=x.useCallback(p=>{c.set(p,!0);for(const f of c.values())if(!f)return;o&&o()},[c,o]),d=x.useMemo(()=>({id:l,initial:t,isPresent:n,custom:r,onExitComplete:u,register:p=>(c.set(p,!1),()=>c.delete(p))}),s?[Math.random(),u]:[n,u]);return x.useMemo(()=>{c.forEach((p,f)=>c.set(f,!1))},[n]),x.useEffect(()=>{!n&&!c.size&&o&&o()},[n]),i==="popLayout"&&(e=a.jsx(YYe,{isPresent:n,children:e})),a.jsx(Sw.Provider,{value:d,children:e})};function QYe(){return new Map}const CA=e=>e.key||"";function XK(e){const t=[];return x.Children.forEach(e,n=>{x.isValidElement(n)&&t.push(n)}),t}const Wd=({children:e,exitBeforeEnter:t,custom:n,initial:o=!0,onExitComplete:r,presenceAffectsLayout:s=!0,mode:i="sync"})=>{const c=x.useMemo(()=>XK(e),[e]),l=c.map(CA),u=x.useRef(!0),d=x.useRef(c),p=kP(()=>new Map),[f,b]=x.useState(c),[h,g]=x.useState(c);que(()=>{u.current=!1,d.current=c;for(let _=0;_<h.length;_++){const v=CA(h[_]);l.includes(v)?p.delete(v):p.get(v)!==!0&&p.set(v,!1)}},[h,l.length,l.join("-")]);const z=[];if(c!==f){let _=[...c];for(let v=0;v<h.length;v++){const M=h[v],y=CA(M);l.includes(y)||(_.splice(v,0,M),z.push(M))}i==="wait"&&z.length&&(_=z),g(XK(_)),b(c);return}const{forceRender:A}=x.useContext(yP);return a.jsx(a.Fragment,{children:h.map(_=>{const v=CA(_),M=c===h||l.includes(v),y=()=>{if(p.has(v))p.set(v,!0);else return;let k=!0;p.forEach(S=>{S||(k=!1)}),k&&(A?.(),g(d.current),r&&r())};return a.jsx(ZYe,{isPresent:M,initial:!u.current||o?void 0:!1,custom:M?void 0:n,presenceAffectsLayout:s,mode:i,onExitComplete:M?void 0:y,children:_},v)})})},BC=["40em","52em","64em"],JYe=(e={})=>{const{defaultIndex:t=0}=e;if(typeof t!="number")throw new TypeError(`Default breakpoint index should be a number. Got: ${t}, ${typeof t}`);if(t<0||t>BC.length-1)throw new RangeError(`Default breakpoint index out of range. Theme has ${BC.length} breakpoints, got index ${t}`);const[n,o]=x.useState(t);return x.useEffect(()=>{const r=()=>BC.filter(i=>typeof window<"u"?window.matchMedia(`screen and (min-width: ${i})`).matches:!1).length,s=()=>{const i=r();n!==i&&o(i)};return s(),typeof window<"u"&&window.addEventListener("resize",s),()=>{typeof window<"u"&&window.removeEventListener("resize",s)}},[n]),n};function N8(e,t={}){const n=JYe(t);if(!Array.isArray(e)&&typeof e!="function")return e;const o=e||[];return o[n>=o.length?o.length-1:n]}const eZe={name:"zjik7",styles:"display:flex"},tZe={name:"qgaee5",styles:"display:block;max-height:100%;max-width:100%;min-height:0;min-width:0"},nZe={name:"82a6rk",styles:"flex:1"},oZe={name:"13nosa1",styles:">*{min-height:0;}"},rZe={name:"1pwxzk4",styles:">*{min-width:0;}"};function sZe(e){const{isReversed:t,...n}=e;return typeof t<"u"?(Ke("Flex isReversed",{alternative:'Flex direction="row-reverse" or "column-reverse"',since:"5.9"}),{...n,direction:t?"row-reverse":"row"}):n}function Uue(e){const{align:t,className:n,direction:o="row",expanded:r=!0,gap:s=2,justify:i="space-between",wrap:c=!1,...l}=vn(sZe(e),"Flex"),u=Array.isArray(o)?o:[o],d=N8(u),p=typeof d=="string"&&!!d.includes("column"),f=ro(),b=x.useMemo(()=>{const h=Xe({alignItems:t??(p?"normal":"center"),flexDirection:d,flexWrap:c?"wrap":void 0,gap:Je(s),justifyContent:i,height:p&&r?"100%":void 0,width:!p&&r?"100%":void 0},"","");return f(eZe,h,p?oZe:rZe,n)},[t,n,f,d,r,s,p,i,c]);return{...l,className:b,isColumn:p}}const Xue=x.createContext({flexItemDisplay:void 0}),iZe=()=>x.useContext(Xue);function aZe(e,t){const{children:n,isColumn:o,...r}=Uue(e);return a.jsx(Xue.Provider,{value:{flexItemDisplay:o?"block":void 0},children:a.jsx(mo,{...r,ref:t,children:n})})}const Yo=Rn(aZe,"Flex");function Gue(e){const{className:t,display:n,isBlock:o=!1,...r}=vn(e,"FlexItem"),s={},i=iZe().flexItemDisplay;s.Base=Xe({display:n||i},"","");const l=ro()(tZe,s.Base,o&&nZe,t);return{...r,className:l}}function cZe(e,t){const n=Gue(e);return a.jsx(mo,{...n,ref:t})}const Tn=Rn(cZe,"FlexItem");function lZe(e){const t=vn(e,"FlexBlock");return Gue({isBlock:!0,...t})}function uZe(e,t){const n=lZe(e);return a.jsx(mo,{...n,ref:t})}const tu=Rn(uZe,"FlexBlock");function ns(e){return typeof e<"u"&&e!==null}function dZe(e){const{className:t,margin:n,marginBottom:o=2,marginLeft:r,marginRight:s,marginTop:i,marginX:c,marginY:l,padding:u,paddingBottom:d,paddingLeft:p,paddingRight:f,paddingTop:b,paddingX:h,paddingY:g,...z}=vn(e,"Spacer"),_=ro()(ns(n)&&Xe("margin:",Je(n),";",""),ns(l)&&Xe("margin-bottom:",Je(l),";margin-top:",Je(l),";",""),ns(c)&&Xe("margin-left:",Je(c),";margin-right:",Je(c),";",""),ns(i)&&Xe("margin-top:",Je(i),";",""),ns(o)&&Xe("margin-bottom:",Je(o),";",""),ns(r)&&Go({marginLeft:Je(r)})(),ns(s)&&Go({marginRight:Je(s)})(),ns(u)&&Xe("padding:",Je(u),";",""),ns(g)&&Xe("padding-bottom:",Je(g),";padding-top:",Je(g),";",""),ns(h)&&Xe("padding-left:",Je(h),";padding-right:",Je(h),";",""),ns(b)&&Xe("padding-top:",Je(b),";",""),ns(d)&&Xe("padding-bottom:",Je(d),";",""),ns(p)&&Go({paddingLeft:Je(p)})(),ns(f)&&Go({paddingRight:Je(f)})(),t);return{...z,className:_}}function pZe(e,t){const n=dZe(e);return a.jsx(mo,{...n,ref:t})}const t1=Rn(pZe,"Spacer");function fZe({icon:e,size:t=24,...n},o){return x.cloneElement(e,{width:t,height:t,...n,ref:o})}const wn=x.forwardRef(fZe),TP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M2 12c0 3.6 2.4 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.5 0-4.5-1.5-4.5-4s2-4.5 4.5-4.5h3.5V6H8c-3.6 0-6 2.4-6 6zm19.5-1h-8v1.5h8V11zm0 5h-8v1.5h8V16zm0-10h-8v1.5h8V6z"})}),bZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 5.5V8H20V5.5H22.5V4H20V1.5H18.5V4H16V5.5H18.5ZM13.9624 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V10.0391H18.5V18C18.5 18.2761 18.2761 18.5 18 18.5H10L10 10.4917L16.4589 10.5139L16.4641 9.01389L5.5 8.97618V6C5.5 5.72386 5.72386 5.5 6 5.5H13.9624V4ZM5.5 10.4762V18C5.5 18.2761 5.72386 18.5 6 18.5H8.5L8.5 10.4865L5.5 10.4762Z"})}),Rw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7.5 5.5h9V4h-9v1.5Zm-3.5 7h16V11H4v1.5Zm3.5 7h9V18h-9v1.5Z"})}),hZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 12.8h16v-1.5H4v1.5zm0 7h12.4v-1.5H4v1.5zM4 4.3v1.5h16V4.3H4z"})}),$3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 5.5H4V4h9v1.5Zm7 7H4V11h16v1.5Zm-7 7H4V18h9v1.5Z"})}),Tw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 5.5H5V4h14v1.5ZM19 20H5v-1.5h14V20ZM5 9h14v6H5V9Z"})}),V3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.111 5.5H20V4h-8.889v1.5ZM4 12.5h16V11H4v1.5Zm7.111 7H20V18h-8.889v1.5Z"})}),mZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.934 7.406a1 1 0 0 0 .914.594H19a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h5.764a.5.5 0 0 1 .447.276l.723 1.63Zm1.064-1.216a.5.5 0 0 0 .462.31H19a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.764a2 2 0 0 1 1.789 1.106l.445 1.084ZM8.5 10.5h7V12h-7v-1.5Zm7 3.5h-7v1.5h7V14Z"})}),gZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m16.5 13.5-3.7 3.7V4h-1.5v13.2l-3.8-3.7-1 1 5.5 5.6 5.5-5.6z"})}),GK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 11.2H6.8l3.7-3.7-1-1L3.9 12l5.6 5.5 1-1-3.7-3.7H20z"})}),B8=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m14.5 6.5-1 1 3.7 3.7H4v1.6h13.2l-3.7 3.7 1 1 5.6-5.5z"})}),MZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.5 5.5h-13c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5h-13c-.3 0-.5-.2-.5-.5v-9c0-.3.2-.5.5-.5h13c.3 0 .5.2.5.5v9zM6.5 12H8v-2h2V8.5H6.5V12zm9.5 2h-2v1.5h3.5V12H16v2z"})}),Kue=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.7 4.3c-1.2 0-2.8 0-3.8 1-.6.6-.9 1.5-.9 2.6V14c-.6-.6-1.5-1-2.5-1C8.6 13 7 14.6 7 16.5S8.6 20 10.5 20c1.5 0 2.8-1 3.3-2.3.5-.8.7-1.8.7-2.5V7.9c0-.7.2-1.2.5-1.6.6-.6 1.8-.6 2.8-.6h.3V4.3h-.4z"})}),Yue=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5.5 12h1.75l-2.5 3-2.5-3H4a8 8 0 113.134 6.35l.907-1.194A6.5 6.5 0 105.5 12zm9.53 1.97l-2.28-2.28V8.5a.75.75 0 00-1.5 0V12a.747.747 0 00.218.529l1.282-.84-1.28.842 2.5 2.5a.75.75 0 101.06-1.061z"})}),Ew=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 8h-1V6h-5v2h-2V6H6v2H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm.5 10c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5v-8c0-.3.2-.5.5-.5h14c.3 0 .5.2.5.5v8z"})}),Zue=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.5h14c.3 0 .5.2.5.5v3.5h-15V5c0-.3.2-.5.5-.5zm8 5.5h6.5v3.5H13V10zm-1.5 3.5h-7V10h7v3.5zm-7 5.5v-4h7v4.5H5c-.3 0-.5-.2-.5-.5zm14.5.5h-6V15h6.5v4c0 .3-.2.5-.5.5z"})}),Que=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M8 12.5h8V11H8v1.5Z M19 6.5H5a2 2 0 0 0-2 2V15a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a2 2 0 0 0-2-2ZM5 8h14a.5.5 0 0 1 .5.5V15a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V8.5A.5.5 0 0 1 5 8Z"})}),zZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M14.5 17.5H9.5V16H14.5V17.5Z M14.5 8H9.5V6.5H14.5V8Z M7 3.5H17C18.1046 3.5 19 4.39543 19 5.5V9C19 10.1046 18.1046 11 17 11H7C5.89543 11 5 10.1046 5 9V5.5C5 4.39543 5.89543 3.5 7 3.5ZM17 5H7C6.72386 5 6.5 5.22386 6.5 5.5V9C6.5 9.27614 6.72386 9.5 7 9.5H17C17.2761 9.5 17.5 9.27614 17.5 9V5.5C17.5 5.22386 17.2761 5 17 5Z M7 13H17C18.1046 13 19 13.8954 19 15V18.5C19 19.6046 18.1046 20.5 17 20.5H7C5.89543 20.5 5 19.6046 5 18.5V15C5 13.8954 5.89543 13 7 13ZM17 14.5H7C6.72386 14.5 6.5 14.7239 6.5 15V18.5C6.5 18.7761 6.72386 19 7 19H17C17.2761 19 17.5 18.7761 17.5 18.5V15C17.5 14.7239 17.2761 14.5 17 14.5Z"})}),Jue=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V7h15v12zM9 10H7v2h2v-2zm0 4H7v2h2v-2zm4-4h-2v2h2v-2zm4 0h-2v2h2v-2zm-4 4h-2v2h2v-2zm4 0h-2v2h2v-2z"})}),OZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M6 5.5h12a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5ZM4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Zm4 10h2v-1.5H8V16Zm5 0h-2v-1.5h2V16Zm1 0h2v-1.5h-2V16Z"})}),gz=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M6 5.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5zM4 6a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2H6a2 2 0 01-2-2V6zm11-.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5zM13 6a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2h-3a2 2 0 01-2-2V6zm5 8.5h-3a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5zM15 13a2 2 0 00-2 2v3a2 2 0 002 2h3a2 2 0 002-2v-3a2 2 0 00-2-2h-3zm-9 1.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zM4 15a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2H6a2 2 0 01-2-2v-3z",fillRule:"evenodd",clipRule:"evenodd"})}),yZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 12a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0ZM12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-.75 12v-1.5h1.5V16h-1.5Zm0-8v5h1.5V8h-1.5Z"})}),M0=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z"})}),nu=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.5 11.6L12 16l-5.5-4.4.9-1.2L12 14l4.5-3.6 1 1.2z"})}),Pl=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14.6 7l-1.2-1L8 12l5.4 6 1.2-1-4.6-5z"})}),Ww=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m13.1 16-3.4-4 3.4-4 1.1 1-2.6 3 2.6 3-1.1 1z"})}),ga=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10.6 6L9.4 7l4.6 5-4.6 5 1.2 1 5.4-6z"})}),Af=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10.8622 8.04053L14.2805 12.0286L10.8622 16.0167L9.72327 15.0405L12.3049 12.0286L9.72327 9.01672L10.8622 8.04053Z"})}),Nw=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M6.5 12.4L12 8l5.5 4.4-.9 1.2L12 10l-4.5 3.6-1-1.2z"})}),AZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M20 6H4c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H4c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h16c.3 0 .5.2.5.5v9zM10 10H8v2h2v-2zm-5 2h2v-2H5v2zm8-2h-2v2h2v-2zm-5 6h8v-2H8v2zm6-4h2v-2h-2v2zm3 0h2v-2h-2v2zm0 4h2v-2h-2v2zM5 16h2v-2H5v2z"})}),im=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"})}),rp=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"})}),vZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.3 10.1C17.3 7.60001 15.2 5.70001 12.5 5.70001C10.3 5.70001 8.4 7.10001 7.9 9.00001H7.7C5.7 9.00001 4 10.7 4 12.8C4 14.9 5.7 16.6 7.7 16.6H9.5V15.2H7.7C6.5 15.2 5.5 14.1 5.5 12.9C5.5 11.7 6.5 10.5 7.7 10.5H9L9.3 9.40001C9.7 8.10001 11 7.20001 12.5 7.20001C14.3 7.20001 15.8 8.50001 15.8 10.1V11.4L17.1 11.6C17.9 11.7 18.5 12.5 18.5 13.4C18.5 14.4 17.7 15.2 16.8 15.2H14.5V16.6H16.7C18.5 16.6 19.9 15.1 19.9 13.3C20 11.7 18.8 10.4 17.3 10.1Z M14.1245 14.2426L15.1852 13.182L12.0032 10L8.82007 13.1831L9.88072 14.2438L11.25 12.8745V18H12.75V12.8681L14.1245 14.2426Z"})}),xZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})}),EP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M20.8 10.7l-4.3-4.3-1.1 1.1 4.3 4.3c.1.1.1.3 0 .4l-4.3 4.3 1.1 1.1 4.3-4.3c.7-.8.7-1.9 0-2.6zM4.2 11.8l4.3-4.3-1-1-4.3 4.3c-.7.7-.7 1.8 0 2.5l4.3 4.3 1.1-1.1-4.3-4.3c-.2-.1-.2-.3-.1-.4z"})}),ede=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M10.289 4.836A1 1 0 0111.275 4h1.306a1 1 0 01.987.836l.244 1.466c.787.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 011.216.437l.653 1.13a1 1 0 01-.23 1.273l-1.148.944a6.025 6.025 0 010 2.435l1.149.946a1 1 0 01.23 1.272l-.653 1.13a1 1 0 01-1.216.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 01-.987.836h-1.306a1 1 0 01-.986-.836l-.244-1.466a5.995 5.995 0 01-2.108-1.218l-1.394.522a1 1 0 01-1.217-.436l-.653-1.131a1 1 0 01.23-1.272l1.149-.946a6.026 6.026 0 010-2.435l-1.148-.944a1 1 0 01-.23-1.272l.653-1.131a1 1 0 011.217-.437l1.393.522a5.994 5.994 0 012.108-1.218l.244-1.466zM14.929 12a3 3 0 11-6 0 3 3 0 016 0z",clipRule:"evenodd"})}),wZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.2 10.9c-.5-1-1.2-2.1-2.1-3.2-.6-.9-1.3-1.7-2.1-2.6L12 4l-1 1.1c-.6.9-1.3 1.7-2 2.6-.8 1.2-1.5 2.3-2 3.2-.6 1.2-1 2.2-1 3 0 3.4 2.7 6.1 6.1 6.1s6.1-2.7 6.1-6.1c0-.8-.3-1.8-1-3zm-5.1 7.6c-2.5 0-4.6-2.1-4.6-4.6 0-.3.1-1 .8-2.3.5-.9 1.1-1.9 2-3.1.7-.9 1.3-1.7 1.8-2.3.7.8 1.3 1.6 1.8 2.3.8 1.1 1.5 2.2 2 3.1.7 1.3.8 2 .8 2.3 0 2.5-2.1 4.6-4.6 4.6z"})}),_Ze=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM6 17.5c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h3v10H6zm13.5-.5c0 .3-.2.5-.5.5h-3v-10h3c.3 0 .5.2.5.5v9z"})}),kZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 7.5h-5v10h5v-10Zm1.5 0v10H19a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5h-2.5ZM6 7.5h2.5v10H6a.5.5 0 0 1-.5-.5V8a.5.5 0 0 1 .5-.5ZM6 6h13a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z"})}),H3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5 4.5h11a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5ZM3 5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm17 3v10.75c0 .69-.56 1.25-1.25 1.25H6v1.5h12.75a2.75 2.75 0 0 0 2.75-2.75V8H20Z"})}),WP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.625 5.5h9.75c.069 0 .125.056.125.125v9.75a.125.125 0 0 1-.125.125h-9.75a.125.125 0 0 1-.125-.125v-9.75c0-.069.056-.125.125-.125ZM4 5.625C4 4.728 4.728 4 5.625 4h9.75C16.273 4 17 4.728 17 5.625v9.75c0 .898-.727 1.625-1.625 1.625h-9.75A1.625 1.625 0 0 1 4 15.375v-9.75Zm14.5 11.656v-9H20v9C20 18.8 18.77 20 17.251 20H6.25v-1.5h11.001c.69 0 1.249-.528 1.249-1.219Z"})}),U3=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12.9c0 .6.5 1.1 1.1 1.1.3 0 .5-.1.8-.3L8.5 17H18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H7.9l-2.4 2.4V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v9z"})}),NP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})}),SZe=a.jsxs(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12.9c0 .6.5 1.1 1.1 1.1.3 0 .5-.1.8-.3L8.5 17H18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H7.9l-2.4 2.4V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v9z",fillRule:"evenodd",clipRule:"evenodd"}),a.jsx(he,{d:"M15 15V15C15 13.8954 14.1046 13 13 13L11 13C9.89543 13 9 13.8954 9 15V15",fillRule:"evenodd",clipRule:"evenodd"}),a.jsx(dae,{cx:"12",cy:"9",r:"2",fillRule:"evenodd",clipRule:"evenodd"})]}),CZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.68822 16.625L5.5 17.8145L5.5 5.5L18.5 5.5L18.5 16.625L6.68822 16.625ZM7.31 18.125L19 18.125C19.5523 18.125 20 17.6773 20 17.125L20 5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V19.5247C4 19.8173 4.16123 20.086 4.41935 20.2237C4.72711 20.3878 5.10601 20.3313 5.35252 20.0845L7.31 18.125ZM16 9.99997H8V8.49997H16V9.99997ZM8 14H13V12.5H8V14Z"})}),qZe=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M6.68822 10.625L6.24878 11.0649L5.5 11.8145L5.5 5.5L12.5 5.5V8L14 6.5V5C14 4.44772 13.5523 4 13 4H5C4.44772 4 4 4.44771 4 5V13.5247C4 13.8173 4.16123 14.086 4.41935 14.2237C4.72711 14.3878 5.10601 14.3313 5.35252 14.0845L7.31 12.125H8.375L9.875 10.625H7.31H6.68822ZM14.5605 10.4983L11.6701 13.75H16.9975C17.9963 13.75 18.7796 14.1104 19.3553 14.7048C19.9095 15.2771 20.2299 16.0224 20.4224 16.7443C20.7645 18.0276 20.7543 19.4618 20.7487 20.2544C20.7481 20.345 20.7475 20.4272 20.7475 20.4999L19.2475 20.5001C19.2475 20.4191 19.248 20.3319 19.2484 20.2394V20.2394C19.2526 19.4274 19.259 18.2035 18.973 17.1307C18.8156 16.5401 18.586 16.0666 18.2778 15.7483C17.9909 15.4521 17.5991 15.25 16.9975 15.25H11.8106L14.5303 17.9697L13.4696 19.0303L8.96956 14.5303L13.4394 9.50171L14.5605 10.4983Z"})}),RZe=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"m6.249 11.065.44-.44h3.186l-1.5 1.5H7.31l-1.957 1.96A.792.792 0 0 1 4 13.524V5a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1.5L12.5 8V5.5h-7v6.315l.749-.75ZM20 19.75H7v-1.5h13v1.5Zm0-12.653-8.967 9.064L8 17l.867-2.935L17.833 5 20 7.097Z"})}),BP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.7 3H5.3C4 3 3 4 3 5.3v13.4C3 20 4 21 5.3 21h13.4c1.3 0 2.3-1 2.3-2.3V5.3C21 4 20 3 18.7 3zm.8 15.7c0 .4-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8V5.3c0-.4.4-.8.8-.8h6.2v8.9l2.5-3.1 2.5 3.1V4.5h2.2c.4 0 .8.4.8.8v13.4z"})}),tde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 20v-2h2v-1.5H7.75a.25.25 0 0 1-.25-.25V4H6v2H4v1.5h2v8.75c0 .966.784 1.75 1.75 1.75h8.75v2H18ZM9.273 7.5h6.977a.25.25 0 0 1 .25.25v6.977H18V7.75A1.75 1.75 0 0 0 16.25 6H9.273v1.5Z"})}),TZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4zm.8-4l.7.7 2-2V12h1V9.2l2 2 .7-.7-2-2H12v-1H9.2l2-2-.7-.7-2 2V4h-1v2.8l-2-2-.7.7 2 2H4v1h2.8l-2 2z"})}),KK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20.5 16h-.7V8c0-1.1-.9-2-2-2H6.2c-1.1 0-2 .9-2 2v8h-.7c-.8 0-1.5.7-1.5 1.5h20c0-.8-.7-1.5-1.5-1.5zM5.7 8c0-.3.2-.5.5-.5h11.6c.3 0 .5.2.5.5v7.6H5.7V8z"})}),EZe=a.jsxs(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(he,{d:"M4 16h10v1.5H4V16Zm0-4.5h16V13H4v-1.5ZM10 7h10v1.5H10V7Z",fillRule:"evenodd",clipRule:"evenodd"}),a.jsx(he,{d:"m4 5.25 4 2.5-4 2.5v-5Z"})]}),L8=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8 4a4 4 0 0 0 4-4H8a4 4 0 0 0 4 4Z"})}),nde=a.jsx(ge,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M8 7h2V5H8v2zm0 6h2v-2H8v2zm0 6h2v-2H8v2zm6-14v2h2V5h-2zm0 8h2v-2h-2v2zm0 6h2v-2h-2v2z"})}),ode=a.jsx(ge,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8.5 18.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h2.5v13zm10-.5c0 .3-.2.5-.5.5h-8v-13h8c.3 0 .5.2.5.5v12z"})}),rde=a.jsx(ge,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-4 14.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h8v13zm4.5-.5c0 .3-.2.5-.5.5h-2.5v-13H18c.3 0 .5.2.5.5v12z"})}),WZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 11.3l-1-1.1-4 4V3h-1.5v11.3L7 10.2l-1 1.1 6.2 5.8 5.8-5.8zm.5 3.7v3.5h-13V15H4v5h16v-5h-1.5z"})}),Nd=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})}),vf=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"})}),NZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.218 5.377a.25.25 0 0 0-.436 0l-7.29 12.96a.25.25 0 0 0 .218.373h14.58a.25.25 0 0 0 .218-.372l-7.29-12.96Zm-1.743-.735c.669-1.19 2.381-1.19 3.05 0l7.29 12.96a1.75 1.75 0 0 1-1.525 2.608H4.71a1.75 1.75 0 0 1-1.525-2.608l7.29-12.96ZM12.75 17.46h-1.5v-1.5h1.5v1.5Zm-1.5-3h1.5v-5h-1.5v5Z"})}),LP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.848 8a1 1 0 0 1-.914-.594l-.723-1.63a.5.5 0 0 0-.447-.276H5a.5.5 0 0 0-.5.5v11.5a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5v-9A.5.5 0 0 0 19 8h-6.152Zm.612-1.5a.5.5 0 0 1-.462-.31l-.445-1.084A2 2 0 0 0 10.763 4H5a2 2 0 0 0-2 2v11.5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-5.54Z"})}),BZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4 4 19h16L12 4zm0 3.2 5.5 10.3H12V7.2z"})}),LZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14.7 11.3c1-.6 1.5-1.6 1.5-3 0-2.3-1.3-3.4-4-3.4H7v14h5.8c1.4 0 2.5-.3 3.3-1 .8-.7 1.2-1.7 1.2-2.9.1-1.9-.8-3.1-2.6-3.7zm-5.1-4h2.3c.6 0 1.1.1 1.4.4.3.3.5.7.5 1.2s-.2 1-.5 1.2c-.3.3-.8.4-1.4.4H9.6V7.3zm4.6 9c-.4.3-1 .4-1.7.4H9.6v-3.9h2.9c.7 0 1.3.2 1.7.5.4.3.6.8.6 1.5s-.2 1.2-.6 1.5z"})}),PZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7.1 6.8L3.1 18h1.6l1.1-3h4.3l1.1 3h1.6l-4-11.2H7.1zm-.8 6.8L8 8.9l1.7 4.7H6.3zm14.5-1.5c-.3-.6-.7-1.1-1.2-1.5-.6-.4-1.2-.6-1.9-.6-.5 0-.9.1-1.4.3-.4.2-.8.5-1.1.8V6h-1.4v12h1.3l.2-1c.2.4.6.6 1 .8.4.2.9.3 1.4.3.7 0 1.2-.2 1.8-.5.5-.4 1-.9 1.3-1.5.3-.6.5-1.3.5-2.1-.1-.6-.2-1.3-.5-1.9zm-1.7 4c-.4.5-.9.8-1.6.8s-1.2-.2-1.7-.7c-.4-.5-.7-1.2-.7-2.1 0-.9.2-1.6.7-2.1.4-.5 1-.7 1.7-.7s1.2.3 1.6.8c.4.5.6 1.2.6 2 .1.8-.2 1.4-.6 2z"})}),jZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 7.2v1.5h16V7.2H4zm8 8.6h8v-1.5h-8v1.5zm-8-3.5l3 3-3 3 1 1 4-4-4-4-1 1z"})}),IZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 5.5H4V4H20V5.5ZM12 12.5H4V11H12V12.5ZM20 20V18.5H4V20H20ZM20.0303 9.03033L17.0607 12L20.0303 14.9697L18.9697 16.0303L15.4697 12.5303L14.9393 12L15.4697 11.4697L18.9697 7.96967L20.0303 9.03033Z"})}),DZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.5 5L10 19h1.9l2.5-14z"})}),sde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.1 15.8H20v-1.5h-8.9v1.5zm0-8.6v1.5H20V7.2h-8.9zM6 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"})}),FZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 8.8h8.9V7.2H4v1.6zm0 7h8.9v-1.5H4v1.5zM18 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"})}),Mz=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.1 15.8H20v-1.5h-8.9v1.5zm0-8.6v1.5H20V7.2h-8.9zM5 6.7V10h1V5.3L3.8 6l.4 1 .8-.3zm-.4 5.7c-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5h2.7v-1h-1c.3-.6.8-1.4.9-2.1.1-.3 0-.8-.2-1.1-.5-.6-1.3-.5-1.7-.4z"})}),$Ze=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M3.8 15.8h8.9v-1.5H3.8v1.5zm0-7h8.9V7.2H3.8v1.6zm14.7-2.1V10h1V5.3l-2.2.7.3 1 .9-.3zm1.2 6.1c-.5-.6-1.2-.5-1.7-.4-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5H20v-1h-.9c.3-.6.8-1.4.9-2.1 0-.3 0-.8-.3-1.1z"})}),VZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M5.52 2h7.43c.55 0 1 .45 1 1s-.45 1-1 1h-1v13c0 .55-.45 1-1 1s-1-.45-1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55-.45 1-1 1s-1-.45-1-1v-5.96h-.43C3.02 11.04 1 9.02 1 6.52S3.02 2 5.52 2zM14 14l5-4-5-4v8z"})}),HZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11 16.8c-.1-.1-.2-.3-.3-.5v-2.6c0-.9-.1-1.7-.3-2.2-.2-.5-.5-.9-.9-1.2-.4-.2-.9-.3-1.6-.3-.5 0-1 .1-1.5.2s-.9.3-1.2.6l.2 1.2c.4-.3.7-.4 1.1-.5.3-.1.7-.2 1-.2.6 0 1 .1 1.3.4.3.2.4.7.4 1.4-1.2 0-2.3.2-3.3.7s-1.4 1.1-1.4 2.1c0 .7.2 1.2.7 1.6.4.4 1 .6 1.8.6.9 0 1.7-.4 2.4-1.2.1.3.2.5.4.7.1.2.3.3.6.4.3.1.6.1 1.1.1h.1l.2-1.2h-.1c-.4.1-.6 0-.7-.1zM9.2 16c-.2.3-.5.6-.9.8-.3.1-.7.2-1.1.2-.4 0-.7-.1-.9-.3-.2-.2-.3-.5-.3-.9 0-.6.2-1 .7-1.3.5-.3 1.3-.4 2.5-.5v2zm10.6-3.9c-.3-.6-.7-1.1-1.2-1.5-.6-.4-1.2-.6-1.9-.6-.5 0-.9.1-1.4.3-.4.2-.8.5-1.1.8V6h-1.4v12h1.3l.2-1c.2.4.6.6 1 .8.4.2.9.3 1.4.3.7 0 1.2-.2 1.8-.5.5-.4 1-.9 1.3-1.5.3-.6.5-1.3.5-2.1-.1-.6-.2-1.3-.5-1.9zm-1.7 4c-.4.5-.9.8-1.6.8s-1.2-.2-1.7-.7c-.4-.5-.7-1.2-.7-2.1 0-.9.2-1.6.7-2.1.4-.5 1-.7 1.7-.7s1.2.3 1.6.8c.4.5.6 1.2.6 2s-.2 1.4-.6 2z"})}),ide=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 7.2v1.5h16V7.2H4zm8 8.6h8v-1.5h-8v1.5zm-4-4.6l-4 4 4 4 1-1-3-3 3-3-1-1z"})}),ade=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 5.5H4V4H20V5.5ZM12 12.5H4V11H12V12.5ZM20 20V18.5H4V20H20ZM15.4697 14.9697L18.4393 12L15.4697 9.03033L16.5303 7.96967L20.0303 11.4697L20.5607 12L20.0303 12.5303L16.5303 16.0303L15.4697 14.9697Z"})}),cde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9.1 9v-.5c0-.6.2-1.1.7-1.4.5-.3 1.2-.5 2-.5.7 0 1.4.1 2.1.3.7.2 1.4.5 2.1.9l.2-1.9c-.6-.3-1.2-.5-1.9-.7-.8-.1-1.6-.2-2.4-.2-1.5 0-2.7.3-3.6 1-.8.7-1.2 1.5-1.2 2.6V9h2zM20 12H4v1h8.3c.3.1.6.2.8.3.5.2.9.5 1.1.8.3.3.4.7.4 1.2 0 .7-.2 1.1-.8 1.5-.5.3-1.2.5-2.1.5-.8 0-1.6-.1-2.4-.3-.8-.2-1.5-.5-2.2-.8L7 18.1c.5.2 1.2.4 2 .6.8.2 1.6.3 2.4.3 1.7 0 3-.3 3.9-1 .9-.7 1.3-1.6 1.3-2.8 0-.9-.2-1.7-.7-2.2H20v-1z"})}),UZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 18v1h10v-1H7zm5-2c1.5 0 2.6-.4 3.4-1.2.8-.8 1.1-2 1.1-3.5V5H15v5.8c0 1.2-.2 2.1-.6 2.8-.4.7-1.2 1-2.4 1s-2-.3-2.4-1c-.4-.7-.6-1.6-.6-2.8V5H7.5v6.2c0 1.5.4 2.7 1.1 3.5.8.9 1.9 1.3 3.4 1.3z"})}),XZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6.1 6.8L2.1 18h1.6l1.1-3h4.3l1.1 3h1.6l-4-11.2H6.1zm-.8 6.8L7 8.9l1.7 4.7H5.3zm15.1-.7c-.4-.5-.9-.8-1.6-1 .4-.2.7-.5.8-.9.2-.4.3-.9.3-1.4 0-.9-.3-1.6-.8-2-.6-.5-1.3-.7-2.4-.7h-3.5V18h4.2c1.1 0 2-.3 2.6-.8.6-.6 1-1.4 1-2.4-.1-.8-.3-1.4-.6-1.9zm-5.7-4.7h1.8c.6 0 1.1.1 1.4.4.3.2.5.7.5 1.3 0 .6-.2 1.1-.5 1.3-.3.2-.8.4-1.4.4h-1.8V8.2zm4 8c-.4.3-.9.5-1.5.5h-2.6v-3.8h2.6c1.4 0 2 .6 2 1.9.1.6-.1 1-.5 1.4z"})}),zz=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6 4a2 2 0 0 0-2 2v3h1.5V6a.5.5 0 0 1 .5-.5h3V4H6Zm3 14.5H6a.5.5 0 0 1-.5-.5v-3H4v3a2 2 0 0 0 2 2h3v-1.5Zm6 1.5v-1.5h3a.5.5 0 0 0 .5-.5v-3H20v3a2 2 0 0 1-2 2h-3Zm3-16a2 2 0 0 1 2 2v3h-1.5V6a.5.5 0 0 0-.5-.5h-3V4h3Z"})}),lde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M16.375 4.5H4.625a.125.125 0 0 0-.125.125v8.254l2.859-1.54a.75.75 0 0 1 .68-.016l2.384 1.142 2.89-2.074a.75.75 0 0 1 .874 0l2.313 1.66V4.625a.125.125 0 0 0-.125-.125Zm.125 9.398-2.75-1.975-2.813 2.02a.75.75 0 0 1-.76.067l-2.444-1.17L4.5 14.583v1.792c0 .069.056.125.125.125h11.75a.125.125 0 0 0 .125-.125v-2.477ZM4.625 3C3.728 3 3 3.728 3 4.625v11.75C3 17.273 3.728 18 4.625 18h11.75c.898 0 1.625-.727 1.625-1.625V4.625C18 3.728 17.273 3 16.375 3H4.625ZM20 8v11c0 .69-.31 1-.999 1H6v1.5h13.001c1.52 0 2.499-.982 2.499-2.5V8H20Z",fillRule:"evenodd",clipRule:"evenodd"})}),ude=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 3.3c-4.8 0-8.8 3.9-8.8 8.8 0 4.8 3.9 8.8 8.8 8.8 4.8 0 8.8-3.9 8.8-8.8s-4-8.8-8.8-8.8zm6.5 5.5h-2.6C15.4 7.3 14.8 6 14 5c2 .6 3.6 2 4.5 3.8zm.7 3.2c0 .6-.1 1.2-.2 1.8h-2.9c.1-.6.1-1.2.1-1.8s-.1-1.2-.1-1.8H19c.2.6.2 1.2.2 1.8zM12 18.7c-1-.7-1.8-1.9-2.3-3.5h4.6c-.5 1.6-1.3 2.9-2.3 3.5zm-2.6-4.9c-.1-.6-.1-1.1-.1-1.8 0-.6.1-1.2.1-1.8h5.2c.1.6.1 1.1.1 1.8s-.1 1.2-.1 1.8H9.4zM4.8 12c0-.6.1-1.2.2-1.8h2.9c-.1.6-.1 1.2-.1 1.8 0 .6.1 1.2.1 1.8H5c-.2-.6-.2-1.2-.2-1.8zM12 5.3c1 .7 1.8 1.9 2.3 3.5H9.7c.5-1.6 1.3-2.9 2.3-3.5zM10 5c-.8 1-1.4 2.3-1.8 3.8H5.5C6.4 7 8 5.6 10 5zM5.5 15.3h2.6c.4 1.5 1 2.8 1.8 3.7-1.8-.6-3.5-2-4.4-3.7zM14 19c.8-1 1.4-2.2 1.8-3.7h2.6C17.6 17 16 18.4 14 19z"})}),X3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m3 5c0-1.10457.89543-2 2-2h13.5c1.1046 0 2 .89543 2 2v13.5c0 1.1046-.8954 2-2 2h-13.5c-1.10457 0-2-.8954-2-2zm2-.5h6v6.5h-6.5v-6c0-.27614.22386-.5.5-.5zm-.5 8v6c0 .2761.22386.5.5.5h6v-6.5zm8 0v6.5h6c.2761 0 .5-.2239.5-.5v-6zm0-8v6.5h6.5v-6c0-.27614-.2239-.5-.5-.5z",fillRule:"evenodd",clipRule:"evenodd"})}),Zf=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 4h-7c-1.1 0-2 .9-2 2v3H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-3h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-4.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h3V13c0 1.1.9 2 2 2h2.5v3zm0-4.5H11c-.3 0-.5-.2-.5-.5v-2.5H13c.3 0 .5.2.5.5v2.5zm5-.5c0 .3-.2.5-.5.5h-3V11c0-1.1-.9-2-2-2h-2.5V6c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v7z"})}),GZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.6 7c-.6.9-1.5 1.7-2.6 2v1h2v7h2V7h-1.4zM11 11H7V7H5v10h2v-4h4v4h2V7h-2v4z"})}),KZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 11.1H5v-4H3v10h2v-4h4v4h2v-10H9v4zm8 4c.5-.4.6-.6 1.1-1.1.4-.4.8-.8 1.2-1.3.3-.4.6-.8.9-1.3.2-.4.3-.8.3-1.3 0-.4-.1-.9-.3-1.3-.2-.4-.4-.7-.8-1-.3-.3-.7-.5-1.2-.6-.5-.2-1-.2-1.5-.2-.4 0-.7 0-1.1.1-.3.1-.7.2-1 .3-.3.1-.6.3-.9.5-.3.2-.6.4-.8.7l1.2 1.2c.3-.3.6-.5 1-.7.4-.2.7-.3 1.2-.3s.9.1 1.3.4c.3.3.5.7.5 1.1 0 .4-.1.8-.4 1.1-.3.5-.6.9-1 1.2-.4.4-1 .9-1.6 1.4-.6.5-1.4 1.1-2.2 1.6v1.5h8v-2H17z"})}),YZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 11H5V7H3v10h2v-4h4v4h2V7H9v4zm11.3 1.7c-.4-.4-1-.7-1.6-.8v-.1c.6-.2 1.1-.5 1.5-.9.3-.4.5-.8.5-1.3 0-.4-.1-.8-.3-1.1-.2-.3-.5-.6-.8-.8-.4-.2-.8-.4-1.2-.5-.6-.1-1.1-.2-1.6-.2-.6 0-1.3.1-1.8.3s-1.1.5-1.6.9l1.2 1.4c.4-.2.7-.4 1.1-.6.3-.2.7-.3 1.1-.3.4 0 .8.1 1.1.3.3.2.4.5.4.8 0 .4-.2.7-.6.9-.7.3-1.5.5-2.2.4v1.6c.5 0 1 0 1.5.1.3.1.7.2 1 .3.2.1.4.2.5.4s.1.4.1.6c0 .3-.2.7-.5.8-.4.2-.9.3-1.4.3s-1-.1-1.4-.3c-.4-.2-.8-.4-1.2-.7L13 15.6c.5.4 1 .8 1.6 1 .7.3 1.5.4 2.3.4.6 0 1.1-.1 1.6-.2.4-.1.9-.2 1.3-.5.4-.2.7-.5.9-.9.2-.4.3-.8.3-1.2 0-.6-.3-1.1-.7-1.5z"})}),ZZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 13V7h-3l-4 6v2h5v2h2v-2h1v-2h-1zm-2 0h-2.8L18 9v4zm-9-2H5V7H3v10h2v-4h4v4h2V7H9v4z"})}),QZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 11H5V7H3v10h2v-4h4v4h2V7H9v4zm11.7 1.2c-.2-.3-.5-.7-.8-.9-.3-.3-.7-.5-1.1-.6-.5-.1-.9-.2-1.4-.2-.2 0-.5.1-.7.1-.2.1-.5.1-.7.2l.1-1.9h4.3V7H14l-.3 5 1 .6.5-.2.4-.1c.1-.1.3-.1.4-.1h.5c.5 0 1 .1 1.4.4.4.2.6.7.6 1.1 0 .4-.2.8-.6 1.1-.4.3-.9.4-1.4.4-.4 0-.9-.1-1.3-.3-.4-.2-.7-.4-1.1-.7 0 0-1.1 1.4-1 1.5.5.4 1 .8 1.6 1 .7.3 1.5.4 2.3.4.5 0 1-.1 1.5-.3s.9-.4 1.3-.7c.4-.3.7-.7.9-1.1s.3-.9.3-1.4-.1-1-.3-1.4z"})}),JZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20.7 12.4c-.2-.3-.4-.6-.7-.9s-.6-.5-1-.6c-.4-.2-.8-.2-1.2-.2-.5 0-.9.1-1.3.3s-.8.5-1.2.8c0-.5 0-.9.2-1.4l.6-.9c.2-.2.5-.4.8-.5.6-.2 1.3-.2 1.9 0 .3.1.6.3.8.5 0 0 1.3-1.3 1.3-1.4-.4-.3-.9-.6-1.4-.8-.6-.2-1.3-.3-2-.3-.6 0-1.1.1-1.7.4-.5.2-1 .5-1.4.9-.4.4-.8 1-1 1.6-.3.7-.4 1.5-.4 2.3s.1 1.5.3 2.1c.2.6.6 1.1 1 1.5.4.4.9.7 1.4.9 1 .3 2 .3 3 0 .4-.1.8-.3 1.2-.6.3-.3.6-.6.8-1 .2-.5.3-.9.3-1.4s-.1-.9-.3-1.3zm-2 2.1c-.1.2-.3.4-.4.5-.1.1-.3.2-.5.2-.2.1-.4.1-.6.1-.2.1-.5 0-.7-.1-.2 0-.3-.2-.5-.3-.1-.2-.3-.4-.4-.6-.2-.3-.3-.7-.3-1 .3-.3.6-.5 1-.7.3-.1.7-.2 1-.2.4 0 .8.1 1.1.3.3.3.4.7.4 1.1 0 .2 0 .5-.1.7zM9 11H5V7H3v10h2v-4h4v4h2V7H9v4z"})}),eQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6 5V18.5911L12 13.8473L18 18.5911V5H6Z"})}),tQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})}),dde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4L4 7.9V20h16V7.9L12 4zm6.5 14.5H14V13h-4v5.5H5.5V8.8L12 5.7l6.5 3.1v9.7z"})}),nQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4.8 11.4H2.1V9H1v6h1.1v-2.6h2.7V15h1.1V9H4.8v2.4zm1.9-1.3h1.7V15h1.1v-4.9h1.7V9H6.7v1.1zM16.2 9l-1.5 2.7L13.3 9h-.9l-.8 6h1.1l.5-4 1.5 2.8 1.5-2.8.5 4h1.1L17 9h-.8zm3.8 5V9h-1.1v6h3.6v-1H20z"})}),Oz=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.5h14c.3 0 .5.2.5.5v8.4l-3-2.9c-.3-.3-.8-.3-1 0L11.9 14 9 12c-.3-.2-.6-.2-.8 0l-3.6 2.6V5c-.1-.3.1-.5.4-.5zm14 15H5c-.3 0-.5-.2-.5-.5v-2.4l4.1-3 3 1.9c.3.2.7.2.9-.1L16 12l3.5 3.4V19c0 .3-.2.5-.5.5z"})}),pde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 12a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0ZM12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm.75 4v1.5h-1.5V8h1.5Zm0 8v-5h-1.5v5h1.5Z"})}),oQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15 4H9v11h6V4zM4 18.5V20h16v-1.5H4z"})}),Bw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 9v6h11V9H9zM4 20h1.5V4H4v16z"})}),Lw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.5 15v5H11v-5H4V9h7V4h1.5v5h7v6h-7Z"})}),rQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 11h-5V4H9v7H4v1.5h5V20h6v-7.5h5z"})}),Pw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 15h11V9H4v6zM18.5 4v16H20V4h-1.5z"})}),PP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 15h6V9H9v6zm-5 5h1.5V4H4v16zM18.5 4v16H20V4h-1.5z"})}),sQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 4H17V8L7 8V4ZM7 16L17 16V20L7 20V16ZM20 11.25H4V12.75H20V11.25Z"})}),jP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 4H5.5V20H4V4ZM7 10L17 10V14L7 14V10ZM20 4H18.5V20H20V4Z"})}),iQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 4L20 4L20 5.5L4 5.5L4 4ZM10 7L14 7L14 17L10 17L10 7ZM20 18.5L4 18.5L4 20L20 20L20 18.5Z"})}),aQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 20h6V9H9v11zM4 4v1.5h16V4H4z"})}),cQe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m16 15.5h-8v-1.5h8zm-7.5-2.5h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2zm-9-3h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2z"}),a.jsx(he,{d:"m18.5 6.5h-13a.5.5 0 0 0 -.5.5v9.5a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9.5a.5.5 0 0 0 -.5-.5zm-13-1.5h13a2 2 0 0 1 2 2v9.5a2 2 0 0 1 -2 2h-13a2 2 0 0 1 -2-2v-9.5a2 2 0 0 1 2-2z"})]}),jw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m6.734 16.106 2.176-2.38-1.093-1.028-3.846 4.158 3.846 4.158 1.093-1.028-2.176-2.38h2.811c1.125 0 2.25.03 3.374 0 1.428-.001 3.362-.25 4.963-1.277 1.66-1.065 2.868-2.906 2.868-5.859 0-2.479-1.327-4.896-3.65-5.93-1.82-.813-3.044-.8-4.806-.788l-.567.002v1.5c.184 0 .368 0 .553-.002 1.82-.007 2.704-.014 4.21.657 1.854.827 2.76 2.657 2.76 4.561 0 2.472-.973 3.824-2.178 4.596-1.258.807-2.864 1.04-4.163 1.04h-.02c-1.115.03-2.229 0-3.344 0H6.734Z"})}),lQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.5 10h-1.7l-3.7 10.5h1.7l.9-2.6h3.9l.9 2.6h1.7L17.5 10zm-2.2 6.3 1.4-4 1.4 4h-2.8zm-4.8-3.8c1.6-1.8 2.9-3.6 3.7-5.7H16V5.2h-5.8V3H8.8v2.2H3v1.5h9.6c-.7 1.6-1.8 3.1-3.1 4.6C8.6 10.2 7.8 9 7.2 8H5.6c.6 1.4 1.7 2.9 2.9 4.4l-2.4 2.4c-.3.4-.7.8-1.1 1.2l1 1 1.2-1.2c.8-.8 1.6-1.5 2.3-2.3.8.9 1.7 1.7 2.5 2.5l.6-1.5c-.7-.6-1.4-1.3-2.1-2z"})}),ou=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),uQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M5 11.25h3v1.5H5v-1.5zm5.5 0h3v1.5h-3v-1.5zm8.5 0h-3v1.5h3v-1.5z",clipRule:"evenodd"})}),dQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M5.25 11.25h1.5v1.5h-1.5v-1.5zm3 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5zm1.5 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5z",clipRule:"evenodd"})}),fde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 11.25h14v1.5H5z"})}),xa=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10 17.389H8.444A5.194 5.194 0 1 1 8.444 7H10v1.5H8.444a3.694 3.694 0 0 0 0 7.389H10v1.5ZM14 7h1.556a5.194 5.194 0 0 1 0 10.39H14v-1.5h1.556a3.694 3.694 0 0 0 0-7.39H14V7Zm-4.5 6h5v-1.5h-5V13Z"})}),jl=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.031 4.703 15.576 4l-1.56 3H14v.03l-2.324 4.47H9.5V13h1.396l-1.502 2.889h-.95a3.694 3.694 0 0 1 0-7.389H10V7H8.444a5.194 5.194 0 1 0 0 10.389h.17L7.5 19.53l1.416.719L15.049 8.5h.507a3.694 3.694 0 0 1 0 7.39H14v1.5h1.556a5.194 5.194 0 0 0 .273-10.383l1.202-2.304Z"})}),Iw=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4 4v1.5h16V4H4zm8 8.5h8V11h-8v1.5zM4 20h16v-1.5H4V20zm4-8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z"})}),pQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 11v1.5h8V11h-8zm-6-1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"})}),IP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M3 6h11v1.5H3V6Zm3.5 5.5h11V13h-11v-1.5ZM21 17H10v1.5h11V17Z"})}),e4=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1zm-2.8 0H9.8V7c0-1.2 1-2.2 2.2-2.2s2.2 1 2.2 2.2v3z"})}),fQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1zM9.8 7c0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2v3H9.8V7zm6.7 11.5h-9v-7h9v7z"})}),bde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 11h-.2V9c0-1.5-1.2-2.8-2.8-2.8S9.2 7.5 9.2 9v2H9c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h6c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1zm-1.8 0h-2.5V9c0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2v2z"})}),bQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11 14.5l1.1 1.1 3-3 .5-.5-.6-.6-3-3-1 1 1.7 1.7H5v1.5h7.7L11 14.5zM16.8 5h-7c-1.1 0-2 .9-2 2v1.5h1.5V7c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v10c0 .3-.2.5-.5.5h-7c-.3 0-.5-.2-.5-.5v-1.5H7.8V17c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2z"})}),hde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18.1823 11.6392C18.1823 13.0804 17.0139 14.2487 15.5727 14.2487C14.3579 14.2487 13.335 13.4179 13.0453 12.2922L13.0377 12.2625L13.0278 12.2335L12.3985 10.377L12.3942 10.3785C11.8571 8.64997 10.246 7.39405 8.33961 7.39405C5.99509 7.39405 4.09448 9.29465 4.09448 11.6392C4.09448 13.9837 5.99509 15.8843 8.33961 15.8843C8.88499 15.8843 9.40822 15.781 9.88943 15.5923L9.29212 14.0697C8.99812 14.185 8.67729 14.2487 8.33961 14.2487C6.89838 14.2487 5.73003 13.0804 5.73003 11.6392C5.73003 10.1979 6.89838 9.02959 8.33961 9.02959C9.55444 9.02959 10.5773 9.86046 10.867 10.9862L10.8772 10.9836L11.4695 12.7311C11.9515 14.546 13.6048 15.8843 15.5727 15.8843C17.9172 15.8843 19.8178 13.9837 19.8178 11.6392C19.8178 9.29465 17.9172 7.39404 15.5727 7.39404C15.0287 7.39404 14.5066 7.4968 14.0264 7.6847L14.6223 9.20781C14.9158 9.093 15.2358 9.02959 15.5727 9.02959C17.0139 9.02959 18.1823 10.1979 18.1823 11.6392Z"})}),hQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 9c-.8 0-1.5.7-1.5 1.5S11.2 12 12 12s1.5-.7 1.5-1.5S12.8 9 12 9zm0-5c-3.6 0-6.5 2.8-6.5 6.2 0 .8.3 1.8.9 3.1.5 1.1 1.2 2.3 2 3.6.7 1 3 3.8 3.2 3.9l.4.5.4-.5c.2-.2 2.6-2.9 3.2-3.9.8-1.2 1.5-2.5 2-3.6.6-1.3.9-2.3.9-3.1C18.5 6.8 15.6 4 12 4zm4.3 8.7c-.5 1-1.1 2.2-1.9 3.4-.5.7-1.7 2.2-2.4 3-.7-.8-1.9-2.3-2.4-3-.8-1.2-1.4-2.3-1.9-3.3-.6-1.4-.7-2.2-.7-2.5 0-2.6 2.2-4.7 5-4.7s5 2.1 5 4.7c0 .2-.1 1-.7 2.4z"})}),DP=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7 6.5 4 2.5-4 2.5z"}),a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"m5 3c-1.10457 0-2 .89543-2 2v14c0 1.1046.89543 2 2 2h14c1.1046 0 2-.8954 2-2v-14c0-1.10457-.8954-2-2-2zm14 1.5h-14c-.27614 0-.5.22386-.5.5v10.7072l3.62953-2.6465c.25108-.1831.58905-.1924.84981-.0234l2.92666 1.8969 3.5712-3.4719c.2911-.2831.7545-.2831 1.0456 0l2.9772 2.8945v-9.3568c0-.27614-.2239-.5-.5-.5zm-14.5 14.5v-1.4364l4.09643-2.987 2.99567 1.9417c.2936.1903.6798.1523.9307-.0917l3.4772-3.3806 3.4772 3.3806.0228-.0234v2.5968c0 .2761-.2239.5-.5.5h-14c-.27614 0-.5-.2239-.5-.5z"})]}),mQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M3 6v11.5h8V6H3Zm11 3h7V7.5h-7V9Zm7 3.5h-7V11h7v1.5ZM14 16h7v-1.5h-7V16Z"})}),mde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 5v1.5h14V5H5zm0 7.8h14v-1.5H5v1.5zM5 19h14v-1.5H5V19z"})}),YK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15 4H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H9c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h6c.3 0 .5.2.5.5v12zm-4.5-.5h2V16h-2v1.5z"})}),gQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4 9v1.5h16V9H4zm12 5.5h4V13h-4v1.5zm-6 0h4V13h-4v1.5zm-6 0h4V13H4v1.5z"})}),Wc=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 19h-2v-2h2v2zm0-6h-2v-2h2v2zm0-6h-2V5h2v2z"})}),G3=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M12 4c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14.5c-3.6 0-6.5-2.9-6.5-6.5S8.4 5.5 12 5.5s6.5 2.9 6.5 6.5-2.9 6.5-6.5 6.5zM9 16l4.5-3L15 8.4l-4.5 3L9 16z"})}),gde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5A6.5 6.5 0 0 1 6.93 7.931l9.139 9.138A6.473 6.473 0 0 1 12 18.5Zm5.123-2.498a6.5 6.5 0 0 0-9.124-9.124l9.124 9.124ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z"})}),MQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12-9.8c.4 0 .8-.3.9-.7l1.1-3h3.6l.5 1.7h1.9L13 9h-2.2l-3.4 9.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12H20V6c0-1.1-.9-2-2-2zm-6 7l1.4 3.9h-2.7L12 11z"})}),zQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.5 9V6a2 2 0 0 0-2-2h-7a2 2 0 0 0-2 2v3H8V6a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v3h1.5Zm0 6.5V18a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2v-2.5H8V18a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-2.5h1.5ZM4 13h16v-1.5H4V13Z"})}),Mde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.5 14.5h-1V16h1c2.2 0 4-1.8 4-4s-1.8-4-4-4h-1v1.5h1c1.4 0 2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5zm-4 1.5v-1.5h-1C6.1 14.5 5 13.4 5 12s1.1-2.5 2.5-2.5h1V8h-1c-2.2 0-4 1.8-4 4s1.8 4 4 4h1zm-1-3.2h5v-1.5h-5v1.5zM18 4H9c-1.1 0-2 .9-2 2v.5h1.5V6c0-.3.2-.5.5-.5h9c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H9c-.3 0-.5-.2-.5-.5v-.5H7v.5c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2z"})}),wa=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M15.5 7.5h-7V9h7V7.5Zm-7 3.5h7v1.5h-7V11Zm7 3.5h-7V16h7v-1.5Z"}),a.jsx(he,{d:"M17 4H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM7 5.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5Z"})]}),OQe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M14.5 5.5h-7V7h7V5.5ZM7.5 9h7v1.5h-7V9Zm7 3.5h-7V14h7v-1.5Z"}),a.jsx(he,{d:"M16 2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM6 3.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 .5-.5Z"}),a.jsx(he,{d:"M20 8v11c0 .69-.31 1-.999 1H6v1.5h13.001c1.52 0 2.499-.982 2.499-2.5V8H20Z"})]}),zde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m9.99609 14v-.2251l.00391.0001v6.225h1.5v-14.5h2.5v14.5h1.5v-14.5h3v-1.5h-8.50391c-2.76142 0-5 2.23858-5 5 0 2.7614 2.23858 5 5 5z"})}),Ode=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8 4a4 4 0 0 1-4-4h4V8a4 4 0 0 1 0 8Z"})}),yde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 5.5H5V4h14v1.5ZM19 20H5v-1.5h14V20ZM7 9h10v6H7V9Z"})}),Ade=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 5.5h8V4H5v1.5ZM5 20h8v-1.5H5V20ZM19 9H5v6h14V9Z"})}),vde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 5.5h-8V4h8v1.5ZM19 20h-8v-1.5h8V20ZM5 9h14v6H5V9Z"})}),xde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m21.5 9.1-6.6-6.6-4.2 5.6c-1.2-.1-2.4.1-3.6.7-.1 0-.1.1-.2.1-.5.3-.9.6-1.2.9l3.7 3.7-5.7 5.7v1.1h1.1l5.7-5.7 3.7 3.7c.4-.4.7-.8.9-1.2.1-.1.1-.2.2-.3.6-1.1.8-2.4.6-3.6l5.6-4.1zm-7.3 3.5.1.9c.1.9 0 1.8-.4 2.6l-6-6c.8-.4 1.7-.5 2.6-.4l.9.1L15 4.9 19.1 9l-4.9 3.6z"})}),yQe=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M10.97 10.159a3.382 3.382 0 0 0-2.857.955l1.724 1.723-2.836 2.913L7 17h1.25l2.913-2.837 1.723 1.723a3.38 3.38 0 0 0 .606-.825c.33-.63.446-1.343.35-2.032L17 10.695 13.305 7l-2.334 3.159Z"})}),AQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10.5 4v4h3V4H15v4h1.5a1 1 0 011 1v4l-3 4v2a1 1 0 01-1 1h-3a1 1 0 01-1-1v-2l-3-4V9a1 1 0 011-1H9V4h1.5zm.5 12.5v2h2v-2l3-4v-3H8v3l3 4z"})}),Fs=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})}),wde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m7.3 9.7 1.4 1.4c.2-.2.3-.3.4-.5 0 0 0-.1.1-.1.3-.5.4-1.1.3-1.6L12 7 9 4 7.2 6.5c-.6-.1-1.1 0-1.6.3 0 0-.1 0-.1.1-.3.1-.4.2-.6.4l1.4 1.4L4 11v1h1l2.3-2.3zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z"})}),FP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M10 4.5a1 1 0 11-2 0 1 1 0 012 0zm1.5 0a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm2.25 7.5v-1A2.75 2.75 0 0011 8.25H7A2.75 2.75 0 004.25 11v1h1.5v-1c0-.69.56-1.25 1.25-1.25h4c.69 0 1.25.56 1.25 1.25v1h1.5zM4 20h9v-1.5H4V20zm16-4H4v-1.5h16V16z",fillRule:"evenodd",clipRule:"evenodd"})}),$P=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M20 4H4v1.5h16V4zm-2 9h-3c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm.5 5c0 .3-.2.5-.5.5h-3c-.3 0-.5-.2-.5-.5v-3c0-.3.2-.5.5-.5h3c.3 0 .5.2.5.5v3zM4 9.5h9V8H4v1.5zM9 13H6c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm.5 5c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-3c0-.3.2-.5.5-.5h3c.3 0 .5.2.5.5v3z",fillRule:"evenodd",clipRule:"evenodd"})}),vQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 6h12V4.5H4V6Zm16 4.5H4V9h16v1.5ZM4 15h16v-1.5H4V15Zm0 4.5h16V18H4v1.5Z"})}),xQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14 10.1V4c0-.6-.4-1-1-1H5c-.6 0-1 .4-1 1v8.3c0 .3.2.7.6.8.1.1.2.1.3.1.2 0 .5-.1.6-.3l1.8-1.8H13c.6 0 1-.4 1-1zm-1.5-.5H6.7l-1.2 1.2V4.5h7v5.1zM19 12h-8c-.6 0-1 .4-1 1v6.1c0 .6.4 1 1 1h5.7l1.8 1.8c.1.2.4.3.6.3.1 0 .2 0 .3-.1.4-.1.6-.5.6-.8V13c0-.6-.4-1-1-1zm-.5 7.8l-1.2-1.2h-5.8v-5.1h7v6.3z"})}),_de=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 8H4v1.5h9V8zM4 4v1.5h16V4H4zm9 8H5c-.6 0-1 .4-1 1v8.3c0 .3.2.7.6.8.1.1.2.1.3.1.2 0 .5-.1.6-.3l1.8-1.8H13c.6 0 1-.4 1-1V13c0-.6-.4-1-1-1zm-2.2 6.6H7l1.6-2.2c.3-.4.5-.7.6-.9.1-.2.2-.4.2-.5 0-.2-.1-.3-.1-.4-.1-.1-.2-.1-.4-.1s-.4 0-.6.1c-.3.1-.5.3-.7.4l-.2.2-.2-1.2.1-.1c.3-.2.5-.3.8-.4.3-.1.6-.1.9-.1.3 0 .6.1.9.2.2.1.4.3.6.5.1.2.2.5.2.7 0 .3-.1.6-.2.9-.1.3-.4.7-.7 1.1l-.5.6h1.6v1.2z"})}),wQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 8H4v1.5h9V8zM4 4v1.5h16V4H4zm9 8H5c-.6 0-1 .4-1 1v8.3c0 .3.2.7.6.8.1.1.2.1.3.1.2 0 .5-.1.6-.3l1.8-1.8H13c.6 0 1-.4 1-1V13c0-.6-.4-1-1-1zm-.5 6.6H6.7l-1.2 1.2v-6.3h7v5.1z"})}),VP=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M11.696 13.972c.356-.546.599-.958.728-1.235a1.79 1.79 0 00.203-.783c0-.264-.077-.47-.23-.618-.148-.153-.354-.23-.618-.23-.295 0-.569.07-.82.212a3.413 3.413 0 00-.738.571l-.147-1.188c.289-.234.59-.41.903-.526.313-.117.66-.175 1.041-.175.375 0 .695.08.959.24.264.153.46.362.59.626.135.265.203.556.203.876 0 .362-.08.734-.24 1.115-.154.381-.427.87-.82 1.466l-.756 1.152H14v1.106h-4l1.696-2.609z"}),a.jsx(he,{d:"M19.5 7h-15v12a.5.5 0 00.5.5h14a.5.5 0 00.5-.5V7zM3 7V5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V7z"})]}),_Qe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M8.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H4v-3h4.001ZM4 20h9v-1.5H4V20Zm16-4H4v-1.5h16V16ZM13.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H9v-3h4.001Z"})}),kde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 3H5c-.6 0-1 .4-1 1v7c0 .5.4 1 1 1h14c.5 0 1-.4 1-1V4c0-.6-.4-1-1-1zM5.5 10.5v-.4l1.8-1.3 1.3.8c.3.2.7.2.9-.1L11 8.1l2.4 2.4H5.5zm13 0h-2.9l-4-4c-.3-.3-.8-.3-1.1 0L8.9 8l-1.2-.8c-.3-.2-.6-.2-.9 0l-1.3 1V4.5h13v6zM4 20h9v-1.5H4V20zm0-4h16v-1.5H4V16z"})}),HP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 5.5H6a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5ZM6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm1 5h1.5v1.5H7V9Zm1.5 4.5H7V15h1.5v-1.5ZM10 9h7v1.5h-7V9Zm7 4.5h-7V15h7v-1.5Z"})}),kQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M8.1 12.3c.1.1.3.3.5.3.2.1.4.1.6.1.2 0 .4 0 .6-.1.2-.1.4-.2.5-.3l3-3c.3-.3.5-.7.5-1.1 0-.4-.2-.8-.5-1.1L9.7 3.5c-.1-.2-.3-.3-.5-.3H5c-.4 0-.8.4-.8.8v4.2c0 .2.1.4.2.5l3.7 3.6zM5.8 4.8h3.1l3.4 3.4v.1l-3 3 .5.5-.7-.5-3.3-3.4V4.8zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z"})}),Sde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.6 7l-1.1-1L5 12l5.5 6 1.1-1L7 12l4.6-5zm6 0l-1.1-1-5.5 6 5.5 6 1.1-1-4.6-5 4.6-5z"})}),Cde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})}),SQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12zM7 16.5h6V15H7v1.5zm4-4h6V11h-6v1.5zM9 11H7v1.5h2V11zm6 5.5h2V15h-2v1.5z"})}),Dw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm11.53-1.47-1.06-1.06L11 12.94l-1.47-1.47-1.06 1.06L11 15.06l4.53-4.53Z"})}),CQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 18h6V6H4v12zm9-9.5V10h7V8.5h-7zm0 7h7V14h-7v1.5z"})}),qQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14 6v12h6V6h-6zM4 10h7V8.5H4V10zm0 5.5h7V14H4v1.5z"})}),RQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 8H6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm.5 6c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-4c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v4zM4 4v1.5h16V4H4zm0 16h16v-1.5H4V20z"})}),qde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 13.5h6v-3H4v3zm8 0h3v-3h-3v3zm5-3v3h3v-3h-3z"})}),Rde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 13.5h3v-3H5v3zm5 0h3v-3h-3v3zM17 9l-1 1 2 2-2 2 1 1 3-3-3-3z"})}),Tde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 13.5h6v-3H4v3zm8.2-2.5.8-.3V14h1V9.3l-2.2.7.4 1zm7.1-1.2c-.5-.6-1.2-.5-1.7-.4-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5h2.7v-1h-.9c.3-.6.8-1.4.9-2.1 0-.3-.1-.8-.3-1.1z"})}),Ede=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16 10.5v3h3v-3h-3zm-5 3h3v-3h-3v3zM7 9l-3 3 3 3 1-1-2-2 2-2-1-1z"})}),TQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M13 6v6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H13zm-9 6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H4v6z"})}),Wde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15.6 6.5l-1.1 1 2.9 3.3H8c-.9 0-1.7.3-2.3.9-1.4 1.5-1.4 4.2-1.4 5.6v.2h1.5v-.3c0-1.1 0-3.5 1-4.5.3-.3.7-.5 1.3-.5h9.2L14.5 15l1.1 1.1 4.6-4.6-4.6-5z"})}),EQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"m13.955 20.748 8-17.5-.91-.416L19.597 6H13.5v1.5h5.411l-1.6 3.5H13.5v1.5h3.126l-1.6 3.5H13.5l.028 1.5h.812l-1.295 2.832.91.416ZM17.675 16l-.686 1.5h4.539L21.5 16h-3.825Zm2.286-5-.686 1.5H21.5V11h-1.54ZM2 12c0 3.58 2.42 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.48 0-4.5-1.52-4.5-4S5.52 7.5 8 7.5h3.5V6H8c-3.58 0-6 2.42-6 6Z"})}),am=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 11.5h10V13H7z"})}),WQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M7 18h4.5v1.5h-7v-7H6V17L17 6h-4.5V4.5h7v7H18V7L7 18Z"})}),Nde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 6.5h5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H4V16h5a.5.5 0 0 0 .5-.5v-7A.5.5 0 0 0 9 8H4V6.5Zm16 0h-5a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h5V16h-5a.5.5 0 0 1-.5-.5v-7A.5.5 0 0 1 15 8h5V6.5Z"})}),Bd=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M21.3 10.8l-5.6-5.6c-.7-.7-1.8-.7-2.5 0l-5.6 5.6c-.7.7-.7 1.8 0 2.5l5.6 5.6c.3.3.8.5 1.2.5s.9-.2 1.2-.5l5.6-5.6c.8-.7.8-1.9.1-2.5zm-1 1.4l-5.6 5.6c-.1.1-.3.1-.4 0l-5.6-5.6c-.1-.1-.1-.3 0-.4l5.6-5.6s.1-.1.2-.1.1 0 .2.1l5.6 5.6c.1.1.1.3 0 .4zm-16.6-.4L10 5.5l-1-1-6.3 6.3c-.7.7-.7 1.8 0 2.5L9 19.5l1.1-1.1-6.3-6.3c-.2 0-.2-.2-.1-.3z"})}),NQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4V2.2L9 4.8l3 2.5V5.5c3.6 0 6.5 2.9 6.5 6.5 0 2.9-1.9 5.3-4.5 6.2v.2l-.1-.2c-.4.1-.7.2-1.1.2l.2 1.5c.3 0 .6-.1 1-.2 3.5-.9 6-4 6-7.7 0-4.4-3.6-8-8-8zm-7.9 7l1.5.2c.1-1.2.5-2.3 1.2-3.2l-1.1-.9C4.8 8.2 4.3 9.6 4.1 11zm1.5 1.8l-1.5.2c.1.7.3 1.4.5 2 .3.7.6 1.3 1 1.8l1.2-.8c-.3-.5-.6-1-.8-1.5s-.4-1.1-.4-1.7zm1.5 5.5c1.1.9 2.4 1.4 3.8 1.6l.2-1.5c-1.1-.1-2.2-.5-3.1-1.2l-.9 1.1z"})}),Bde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15.1 4.8l-3-2.5V4c-4.4 0-8 3.6-8 8 0 3.7 2.5 6.9 6 7.7.3.1.6.1 1 .2l.2-1.5c-.4 0-.7-.1-1.1-.2l-.1.2v-.2c-2.6-.8-4.5-3.3-4.5-6.2 0-3.6 2.9-6.5 6.5-6.5v1.8l3-2.5zM20 11c-.2-1.4-.7-2.7-1.6-3.8l-1.2.8c.7.9 1.1 2 1.3 3.1L20 11zm-1.5 1.8c-.1.5-.2 1.1-.4 1.6s-.5 1-.8 1.5l1.2.9c.4-.5.8-1.1 1-1.8s.5-1.3.5-2l-1.5-.2zm-5.6 5.6l.2 1.5c1.4-.2 2.7-.7 3.8-1.6l-.9-1.1c-.9.7-2 1.1-3.1 1.2z"})}),Lde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 10.2h-.8v1.5H5c1.9 0 3.8.8 5.1 2.1 1.4 1.4 2.1 3.2 2.1 5.1v.8h1.5V19c0-2.3-.9-4.5-2.6-6.2-1.6-1.6-3.8-2.6-6.1-2.6zm10.4-1.6C12.6 5.8 8.9 4.2 5 4.2h-.8v1.5H5c3.5 0 6.9 1.4 9.4 3.9s3.9 5.8 3.9 9.4v.8h1.5V19c0-3.9-1.6-7.6-4.4-10.4zM4 20h3v-3H4v3z"})}),Fw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z"})}),Pde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm9 1V8h-1.5v3.5h-2V13H13Z"})}),BQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4.5 12.5v4H3V7h1.5v3.987h15V7H21v9.5h-1.5v-4h-15Z"})}),UP=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m19 7.5h-7.628c-.3089-.87389-1.1423-1.5-2.122-1.5-.97966 0-1.81309.62611-2.12197 1.5h-2.12803v1.5h2.12803c.30888.87389 1.14231 1.5 2.12197 1.5.9797 0 1.8131-.62611 2.122-1.5h7.628z"}),a.jsx(he,{d:"m19 15h-2.128c-.3089-.8739-1.1423-1.5-2.122-1.5s-1.8131.6261-2.122 1.5h-7.628v1.5h7.628c.3089.8739 1.1423 1.5 2.122 1.5s1.8131-.6261 2.122-1.5h2.128z"})]}),LQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12.8 3h-1.5v3h1.5V3zm-1.6 18h1.5v-3h-1.5v3zm6.8-9.8v1.5h3v-1.5h-3zm-12 0H3v1.5h3v-1.5zm9.7 5.6 2.1 2.1 1.1-1.1-2.1-2.1-1.1 1.1zM8.3 7.2 6.2 5.1 5.1 6.2l2.1 2.1 1.1-1.1zM5.1 17.8l1.1 1.1 2.1-2.1-1.1-1.1-2.1 2.1zM18.9 6.2l-1.1-1.1-2.1 2.1 1.1 1.1 2.1-2.1z"})}),jde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M9 11.8l6.1-4.5c.1.4.4.7.9.7h2c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1h-2c-.6 0-1 .4-1 1v.4l-6.4 4.8c-.2-.1-.4-.2-.6-.2H6c-.6 0-1 .4-1 1v2c0 .6.4 1 1 1h2c.2 0 .4-.1.6-.2l6.4 4.8v.4c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-2c0-.6-.4-1-1-1h-2c-.5 0-.8.3-.9.7L9 12.2v-.4z"})}),Ide=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M16 4.2v1.5h2.5v12.5H16v1.5h4V4.2h-4zM4.2 19.8h4v-1.5H5.8V5.8h2.5V4.2h-4l-.1 15.6zm5.1-3.1l1.4.6 4-10-1.4-.6-4 10z"})}),PQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 1.5c4.1 0 7.5 3.4 7.5 7.5v.1c-1.4-.8-3.3-1.7-3.4-1.8-.2-.1-.5-.1-.8.1l-2.9 2.1L9 11.3c-.2-.1-.4 0-.6.1l-3.7 2.2c-.1-.5-.2-1-.2-1.5 0-4.2 3.4-7.6 7.5-7.6zm0 15c-3.1 0-5.7-1.9-6.9-4.5l3.7-2.2 3.5 1.2c.2.1.5 0 .7-.1l2.9-2.1c.8.4 2.5 1.2 3.5 1.9-.9 3.3-3.9 5.8-7.4 5.8z"})}),Dde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.5 4v5a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V4H8v5a.5.5 0 0 0 .5.5h7A.5.5 0 0 0 16 9V4h1.5Zm0 16v-5a2 2 0 0 0-2-2h-7a2 2 0 0 0-2 2v5H8v-5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v5h1.5Z"})}),jQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M9.706 8.646a.25.25 0 01-.188.137l-4.626.672a.25.25 0 00-.139.427l3.348 3.262a.25.25 0 01.072.222l-.79 4.607a.25.25 0 00.362.264l4.138-2.176a.25.25 0 01.233 0l4.137 2.175a.25.25 0 00.363-.263l-.79-4.607a.25.25 0 01.072-.222l3.347-3.262a.25.25 0 00-.139-.427l-4.626-.672a.25.25 0 01-.188-.137l-2.069-4.192a.25.25 0 00-.448 0L9.706 8.646zM12 7.39l-.948 1.921a1.75 1.75 0 01-1.317.957l-2.12.308 1.534 1.495c.412.402.6.982.503 1.55l-.362 2.11 1.896-.997a1.75 1.75 0 011.629 0l1.895.997-.362-2.11a1.75 1.75 0 01.504-1.55l1.533-1.495-2.12-.308a1.75 1.75 0 01-1.317-.957L12 7.39z",clipRule:"evenodd"})}),IQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.776 4.454a.25.25 0 01.448 0l2.069 4.192a.25.25 0 00.188.137l4.626.672a.25.25 0 01.139.426l-3.348 3.263a.25.25 0 00-.072.222l.79 4.607a.25.25 0 01-.362.263l-4.138-2.175a.25.25 0 00-.232 0l-4.138 2.175a.25.25 0 01-.363-.263l.79-4.607a.25.25 0 00-.071-.222L4.754 9.881a.25.25 0 01.139-.426l4.626-.672a.25.25 0 00.188-.137l2.069-4.192z"})}),DQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 4h14v11H5V4Zm11 16H8v-1.5h8V20Z"})}),Fde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1.5 0a6.5 6.5 0 0 1-6.5 6.5v-13a6.5 6.5 0 0 1 6.5 6.5Z"})}),FQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fill:"none",d:"M5.75 12.75V18.25H11.25M12.75 5.75H18.25V11.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})}),XP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16 5.5H8V4h8v1.5ZM16 20H8v-1.5h8V20ZM5 9h14v6H5V9Z"})}),$Qe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16.9 18.3l.8-1.2c.4-.6.7-1.2.9-1.6.2-.4.3-.8.3-1.2 0-.3-.1-.7-.2-1-.1-.3-.4-.5-.6-.7-.3-.2-.6-.3-1-.3s-.8.1-1.1.2c-.3.1-.7.3-1 .6l.2 1.3c.3-.3.5-.5.8-.6s.6-.2.9-.2c.3 0 .5.1.7.2.2.2.2.4.2.7 0 .3-.1.5-.2.8-.1.3-.4.7-.8 1.3L15 19.4h4.3v-1.2h-2.4zM14.1 7.2h-2L9.5 11 6.9 7.2h-2l3.6 5.3L4.7 18h2l2.7-4 2.7 4h2l-3.8-5.5 3.8-5.3z"})}),VQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16.9 10.3l.8-1.3c.4-.6.7-1.2.9-1.6.2-.4.3-.8.3-1.2 0-.3-.1-.7-.2-1-.2-.2-.4-.4-.7-.6-.3-.2-.6-.3-1-.3s-.8.1-1.1.2c-.3.1-.7.3-1 .6l.1 1.3c.3-.3.5-.5.8-.6s.6-.2.9-.2c.3 0 .5.1.7.2.2.2.2.4.2.7 0 .3-.1.5-.2.8-.1.3-.4.7-.8 1.3l-1.8 2.8h4.3v-1.2h-2.2zm-2.8-3.1h-2L9.5 11 6.9 7.2h-2l3.6 5.3L4.7 18h2l2.7-4 2.7 4h2l-3.8-5.5 3.8-5.3z"})}),$de=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 17.7c.4.5.8.9 1.2 1.2l1.1-1.4c-.4-.3-.7-.6-1-1L5 17.7zM5 6.3l1.4 1.1c.3-.4.6-.7 1-1L6.3 5c-.5.4-.9.8-1.3 1.3zm.1 7.8l-1.7.5c.2.6.4 1.1.7 1.6l1.5-.8c-.2-.4-.4-.8-.5-1.3zM4.8 12v-.7L3 11.1v1.8l1.7-.2c.1-.2.1-.5.1-.7zm3 7.9c.5.3 1.1.5 1.6.7l.5-1.7c-.5-.1-.9-.3-1.3-.5l-.8 1.5zM19 6.3c-.4-.5-.8-.9-1.2-1.2l-1.1 1.4c.4.3.7.6 1 1L19 6.3zm-.1 3.6l1.7-.5c-.2-.6-.4-1.1-.7-1.6l-1.5.8c.2.4.4.8.5 1.3zM5.6 8.6l-1.5-.8c-.3.5-.5 1-.7 1.6l1.7.5c.1-.5.3-.9.5-1.3zm2.2-4.5l.8 1.5c.4-.2.8-.4 1.3-.5l-.5-1.7c-.6.2-1.1.4-1.6.7zm8.8 13.5l1.1 1.4c.5-.4.9-.8 1.2-1.2l-1.4-1.1c-.2.3-.5.6-.9.9zm1.8-2.2l1.5.8c.3-.5.5-1.1.7-1.6l-1.7-.5c-.1.5-.3.9-.5 1.3zm2.6-4.3l-1.7.2v1.4l1.7.2V12v-.9zM11.1 3l.2 1.7h1.4l.2-1.7h-1.8zm3 2.1c.5.1.9.3 1.3.5l.8-1.5c-.5-.3-1.1-.5-1.6-.7l-.5 1.7zM12 19.2h-.7l-.2 1.8h1.8l-.2-1.7c-.2-.1-.5-.1-.7-.1zm2.1-.3l.5 1.7c.6-.2 1.1-.4 1.6-.7l-.8-1.5c-.4.2-.8.4-1.3.5z"})}),HQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M14.08 12.864V9.216h3.648V7.424H14.08V3.776h-1.728v3.648H8.64v1.792h3.712v3.648zM0 17.92V0h20.48v17.92H0zM6.4 1.28H1.28v3.84H6.4V1.28zm0 5.12H1.28v3.84H6.4V6.4zm0 5.12H1.28v3.84H6.4v-3.84zM19.2 1.28H7.68v14.08H19.2V1.28z"})}),UQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M6.4 3.776v3.648H2.752v1.792H6.4v3.648h1.728V9.216h3.712V7.424H8.128V3.776zM0 17.92V0h20.48v17.92H0zM12.8 1.28H1.28v14.08H12.8V1.28zm6.4 0h-5.12v3.84h5.12V1.28zm0 5.12h-5.12v3.84h5.12V6.4zm0 5.12h-5.12v3.84h5.12v-3.84z"})}),XQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M6.4 9.98L7.68 8.7v-.256L6.4 7.164V9.98zm6.4-1.532l1.28-1.28V9.92L12.8 8.64v-.192zm7.68 9.472V0H0v17.92h20.48zm-1.28-2.56h-5.12v-1.024l-.256.256-1.024-1.024v1.792H7.68v-1.792l-1.024 1.024-.256-.256v1.024H1.28V1.28H6.4v2.368l.704-.704.576.576V1.216h5.12V3.52l.96-.96.32.32V1.216h5.12V15.36zm-5.76-2.112l-3.136-3.136-3.264 3.264-1.536-1.536 3.264-3.264L5.632 5.44l1.536-1.536 3.136 3.136 3.2-3.2 1.536 1.536-3.2 3.2 3.136 3.136-1.536 1.536z"})}),Vde=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 9.484h-8.889v-1.5H20v1.5Zm0 7h-4.889v-1.5H20v1.5Zm-14 .032a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"}),a.jsx(he,{d:"M13 15.516a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 8.484a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"})]}),GQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M13.824 10.176h-2.88v-2.88H9.536v2.88h-2.88v1.344h2.88v2.88h1.408v-2.88h2.88zM0 17.92V0h20.48v17.92H0zM6.4 1.28H1.28v3.84H6.4V1.28zm6.4 0H7.68v3.84h5.12V1.28zm6.4 0h-5.12v3.84h5.12V1.28zm0 5.056H1.28v9.024H19.2V6.336z"})}),KQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M6.656 6.464h2.88v2.88h1.408v-2.88h2.88V5.12h-2.88V2.24H9.536v2.88h-2.88zM0 17.92V0h20.48v17.92H0zm7.68-2.56h5.12v-3.84H7.68v3.84zm-6.4 0H6.4v-3.84H1.28v3.84zM19.2 1.28H1.28v9.024H19.2V1.28zm0 10.24h-5.12v3.84h5.12v-3.84zM6.656 6.464h2.88v2.88h1.408v-2.88h2.88V5.12h-2.88V2.24H9.536v2.88h-2.88zM0 17.92V0h20.48v17.92H0zm7.68-2.56h5.12v-3.84H7.68v3.84zm-6.4 0H6.4v-3.84H1.28v3.84zM19.2 1.28H1.28v9.024H19.2V1.28zm0 10.24h-5.12v3.84h5.12v-3.84z"})}),YQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M17.728 11.456L14.592 8.32l3.2-3.2-1.536-1.536-3.2 3.2L9.92 3.648 8.384 5.12l3.2 3.2-3.264 3.264 1.536 1.536 3.264-3.264 3.136 3.136 1.472-1.536zM0 17.92V0h20.48v17.92H0zm19.2-6.4h-.448l-1.28-1.28H19.2V6.4h-1.792l1.28-1.28h.512V1.28H1.28v3.84h6.208l1.28 1.28H1.28v3.84h7.424l-1.28 1.28H1.28v3.84H19.2v-3.84z"})}),ZQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 6v11.5h16V6H4zm1.5 1.5h6V11h-6V7.5zm0 8.5v-3.5h6V16h-6zm13 0H13v-3.5h5.5V16zM13 11V7.5h5.5V11H13z"})}),GP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4.75 4a.75.75 0 0 0-.75.75v7.826c0 .2.08.39.22.53l6.72 6.716a2.313 2.313 0 0 0 3.276-.001l5.61-5.611-.531-.53.532.528a2.315 2.315 0 0 0 0-3.264L13.104 4.22a.75.75 0 0 0-.53-.22H4.75ZM19 12.576a.815.815 0 0 1-.236.574l-5.61 5.611a.814.814 0 0 1-1.153 0L5.5 12.264V5.5h6.763l6.5 6.502a.816.816 0 0 1 .237.574ZM8.75 9.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})}),Qf=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M21.3 10.8l-5.6-5.6c-.7-.7-1.8-.7-2.5 0l-5.6 5.6c-.7.7-.7 1.8 0 2.5l5.6 5.6c.3.3.8.5 1.2.5s.9-.2 1.2-.5l5.6-5.6c.8-.7.8-1.9.1-2.5zm-17.6 1L10 5.5l-1-1-6.3 6.3c-.7.7-.7 1.8 0 2.5L9 19.5l1.1-1.1-6.3-6.3c-.2 0-.2-.2-.1-.3z"})}),QQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6.08 10.103h2.914L9.657 12h1.417L8.23 4H6.846L4 12h1.417l.663-1.897Zm1.463-4.137.994 2.857h-2l1.006-2.857ZM11 16H4v-1.5h7V16Zm1 0h8v-1.5h-8V16Zm-4 4H4v-1.5h4V20Zm7-1.5V20H9v-1.5h6Z"})}),KP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M18 5.5h-8v8h8.5V6a.5.5 0 00-.5-.5zm-9.5 8h-3V6a.5.5 0 01.5-.5h2.5v8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),YP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.5 10.5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),ZP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),ZK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z"})}),JQe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m16.5 19.5h-9v-1.5h9z"})]}),eJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m4.5 7.5v9h1.5v-9z"}),a.jsx(he,{d:"m18 7.5v9h1.5v-9z"})]}),tJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m4.5 16.5v-9h1.5v9z"})]}),nJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m18 16.5v-9h1.5v9z"})]}),oJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m16.5 6h-9v-1.5h9z"})]}),rJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m7.5 6h9v-1.5h-9z"}),a.jsx(he,{d:"m7.5 19.5h9v-1.5h-9z"})]}),sJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.9 6h-2l-4 11h1.9l1.1-3h4.2l1.1 3h1.9L12.9 6zm-2.5 6.5l1.5-4.9 1.7 4.9h-3.2z"})}),iJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M8.2 14.4h3.9L13 17h1.7L11 6.5H9.3L5.6 17h1.7l.9-2.6zm2-5.5 1.4 4H8.8l1.4-4zm7.4 7.5-1.3.8.8 1.4H5.5V20h14.3l-2.2-3.6z"})}),aJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 5.6v1.7l2.6.9v3.9L7 13v1.7L17.5 11V9.3L7 5.6zm4.2 6V8.8l4 1.4-4 1.4zm-5.7 5.6V5.5H4v14.3l3.6-2.2-.8-1.3-1.3.9z"})}),QK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17 4H7c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H7c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12zm-7.5-.5h4V16h-4v1.5z"})}),yz=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m4 5.5h2v6.5h1.5v-6.5h2v-1.5h-5.5zm16 10.5h-16v-1.5h16zm-7 4h-9v-1.5h9z"})}),cJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})}),K3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 5.5A2.25 2.25 0 0 0 9.878 7h4.244A2.251 2.251 0 0 0 12 5.5ZM12 4a3.751 3.751 0 0 0-3.675 3H5v1.5h1.27l.818 8.997a2.75 2.75 0 0 0 2.739 2.501h4.347a2.75 2.75 0 0 0 2.738-2.5L17.73 8.5H19V7h-3.325A3.751 3.751 0 0 0 12 4Zm4.224 4.5H7.776l.806 8.861a1.25 1.25 0 0 0 1.245 1.137h4.347a1.25 1.25 0 0 0 1.245-1.137l.805-8.861Z"})}),Hde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.3 11.7c-.6-.6-1.4-.9-2.3-.9H6.7l2.9-3.3-1.1-1-4.5 5L8.5 16l1-1-2.7-2.7H16c.5 0 .9.2 1.3.5 1 1 1 3.4 1 4.5v.3h1.5v-.2c0-1.5 0-4.3-1.5-5.7z"})}),lJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 4h-7c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 9c0 .3-.2.5-.5.5h-7c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v7zm-5 5c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h1V9H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-1h-1.5v1z"})}),SM=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8h1.5c0-1.2 1-2.2 2.2-2.2s2.2 1 2.2 2.2v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1z"})}),cm=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.5 15v3.5H13V6.7l4.5 4.1 1-1.1-6.2-5.8-5.8 5.8 1 1.1 4-4v11.7h-6V15H4v5h16v-5z"})}),$w=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.8 2l-.9.3c-.1 0-3.6 1-5.2 2.1C10 5.5 9.3 6.5 8.9 7.1c-.6.9-1.7 4.7-1.7 6.3l-.9 2.3c-.2.4 0 .8.4 1 .1 0 .2.1.3.1.3 0 .6-.2.7-.5l.6-1.5c.3 0 .7-.1 1.2-.2.7-.1 1.4-.3 2.2-.5.8-.2 1.6-.5 2.4-.8.7-.3 1.4-.7 1.9-1.2s.8-1.2 1-1.9c.2-.7.3-1.6.4-2.4.1-.8.1-1.7.2-2.5 0-.8.1-1.5.2-2.1V2zm-1.9 5.6c-.1.8-.2 1.5-.3 2.1-.2.6-.4 1-.6 1.3-.3.3-.8.6-1.4.9-.7.3-1.4.5-2.2.8-.6.2-1.3.3-1.8.4L15 7.5c.3-.3.6-.7 1-1.1 0 .4 0 .8-.1 1.2zM6 20h8v-1.5H6V20z"})}),P8=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18.7 3H5.3C4 3 3 4 3 5.3v13.4C3 20 4 21 5.3 21h13.4c1.3 0 2.3-1 2.3-2.3V5.3C21 4 20 3 18.7 3zm.8 15.7c0 .4-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8V5.3c0-.4.4-.8.8-.8h13.4c.4 0 .8.4.8.8v13.4zM10 15l5-3-5-3v6z"})}),uJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M20 10c0-5.51-4.49-10-10-10C4.48 0 0 4.49 0 10c0 5.52 4.48 10 10 10 5.51 0 10-4.48 10-10zM7.78 15.37L4.37 6.22c.55-.02 1.17-.08 1.17-.08.5-.06.44-1.13-.06-1.11 0 0-1.45.11-2.37.11-.18 0-.37 0-.58-.01C4.12 2.69 6.87 1.11 10 1.11c2.33 0 4.45.87 6.05 2.34-.68-.11-1.65.39-1.65 1.58 0 .74.45 1.36.9 2.1.35.61.55 1.36.55 2.46 0 1.49-1.4 5-1.4 5l-3.03-8.37c.54-.02.82-.17.82-.17.5-.05.44-1.25-.06-1.22 0 0-1.44.12-2.38.12-.87 0-2.33-.12-2.33-.12-.5-.03-.56 1.2-.06 1.22l.92.08 1.26 3.41zM17.41 10c.24-.64.74-1.87.43-4.25.7 1.29 1.05 2.71 1.05 4.25 0 3.29-1.73 6.24-4.4 7.78.97-2.59 1.94-5.2 2.92-7.78zM6.1 18.09C3.12 16.65 1.11 13.53 1.11 10c0-1.3.23-2.48.72-3.59C3.25 10.3 4.67 14.2 6.1 18.09zm4.03-6.63l2.58 6.98c-.86.29-1.76.45-2.71.45-.79 0-1.57-.11-2.29-.33.81-2.38 1.62-4.74 2.42-7.1z"})}),dJe={name:"hdknak",styles:"display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap"},QP="…",Kp={auto:"auto",head:"head",middle:"middle",tail:"tail",none:"none"},pJe={ellipsis:QP,ellipsizeMode:Kp.auto,limit:0,numberOfLines:0};function fJe(e,t,n,o){if(typeof e!="string")return"";const r=e.length,s=~~t,i=~~n,c=bi(o)?o:QP;return s===0&&i===0||s>=r||i>=r||s+i>=r?e:i===0?e.slice(0,s)+c:e.slice(0,s)+c+e.slice(r-i)}function bJe(e="",t){const n={...pJe,...t},{ellipsis:o,ellipsizeMode:r,limit:s}=n;if(r===Kp.none)return e;let i,c;switch(r){case Kp.head:i=0,c=s;break;case Kp.middle:i=Math.floor(s/2),c=Math.floor(s/2);break;default:i=s,c=0}return r!==Kp.auto?fJe(e,i,c,o):e}function Ude(e){const{className:t,children:n,ellipsis:o=QP,ellipsizeMode:r=Kp.auto,limit:s=0,numberOfLines:i=0,...c}=vn(e,"Truncate"),l=ro();let u;typeof n=="string"?u=n:typeof n=="number"&&(u=n.toString());const d=u?bJe(u,{ellipsis:o,ellipsizeMode:r,limit:s,numberOfLines:i}):n,p=!!u&&r===Kp.auto,f=x.useMemo(()=>l(p&&!i&&dJe,p&&!!i&&Xe(i===1?"word-break: break-all;":""," -webkit-box-orient:vertical;-webkit-line-clamp:",i,";display:-webkit-box;overflow:hidden;",""),t),[t,l,i,p]);return{...c,className:f,children:d}}function hJe(e,t){const n=Ude(e);return a.jsx(mo,{as:"span",...n,ref:t})}const zs=Rn(hJe,"Truncate"),Xde=Xe("color:",Ze.theme.foreground,";line-height:",Ye.fontLineHeightBase,";margin:0;text-wrap:balance;text-wrap:pretty;",""),Gde={name:"4zleql",styles:"display:block"},mJe=Xe("color:",Ze.alert.green,";",""),Kde=Xe("color:",Ze.alert.red,";",""),Yde=Xe("color:",Ze.gray[700],";",""),Zde=Xe("mark{background:",Ze.alert.yellow,";border-radius:",Ye.radiusSmall,";box-shadow:0 0 0 1px rgba( 0, 0, 0, 0.05 ) inset,0 -1px 0 rgba( 0, 0, 0, 0.1 ) inset;}",""),gJe={name:"50zrmy",styles:"text-transform:uppercase"},MJe=Object.freeze(Object.defineProperty({__proto__:null,Text:Xde,block:Gde,destructive:Kde,highlighterText:Zde,muted:Yde,positive:mJe,upperCase:gJe},Symbol.toStringTag,{value:"Module"}));var LC={exports:{}},JK;function zJe(){return JK||(JK=1,function(e){e.exports=function(t){var n={};function o(r){if(n[r])return n[r].exports;var s=n[r]={exports:{},id:r,loaded:!1};return t[r].call(s.exports,s,s.exports,o),s.loaded=!0,s.exports}return o.m=t,o.c=n,o.p="",o(0)}([function(t,n,o){t.exports=o(1)},function(t,n,o){Object.defineProperty(n,"__esModule",{value:!0});var r=o(2);Object.defineProperty(n,"combineChunks",{enumerable:!0,get:function(){return r.combineChunks}}),Object.defineProperty(n,"fillInChunks",{enumerable:!0,get:function(){return r.fillInChunks}}),Object.defineProperty(n,"findAll",{enumerable:!0,get:function(){return r.findAll}}),Object.defineProperty(n,"findChunks",{enumerable:!0,get:function(){return r.findChunks}})},function(t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.findAll=function(u){var d=u.autoEscape,p=u.caseSensitive,f=p===void 0?!1:p,b=u.findChunks,h=b===void 0?r:b,g=u.sanitize,z=u.searchWords,A=u.textToHighlight;return s({chunksToHighlight:o({chunks:h({autoEscape:d,caseSensitive:f,sanitize:g,searchWords:z,textToHighlight:A})}),totalLength:A?A.length:0})};var o=n.combineChunks=function(u){var d=u.chunks;return d=d.sort(function(p,f){return p.start-f.start}).reduce(function(p,f){if(p.length===0)return[f];var b=p.pop();if(f.start<b.end){var h=Math.max(b.end,f.end);p.push({highlight:!1,start:b.start,end:h})}else p.push(b,f);return p},[]),d},r=function(u){var d=u.autoEscape,p=u.caseSensitive,f=u.sanitize,b=f===void 0?i:f,h=u.searchWords,g=u.textToHighlight;return g=b(g),h.filter(function(z){return z}).reduce(function(z,A){A=b(A),d&&(A=c(A));for(var _=new RegExp(A,p?"g":"gi"),v=void 0;v=_.exec(g);){var M=v.index,y=_.lastIndex;y>M&&z.push({highlight:!1,start:M,end:y}),v.index===_.lastIndex&&_.lastIndex++}return z},[])};n.findChunks=r;var s=n.fillInChunks=function(u){var d=u.chunksToHighlight,p=u.totalLength,f=[],b=function(z,A,_){A-z>0&&f.push({start:z,end:A,highlight:_})};if(d.length===0)b(0,p,!1);else{var h=0;d.forEach(function(g){b(h,g.start,!1),b(g.start,g.end,!0),h=g.end}),b(h,p,!1)}return f};function i(l){return l}function c(l){return l.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}}])}(LC)),LC.exports}var OJe=zJe();const yJe=e=>{const t={};for(const n in e)t[n.toLowerCase()]=e[n];return t},AJe=Hs(yJe);function vJe({activeClassName:e="",activeIndex:t=-1,activeStyle:n,autoEscape:o,caseSensitive:r=!1,children:s,findChunks:i,highlightClassName:c="",highlightStyle:l={},highlightTag:u="mark",sanitize:d,searchWords:p=[],unhighlightClassName:f="",unhighlightStyle:b}){if(!s)return null;if(typeof s!="string")return s;const h=s,g=OJe.findAll({autoEscape:o,caseSensitive:r,findChunks:i,sanitize:d,searchWords:p,textToHighlight:h}),z=u;let A=-1,_="",v;return g.map((y,k)=>{const S=h.substr(y.start,y.end-y.start);if(y.highlight){A++;let C;typeof c=="object"?r?C=c[S]:(c=AJe(c),C=c[S.toLowerCase()]):C=c;const R=A===+t;_=`${C} ${R?e:""}`,v=R===!0&&n!==null?Object.assign({},l,n):l;const T={children:S,className:_,key:k,style:v};return typeof z!="string"&&(T.highlightIndex=A),x.createElement(z,T)}return x.createElement("span",{children:S,className:f,key:k,style:b})})}const j8=13,eY={body:j8,caption:10,footnote:11,largeTitle:28,subheadline:12,title:20},xJe=[1,2,3,4,5,6].flatMap(e=>[e,e.toString()]);function JP(e=j8){if(e in eY)return JP(eY[e]);if(typeof e!="number"){const n=parseFloat(e);if(Number.isNaN(n))return e;e=n}return`calc(${`(${e} / ${j8})`} * ${Ye.fontSize})`}function wJe(e=3){if(!xJe.includes(e))return JP(e);const t=`fontSizeH${e}`;return Ye[t]}function _Je(e,t){if(t)return t;if(!e)return;let n=`calc(${Ye.controlHeight} + ${Je(2)})`;switch(e){case"large":n=`calc(${Ye.controlHeightLarge} + ${Je(2)})`;break;case"small":n=`calc(${Ye.controlHeightSmall} + ${Je(2)})`;break;case"xSmall":n=`calc(${Ye.controlHeightXSmall} + ${Je(2)})`;break}return n}var kJe={name:"50zrmy",styles:"text-transform:uppercase"};function Qde(e){const{adjustLineHeightForInnerControls:t,align:n,children:o,className:r,color:s,ellipsizeMode:i,isDestructive:c=!1,display:l,highlightEscape:u=!1,highlightCaseSensitive:d=!1,highlightWords:p,highlightSanitize:f,isBlock:b=!1,letterSpacing:h,lineHeight:g,optimizeReadabilityFor:z,size:A,truncate:_=!1,upperCase:v=!1,variant:M,weight:y=Ye.fontWeight,...k}=vn(e,"Text");let S=o;const C=Array.isArray(p),R=A==="caption";if(C){if(typeof o!="string")throw new TypeError("`children` of `Text` must only be `string` types when `highlightWords` is defined");S=vJe({autoEscape:u,children:o,caseSensitive:d,searchWords:p,sanitize:f})}const T=ro(),E=x.useMemo(()=>{const I={},P=_Je(t,g);if(I.Base=Xe({color:s,display:l,fontSize:JP(A),fontWeight:y,lineHeight:P,letterSpacing:h,textAlign:n},"",""),I.upperCase=kJe,I.optimalTextColor=null,z){const $=FHe(z)==="dark";I.optimalTextColor=Xe($?{color:Ze.gray[900]}:{color:Ze.white},"","")}return T(Xde,I.Base,I.optimalTextColor,c&&Kde,!!C&&Zde,b&&Gde,R&&Yde,M&&MJe[M],v&&I.upperCase,r)},[t,n,r,s,T,l,b,R,c,C,h,g,z,A,v,M,y]);let B;_===!0&&(B="auto"),_===!1&&(B="none");const N={...k,className:E,children:o,ellipsizeMode:i||B},j=Ude(N);return!_&&Array.isArray(o)&&(S=x.Children.map(o,I=>typeof I!="object"||I===null||!("props"in I)?I:hle(I,["Link"])?x.cloneElement(I,{size:I.props.size||"inherit"}):I)),{...j,children:_?j.children:S}}function SJe(e,t){const n=Qde(e);return a.jsx(mo,{as:"span",...n,ref:t})}const Sn=Rn(SJe,"Text"),Jde=He("span",{target:"em5sgkm8"})({name:"pvvbxf",styles:"box-sizing:border-box;display:block"}),epe=He("span",{target:"em5sgkm7"})({name:"jgf79h",styles:"align-items:center;align-self:stretch;box-sizing:border-box;display:flex"}),CJe=({disabled:e,isBorderless:t})=>t?"transparent":e?Ze.ui.borderDisabled:Ze.ui.border,Y3=He("div",{target:"em5sgkm6"})("&&&{box-sizing:border-box;border-color:",CJe,";border-radius:inherit;border-style:solid;border-width:1px;bottom:0;left:0;margin:0;padding:0;pointer-events:none;position:absolute;right:0;top:0;",Go({paddingLeft:2}),";}"),qJe=He(Yo,{target:"em5sgkm5"})("box-sizing:border-box;position:relative;border-radius:",Ye.radiusSmall,";padding-top:0;&:focus-within:not( :has( :is( ",Jde,", ",epe," ):focus-within ) ){",Y3,"{border-color:",Ze.ui.borderFocus,";box-shadow:",Ye.controlBoxShadowFocus,";outline:2px solid transparent;outline-offset:-2px;}}"),RJe=({disabled:e})=>{const t=e?Ze.ui.backgroundDisabled:Ze.ui.background;return Xe({backgroundColor:t},"","")};var TJe={name:"1d3w5wq",styles:"width:100%"};const EJe=({__unstableInputWidth:e,labelPosition:t})=>e?t==="side"?"":Xe(t==="edge"?{flex:`0 0 ${e}`}:{width:e},"",""):TJe,WJe=He("div",{target:"em5sgkm4"})("align-items:center;box-sizing:border-box;border-radius:inherit;display:flex;flex:1;position:relative;",RJe," ",EJe,";"),NJe=({disabled:e})=>e?Xe({color:Ze.ui.textDisabled},"",""):"",ej=({inputSize:e})=>{const t={default:"13px",small:"11px",compact:"13px","__unstable-large":"13px"},n=t[e]||t.default,o="16px";return n?Xe("font-size:",o,";@media ( min-width: 600px ){font-size:",n,";}",""):""},tpe=({inputSize:e,__next40pxDefaultSize:t})=>{const n={default:{height:40,lineHeight:1,minHeight:40,paddingLeft:Ye.controlPaddingX,paddingRight:Ye.controlPaddingX},small:{height:24,lineHeight:1,minHeight:24,paddingLeft:Ye.controlPaddingXSmall,paddingRight:Ye.controlPaddingXSmall},compact:{height:32,lineHeight:1,minHeight:32,paddingLeft:Ye.controlPaddingXSmall,paddingRight:Ye.controlPaddingXSmall},"__unstable-large":{height:40,lineHeight:1,minHeight:40,paddingLeft:Ye.controlPaddingX,paddingRight:Ye.controlPaddingX}};return t||(n.default=n.compact),n[e]||n.default},BJe=e=>Xe(tpe(e),"",""),LJe=({paddingInlineStart:e,paddingInlineEnd:t})=>Xe({paddingInlineStart:e,paddingInlineEnd:t},"",""),PJe=({isDragging:e,dragCursor:t})=>{let n,o;return e&&(n=Xe("cursor:",t,";user-select:none;&::-webkit-outer-spin-button,&::-webkit-inner-spin-button{-webkit-appearance:none!important;margin:0!important;}","")),e&&t&&(o=Xe("&:active{cursor:",t,";}","")),Xe(n," ",o,";","")},Vw=He("input",{target:"em5sgkm3"})("&&&{background-color:transparent;box-sizing:border-box;border:none;box-shadow:none!important;color:",Ze.theme.foreground,";display:block;font-family:inherit;margin:0;outline:none;width:100%;",PJe," ",NJe," ",ej," ",BJe," ",LJe," &::-webkit-input-placeholder{line-height:normal;}&[type='email'],&[type='url']{direction:ltr;}}"),jJe=He(Sn,{target:"em5sgkm2"})("&&&{",dle,";box-sizing:border-box;display:block;padding-top:0;padding-bottom:0;max-width:100%;z-index:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}"),IJe=e=>a.jsx(jJe,{...e,as:"label"}),npe=He(Tn,{target:"em5sgkm1"})({name:"1b6uupn",styles:"max-width:calc( 100% - 10px )"}),DJe=({variant:e="default",size:t,__next40pxDefaultSize:n,isPrefix:o})=>{const{paddingLeft:r}=tpe({inputSize:t,__next40pxDefaultSize:n}),s=o?"paddingInlineStart":"paddingInlineEnd";return Xe(e==="default"?{[s]:r}:{display:"flex",[s]:r-4},"","")},ope=He("div",{target:"em5sgkm0"})(DJe,";");function FJe({disabled:e=!1,isBorderless:t=!1}){return a.jsx(Y3,{"aria-hidden":"true",className:"components-input-control__backdrop",disabled:e,isBorderless:t})}const $Je=x.memo(FJe);function VJe({children:e,hideLabelFromVision:t,htmlFor:n,...o}){return e?t?a.jsx(qn,{as:"label",htmlFor:n,children:e}):a.jsx(npe,{children:a.jsx(IJe,{htmlFor:n,...o,children:e})}):null}function sp(e){const{__next36pxDefaultSize:t,__next40pxDefaultSize:n,...o}=e;return{...o,__next40pxDefaultSize:n??t}}function HJe(e){const n=`input-base-control-${vt(rpe)}`;return e||n}function UJe(e){const t={};switch(e){case"top":t.direction="column",t.expanded=!1,t.gap=0;break;case"bottom":t.direction="column-reverse",t.expanded=!1,t.gap=0;break;case"edge":t.justify="space-between";break}return t}function rpe(e,t){const{__next40pxDefaultSize:n,__unstableInputWidth:o,children:r,className:s,disabled:i=!1,hideLabelFromVision:c=!1,labelPosition:l,id:u,isBorderless:d=!1,label:p,prefix:f,size:b="default",suffix:h,...g}=sp(vn(e,"InputBase")),z=HJe(u),A=c||!p,_=x.useMemo(()=>({InputControlPrefixWrapper:{__next40pxDefaultSize:n,size:b},InputControlSuffixWrapper:{__next40pxDefaultSize:n,size:b}}),[n,b]);return a.jsxs(qJe,{...g,...UJe(l),className:s,gap:2,ref:t,children:[a.jsx(VJe,{className:"components-input-control__label",hideLabelFromVision:c,labelPosition:l,htmlFor:z,children:p}),a.jsxs(WJe,{__unstableInputWidth:o,className:"components-input-control__container",disabled:i,hideLabel:A,labelPosition:l,children:[a.jsxs(j3,{value:_,children:[f&&a.jsx(Jde,{className:"components-input-control__prefix",children:f}),r,h&&a.jsx(epe,{className:"components-input-control__suffix",children:h})]}),a.jsx($Je,{disabled:i,isBorderless:d})]})]})}const tj=Rn(rpe,"InputBase");function XJe(e,t,n){return Math.max(t,Math.min(e,n))}const m1={toVector(e,t){return e===void 0&&(e=t),Array.isArray(e)?e:[e,e]},add(e,t){return[e[0]+t[0],e[1]+t[1]]},sub(e,t){return[e[0]-t[0],e[1]-t[1]]},addTo(e,t){e[0]+=t[0],e[1]+=t[1]},subTo(e,t){e[0]-=t[0],e[1]-=t[1]}};function tY(e,t,n){return t===0||Math.abs(t)===1/0?Math.pow(e,n*5):e*t*n/(t+n*e)}function nY(e,t,n,o=.15){return o===0?XJe(e,t,n):e<t?-tY(t-e,n-t,o)+t:e>n?+tY(e-n,n-t,o)+n:e}function GJe(e,[t,n],[o,r]){const[[s,i],[c,l]]=e;return[nY(t,s,i,o),nY(n,c,l,r)]}function KJe(e,t){if(typeof e!="object"||e===null)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var o=n.call(e,t||"default");if(typeof o!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function YJe(e){var t=KJe(e,"string");return typeof t=="symbol"?t:String(t)}function ss(e,t,n){return t=YJe(t),t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function oY(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable})),n.push.apply(n,o)}return n}function Tr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?oY(Object(n),!0).forEach(function(o){ss(e,o,n[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):oY(Object(n)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(n,o))})}return e}const spe={pointer:{start:"down",change:"move",end:"up"},mouse:{start:"down",change:"move",end:"up"},touch:{start:"start",change:"move",end:"end"},gesture:{start:"start",change:"change",end:"end"}};function rY(e){return e?e[0].toUpperCase()+e.slice(1):""}const ZJe=["enter","leave"];function QJe(e=!1,t){return e&&!ZJe.includes(t)}function JJe(e,t="",n=!1){const o=spe[e],r=o&&o[t]||t;return"on"+rY(e)+rY(r)+(QJe(n,r)?"Capture":"")}const eet=["gotpointercapture","lostpointercapture"];function tet(e){let t=e.substring(2).toLowerCase();const n=!!~t.indexOf("passive");n&&(t=t.replace("passive",""));const o=eet.includes(t)?"capturecapture":"capture",r=!!~t.indexOf(o);return r&&(t=t.replace("capture","")),{device:t,capture:r,passive:n}}function net(e,t=""){const n=spe[e],o=n&&n[t]||t;return e+o}function Hw(e){return"touches"in e}function ipe(e){return Hw(e)?"touch":"pointerType"in e?e.pointerType:"mouse"}function oet(e){return Array.from(e.touches).filter(t=>{var n,o;return t.target===e.currentTarget||((n=e.currentTarget)===null||n===void 0||(o=n.contains)===null||o===void 0?void 0:o.call(n,t.target))})}function ret(e){return e.type==="touchend"||e.type==="touchcancel"?e.changedTouches:e.targetTouches}function ape(e){return Hw(e)?ret(e)[0]:e}function set(e){return oet(e).map(t=>t.identifier)}function PC(e){const t=ape(e);return Hw(e)?t.identifier:t.pointerId}function sY(e){const t=ape(e);return[t.clientX,t.clientY]}function iet(e){const t={};if("buttons"in e&&(t.buttons=e.buttons),"shiftKey"in e){const{shiftKey:n,altKey:o,metaKey:r,ctrlKey:s}=e;Object.assign(t,{shiftKey:n,altKey:o,metaKey:r,ctrlKey:s})}return t}function Mx(e,...t){return typeof e=="function"?e(...t):e}function aet(){}function cet(...e){return e.length===0?aet:e.length===1?e[0]:function(){let t;for(const n of e)t=n.apply(this,arguments)||t;return t}}function iY(e,t){return Object.assign({},t,e||{})}const uet=32;class det{constructor(t,n,o){this.ctrl=t,this.args=n,this.key=o,this.state||(this.state={},this.computeValues([0,0]),this.computeInitial(),this.init&&this.init(),this.reset())}get state(){return this.ctrl.state[this.key]}set state(t){this.ctrl.state[this.key]=t}get shared(){return this.ctrl.state.shared}get eventStore(){return this.ctrl.gestureEventStores[this.key]}get timeoutStore(){return this.ctrl.gestureTimeoutStores[this.key]}get config(){return this.ctrl.config[this.key]}get sharedConfig(){return this.ctrl.config.shared}get handler(){return this.ctrl.handlers[this.key]}reset(){const{state:t,shared:n,ingKey:o,args:r}=this;n[o]=t._active=t.active=t._blocked=t._force=!1,t._step=[!1,!1],t.intentional=!1,t._movement=[0,0],t._distance=[0,0],t._direction=[0,0],t._delta=[0,0],t._bounds=[[-1/0,1/0],[-1/0,1/0]],t.args=r,t.axis=void 0,t.memo=void 0,t.elapsedTime=t.timeDelta=0,t.direction=[0,0],t.distance=[0,0],t.overflow=[0,0],t._movementBound=[!1,!1],t.velocity=[0,0],t.movement=[0,0],t.delta=[0,0],t.timeStamp=0}start(t){const n=this.state,o=this.config;n._active||(this.reset(),this.computeInitial(),n._active=!0,n.target=t.target,n.currentTarget=t.currentTarget,n.lastOffset=o.from?Mx(o.from,n):n.offset,n.offset=n.lastOffset,n.startTime=n.timeStamp=t.timeStamp)}computeValues(t){const n=this.state;n._values=t,n.values=this.config.transform(t)}computeInitial(){const t=this.state;t._initial=t._values,t.initial=t.values}compute(t){const{state:n,config:o,shared:r}=this;n.args=this.args;let s=0;if(t&&(n.event=t,o.preventDefault&&t.cancelable&&n.event.preventDefault(),n.type=t.type,r.touches=this.ctrl.pointerIds.size||this.ctrl.touchIds.size,r.locked=!!document.pointerLockElement,Object.assign(r,iet(t)),r.down=r.pressed=r.buttons%2===1||r.touches>0,s=t.timeStamp-n.timeStamp,n.timeStamp=t.timeStamp,n.elapsedTime=n.timeStamp-n.startTime),n._active){const k=n._delta.map(Math.abs);m1.addTo(n._distance,k)}this.axisIntent&&this.axisIntent(t);const[i,c]=n._movement,[l,u]=o.threshold,{_step:d,values:p}=n;if(o.hasCustomTransform?(d[0]===!1&&(d[0]=Math.abs(i)>=l&&p[0]),d[1]===!1&&(d[1]=Math.abs(c)>=u&&p[1])):(d[0]===!1&&(d[0]=Math.abs(i)>=l&&Math.sign(i)*l),d[1]===!1&&(d[1]=Math.abs(c)>=u&&Math.sign(c)*u)),n.intentional=d[0]!==!1||d[1]!==!1,!n.intentional)return;const f=[0,0];if(o.hasCustomTransform){const[k,S]=p;f[0]=d[0]!==!1?k-d[0]:0,f[1]=d[1]!==!1?S-d[1]:0}else f[0]=d[0]!==!1?i-d[0]:0,f[1]=d[1]!==!1?c-d[1]:0;this.restrictToAxis&&!n._blocked&&this.restrictToAxis(f);const b=n.offset,h=n._active&&!n._blocked||n.active;h&&(n.first=n._active&&!n.active,n.last=!n._active&&n.active,n.active=r[this.ingKey]=n._active,t&&(n.first&&("bounds"in o&&(n._bounds=Mx(o.bounds,n)),this.setup&&this.setup()),n.movement=f,this.computeOffset()));const[g,z]=n.offset,[[A,_],[v,M]]=n._bounds;n.overflow=[g<A?-1:g>_?1:0,z<v?-1:z>M?1:0],n._movementBound[0]=n.overflow[0]?n._movementBound[0]===!1?n._movement[0]:n._movementBound[0]:!1,n._movementBound[1]=n.overflow[1]?n._movementBound[1]===!1?n._movement[1]:n._movementBound[1]:!1;const y=n._active?o.rubberband||[0,0]:[0,0];if(n.offset=GJe(n._bounds,n.offset,y),n.delta=m1.sub(n.offset,b),this.computeMovement(),h&&(!n.last||s>uet)){n.delta=m1.sub(n.offset,b);const k=n.delta.map(Math.abs);m1.addTo(n.distance,k),n.direction=n.delta.map(Math.sign),n._direction=n._delta.map(Math.sign),!n.first&&s>0&&(n.velocity=[k[0]/s,k[1]/s],n.timeDelta=s)}}emit(){const t=this.state,n=this.shared,o=this.config;if(t._active||this.clean(),(t._blocked||!t.intentional)&&!t._force&&!o.triggerAllEvents)return;const r=this.handler(Tr(Tr(Tr({},n),t),{},{[this.aliasKey]:t.values}));r!==void 0&&(t.memo=r)}clean(){this.eventStore.clean(),this.timeoutStore.clean()}}function pet([e,t],n){const o=Math.abs(e),r=Math.abs(t);if(o>r&&o>n)return"x";if(r>o&&r>n)return"y"}class fet extends det{constructor(...t){super(...t),ss(this,"aliasKey","xy")}reset(){super.reset(),this.state.axis=void 0}init(){this.state.offset=[0,0],this.state.lastOffset=[0,0]}computeOffset(){this.state.offset=m1.add(this.state.lastOffset,this.state.movement)}computeMovement(){this.state.movement=m1.sub(this.state.offset,this.state.lastOffset)}axisIntent(t){const n=this.state,o=this.config;if(!n.axis&&t){const r=typeof o.axisThreshold=="object"?o.axisThreshold[ipe(t)]:o.axisThreshold;n.axis=pet(n._movement,r)}n._blocked=(o.lockDirection||!!o.axis)&&!n.axis||!!o.axis&&o.axis!==n.axis}restrictToAxis(t){if(this.config.axis||this.config.lockDirection)switch(this.state.axis){case"x":t[1]=0;break;case"y":t[0]=0;break}}}const bet=e=>e,aY=.15,cpe={enabled(e=!0){return e},eventOptions(e,t,n){return Tr(Tr({},n.shared.eventOptions),e)},preventDefault(e=!1){return e},triggerAllEvents(e=!1){return e},rubberband(e=0){switch(e){case!0:return[aY,aY];case!1:return[0,0];default:return m1.toVector(e)}},from(e){if(typeof e=="function")return e;if(e!=null)return m1.toVector(e)},transform(e,t,n){const o=e||n.shared.transform;return this.hasCustomTransform=!!o,o||bet},threshold(e){return m1.toVector(e,0)}},het=0,Z3=Tr(Tr({},cpe),{},{axis(e,t,{axis:n}){if(this.lockDirection=n==="lock",!this.lockDirection)return n},axisThreshold(e=het){return e},bounds(e={}){if(typeof e=="function")return s=>Z3.bounds(e(s));if("current"in e)return()=>e.current;if(typeof HTMLElement=="function"&&e instanceof HTMLElement)return e;const{left:t=-1/0,right:n=1/0,top:o=-1/0,bottom:r=1/0}=e;return[[t,n],[o,r]]}}),cY={ArrowRight:(e,t=1)=>[e*t,0],ArrowLeft:(e,t=1)=>[-1*e*t,0],ArrowUp:(e,t=1)=>[0,-1*e*t],ArrowDown:(e,t=1)=>[0,e*t]};class met extends fet{constructor(...t){super(...t),ss(this,"ingKey","dragging")}reset(){super.reset();const t=this.state;t._pointerId=void 0,t._pointerActive=!1,t._keyboardActive=!1,t._preventScroll=!1,t._delayed=!1,t.swipe=[0,0],t.tap=!1,t.canceled=!1,t.cancel=this.cancel.bind(this)}setup(){const t=this.state;if(t._bounds instanceof HTMLElement){const n=t._bounds.getBoundingClientRect(),o=t.currentTarget.getBoundingClientRect(),r={left:n.left-o.left+t.offset[0],right:n.right-o.right+t.offset[0],top:n.top-o.top+t.offset[1],bottom:n.bottom-o.bottom+t.offset[1]};t._bounds=Z3.bounds(r)}}cancel(){const t=this.state;t.canceled||(t.canceled=!0,t._active=!1,setTimeout(()=>{this.compute(),this.emit()},0))}setActive(){this.state._active=this.state._pointerActive||this.state._keyboardActive}clean(){this.pointerClean(),this.state._pointerActive=!1,this.state._keyboardActive=!1,super.clean()}pointerDown(t){const n=this.config,o=this.state;if(t.buttons!=null&&(Array.isArray(n.pointerButtons)?!n.pointerButtons.includes(t.buttons):n.pointerButtons!==-1&&n.pointerButtons!==t.buttons))return;const r=this.ctrl.setEventIds(t);n.pointerCapture&&t.target.setPointerCapture(t.pointerId),!(r&&r.size>1&&o._pointerActive)&&(this.start(t),this.setupPointer(t),o._pointerId=PC(t),o._pointerActive=!0,this.computeValues(sY(t)),this.computeInitial(),n.preventScrollAxis&&ipe(t)!=="mouse"?(o._active=!1,this.setupScrollPrevention(t)):n.delay>0?(this.setupDelayTrigger(t),n.triggerAllEvents&&(this.compute(t),this.emit())):this.startPointerDrag(t))}startPointerDrag(t){const n=this.state;n._active=!0,n._preventScroll=!0,n._delayed=!1,this.compute(t),this.emit()}pointerMove(t){const n=this.state,o=this.config;if(!n._pointerActive)return;const r=PC(t);if(n._pointerId!==void 0&&r!==n._pointerId)return;const s=sY(t);if(document.pointerLockElement===t.target?n._delta=[t.movementX,t.movementY]:(n._delta=m1.sub(s,n._values),this.computeValues(s)),m1.addTo(n._movement,n._delta),this.compute(t),n._delayed&&n.intentional){this.timeoutStore.remove("dragDelay"),n.active=!1,this.startPointerDrag(t);return}if(o.preventScrollAxis&&!n._preventScroll)if(n.axis)if(n.axis===o.preventScrollAxis||o.preventScrollAxis==="xy"){n._active=!1,this.clean();return}else{this.timeoutStore.remove("startPointerDrag"),this.startPointerDrag(t);return}else return;this.emit()}pointerUp(t){this.ctrl.setEventIds(t);try{this.config.pointerCapture&&t.target.hasPointerCapture(t.pointerId)&&t.target.releasePointerCapture(t.pointerId)}catch{}const n=this.state,o=this.config;if(!n._active||!n._pointerActive)return;const r=PC(t);if(n._pointerId!==void 0&&r!==n._pointerId)return;this.state._pointerActive=!1,this.setActive(),this.compute(t);const[s,i]=n._distance;if(n.tap=s<=o.tapsThreshold&&i<=o.tapsThreshold,n.tap&&o.filterTaps)n._force=!0;else{const[c,l]=n._delta,[u,d]=n._movement,[p,f]=o.swipe.velocity,[b,h]=o.swipe.distance,g=o.swipe.duration;if(n.elapsedTime<g){const z=Math.abs(c/n.timeDelta),A=Math.abs(l/n.timeDelta);z>p&&Math.abs(u)>b&&(n.swipe[0]=Math.sign(c)),A>f&&Math.abs(d)>h&&(n.swipe[1]=Math.sign(l))}}this.emit()}pointerClick(t){!this.state.tap&&t.detail>0&&(t.preventDefault(),t.stopPropagation())}setupPointer(t){const n=this.config,o=n.device;n.pointerLock&&t.currentTarget.requestPointerLock(),n.pointerCapture||(this.eventStore.add(this.sharedConfig.window,o,"change",this.pointerMove.bind(this)),this.eventStore.add(this.sharedConfig.window,o,"end",this.pointerUp.bind(this)),this.eventStore.add(this.sharedConfig.window,o,"cancel",this.pointerUp.bind(this)))}pointerClean(){this.config.pointerLock&&document.pointerLockElement===this.state.currentTarget&&document.exitPointerLock()}preventScroll(t){this.state._preventScroll&&t.cancelable&&t.preventDefault()}setupScrollPrevention(t){this.state._preventScroll=!1,get(t);const n=this.eventStore.add(this.sharedConfig.window,"touch","change",this.preventScroll.bind(this),{passive:!1});this.eventStore.add(this.sharedConfig.window,"touch","end",n),this.eventStore.add(this.sharedConfig.window,"touch","cancel",n),this.timeoutStore.add("startPointerDrag",this.startPointerDrag.bind(this),this.config.preventScrollDelay,t)}setupDelayTrigger(t){this.state._delayed=!0,this.timeoutStore.add("dragDelay",()=>{this.state._step=[0,0],this.startPointerDrag(t)},this.config.delay)}keyDown(t){const n=cY[t.key];if(n){const o=this.state,r=t.shiftKey?10:t.altKey?.1:1;this.start(t),o._delta=n(this.config.keyboardDisplacement,r),o._keyboardActive=!0,m1.addTo(o._movement,o._delta),this.compute(t),this.emit()}}keyUp(t){t.key in cY&&(this.state._keyboardActive=!1,this.setActive(),this.compute(t),this.emit())}bind(t){const n=this.config.device;t(n,"start",this.pointerDown.bind(this)),this.config.pointerCapture&&(t(n,"change",this.pointerMove.bind(this)),t(n,"end",this.pointerUp.bind(this)),t(n,"cancel",this.pointerUp.bind(this)),t("lostPointerCapture","",this.pointerUp.bind(this))),this.config.keys&&(t("key","down",this.keyDown.bind(this)),t("key","up",this.keyUp.bind(this))),this.config.filterTaps&&t("click","",this.pointerClick.bind(this),{capture:!0,passive:!1})}}function get(e){"persist"in e&&typeof e.persist=="function"&&e.persist()}const Q3=typeof window<"u"&&window.document&&window.document.createElement;function lpe(){return Q3&&"ontouchstart"in window}function Met(){return lpe()||Q3&&window.navigator.maxTouchPoints>1}function zet(){return Q3&&"onpointerdown"in window}function Oet(){return Q3&&"exitPointerLock"in window.document}function yet(){try{return"constructor"in GestureEvent}catch{return!1}}const mi={isBrowser:Q3,gesture:yet(),touch:lpe(),touchscreen:Met(),pointer:zet(),pointerLock:Oet()},Aet=250,vet=180,xet=.5,wet=50,_et=250,ket=10,lY={mouse:0,touch:0,pen:8},Cet=Tr(Tr({},Z3),{},{device(e,t,{pointer:{touch:n=!1,lock:o=!1,mouse:r=!1}={}}){return this.pointerLock=o&&mi.pointerLock,mi.touch&&n?"touch":this.pointerLock?"mouse":mi.pointer&&!r?"pointer":mi.touch?"touch":"mouse"},preventScrollAxis(e,t,{preventScroll:n}){if(this.preventScrollDelay=typeof n=="number"?n:n||n===void 0&&e?Aet:void 0,!(!mi.touchscreen||n===!1))return e||(n!==void 0?"y":void 0)},pointerCapture(e,t,{pointer:{capture:n=!0,buttons:o=1,keys:r=!0}={}}){return this.pointerButtons=o,this.keys=r,!this.pointerLock&&this.device==="pointer"&&n},threshold(e,t,{filterTaps:n=!1,tapsThreshold:o=3,axis:r=void 0}){const s=m1.toVector(e,n?o:r?1:0);return this.filterTaps=n,this.tapsThreshold=o,s},swipe({velocity:e=xet,distance:t=wet,duration:n=_et}={}){return{velocity:this.transform(m1.toVector(e)),distance:this.transform(m1.toVector(t)),duration:n}},delay(e=0){switch(e){case!0:return vet;case!1:return 0;default:return e}},axisThreshold(e){return e?Tr(Tr({},lY),e):lY},keyboardDisplacement(e=ket){return e}});Tr(Tr({},cpe),{},{device(e,t,{shared:n,pointer:{touch:o=!1}={}}){if(n.target&&!mi.touch&&mi.gesture)return"gesture";if(mi.touch&&o)return"touch";if(mi.touchscreen){if(mi.pointer)return"pointer";if(mi.touch)return"touch"}},bounds(e,t,{scaleBounds:n={},angleBounds:o={}}){const r=i=>{const c=iY(Mx(n,i),{min:-1/0,max:1/0});return[c.min,c.max]},s=i=>{const c=iY(Mx(o,i),{min:-1/0,max:1/0});return[c.min,c.max]};return typeof n!="function"&&typeof o!="function"?[r(),s()]:i=>[r(i),s(i)]},threshold(e,t,n){return this.lockDirection=n.axis==="lock",m1.toVector(e,this.lockDirection?[.1,3]:0)},modifierKey(e){return e===void 0?"ctrlKey":e},pinchOnWheel(e=!0){return e}});Tr(Tr({},Z3),{},{mouseOnly:(e=!0)=>e});Tr(Tr({},Z3),{},{mouseOnly:(e=!0)=>e});const upe=new Map,I8=new Map;function qet(e){upe.set(e.key,e.engine),I8.set(e.key,e.resolver)}const Ret={key:"drag",engine:met,resolver:Cet};function Tet(e,t){if(e==null)return{};var n={},o=Object.keys(e),r,s;for(s=0;s<o.length;s++)r=o[s],!(t.indexOf(r)>=0)&&(n[r]=e[r]);return n}function Eet(e,t){if(e==null)return{};var n=Tet(e,t),o,r;if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);for(r=0;r<s.length;r++)o=s[r],!(t.indexOf(o)>=0)&&Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}const Wet={target(e){if(e)return()=>"current"in e?e.current:e},enabled(e=!0){return e},window(e=mi.isBrowser?window:void 0){return e},eventOptions({passive:e=!0,capture:t=!1}={}){return{passive:e,capture:t}},transform(e){return e}},Net=["target","eventOptions","window","enabled","transform"];function t4(e={},t){const n={};for(const[o,r]of Object.entries(t))switch(typeof r){case"function":n[o]=r.call(n,e[o],o,e);break;case"object":n[o]=t4(e[o],r);break;case"boolean":r&&(n[o]=e[o]);break}return n}function Bet(e,t,n={}){const o=e,{target:r,eventOptions:s,window:i,enabled:c,transform:l}=o,u=Eet(o,Net);if(n.shared=t4({target:r,eventOptions:s,window:i,enabled:c,transform:l},Wet),t){const d=I8.get(t);n[t]=t4(Tr({shared:n.shared},u),d)}else for(const d in u){const p=I8.get(d);p&&(n[d]=t4(Tr({shared:n.shared},u[d]),p))}return n}class dpe{constructor(t,n){ss(this,"_listeners",new Set),this._ctrl=t,this._gestureKey=n}add(t,n,o,r,s){const i=this._listeners,c=net(n,o),l=this._gestureKey?this._ctrl.config[this._gestureKey].eventOptions:{},u=Tr(Tr({},l),s);t.addEventListener(c,r,u);const d=()=>{t.removeEventListener(c,r,u),i.delete(d)};return i.add(d),d}clean(){this._listeners.forEach(t=>t()),this._listeners.clear()}}class Let{constructor(){ss(this,"_timeouts",new Map)}add(t,n,o=140,...r){this.remove(t),this._timeouts.set(t,window.setTimeout(n,o,...r))}remove(t){const n=this._timeouts.get(t);n&&window.clearTimeout(n)}clean(){this._timeouts.forEach(t=>void window.clearTimeout(t)),this._timeouts.clear()}}let Pet=class{constructor(t){ss(this,"gestures",new Set),ss(this,"_targetEventStore",new dpe(this)),ss(this,"gestureEventStores",{}),ss(this,"gestureTimeoutStores",{}),ss(this,"handlers",{}),ss(this,"config",{}),ss(this,"pointerIds",new Set),ss(this,"touchIds",new Set),ss(this,"state",{shared:{shiftKey:!1,metaKey:!1,ctrlKey:!1,altKey:!1}}),jet(this,t)}setEventIds(t){if(Hw(t))return this.touchIds=new Set(set(t)),this.touchIds;if("pointerId"in t)return t.type==="pointerup"||t.type==="pointercancel"?this.pointerIds.delete(t.pointerId):t.type==="pointerdown"&&this.pointerIds.add(t.pointerId),this.pointerIds}applyHandlers(t,n){this.handlers=t,this.nativeHandlers=n}applyConfig(t,n){this.config=Bet(t,n,this.config)}clean(){this._targetEventStore.clean();for(const t of this.gestures)this.gestureEventStores[t].clean(),this.gestureTimeoutStores[t].clean()}effect(){return this.config.shared.target&&this.bind(),()=>this._targetEventStore.clean()}bind(...t){const n=this.config.shared,o={};let r;if(!(n.target&&(r=n.target(),!r))){if(n.enabled){for(const i of this.gestures){const c=this.config[i],l=uY(o,c.eventOptions,!!r);if(c.enabled){const u=upe.get(i);new u(this,t,i).bind(l)}}const s=uY(o,n.eventOptions,!!r);for(const i in this.nativeHandlers)s(i,"",c=>this.nativeHandlers[i](Tr(Tr({},this.state.shared),{},{event:c,args:t})),void 0,!0)}for(const s in o)o[s]=cet(...o[s]);if(!r)return o;for(const s in o){const{device:i,capture:c,passive:l}=tet(s);this._targetEventStore.add(r,i,"",o[s],{capture:c,passive:l})}}}};function Hb(e,t){e.gestures.add(t),e.gestureEventStores[t]=new dpe(e,t),e.gestureTimeoutStores[t]=new Let}function jet(e,t){t.drag&&Hb(e,"drag"),t.wheel&&Hb(e,"wheel"),t.scroll&&Hb(e,"scroll"),t.move&&Hb(e,"move"),t.pinch&&Hb(e,"pinch"),t.hover&&Hb(e,"hover")}const uY=(e,t,n)=>(o,r,s,i={},c=!1)=>{var l,u;const d=(l=i.capture)!==null&&l!==void 0?l:t.capture,p=(u=i.passive)!==null&&u!==void 0?u:t.passive;let f=c?o:JJe(o,r,d);n&&p&&(f+="Passive"),e[f]=e[f]||[],e[f].push(s)};function Iet(e,t={},n,o){const r=Bo.useMemo(()=>new Pet(e),[]);if(r.applyHandlers(e,o),r.applyConfig(t,n),Bo.useEffect(r.effect.bind(r)),Bo.useEffect(()=>r.clean.bind(r),[]),t.target===void 0)return r.bind.bind(r)}function Det(e,t){return qet(Ret),Iet({drag:e},t||{},"drag")}function Fet(e){let t="ns-resize";switch(e){case"n":case"s":t="ns-resize";break;case"e":case"w":t="ew-resize";break}return t}function $et(e,t){const n=Fet(t);return x.useEffect(()=>{e?document.documentElement.style.cursor=n:document.documentElement.style.cursor=null},[e,n]),n}function Vet(e){const t=x.useRef(e.value),[n,o]=x.useState({}),r=n.value!==void 0?n.value:e.value;return x.useLayoutEffect(()=>{const{current:c}=t;t.current=e.value,n.value!==void 0&&!n.isStale?o({...n,isStale:!0}):n.isStale&&e.value!==c&&o({})},[e.value,n]),{value:r,onBlur:c=>{o({}),e.onBlur?.(c)},onChange:(c,l)=>{o(u=>Object.assign(u,{value:c,isStale:!1})),e.onChange(c,l)}}}const Het=e=>e,D8={error:null,initialValue:"",isDirty:!1,isDragEnabled:!1,isDragging:!1,isPressEnterToChange:!1,value:""},ppe="CHANGE",Uw="COMMIT",fpe="CONTROL",bpe="DRAG_END",hpe="DRAG_START",mpe="DRAG",gpe="INVALIDATE",Xw="PRESS_DOWN",Mpe="PRESS_ENTER",Az="PRESS_UP",zpe="RESET";function Uet(e=D8){const{value:t}=e;return{...D8,...e,initialValue:t}}function Xet(e){return(t,n)=>{const o={...t};switch(n.type){case fpe:return o.value=n.payload.value,o.isDirty=!1,o._event=void 0,o;case Az:o.isDirty=!1;break;case Xw:o.isDirty=!1;break;case hpe:o.isDragging=!0;break;case bpe:o.isDragging=!1;break;case ppe:o.error=null,o.value=n.payload.value,t.isPressEnterToChange&&(o.isDirty=!0);break;case Uw:o.value=n.payload.value,o.isDirty=!1;break;case zpe:o.error=null,o.isDirty=!1,o.value=n.payload.value||t.initialValue;break;case gpe:o.error=n.payload.error;break}return o._event=n.payload.event,e(o,n)}}function Get(e=Het,t=D8,n){const[o,r]=x.useReducer(Xet(e),Uet(t)),s=M=>(y,k)=>{r({type:M,payload:{value:y,event:k}})},i=M=>y=>{r({type:M,payload:{event:y}})},c=M=>y=>{r({type:M,payload:y})},l=s(ppe),u=(M,y)=>r({type:gpe,payload:{error:M,event:y}}),d=s(zpe),p=s(Uw),f=c(hpe),b=c(mpe),h=c(bpe),g=i(Az),z=i(Xw),A=i(Mpe),_=x.useRef(o),v=x.useRef({value:t.value,onChangeHandler:n});return x.useLayoutEffect(()=>{_.current=o,v.current={value:t.value,onChangeHandler:n}}),x.useLayoutEffect(()=>{if(_.current._event!==void 0&&o.value!==v.current.value&&!o.isDirty){var M;v.current.onChangeHandler((M=o.value)!==null&&M!==void 0?M:"",{event:_.current._event})}},[o.value,o.isDirty]),x.useLayoutEffect(()=>{if(t.value!==_.current.value&&!_.current.isDirty){var M;r({type:fpe,payload:{value:(M=t.value)!==null&&M!==void 0?M:""}})}},[t.value]),{change:l,commit:p,dispatch:r,drag:b,dragEnd:h,dragStart:f,invalidate:u,pressDown:z,pressEnter:A,pressUp:g,reset:d,state:o}}function J3(e){return t=>{const{isComposing:n}="nativeEvent"in t?t.nativeEvent:t;n||t.keyCode===229||e(t)}}const Tp=()=>{};function Ket({disabled:e=!1,dragDirection:t="n",dragThreshold:n=10,id:o,isDragEnabled:r=!1,isPressEnterToChange:s=!1,onBlur:i=Tp,onChange:c=Tp,onDrag:l=Tp,onDragEnd:u=Tp,onDragStart:d=Tp,onKeyDown:p=Tp,onValidate:f=Tp,size:b="default",stateReducer:h=v=>v,value:g,type:z,...A},_){const{state:v,change:M,commit:y,drag:k,dragEnd:S,dragStart:C,invalidate:R,pressDown:T,pressEnter:E,pressUp:B,reset:N}=Get(h,{isDragEnabled:r,value:g,isPressEnterToChange:s},c),{value:j,isDragging:I,isDirty:P}=v,$=x.useRef(!1),F=$et(I,t),X=ce=>{i(ce),(P||!ce.target.validity.valid)&&($.current=!0,V(ce))},Z=ce=>{const me=ce.target.value;M(me,ce)},V=ce=>{const me=ce.currentTarget.value;try{f(me),y(me,ce)}catch(de){R(de,ce)}},ee=ce=>{const{key:me}=ce;switch(p(ce),me){case"ArrowUp":B(ce);break;case"ArrowDown":T(ce);break;case"Enter":E(ce),s&&(ce.preventDefault(),V(ce));break;case"Escape":s&&P&&(ce.preventDefault(),N(g,ce));break}},te=Det(ce=>{const{distance:me,dragging:de,event:Ae,target:ye}=ce;if(ce.event={...ce.event,target:ye},!!me){if(Ae.stopPropagation(),!de){u(ce),S(ce);return}l(ce),k(ce),I||(d(ce),C(ce))}},{axis:t==="e"||t==="w"?"x":"y",threshold:n,enabled:r,pointer:{capture:!1}}),J=r?te():{};let ue;return z==="number"&&(ue=ce=>{A.onMouseDown?.(ce),ce.currentTarget!==ce.currentTarget.ownerDocument.activeElement&&ce.currentTarget.focus()}),a.jsx(Vw,{...A,...J,className:"components-input-control__input",disabled:e,dragCursor:F,isDragging:I,id:o,onBlur:X,onChange:Z,onKeyDown:J3(ee),onMouseDown:ue,ref:_,inputSize:b,value:j??"",type:z})}const Yet=x.forwardRef(Ket),Ope=He("div",{target:"ej5x27r4"})("font-family:",ua("default.fontFamily"),";font-size:",ua("default.fontSize"),";",P3,";"),Zet=({__nextHasNoMarginBottom:e=!1})=>!e&&Xe("margin-bottom:",Je(2),";",""),ype=He("div",{target:"ej5x27r3"})(Zet," .components-panel__row &{margin-bottom:inherit;}"),Ape=Xe(dle,";display:block;margin-bottom:",Je(2),";padding:0;",""),gh=He("label",{target:"ej5x27r2"})(Ape,";");var Qet={name:"11yad0w",styles:"margin-bottom:revert"};const Jet=({__nextHasNoMarginBottom:e=!1})=>!e&&Qet,vz=He("p",{target:"ej5x27r1"})("margin-top:",Je(2),";margin-bottom:0;font-size:",ua("helpText.fontSize"),";font-style:normal;color:",Ze.gray[700],";",Jet,";"),ett=He("span",{target:"ej5x27r0"})(Ape,";"),ttt=e=>{const{__nextHasNoMarginBottom:t=!1,__associatedWPComponentName:n="BaseControl",id:o,label:r,hideLabelFromVision:s=!1,help:i,className:c,children:l}=vn(e,"BaseControl");return t||Ke(`Bottom margin styles for wp.components.${n}`,{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."}),a.jsxs(Ope,{className:c,children:[a.jsxs(ype,{className:"components-base-control__field",__nextHasNoMarginBottom:t,children:[r&&o&&(s?a.jsx(qn,{as:"label",htmlFor:o,children:r}):a.jsx(gh,{className:"components-base-control__label",htmlFor:o,children:r})),r&&!o&&(s?a.jsx(qn,{as:"label",children:r}):a.jsx(vpe,{children:r})),l]}),!!i&&a.jsx(vz,{id:o?o+"__help":void 0,className:"components-base-control__help",__nextHasNoMarginBottom:t,children:i})]})},ntt=(e,t)=>{const{className:n,children:o,...r}=e;return a.jsx(ett,{ref:t,...r,className:oe("components-base-control__label",n),children:o})},vpe=x.forwardRef(ntt),no=Object.assign(ZL(ttt,"BaseControl"),{VisualLabel:vpe});function q1({componentName:e,__next40pxDefaultSize:t,size:n,__shouldNotWarnDeprecated36pxSize:o}){o||t||n!==void 0&&n!=="default"||Ke(`36px default size for wp.components.${e}`,{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."})}const jC=()=>{};function ott(e){const n=`inspector-input-control-${vt(N1)}`;return e||n}function rtt(e,t){const{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:o,__unstableStateReducer:r=E=>E,__unstableInputWidth:s,className:i,disabled:c=!1,help:l,hideLabelFromVision:u=!1,id:d,isPressEnterToChange:p=!1,label:f,labelPosition:b="top",onChange:h=jC,onValidate:g=jC,onKeyDown:z=jC,prefix:A,size:_="default",style:v,suffix:M,value:y,...k}=sp(e),S=ott(d),C=oe("components-input-control",i),R=Vet({value:y,onBlur:k.onBlur,onChange:h}),T=l?{"aria-describedby":`${S}__help`}:{};return q1({componentName:"InputControl",__next40pxDefaultSize:n,size:_,__shouldNotWarnDeprecated36pxSize:o}),a.jsx(no,{className:C,help:l,id:S,__nextHasNoMarginBottom:!0,children:a.jsx(tj,{__next40pxDefaultSize:n,__unstableInputWidth:s,disabled:c,gap:3,hideLabelFromVision:u,id:S,justify:"left",label:f,labelPosition:b,prefix:A,size:_,style:v,suffix:M,children:a.jsx(Yet,{...k,...T,__next40pxDefaultSize:n,className:"components-input-control__input",disabled:c,id:S,isPressEnterToChange:p,onKeyDown:z,onValidate:g,paddingInlineStart:A?Je(1):void 0,paddingInlineEnd:M?Je(1):void 0,ref:t,size:_,stateReducer:r,...R})})})}const N1=x.forwardRef(rtt);function dY({icon:e,className:t,size:n=20,style:o={},...r}){const s=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" "),c={...n!=20?{fontSize:`${n}px`,width:`${n}px`,height:`${n}px`}:{},...o};return a.jsx("span",{className:s,style:c,...r})}function qo({icon:e=null,size:t=typeof e=="string"?20:24,...n}){if(typeof e=="string")return a.jsx(dY,{icon:e,size:t,...n});if(x.isValidElement(e)&&dY===e.type)return x.cloneElement(e,{...n});if(typeof e=="function")return x.createElement(e,{size:t,...n});if(e&&(e.type==="svg"||e.type===ge)){const o={...e.props,width:t,height:t,...n};return a.jsx(ge,{...o})}return x.isValidElement(e)?x.cloneElement(e,{size:t,...n}):e}const stt=["onMouseDown","onClick"];function itt({__experimentalIsFocusable:e,isDefault:t,isPrimary:n,isSecondary:o,isTertiary:r,isLink:s,isPressed:i,isSmall:c,size:l,variant:u,describedBy:d,...p}){let f=l,b=u;const h={accessibleWhenDisabled:e,"aria-pressed":i,description:d};if(c){var g;(g=f)!==null&&g!==void 0||(f="small")}if(n){var z;(z=b)!==null&&z!==void 0||(b="primary")}if(r){var A;(A=b)!==null&&A!==void 0||(b="tertiary")}if(o){var _;(_=b)!==null&&_!==void 0||(b="secondary")}if(t){var v;Ke("wp.components.Button `isDefault` prop",{since:"5.4",alternative:'variant="secondary"'}),(v=b)!==null&&v!==void 0||(b="secondary")}if(s){var M;(M=b)!==null&&M!==void 0||(b="link")}return{...h,...p,size:f,variant:b}}function att(e,t){const{__next40pxDefaultSize:n,accessibleWhenDisabled:o,isBusy:r,isDestructive:s,className:i,disabled:c,icon:l,iconPosition:u="left",iconSize:d,showTooltip:p,tooltipPosition:f,shortcut:b,label:h,children:g,size:z="default",text:A,variant:_,description:v,...M}=itt(e),{href:y,target:k,"aria-checked":S,"aria-pressed":C,"aria-selected":R,...T}="href"in M?M:{href:void 0,target:void 0,...M},E=vt(Ce,"components-button__description"),B=typeof g=="string"&&!!g||Array.isArray(g)&&g?.[0]&&g[0]!==null&&g?.[0]?.props?.className!=="components-tooltip",j=oe("components-button",i,{"is-next-40px-default-size":n,"is-secondary":_==="secondary","is-primary":_==="primary","is-small":z==="small","is-compact":z==="compact","is-tertiary":_==="tertiary","is-pressed":[!0,"true","mixed"].includes(C),"is-pressed-mixed":C==="mixed","is-busy":r,"is-link":_==="link","is-destructive":s,"has-text":!!l&&(B||A),"has-icon":!!l}),I=c&&!o,P=y!==void 0&&!c?"a":"button",$=P==="button"?{type:"button",disabled:I,"aria-checked":S,"aria-pressed":C,"aria-selected":R}:{},F=P==="a"?{href:y,target:k}:{},X={};if(c&&o){$["aria-disabled"]=!0,F["aria-disabled"]=!0;for(const me of stt)X[me]=de=>{de&&(de.stopPropagation(),de.preventDefault())}}const Z=!I&&(p&&!!h||!!b||!!h&&!g?.length&&p!==!1),V=v?E:void 0,ee=T["aria-describedby"]||V,te={className:j,"aria-label":T["aria-label"]||h,"aria-describedby":ee,ref:t},J=a.jsxs(a.Fragment,{children:[l&&u==="left"&&a.jsx(qo,{icon:l,size:d}),A&&a.jsx(a.Fragment,{children:A}),g,l&&u==="right"&&a.jsx(qo,{icon:l,size:d})]}),ue=P==="a"?a.jsx("a",{...F,...T,...X,...te,children:J}):a.jsx("button",{...$,...T,...X,...te,children:J}),ce=Z?{text:g?.length&&v?v:h,shortcut:b,placement:f&&zw(f)}:{};return a.jsxs(a.Fragment,{children:[a.jsx(B0,{...ce,children:ue}),v&&a.jsx(qn,{children:a.jsx("span",{id:V,children:v})})]})}const Ce=x.forwardRef(att);var ctt={name:"euqsgg",styles:"input[type='number']::-webkit-outer-spin-button,input[type='number']::-webkit-inner-spin-button{-webkit-appearance:none!important;margin:0!important;}input[type='number']{-moz-appearance:textfield;}"};const ltt=({hideHTMLArrows:e})=>e?ctt:"",utt=He(N1,{target:"ep09it41"})(ltt,";"),pY=He(Ce,{target:"ep09it40"})("&&&&&{color:",Ze.theme.accent,";}"),dtt=Xe("width:",Je(5),";min-width:",Je(5),";height:",Je(5),";",""),ptt={smallSpinButtons:dtt};function P2(e){const t=Number(e);return isNaN(t)?0:t}function fY(...e){return e.reduce((t,n)=>t+P2(n),0)}function ftt(...e){return e.reduce((t,n,o)=>{const r=P2(n);return o===0?r:t-r},0)}function btt(e){const t=(e+"").split(".");return t[1]!==void 0?t[1].length:0}function nj(e,t,n){const o=P2(e);return Math.max(t,Math.min(o,n))}function bY(e=0,t=1/0,n=1/0,o=1){const r=P2(e),s=P2(o),i=btt(o),c=Math.round(r/s)*s,l=nj(c,t,n);return i?P2(l.toFixed(i)):l}const htt={bottom:{align:"flex-end",justify:"center"},bottomLeft:{align:"flex-end",justify:"flex-start"},bottomRight:{align:"flex-end",justify:"flex-end"},center:{align:"center",justify:"center"},edge:{align:"center",justify:"space-between"},left:{align:"center",justify:"flex-start"},right:{align:"center",justify:"flex-end"},stretch:{align:"stretch"},top:{align:"flex-start",justify:"center"},topLeft:{align:"flex-start",justify:"flex-start"},topRight:{align:"flex-start",justify:"flex-end"}},mtt={bottom:{justify:"flex-end",align:"center"},bottomLeft:{justify:"flex-end",align:"flex-start"},bottomRight:{justify:"flex-end",align:"flex-end"},center:{justify:"center",align:"center"},edge:{justify:"space-between",align:"center"},left:{justify:"center",align:"flex-start"},right:{justify:"center",align:"flex-end"},stretch:{align:"stretch"},top:{justify:"flex-start",align:"center"},topLeft:{justify:"flex-start",align:"flex-start"},topRight:{justify:"flex-start",align:"flex-end"}};function gtt(e,t="row"){if(!bi(e))return{};const o=t==="column"?mtt:htt;return e in o?o[e]:{align:e}}function xpe(e){return typeof e=="string"?[e]:x.Children.toArray(e).filter(t=>x.isValidElement(t))}function wpe(e){const{alignment:t="edge",children:n,direction:o,spacing:r=2,...s}=vn(e,"HStack"),i=gtt(t,o),u={children:xpe(n).map((f,b)=>{if(hle(f,["Spacer"])){const g=f,z=g.key||`hstack-${b}`;return a.jsx(Tn,{isBlock:!0,...g.props},z)}return f}),direction:o,justify:"center",...i,...s,gap:r},{isColumn:d,...p}=Uue(u);return p}function Mtt(e,t){const n=wpe(e);return a.jsx(mo,{...n,ref:t})}const Ot=Rn(Mtt,"HStack"),ztt=()=>{};function Ott(e,t){const{__unstableStateReducer:n,className:o,dragDirection:r="n",hideHTMLArrows:s=!1,spinControls:i=s?"none":"native",isDragEnabled:c=!0,isShiftStepEnabled:l=!0,label:u,max:d=1/0,min:p=-1/0,required:f=!1,shiftStep:b=10,step:h=1,spinFactor:g=1,type:z="number",value:A,size:_="default",suffix:v,onChange:M=ztt,__shouldNotWarnDeprecated36pxSize:y,...k}=sp(e);q1({componentName:"NumberControl",size:_,__next40pxDefaultSize:k.__next40pxDefaultSize,__shouldNotWarnDeprecated36pxSize:y}),s&&Ke("wp.components.NumberControl hideHTMLArrows prop ",{alternative:'spinControls="none"',since:"6.2",version:"6.3"});const S=x.useRef(),C=xn([S,t]),R=h==="any",T=R?1:wg(h),E=wg(g)*T,B=bY(0,p,d,T),N=(V,ee)=>R?""+Math.min(d,Math.max(p,wg(V))):""+bY(V,p,d,ee??T),j=z==="number"?"off":void 0,I=oe("components-number-control",o),$=ro()(_==="small"&&ptt.smallSpinButtons),F=(V,ee,te)=>{te?.preventDefault();const J=te?.shiftKey&&l,ue=J?wg(b)*E:E;let ce=BVe(V)?B:V;return ee==="up"?ce=fY(ce,ue):ee==="down"&&(ce=ftt(ce,ue)),N(ce,J?ue:void 0)},X=(V,ee)=>{const te={...V},{type:J,payload:ue}=ee,ce=ue.event,me=te.value;if((J===Az||J===Xw)&&(te.value=F(me,J===Az?"up":"down",ce)),J===mpe&&c){const[de,Ae]=ue.delta,ye=ue.shiftKey&&l,Ne=ye?wg(b)*E:E;let je,ie;switch(r){case"n":ie=Ae,je=-1;break;case"e":ie=de,je=jt()?-1:1;break;case"s":ie=Ae,je=1;break;case"w":ie=de,je=jt()?1:-1;break}if(ie!==0){ie=Math.ceil(Math.abs(ie))*Math.sign(ie);const we=ie*Ne*je;te.value=N(fY(me,we),ye?Ne:void 0)}}if(J===Mpe||J===Uw){const de=f===!1&&me==="";te.value=de?me:N(me)}return te},Z=V=>ee=>M(String(F(A,V,ee)),{event:{...ee,target:S.current}});return a.jsx(utt,{autoComplete:j,inputMode:"numeric",...k,className:I,dragDirection:r,hideHTMLArrows:i!=="native",isDragEnabled:c,label:u,max:d,min:p,ref:C,required:f,step:h,type:z,value:A,__unstableStateReducer:(V,ee)=>{var te;const J=X(V,ee);return(te=n?.(J,ee))!==null&&te!==void 0?te:J},size:_,__shouldNotWarnDeprecated36pxSize:!0,suffix:i==="custom"?a.jsxs(a.Fragment,{children:[v,a.jsx(t1,{marginBottom:0,marginRight:2,children:a.jsxs(Ot,{spacing:1,children:[a.jsx(pY,{className:$,icon:Fs,size:"small",label:m("Increment"),onClick:Z("up")}),a.jsx(pY,{className:$,icon:am,size:"small",label:m("Decrement"),onClick:Z("down")})]})})]}):v,onChange:M})}const g0=x.forwardRef(Ott),hY=32,mY=6,ytt=He("div",{target:"eln3bjz3"})("border-radius:",Ye.radiusRound,";border:",Ye.borderWidth," solid ",Ze.ui.border,";box-sizing:border-box;cursor:grab;height:",hY,"px;overflow:hidden;width:",hY,"px;:active{cursor:grabbing;}"),Att=He("div",{target:"eln3bjz2"})({name:"1r307gh",styles:"box-sizing:border-box;position:relative;width:100%;height:100%;:focus-visible{outline:none;}"}),vtt=He("div",{target:"eln3bjz1"})("background:",Ze.theme.accent,";border-radius:",Ye.radiusRound,";box-sizing:border-box;display:block;left:50%;top:4px;transform:translateX( -50% );position:absolute;width:",mY,"px;height:",mY,"px;"),xtt=He(Sn,{target:"eln3bjz0"})("color:",Ze.theme.accent,";margin-right:",Je(3),";");function wtt({value:e,onChange:t,...n}){const o=x.useRef(null),r=x.useRef(),s=x.useRef(),i=()=>{if(o.current===null)return;const d=o.current.getBoundingClientRect();r.current={x:d.x+d.width/2,y:d.y+d.height/2}},c=d=>{if(d!==void 0&&(d.preventDefault(),d.target?.focus(),r.current!==void 0&&t!==void 0)){const{x:p,y:f}=r.current;t(_tt(p,f,d.clientX,d.clientY))}},{startDrag:l,isDragging:u}=x0e({onDragStart:d=>{i(),c(d)},onDragMove:c,onDragEnd:c});return x.useEffect(()=>{u?(s.current===void 0&&(s.current=document.body.style.cursor),document.body.style.cursor="grabbing"):(document.body.style.cursor=s.current||"",s.current=void 0)},[u]),a.jsx(ytt,{ref:o,onMouseDown:l,className:"components-angle-picker-control__angle-circle",...n,children:a.jsx(Att,{style:e?{transform:`rotate(${e}deg)`}:void 0,className:"components-angle-picker-control__angle-circle-indicator-wrapper",tabIndex:-1,children:a.jsx(vtt,{className:"components-angle-picker-control__angle-circle-indicator"})})})}function _tt(e,t,n,o){const r=o-t,s=n-e,i=Math.atan2(r,s),c=Math.round(i*(180/Math.PI))+90;return c<0?360+c:c}function ktt(e,t){const{className:n,label:o=m("Angle"),onChange:r,value:s,...i}=e,c=f=>{if(r===void 0)return;const b=f!==void 0&&f!==""?parseInt(f,10):0;r(b)},l=oe("components-angle-picker-control",n),u=a.jsx(xtt,{children:"°"}),[d,p]=jt()?[u,null]:[null,u];return a.jsxs(Yo,{...i,ref:t,className:l,gap:2,children:[a.jsx(tu,{children:a.jsx(g0,{__next40pxDefaultSize:!0,label:o,className:"components-angle-picker-control__input-field",max:360,min:0,onChange:c,step:"1",value:s,spinControls:"none",prefix:d,suffix:p})}),a.jsx(t1,{marginBottom:"1",marginTop:"auto",children:a.jsx(wtt,{"aria-hidden":"true",value:s,onChange:r})})]})}const Stt=x.forwardRef(ktt),Ctt=new RegExp(/[\u007e\u00ad\u2053\u207b\u208b\u2212\p{Pd}]/gu),gY=e=>ms(e).toLocaleLowerCase().replace(Ctt,"-");function qtt(e){var t;let n=(t=e?.toString?.())!==null&&t!==void 0?t:"";return n=n.replace(/['\u2019]/,""),Ti(n,{splitRegexp:[/(?!(?:1ST|2ND|3RD|[4-9]TH)(?![a-z]))([a-z0-9])([A-Z])/g,/(?!(?:1st|2nd|3rd|[4-9]th)(?![a-z]))([0-9])([a-z])/g,/([A-Za-z])([0-9])/g,/([A-Z])([A-Z][a-z])/g]})}function xz(e){return e.replace(/[\\^$.*+?()[\]{}|]/g,"\\$&")}function Rtt(e,t=[],n=10){const o=[];for(let r=0;r<t.length;r++){const s=t[r];let{keywords:i=[]}=s;if(typeof s.label=="string"&&(i=[...i,s.label]),!!i.some(l=>e.test(ms(l)))&&(o.push(s),o.length===n))break}return o}function Ttt(e){return t=>{const[n,o]=x.useState([]);return x.useLayoutEffect(()=>{const{options:r,isDebounced:s}=e,i=F1(()=>{const l=Promise.resolve(typeof r=="function"?r(t):r).then(u=>{if(l.canceled)return;const d=u.map((f,b)=>({key:`${e.name}-${b}`,value:f,label:e.getOptionLabel(f),keywords:e.getOptionKeywords?e.getOptionKeywords(f):[],isDisabled:e.isOptionDisabled?e.isOptionDisabled(f):!1})),p=new RegExp("(?:\\b|\\s|^)"+xz(t),"i");o(Rtt(p,d))});return l},s?250:0),c=i();return()=>{i.cancel(),c&&(c.canceled=!0)}},[t]),[n]}}var n4=typeof document<"u"?x.useLayoutEffect:x.useEffect;function zx(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,o,r;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(o=n;o--!==0;)if(!zx(e[o],t[o]))return!1;return!0}if(r=Object.keys(e),n=r.length,n!==Object.keys(t).length)return!1;for(o=n;o--!==0;)if(!{}.hasOwnProperty.call(t,r[o]))return!1;for(o=n;o--!==0;){const s=r[o];if(!(s==="_owner"&&e.$$typeof)&&!zx(e[s],t[s]))return!1}return!0}return e!==e&&t!==t}function _pe(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function MY(e,t){const n=_pe(e);return Math.round(t*n)/n}function IC(e){const t=x.useRef(e);return n4(()=>{t.current=e}),t}function Ett(e){e===void 0&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:o=[],platform:r,elements:{reference:s,floating:i}={},transform:c=!0,whileElementsMounted:l,open:u}=e,[d,p]=x.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[f,b]=x.useState(o);zx(f,o)||b(o);const[h,g]=x.useState(null),[z,A]=x.useState(null),_=x.useCallback(F=>{F!==k.current&&(k.current=F,g(F))},[]),v=x.useCallback(F=>{F!==S.current&&(S.current=F,A(F))},[]),M=s||h,y=i||z,k=x.useRef(null),S=x.useRef(null),C=x.useRef(d),R=l!=null,T=IC(l),E=IC(r),B=IC(u),N=x.useCallback(()=>{if(!k.current||!S.current)return;const F={placement:t,strategy:n,middleware:f};E.current&&(F.platform=E.current),Cce(k.current,S.current,F).then(X=>{const Z={...X,isPositioned:B.current!==!1};j.current&&!zx(C.current,Z)&&(C.current=Z,hs.flushSync(()=>{p(Z)}))})},[f,t,n,E,B]);n4(()=>{u===!1&&C.current.isPositioned&&(C.current.isPositioned=!1,p(F=>({...F,isPositioned:!1})))},[u]);const j=x.useRef(!1);n4(()=>(j.current=!0,()=>{j.current=!1}),[]),n4(()=>{if(M&&(k.current=M),y&&(S.current=y),M&&y){if(T.current)return T.current(M,y,N);N()}},[M,y,N,T,R]);const I=x.useMemo(()=>({reference:k,floating:S,setReference:_,setFloating:v}),[_,v]),P=x.useMemo(()=>({reference:M,floating:y}),[M,y]),$=x.useMemo(()=>{const F={position:n,left:0,top:0};if(!P.floating)return F;const X=MY(P.floating,d.x),Z=MY(P.floating,d.y);return c?{...F,transform:"translate("+X+"px, "+Z+"px)",..._pe(P.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:X,top:Z}},[n,c,P.floating,d.x,d.y]);return x.useMemo(()=>({...d,update:N,refs:I,elements:P,floatingStyles:$}),[d,N,I,P,$])}const Wtt=e=>{function t(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:e,fn(n){const{element:o,padding:r}=typeof e=="function"?e(n):e;return o&&t(o)?o.current!=null?h8({element:o.current,padding:r}).fn(n):{}:o?h8({element:o,padding:r}).fn(n):{}}}},Ntt=(e,t)=>({...xce(e),options:[e,t]}),Btt=(e,t)=>({...wce(e),options:[e,t]}),Ltt=(e,t)=>({...Sce(e),options:[e,t]}),Ptt=(e,t)=>({..._ce(e),options:[e,t]}),kpe=(e,t)=>({...kce(e),options:[e,t]}),jtt=(e,t)=>({...Wtt(e),options:[e,t]});let zY=0;function OY(e){const t=document.scrollingElement||document.body;e&&(zY=t.scrollTop);const n=e?"add":"remove";t.classList[n]("lockscroll"),document.documentElement.classList[n]("lockscroll"),e||(t.scrollTop=zY)}let qA=0;function Itt(){return x.useEffect(()=>(qA===0&&OY(!0),++qA,()=>{qA===1&&OY(!1),--qA}),[]),null}const Dtt={slots:gc(),fills:gc(),registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},updateFill:()=>{}},oj=x.createContext(Dtt);function Ftt({name:e,children:t}){const n=x.useContext(oj),o=x.useRef({}),r=x.useRef(t);return x.useLayoutEffect(()=>{r.current=t},[t]),x.useLayoutEffect(()=>{const s=o.current;return n.registerFill(e,s,r.current),()=>n.unregisterFill(e,s)},[n,e]),x.useLayoutEffect(()=>{n.updateFill(e,o.current,r.current)}),null}function yY(e){return typeof e=="function"}function $tt(e){return x.Children.map(e,(t,n)=>{if(!t||typeof t=="string")return t;let o=n;return typeof t=="object"&&"key"in t&&t?.key&&(o=t.key),x.cloneElement(t,{key:o})})}function Vtt(e){var t;const n=x.useContext(oj),o=x.useRef({}),{name:r,children:s,fillProps:i={}}=e;x.useLayoutEffect(()=>{const d=o.current;return n.registerSlot(r,d),()=>n.unregisterSlot(r,d)},[n,r]);let c=(t=$M(n.fills,r))!==null&&t!==void 0?t:[];$M(n.slots,r)!==o.current&&(c=[]);const u=c.map(d=>{const p=yY(d.children)?d.children(i):d.children;return $tt(p)}).filter(d=>!fke(d));return a.jsx(a.Fragment,{children:yY(s)?s(u):u})}const Htt={slots:gc(),fills:gc(),registerSlot:()=>{globalThis.SCRIPT_DEBUG===!0&&zn("Components must be wrapped within `SlotFillProvider`. See https://developer.wordpress.org/block-editor/components/slot-fill/")},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},isDefault:!0},lm=x.createContext(Htt),AY=new Set,DC=new WeakMap,Utt=e=>{if(DC.has(e))return DC.get(e);let t=Is().replace(/[0-9]/g,"");for(;AY.has(t);)t=Is().replace(/[0-9]/g,"");AY.add(t);const n=UL({container:e,key:t});return DC.set(e,n),n};function Jf(e){const{children:t,document:n}=e;if(!n)return null;const o=Utt(n.head);return a.jsx(SHe,{value:o,children:t})}function Xtt({name:e,children:t}){var n;const o=x.useContext(lm),r=$M(o.slots,e),s=x.useRef({});if(x.useEffect(()=>{const c=s.current;return o.registerFill(e,c),()=>o.unregisterFill(e,c)},[o,e]),!r||!r.ref.current)return null;const i=a.jsx(Jf,{document:r.ref.current.ownerDocument,children:typeof t=="function"?t((n=r.fillProps)!==null&&n!==void 0?n:{}):t});return hs.createPortal(i,r.ref.current)}function Gtt(e,t){const{name:n,fillProps:o={},as:r,children:s,...i}=e,c=x.useContext(lm),l=x.useRef(null),u=x.useRef(o);return x.useLayoutEffect(()=>{u.current=o},[o]),x.useLayoutEffect(()=>(c.registerSlot(n,l,u.current),()=>c.unregisterSlot(n,l)),[c,n]),x.useLayoutEffect(()=>{c.updateSlot(n,l,u.current)}),a.jsx(mo,{as:r,ref:xn([t,l]),...i})}const Ktt=x.forwardRef(Gtt);function Ytt(){const e=gc(),t=gc();return{slots:e,fills:t,registerSlot:(c,l,u)=>{e.set(c,{ref:l,fillProps:u})},updateSlot:(c,l,u)=>{const d=e.get(c);d&&d.ref===l&&(ds(d.fillProps,u)||e.set(c,{ref:l,fillProps:u}))},unregisterSlot:(c,l)=>{const u=e.get(c);u&&u.ref===l&&e.delete(c)},registerFill:(c,l)=>{t.set(c,[...t.get(c)||[],l])},unregisterFill:(c,l)=>{const u=t.get(c);u&&t.set(c,u.filter(d=>d!==l))}}}function Ztt({children:e}){const[t]=x.useState(Ytt);return a.jsx(lm.Provider,{value:t,children:e})}function Qtt(){const e=gc(),t=gc();function n(c,l){e.set(c,l)}function o(c,l){e.get(c)===l&&e.delete(c)}function r(c,l,u){t.set(c,[...t.get(c)||[],{instance:l,children:u}])}function s(c,l){const u=t.get(c);u&&t.set(c,u.filter(d=>d.instance!==l))}function i(c,l,u){const d=t.get(c);if(!d)return;const p=d.find(f=>f.instance===l);p&&p.children!==u&&t.set(c,d.map(f=>f.instance===l?{instance:l,children:u}:f))}return{slots:e,fills:t,registerSlot:n,unregisterSlot:o,registerFill:r,unregisterFill:s,updateFill:i}}function Jtt({children:e}){const[t]=x.useState(Qtt);return a.jsx(oj.Provider,{value:t,children:e})}function ent(e){const t=x.useContext(lm);return{...$M(t.slots,e)}}function H0(e){const t=x.useContext(lm);return $M(t.fills,e)}function um(e){return a.jsxs(a.Fragment,{children:[a.jsx(Ftt,{...e}),a.jsx(Xtt,{...e})]})}function tnt(e,t){const{bubblesVirtually:n,...o}=e;return n?a.jsx(Ktt,{...o,ref:t}):a.jsx(Vtt,{...o})}const xf=x.forwardRef(tnt);function Spe({children:e,passthrough:t=!1}){return!x.useContext(lm).isDefault&&t?a.jsx(a.Fragment,{children:e}):a.jsx(Jtt,{children:a.jsx(Ztt,{children:e})})}Spe.displayName="SlotFillProvider";function Qn(e){const t=typeof e=="symbol"?e.description:e,n=r=>a.jsx(um,{name:e,...r});n.displayName=`${t}Fill`;const o=r=>a.jsx(xf,{name:e,...r});return o.displayName=`${t}Slot`,o.__unstableName=e,{name:e,Fill:n,Slot:o}}function nnt(){return[{name:"overlay",fn({rects:e}){return e.reference}},kpe({apply({rects:e,elements:t}){var n;const{firstElementChild:o}=(n=t.floating)!==null&&n!==void 0?n:{};o instanceof HTMLElement&&Object.assign(o.style,{width:`${e.reference.width}px`,height:`${e.reference.height}px`})}})]}const Cpe="Popover",ont=()=>a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100",className:"components-popover__triangle",role:"presentation",children:[a.jsx(he,{className:"components-popover__triangle-bg",d:"M 0 0 L 50 50 L 100 0"}),a.jsx(he,{className:"components-popover__triangle-border",d:"M 0 0 L 50 50 L 100 0",vectorEffect:"non-scaling-stroke"})]}),qpe=x.createContext(void 0),vY="components-popover__fallback-container",rnt=()=>{let e=document.body.querySelector("."+vY);return e||(e=document.createElement("div"),e.className=vY,document.body.append(e)),e},snt=(e,t)=>{const{animate:n=!0,headerTitle:o,constrainTabbing:r,onClose:s,children:i,className:c,noArrow:l=!0,position:u,placement:d="bottom-start",offset:p=0,focusOnMount:f="firstElement",anchor:b,expandOnMobile:h,onFocusOutside:g,__unstableSlotName:z=Cpe,flip:A=!0,resize:_=!0,shift:v=!1,inline:M=!1,variant:y,style:k,__unstableForcePosition:S,anchorRef:C,anchorRect:R,getAnchorRect:T,isAlternate:E,...B}=vn(e,"Popover");let N=A,j=_;S!==void 0&&(Ke("`__unstableForcePosition` prop in wp.components.Popover",{since:"6.1",version:"6.3",alternative:"`flip={ false }` and `resize={ false }`"}),N=!S,j=!S),C!==void 0&&Ke("`anchorRef` prop in wp.components.Popover",{since:"6.1",alternative:"`anchor` prop"}),R!==void 0&&Ke("`anchorRect` prop in wp.components.Popover",{since:"6.1",alternative:"`anchor` prop"}),T!==void 0&&Ke("`getAnchorRect` prop in wp.components.Popover",{since:"6.1",alternative:"`anchor` prop"});const I=E?"toolbar":y;E!==void 0&&Ke("`isAlternate` prop in wp.components.Popover",{since:"6.2",alternative:"`variant` prop with the `'toolbar'` value"});const P=x.useRef(null),[$,F]=x.useState(null),X=x.useCallback(be=>{F(be)},[]),Z=Yn("medium","<"),V=h&&Z,ee=!V&&!l,te=u?zw(u):d,J=[...d==="overlay"?nnt():[],Ntt(p),N&&Ptt(),j&&kpe({apply(be){var ze;const{firstElementChild:nt}=(ze=je.floating.current)!==null&&ze!==void 0?ze:{};nt instanceof HTMLElement&&Object.assign(nt.style,{maxHeight:`${be.availableHeight}px`,overflow:"auto"})}}),v&&Btt({crossAxis:!0,limiter:Ltt(),padding:1}),jtt({element:P})],ue=x.useContext(qpe)||z,ce=ent(ue);let me;(s||g)&&(me=(be,ze)=>{be==="focus-outside"&&g?g(ze):s&&s()});const[de,Ae]=v0e({constrainTabbing:r,focusOnMount:f,__unstableOnClose:me,onClose:me}),{x:ye,y:Ne,refs:je,strategy:ie,update:we,placement:re,middlewareData:{arrow:pe}}=Ett({placement:te==="overlay"?void 0:te,middleware:J,whileElementsMounted:(be,ze,nt)=>vce(be,ze,nt,{layoutShift:!1,animationFrame:!0})}),ke=x.useCallback(be=>{P.current=be,we()},[we]),Se=C?.top,se=C?.bottom,L=C?.startContainer,U=C?.current;x.useLayoutEffect(()=>{const be=TVe({anchor:b,anchorRef:C,anchorRect:R,getAnchorRect:T,fallbackReferenceElement:$});je.setReference(be)},[b,C,Se,se,L,U,R,T,$,je]);const ne=xn([je.setFloating,de,t]),ve=V?void 0:{position:ie,top:0,left:0,x:lG(ye),y:lG(Ne)},qe=$1(),Pe=n&&!V&&!qe,[rt,qt]=x.useState(!1),{style:wt,...Bt}=x.useMemo(()=>CVe(re),[re]),ae=Pe?{style:{...k,...wt,...ve},onAnimationComplete:()=>qt(!0),...Bt}:{animate:!1,style:{...k,...ve}},H=(!Pe||rt)&&ye!==null&&Ne!==null;let Y=a.jsxs(Rr.div,{className:oe(c,{"is-expanded":V,"is-positioned":H,[`is-${I==="toolbar"?"alternate":I}`]:I}),...ae,...B,ref:ne,...Ae,tabIndex:-1,children:[V&&a.jsx(Itt,{}),V&&a.jsxs("div",{className:"components-popover__header",children:[a.jsx("span",{className:"components-popover__header-title",children:o}),a.jsx(Ce,{className:"components-popover__close",size:"small",icon:im,onClick:s,label:m("Close")})]}),a.jsx("div",{className:"components-popover__content",children:i}),ee&&a.jsx("div",{ref:ke,className:["components-popover__arrow",`is-${re.split("-")[0]}`].join(" "),style:{left:typeof pe?.x<"u"&&Number.isFinite(pe.x)?`${pe.x}px`:"",top:typeof pe?.y<"u"&&Number.isFinite(pe.y)?`${pe.y}px`:""},children:a.jsx(ont,{})})]});const fe=ce.ref&&!M,Re=C||R||b;return fe?Y=a.jsx(um,{name:ue,children:Y}):M||(Y=hs.createPortal(a.jsx(Jf,{document,children:Y}),rnt())),Re?Y:a.jsxs(a.Fragment,{children:[a.jsx("span",{ref:X}),Y]})},Io=Rn(snt,"Popover");function int({name:e=Cpe},t){return a.jsx(xf,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}Io.Slot=x.forwardRef(int);Io.__unstableSlotNameProvider=qpe.Provider;function xY({items:e,onSelect:t,selectedIndex:n,instanceId:o,listBoxId:r,className:s,Component:i="div"}){return a.jsx(i,{id:r,role:"listbox",className:"components-autocomplete__results",children:e.map((c,l)=>a.jsx(Ce,{id:`components-autocomplete-item-${o}-${c.key}`,role:"option",__next40pxDefaultSize:!0,"aria-selected":l===n,accessibleWhenDisabled:!0,disabled:c.isDisabled,className:oe("components-autocomplete__result",s,{"is-selected":l===n}),variant:l===n?"primary":void 0,onClick:()=>t(c),children:c.label},c.key))})}function ant(e){var t;const n=(t=e.useItems)!==null&&t!==void 0?t:Ttt(e);function o({filterValue:r,instanceId:s,listBoxId:i,className:c,selectedIndex:l,onChangeOptions:u,onSelect:d,onReset:p,reset:f,contentRef:b}){const[h]=n(r),g=u3({editableContentElement:b.current}),[z,A]=x.useState(!1),_=x.useRef(null),v=xn([_,Mn(k=>{b.current&&A(k.ownerDocument!==b.current.ownerDocument)},[b])]);cnt(_,f);const M=C1(Yt,500);function y(k){M&&(k.length?M(xe(r?Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",k.length):Dn("Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.","Initial %d results loaded. Type to filter all available results. Use up and down arrow keys to navigate.",k.length),k.length),"assertive"):M(m("No results."),"assertive"))}return x.useLayoutEffect(()=>{u(h),y(h)},[h]),h.length===0?null:a.jsxs(a.Fragment,{children:[a.jsx(Io,{focusOnMount:!1,onClose:p,placement:"top-start",className:"components-autocomplete__popover",anchor:g,ref:v,children:a.jsx(xY,{items:h,onSelect:d,selectedIndex:l,instanceId:s,listBoxId:i,className:c})}),b.current&&z&&hs.createPortal(a.jsx(xY,{items:h,onSelect:d,selectedIndex:l,instanceId:s,listBoxId:i,className:c,Component:qn}),b.current.ownerDocument.body)]})}return o}function cnt(e,t){x.useEffect(()=>{const n=o=>{!e.current||e.current.contains(o.target)||t(o)};return document.addEventListener("mousedown",n),document.addEventListener("touchstart",n),()=>{document.removeEventListener("mousedown",n),document.removeEventListener("touchstart",n)}},[t,e])}const Ox=e=>{if(e===null)return"";switch(typeof e){case"string":case"number":return e.toString();case"boolean":return"";case"object":{if(e instanceof Array)return e.map(Ox).join("");if("props"in e)return Ox(e.props.children);break}default:return""}return""},wY=[],lnt={};function unt({record:e,onChange:t,onReplace:n,completers:o,contentRef:r}){const s=vt(lnt),[i,c]=x.useState(0),[l,u]=x.useState(wY),[d,p]=x.useState(""),[f,b]=x.useState(null),[h,g]=x.useState(null),z=x.useRef(!1);function A(N){if(f===null)return;const j=e.start,I=j-f.triggerPrefix.length-d.length,P=eo({html:M1(N)});t(E0(e,P,I,j))}function _(N){const{getOptionCompletion:j}=f||{};if(!N.isDisabled){if(j){const I=j(N.value,d),$=(F=>F!==null&&typeof F=="object"&&"action"in F&&F.action!==void 0&&"value"in F&&F.value!==void 0)(I)?I:{action:"insert-at-caret",value:I};if($.action==="replace"){n([$.value]);return}else $.action==="insert-at-caret"&&A($.value)}v()}}function v(){c(0),u(wY),p(""),b(null),g(null)}function M(N){c(N.length===l.length?i:0),u(N)}function y(N){if(z.current=N.key==="Backspace",!!f&&l.length!==0&&!N.defaultPrevented){switch(N.key){case"ArrowUp":{const j=(i===0?l.length:i)-1;c(j),pa()&&Yt(Ox(l[j].label),"assertive");break}case"ArrowDown":{const j=(i+1)%l.length;c(j),pa()&&Yt(Ox(l[j].label),"assertive");break}case"Escape":b(null),g(null),N.preventDefault();break;case"Enter":_(l[i]);break;case"ArrowLeft":case"ArrowRight":v();return;default:return}N.preventDefault()}}const k=x.useMemo(()=>Gl(e)?Jp(Q2(e,0)):"",[e]);x.useEffect(()=>{if(!k){f&&v();return}const N=o.reduce((de,Ae)=>{const ye=k.lastIndexOf(Ae.triggerPrefix),Ne=de!==null?k.lastIndexOf(de.triggerPrefix):-1;return ye>Ne?Ae:de},null);if(!N){f&&v();return}const{allowContext:j,triggerPrefix:I}=N,P=k.lastIndexOf(I),$=k.slice(P+I.length);if($.length>50)return;const X=l.length===0,Z=$.split(/\s/),V=Z.length===1,ee=z.current&&Z.length<=3;if(X&&!(ee||V)){f&&v();return}const te=Jp(Q2(e,void 0,Jp(e).length));if(j&&!j(k.slice(0,P),te)){f&&v();return}if(/^\s/.test($)||/\s\s+$/.test($)){f&&v();return}if(!/[\u0000-\uFFFF]*$/.test($)){f&&v();return}const J=xz(N.triggerPrefix),ue=ms(k),ce=ue.slice(ue.lastIndexOf(N.triggerPrefix)).match(new RegExp(`${J}([\0-]*)$`)),me=ce&&ce[1];b(N),g(()=>N!==f?ant(N):h),p(me===null?"":me)},[k]);const{key:S=""}=l[i]||{},{className:C}=f||{},R=!!f&&l.length>0,T=R?`components-autocomplete-listbox-${s}`:void 0,E=R?`components-autocomplete-item-${s}-${S}`:null,B=e.start!==void 0;return{listBoxId:T,activeId:E,onKeyDown:J3(y),popover:B&&h&&a.jsx(h,{className:C,filterValue:d,instanceId:s,listBoxId:T,selectedIndex:i,onChangeOptions:M,onSelect:_,value:e,contentRef:r,reset:v})}}function dnt(e){const t=x.useRef(new Set);return t.current.add(e),t.current.size>2&&t.current.delete(Array.from(t.current)[0]),Array.from(t.current)[0]}function pnt(e){const t=x.useRef(null),n=x.useRef(),{record:o}=e,r=dnt(o),{popover:s,listBoxId:i,activeId:c,onKeyDown:l}=unt({...e,contentRef:t});n.current=l;const u=xn([t,Mn(p=>{function f(b){n.current?.(b)}return p.addEventListener("keydown",f),()=>{p.removeEventListener("keydown",f)}},[])]);return o.text!==r?.text?{ref:u,children:s,"aria-autocomplete":i?"list":void 0,"aria-owns":i,"aria-activedescendant":c}:{ref:u}}const fnt=Xe("",""),bnt=()=>Xe("flex:1;",Go({marginRight:"24px"})(),";",""),hnt={name:"bjn8wh",styles:"position:relative"},mnt=e=>Xe("position:absolute;top:",e==="__unstable-large"?"8px":"3px",";",Go({right:0})()," line-height:0;",""),RA=e=>{const{color:t=Ze.gray[200],style:n="solid",width:o=Ye.borderWidth}=e||{},r=o!==Ye.borderWidth?`clamp(1px, ${o}, 10px)`:o;return`${t} ${!!o&&o!=="0"||!!t?n||"solid":n} ${r}`},gnt=(e,t)=>Xe("position:absolute;top:",t==="__unstable-large"?"20px":"15px",";right:",t==="__unstable-large"?"39px":"29px",";bottom:",t==="__unstable-large"?"20px":"15px",";left:",t==="__unstable-large"?"39px":"29px",";border-top:",RA(e?.top),";border-bottom:",RA(e?.bottom),";",Go({borderLeft:RA(e?.left)})()," ",Go({borderRight:RA(e?.right)})(),";",""),Mnt=e=>Xe("position:relative;flex:1;width:",e==="__unstable-large"?void 0:"80%",";",""),znt={name:"1nwbfnf",styles:"grid-column:span 2;margin:0 auto"},Ont=()=>Xe(Go({marginLeft:"auto"})(),";","");function ynt(e){const{className:t,size:n="default",...o}=vn(e,"BorderBoxControlLinkedButton"),r=ro(),s=x.useMemo(()=>r(mnt(n),t),[t,r,n]);return{...o,className:s}}const Ant=(e,t)=>{const{className:n,isLinked:o,...r}=ynt(e),s=m(o?"Unlink sides":"Link sides");return a.jsx(Ce,{...r,size:"small",icon:o?xa:jl,iconSize:24,label:s,ref:t,className:n})},vnt=Rn(Ant,"BorderBoxControlLinkedButton");function xnt(e){const{className:t,value:n,size:o="default",...r}=vn(e,"BorderBoxControlVisualizer"),s=ro(),i=x.useMemo(()=>s(gnt(n,o),t),[s,t,n,o]);return{...r,className:i,value:n}}const wnt=(e,t)=>{const{value:n,...o}=xnt(e);return a.jsx(mo,{...o,ref:t})},_nt=Rn(wnt,"BorderBoxControlVisualizer"),knt=({isBlock:e,isDeselectable:t,size:n})=>Xe("background:",Ze.ui.background,";border:1px solid transparent;border-radius:",Ye.radiusSmall,";display:inline-flex;min-width:0;position:relative;",Rnt(n)," ",!t&&Snt(e),"@media not ( prefers-reduced-motion ){&[data-indicator-animated]::before{transition-property:transform,border-radius;transition-duration:0.2s;transition-timing-function:ease-out;}}&::before{content:'';position:absolute;pointer-events:none;background:",Ze.theme.foreground,`;outline:2px solid transparent;outline-offset:-3px;--antialiasing-factor:100;border-radius:calc( + `),()=>{document.head.removeChild(d)}},[t]),a.jsx(GYe,{isPresent:t,childRef:o,sizeRef:r,children:x.cloneElement(e,{ref:o})})}const YYe=({children:e,initial:t,isPresent:n,onExitComplete:o,custom:r,presenceAffectsLayout:s,mode:i})=>{const c=_P(ZYe),l=x.useId(),u=x.useCallback(p=>{c.set(p,!0);for(const f of c.values())if(!f)return;o&&o()},[c,o]),d=x.useMemo(()=>({id:l,initial:t,isPresent:n,custom:r,onExitComplete:u,register:p=>(c.set(p,!1),()=>c.delete(p))}),s?[Math.random(),u]:[n,u]);return x.useMemo(()=>{c.forEach((p,f)=>c.set(f,!1))},[n]),x.useEffect(()=>{!n&&!c.size&&o&&o()},[n]),i==="popLayout"&&(e=a.jsx(KYe,{isPresent:n,children:e})),a.jsx(kw.Provider,{value:d,children:e})};function ZYe(){return new Map}const SA=e=>e.key||"";function XK(e){const t=[];return x.Children.forEach(e,n=>{x.isValidElement(n)&&t.push(n)}),t}const Wd=({children:e,exitBeforeEnter:t,custom:n,initial:o=!0,onExitComplete:r,presenceAffectsLayout:s=!0,mode:i="sync"})=>{const c=x.useMemo(()=>XK(e),[e]),l=c.map(SA),u=x.useRef(!0),d=x.useRef(c),p=_P(()=>new Map),[f,b]=x.useState(c),[h,g]=x.useState(c);que(()=>{u.current=!1,d.current=c;for(let _=0;_<h.length;_++){const v=SA(h[_]);l.includes(v)?p.delete(v):p.get(v)!==!0&&p.set(v,!1)}},[h,l.length,l.join("-")]);const z=[];if(c!==f){let _=[...c];for(let v=0;v<h.length;v++){const M=h[v],y=SA(M);l.includes(y)||(_.splice(v,0,M),z.push(M))}i==="wait"&&z.length&&(_=z),g(XK(_)),b(c);return}const{forceRender:A}=x.useContext(OP);return a.jsx(a.Fragment,{children:h.map(_=>{const v=SA(_),M=c===h||l.includes(v),y=()=>{if(p.has(v))p.set(v,!0);else return;let k=!0;p.forEach(S=>{S||(k=!1)}),k&&(A?.(),g(d.current),r&&r())};return a.jsx(YYe,{isPresent:M,initial:!u.current||o?void 0:!1,custom:M?void 0:n,presenceAffectsLayout:s,mode:i,onExitComplete:M?void 0:y,children:_},v)})})},NC=["40em","52em","64em"],QYe=(e={})=>{const{defaultIndex:t=0}=e;if(typeof t!="number")throw new TypeError(`Default breakpoint index should be a number. Got: ${t}, ${typeof t}`);if(t<0||t>NC.length-1)throw new RangeError(`Default breakpoint index out of range. Theme has ${NC.length} breakpoints, got index ${t}`);const[n,o]=x.useState(t);return x.useEffect(()=>{const r=()=>NC.filter(i=>typeof window<"u"?window.matchMedia(`screen and (min-width: ${i})`).matches:!1).length,s=()=>{const i=r();n!==i&&o(i)};return s(),typeof window<"u"&&window.addEventListener("resize",s),()=>{typeof window<"u"&&window.removeEventListener("resize",s)}},[n]),n};function W8(e,t={}){const n=QYe(t);if(!Array.isArray(e)&&typeof e!="function")return e;const o=e||[];return o[n>=o.length?o.length-1:n]}const JYe={name:"zjik7",styles:"display:flex"},eZe={name:"qgaee5",styles:"display:block;max-height:100%;max-width:100%;min-height:0;min-width:0"},tZe={name:"82a6rk",styles:"flex:1"},nZe={name:"13nosa1",styles:">*{min-height:0;}"},oZe={name:"1pwxzk4",styles:">*{min-width:0;}"};function rZe(e){const{isReversed:t,...n}=e;return typeof t<"u"?(Ke("Flex isReversed",{alternative:'Flex direction="row-reverse" or "column-reverse"',since:"5.9"}),{...n,direction:t?"row-reverse":"row"}):n}function Uue(e){const{align:t,className:n,direction:o="row",expanded:r=!0,gap:s=2,justify:i="space-between",wrap:c=!1,...l}=vn(rZe(e),"Flex"),u=Array.isArray(o)?o:[o],d=W8(u),p=typeof d=="string"&&!!d.includes("column"),f=ro(),b=x.useMemo(()=>{const h=Xe({alignItems:t??(p?"normal":"center"),flexDirection:d,flexWrap:c?"wrap":void 0,gap:Je(s),justifyContent:i,height:p&&r?"100%":void 0,width:!p&&r?"100%":void 0},"","");return f(JYe,h,p?nZe:oZe,n)},[t,n,f,d,r,s,p,i,c]);return{...l,className:b,isColumn:p}}const Xue=x.createContext({flexItemDisplay:void 0}),sZe=()=>x.useContext(Xue);function iZe(e,t){const{children:n,isColumn:o,...r}=Uue(e);return a.jsx(Xue.Provider,{value:{flexItemDisplay:o?"block":void 0},children:a.jsx(mo,{...r,ref:t,children:n})})}const Yo=Rn(iZe,"Flex");function Gue(e){const{className:t,display:n,isBlock:o=!1,...r}=vn(e,"FlexItem"),s={},i=sZe().flexItemDisplay;s.Base=Xe({display:n||i},"","");const l=ro()(eZe,s.Base,o&&tZe,t);return{...r,className:l}}function aZe(e,t){const n=Gue(e);return a.jsx(mo,{...n,ref:t})}const Tn=Rn(aZe,"FlexItem");function cZe(e){const t=vn(e,"FlexBlock");return Gue({isBlock:!0,...t})}function lZe(e,t){const n=cZe(e);return a.jsx(mo,{...n,ref:t})}const eu=Rn(lZe,"FlexBlock");function ns(e){return typeof e<"u"&&e!==null}function uZe(e){const{className:t,margin:n,marginBottom:o=2,marginLeft:r,marginRight:s,marginTop:i,marginX:c,marginY:l,padding:u,paddingBottom:d,paddingLeft:p,paddingRight:f,paddingTop:b,paddingX:h,paddingY:g,...z}=vn(e,"Spacer"),_=ro()(ns(n)&&Xe("margin:",Je(n),";",""),ns(l)&&Xe("margin-bottom:",Je(l),";margin-top:",Je(l),";",""),ns(c)&&Xe("margin-left:",Je(c),";margin-right:",Je(c),";",""),ns(i)&&Xe("margin-top:",Je(i),";",""),ns(o)&&Xe("margin-bottom:",Je(o),";",""),ns(r)&&Go({marginLeft:Je(r)})(),ns(s)&&Go({marginRight:Je(s)})(),ns(u)&&Xe("padding:",Je(u),";",""),ns(g)&&Xe("padding-bottom:",Je(g),";padding-top:",Je(g),";",""),ns(h)&&Xe("padding-left:",Je(h),";padding-right:",Je(h),";",""),ns(b)&&Xe("padding-top:",Je(b),";",""),ns(d)&&Xe("padding-bottom:",Je(d),";",""),ns(p)&&Go({paddingLeft:Je(p)})(),ns(f)&&Go({paddingRight:Je(f)})(),t);return{...z,className:_}}function dZe(e,t){const n=uZe(e);return a.jsx(mo,{...n,ref:t})}const t1=Rn(dZe,"Spacer");function pZe({icon:e,size:t=24,...n},o){return x.cloneElement(e,{width:t,height:t,...n,ref:o})}const wn=x.forwardRef(pZe),RP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M2 12c0 3.6 2.4 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.5 0-4.5-1.5-4.5-4s2-4.5 4.5-4.5h3.5V6H8c-3.6 0-6 2.4-6 6zm19.5-1h-8v1.5h8V11zm0 5h-8v1.5h8V16zm0-10h-8v1.5h8V6z"})}),fZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 5.5V8H20V5.5H22.5V4H20V1.5H18.5V4H16V5.5H18.5ZM13.9624 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V10.0391H18.5V18C18.5 18.2761 18.2761 18.5 18 18.5H10L10 10.4917L16.4589 10.5139L16.4641 9.01389L5.5 8.97618V6C5.5 5.72386 5.72386 5.5 6 5.5H13.9624V4ZM5.5 10.4762V18C5.5 18.2761 5.72386 18.5 6 18.5H8.5L8.5 10.4865L5.5 10.4762Z"})}),qw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7.5 5.5h9V4h-9v1.5Zm-3.5 7h16V11H4v1.5Zm3.5 7h9V18h-9v1.5Z"})}),bZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 12.8h16v-1.5H4v1.5zm0 7h12.4v-1.5H4v1.5zM4 4.3v1.5h16V4.3H4z"})}),$3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 5.5H4V4h9v1.5Zm7 7H4V11h16v1.5Zm-7 7H4V18h9v1.5Z"})}),Rw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 5.5H5V4h14v1.5ZM19 20H5v-1.5h14V20ZM5 9h14v6H5V9Z"})}),V3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.111 5.5H20V4h-8.889v1.5ZM4 12.5h16V11H4v1.5Zm7.111 7H20V18h-8.889v1.5Z"})}),hZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.934 7.406a1 1 0 0 0 .914.594H19a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h5.764a.5.5 0 0 1 .447.276l.723 1.63Zm1.064-1.216a.5.5 0 0 0 .462.31H19a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.764a2 2 0 0 1 1.789 1.106l.445 1.084ZM8.5 10.5h7V12h-7v-1.5Zm7 3.5h-7v1.5h7V14Z"})}),mZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m16.5 13.5-3.7 3.7V4h-1.5v13.2l-3.8-3.7-1 1 5.5 5.6 5.5-5.6z"})}),GK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 11.2H6.8l3.7-3.7-1-1L3.9 12l5.6 5.5 1-1-3.7-3.7H20z"})}),N8=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m14.5 6.5-1 1 3.7 3.7H4v1.6h13.2l-3.7 3.7 1 1 5.6-5.5z"})}),gZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.5 5.5h-13c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5h-13c-.3 0-.5-.2-.5-.5v-9c0-.3.2-.5.5-.5h13c.3 0 .5.2.5.5v9zM6.5 12H8v-2h2V8.5H6.5V12zm9.5 2h-2v1.5h3.5V12H16v2z"})}),Kue=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.7 4.3c-1.2 0-2.8 0-3.8 1-.6.6-.9 1.5-.9 2.6V14c-.6-.6-1.5-1-2.5-1C8.6 13 7 14.6 7 16.5S8.6 20 10.5 20c1.5 0 2.8-1 3.3-2.3.5-.8.7-1.8.7-2.5V7.9c0-.7.2-1.2.5-1.6.6-.6 1.8-.6 2.8-.6h.3V4.3h-.4z"})}),Yue=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5.5 12h1.75l-2.5 3-2.5-3H4a8 8 0 113.134 6.35l.907-1.194A6.5 6.5 0 105.5 12zm9.53 1.97l-2.28-2.28V8.5a.75.75 0 00-1.5 0V12a.747.747 0 00.218.529l1.282-.84-1.28.842 2.5 2.5a.75.75 0 101.06-1.061z"})}),Tw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 8h-1V6h-5v2h-2V6H6v2H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm.5 10c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5v-8c0-.3.2-.5.5-.5h14c.3 0 .5.2.5.5v8z"})}),Zue=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.5h14c.3 0 .5.2.5.5v3.5h-15V5c0-.3.2-.5.5-.5zm8 5.5h6.5v3.5H13V10zm-1.5 3.5h-7V10h7v3.5zm-7 5.5v-4h7v4.5H5c-.3 0-.5-.2-.5-.5zm14.5.5h-6V15h6.5v4c0 .3-.2.5-.5.5z"})}),Que=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M8 12.5h8V11H8v1.5Z M19 6.5H5a2 2 0 0 0-2 2V15a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a2 2 0 0 0-2-2ZM5 8h14a.5.5 0 0 1 .5.5V15a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V8.5A.5.5 0 0 1 5 8Z"})}),MZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M14.5 17.5H9.5V16H14.5V17.5Z M14.5 8H9.5V6.5H14.5V8Z M7 3.5H17C18.1046 3.5 19 4.39543 19 5.5V9C19 10.1046 18.1046 11 17 11H7C5.89543 11 5 10.1046 5 9V5.5C5 4.39543 5.89543 3.5 7 3.5ZM17 5H7C6.72386 5 6.5 5.22386 6.5 5.5V9C6.5 9.27614 6.72386 9.5 7 9.5H17C17.2761 9.5 17.5 9.27614 17.5 9V5.5C17.5 5.22386 17.2761 5 17 5Z M7 13H17C18.1046 13 19 13.8954 19 15V18.5C19 19.6046 18.1046 20.5 17 20.5H7C5.89543 20.5 5 19.6046 5 18.5V15C5 13.8954 5.89543 13 7 13ZM17 14.5H7C6.72386 14.5 6.5 14.7239 6.5 15V18.5C6.5 18.7761 6.72386 19 7 19H17C17.2761 19 17.5 18.7761 17.5 18.5V15C17.5 14.7239 17.2761 14.5 17 14.5Z"})}),Jue=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V7h15v12zM9 10H7v2h2v-2zm0 4H7v2h2v-2zm4-4h-2v2h2v-2zm4 0h-2v2h2v-2zm-4 4h-2v2h2v-2zm4 0h-2v2h2v-2z"})}),zZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M6 5.5h12a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5ZM4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Zm4 10h2v-1.5H8V16Zm5 0h-2v-1.5h2V16Zm1 0h2v-1.5h-2V16Z"})}),gz=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M6 5.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5zM4 6a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2H6a2 2 0 01-2-2V6zm11-.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5zM13 6a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2h-3a2 2 0 01-2-2V6zm5 8.5h-3a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5zM15 13a2 2 0 00-2 2v3a2 2 0 002 2h3a2 2 0 002-2v-3a2 2 0 00-2-2h-3zm-9 1.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zM4 15a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2H6a2 2 0 01-2-2v-3z",fillRule:"evenodd",clipRule:"evenodd"})}),OZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 12a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0ZM12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-.75 12v-1.5h1.5V16h-1.5Zm0-8v5h1.5V8h-1.5Z"})}),M0=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z"})}),tu=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.5 11.6L12 16l-5.5-4.4.9-1.2L12 14l4.5-3.6 1 1.2z"})}),Ll=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14.6 7l-1.2-1L8 12l5.4 6 1.2-1-4.6-5z"})}),Ew=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m13.1 16-3.4-4 3.4-4 1.1 1-2.6 3 2.6 3-1.1 1z"})}),ma=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10.6 6L9.4 7l4.6 5-4.6 5 1.2 1 5.4-6z"})}),Af=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10.8622 8.04053L14.2805 12.0286L10.8622 16.0167L9.72327 15.0405L12.3049 12.0286L9.72327 9.01672L10.8622 8.04053Z"})}),Ww=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M6.5 12.4L12 8l5.5 4.4-.9 1.2L12 10l-4.5 3.6-1-1.2z"})}),yZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M20 6H4c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H4c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h16c.3 0 .5.2.5.5v9zM10 10H8v2h2v-2zm-5 2h2v-2H5v2zm8-2h-2v2h2v-2zm-5 6h8v-2H8v2zm6-4h2v-2h-2v2zm3 0h2v-2h-2v2zm0 4h2v-2h-2v2zM5 16h2v-2H5v2z"})}),im=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"})}),rp=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"})}),AZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.3 10.1C17.3 7.60001 15.2 5.70001 12.5 5.70001C10.3 5.70001 8.4 7.10001 7.9 9.00001H7.7C5.7 9.00001 4 10.7 4 12.8C4 14.9 5.7 16.6 7.7 16.6H9.5V15.2H7.7C6.5 15.2 5.5 14.1 5.5 12.9C5.5 11.7 6.5 10.5 7.7 10.5H9L9.3 9.40001C9.7 8.10001 11 7.20001 12.5 7.20001C14.3 7.20001 15.8 8.50001 15.8 10.1V11.4L17.1 11.6C17.9 11.7 18.5 12.5 18.5 13.4C18.5 14.4 17.7 15.2 16.8 15.2H14.5V16.6H16.7C18.5 16.6 19.9 15.1 19.9 13.3C20 11.7 18.8 10.4 17.3 10.1Z M14.1245 14.2426L15.1852 13.182L12.0032 10L8.82007 13.1831L9.88072 14.2438L11.25 12.8745V18H12.75V12.8681L14.1245 14.2426Z"})}),vZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})}),TP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M20.8 10.7l-4.3-4.3-1.1 1.1 4.3 4.3c.1.1.1.3 0 .4l-4.3 4.3 1.1 1.1 4.3-4.3c.7-.8.7-1.9 0-2.6zM4.2 11.8l4.3-4.3-1-1-4.3 4.3c-.7.7-.7 1.8 0 2.5l4.3 4.3 1.1-1.1-4.3-4.3c-.2-.1-.2-.3-.1-.4z"})}),ede=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M10.289 4.836A1 1 0 0111.275 4h1.306a1 1 0 01.987.836l.244 1.466c.787.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 011.216.437l.653 1.13a1 1 0 01-.23 1.273l-1.148.944a6.025 6.025 0 010 2.435l1.149.946a1 1 0 01.23 1.272l-.653 1.13a1 1 0 01-1.216.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 01-.987.836h-1.306a1 1 0 01-.986-.836l-.244-1.466a5.995 5.995 0 01-2.108-1.218l-1.394.522a1 1 0 01-1.217-.436l-.653-1.131a1 1 0 01.23-1.272l1.149-.946a6.026 6.026 0 010-2.435l-1.148-.944a1 1 0 01-.23-1.272l.653-1.131a1 1 0 011.217-.437l1.393.522a5.994 5.994 0 012.108-1.218l.244-1.466zM14.929 12a3 3 0 11-6 0 3 3 0 016 0z",clipRule:"evenodd"})}),xZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.2 10.9c-.5-1-1.2-2.1-2.1-3.2-.6-.9-1.3-1.7-2.1-2.6L12 4l-1 1.1c-.6.9-1.3 1.7-2 2.6-.8 1.2-1.5 2.3-2 3.2-.6 1.2-1 2.2-1 3 0 3.4 2.7 6.1 6.1 6.1s6.1-2.7 6.1-6.1c0-.8-.3-1.8-1-3zm-5.1 7.6c-2.5 0-4.6-2.1-4.6-4.6 0-.3.1-1 .8-2.3.5-.9 1.1-1.9 2-3.1.7-.9 1.3-1.7 1.8-2.3.7.8 1.3 1.6 1.8 2.3.8 1.1 1.5 2.2 2 3.1.7 1.3.8 2 .8 2.3 0 2.5-2.1 4.6-4.6 4.6z"})}),wZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM6 17.5c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h3v10H6zm13.5-.5c0 .3-.2.5-.5.5h-3v-10h3c.3 0 .5.2.5.5v9z"})}),_Ze=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 7.5h-5v10h5v-10Zm1.5 0v10H19a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5h-2.5ZM6 7.5h2.5v10H6a.5.5 0 0 1-.5-.5V8a.5.5 0 0 1 .5-.5ZM6 6h13a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z"})}),H3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5 4.5h11a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5ZM3 5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm17 3v10.75c0 .69-.56 1.25-1.25 1.25H6v1.5h12.75a2.75 2.75 0 0 0 2.75-2.75V8H20Z"})}),EP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.625 5.5h9.75c.069 0 .125.056.125.125v9.75a.125.125 0 0 1-.125.125h-9.75a.125.125 0 0 1-.125-.125v-9.75c0-.069.056-.125.125-.125ZM4 5.625C4 4.728 4.728 4 5.625 4h9.75C16.273 4 17 4.728 17 5.625v9.75c0 .898-.727 1.625-1.625 1.625h-9.75A1.625 1.625 0 0 1 4 15.375v-9.75Zm14.5 11.656v-9H20v9C20 18.8 18.77 20 17.251 20H6.25v-1.5h11.001c.69 0 1.249-.528 1.249-1.219Z"})}),U3=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12.9c0 .6.5 1.1 1.1 1.1.3 0 .5-.1.8-.3L8.5 17H18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H7.9l-2.4 2.4V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v9z"})}),WP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})}),kZe=a.jsxs(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12.9c0 .6.5 1.1 1.1 1.1.3 0 .5-.1.8-.3L8.5 17H18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H7.9l-2.4 2.4V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v9z",fillRule:"evenodd",clipRule:"evenodd"}),a.jsx(he,{d:"M15 15V15C15 13.8954 14.1046 13 13 13L11 13C9.89543 13 9 13.8954 9 15V15",fillRule:"evenodd",clipRule:"evenodd"}),a.jsx(dae,{cx:"12",cy:"9",r:"2",fillRule:"evenodd",clipRule:"evenodd"})]}),SZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M6.68822 16.625L5.5 17.8145L5.5 5.5L18.5 5.5L18.5 16.625L6.68822 16.625ZM7.31 18.125L19 18.125C19.5523 18.125 20 17.6773 20 17.125L20 5C20 4.44772 19.5523 4 19 4H5C4.44772 4 4 4.44772 4 5V19.5247C4 19.8173 4.16123 20.086 4.41935 20.2237C4.72711 20.3878 5.10601 20.3313 5.35252 20.0845L7.31 18.125ZM16 9.99997H8V8.49997H16V9.99997ZM8 14H13V12.5H8V14Z"})}),CZe=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M6.68822 10.625L6.24878 11.0649L5.5 11.8145L5.5 5.5L12.5 5.5V8L14 6.5V5C14 4.44772 13.5523 4 13 4H5C4.44772 4 4 4.44771 4 5V13.5247C4 13.8173 4.16123 14.086 4.41935 14.2237C4.72711 14.3878 5.10601 14.3313 5.35252 14.0845L7.31 12.125H8.375L9.875 10.625H7.31H6.68822ZM14.5605 10.4983L11.6701 13.75H16.9975C17.9963 13.75 18.7796 14.1104 19.3553 14.7048C19.9095 15.2771 20.2299 16.0224 20.4224 16.7443C20.7645 18.0276 20.7543 19.4618 20.7487 20.2544C20.7481 20.345 20.7475 20.4272 20.7475 20.4999L19.2475 20.5001C19.2475 20.4191 19.248 20.3319 19.2484 20.2394V20.2394C19.2526 19.4274 19.259 18.2035 18.973 17.1307C18.8156 16.5401 18.586 16.0666 18.2778 15.7483C17.9909 15.4521 17.5991 15.25 16.9975 15.25H11.8106L14.5303 17.9697L13.4696 19.0303L8.96956 14.5303L13.4394 9.50171L14.5605 10.4983Z"})}),qZe=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"m6.249 11.065.44-.44h3.186l-1.5 1.5H7.31l-1.957 1.96A.792.792 0 0 1 4 13.524V5a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1.5L12.5 8V5.5h-7v6.315l.749-.75ZM20 19.75H7v-1.5h13v1.5Zm0-12.653-8.967 9.064L8 17l.867-2.935L17.833 5 20 7.097Z"})}),NP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.7 3H5.3C4 3 3 4 3 5.3v13.4C3 20 4 21 5.3 21h13.4c1.3 0 2.3-1 2.3-2.3V5.3C21 4 20 3 18.7 3zm.8 15.7c0 .4-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8V5.3c0-.4.4-.8.8-.8h6.2v8.9l2.5-3.1 2.5 3.1V4.5h2.2c.4 0 .8.4.8.8v13.4z"})}),tde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 20v-2h2v-1.5H7.75a.25.25 0 0 1-.25-.25V4H6v2H4v1.5h2v8.75c0 .966.784 1.75 1.75 1.75h8.75v2H18ZM9.273 7.5h6.977a.25.25 0 0 1 .25.25v6.977H18V7.75A1.75 1.75 0 0 0 16.25 6H9.273v1.5Z"})}),RZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4zm.8-4l.7.7 2-2V12h1V9.2l2 2 .7-.7-2-2H12v-1H9.2l2-2-.7-.7-2 2V4h-1v2.8l-2-2-.7.7 2 2H4v1h2.8l-2 2z"})}),KK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20.5 16h-.7V8c0-1.1-.9-2-2-2H6.2c-1.1 0-2 .9-2 2v8h-.7c-.8 0-1.5.7-1.5 1.5h20c0-.8-.7-1.5-1.5-1.5zM5.7 8c0-.3.2-.5.5-.5h11.6c.3 0 .5.2.5.5v7.6H5.7V8z"})}),TZe=a.jsxs(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(he,{d:"M4 16h10v1.5H4V16Zm0-4.5h16V13H4v-1.5ZM10 7h10v1.5H10V7Z",fillRule:"evenodd",clipRule:"evenodd"}),a.jsx(he,{d:"m4 5.25 4 2.5-4 2.5v-5Z"})]}),B8=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8 4a4 4 0 0 0 4-4H8a4 4 0 0 0 4 4Z"})}),nde=a.jsx(ge,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M8 7h2V5H8v2zm0 6h2v-2H8v2zm0 6h2v-2H8v2zm6-14v2h2V5h-2zm0 8h2v-2h-2v2zm0 6h2v-2h-2v2z"})}),ode=a.jsx(ge,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8.5 18.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h2.5v13zm10-.5c0 .3-.2.5-.5.5h-8v-13h8c.3 0 .5.2.5.5v12z"})}),rde=a.jsx(ge,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-4 14.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h8v13zm4.5-.5c0 .3-.2.5-.5.5h-2.5v-13H18c.3 0 .5.2.5.5v12z"})}),EZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 11.3l-1-1.1-4 4V3h-1.5v11.3L7 10.2l-1 1.1 6.2 5.8 5.8-5.8zm.5 3.7v3.5h-13V15H4v5h16v-5h-1.5z"})}),Nd=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})}),vf=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"})}),WZe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.218 5.377a.25.25 0 0 0-.436 0l-7.29 12.96a.25.25 0 0 0 .218.373h14.58a.25.25 0 0 0 .218-.372l-7.29-12.96Zm-1.743-.735c.669-1.19 2.381-1.19 3.05 0l7.29 12.96a1.75 1.75 0 0 1-1.525 2.608H4.71a1.75 1.75 0 0 1-1.525-2.608l7.29-12.96ZM12.75 17.46h-1.5v-1.5h1.5v1.5Zm-1.5-3h1.5v-5h-1.5v5Z"})}),BP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.848 8a1 1 0 0 1-.914-.594l-.723-1.63a.5.5 0 0 0-.447-.276H5a.5.5 0 0 0-.5.5v11.5a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5v-9A.5.5 0 0 0 19 8h-6.152Zm.612-1.5a.5.5 0 0 1-.462-.31l-.445-1.084A2 2 0 0 0 10.763 4H5a2 2 0 0 0-2 2v11.5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-5.54Z"})}),NZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4 4 19h16L12 4zm0 3.2 5.5 10.3H12V7.2z"})}),BZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14.7 11.3c1-.6 1.5-1.6 1.5-3 0-2.3-1.3-3.4-4-3.4H7v14h5.8c1.4 0 2.5-.3 3.3-1 .8-.7 1.2-1.7 1.2-2.9.1-1.9-.8-3.1-2.6-3.7zm-5.1-4h2.3c.6 0 1.1.1 1.4.4.3.3.5.7.5 1.2s-.2 1-.5 1.2c-.3.3-.8.4-1.4.4H9.6V7.3zm4.6 9c-.4.3-1 .4-1.7.4H9.6v-3.9h2.9c.7 0 1.3.2 1.7.5.4.3.6.8.6 1.5s-.2 1.2-.6 1.5z"})}),LZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7.1 6.8L3.1 18h1.6l1.1-3h4.3l1.1 3h1.6l-4-11.2H7.1zm-.8 6.8L8 8.9l1.7 4.7H6.3zm14.5-1.5c-.3-.6-.7-1.1-1.2-1.5-.6-.4-1.2-.6-1.9-.6-.5 0-.9.1-1.4.3-.4.2-.8.5-1.1.8V6h-1.4v12h1.3l.2-1c.2.4.6.6 1 .8.4.2.9.3 1.4.3.7 0 1.2-.2 1.8-.5.5-.4 1-.9 1.3-1.5.3-.6.5-1.3.5-2.1-.1-.6-.2-1.3-.5-1.9zm-1.7 4c-.4.5-.9.8-1.6.8s-1.2-.2-1.7-.7c-.4-.5-.7-1.2-.7-2.1 0-.9.2-1.6.7-2.1.4-.5 1-.7 1.7-.7s1.2.3 1.6.8c.4.5.6 1.2.6 2 .1.8-.2 1.4-.6 2z"})}),PZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 7.2v1.5h16V7.2H4zm8 8.6h8v-1.5h-8v1.5zm-8-3.5l3 3-3 3 1 1 4-4-4-4-1 1z"})}),jZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 5.5H4V4H20V5.5ZM12 12.5H4V11H12V12.5ZM20 20V18.5H4V20H20ZM20.0303 9.03033L17.0607 12L20.0303 14.9697L18.9697 16.0303L15.4697 12.5303L14.9393 12L15.4697 11.4697L18.9697 7.96967L20.0303 9.03033Z"})}),IZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.5 5L10 19h1.9l2.5-14z"})}),sde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.1 15.8H20v-1.5h-8.9v1.5zm0-8.6v1.5H20V7.2h-8.9zM6 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"})}),DZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 8.8h8.9V7.2H4v1.6zm0 7h8.9v-1.5H4v1.5zM18 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"})}),Mz=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.1 15.8H20v-1.5h-8.9v1.5zm0-8.6v1.5H20V7.2h-8.9zM5 6.7V10h1V5.3L3.8 6l.4 1 .8-.3zm-.4 5.7c-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5h2.7v-1h-1c.3-.6.8-1.4.9-2.1.1-.3 0-.8-.2-1.1-.5-.6-1.3-.5-1.7-.4z"})}),FZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M3.8 15.8h8.9v-1.5H3.8v1.5zm0-7h8.9V7.2H3.8v1.6zm14.7-2.1V10h1V5.3l-2.2.7.3 1 .9-.3zm1.2 6.1c-.5-.6-1.2-.5-1.7-.4-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5H20v-1h-.9c.3-.6.8-1.4.9-2.1 0-.3 0-.8-.3-1.1z"})}),$Ze=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M5.52 2h7.43c.55 0 1 .45 1 1s-.45 1-1 1h-1v13c0 .55-.45 1-1 1s-1-.45-1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55-.45 1-1 1s-1-.45-1-1v-5.96h-.43C3.02 11.04 1 9.02 1 6.52S3.02 2 5.52 2zM14 14l5-4-5-4v8z"})}),VZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11 16.8c-.1-.1-.2-.3-.3-.5v-2.6c0-.9-.1-1.7-.3-2.2-.2-.5-.5-.9-.9-1.2-.4-.2-.9-.3-1.6-.3-.5 0-1 .1-1.5.2s-.9.3-1.2.6l.2 1.2c.4-.3.7-.4 1.1-.5.3-.1.7-.2 1-.2.6 0 1 .1 1.3.4.3.2.4.7.4 1.4-1.2 0-2.3.2-3.3.7s-1.4 1.1-1.4 2.1c0 .7.2 1.2.7 1.6.4.4 1 .6 1.8.6.9 0 1.7-.4 2.4-1.2.1.3.2.5.4.7.1.2.3.3.6.4.3.1.6.1 1.1.1h.1l.2-1.2h-.1c-.4.1-.6 0-.7-.1zM9.2 16c-.2.3-.5.6-.9.8-.3.1-.7.2-1.1.2-.4 0-.7-.1-.9-.3-.2-.2-.3-.5-.3-.9 0-.6.2-1 .7-1.3.5-.3 1.3-.4 2.5-.5v2zm10.6-3.9c-.3-.6-.7-1.1-1.2-1.5-.6-.4-1.2-.6-1.9-.6-.5 0-.9.1-1.4.3-.4.2-.8.5-1.1.8V6h-1.4v12h1.3l.2-1c.2.4.6.6 1 .8.4.2.9.3 1.4.3.7 0 1.2-.2 1.8-.5.5-.4 1-.9 1.3-1.5.3-.6.5-1.3.5-2.1-.1-.6-.2-1.3-.5-1.9zm-1.7 4c-.4.5-.9.8-1.6.8s-1.2-.2-1.7-.7c-.4-.5-.7-1.2-.7-2.1 0-.9.2-1.6.7-2.1.4-.5 1-.7 1.7-.7s1.2.3 1.6.8c.4.5.6 1.2.6 2s-.2 1.4-.6 2z"})}),ide=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 7.2v1.5h16V7.2H4zm8 8.6h8v-1.5h-8v1.5zm-4-4.6l-4 4 4 4 1-1-3-3 3-3-1-1z"})}),ade=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 5.5H4V4H20V5.5ZM12 12.5H4V11H12V12.5ZM20 20V18.5H4V20H20ZM15.4697 14.9697L18.4393 12L15.4697 9.03033L16.5303 7.96967L20.0303 11.4697L20.5607 12L20.0303 12.5303L16.5303 16.0303L15.4697 14.9697Z"})}),cde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9.1 9v-.5c0-.6.2-1.1.7-1.4.5-.3 1.2-.5 2-.5.7 0 1.4.1 2.1.3.7.2 1.4.5 2.1.9l.2-1.9c-.6-.3-1.2-.5-1.9-.7-.8-.1-1.6-.2-2.4-.2-1.5 0-2.7.3-3.6 1-.8.7-1.2 1.5-1.2 2.6V9h2zM20 12H4v1h8.3c.3.1.6.2.8.3.5.2.9.5 1.1.8.3.3.4.7.4 1.2 0 .7-.2 1.1-.8 1.5-.5.3-1.2.5-2.1.5-.8 0-1.6-.1-2.4-.3-.8-.2-1.5-.5-2.2-.8L7 18.1c.5.2 1.2.4 2 .6.8.2 1.6.3 2.4.3 1.7 0 3-.3 3.9-1 .9-.7 1.3-1.6 1.3-2.8 0-.9-.2-1.7-.7-2.2H20v-1z"})}),HZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 18v1h10v-1H7zm5-2c1.5 0 2.6-.4 3.4-1.2.8-.8 1.1-2 1.1-3.5V5H15v5.8c0 1.2-.2 2.1-.6 2.8-.4.7-1.2 1-2.4 1s-2-.3-2.4-1c-.4-.7-.6-1.6-.6-2.8V5H7.5v6.2c0 1.5.4 2.7 1.1 3.5.8.9 1.9 1.3 3.4 1.3z"})}),UZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6.1 6.8L2.1 18h1.6l1.1-3h4.3l1.1 3h1.6l-4-11.2H6.1zm-.8 6.8L7 8.9l1.7 4.7H5.3zm15.1-.7c-.4-.5-.9-.8-1.6-1 .4-.2.7-.5.8-.9.2-.4.3-.9.3-1.4 0-.9-.3-1.6-.8-2-.6-.5-1.3-.7-2.4-.7h-3.5V18h4.2c1.1 0 2-.3 2.6-.8.6-.6 1-1.4 1-2.4-.1-.8-.3-1.4-.6-1.9zm-5.7-4.7h1.8c.6 0 1.1.1 1.4.4.3.2.5.7.5 1.3 0 .6-.2 1.1-.5 1.3-.3.2-.8.4-1.4.4h-1.8V8.2zm4 8c-.4.3-.9.5-1.5.5h-2.6v-3.8h2.6c1.4 0 2 .6 2 1.9.1.6-.1 1-.5 1.4z"})}),zz=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6 4a2 2 0 0 0-2 2v3h1.5V6a.5.5 0 0 1 .5-.5h3V4H6Zm3 14.5H6a.5.5 0 0 1-.5-.5v-3H4v3a2 2 0 0 0 2 2h3v-1.5Zm6 1.5v-1.5h3a.5.5 0 0 0 .5-.5v-3H20v3a2 2 0 0 1-2 2h-3Zm3-16a2 2 0 0 1 2 2v3h-1.5V6a.5.5 0 0 0-.5-.5h-3V4h3Z"})}),lde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M16.375 4.5H4.625a.125.125 0 0 0-.125.125v8.254l2.859-1.54a.75.75 0 0 1 .68-.016l2.384 1.142 2.89-2.074a.75.75 0 0 1 .874 0l2.313 1.66V4.625a.125.125 0 0 0-.125-.125Zm.125 9.398-2.75-1.975-2.813 2.02a.75.75 0 0 1-.76.067l-2.444-1.17L4.5 14.583v1.792c0 .069.056.125.125.125h11.75a.125.125 0 0 0 .125-.125v-2.477ZM4.625 3C3.728 3 3 3.728 3 4.625v11.75C3 17.273 3.728 18 4.625 18h11.75c.898 0 1.625-.727 1.625-1.625V4.625C18 3.728 17.273 3 16.375 3H4.625ZM20 8v11c0 .69-.31 1-.999 1H6v1.5h13.001c1.52 0 2.499-.982 2.499-2.5V8H20Z",fillRule:"evenodd",clipRule:"evenodd"})}),ude=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 3.3c-4.8 0-8.8 3.9-8.8 8.8 0 4.8 3.9 8.8 8.8 8.8 4.8 0 8.8-3.9 8.8-8.8s-4-8.8-8.8-8.8zm6.5 5.5h-2.6C15.4 7.3 14.8 6 14 5c2 .6 3.6 2 4.5 3.8zm.7 3.2c0 .6-.1 1.2-.2 1.8h-2.9c.1-.6.1-1.2.1-1.8s-.1-1.2-.1-1.8H19c.2.6.2 1.2.2 1.8zM12 18.7c-1-.7-1.8-1.9-2.3-3.5h4.6c-.5 1.6-1.3 2.9-2.3 3.5zm-2.6-4.9c-.1-.6-.1-1.1-.1-1.8 0-.6.1-1.2.1-1.8h5.2c.1.6.1 1.1.1 1.8s-.1 1.2-.1 1.8H9.4zM4.8 12c0-.6.1-1.2.2-1.8h2.9c-.1.6-.1 1.2-.1 1.8 0 .6.1 1.2.1 1.8H5c-.2-.6-.2-1.2-.2-1.8zM12 5.3c1 .7 1.8 1.9 2.3 3.5H9.7c.5-1.6 1.3-2.9 2.3-3.5zM10 5c-.8 1-1.4 2.3-1.8 3.8H5.5C6.4 7 8 5.6 10 5zM5.5 15.3h2.6c.4 1.5 1 2.8 1.8 3.7-1.8-.6-3.5-2-4.4-3.7zM14 19c.8-1 1.4-2.2 1.8-3.7h2.6C17.6 17 16 18.4 14 19z"})}),X3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m3 5c0-1.10457.89543-2 2-2h13.5c1.1046 0 2 .89543 2 2v13.5c0 1.1046-.8954 2-2 2h-13.5c-1.10457 0-2-.8954-2-2zm2-.5h6v6.5h-6.5v-6c0-.27614.22386-.5.5-.5zm-.5 8v6c0 .2761.22386.5.5.5h6v-6.5zm8 0v6.5h6c.2761 0 .5-.2239.5-.5v-6zm0-8v6.5h6.5v-6c0-.27614-.2239-.5-.5-.5z",fillRule:"evenodd",clipRule:"evenodd"})}),Zf=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 4h-7c-1.1 0-2 .9-2 2v3H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-3h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-4.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h3V13c0 1.1.9 2 2 2h2.5v3zm0-4.5H11c-.3 0-.5-.2-.5-.5v-2.5H13c.3 0 .5.2.5.5v2.5zm5-.5c0 .3-.2.5-.5.5h-3V11c0-1.1-.9-2-2-2h-2.5V6c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v7z"})}),XZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.6 7c-.6.9-1.5 1.7-2.6 2v1h2v7h2V7h-1.4zM11 11H7V7H5v10h2v-4h4v4h2V7h-2v4z"})}),GZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 11.1H5v-4H3v10h2v-4h4v4h2v-10H9v4zm8 4c.5-.4.6-.6 1.1-1.1.4-.4.8-.8 1.2-1.3.3-.4.6-.8.9-1.3.2-.4.3-.8.3-1.3 0-.4-.1-.9-.3-1.3-.2-.4-.4-.7-.8-1-.3-.3-.7-.5-1.2-.6-.5-.2-1-.2-1.5-.2-.4 0-.7 0-1.1.1-.3.1-.7.2-1 .3-.3.1-.6.3-.9.5-.3.2-.6.4-.8.7l1.2 1.2c.3-.3.6-.5 1-.7.4-.2.7-.3 1.2-.3s.9.1 1.3.4c.3.3.5.7.5 1.1 0 .4-.1.8-.4 1.1-.3.5-.6.9-1 1.2-.4.4-1 .9-1.6 1.4-.6.5-1.4 1.1-2.2 1.6v1.5h8v-2H17z"})}),KZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 11H5V7H3v10h2v-4h4v4h2V7H9v4zm11.3 1.7c-.4-.4-1-.7-1.6-.8v-.1c.6-.2 1.1-.5 1.5-.9.3-.4.5-.8.5-1.3 0-.4-.1-.8-.3-1.1-.2-.3-.5-.6-.8-.8-.4-.2-.8-.4-1.2-.5-.6-.1-1.1-.2-1.6-.2-.6 0-1.3.1-1.8.3s-1.1.5-1.6.9l1.2 1.4c.4-.2.7-.4 1.1-.6.3-.2.7-.3 1.1-.3.4 0 .8.1 1.1.3.3.2.4.5.4.8 0 .4-.2.7-.6.9-.7.3-1.5.5-2.2.4v1.6c.5 0 1 0 1.5.1.3.1.7.2 1 .3.2.1.4.2.5.4s.1.4.1.6c0 .3-.2.7-.5.8-.4.2-.9.3-1.4.3s-1-.1-1.4-.3c-.4-.2-.8-.4-1.2-.7L13 15.6c.5.4 1 .8 1.6 1 .7.3 1.5.4 2.3.4.6 0 1.1-.1 1.6-.2.4-.1.9-.2 1.3-.5.4-.2.7-.5.9-.9.2-.4.3-.8.3-1.2 0-.6-.3-1.1-.7-1.5z"})}),YZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 13V7h-3l-4 6v2h5v2h2v-2h1v-2h-1zm-2 0h-2.8L18 9v4zm-9-2H5V7H3v10h2v-4h4v4h2V7H9v4z"})}),ZZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 11H5V7H3v10h2v-4h4v4h2V7H9v4zm11.7 1.2c-.2-.3-.5-.7-.8-.9-.3-.3-.7-.5-1.1-.6-.5-.1-.9-.2-1.4-.2-.2 0-.5.1-.7.1-.2.1-.5.1-.7.2l.1-1.9h4.3V7H14l-.3 5 1 .6.5-.2.4-.1c.1-.1.3-.1.4-.1h.5c.5 0 1 .1 1.4.4.4.2.6.7.6 1.1 0 .4-.2.8-.6 1.1-.4.3-.9.4-1.4.4-.4 0-.9-.1-1.3-.3-.4-.2-.7-.4-1.1-.7 0 0-1.1 1.4-1 1.5.5.4 1 .8 1.6 1 .7.3 1.5.4 2.3.4.5 0 1-.1 1.5-.3s.9-.4 1.3-.7c.4-.3.7-.7.9-1.1s.3-.9.3-1.4-.1-1-.3-1.4z"})}),QZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20.7 12.4c-.2-.3-.4-.6-.7-.9s-.6-.5-1-.6c-.4-.2-.8-.2-1.2-.2-.5 0-.9.1-1.3.3s-.8.5-1.2.8c0-.5 0-.9.2-1.4l.6-.9c.2-.2.5-.4.8-.5.6-.2 1.3-.2 1.9 0 .3.1.6.3.8.5 0 0 1.3-1.3 1.3-1.4-.4-.3-.9-.6-1.4-.8-.6-.2-1.3-.3-2-.3-.6 0-1.1.1-1.7.4-.5.2-1 .5-1.4.9-.4.4-.8 1-1 1.6-.3.7-.4 1.5-.4 2.3s.1 1.5.3 2.1c.2.6.6 1.1 1 1.5.4.4.9.7 1.4.9 1 .3 2 .3 3 0 .4-.1.8-.3 1.2-.6.3-.3.6-.6.8-1 .2-.5.3-.9.3-1.4s-.1-.9-.3-1.3zm-2 2.1c-.1.2-.3.4-.4.5-.1.1-.3.2-.5.2-.2.1-.4.1-.6.1-.2.1-.5 0-.7-.1-.2 0-.3-.2-.5-.3-.1-.2-.3-.4-.4-.6-.2-.3-.3-.7-.3-1 .3-.3.6-.5 1-.7.3-.1.7-.2 1-.2.4 0 .8.1 1.1.3.3.3.4.7.4 1.1 0 .2 0 .5-.1.7zM9 11H5V7H3v10h2v-4h4v4h2V7H9v4z"})}),JZe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6 5V18.5911L12 13.8473L18 18.5911V5H6Z"})}),eQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})}),dde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4L4 7.9V20h16V7.9L12 4zm6.5 14.5H14V13h-4v5.5H5.5V8.8L12 5.7l6.5 3.1v9.7z"})}),tQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4.8 11.4H2.1V9H1v6h1.1v-2.6h2.7V15h1.1V9H4.8v2.4zm1.9-1.3h1.7V15h1.1v-4.9h1.7V9H6.7v1.1zM16.2 9l-1.5 2.7L13.3 9h-.9l-.8 6h1.1l.5-4 1.5 2.8 1.5-2.8.5 4h1.1L17 9h-.8zm3.8 5V9h-1.1v6h3.6v-1H20z"})}),Oz=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.5h14c.3 0 .5.2.5.5v8.4l-3-2.9c-.3-.3-.8-.3-1 0L11.9 14 9 12c-.3-.2-.6-.2-.8 0l-3.6 2.6V5c-.1-.3.1-.5.4-.5zm14 15H5c-.3 0-.5-.2-.5-.5v-2.4l4.1-3 3 1.9c.3.2.7.2.9-.1L16 12l3.5 3.4V19c0 .3-.2.5-.5.5z"})}),pde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5 12a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0ZM12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm.75 4v1.5h-1.5V8h1.5Zm0 8v-5h-1.5v5h1.5Z"})}),nQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15 4H9v11h6V4zM4 18.5V20h16v-1.5H4z"})}),Nw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 9v6h11V9H9zM4 20h1.5V4H4v16z"})}),Bw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.5 15v5H11v-5H4V9h7V4h1.5v5h7v6h-7Z"})}),oQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 11h-5V4H9v7H4v1.5h5V20h6v-7.5h5z"})}),Lw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 15h11V9H4v6zM18.5 4v16H20V4h-1.5z"})}),LP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 15h6V9H9v6zm-5 5h1.5V4H4v16zM18.5 4v16H20V4h-1.5z"})}),rQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 4H17V8L7 8V4ZM7 16L17 16V20L7 20V16ZM20 11.25H4V12.75H20V11.25Z"})}),PP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 4H5.5V20H4V4ZM7 10L17 10V14L7 14V10ZM20 4H18.5V20H20V4Z"})}),sQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 4L20 4L20 5.5L4 5.5L4 4ZM10 7L14 7L14 17L10 17L10 7ZM20 18.5L4 18.5L4 20L20 20L20 18.5Z"})}),iQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9 20h6V9H9v11zM4 4v1.5h16V4H4z"})}),aQe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m16 15.5h-8v-1.5h8zm-7.5-2.5h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2zm-9-3h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2zm3 0h-2v-2h2z"}),a.jsx(he,{d:"m18.5 6.5h-13a.5.5 0 0 0 -.5.5v9.5a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9.5a.5.5 0 0 0 -.5-.5zm-13-1.5h13a2 2 0 0 1 2 2v9.5a2 2 0 0 1 -2 2h-13a2 2 0 0 1 -2-2v-9.5a2 2 0 0 1 2-2z"})]}),Pw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m6.734 16.106 2.176-2.38-1.093-1.028-3.846 4.158 3.846 4.158 1.093-1.028-2.176-2.38h2.811c1.125 0 2.25.03 3.374 0 1.428-.001 3.362-.25 4.963-1.277 1.66-1.065 2.868-2.906 2.868-5.859 0-2.479-1.327-4.896-3.65-5.93-1.82-.813-3.044-.8-4.806-.788l-.567.002v1.5c.184 0 .368 0 .553-.002 1.82-.007 2.704-.014 4.21.657 1.854.827 2.76 2.657 2.76 4.561 0 2.472-.973 3.824-2.178 4.596-1.258.807-2.864 1.04-4.163 1.04h-.02c-1.115.03-2.229 0-3.344 0H6.734Z"})}),cQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.5 10h-1.7l-3.7 10.5h1.7l.9-2.6h3.9l.9 2.6h1.7L17.5 10zm-2.2 6.3 1.4-4 1.4 4h-2.8zm-4.8-3.8c1.6-1.8 2.9-3.6 3.7-5.7H16V5.2h-5.8V3H8.8v2.2H3v1.5h9.6c-.7 1.6-1.8 3.1-3.1 4.6C8.6 10.2 7.8 9 7.2 8H5.6c.6 1.4 1.7 2.9 2.9 4.4l-2.4 2.4c-.3.4-.7.8-1.1 1.2l1 1 1.2-1.2c.8-.8 1.6-1.5 2.3-2.3.8.9 1.7 1.7 2.5 2.5l.6-1.5c-.7-.6-1.4-1.3-2.1-2z"})}),nu=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),lQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M5 11.25h3v1.5H5v-1.5zm5.5 0h3v1.5h-3v-1.5zm8.5 0h-3v1.5h3v-1.5z",clipRule:"evenodd"})}),uQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M5.25 11.25h1.5v1.5h-1.5v-1.5zm3 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5zm1.5 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5z",clipRule:"evenodd"})}),fde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 11.25h14v1.5H5z"})}),xa=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10 17.389H8.444A5.194 5.194 0 1 1 8.444 7H10v1.5H8.444a3.694 3.694 0 0 0 0 7.389H10v1.5ZM14 7h1.556a5.194 5.194 0 0 1 0 10.39H14v-1.5h1.556a3.694 3.694 0 0 0 0-7.39H14V7Zm-4.5 6h5v-1.5h-5V13Z"})}),Pl=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.031 4.703 15.576 4l-1.56 3H14v.03l-2.324 4.47H9.5V13h1.396l-1.502 2.889h-.95a3.694 3.694 0 0 1 0-7.389H10V7H8.444a5.194 5.194 0 1 0 0 10.389h.17L7.5 19.53l1.416.719L15.049 8.5h.507a3.694 3.694 0 0 1 0 7.39H14v1.5h1.556a5.194 5.194 0 0 0 .273-10.383l1.202-2.304Z"})}),jw=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4 4v1.5h16V4H4zm8 8.5h8V11h-8v1.5zM4 20h16v-1.5H4V20zm4-8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z"})}),dQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 11v1.5h8V11h-8zm-6-1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"})}),jP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M3 6h11v1.5H3V6Zm3.5 5.5h11V13h-11v-1.5ZM21 17H10v1.5h11V17Z"})}),Jv=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1zm-2.8 0H9.8V7c0-1.2 1-2.2 2.2-2.2s2.2 1 2.2 2.2v3z"})}),pQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1zM9.8 7c0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2v3H9.8V7zm6.7 11.5h-9v-7h9v7z"})}),bde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 11h-.2V9c0-1.5-1.2-2.8-2.8-2.8S9.2 7.5 9.2 9v2H9c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h6c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1zm-1.8 0h-2.5V9c0-.7.6-1.2 1.2-1.2s1.2.6 1.2 1.2v2z"})}),fQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11 14.5l1.1 1.1 3-3 .5-.5-.6-.6-3-3-1 1 1.7 1.7H5v1.5h7.7L11 14.5zM16.8 5h-7c-1.1 0-2 .9-2 2v1.5h1.5V7c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v10c0 .3-.2.5-.5.5h-7c-.3 0-.5-.2-.5-.5v-1.5H7.8V17c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2z"})}),hde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18.1823 11.6392C18.1823 13.0804 17.0139 14.2487 15.5727 14.2487C14.3579 14.2487 13.335 13.4179 13.0453 12.2922L13.0377 12.2625L13.0278 12.2335L12.3985 10.377L12.3942 10.3785C11.8571 8.64997 10.246 7.39405 8.33961 7.39405C5.99509 7.39405 4.09448 9.29465 4.09448 11.6392C4.09448 13.9837 5.99509 15.8843 8.33961 15.8843C8.88499 15.8843 9.40822 15.781 9.88943 15.5923L9.29212 14.0697C8.99812 14.185 8.67729 14.2487 8.33961 14.2487C6.89838 14.2487 5.73003 13.0804 5.73003 11.6392C5.73003 10.1979 6.89838 9.02959 8.33961 9.02959C9.55444 9.02959 10.5773 9.86046 10.867 10.9862L10.8772 10.9836L11.4695 12.7311C11.9515 14.546 13.6048 15.8843 15.5727 15.8843C17.9172 15.8843 19.8178 13.9837 19.8178 11.6392C19.8178 9.29465 17.9172 7.39404 15.5727 7.39404C15.0287 7.39404 14.5066 7.4968 14.0264 7.6847L14.6223 9.20781C14.9158 9.093 15.2358 9.02959 15.5727 9.02959C17.0139 9.02959 18.1823 10.1979 18.1823 11.6392Z"})}),bQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 9c-.8 0-1.5.7-1.5 1.5S11.2 12 12 12s1.5-.7 1.5-1.5S12.8 9 12 9zm0-5c-3.6 0-6.5 2.8-6.5 6.2 0 .8.3 1.8.9 3.1.5 1.1 1.2 2.3 2 3.6.7 1 3 3.8 3.2 3.9l.4.5.4-.5c.2-.2 2.6-2.9 3.2-3.9.8-1.2 1.5-2.5 2-3.6.6-1.3.9-2.3.9-3.1C18.5 6.8 15.6 4 12 4zm4.3 8.7c-.5 1-1.1 2.2-1.9 3.4-.5.7-1.7 2.2-2.4 3-.7-.8-1.9-2.3-2.4-3-.8-1.2-1.4-2.3-1.9-3.3-.6-1.4-.7-2.2-.7-2.5 0-2.6 2.2-4.7 5-4.7s5 2.1 5 4.7c0 .2-.1 1-.7 2.4z"})}),IP=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7 6.5 4 2.5-4 2.5z"}),a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"m5 3c-1.10457 0-2 .89543-2 2v14c0 1.1046.89543 2 2 2h14c1.1046 0 2-.8954 2-2v-14c0-1.10457-.8954-2-2-2zm14 1.5h-14c-.27614 0-.5.22386-.5.5v10.7072l3.62953-2.6465c.25108-.1831.58905-.1924.84981-.0234l2.92666 1.8969 3.5712-3.4719c.2911-.2831.7545-.2831 1.0456 0l2.9772 2.8945v-9.3568c0-.27614-.2239-.5-.5-.5zm-14.5 14.5v-1.4364l4.09643-2.987 2.99567 1.9417c.2936.1903.6798.1523.9307-.0917l3.4772-3.3806 3.4772 3.3806.0228-.0234v2.5968c0 .2761-.2239.5-.5.5h-14c-.27614 0-.5-.2239-.5-.5z"})]}),hQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M3 6v11.5h8V6H3Zm11 3h7V7.5h-7V9Zm7 3.5h-7V11h7v1.5ZM14 16h7v-1.5h-7V16Z"})}),mde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 5v1.5h14V5H5zm0 7.8h14v-1.5H5v1.5zM5 19h14v-1.5H5V19z"})}),YK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15 4H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H9c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h6c.3 0 .5.2.5.5v12zm-4.5-.5h2V16h-2v1.5z"})}),mQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4 9v1.5h16V9H4zm12 5.5h4V13h-4v1.5zm-6 0h4V13h-4v1.5zm-6 0h4V13H4v1.5z"})}),Wc=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 19h-2v-2h2v2zm0-6h-2v-2h2v2zm0-6h-2V5h2v2z"})}),G3=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M12 4c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14.5c-3.6 0-6.5-2.9-6.5-6.5S8.4 5.5 12 5.5s6.5 2.9 6.5 6.5-2.9 6.5-6.5 6.5zM9 16l4.5-3L15 8.4l-4.5 3L9 16z"})}),gde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5A6.5 6.5 0 0 1 6.93 7.931l9.139 9.138A6.473 6.473 0 0 1 12 18.5Zm5.123-2.498a6.5 6.5 0 0 0-9.124-9.124l9.124 9.124ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z"})}),gQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12-9.8c.4 0 .8-.3.9-.7l1.1-3h3.6l.5 1.7h1.9L13 9h-2.2l-3.4 9.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12H20V6c0-1.1-.9-2-2-2zm-6 7l1.4 3.9h-2.7L12 11z"})}),MQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.5 9V6a2 2 0 0 0-2-2h-7a2 2 0 0 0-2 2v3H8V6a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v3h1.5Zm0 6.5V18a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2v-2.5H8V18a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-2.5h1.5ZM4 13h16v-1.5H4V13Z"})}),Mde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.5 14.5h-1V16h1c2.2 0 4-1.8 4-4s-1.8-4-4-4h-1v1.5h1c1.4 0 2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5zm-4 1.5v-1.5h-1C6.1 14.5 5 13.4 5 12s1.1-2.5 2.5-2.5h1V8h-1c-2.2 0-4 1.8-4 4s1.8 4 4 4h1zm-1-3.2h5v-1.5h-5v1.5zM18 4H9c-1.1 0-2 .9-2 2v.5h1.5V6c0-.3.2-.5.5-.5h9c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H9c-.3 0-.5-.2-.5-.5v-.5H7v.5c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2z"})}),wa=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M15.5 7.5h-7V9h7V7.5Zm-7 3.5h7v1.5h-7V11Zm7 3.5h-7V16h7v-1.5Z"}),a.jsx(he,{d:"M17 4H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM7 5.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5Z"})]}),zQe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M14.5 5.5h-7V7h7V5.5ZM7.5 9h7v1.5h-7V9Zm7 3.5h-7V14h7v-1.5Z"}),a.jsx(he,{d:"M16 2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM6 3.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 .5-.5Z"}),a.jsx(he,{d:"M20 8v11c0 .69-.31 1-.999 1H6v1.5h13.001c1.52 0 2.499-.982 2.499-2.5V8H20Z"})]}),zde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m9.99609 14v-.2251l.00391.0001v6.225h1.5v-14.5h2.5v14.5h1.5v-14.5h3v-1.5h-8.50391c-2.76142 0-5 2.23858-5 5 0 2.7614 2.23858 5 5 5z"})}),Ode=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8 4a4 4 0 0 1-4-4h4V8a4 4 0 0 1 0 8Z"})}),yde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 5.5H5V4h14v1.5ZM19 20H5v-1.5h14V20ZM7 9h10v6H7V9Z"})}),Ade=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 5.5h8V4H5v1.5ZM5 20h8v-1.5H5V20ZM19 9H5v6h14V9Z"})}),vde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 5.5h-8V4h8v1.5ZM19 20h-8v-1.5h8V20ZM5 9h14v6H5V9Z"})}),xde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m21.5 9.1-6.6-6.6-4.2 5.6c-1.2-.1-2.4.1-3.6.7-.1 0-.1.1-.2.1-.5.3-.9.6-1.2.9l3.7 3.7-5.7 5.7v1.1h1.1l5.7-5.7 3.7 3.7c.4-.4.7-.8.9-1.2.1-.1.1-.2.2-.3.6-1.1.8-2.4.6-3.6l5.6-4.1zm-7.3 3.5.1.9c.1.9 0 1.8-.4 2.6l-6-6c.8-.4 1.7-.5 2.6-.4l.9.1L15 4.9 19.1 9l-4.9 3.6z"})}),OQe=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M10.97 10.159a3.382 3.382 0 0 0-2.857.955l1.724 1.723-2.836 2.913L7 17h1.25l2.913-2.837 1.723 1.723a3.38 3.38 0 0 0 .606-.825c.33-.63.446-1.343.35-2.032L17 10.695 13.305 7l-2.334 3.159Z"})}),yQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M10.5 4v4h3V4H15v4h1.5a1 1 0 011 1v4l-3 4v2a1 1 0 01-1 1h-3a1 1 0 01-1-1v-2l-3-4V9a1 1 0 011-1H9V4h1.5zm.5 12.5v2h2v-2l3-4v-3H8v3l3 4z"})}),Fs=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})}),wde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m7.3 9.7 1.4 1.4c.2-.2.3-.3.4-.5 0 0 0-.1.1-.1.3-.5.4-1.1.3-1.6L12 7 9 4 7.2 6.5c-.6-.1-1.1 0-1.6.3 0 0-.1 0-.1.1-.3.1-.4.2-.6.4l1.4 1.4L4 11v1h1l2.3-2.3zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z"})}),DP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M10 4.5a1 1 0 11-2 0 1 1 0 012 0zm1.5 0a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm2.25 7.5v-1A2.75 2.75 0 0011 8.25H7A2.75 2.75 0 004.25 11v1h1.5v-1c0-.69.56-1.25 1.25-1.25h4c.69 0 1.25.56 1.25 1.25v1h1.5zM4 20h9v-1.5H4V20zm16-4H4v-1.5h16V16z",fillRule:"evenodd",clipRule:"evenodd"})}),FP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M20 4H4v1.5h16V4zm-2 9h-3c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm.5 5c0 .3-.2.5-.5.5h-3c-.3 0-.5-.2-.5-.5v-3c0-.3.2-.5.5-.5h3c.3 0 .5.2.5.5v3zM4 9.5h9V8H4v1.5zM9 13H6c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm.5 5c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-3c0-.3.2-.5.5-.5h3c.3 0 .5.2.5.5v3z",fillRule:"evenodd",clipRule:"evenodd"})}),AQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 6h12V4.5H4V6Zm16 4.5H4V9h16v1.5ZM4 15h16v-1.5H4V15Zm0 4.5h16V18H4v1.5Z"})}),vQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14 10.1V4c0-.6-.4-1-1-1H5c-.6 0-1 .4-1 1v8.3c0 .3.2.7.6.8.1.1.2.1.3.1.2 0 .5-.1.6-.3l1.8-1.8H13c.6 0 1-.4 1-1zm-1.5-.5H6.7l-1.2 1.2V4.5h7v5.1zM19 12h-8c-.6 0-1 .4-1 1v6.1c0 .6.4 1 1 1h5.7l1.8 1.8c.1.2.4.3.6.3.1 0 .2 0 .3-.1.4-.1.6-.5.6-.8V13c0-.6-.4-1-1-1zm-.5 7.8l-1.2-1.2h-5.8v-5.1h7v6.3z"})}),_de=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 8H4v1.5h9V8zM4 4v1.5h16V4H4zm9 8H5c-.6 0-1 .4-1 1v8.3c0 .3.2.7.6.8.1.1.2.1.3.1.2 0 .5-.1.6-.3l1.8-1.8H13c.6 0 1-.4 1-1V13c0-.6-.4-1-1-1zm-2.2 6.6H7l1.6-2.2c.3-.4.5-.7.6-.9.1-.2.2-.4.2-.5 0-.2-.1-.3-.1-.4-.1-.1-.2-.1-.4-.1s-.4 0-.6.1c-.3.1-.5.3-.7.4l-.2.2-.2-1.2.1-.1c.3-.2.5-.3.8-.4.3-.1.6-.1.9-.1.3 0 .6.1.9.2.2.1.4.3.6.5.1.2.2.5.2.7 0 .3-.1.6-.2.9-.1.3-.4.7-.7 1.1l-.5.6h1.6v1.2z"})}),xQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 8H4v1.5h9V8zM4 4v1.5h16V4H4zm9 8H5c-.6 0-1 .4-1 1v8.3c0 .3.2.7.6.8.1.1.2.1.3.1.2 0 .5-.1.6-.3l1.8-1.8H13c.6 0 1-.4 1-1V13c0-.6-.4-1-1-1zm-.5 6.6H6.7l-1.2 1.2v-6.3h7v5.1z"})}),$P=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M11.696 13.972c.356-.546.599-.958.728-1.235a1.79 1.79 0 00.203-.783c0-.264-.077-.47-.23-.618-.148-.153-.354-.23-.618-.23-.295 0-.569.07-.82.212a3.413 3.413 0 00-.738.571l-.147-1.188c.289-.234.59-.41.903-.526.313-.117.66-.175 1.041-.175.375 0 .695.08.959.24.264.153.46.362.59.626.135.265.203.556.203.876 0 .362-.08.734-.24 1.115-.154.381-.427.87-.82 1.466l-.756 1.152H14v1.106h-4l1.696-2.609z"}),a.jsx(he,{d:"M19.5 7h-15v12a.5.5 0 00.5.5h14a.5.5 0 00.5-.5V7zM3 7V5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V7z"})]}),wQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M8.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H4v-3h4.001ZM4 20h9v-1.5H4V20Zm16-4H4v-1.5h16V16ZM13.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H9v-3h4.001Z"})}),kde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 3H5c-.6 0-1 .4-1 1v7c0 .5.4 1 1 1h14c.5 0 1-.4 1-1V4c0-.6-.4-1-1-1zM5.5 10.5v-.4l1.8-1.3 1.3.8c.3.2.7.2.9-.1L11 8.1l2.4 2.4H5.5zm13 0h-2.9l-4-4c-.3-.3-.8-.3-1.1 0L8.9 8l-1.2-.8c-.3-.2-.6-.2-.9 0l-1.3 1V4.5h13v6zM4 20h9v-1.5H4V20zm0-4h16v-1.5H4V16z"})}),VP=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 5.5H6a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5ZM6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm1 5h1.5v1.5H7V9Zm1.5 4.5H7V15h1.5v-1.5ZM10 9h7v1.5h-7V9Zm7 4.5h-7V15h7v-1.5Z"})}),_Qe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M8.1 12.3c.1.1.3.3.5.3.2.1.4.1.6.1.2 0 .4 0 .6-.1.2-.1.4-.2.5-.3l3-3c.3-.3.5-.7.5-1.1 0-.4-.2-.8-.5-1.1L9.7 3.5c-.1-.2-.3-.3-.5-.3H5c-.4 0-.8.4-.8.8v4.2c0 .2.1.4.2.5l3.7 3.6zM5.8 4.8h3.1l3.4 3.4v.1l-3 3 .5.5-.7-.5-3.3-3.4V4.8zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z"})}),Sde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.6 7l-1.1-1L5 12l5.5 6 1.1-1L7 12l4.6-5zm6 0l-1.1-1-5.5 6 5.5 6 1.1-1-4.6-5 4.6-5z"})}),Cde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})}),kQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12zM7 16.5h6V15H7v1.5zm4-4h6V11h-6v1.5zM9 11H7v1.5h2V11zm6 5.5h2V15h-2v1.5z"})}),Iw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm11.53-1.47-1.06-1.06L11 12.94l-1.47-1.47-1.06 1.06L11 15.06l4.53-4.53Z"})}),SQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 18h6V6H4v12zm9-9.5V10h7V8.5h-7zm0 7h7V14h-7v1.5z"})}),CQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M14 6v12h6V6h-6zM4 10h7V8.5H4V10zm0 5.5h7V14H4v1.5z"})}),qQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18 8H6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm.5 6c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-4c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v4zM4 4v1.5h16V4H4zm0 16h16v-1.5H4V20z"})}),qde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 13.5h6v-3H4v3zm8 0h3v-3h-3v3zm5-3v3h3v-3h-3z"})}),Rde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 13.5h3v-3H5v3zm5 0h3v-3h-3v3zM17 9l-1 1 2 2-2 2 1 1 3-3-3-3z"})}),Tde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 13.5h6v-3H4v3zm8.2-2.5.8-.3V14h1V9.3l-2.2.7.4 1zm7.1-1.2c-.5-.6-1.2-.5-1.7-.4-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5h2.7v-1h-.9c.3-.6.8-1.4.9-2.1 0-.3-.1-.8-.3-1.1z"})}),Ede=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16 10.5v3h3v-3h-3zm-5 3h3v-3h-3v3zM7 9l-3 3 3 3 1-1-2-2 2-2-1-1z"})}),RQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M13 6v6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H13zm-9 6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H4v6z"})}),Wde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15.6 6.5l-1.1 1 2.9 3.3H8c-.9 0-1.7.3-2.3.9-1.4 1.5-1.4 4.2-1.4 5.6v.2h1.5v-.3c0-1.1 0-3.5 1-4.5.3-.3.7-.5 1.3-.5h9.2L14.5 15l1.1 1.1 4.6-4.6-4.6-5z"})}),TQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"m13.955 20.748 8-17.5-.91-.416L19.597 6H13.5v1.5h5.411l-1.6 3.5H13.5v1.5h3.126l-1.6 3.5H13.5l.028 1.5h.812l-1.295 2.832.91.416ZM17.675 16l-.686 1.5h4.539L21.5 16h-3.825Zm2.286-5-.686 1.5H21.5V11h-1.54ZM2 12c0 3.58 2.42 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.48 0-4.5-1.52-4.5-4S5.52 7.5 8 7.5h3.5V6H8c-3.58 0-6 2.42-6 6Z"})}),am=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 11.5h10V13H7z"})}),EQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M7 18h4.5v1.5h-7v-7H6V17L17 6h-4.5V4.5h7v7H18V7L7 18Z"})}),Nde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 6.5h5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H4V16h5a.5.5 0 0 0 .5-.5v-7A.5.5 0 0 0 9 8H4V6.5Zm16 0h-5a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h5V16h-5a.5.5 0 0 1-.5-.5v-7A.5.5 0 0 1 15 8h5V6.5Z"})}),Bd=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M21.3 10.8l-5.6-5.6c-.7-.7-1.8-.7-2.5 0l-5.6 5.6c-.7.7-.7 1.8 0 2.5l5.6 5.6c.3.3.8.5 1.2.5s.9-.2 1.2-.5l5.6-5.6c.8-.7.8-1.9.1-2.5zm-1 1.4l-5.6 5.6c-.1.1-.3.1-.4 0l-5.6-5.6c-.1-.1-.1-.3 0-.4l5.6-5.6s.1-.1.2-.1.1 0 .2.1l5.6 5.6c.1.1.1.3 0 .4zm-16.6-.4L10 5.5l-1-1-6.3 6.3c-.7.7-.7 1.8 0 2.5L9 19.5l1.1-1.1-6.3-6.3c-.2 0-.2-.2-.1-.3z"})}),WQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 4V2.2L9 4.8l3 2.5V5.5c3.6 0 6.5 2.9 6.5 6.5 0 2.9-1.9 5.3-4.5 6.2v.2l-.1-.2c-.4.1-.7.2-1.1.2l.2 1.5c.3 0 .6-.1 1-.2 3.5-.9 6-4 6-7.7 0-4.4-3.6-8-8-8zm-7.9 7l1.5.2c.1-1.2.5-2.3 1.2-3.2l-1.1-.9C4.8 8.2 4.3 9.6 4.1 11zm1.5 1.8l-1.5.2c.1.7.3 1.4.5 2 .3.7.6 1.3 1 1.8l1.2-.8c-.3-.5-.6-1-.8-1.5s-.4-1.1-.4-1.7zm1.5 5.5c1.1.9 2.4 1.4 3.8 1.6l.2-1.5c-1.1-.1-2.2-.5-3.1-1.2l-.9 1.1z"})}),Bde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M15.1 4.8l-3-2.5V4c-4.4 0-8 3.6-8 8 0 3.7 2.5 6.9 6 7.7.3.1.6.1 1 .2l.2-1.5c-.4 0-.7-.1-1.1-.2l-.1.2v-.2c-2.6-.8-4.5-3.3-4.5-6.2 0-3.6 2.9-6.5 6.5-6.5v1.8l3-2.5zM20 11c-.2-1.4-.7-2.7-1.6-3.8l-1.2.8c.7.9 1.1 2 1.3 3.1L20 11zm-1.5 1.8c-.1.5-.2 1.1-.4 1.6s-.5 1-.8 1.5l1.2.9c.4-.5.8-1.1 1-1.8s.5-1.3.5-2l-1.5-.2zm-5.6 5.6l.2 1.5c1.4-.2 2.7-.7 3.8-1.6l-.9-1.1c-.9.7-2 1.1-3.1 1.2z"})}),Lde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 10.2h-.8v1.5H5c1.9 0 3.8.8 5.1 2.1 1.4 1.4 2.1 3.2 2.1 5.1v.8h1.5V19c0-2.3-.9-4.5-2.6-6.2-1.6-1.6-3.8-2.6-6.1-2.6zm10.4-1.6C12.6 5.8 8.9 4.2 5 4.2h-.8v1.5H5c3.5 0 6.9 1.4 9.4 3.9s3.9 5.8 3.9 9.4v.8h1.5V19c0-3.9-1.6-7.6-4.4-10.4zM4 20h3v-3H4v3z"})}),Dw=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z"})}),Pde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm9 1V8h-1.5v3.5h-2V13H13Z"})}),NQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M4.5 12.5v4H3V7h1.5v3.987h15V7H21v9.5h-1.5v-4h-15Z"})}),HP=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m19 7.5h-7.628c-.3089-.87389-1.1423-1.5-2.122-1.5-.97966 0-1.81309.62611-2.12197 1.5h-2.12803v1.5h2.12803c.30888.87389 1.14231 1.5 2.12197 1.5.9797 0 1.8131-.62611 2.122-1.5h7.628z"}),a.jsx(he,{d:"m19 15h-2.128c-.3089-.8739-1.1423-1.5-2.122-1.5s-1.8131.6261-2.122 1.5h-7.628v1.5h7.628c.3089.8739 1.1423 1.5 2.122 1.5s1.8131-.6261 2.122-1.5h2.128z"})]}),BQe=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12.8 3h-1.5v3h1.5V3zm-1.6 18h1.5v-3h-1.5v3zm6.8-9.8v1.5h3v-1.5h-3zm-12 0H3v1.5h3v-1.5zm9.7 5.6 2.1 2.1 1.1-1.1-2.1-2.1-1.1 1.1zM8.3 7.2 6.2 5.1 5.1 6.2l2.1 2.1 1.1-1.1zM5.1 17.8l1.1 1.1 2.1-2.1-1.1-1.1-2.1 2.1zM18.9 6.2l-1.1-1.1-2.1 2.1 1.1 1.1 2.1-2.1z"})}),jde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M9 11.8l6.1-4.5c.1.4.4.7.9.7h2c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1h-2c-.6 0-1 .4-1 1v.4l-6.4 4.8c-.2-.1-.4-.2-.6-.2H6c-.6 0-1 .4-1 1v2c0 .6.4 1 1 1h2c.2 0 .4-.1.6-.2l6.4 4.8v.4c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-2c0-.6-.4-1-1-1h-2c-.5 0-.8.3-.9.7L9 12.2v-.4z"})}),Ide=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M16 4.2v1.5h2.5v12.5H16v1.5h4V4.2h-4zM4.2 19.8h4v-1.5H5.8V5.8h2.5V4.2h-4l-.1 15.6zm5.1-3.1l1.4.6 4-10-1.4-.6-4 10z"})}),LQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 1.5c4.1 0 7.5 3.4 7.5 7.5v.1c-1.4-.8-3.3-1.7-3.4-1.8-.2-.1-.5-.1-.8.1l-2.9 2.1L9 11.3c-.2-.1-.4 0-.6.1l-3.7 2.2c-.1-.5-.2-1-.2-1.5 0-4.2 3.4-7.6 7.5-7.6zm0 15c-3.1 0-5.7-1.9-6.9-4.5l3.7-2.2 3.5 1.2c.2.1.5 0 .7-.1l2.9-2.1c.8.4 2.5 1.2 3.5 1.9-.9 3.3-3.9 5.8-7.4 5.8z"})}),Dde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17.5 4v5a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V4H8v5a.5.5 0 0 0 .5.5h7A.5.5 0 0 0 16 9V4h1.5Zm0 16v-5a2 2 0 0 0-2-2h-7a2 2 0 0 0-2 2v5H8v-5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v5h1.5Z"})}),PQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M9.706 8.646a.25.25 0 01-.188.137l-4.626.672a.25.25 0 00-.139.427l3.348 3.262a.25.25 0 01.072.222l-.79 4.607a.25.25 0 00.362.264l4.138-2.176a.25.25 0 01.233 0l4.137 2.175a.25.25 0 00.363-.263l-.79-4.607a.25.25 0 01.072-.222l3.347-3.262a.25.25 0 00-.139-.427l-4.626-.672a.25.25 0 01-.188-.137l-2.069-4.192a.25.25 0 00-.448 0L9.706 8.646zM12 7.39l-.948 1.921a1.75 1.75 0 01-1.317.957l-2.12.308 1.534 1.495c.412.402.6.982.503 1.55l-.362 2.11 1.896-.997a1.75 1.75 0 011.629 0l1.895.997-.362-2.11a1.75 1.75 0 01.504-1.55l1.533-1.495-2.12-.308a1.75 1.75 0 01-1.317-.957L12 7.39z",clipRule:"evenodd"})}),jQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.776 4.454a.25.25 0 01.448 0l2.069 4.192a.25.25 0 00.188.137l4.626.672a.25.25 0 01.139.426l-3.348 3.263a.25.25 0 00-.072.222l.79 4.607a.25.25 0 01-.362.263l-4.138-2.175a.25.25 0 00-.232 0l-4.138 2.175a.25.25 0 01-.363-.263l.79-4.607a.25.25 0 00-.071-.222L4.754 9.881a.25.25 0 01.139-.426l4.626-.672a.25.25 0 00.188-.137l2.069-4.192z"})}),IQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 4h14v11H5V4Zm11 16H8v-1.5h8V20Z"})}),Fde=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1.5 0a6.5 6.5 0 0 1-6.5 6.5v-13a6.5 6.5 0 0 1 6.5 6.5Z"})}),DQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fill:"none",d:"M5.75 12.75V18.25H11.25M12.75 5.75H18.25V11.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})}),UP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16 5.5H8V4h8v1.5ZM16 20H8v-1.5h8V20ZM5 9h14v6H5V9Z"})}),FQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16.9 18.3l.8-1.2c.4-.6.7-1.2.9-1.6.2-.4.3-.8.3-1.2 0-.3-.1-.7-.2-1-.1-.3-.4-.5-.6-.7-.3-.2-.6-.3-1-.3s-.8.1-1.1.2c-.3.1-.7.3-1 .6l.2 1.3c.3-.3.5-.5.8-.6s.6-.2.9-.2c.3 0 .5.1.7.2.2.2.2.4.2.7 0 .3-.1.5-.2.8-.1.3-.4.7-.8 1.3L15 19.4h4.3v-1.2h-2.4zM14.1 7.2h-2L9.5 11 6.9 7.2h-2l3.6 5.3L4.7 18h2l2.7-4 2.7 4h2l-3.8-5.5 3.8-5.3z"})}),$Qe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M16.9 10.3l.8-1.3c.4-.6.7-1.2.9-1.6.2-.4.3-.8.3-1.2 0-.3-.1-.7-.2-1-.2-.2-.4-.4-.7-.6-.3-.2-.6-.3-1-.3s-.8.1-1.1.2c-.3.1-.7.3-1 .6l.1 1.3c.3-.3.5-.5.8-.6s.6-.2.9-.2c.3 0 .5.1.7.2.2.2.2.4.2.7 0 .3-.1.5-.2.8-.1.3-.4.7-.8 1.3l-1.8 2.8h4.3v-1.2h-2.2zm-2.8-3.1h-2L9.5 11 6.9 7.2h-2l3.6 5.3L4.7 18h2l2.7-4 2.7 4h2l-3.8-5.5 3.8-5.3z"})}),$de=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M5 17.7c.4.5.8.9 1.2 1.2l1.1-1.4c-.4-.3-.7-.6-1-1L5 17.7zM5 6.3l1.4 1.1c.3-.4.6-.7 1-1L6.3 5c-.5.4-.9.8-1.3 1.3zm.1 7.8l-1.7.5c.2.6.4 1.1.7 1.6l1.5-.8c-.2-.4-.4-.8-.5-1.3zM4.8 12v-.7L3 11.1v1.8l1.7-.2c.1-.2.1-.5.1-.7zm3 7.9c.5.3 1.1.5 1.6.7l.5-1.7c-.5-.1-.9-.3-1.3-.5l-.8 1.5zM19 6.3c-.4-.5-.8-.9-1.2-1.2l-1.1 1.4c.4.3.7.6 1 1L19 6.3zm-.1 3.6l1.7-.5c-.2-.6-.4-1.1-.7-1.6l-1.5.8c.2.4.4.8.5 1.3zM5.6 8.6l-1.5-.8c-.3.5-.5 1-.7 1.6l1.7.5c.1-.5.3-.9.5-1.3zm2.2-4.5l.8 1.5c.4-.2.8-.4 1.3-.5l-.5-1.7c-.6.2-1.1.4-1.6.7zm8.8 13.5l1.1 1.4c.5-.4.9-.8 1.2-1.2l-1.4-1.1c-.2.3-.5.6-.9.9zm1.8-2.2l1.5.8c.3-.5.5-1.1.7-1.6l-1.7-.5c-.1.5-.3.9-.5 1.3zm2.6-4.3l-1.7.2v1.4l1.7.2V12v-.9zM11.1 3l.2 1.7h1.4l.2-1.7h-1.8zm3 2.1c.5.1.9.3 1.3.5l.8-1.5c-.5-.3-1.1-.5-1.6-.7l-.5 1.7zM12 19.2h-.7l-.2 1.8h1.8l-.2-1.7c-.2-.1-.5-.1-.7-.1zm2.1-.3l.5 1.7c.6-.2 1.1-.4 1.6-.7l-.8-1.5c-.4.2-.8.4-1.3.5z"})}),VQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M14.08 12.864V9.216h3.648V7.424H14.08V3.776h-1.728v3.648H8.64v1.792h3.712v3.648zM0 17.92V0h20.48v17.92H0zM6.4 1.28H1.28v3.84H6.4V1.28zm0 5.12H1.28v3.84H6.4V6.4zm0 5.12H1.28v3.84H6.4v-3.84zM19.2 1.28H7.68v14.08H19.2V1.28z"})}),HQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M6.4 3.776v3.648H2.752v1.792H6.4v3.648h1.728V9.216h3.712V7.424H8.128V3.776zM0 17.92V0h20.48v17.92H0zM12.8 1.28H1.28v14.08H12.8V1.28zm6.4 0h-5.12v3.84h5.12V1.28zm0 5.12h-5.12v3.84h5.12V6.4zm0 5.12h-5.12v3.84h5.12v-3.84z"})}),UQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M6.4 9.98L7.68 8.7v-.256L6.4 7.164V9.98zm6.4-1.532l1.28-1.28V9.92L12.8 8.64v-.192zm7.68 9.472V0H0v17.92h20.48zm-1.28-2.56h-5.12v-1.024l-.256.256-1.024-1.024v1.792H7.68v-1.792l-1.024 1.024-.256-.256v1.024H1.28V1.28H6.4v2.368l.704-.704.576.576V1.216h5.12V3.52l.96-.96.32.32V1.216h5.12V15.36zm-5.76-2.112l-3.136-3.136-3.264 3.264-1.536-1.536 3.264-3.264L5.632 5.44l1.536-1.536 3.136 3.136 3.2-3.2 1.536 1.536-3.2 3.2 3.136 3.136-1.536 1.536z"})}),Vde=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M20 9.484h-8.889v-1.5H20v1.5Zm0 7h-4.889v-1.5H20v1.5Zm-14 .032a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"}),a.jsx(he,{d:"M13 15.516a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 8.484a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"})]}),XQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M13.824 10.176h-2.88v-2.88H9.536v2.88h-2.88v1.344h2.88v2.88h1.408v-2.88h2.88zM0 17.92V0h20.48v17.92H0zM6.4 1.28H1.28v3.84H6.4V1.28zm6.4 0H7.68v3.84h5.12V1.28zm6.4 0h-5.12v3.84h5.12V1.28zm0 5.056H1.28v9.024H19.2V6.336z"})}),GQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M6.656 6.464h2.88v2.88h1.408v-2.88h2.88V5.12h-2.88V2.24H9.536v2.88h-2.88zM0 17.92V0h20.48v17.92H0zm7.68-2.56h5.12v-3.84H7.68v3.84zm-6.4 0H6.4v-3.84H1.28v3.84zM19.2 1.28H1.28v9.024H19.2V1.28zm0 10.24h-5.12v3.84h5.12v-3.84zM6.656 6.464h2.88v2.88h1.408v-2.88h2.88V5.12h-2.88V2.24H9.536v2.88h-2.88zM0 17.92V0h20.48v17.92H0zm7.68-2.56h5.12v-3.84H7.68v3.84zm-6.4 0H6.4v-3.84H1.28v3.84zM19.2 1.28H1.28v9.024H19.2V1.28zm0 10.24h-5.12v3.84h5.12v-3.84z"})}),KQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M17.728 11.456L14.592 8.32l3.2-3.2-1.536-1.536-3.2 3.2L9.92 3.648 8.384 5.12l3.2 3.2-3.264 3.264 1.536 1.536 3.264-3.264 3.136 3.136 1.472-1.536zM0 17.92V0h20.48v17.92H0zm19.2-6.4h-.448l-1.28-1.28H19.2V6.4h-1.792l1.28-1.28h.512V1.28H1.28v3.84h6.208l1.28 1.28H1.28v3.84h7.424l-1.28 1.28H1.28v3.84H19.2v-3.84z"})}),YQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 6v11.5h16V6H4zm1.5 1.5h6V11h-6V7.5zm0 8.5v-3.5h6V16h-6zm13 0H13v-3.5h5.5V16zM13 11V7.5h5.5V11H13z"})}),XP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4.75 4a.75.75 0 0 0-.75.75v7.826c0 .2.08.39.22.53l6.72 6.716a2.313 2.313 0 0 0 3.276-.001l5.61-5.611-.531-.53.532.528a2.315 2.315 0 0 0 0-3.264L13.104 4.22a.75.75 0 0 0-.53-.22H4.75ZM19 12.576a.815.815 0 0 1-.236.574l-5.61 5.611a.814.814 0 0 1-1.153 0L5.5 12.264V5.5h6.763l6.5 6.502a.816.816 0 0 1 .237.574ZM8.75 9.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})}),Qf=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M21.3 10.8l-5.6-5.6c-.7-.7-1.8-.7-2.5 0l-5.6 5.6c-.7.7-.7 1.8 0 2.5l5.6 5.6c.3.3.8.5 1.2.5s.9-.2 1.2-.5l5.6-5.6c.8-.7.8-1.9.1-2.5zm-17.6 1L10 5.5l-1-1-6.3 6.3c-.7.7-.7 1.8 0 2.5L9 19.5l1.1-1.1-6.3-6.3c-.2 0-.2-.2-.1-.3z"})}),ZQe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M6.08 10.103h2.914L9.657 12h1.417L8.23 4H6.846L4 12h1.417l.663-1.897Zm1.463-4.137.994 2.857h-2l1.006-2.857ZM11 16H4v-1.5h7V16Zm1 0h8v-1.5h-8V16Zm-4 4H4v-1.5h4V20Zm7-1.5V20H9v-1.5h6Z"})}),GP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",d:"M18 5.5h-8v8h8.5V6a.5.5 0 00-.5-.5zm-9.5 8h-3V6a.5.5 0 01.5-.5h2.5v8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),KP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.5 10.5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),YP=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"})}),ZK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z"})}),QQe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m16.5 19.5h-9v-1.5h9z"})]}),JQe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m4.5 7.5v9h1.5v-9z"}),a.jsx(he,{d:"m18 7.5v9h1.5v-9z"})]}),eJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m4.5 16.5v-9h1.5v9z"})]}),tJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m18 16.5v-9h1.5v9z"})]}),nJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m16.5 6h-9v-1.5h9z"})]}),oJe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",style:{opacity:.25}}),a.jsx(he,{d:"m7.5 6h9v-1.5h-9z"}),a.jsx(he,{d:"m7.5 19.5h9v-1.5h-9z"})]}),rJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12.9 6h-2l-4 11h1.9l1.1-3h4.2l1.1 3h1.9L12.9 6zm-2.5 6.5l1.5-4.9 1.7 4.9h-3.2z"})}),sJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M8.2 14.4h3.9L13 17h1.7L11 6.5H9.3L5.6 17h1.7l.9-2.6zm2-5.5 1.4 4H8.8l1.4-4zm7.4 7.5-1.3.8.8 1.4H5.5V20h14.3l-2.2-3.6z"})}),iJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M7 5.6v1.7l2.6.9v3.9L7 13v1.7L17.5 11V9.3L7 5.6zm4.2 6V8.8l4 1.4-4 1.4zm-5.7 5.6V5.5H4v14.3l3.6-2.2-.8-1.3-1.3.9z"})}),QK=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M17 4H7c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H7c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12zm-7.5-.5h4V16h-4v1.5z"})}),yz=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"m4 5.5h2v6.5h1.5v-6.5h2v-1.5h-5.5zm16 10.5h-16v-1.5h16zm-7 4h-9v-1.5h9z"})}),aJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})}),K3=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 5.5A2.25 2.25 0 0 0 9.878 7h4.244A2.251 2.251 0 0 0 12 5.5ZM12 4a3.751 3.751 0 0 0-3.675 3H5v1.5h1.27l.818 8.997a2.75 2.75 0 0 0 2.739 2.501h4.347a2.75 2.75 0 0 0 2.738-2.5L17.73 8.5H19V7h-3.325A3.751 3.751 0 0 0 12 4Zm4.224 4.5H7.776l.806 8.861a1.25 1.25 0 0 0 1.245 1.137h4.347a1.25 1.25 0 0 0 1.245-1.137l.805-8.861Z"})}),Hde=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.3 11.7c-.6-.6-1.4-.9-2.3-.9H6.7l2.9-3.3-1.1-1-4.5 5L8.5 16l1-1-2.7-2.7H16c.5 0 .9.2 1.3.5 1 1 1 3.4 1 4.5v.3h1.5v-.2c0-1.5 0-4.3-1.5-5.7z"})}),cJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18 4h-7c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 9c0 .3-.2.5-.5.5h-7c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v7zm-5 5c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h1V9H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-1h-1.5v1z"})}),SM=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8h1.5c0-1.2 1-2.2 2.2-2.2s2.2 1 2.2 2.2v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1z"})}),cm=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M18.5 15v3.5H13V6.7l4.5 4.1 1-1.1-6.2-5.8-5.8 5.8 1 1.1 4-4v11.7h-6V15H4v5h16v-5z"})}),Fw=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M17.8 2l-.9.3c-.1 0-3.6 1-5.2 2.1C10 5.5 9.3 6.5 8.9 7.1c-.6.9-1.7 4.7-1.7 6.3l-.9 2.3c-.2.4 0 .8.4 1 .1 0 .2.1.3.1.3 0 .6-.2.7-.5l.6-1.5c.3 0 .7-.1 1.2-.2.7-.1 1.4-.3 2.2-.5.8-.2 1.6-.5 2.4-.8.7-.3 1.4-.7 1.9-1.2s.8-1.2 1-1.9c.2-.7.3-1.6.4-2.4.1-.8.1-1.7.2-2.5 0-.8.1-1.5.2-2.1V2zm-1.9 5.6c-.1.8-.2 1.5-.3 2.1-.2.6-.4 1-.6 1.3-.3.3-.8.6-1.4.9-.7.3-1.4.5-2.2.8-.6.2-1.3.3-1.8.4L15 7.5c.3-.3.6-.7 1-1.1 0 .4 0 .8-.1 1.2zM6 20h8v-1.5H6V20z"})}),L8=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M18.7 3H5.3C4 3 3 4 3 5.3v13.4C3 20 4 21 5.3 21h13.4c1.3 0 2.3-1 2.3-2.3V5.3C21 4 20 3 18.7 3zm.8 15.7c0 .4-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8V5.3c0-.4.4-.8.8-.8h13.4c.4 0 .8.4.8.8v13.4zM10 15l5-3-5-3v6z"})}),lJe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24",children:a.jsx(he,{d:"M20 10c0-5.51-4.49-10-10-10C4.48 0 0 4.49 0 10c0 5.52 4.48 10 10 10 5.51 0 10-4.48 10-10zM7.78 15.37L4.37 6.22c.55-.02 1.17-.08 1.17-.08.5-.06.44-1.13-.06-1.11 0 0-1.45.11-2.37.11-.18 0-.37 0-.58-.01C4.12 2.69 6.87 1.11 10 1.11c2.33 0 4.45.87 6.05 2.34-.68-.11-1.65.39-1.65 1.58 0 .74.45 1.36.9 2.1.35.61.55 1.36.55 2.46 0 1.49-1.4 5-1.4 5l-3.03-8.37c.54-.02.82-.17.82-.17.5-.05.44-1.25-.06-1.22 0 0-1.44.12-2.38.12-.87 0-2.33-.12-2.33-.12-.5-.03-.56 1.2-.06 1.22l.92.08 1.26 3.41zM17.41 10c.24-.64.74-1.87.43-4.25.7 1.29 1.05 2.71 1.05 4.25 0 3.29-1.73 6.24-4.4 7.78.97-2.59 1.94-5.2 2.92-7.78zM6.1 18.09C3.12 16.65 1.11 13.53 1.11 10c0-1.3.23-2.48.72-3.59C3.25 10.3 4.67 14.2 6.1 18.09zm4.03-6.63l2.58 6.98c-.86.29-1.76.45-2.71.45-.79 0-1.57-.11-2.29-.33.81-2.38 1.62-4.74 2.42-7.1z"})}),uJe={name:"hdknak",styles:"display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap"},ZP="…",Kp={auto:"auto",head:"head",middle:"middle",tail:"tail",none:"none"},dJe={ellipsis:ZP,ellipsizeMode:Kp.auto,limit:0,numberOfLines:0};function pJe(e,t,n,o){if(typeof e!="string")return"";const r=e.length,s=~~t,i=~~n,c=bi(o)?o:ZP;return s===0&&i===0||s>=r||i>=r||s+i>=r?e:i===0?e.slice(0,s)+c:e.slice(0,s)+c+e.slice(r-i)}function fJe(e="",t){const n={...dJe,...t},{ellipsis:o,ellipsizeMode:r,limit:s}=n;if(r===Kp.none)return e;let i,c;switch(r){case Kp.head:i=0,c=s;break;case Kp.middle:i=Math.floor(s/2),c=Math.floor(s/2);break;default:i=s,c=0}return r!==Kp.auto?pJe(e,i,c,o):e}function Ude(e){const{className:t,children:n,ellipsis:o=ZP,ellipsizeMode:r=Kp.auto,limit:s=0,numberOfLines:i=0,...c}=vn(e,"Truncate"),l=ro();let u;typeof n=="string"?u=n:typeof n=="number"&&(u=n.toString());const d=u?fJe(u,{ellipsis:o,ellipsizeMode:r,limit:s,numberOfLines:i}):n,p=!!u&&r===Kp.auto,f=x.useMemo(()=>l(p&&!i&&uJe,p&&!!i&&Xe(i===1?"word-break: break-all;":""," -webkit-box-orient:vertical;-webkit-line-clamp:",i,";display:-webkit-box;overflow:hidden;",""),t),[t,l,i,p]);return{...c,className:f,children:d}}function bJe(e,t){const n=Ude(e);return a.jsx(mo,{as:"span",...n,ref:t})}const zs=Rn(bJe,"Truncate"),Xde=Xe("color:",Ze.theme.foreground,";line-height:",Ye.fontLineHeightBase,";margin:0;text-wrap:balance;text-wrap:pretty;",""),Gde={name:"4zleql",styles:"display:block"},hJe=Xe("color:",Ze.alert.green,";",""),Kde=Xe("color:",Ze.alert.red,";",""),Yde=Xe("color:",Ze.gray[700],";",""),Zde=Xe("mark{background:",Ze.alert.yellow,";border-radius:",Ye.radiusSmall,";box-shadow:0 0 0 1px rgba( 0, 0, 0, 0.05 ) inset,0 -1px 0 rgba( 0, 0, 0, 0.1 ) inset;}",""),mJe={name:"50zrmy",styles:"text-transform:uppercase"},gJe=Object.freeze(Object.defineProperty({__proto__:null,Text:Xde,block:Gde,destructive:Kde,highlighterText:Zde,muted:Yde,positive:hJe,upperCase:mJe},Symbol.toStringTag,{value:"Module"}));var BC={exports:{}},JK;function MJe(){return JK||(JK=1,function(e){e.exports=function(t){var n={};function o(r){if(n[r])return n[r].exports;var s=n[r]={exports:{},id:r,loaded:!1};return t[r].call(s.exports,s,s.exports,o),s.loaded=!0,s.exports}return o.m=t,o.c=n,o.p="",o(0)}([function(t,n,o){t.exports=o(1)},function(t,n,o){Object.defineProperty(n,"__esModule",{value:!0});var r=o(2);Object.defineProperty(n,"combineChunks",{enumerable:!0,get:function(){return r.combineChunks}}),Object.defineProperty(n,"fillInChunks",{enumerable:!0,get:function(){return r.fillInChunks}}),Object.defineProperty(n,"findAll",{enumerable:!0,get:function(){return r.findAll}}),Object.defineProperty(n,"findChunks",{enumerable:!0,get:function(){return r.findChunks}})},function(t,n){Object.defineProperty(n,"__esModule",{value:!0}),n.findAll=function(u){var d=u.autoEscape,p=u.caseSensitive,f=p===void 0?!1:p,b=u.findChunks,h=b===void 0?r:b,g=u.sanitize,z=u.searchWords,A=u.textToHighlight;return s({chunksToHighlight:o({chunks:h({autoEscape:d,caseSensitive:f,sanitize:g,searchWords:z,textToHighlight:A})}),totalLength:A?A.length:0})};var o=n.combineChunks=function(u){var d=u.chunks;return d=d.sort(function(p,f){return p.start-f.start}).reduce(function(p,f){if(p.length===0)return[f];var b=p.pop();if(f.start<b.end){var h=Math.max(b.end,f.end);p.push({highlight:!1,start:b.start,end:h})}else p.push(b,f);return p},[]),d},r=function(u){var d=u.autoEscape,p=u.caseSensitive,f=u.sanitize,b=f===void 0?i:f,h=u.searchWords,g=u.textToHighlight;return g=b(g),h.filter(function(z){return z}).reduce(function(z,A){A=b(A),d&&(A=c(A));for(var _=new RegExp(A,p?"g":"gi"),v=void 0;v=_.exec(g);){var M=v.index,y=_.lastIndex;y>M&&z.push({highlight:!1,start:M,end:y}),v.index===_.lastIndex&&_.lastIndex++}return z},[])};n.findChunks=r;var s=n.fillInChunks=function(u){var d=u.chunksToHighlight,p=u.totalLength,f=[],b=function(z,A,_){A-z>0&&f.push({start:z,end:A,highlight:_})};if(d.length===0)b(0,p,!1);else{var h=0;d.forEach(function(g){b(h,g.start,!1),b(g.start,g.end,!0),h=g.end}),b(h,p,!1)}return f};function i(l){return l}function c(l){return l.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}}])}(BC)),BC.exports}var zJe=MJe();const OJe=e=>{const t={};for(const n in e)t[n.toLowerCase()]=e[n];return t},yJe=Hs(OJe);function AJe({activeClassName:e="",activeIndex:t=-1,activeStyle:n,autoEscape:o,caseSensitive:r=!1,children:s,findChunks:i,highlightClassName:c="",highlightStyle:l={},highlightTag:u="mark",sanitize:d,searchWords:p=[],unhighlightClassName:f="",unhighlightStyle:b}){if(!s)return null;if(typeof s!="string")return s;const h=s,g=zJe.findAll({autoEscape:o,caseSensitive:r,findChunks:i,sanitize:d,searchWords:p,textToHighlight:h}),z=u;let A=-1,_="",v;return g.map((y,k)=>{const S=h.substr(y.start,y.end-y.start);if(y.highlight){A++;let C;typeof c=="object"?r?C=c[S]:(c=yJe(c),C=c[S.toLowerCase()]):C=c;const R=A===+t;_=`${C} ${R?e:""}`,v=R===!0&&n!==null?Object.assign({},l,n):l;const T={children:S,className:_,key:k,style:v};return typeof z!="string"&&(T.highlightIndex=A),x.createElement(z,T)}return x.createElement("span",{children:S,className:f,key:k,style:b})})}const P8=13,eY={body:P8,caption:10,footnote:11,largeTitle:28,subheadline:12,title:20},vJe=[1,2,3,4,5,6].flatMap(e=>[e,e.toString()]);function QP(e=P8){if(e in eY)return QP(eY[e]);if(typeof e!="number"){const n=parseFloat(e);if(Number.isNaN(n))return e;e=n}return`calc(${`(${e} / ${P8})`} * ${Ye.fontSize})`}function xJe(e=3){if(!vJe.includes(e))return QP(e);const t=`fontSizeH${e}`;return Ye[t]}function wJe(e,t){if(t)return t;if(!e)return;let n=`calc(${Ye.controlHeight} + ${Je(2)})`;switch(e){case"large":n=`calc(${Ye.controlHeightLarge} + ${Je(2)})`;break;case"small":n=`calc(${Ye.controlHeightSmall} + ${Je(2)})`;break;case"xSmall":n=`calc(${Ye.controlHeightXSmall} + ${Je(2)})`;break}return n}var _Je={name:"50zrmy",styles:"text-transform:uppercase"};function Qde(e){const{adjustLineHeightForInnerControls:t,align:n,children:o,className:r,color:s,ellipsizeMode:i,isDestructive:c=!1,display:l,highlightEscape:u=!1,highlightCaseSensitive:d=!1,highlightWords:p,highlightSanitize:f,isBlock:b=!1,letterSpacing:h,lineHeight:g,optimizeReadabilityFor:z,size:A,truncate:_=!1,upperCase:v=!1,variant:M,weight:y=Ye.fontWeight,...k}=vn(e,"Text");let S=o;const C=Array.isArray(p),R=A==="caption";if(C){if(typeof o!="string")throw new TypeError("`children` of `Text` must only be `string` types when `highlightWords` is defined");S=AJe({autoEscape:u,children:o,caseSensitive:d,searchWords:p,sanitize:f})}const T=ro(),E=x.useMemo(()=>{const I={},P=wJe(t,g);if(I.Base=Xe({color:s,display:l,fontSize:QP(A),fontWeight:y,lineHeight:P,letterSpacing:h,textAlign:n},"",""),I.upperCase=_Je,I.optimalTextColor=null,z){const $=DHe(z)==="dark";I.optimalTextColor=Xe($?{color:Ze.gray[900]}:{color:Ze.white},"","")}return T(Xde,I.Base,I.optimalTextColor,c&&Kde,!!C&&Zde,b&&Gde,R&&Yde,M&&gJe[M],v&&I.upperCase,r)},[t,n,r,s,T,l,b,R,c,C,h,g,z,A,v,M,y]);let B;_===!0&&(B="auto"),_===!1&&(B="none");const N={...k,className:E,children:o,ellipsizeMode:i||B},j=Ude(N);return!_&&Array.isArray(o)&&(S=x.Children.map(o,I=>typeof I!="object"||I===null||!("props"in I)?I:hle(I,["Link"])?x.cloneElement(I,{size:I.props.size||"inherit"}):I)),{...j,children:_?j.children:S}}function kJe(e,t){const n=Qde(e);return a.jsx(mo,{as:"span",...n,ref:t})}const Sn=Rn(kJe,"Text"),Jde=He("span",{target:"em5sgkm8"})({name:"pvvbxf",styles:"box-sizing:border-box;display:block"}),epe=He("span",{target:"em5sgkm7"})({name:"jgf79h",styles:"align-items:center;align-self:stretch;box-sizing:border-box;display:flex"}),SJe=({disabled:e,isBorderless:t})=>t?"transparent":e?Ze.ui.borderDisabled:Ze.ui.border,Y3=He("div",{target:"em5sgkm6"})("&&&{box-sizing:border-box;border-color:",SJe,";border-radius:inherit;border-style:solid;border-width:1px;bottom:0;left:0;margin:0;padding:0;pointer-events:none;position:absolute;right:0;top:0;",Go({paddingLeft:2}),";}"),CJe=He(Yo,{target:"em5sgkm5"})("box-sizing:border-box;position:relative;border-radius:",Ye.radiusSmall,";padding-top:0;&:focus-within:not( :has( :is( ",Jde,", ",epe," ):focus-within ) ){",Y3,"{border-color:",Ze.ui.borderFocus,";box-shadow:",Ye.controlBoxShadowFocus,";outline:2px solid transparent;outline-offset:-2px;}}"),qJe=({disabled:e})=>{const t=e?Ze.ui.backgroundDisabled:Ze.ui.background;return Xe({backgroundColor:t},"","")};var RJe={name:"1d3w5wq",styles:"width:100%"};const TJe=({__unstableInputWidth:e,labelPosition:t})=>e?t==="side"?"":Xe(t==="edge"?{flex:`0 0 ${e}`}:{width:e},"",""):RJe,EJe=He("div",{target:"em5sgkm4"})("align-items:center;box-sizing:border-box;border-radius:inherit;display:flex;flex:1;position:relative;",qJe," ",TJe,";"),WJe=({disabled:e})=>e?Xe({color:Ze.ui.textDisabled},"",""):"",JP=({inputSize:e})=>{const t={default:"13px",small:"11px",compact:"13px","__unstable-large":"13px"},n=t[e]||t.default,o="16px";return n?Xe("font-size:",o,";@media ( min-width: 600px ){font-size:",n,";}",""):""},tpe=({inputSize:e,__next40pxDefaultSize:t})=>{const n={default:{height:40,lineHeight:1,minHeight:40,paddingLeft:Ye.controlPaddingX,paddingRight:Ye.controlPaddingX},small:{height:24,lineHeight:1,minHeight:24,paddingLeft:Ye.controlPaddingXSmall,paddingRight:Ye.controlPaddingXSmall},compact:{height:32,lineHeight:1,minHeight:32,paddingLeft:Ye.controlPaddingXSmall,paddingRight:Ye.controlPaddingXSmall},"__unstable-large":{height:40,lineHeight:1,minHeight:40,paddingLeft:Ye.controlPaddingX,paddingRight:Ye.controlPaddingX}};return t||(n.default=n.compact),n[e]||n.default},NJe=e=>Xe(tpe(e),"",""),BJe=({paddingInlineStart:e,paddingInlineEnd:t})=>Xe({paddingInlineStart:e,paddingInlineEnd:t},"",""),LJe=({isDragging:e,dragCursor:t})=>{let n,o;return e&&(n=Xe("cursor:",t,";user-select:none;&::-webkit-outer-spin-button,&::-webkit-inner-spin-button{-webkit-appearance:none!important;margin:0!important;}","")),e&&t&&(o=Xe("&:active{cursor:",t,";}","")),Xe(n," ",o,";","")},$w=He("input",{target:"em5sgkm3"})("&&&{background-color:transparent;box-sizing:border-box;border:none;box-shadow:none!important;color:",Ze.theme.foreground,";display:block;font-family:inherit;margin:0;outline:none;width:100%;",LJe," ",WJe," ",JP," ",NJe," ",BJe," &::-webkit-input-placeholder{line-height:normal;}&[type='email'],&[type='url']{direction:ltr;}}"),PJe=He(Sn,{target:"em5sgkm2"})("&&&{",dle,";box-sizing:border-box;display:block;padding-top:0;padding-bottom:0;max-width:100%;z-index:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}"),jJe=e=>a.jsx(PJe,{...e,as:"label"}),npe=He(Tn,{target:"em5sgkm1"})({name:"1b6uupn",styles:"max-width:calc( 100% - 10px )"}),IJe=({variant:e="default",size:t,__next40pxDefaultSize:n,isPrefix:o})=>{const{paddingLeft:r}=tpe({inputSize:t,__next40pxDefaultSize:n}),s=o?"paddingInlineStart":"paddingInlineEnd";return Xe(e==="default"?{[s]:r}:{display:"flex",[s]:r-4},"","")},ope=He("div",{target:"em5sgkm0"})(IJe,";");function DJe({disabled:e=!1,isBorderless:t=!1}){return a.jsx(Y3,{"aria-hidden":"true",className:"components-input-control__backdrop",disabled:e,isBorderless:t})}const FJe=x.memo(DJe);function $Je({children:e,hideLabelFromVision:t,htmlFor:n,...o}){return e?t?a.jsx(qn,{as:"label",htmlFor:n,children:e}):a.jsx(npe,{children:a.jsx(jJe,{htmlFor:n,...o,children:e})}):null}function sp(e){const{__next36pxDefaultSize:t,__next40pxDefaultSize:n,...o}=e;return{...o,__next40pxDefaultSize:n??t}}function VJe(e){const n=`input-base-control-${vt(rpe)}`;return e||n}function HJe(e){const t={};switch(e){case"top":t.direction="column",t.expanded=!1,t.gap=0;break;case"bottom":t.direction="column-reverse",t.expanded=!1,t.gap=0;break;case"edge":t.justify="space-between";break}return t}function rpe(e,t){const{__next40pxDefaultSize:n,__unstableInputWidth:o,children:r,className:s,disabled:i=!1,hideLabelFromVision:c=!1,labelPosition:l,id:u,isBorderless:d=!1,label:p,prefix:f,size:b="default",suffix:h,...g}=sp(vn(e,"InputBase")),z=VJe(u),A=c||!p,_=x.useMemo(()=>({InputControlPrefixWrapper:{__next40pxDefaultSize:n,size:b},InputControlSuffixWrapper:{__next40pxDefaultSize:n,size:b}}),[n,b]);return a.jsxs(CJe,{...g,...HJe(l),className:s,gap:2,ref:t,children:[a.jsx($Je,{className:"components-input-control__label",hideLabelFromVision:c,labelPosition:l,htmlFor:z,children:p}),a.jsxs(EJe,{__unstableInputWidth:o,className:"components-input-control__container",disabled:i,hideLabel:A,labelPosition:l,children:[a.jsxs(j3,{value:_,children:[f&&a.jsx(Jde,{className:"components-input-control__prefix",children:f}),r,h&&a.jsx(epe,{className:"components-input-control__suffix",children:h})]}),a.jsx(FJe,{disabled:i,isBorderless:d})]})]})}const ej=Rn(rpe,"InputBase");function UJe(e,t,n){return Math.max(t,Math.min(e,n))}const m1={toVector(e,t){return e===void 0&&(e=t),Array.isArray(e)?e:[e,e]},add(e,t){return[e[0]+t[0],e[1]+t[1]]},sub(e,t){return[e[0]-t[0],e[1]-t[1]]},addTo(e,t){e[0]+=t[0],e[1]+=t[1]},subTo(e,t){e[0]-=t[0],e[1]-=t[1]}};function tY(e,t,n){return t===0||Math.abs(t)===1/0?Math.pow(e,n*5):e*t*n/(t+n*e)}function nY(e,t,n,o=.15){return o===0?UJe(e,t,n):e<t?-tY(t-e,n-t,o)+t:e>n?+tY(e-n,n-t,o)+n:e}function XJe(e,[t,n],[o,r]){const[[s,i],[c,l]]=e;return[nY(t,s,i,o),nY(n,c,l,r)]}function GJe(e,t){if(typeof e!="object"||e===null)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var o=n.call(e,t||"default");if(typeof o!="object")return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function KJe(e){var t=GJe(e,"string");return typeof t=="symbol"?t:String(t)}function ss(e,t,n){return t=KJe(t),t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function oY(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable})),n.push.apply(n,o)}return n}function Tr(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?oY(Object(n),!0).forEach(function(o){ss(e,o,n[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):oY(Object(n)).forEach(function(o){Object.defineProperty(e,o,Object.getOwnPropertyDescriptor(n,o))})}return e}const spe={pointer:{start:"down",change:"move",end:"up"},mouse:{start:"down",change:"move",end:"up"},touch:{start:"start",change:"move",end:"end"},gesture:{start:"start",change:"change",end:"end"}};function rY(e){return e?e[0].toUpperCase()+e.slice(1):""}const YJe=["enter","leave"];function ZJe(e=!1,t){return e&&!YJe.includes(t)}function QJe(e,t="",n=!1){const o=spe[e],r=o&&o[t]||t;return"on"+rY(e)+rY(r)+(ZJe(n,r)?"Capture":"")}const JJe=["gotpointercapture","lostpointercapture"];function eet(e){let t=e.substring(2).toLowerCase();const n=!!~t.indexOf("passive");n&&(t=t.replace("passive",""));const o=JJe.includes(t)?"capturecapture":"capture",r=!!~t.indexOf(o);return r&&(t=t.replace("capture","")),{device:t,capture:r,passive:n}}function tet(e,t=""){const n=spe[e],o=n&&n[t]||t;return e+o}function Vw(e){return"touches"in e}function ipe(e){return Vw(e)?"touch":"pointerType"in e?e.pointerType:"mouse"}function net(e){return Array.from(e.touches).filter(t=>{var n,o;return t.target===e.currentTarget||((n=e.currentTarget)===null||n===void 0||(o=n.contains)===null||o===void 0?void 0:o.call(n,t.target))})}function oet(e){return e.type==="touchend"||e.type==="touchcancel"?e.changedTouches:e.targetTouches}function ape(e){return Vw(e)?oet(e)[0]:e}function ret(e){return net(e).map(t=>t.identifier)}function LC(e){const t=ape(e);return Vw(e)?t.identifier:t.pointerId}function sY(e){const t=ape(e);return[t.clientX,t.clientY]}function set(e){const t={};if("buttons"in e&&(t.buttons=e.buttons),"shiftKey"in e){const{shiftKey:n,altKey:o,metaKey:r,ctrlKey:s}=e;Object.assign(t,{shiftKey:n,altKey:o,metaKey:r,ctrlKey:s})}return t}function gx(e,...t){return typeof e=="function"?e(...t):e}function iet(){}function aet(...e){return e.length===0?iet:e.length===1?e[0]:function(){let t;for(const n of e)t=n.apply(this,arguments)||t;return t}}function iY(e,t){return Object.assign({},t,e||{})}const cet=32;class uet{constructor(t,n,o){this.ctrl=t,this.args=n,this.key=o,this.state||(this.state={},this.computeValues([0,0]),this.computeInitial(),this.init&&this.init(),this.reset())}get state(){return this.ctrl.state[this.key]}set state(t){this.ctrl.state[this.key]=t}get shared(){return this.ctrl.state.shared}get eventStore(){return this.ctrl.gestureEventStores[this.key]}get timeoutStore(){return this.ctrl.gestureTimeoutStores[this.key]}get config(){return this.ctrl.config[this.key]}get sharedConfig(){return this.ctrl.config.shared}get handler(){return this.ctrl.handlers[this.key]}reset(){const{state:t,shared:n,ingKey:o,args:r}=this;n[o]=t._active=t.active=t._blocked=t._force=!1,t._step=[!1,!1],t.intentional=!1,t._movement=[0,0],t._distance=[0,0],t._direction=[0,0],t._delta=[0,0],t._bounds=[[-1/0,1/0],[-1/0,1/0]],t.args=r,t.axis=void 0,t.memo=void 0,t.elapsedTime=t.timeDelta=0,t.direction=[0,0],t.distance=[0,0],t.overflow=[0,0],t._movementBound=[!1,!1],t.velocity=[0,0],t.movement=[0,0],t.delta=[0,0],t.timeStamp=0}start(t){const n=this.state,o=this.config;n._active||(this.reset(),this.computeInitial(),n._active=!0,n.target=t.target,n.currentTarget=t.currentTarget,n.lastOffset=o.from?gx(o.from,n):n.offset,n.offset=n.lastOffset,n.startTime=n.timeStamp=t.timeStamp)}computeValues(t){const n=this.state;n._values=t,n.values=this.config.transform(t)}computeInitial(){const t=this.state;t._initial=t._values,t.initial=t.values}compute(t){const{state:n,config:o,shared:r}=this;n.args=this.args;let s=0;if(t&&(n.event=t,o.preventDefault&&t.cancelable&&n.event.preventDefault(),n.type=t.type,r.touches=this.ctrl.pointerIds.size||this.ctrl.touchIds.size,r.locked=!!document.pointerLockElement,Object.assign(r,set(t)),r.down=r.pressed=r.buttons%2===1||r.touches>0,s=t.timeStamp-n.timeStamp,n.timeStamp=t.timeStamp,n.elapsedTime=n.timeStamp-n.startTime),n._active){const k=n._delta.map(Math.abs);m1.addTo(n._distance,k)}this.axisIntent&&this.axisIntent(t);const[i,c]=n._movement,[l,u]=o.threshold,{_step:d,values:p}=n;if(o.hasCustomTransform?(d[0]===!1&&(d[0]=Math.abs(i)>=l&&p[0]),d[1]===!1&&(d[1]=Math.abs(c)>=u&&p[1])):(d[0]===!1&&(d[0]=Math.abs(i)>=l&&Math.sign(i)*l),d[1]===!1&&(d[1]=Math.abs(c)>=u&&Math.sign(c)*u)),n.intentional=d[0]!==!1||d[1]!==!1,!n.intentional)return;const f=[0,0];if(o.hasCustomTransform){const[k,S]=p;f[0]=d[0]!==!1?k-d[0]:0,f[1]=d[1]!==!1?S-d[1]:0}else f[0]=d[0]!==!1?i-d[0]:0,f[1]=d[1]!==!1?c-d[1]:0;this.restrictToAxis&&!n._blocked&&this.restrictToAxis(f);const b=n.offset,h=n._active&&!n._blocked||n.active;h&&(n.first=n._active&&!n.active,n.last=!n._active&&n.active,n.active=r[this.ingKey]=n._active,t&&(n.first&&("bounds"in o&&(n._bounds=gx(o.bounds,n)),this.setup&&this.setup()),n.movement=f,this.computeOffset()));const[g,z]=n.offset,[[A,_],[v,M]]=n._bounds;n.overflow=[g<A?-1:g>_?1:0,z<v?-1:z>M?1:0],n._movementBound[0]=n.overflow[0]?n._movementBound[0]===!1?n._movement[0]:n._movementBound[0]:!1,n._movementBound[1]=n.overflow[1]?n._movementBound[1]===!1?n._movement[1]:n._movementBound[1]:!1;const y=n._active?o.rubberband||[0,0]:[0,0];if(n.offset=XJe(n._bounds,n.offset,y),n.delta=m1.sub(n.offset,b),this.computeMovement(),h&&(!n.last||s>cet)){n.delta=m1.sub(n.offset,b);const k=n.delta.map(Math.abs);m1.addTo(n.distance,k),n.direction=n.delta.map(Math.sign),n._direction=n._delta.map(Math.sign),!n.first&&s>0&&(n.velocity=[k[0]/s,k[1]/s],n.timeDelta=s)}}emit(){const t=this.state,n=this.shared,o=this.config;if(t._active||this.clean(),(t._blocked||!t.intentional)&&!t._force&&!o.triggerAllEvents)return;const r=this.handler(Tr(Tr(Tr({},n),t),{},{[this.aliasKey]:t.values}));r!==void 0&&(t.memo=r)}clean(){this.eventStore.clean(),this.timeoutStore.clean()}}function det([e,t],n){const o=Math.abs(e),r=Math.abs(t);if(o>r&&o>n)return"x";if(r>o&&r>n)return"y"}class pet extends uet{constructor(...t){super(...t),ss(this,"aliasKey","xy")}reset(){super.reset(),this.state.axis=void 0}init(){this.state.offset=[0,0],this.state.lastOffset=[0,0]}computeOffset(){this.state.offset=m1.add(this.state.lastOffset,this.state.movement)}computeMovement(){this.state.movement=m1.sub(this.state.offset,this.state.lastOffset)}axisIntent(t){const n=this.state,o=this.config;if(!n.axis&&t){const r=typeof o.axisThreshold=="object"?o.axisThreshold[ipe(t)]:o.axisThreshold;n.axis=det(n._movement,r)}n._blocked=(o.lockDirection||!!o.axis)&&!n.axis||!!o.axis&&o.axis!==n.axis}restrictToAxis(t){if(this.config.axis||this.config.lockDirection)switch(this.state.axis){case"x":t[1]=0;break;case"y":t[0]=0;break}}}const fet=e=>e,aY=.15,cpe={enabled(e=!0){return e},eventOptions(e,t,n){return Tr(Tr({},n.shared.eventOptions),e)},preventDefault(e=!1){return e},triggerAllEvents(e=!1){return e},rubberband(e=0){switch(e){case!0:return[aY,aY];case!1:return[0,0];default:return m1.toVector(e)}},from(e){if(typeof e=="function")return e;if(e!=null)return m1.toVector(e)},transform(e,t,n){const o=e||n.shared.transform;return this.hasCustomTransform=!!o,o||fet},threshold(e){return m1.toVector(e,0)}},bet=0,Z3=Tr(Tr({},cpe),{},{axis(e,t,{axis:n}){if(this.lockDirection=n==="lock",!this.lockDirection)return n},axisThreshold(e=bet){return e},bounds(e={}){if(typeof e=="function")return s=>Z3.bounds(e(s));if("current"in e)return()=>e.current;if(typeof HTMLElement=="function"&&e instanceof HTMLElement)return e;const{left:t=-1/0,right:n=1/0,top:o=-1/0,bottom:r=1/0}=e;return[[t,n],[o,r]]}}),cY={ArrowRight:(e,t=1)=>[e*t,0],ArrowLeft:(e,t=1)=>[-1*e*t,0],ArrowUp:(e,t=1)=>[0,-1*e*t],ArrowDown:(e,t=1)=>[0,e*t]};class het extends pet{constructor(...t){super(...t),ss(this,"ingKey","dragging")}reset(){super.reset();const t=this.state;t._pointerId=void 0,t._pointerActive=!1,t._keyboardActive=!1,t._preventScroll=!1,t._delayed=!1,t.swipe=[0,0],t.tap=!1,t.canceled=!1,t.cancel=this.cancel.bind(this)}setup(){const t=this.state;if(t._bounds instanceof HTMLElement){const n=t._bounds.getBoundingClientRect(),o=t.currentTarget.getBoundingClientRect(),r={left:n.left-o.left+t.offset[0],right:n.right-o.right+t.offset[0],top:n.top-o.top+t.offset[1],bottom:n.bottom-o.bottom+t.offset[1]};t._bounds=Z3.bounds(r)}}cancel(){const t=this.state;t.canceled||(t.canceled=!0,t._active=!1,setTimeout(()=>{this.compute(),this.emit()},0))}setActive(){this.state._active=this.state._pointerActive||this.state._keyboardActive}clean(){this.pointerClean(),this.state._pointerActive=!1,this.state._keyboardActive=!1,super.clean()}pointerDown(t){const n=this.config,o=this.state;if(t.buttons!=null&&(Array.isArray(n.pointerButtons)?!n.pointerButtons.includes(t.buttons):n.pointerButtons!==-1&&n.pointerButtons!==t.buttons))return;const r=this.ctrl.setEventIds(t);n.pointerCapture&&t.target.setPointerCapture(t.pointerId),!(r&&r.size>1&&o._pointerActive)&&(this.start(t),this.setupPointer(t),o._pointerId=LC(t),o._pointerActive=!0,this.computeValues(sY(t)),this.computeInitial(),n.preventScrollAxis&&ipe(t)!=="mouse"?(o._active=!1,this.setupScrollPrevention(t)):n.delay>0?(this.setupDelayTrigger(t),n.triggerAllEvents&&(this.compute(t),this.emit())):this.startPointerDrag(t))}startPointerDrag(t){const n=this.state;n._active=!0,n._preventScroll=!0,n._delayed=!1,this.compute(t),this.emit()}pointerMove(t){const n=this.state,o=this.config;if(!n._pointerActive)return;const r=LC(t);if(n._pointerId!==void 0&&r!==n._pointerId)return;const s=sY(t);if(document.pointerLockElement===t.target?n._delta=[t.movementX,t.movementY]:(n._delta=m1.sub(s,n._values),this.computeValues(s)),m1.addTo(n._movement,n._delta),this.compute(t),n._delayed&&n.intentional){this.timeoutStore.remove("dragDelay"),n.active=!1,this.startPointerDrag(t);return}if(o.preventScrollAxis&&!n._preventScroll)if(n.axis)if(n.axis===o.preventScrollAxis||o.preventScrollAxis==="xy"){n._active=!1,this.clean();return}else{this.timeoutStore.remove("startPointerDrag"),this.startPointerDrag(t);return}else return;this.emit()}pointerUp(t){this.ctrl.setEventIds(t);try{this.config.pointerCapture&&t.target.hasPointerCapture(t.pointerId)&&t.target.releasePointerCapture(t.pointerId)}catch{}const n=this.state,o=this.config;if(!n._active||!n._pointerActive)return;const r=LC(t);if(n._pointerId!==void 0&&r!==n._pointerId)return;this.state._pointerActive=!1,this.setActive(),this.compute(t);const[s,i]=n._distance;if(n.tap=s<=o.tapsThreshold&&i<=o.tapsThreshold,n.tap&&o.filterTaps)n._force=!0;else{const[c,l]=n._delta,[u,d]=n._movement,[p,f]=o.swipe.velocity,[b,h]=o.swipe.distance,g=o.swipe.duration;if(n.elapsedTime<g){const z=Math.abs(c/n.timeDelta),A=Math.abs(l/n.timeDelta);z>p&&Math.abs(u)>b&&(n.swipe[0]=Math.sign(c)),A>f&&Math.abs(d)>h&&(n.swipe[1]=Math.sign(l))}}this.emit()}pointerClick(t){!this.state.tap&&t.detail>0&&(t.preventDefault(),t.stopPropagation())}setupPointer(t){const n=this.config,o=n.device;n.pointerLock&&t.currentTarget.requestPointerLock(),n.pointerCapture||(this.eventStore.add(this.sharedConfig.window,o,"change",this.pointerMove.bind(this)),this.eventStore.add(this.sharedConfig.window,o,"end",this.pointerUp.bind(this)),this.eventStore.add(this.sharedConfig.window,o,"cancel",this.pointerUp.bind(this)))}pointerClean(){this.config.pointerLock&&document.pointerLockElement===this.state.currentTarget&&document.exitPointerLock()}preventScroll(t){this.state._preventScroll&&t.cancelable&&t.preventDefault()}setupScrollPrevention(t){this.state._preventScroll=!1,met(t);const n=this.eventStore.add(this.sharedConfig.window,"touch","change",this.preventScroll.bind(this),{passive:!1});this.eventStore.add(this.sharedConfig.window,"touch","end",n),this.eventStore.add(this.sharedConfig.window,"touch","cancel",n),this.timeoutStore.add("startPointerDrag",this.startPointerDrag.bind(this),this.config.preventScrollDelay,t)}setupDelayTrigger(t){this.state._delayed=!0,this.timeoutStore.add("dragDelay",()=>{this.state._step=[0,0],this.startPointerDrag(t)},this.config.delay)}keyDown(t){const n=cY[t.key];if(n){const o=this.state,r=t.shiftKey?10:t.altKey?.1:1;this.start(t),o._delta=n(this.config.keyboardDisplacement,r),o._keyboardActive=!0,m1.addTo(o._movement,o._delta),this.compute(t),this.emit()}}keyUp(t){t.key in cY&&(this.state._keyboardActive=!1,this.setActive(),this.compute(t),this.emit())}bind(t){const n=this.config.device;t(n,"start",this.pointerDown.bind(this)),this.config.pointerCapture&&(t(n,"change",this.pointerMove.bind(this)),t(n,"end",this.pointerUp.bind(this)),t(n,"cancel",this.pointerUp.bind(this)),t("lostPointerCapture","",this.pointerUp.bind(this))),this.config.keys&&(t("key","down",this.keyDown.bind(this)),t("key","up",this.keyUp.bind(this))),this.config.filterTaps&&t("click","",this.pointerClick.bind(this),{capture:!0,passive:!1})}}function met(e){"persist"in e&&typeof e.persist=="function"&&e.persist()}const Q3=typeof window<"u"&&window.document&&window.document.createElement;function lpe(){return Q3&&"ontouchstart"in window}function get(){return lpe()||Q3&&window.navigator.maxTouchPoints>1}function Met(){return Q3&&"onpointerdown"in window}function zet(){return Q3&&"exitPointerLock"in window.document}function Oet(){try{return"constructor"in GestureEvent}catch{return!1}}const mi={isBrowser:Q3,gesture:Oet(),touch:lpe(),touchscreen:get(),pointer:Met(),pointerLock:zet()},yet=250,Aet=180,vet=.5,xet=50,wet=250,_et=10,lY={mouse:0,touch:0,pen:8},ket=Tr(Tr({},Z3),{},{device(e,t,{pointer:{touch:n=!1,lock:o=!1,mouse:r=!1}={}}){return this.pointerLock=o&&mi.pointerLock,mi.touch&&n?"touch":this.pointerLock?"mouse":mi.pointer&&!r?"pointer":mi.touch?"touch":"mouse"},preventScrollAxis(e,t,{preventScroll:n}){if(this.preventScrollDelay=typeof n=="number"?n:n||n===void 0&&e?yet:void 0,!(!mi.touchscreen||n===!1))return e||(n!==void 0?"y":void 0)},pointerCapture(e,t,{pointer:{capture:n=!0,buttons:o=1,keys:r=!0}={}}){return this.pointerButtons=o,this.keys=r,!this.pointerLock&&this.device==="pointer"&&n},threshold(e,t,{filterTaps:n=!1,tapsThreshold:o=3,axis:r=void 0}){const s=m1.toVector(e,n?o:r?1:0);return this.filterTaps=n,this.tapsThreshold=o,s},swipe({velocity:e=vet,distance:t=xet,duration:n=wet}={}){return{velocity:this.transform(m1.toVector(e)),distance:this.transform(m1.toVector(t)),duration:n}},delay(e=0){switch(e){case!0:return Aet;case!1:return 0;default:return e}},axisThreshold(e){return e?Tr(Tr({},lY),e):lY},keyboardDisplacement(e=_et){return e}});Tr(Tr({},cpe),{},{device(e,t,{shared:n,pointer:{touch:o=!1}={}}){if(n.target&&!mi.touch&&mi.gesture)return"gesture";if(mi.touch&&o)return"touch";if(mi.touchscreen){if(mi.pointer)return"pointer";if(mi.touch)return"touch"}},bounds(e,t,{scaleBounds:n={},angleBounds:o={}}){const r=i=>{const c=iY(gx(n,i),{min:-1/0,max:1/0});return[c.min,c.max]},s=i=>{const c=iY(gx(o,i),{min:-1/0,max:1/0});return[c.min,c.max]};return typeof n!="function"&&typeof o!="function"?[r(),s()]:i=>[r(i),s(i)]},threshold(e,t,n){return this.lockDirection=n.axis==="lock",m1.toVector(e,this.lockDirection?[.1,3]:0)},modifierKey(e){return e===void 0?"ctrlKey":e},pinchOnWheel(e=!0){return e}});Tr(Tr({},Z3),{},{mouseOnly:(e=!0)=>e});Tr(Tr({},Z3),{},{mouseOnly:(e=!0)=>e});const upe=new Map,j8=new Map;function Cet(e){upe.set(e.key,e.engine),j8.set(e.key,e.resolver)}const qet={key:"drag",engine:het,resolver:ket};function Ret(e,t){if(e==null)return{};var n={},o=Object.keys(e),r,s;for(s=0;s<o.length;s++)r=o[s],!(t.indexOf(r)>=0)&&(n[r]=e[r]);return n}function Tet(e,t){if(e==null)return{};var n=Ret(e,t),o,r;if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);for(r=0;r<s.length;r++)o=s[r],!(t.indexOf(o)>=0)&&Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}const Eet={target(e){if(e)return()=>"current"in e?e.current:e},enabled(e=!0){return e},window(e=mi.isBrowser?window:void 0){return e},eventOptions({passive:e=!0,capture:t=!1}={}){return{passive:e,capture:t}},transform(e){return e}},Wet=["target","eventOptions","window","enabled","transform"];function e4(e={},t){const n={};for(const[o,r]of Object.entries(t))switch(typeof r){case"function":n[o]=r.call(n,e[o],o,e);break;case"object":n[o]=e4(e[o],r);break;case"boolean":r&&(n[o]=e[o]);break}return n}function Net(e,t,n={}){const o=e,{target:r,eventOptions:s,window:i,enabled:c,transform:l}=o,u=Tet(o,Wet);if(n.shared=e4({target:r,eventOptions:s,window:i,enabled:c,transform:l},Eet),t){const d=j8.get(t);n[t]=e4(Tr({shared:n.shared},u),d)}else for(const d in u){const p=j8.get(d);p&&(n[d]=e4(Tr({shared:n.shared},u[d]),p))}return n}class dpe{constructor(t,n){ss(this,"_listeners",new Set),this._ctrl=t,this._gestureKey=n}add(t,n,o,r,s){const i=this._listeners,c=tet(n,o),l=this._gestureKey?this._ctrl.config[this._gestureKey].eventOptions:{},u=Tr(Tr({},l),s);t.addEventListener(c,r,u);const d=()=>{t.removeEventListener(c,r,u),i.delete(d)};return i.add(d),d}clean(){this._listeners.forEach(t=>t()),this._listeners.clear()}}class Bet{constructor(){ss(this,"_timeouts",new Map)}add(t,n,o=140,...r){this.remove(t),this._timeouts.set(t,window.setTimeout(n,o,...r))}remove(t){const n=this._timeouts.get(t);n&&window.clearTimeout(n)}clean(){this._timeouts.forEach(t=>void window.clearTimeout(t)),this._timeouts.clear()}}let Let=class{constructor(t){ss(this,"gestures",new Set),ss(this,"_targetEventStore",new dpe(this)),ss(this,"gestureEventStores",{}),ss(this,"gestureTimeoutStores",{}),ss(this,"handlers",{}),ss(this,"config",{}),ss(this,"pointerIds",new Set),ss(this,"touchIds",new Set),ss(this,"state",{shared:{shiftKey:!1,metaKey:!1,ctrlKey:!1,altKey:!1}}),Pet(this,t)}setEventIds(t){if(Vw(t))return this.touchIds=new Set(ret(t)),this.touchIds;if("pointerId"in t)return t.type==="pointerup"||t.type==="pointercancel"?this.pointerIds.delete(t.pointerId):t.type==="pointerdown"&&this.pointerIds.add(t.pointerId),this.pointerIds}applyHandlers(t,n){this.handlers=t,this.nativeHandlers=n}applyConfig(t,n){this.config=Net(t,n,this.config)}clean(){this._targetEventStore.clean();for(const t of this.gestures)this.gestureEventStores[t].clean(),this.gestureTimeoutStores[t].clean()}effect(){return this.config.shared.target&&this.bind(),()=>this._targetEventStore.clean()}bind(...t){const n=this.config.shared,o={};let r;if(!(n.target&&(r=n.target(),!r))){if(n.enabled){for(const i of this.gestures){const c=this.config[i],l=uY(o,c.eventOptions,!!r);if(c.enabled){const u=upe.get(i);new u(this,t,i).bind(l)}}const s=uY(o,n.eventOptions,!!r);for(const i in this.nativeHandlers)s(i,"",c=>this.nativeHandlers[i](Tr(Tr({},this.state.shared),{},{event:c,args:t})),void 0,!0)}for(const s in o)o[s]=aet(...o[s]);if(!r)return o;for(const s in o){const{device:i,capture:c,passive:l}=eet(s);this._targetEventStore.add(r,i,"",o[s],{capture:c,passive:l})}}}};function Hb(e,t){e.gestures.add(t),e.gestureEventStores[t]=new dpe(e,t),e.gestureTimeoutStores[t]=new Bet}function Pet(e,t){t.drag&&Hb(e,"drag"),t.wheel&&Hb(e,"wheel"),t.scroll&&Hb(e,"scroll"),t.move&&Hb(e,"move"),t.pinch&&Hb(e,"pinch"),t.hover&&Hb(e,"hover")}const uY=(e,t,n)=>(o,r,s,i={},c=!1)=>{var l,u;const d=(l=i.capture)!==null&&l!==void 0?l:t.capture,p=(u=i.passive)!==null&&u!==void 0?u:t.passive;let f=c?o:QJe(o,r,d);n&&p&&(f+="Passive"),e[f]=e[f]||[],e[f].push(s)};function jet(e,t={},n,o){const r=Bo.useMemo(()=>new Let(e),[]);if(r.applyHandlers(e,o),r.applyConfig(t,n),Bo.useEffect(r.effect.bind(r)),Bo.useEffect(()=>r.clean.bind(r),[]),t.target===void 0)return r.bind.bind(r)}function Iet(e,t){return Cet(qet),jet({drag:e},t||{},"drag")}function Det(e){let t="ns-resize";switch(e){case"n":case"s":t="ns-resize";break;case"e":case"w":t="ew-resize";break}return t}function Fet(e,t){const n=Det(t);return x.useEffect(()=>{e?document.documentElement.style.cursor=n:document.documentElement.style.cursor=null},[e,n]),n}function $et(e){const t=x.useRef(e.value),[n,o]=x.useState({}),r=n.value!==void 0?n.value:e.value;return x.useLayoutEffect(()=>{const{current:c}=t;t.current=e.value,n.value!==void 0&&!n.isStale?o({...n,isStale:!0}):n.isStale&&e.value!==c&&o({})},[e.value,n]),{value:r,onBlur:c=>{o({}),e.onBlur?.(c)},onChange:(c,l)=>{o(u=>Object.assign(u,{value:c,isStale:!1})),e.onChange(c,l)}}}const Vet=e=>e,I8={error:null,initialValue:"",isDirty:!1,isDragEnabled:!1,isDragging:!1,isPressEnterToChange:!1,value:""},ppe="CHANGE",Hw="COMMIT",fpe="CONTROL",bpe="DRAG_END",hpe="DRAG_START",mpe="DRAG",gpe="INVALIDATE",Uw="PRESS_DOWN",Mpe="PRESS_ENTER",Az="PRESS_UP",zpe="RESET";function Het(e=I8){const{value:t}=e;return{...I8,...e,initialValue:t}}function Uet(e){return(t,n)=>{const o={...t};switch(n.type){case fpe:return o.value=n.payload.value,o.isDirty=!1,o._event=void 0,o;case Az:o.isDirty=!1;break;case Uw:o.isDirty=!1;break;case hpe:o.isDragging=!0;break;case bpe:o.isDragging=!1;break;case ppe:o.error=null,o.value=n.payload.value,t.isPressEnterToChange&&(o.isDirty=!0);break;case Hw:o.value=n.payload.value,o.isDirty=!1;break;case zpe:o.error=null,o.isDirty=!1,o.value=n.payload.value||t.initialValue;break;case gpe:o.error=n.payload.error;break}return o._event=n.payload.event,e(o,n)}}function Xet(e=Vet,t=I8,n){const[o,r]=x.useReducer(Uet(e),Het(t)),s=M=>(y,k)=>{r({type:M,payload:{value:y,event:k}})},i=M=>y=>{r({type:M,payload:{event:y}})},c=M=>y=>{r({type:M,payload:y})},l=s(ppe),u=(M,y)=>r({type:gpe,payload:{error:M,event:y}}),d=s(zpe),p=s(Hw),f=c(hpe),b=c(mpe),h=c(bpe),g=i(Az),z=i(Uw),A=i(Mpe),_=x.useRef(o),v=x.useRef({value:t.value,onChangeHandler:n});return x.useLayoutEffect(()=>{_.current=o,v.current={value:t.value,onChangeHandler:n}}),x.useLayoutEffect(()=>{if(_.current._event!==void 0&&o.value!==v.current.value&&!o.isDirty){var M;v.current.onChangeHandler((M=o.value)!==null&&M!==void 0?M:"",{event:_.current._event})}},[o.value,o.isDirty]),x.useLayoutEffect(()=>{if(t.value!==_.current.value&&!_.current.isDirty){var M;r({type:fpe,payload:{value:(M=t.value)!==null&&M!==void 0?M:""}})}},[t.value]),{change:l,commit:p,dispatch:r,drag:b,dragEnd:h,dragStart:f,invalidate:u,pressDown:z,pressEnter:A,pressUp:g,reset:d,state:o}}function J3(e){return t=>{const{isComposing:n}="nativeEvent"in t?t.nativeEvent:t;n||t.keyCode===229||e(t)}}const Tp=()=>{};function Get({disabled:e=!1,dragDirection:t="n",dragThreshold:n=10,id:o,isDragEnabled:r=!1,isPressEnterToChange:s=!1,onBlur:i=Tp,onChange:c=Tp,onDrag:l=Tp,onDragEnd:u=Tp,onDragStart:d=Tp,onKeyDown:p=Tp,onValidate:f=Tp,size:b="default",stateReducer:h=v=>v,value:g,type:z,...A},_){const{state:v,change:M,commit:y,drag:k,dragEnd:S,dragStart:C,invalidate:R,pressDown:T,pressEnter:E,pressUp:B,reset:N}=Xet(h,{isDragEnabled:r,value:g,isPressEnterToChange:s},c),{value:j,isDragging:I,isDirty:P}=v,$=x.useRef(!1),F=Fet(I,t),X=ce=>{i(ce),(P||!ce.target.validity.valid)&&($.current=!0,V(ce))},Z=ce=>{const me=ce.target.value;M(me,ce)},V=ce=>{const me=ce.currentTarget.value;try{f(me),y(me,ce)}catch(de){R(de,ce)}},ee=ce=>{const{key:me}=ce;switch(p(ce),me){case"ArrowUp":B(ce);break;case"ArrowDown":T(ce);break;case"Enter":E(ce),s&&(ce.preventDefault(),V(ce));break;case"Escape":s&&P&&(ce.preventDefault(),N(g,ce));break}},te=Iet(ce=>{const{distance:me,dragging:de,event:Ae,target:ye}=ce;if(ce.event={...ce.event,target:ye},!!me){if(Ae.stopPropagation(),!de){u(ce),S(ce);return}l(ce),k(ce),I||(d(ce),C(ce))}},{axis:t==="e"||t==="w"?"x":"y",threshold:n,enabled:r,pointer:{capture:!1}}),J=r?te():{};let ue;return z==="number"&&(ue=ce=>{A.onMouseDown?.(ce),ce.currentTarget!==ce.currentTarget.ownerDocument.activeElement&&ce.currentTarget.focus()}),a.jsx($w,{...A,...J,className:"components-input-control__input",disabled:e,dragCursor:F,isDragging:I,id:o,onBlur:X,onChange:Z,onKeyDown:J3(ee),onMouseDown:ue,ref:_,inputSize:b,value:j??"",type:z})}const Ket=x.forwardRef(Get),Ope=He("div",{target:"ej5x27r4"})("font-family:",la("default.fontFamily"),";font-size:",la("default.fontSize"),";",P3,";"),Yet=({__nextHasNoMarginBottom:e=!1})=>!e&&Xe("margin-bottom:",Je(2),";",""),ype=He("div",{target:"ej5x27r3"})(Yet," .components-panel__row &{margin-bottom:inherit;}"),Ape=Xe(dle,";display:block;margin-bottom:",Je(2),";padding:0;",""),gh=He("label",{target:"ej5x27r2"})(Ape,";");var Zet={name:"11yad0w",styles:"margin-bottom:revert"};const Qet=({__nextHasNoMarginBottom:e=!1})=>!e&&Zet,vz=He("p",{target:"ej5x27r1"})("margin-top:",Je(2),";margin-bottom:0;font-size:",la("helpText.fontSize"),";font-style:normal;color:",Ze.gray[700],";",Qet,";"),Jet=He("span",{target:"ej5x27r0"})(Ape,";"),ett=e=>{const{__nextHasNoMarginBottom:t=!1,__associatedWPComponentName:n="BaseControl",id:o,label:r,hideLabelFromVision:s=!1,help:i,className:c,children:l}=vn(e,"BaseControl");return t||Ke(`Bottom margin styles for wp.components.${n}`,{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."}),a.jsxs(Ope,{className:c,children:[a.jsxs(ype,{className:"components-base-control__field",__nextHasNoMarginBottom:t,children:[r&&o&&(s?a.jsx(qn,{as:"label",htmlFor:o,children:r}):a.jsx(gh,{className:"components-base-control__label",htmlFor:o,children:r})),r&&!o&&(s?a.jsx(qn,{as:"label",children:r}):a.jsx(vpe,{children:r})),l]}),!!i&&a.jsx(vz,{id:o?o+"__help":void 0,className:"components-base-control__help",__nextHasNoMarginBottom:t,children:i})]})},ttt=(e,t)=>{const{className:n,children:o,...r}=e;return a.jsx(Jet,{ref:t,...r,className:oe("components-base-control__label",n),children:o})},vpe=x.forwardRef(ttt),no=Object.assign(YL(ett,"BaseControl"),{VisualLabel:vpe});function q1({componentName:e,__next40pxDefaultSize:t,size:n,__shouldNotWarnDeprecated36pxSize:o}){o||t||n!==void 0&&n!=="default"||Ke(`36px default size for wp.components.${e}`,{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."})}const PC=()=>{};function ntt(e){const n=`inspector-input-control-${vt(N1)}`;return e||n}function ott(e,t){const{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:o,__unstableStateReducer:r=E=>E,__unstableInputWidth:s,className:i,disabled:c=!1,help:l,hideLabelFromVision:u=!1,id:d,isPressEnterToChange:p=!1,label:f,labelPosition:b="top",onChange:h=PC,onValidate:g=PC,onKeyDown:z=PC,prefix:A,size:_="default",style:v,suffix:M,value:y,...k}=sp(e),S=ntt(d),C=oe("components-input-control",i),R=$et({value:y,onBlur:k.onBlur,onChange:h}),T=l?{"aria-describedby":`${S}__help`}:{};return q1({componentName:"InputControl",__next40pxDefaultSize:n,size:_,__shouldNotWarnDeprecated36pxSize:o}),a.jsx(no,{className:C,help:l,id:S,__nextHasNoMarginBottom:!0,children:a.jsx(ej,{__next40pxDefaultSize:n,__unstableInputWidth:s,disabled:c,gap:3,hideLabelFromVision:u,id:S,justify:"left",label:f,labelPosition:b,prefix:A,size:_,style:v,suffix:M,children:a.jsx(Ket,{...k,...T,__next40pxDefaultSize:n,className:"components-input-control__input",disabled:c,id:S,isPressEnterToChange:p,onKeyDown:z,onValidate:g,paddingInlineStart:A?Je(1):void 0,paddingInlineEnd:M?Je(1):void 0,ref:t,size:_,stateReducer:r,...R})})})}const N1=x.forwardRef(ott);function dY({icon:e,className:t,size:n=20,style:o={},...r}){const s=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" "),c={...n!=20?{fontSize:`${n}px`,width:`${n}px`,height:`${n}px`}:{},...o};return a.jsx("span",{className:s,style:c,...r})}function qo({icon:e=null,size:t=typeof e=="string"?20:24,...n}){if(typeof e=="string")return a.jsx(dY,{icon:e,size:t,...n});if(x.isValidElement(e)&&dY===e.type)return x.cloneElement(e,{...n});if(typeof e=="function")return x.createElement(e,{size:t,...n});if(e&&(e.type==="svg"||e.type===ge)){const o={...e.props,width:t,height:t,...n};return a.jsx(ge,{...o})}return x.isValidElement(e)?x.cloneElement(e,{size:t,...n}):e}const rtt=["onMouseDown","onClick"];function stt({__experimentalIsFocusable:e,isDefault:t,isPrimary:n,isSecondary:o,isTertiary:r,isLink:s,isPressed:i,isSmall:c,size:l,variant:u,describedBy:d,...p}){let f=l,b=u;const h={accessibleWhenDisabled:e,"aria-pressed":i,description:d};if(c){var g;(g=f)!==null&&g!==void 0||(f="small")}if(n){var z;(z=b)!==null&&z!==void 0||(b="primary")}if(r){var A;(A=b)!==null&&A!==void 0||(b="tertiary")}if(o){var _;(_=b)!==null&&_!==void 0||(b="secondary")}if(t){var v;Ke("wp.components.Button `isDefault` prop",{since:"5.4",alternative:'variant="secondary"'}),(v=b)!==null&&v!==void 0||(b="secondary")}if(s){var M;(M=b)!==null&&M!==void 0||(b="link")}return{...h,...p,size:f,variant:b}}function itt(e,t){const{__next40pxDefaultSize:n,accessibleWhenDisabled:o,isBusy:r,isDestructive:s,className:i,disabled:c,icon:l,iconPosition:u="left",iconSize:d,showTooltip:p,tooltipPosition:f,shortcut:b,label:h,children:g,size:z="default",text:A,variant:_,description:v,...M}=stt(e),{href:y,target:k,"aria-checked":S,"aria-pressed":C,"aria-selected":R,...T}="href"in M?M:{href:void 0,target:void 0,...M},E=vt(Ce,"components-button__description"),B=typeof g=="string"&&!!g||Array.isArray(g)&&g?.[0]&&g[0]!==null&&g?.[0]?.props?.className!=="components-tooltip",j=oe("components-button",i,{"is-next-40px-default-size":n,"is-secondary":_==="secondary","is-primary":_==="primary","is-small":z==="small","is-compact":z==="compact","is-tertiary":_==="tertiary","is-pressed":[!0,"true","mixed"].includes(C),"is-pressed-mixed":C==="mixed","is-busy":r,"is-link":_==="link","is-destructive":s,"has-text":!!l&&(B||A),"has-icon":!!l}),I=c&&!o,P=y!==void 0&&!c?"a":"button",$=P==="button"?{type:"button",disabled:I,"aria-checked":S,"aria-pressed":C,"aria-selected":R}:{},F=P==="a"?{href:y,target:k}:{},X={};if(c&&o){$["aria-disabled"]=!0,F["aria-disabled"]=!0;for(const me of rtt)X[me]=de=>{de&&(de.stopPropagation(),de.preventDefault())}}const Z=!I&&(p&&!!h||!!b||!!h&&!g?.length&&p!==!1),V=v?E:void 0,ee=T["aria-describedby"]||V,te={className:j,"aria-label":T["aria-label"]||h,"aria-describedby":ee,ref:t},J=a.jsxs(a.Fragment,{children:[l&&u==="left"&&a.jsx(qo,{icon:l,size:d}),A&&a.jsx(a.Fragment,{children:A}),g,l&&u==="right"&&a.jsx(qo,{icon:l,size:d})]}),ue=P==="a"?a.jsx("a",{...F,...T,...X,...te,children:J}):a.jsx("button",{...$,...T,...X,...te,children:J}),ce=Z?{text:g?.length&&v?v:h,shortcut:b,placement:f&&Mw(f)}:{};return a.jsxs(a.Fragment,{children:[a.jsx(B0,{...ce,children:ue}),v&&a.jsx(qn,{children:a.jsx("span",{id:V,children:v})})]})}const Ce=x.forwardRef(itt);var att={name:"euqsgg",styles:"input[type='number']::-webkit-outer-spin-button,input[type='number']::-webkit-inner-spin-button{-webkit-appearance:none!important;margin:0!important;}input[type='number']{-moz-appearance:textfield;}"};const ctt=({hideHTMLArrows:e})=>e?att:"",ltt=He(N1,{target:"ep09it41"})(ctt,";"),pY=He(Ce,{target:"ep09it40"})("&&&&&{color:",Ze.theme.accent,";}"),utt=Xe("width:",Je(5),";min-width:",Je(5),";height:",Je(5),";",""),dtt={smallSpinButtons:utt};function P2(e){const t=Number(e);return isNaN(t)?0:t}function fY(...e){return e.reduce((t,n)=>t+P2(n),0)}function ptt(...e){return e.reduce((t,n,o)=>{const r=P2(n);return o===0?r:t-r},0)}function ftt(e){const t=(e+"").split(".");return t[1]!==void 0?t[1].length:0}function tj(e,t,n){const o=P2(e);return Math.max(t,Math.min(o,n))}function bY(e=0,t=1/0,n=1/0,o=1){const r=P2(e),s=P2(o),i=ftt(o),c=Math.round(r/s)*s,l=tj(c,t,n);return i?P2(l.toFixed(i)):l}const btt={bottom:{align:"flex-end",justify:"center"},bottomLeft:{align:"flex-end",justify:"flex-start"},bottomRight:{align:"flex-end",justify:"flex-end"},center:{align:"center",justify:"center"},edge:{align:"center",justify:"space-between"},left:{align:"center",justify:"flex-start"},right:{align:"center",justify:"flex-end"},stretch:{align:"stretch"},top:{align:"flex-start",justify:"center"},topLeft:{align:"flex-start",justify:"flex-start"},topRight:{align:"flex-start",justify:"flex-end"}},htt={bottom:{justify:"flex-end",align:"center"},bottomLeft:{justify:"flex-end",align:"flex-start"},bottomRight:{justify:"flex-end",align:"flex-end"},center:{justify:"center",align:"center"},edge:{justify:"space-between",align:"center"},left:{justify:"center",align:"flex-start"},right:{justify:"center",align:"flex-end"},stretch:{align:"stretch"},top:{justify:"flex-start",align:"center"},topLeft:{justify:"flex-start",align:"flex-start"},topRight:{justify:"flex-start",align:"flex-end"}};function mtt(e,t="row"){if(!bi(e))return{};const o=t==="column"?htt:btt;return e in o?o[e]:{align:e}}function xpe(e){return typeof e=="string"?[e]:x.Children.toArray(e).filter(t=>x.isValidElement(t))}function wpe(e){const{alignment:t="edge",children:n,direction:o,spacing:r=2,...s}=vn(e,"HStack"),i=mtt(t,o),u={children:xpe(n).map((f,b)=>{if(hle(f,["Spacer"])){const g=f,z=g.key||`hstack-${b}`;return a.jsx(Tn,{isBlock:!0,...g.props},z)}return f}),direction:o,justify:"center",...i,...s,gap:r},{isColumn:d,...p}=Uue(u);return p}function gtt(e,t){const n=wpe(e);return a.jsx(mo,{...n,ref:t})}const Ot=Rn(gtt,"HStack"),Mtt=()=>{};function ztt(e,t){const{__unstableStateReducer:n,className:o,dragDirection:r="n",hideHTMLArrows:s=!1,spinControls:i=s?"none":"native",isDragEnabled:c=!0,isShiftStepEnabled:l=!0,label:u,max:d=1/0,min:p=-1/0,required:f=!1,shiftStep:b=10,step:h=1,spinFactor:g=1,type:z="number",value:A,size:_="default",suffix:v,onChange:M=Mtt,__shouldNotWarnDeprecated36pxSize:y,...k}=sp(e);q1({componentName:"NumberControl",size:_,__next40pxDefaultSize:k.__next40pxDefaultSize,__shouldNotWarnDeprecated36pxSize:y}),s&&Ke("wp.components.NumberControl hideHTMLArrows prop ",{alternative:'spinControls="none"',since:"6.2",version:"6.3"});const S=x.useRef(),C=xn([S,t]),R=h==="any",T=R?1:wg(h),E=wg(g)*T,B=bY(0,p,d,T),N=(V,ee)=>R?""+Math.min(d,Math.max(p,wg(V))):""+bY(V,p,d,ee??T),j=z==="number"?"off":void 0,I=oe("components-number-control",o),$=ro()(_==="small"&&dtt.smallSpinButtons),F=(V,ee,te)=>{te?.preventDefault();const J=te?.shiftKey&&l,ue=J?wg(b)*E:E;let ce=NVe(V)?B:V;return ee==="up"?ce=fY(ce,ue):ee==="down"&&(ce=ptt(ce,ue)),N(ce,J?ue:void 0)},X=(V,ee)=>{const te={...V},{type:J,payload:ue}=ee,ce=ue.event,me=te.value;if((J===Az||J===Uw)&&(te.value=F(me,J===Az?"up":"down",ce)),J===mpe&&c){const[de,Ae]=ue.delta,ye=ue.shiftKey&&l,Ne=ye?wg(b)*E:E;let je,ie;switch(r){case"n":ie=Ae,je=-1;break;case"e":ie=de,je=jt()?-1:1;break;case"s":ie=Ae,je=1;break;case"w":ie=de,je=jt()?1:-1;break}if(ie!==0){ie=Math.ceil(Math.abs(ie))*Math.sign(ie);const we=ie*Ne*je;te.value=N(fY(me,we),ye?Ne:void 0)}}if(J===Mpe||J===Hw){const de=f===!1&&me==="";te.value=de?me:N(me)}return te},Z=V=>ee=>M(String(F(A,V,ee)),{event:{...ee,target:S.current}});return a.jsx(ltt,{autoComplete:j,inputMode:"numeric",...k,className:I,dragDirection:r,hideHTMLArrows:i!=="native",isDragEnabled:c,label:u,max:d,min:p,ref:C,required:f,step:h,type:z,value:A,__unstableStateReducer:(V,ee)=>{var te;const J=X(V,ee);return(te=n?.(J,ee))!==null&&te!==void 0?te:J},size:_,__shouldNotWarnDeprecated36pxSize:!0,suffix:i==="custom"?a.jsxs(a.Fragment,{children:[v,a.jsx(t1,{marginBottom:0,marginRight:2,children:a.jsxs(Ot,{spacing:1,children:[a.jsx(pY,{className:$,icon:Fs,size:"small",label:m("Increment"),onClick:Z("up")}),a.jsx(pY,{className:$,icon:am,size:"small",label:m("Decrement"),onClick:Z("down")})]})})]}):v,onChange:M})}const g0=x.forwardRef(ztt),hY=32,mY=6,Ott=He("div",{target:"eln3bjz3"})("border-radius:",Ye.radiusRound,";border:",Ye.borderWidth," solid ",Ze.ui.border,";box-sizing:border-box;cursor:grab;height:",hY,"px;overflow:hidden;width:",hY,"px;:active{cursor:grabbing;}"),ytt=He("div",{target:"eln3bjz2"})({name:"1r307gh",styles:"box-sizing:border-box;position:relative;width:100%;height:100%;:focus-visible{outline:none;}"}),Att=He("div",{target:"eln3bjz1"})("background:",Ze.theme.accent,";border-radius:",Ye.radiusRound,";box-sizing:border-box;display:block;left:50%;top:4px;transform:translateX( -50% );position:absolute;width:",mY,"px;height:",mY,"px;"),vtt=He(Sn,{target:"eln3bjz0"})("color:",Ze.theme.accent,";margin-right:",Je(3),";");function xtt({value:e,onChange:t,...n}){const o=x.useRef(null),r=x.useRef(),s=x.useRef(),i=()=>{if(o.current===null)return;const d=o.current.getBoundingClientRect();r.current={x:d.x+d.width/2,y:d.y+d.height/2}},c=d=>{if(d!==void 0&&(d.preventDefault(),d.target?.focus(),r.current!==void 0&&t!==void 0)){const{x:p,y:f}=r.current;t(wtt(p,f,d.clientX,d.clientY))}},{startDrag:l,isDragging:u}=x0e({onDragStart:d=>{i(),c(d)},onDragMove:c,onDragEnd:c});return x.useEffect(()=>{u?(s.current===void 0&&(s.current=document.body.style.cursor),document.body.style.cursor="grabbing"):(document.body.style.cursor=s.current||"",s.current=void 0)},[u]),a.jsx(Ott,{ref:o,onMouseDown:l,className:"components-angle-picker-control__angle-circle",...n,children:a.jsx(ytt,{style:e?{transform:`rotate(${e}deg)`}:void 0,className:"components-angle-picker-control__angle-circle-indicator-wrapper",tabIndex:-1,children:a.jsx(Att,{className:"components-angle-picker-control__angle-circle-indicator"})})})}function wtt(e,t,n,o){const r=o-t,s=n-e,i=Math.atan2(r,s),c=Math.round(i*(180/Math.PI))+90;return c<0?360+c:c}function _tt(e,t){const{className:n,label:o=m("Angle"),onChange:r,value:s,...i}=e,c=f=>{if(r===void 0)return;const b=f!==void 0&&f!==""?parseInt(f,10):0;r(b)},l=oe("components-angle-picker-control",n),u=a.jsx(vtt,{children:"°"}),[d,p]=jt()?[u,null]:[null,u];return a.jsxs(Yo,{...i,ref:t,className:l,gap:2,children:[a.jsx(eu,{children:a.jsx(g0,{__next40pxDefaultSize:!0,label:o,className:"components-angle-picker-control__input-field",max:360,min:0,onChange:c,step:"1",value:s,spinControls:"none",prefix:d,suffix:p})}),a.jsx(t1,{marginBottom:"1",marginTop:"auto",children:a.jsx(xtt,{"aria-hidden":"true",value:s,onChange:r})})]})}const ktt=x.forwardRef(_tt),Stt=new RegExp(/[\u007e\u00ad\u2053\u207b\u208b\u2212\p{Pd}]/gu),gY=e=>ms(e).toLocaleLowerCase().replace(Stt,"-");function Ctt(e){var t;let n=(t=e?.toString?.())!==null&&t!==void 0?t:"";return n=n.replace(/['\u2019]/,""),Ti(n,{splitRegexp:[/(?!(?:1ST|2ND|3RD|[4-9]TH)(?![a-z]))([a-z0-9])([A-Z])/g,/(?!(?:1st|2nd|3rd|[4-9]th)(?![a-z]))([0-9])([a-z])/g,/([A-Za-z])([0-9])/g,/([A-Z])([A-Z][a-z])/g]})}function xz(e){return e.replace(/[\\^$.*+?()[\]{}|]/g,"\\$&")}function qtt(e,t=[],n=10){const o=[];for(let r=0;r<t.length;r++){const s=t[r];let{keywords:i=[]}=s;if(typeof s.label=="string"&&(i=[...i,s.label]),!!i.some(l=>e.test(ms(l)))&&(o.push(s),o.length===n))break}return o}function Rtt(e){return t=>{const[n,o]=x.useState([]);return x.useLayoutEffect(()=>{const{options:r,isDebounced:s}=e,i=F1(()=>{const l=Promise.resolve(typeof r=="function"?r(t):r).then(u=>{if(l.canceled)return;const d=u.map((f,b)=>({key:`${e.name}-${b}`,value:f,label:e.getOptionLabel(f),keywords:e.getOptionKeywords?e.getOptionKeywords(f):[],isDisabled:e.isOptionDisabled?e.isOptionDisabled(f):!1})),p=new RegExp("(?:\\b|\\s|^)"+xz(t),"i");o(qtt(p,d))});return l},s?250:0),c=i();return()=>{i.cancel(),c&&(c.canceled=!0)}},[t]),[n]}}var t4=typeof document<"u"?x.useLayoutEffect:x.useEffect;function Mx(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,o,r;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(o=n;o--!==0;)if(!Mx(e[o],t[o]))return!1;return!0}if(r=Object.keys(e),n=r.length,n!==Object.keys(t).length)return!1;for(o=n;o--!==0;)if(!{}.hasOwnProperty.call(t,r[o]))return!1;for(o=n;o--!==0;){const s=r[o];if(!(s==="_owner"&&e.$$typeof)&&!Mx(e[s],t[s]))return!1}return!0}return e!==e&&t!==t}function _pe(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function MY(e,t){const n=_pe(e);return Math.round(t*n)/n}function jC(e){const t=x.useRef(e);return t4(()=>{t.current=e}),t}function Ttt(e){e===void 0&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:o=[],platform:r,elements:{reference:s,floating:i}={},transform:c=!0,whileElementsMounted:l,open:u}=e,[d,p]=x.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[f,b]=x.useState(o);Mx(f,o)||b(o);const[h,g]=x.useState(null),[z,A]=x.useState(null),_=x.useCallback(F=>{F!==k.current&&(k.current=F,g(F))},[]),v=x.useCallback(F=>{F!==S.current&&(S.current=F,A(F))},[]),M=s||h,y=i||z,k=x.useRef(null),S=x.useRef(null),C=x.useRef(d),R=l!=null,T=jC(l),E=jC(r),B=jC(u),N=x.useCallback(()=>{if(!k.current||!S.current)return;const F={placement:t,strategy:n,middleware:f};E.current&&(F.platform=E.current),Cce(k.current,S.current,F).then(X=>{const Z={...X,isPositioned:B.current!==!1};j.current&&!Mx(C.current,Z)&&(C.current=Z,hs.flushSync(()=>{p(Z)}))})},[f,t,n,E,B]);t4(()=>{u===!1&&C.current.isPositioned&&(C.current.isPositioned=!1,p(F=>({...F,isPositioned:!1})))},[u]);const j=x.useRef(!1);t4(()=>(j.current=!0,()=>{j.current=!1}),[]),t4(()=>{if(M&&(k.current=M),y&&(S.current=y),M&&y){if(T.current)return T.current(M,y,N);N()}},[M,y,N,T,R]);const I=x.useMemo(()=>({reference:k,floating:S,setReference:_,setFloating:v}),[_,v]),P=x.useMemo(()=>({reference:M,floating:y}),[M,y]),$=x.useMemo(()=>{const F={position:n,left:0,top:0};if(!P.floating)return F;const X=MY(P.floating,d.x),Z=MY(P.floating,d.y);return c?{...F,transform:"translate("+X+"px, "+Z+"px)",..._pe(P.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:X,top:Z}},[n,c,P.floating,d.x,d.y]);return x.useMemo(()=>({...d,update:N,refs:I,elements:P,floatingStyles:$}),[d,N,I,P,$])}const Ett=e=>{function t(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:e,fn(n){const{element:o,padding:r}=typeof e=="function"?e(n):e;return o&&t(o)?o.current!=null?b8({element:o.current,padding:r}).fn(n):{}:o?b8({element:o,padding:r}).fn(n):{}}}},Wtt=(e,t)=>({...xce(e),options:[e,t]}),Ntt=(e,t)=>({...wce(e),options:[e,t]}),Btt=(e,t)=>({...Sce(e),options:[e,t]}),Ltt=(e,t)=>({..._ce(e),options:[e,t]}),kpe=(e,t)=>({...kce(e),options:[e,t]}),Ptt=(e,t)=>({...Ett(e),options:[e,t]});let zY=0;function OY(e){const t=document.scrollingElement||document.body;e&&(zY=t.scrollTop);const n=e?"add":"remove";t.classList[n]("lockscroll"),document.documentElement.classList[n]("lockscroll"),e||(t.scrollTop=zY)}let CA=0;function jtt(){return x.useEffect(()=>(CA===0&&OY(!0),++CA,()=>{CA===1&&OY(!1),--CA}),[]),null}const Itt={slots:gc(),fills:gc(),registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},updateFill:()=>{}},nj=x.createContext(Itt);function Dtt({name:e,children:t}){const n=x.useContext(nj),o=x.useRef({}),r=x.useRef(t);return x.useLayoutEffect(()=>{r.current=t},[t]),x.useLayoutEffect(()=>{const s=o.current;return n.registerFill(e,s,r.current),()=>n.unregisterFill(e,s)},[n,e]),x.useLayoutEffect(()=>{n.updateFill(e,o.current,r.current)}),null}function yY(e){return typeof e=="function"}function Ftt(e){return x.Children.map(e,(t,n)=>{if(!t||typeof t=="string")return t;let o=n;return typeof t=="object"&&"key"in t&&t?.key&&(o=t.key),x.cloneElement(t,{key:o})})}function $tt(e){var t;const n=x.useContext(nj),o=x.useRef({}),{name:r,children:s,fillProps:i={}}=e;x.useLayoutEffect(()=>{const d=o.current;return n.registerSlot(r,d),()=>n.unregisterSlot(r,d)},[n,r]);let c=(t=$M(n.fills,r))!==null&&t!==void 0?t:[];$M(n.slots,r)!==o.current&&(c=[]);const u=c.map(d=>{const p=yY(d.children)?d.children(i):d.children;return Ftt(p)}).filter(d=>!pke(d));return a.jsx(a.Fragment,{children:yY(s)?s(u):u})}const Vtt={slots:gc(),fills:gc(),registerSlot:()=>{globalThis.SCRIPT_DEBUG===!0&&zn("Components must be wrapped within `SlotFillProvider`. See https://developer.wordpress.org/block-editor/components/slot-fill/")},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},isDefault:!0},lm=x.createContext(Vtt),AY=new Set,IC=new WeakMap,Htt=e=>{if(IC.has(e))return IC.get(e);let t=Is().replace(/[0-9]/g,"");for(;AY.has(t);)t=Is().replace(/[0-9]/g,"");AY.add(t);const n=HL({container:e,key:t});return IC.set(e,n),n};function Jf(e){const{children:t,document:n}=e;if(!n)return null;const o=Htt(n.head);return a.jsx(kHe,{value:o,children:t})}function Utt({name:e,children:t}){var n;const o=x.useContext(lm),r=$M(o.slots,e),s=x.useRef({});if(x.useEffect(()=>{const c=s.current;return o.registerFill(e,c),()=>o.unregisterFill(e,c)},[o,e]),!r||!r.ref.current)return null;const i=a.jsx(Jf,{document:r.ref.current.ownerDocument,children:typeof t=="function"?t((n=r.fillProps)!==null&&n!==void 0?n:{}):t});return hs.createPortal(i,r.ref.current)}function Xtt(e,t){const{name:n,fillProps:o={},as:r,children:s,...i}=e,c=x.useContext(lm),l=x.useRef(null),u=x.useRef(o);return x.useLayoutEffect(()=>{u.current=o},[o]),x.useLayoutEffect(()=>(c.registerSlot(n,l,u.current),()=>c.unregisterSlot(n,l)),[c,n]),x.useLayoutEffect(()=>{c.updateSlot(n,l,u.current)}),a.jsx(mo,{as:r,ref:xn([t,l]),...i})}const Gtt=x.forwardRef(Xtt);function Ktt(){const e=gc(),t=gc();return{slots:e,fills:t,registerSlot:(c,l,u)=>{e.set(c,{ref:l,fillProps:u})},updateSlot:(c,l,u)=>{const d=e.get(c);d&&d.ref===l&&(ds(d.fillProps,u)||e.set(c,{ref:l,fillProps:u}))},unregisterSlot:(c,l)=>{const u=e.get(c);u&&u.ref===l&&e.delete(c)},registerFill:(c,l)=>{t.set(c,[...t.get(c)||[],l])},unregisterFill:(c,l)=>{const u=t.get(c);u&&t.set(c,u.filter(d=>d!==l))}}}function Ytt({children:e}){const[t]=x.useState(Ktt);return a.jsx(lm.Provider,{value:t,children:e})}function Ztt(){const e=gc(),t=gc();function n(c,l){e.set(c,l)}function o(c,l){e.get(c)===l&&e.delete(c)}function r(c,l,u){t.set(c,[...t.get(c)||[],{instance:l,children:u}])}function s(c,l){const u=t.get(c);u&&t.set(c,u.filter(d=>d.instance!==l))}function i(c,l,u){const d=t.get(c);if(!d)return;const p=d.find(f=>f.instance===l);p&&p.children!==u&&t.set(c,d.map(f=>f.instance===l?{instance:l,children:u}:f))}return{slots:e,fills:t,registerSlot:n,unregisterSlot:o,registerFill:r,unregisterFill:s,updateFill:i}}function Qtt({children:e}){const[t]=x.useState(Ztt);return a.jsx(nj.Provider,{value:t,children:e})}function Jtt(e){const t=x.useContext(lm);return{...$M(t.slots,e)}}function H0(e){const t=x.useContext(lm);return $M(t.fills,e)}function um(e){return a.jsxs(a.Fragment,{children:[a.jsx(Dtt,{...e}),a.jsx(Utt,{...e})]})}function ent(e,t){const{bubblesVirtually:n,...o}=e;return n?a.jsx(Gtt,{...o,ref:t}):a.jsx($tt,{...o})}const xf=x.forwardRef(ent);function Spe({children:e,passthrough:t=!1}){return!x.useContext(lm).isDefault&&t?a.jsx(a.Fragment,{children:e}):a.jsx(Qtt,{children:a.jsx(Ytt,{children:e})})}Spe.displayName="SlotFillProvider";function Qn(e){const t=typeof e=="symbol"?e.description:e,n=r=>a.jsx(um,{name:e,...r});n.displayName=`${t}Fill`;const o=r=>a.jsx(xf,{name:e,...r});return o.displayName=`${t}Slot`,o.__unstableName=e,{name:e,Fill:n,Slot:o}}function tnt(){return[{name:"overlay",fn({rects:e}){return e.reference}},kpe({apply({rects:e,elements:t}){var n;const{firstElementChild:o}=(n=t.floating)!==null&&n!==void 0?n:{};o instanceof HTMLElement&&Object.assign(o.style,{width:`${e.reference.width}px`,height:`${e.reference.height}px`})}})]}const Cpe="Popover",nnt=()=>a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100",className:"components-popover__triangle",role:"presentation",children:[a.jsx(he,{className:"components-popover__triangle-bg",d:"M 0 0 L 50 50 L 100 0"}),a.jsx(he,{className:"components-popover__triangle-border",d:"M 0 0 L 50 50 L 100 0",vectorEffect:"non-scaling-stroke"})]}),qpe=x.createContext(void 0),vY="components-popover__fallback-container",ont=()=>{let e=document.body.querySelector("."+vY);return e||(e=document.createElement("div"),e.className=vY,document.body.append(e)),e},rnt=(e,t)=>{const{animate:n=!0,headerTitle:o,constrainTabbing:r,onClose:s,children:i,className:c,noArrow:l=!0,position:u,placement:d="bottom-start",offset:p=0,focusOnMount:f="firstElement",anchor:b,expandOnMobile:h,onFocusOutside:g,__unstableSlotName:z=Cpe,flip:A=!0,resize:_=!0,shift:v=!1,inline:M=!1,variant:y,style:k,__unstableForcePosition:S,anchorRef:C,anchorRect:R,getAnchorRect:T,isAlternate:E,...B}=vn(e,"Popover");let N=A,j=_;S!==void 0&&(Ke("`__unstableForcePosition` prop in wp.components.Popover",{since:"6.1",version:"6.3",alternative:"`flip={ false }` and `resize={ false }`"}),N=!S,j=!S),C!==void 0&&Ke("`anchorRef` prop in wp.components.Popover",{since:"6.1",alternative:"`anchor` prop"}),R!==void 0&&Ke("`anchorRect` prop in wp.components.Popover",{since:"6.1",alternative:"`anchor` prop"}),T!==void 0&&Ke("`getAnchorRect` prop in wp.components.Popover",{since:"6.1",alternative:"`anchor` prop"});const I=E?"toolbar":y;E!==void 0&&Ke("`isAlternate` prop in wp.components.Popover",{since:"6.2",alternative:"`variant` prop with the `'toolbar'` value"});const P=x.useRef(null),[$,F]=x.useState(null),X=x.useCallback(be=>{F(be)},[]),Z=Yn("medium","<"),V=h&&Z,ee=!V&&!l,te=u?Mw(u):d,J=[...d==="overlay"?tnt():[],Wtt(p),N&&Ltt(),j&&kpe({apply(be){var ze;const{firstElementChild:nt}=(ze=je.floating.current)!==null&&ze!==void 0?ze:{};nt instanceof HTMLElement&&Object.assign(nt.style,{maxHeight:`${be.availableHeight}px`,overflow:"auto"})}}),v&&Ntt({crossAxis:!0,limiter:Btt(),padding:1}),Ptt({element:P})],ue=x.useContext(qpe)||z,ce=Jtt(ue);let me;(s||g)&&(me=(be,ze)=>{be==="focus-outside"&&g?g(ze):s&&s()});const[de,Ae]=v0e({constrainTabbing:r,focusOnMount:f,__unstableOnClose:me,onClose:me}),{x:ye,y:Ne,refs:je,strategy:ie,update:we,placement:re,middlewareData:{arrow:pe}}=Ttt({placement:te==="overlay"?void 0:te,middleware:J,whileElementsMounted:(be,ze,nt)=>vce(be,ze,nt,{layoutShift:!1,animationFrame:!0})}),ke=x.useCallback(be=>{P.current=be,we()},[we]),Se=C?.top,se=C?.bottom,L=C?.startContainer,U=C?.current;x.useLayoutEffect(()=>{const be=RVe({anchor:b,anchorRef:C,anchorRect:R,getAnchorRect:T,fallbackReferenceElement:$});je.setReference(be)},[b,C,Se,se,L,U,R,T,$,je]);const ne=xn([je.setFloating,de,t]),ve=V?void 0:{position:ie,top:0,left:0,x:lG(ye),y:lG(Ne)},qe=$1(),Pe=n&&!V&&!qe,[rt,qt]=x.useState(!1),{style:wt,...Bt}=x.useMemo(()=>SVe(re),[re]),ae=Pe?{style:{...k,...wt,...ve},onAnimationComplete:()=>qt(!0),...Bt}:{animate:!1,style:{...k,...ve}},H=(!Pe||rt)&&ye!==null&&Ne!==null;let Y=a.jsxs(Rr.div,{className:oe(c,{"is-expanded":V,"is-positioned":H,[`is-${I==="toolbar"?"alternate":I}`]:I}),...ae,...B,ref:ne,...Ae,tabIndex:-1,children:[V&&a.jsx(jtt,{}),V&&a.jsxs("div",{className:"components-popover__header",children:[a.jsx("span",{className:"components-popover__header-title",children:o}),a.jsx(Ce,{className:"components-popover__close",size:"small",icon:im,onClick:s,label:m("Close")})]}),a.jsx("div",{className:"components-popover__content",children:i}),ee&&a.jsx("div",{ref:ke,className:["components-popover__arrow",`is-${re.split("-")[0]}`].join(" "),style:{left:typeof pe?.x<"u"&&Number.isFinite(pe.x)?`${pe.x}px`:"",top:typeof pe?.y<"u"&&Number.isFinite(pe.y)?`${pe.y}px`:""},children:a.jsx(nnt,{})})]});const fe=ce.ref&&!M,Re=C||R||b;return fe?Y=a.jsx(um,{name:ue,children:Y}):M||(Y=hs.createPortal(a.jsx(Jf,{document,children:Y}),ont())),Re?Y:a.jsxs(a.Fragment,{children:[a.jsx("span",{ref:X}),Y]})},Io=Rn(rnt,"Popover");function snt({name:e=Cpe},t){return a.jsx(xf,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}Io.Slot=x.forwardRef(snt);Io.__unstableSlotNameProvider=qpe.Provider;function xY({items:e,onSelect:t,selectedIndex:n,instanceId:o,listBoxId:r,className:s,Component:i="div"}){return a.jsx(i,{id:r,role:"listbox",className:"components-autocomplete__results",children:e.map((c,l)=>a.jsx(Ce,{id:`components-autocomplete-item-${o}-${c.key}`,role:"option",__next40pxDefaultSize:!0,"aria-selected":l===n,accessibleWhenDisabled:!0,disabled:c.isDisabled,className:oe("components-autocomplete__result",s,{"is-selected":l===n}),variant:l===n?"primary":void 0,onClick:()=>t(c),children:c.label},c.key))})}function int(e){var t;const n=(t=e.useItems)!==null&&t!==void 0?t:Rtt(e);function o({filterValue:r,instanceId:s,listBoxId:i,className:c,selectedIndex:l,onChangeOptions:u,onSelect:d,onReset:p,reset:f,contentRef:b}){const[h]=n(r),g=u3({editableContentElement:b.current}),[z,A]=x.useState(!1),_=x.useRef(null),v=xn([_,Mn(k=>{b.current&&A(k.ownerDocument!==b.current.ownerDocument)},[b])]);ant(_,f);const M=C1(Yt,500);function y(k){M&&(k.length?M(xe(r?Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",k.length):Dn("Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.","Initial %d results loaded. Type to filter all available results. Use up and down arrow keys to navigate.",k.length),k.length),"assertive"):M(m("No results."),"assertive"))}return x.useLayoutEffect(()=>{u(h),y(h)},[h]),h.length===0?null:a.jsxs(a.Fragment,{children:[a.jsx(Io,{focusOnMount:!1,onClose:p,placement:"top-start",className:"components-autocomplete__popover",anchor:g,ref:v,children:a.jsx(xY,{items:h,onSelect:d,selectedIndex:l,instanceId:s,listBoxId:i,className:c})}),b.current&&z&&hs.createPortal(a.jsx(xY,{items:h,onSelect:d,selectedIndex:l,instanceId:s,listBoxId:i,className:c,Component:qn}),b.current.ownerDocument.body)]})}return o}function ant(e,t){x.useEffect(()=>{const n=o=>{!e.current||e.current.contains(o.target)||t(o)};return document.addEventListener("mousedown",n),document.addEventListener("touchstart",n),()=>{document.removeEventListener("mousedown",n),document.removeEventListener("touchstart",n)}},[t,e])}const zx=e=>{if(e===null)return"";switch(typeof e){case"string":case"number":return e.toString();case"boolean":return"";case"object":{if(e instanceof Array)return e.map(zx).join("");if("props"in e)return zx(e.props.children);break}default:return""}return""},wY=[],cnt={};function lnt({record:e,onChange:t,onReplace:n,completers:o,contentRef:r}){const s=vt(cnt),[i,c]=x.useState(0),[l,u]=x.useState(wY),[d,p]=x.useState(""),[f,b]=x.useState(null),[h,g]=x.useState(null),z=x.useRef(!1);function A(N){if(f===null)return;const j=e.start,I=j-f.triggerPrefix.length-d.length,P=eo({html:M1(N)});t(E0(e,P,I,j))}function _(N){const{getOptionCompletion:j}=f||{};if(!N.isDisabled){if(j){const I=j(N.value,d),$=(F=>F!==null&&typeof F=="object"&&"action"in F&&F.action!==void 0&&"value"in F&&F.value!==void 0)(I)?I:{action:"insert-at-caret",value:I};if($.action==="replace"){n([$.value]);return}else $.action==="insert-at-caret"&&A($.value)}v()}}function v(){c(0),u(wY),p(""),b(null),g(null)}function M(N){c(N.length===l.length?i:0),u(N)}function y(N){if(z.current=N.key==="Backspace",!!f&&l.length!==0&&!N.defaultPrevented){switch(N.key){case"ArrowUp":{const j=(i===0?l.length:i)-1;c(j),da()&&Yt(zx(l[j].label),"assertive");break}case"ArrowDown":{const j=(i+1)%l.length;c(j),da()&&Yt(zx(l[j].label),"assertive");break}case"Escape":b(null),g(null),N.preventDefault();break;case"Enter":_(l[i]);break;case"ArrowLeft":case"ArrowRight":v();return;default:return}N.preventDefault()}}const k=x.useMemo(()=>Xl(e)?Jp(Q2(e,0)):"",[e]);x.useEffect(()=>{if(!k){f&&v();return}const N=o.reduce((de,Ae)=>{const ye=k.lastIndexOf(Ae.triggerPrefix),Ne=de!==null?k.lastIndexOf(de.triggerPrefix):-1;return ye>Ne?Ae:de},null);if(!N){f&&v();return}const{allowContext:j,triggerPrefix:I}=N,P=k.lastIndexOf(I),$=k.slice(P+I.length);if($.length>50)return;const X=l.length===0,Z=$.split(/\s/),V=Z.length===1,ee=z.current&&Z.length<=3;if(X&&!(ee||V)){f&&v();return}const te=Jp(Q2(e,void 0,Jp(e).length));if(j&&!j(k.slice(0,P),te)){f&&v();return}if(/^\s/.test($)||/\s\s+$/.test($)){f&&v();return}if(!/[\u0000-\uFFFF]*$/.test($)){f&&v();return}const J=xz(N.triggerPrefix),ue=ms(k),ce=ue.slice(ue.lastIndexOf(N.triggerPrefix)).match(new RegExp(`${J}([\0-]*)$`)),me=ce&&ce[1];b(N),g(()=>N!==f?int(N):h),p(me===null?"":me)},[k]);const{key:S=""}=l[i]||{},{className:C}=f||{},R=!!f&&l.length>0,T=R?`components-autocomplete-listbox-${s}`:void 0,E=R?`components-autocomplete-item-${s}-${S}`:null,B=e.start!==void 0;return{listBoxId:T,activeId:E,onKeyDown:J3(y),popover:B&&h&&a.jsx(h,{className:C,filterValue:d,instanceId:s,listBoxId:T,selectedIndex:i,onChangeOptions:M,onSelect:_,value:e,contentRef:r,reset:v})}}function unt(e){const t=x.useRef(new Set);return t.current.add(e),t.current.size>2&&t.current.delete(Array.from(t.current)[0]),Array.from(t.current)[0]}function dnt(e){const t=x.useRef(null),n=x.useRef(),{record:o}=e,r=unt(o),{popover:s,listBoxId:i,activeId:c,onKeyDown:l}=lnt({...e,contentRef:t});n.current=l;const u=xn([t,Mn(p=>{function f(b){n.current?.(b)}return p.addEventListener("keydown",f),()=>{p.removeEventListener("keydown",f)}},[])]);return o.text!==r?.text?{ref:u,children:s,"aria-autocomplete":i?"list":void 0,"aria-owns":i,"aria-activedescendant":c}:{ref:u}}const pnt=Xe("",""),fnt=()=>Xe("flex:1;",Go({marginRight:"24px"})(),";",""),bnt={name:"bjn8wh",styles:"position:relative"},hnt=e=>Xe("position:absolute;top:",e==="__unstable-large"?"8px":"3px",";",Go({right:0})()," line-height:0;",""),qA=e=>{const{color:t=Ze.gray[200],style:n="solid",width:o=Ye.borderWidth}=e||{},r=o!==Ye.borderWidth?`clamp(1px, ${o}, 10px)`:o;return`${t} ${!!o&&o!=="0"||!!t?n||"solid":n} ${r}`},mnt=(e,t)=>Xe("position:absolute;top:",t==="__unstable-large"?"20px":"15px",";right:",t==="__unstable-large"?"39px":"29px",";bottom:",t==="__unstable-large"?"20px":"15px",";left:",t==="__unstable-large"?"39px":"29px",";border-top:",qA(e?.top),";border-bottom:",qA(e?.bottom),";",Go({borderLeft:qA(e?.left)})()," ",Go({borderRight:qA(e?.right)})(),";",""),gnt=e=>Xe("position:relative;flex:1;width:",e==="__unstable-large"?void 0:"80%",";",""),Mnt={name:"1nwbfnf",styles:"grid-column:span 2;margin:0 auto"},znt=()=>Xe(Go({marginLeft:"auto"})(),";","");function Ont(e){const{className:t,size:n="default",...o}=vn(e,"BorderBoxControlLinkedButton"),r=ro(),s=x.useMemo(()=>r(hnt(n),t),[t,r,n]);return{...o,className:s}}const ynt=(e,t)=>{const{className:n,isLinked:o,...r}=Ont(e),s=m(o?"Unlink sides":"Link sides");return a.jsx(Ce,{...r,size:"small",icon:o?xa:Pl,iconSize:24,label:s,ref:t,className:n})},Ant=Rn(ynt,"BorderBoxControlLinkedButton");function vnt(e){const{className:t,value:n,size:o="default",...r}=vn(e,"BorderBoxControlVisualizer"),s=ro(),i=x.useMemo(()=>s(mnt(n,o),t),[s,t,n,o]);return{...r,className:i,value:n}}const xnt=(e,t)=>{const{value:n,...o}=vnt(e);return a.jsx(mo,{...o,ref:t})},wnt=Rn(xnt,"BorderBoxControlVisualizer"),_nt=({isBlock:e,isDeselectable:t,size:n})=>Xe("background:",Ze.ui.background,";border:1px solid transparent;border-radius:",Ye.radiusSmall,";display:inline-flex;min-width:0;position:relative;",qnt(n)," ",!t&&knt(e),"@media not ( prefers-reduced-motion ){&[data-indicator-animated]::before{transition-property:transform,border-radius;transition-duration:0.2s;transition-timing-function:ease-out;}}&::before{content:'';position:absolute;pointer-events:none;background:",Ze.theme.foreground,`;outline:2px solid transparent;outline-offset:-3px;--antialiasing-factor:100;border-radius:calc( `,Ye.radiusXSmall,` / ( var( --selected-width, 0 ) / @@ -316,44 +316,44 @@ ${r}`)}function u7e(e){return e.replace(/(^|\n)•( +)/g,"$1*$2")}function d7e(e calc( var( --selected-width, 0 ) / var( --antialiasing-factor ) ) - );}`,""),Snt=e=>{const t=Xe("border-color:",Ze.ui.border,";","");return Xe(e&&t," &:hover{border-color:",Ze.ui.borderHover,";}&:focus-within{border-color:",Ze.ui.borderFocus,";box-shadow:",Ye.controlBoxShadowFocus,";z-index:1;outline:2px solid transparent;outline-offset:-2px;}","")};var Cnt={name:"1aqh2c7",styles:"min-height:40px;padding:3px"},qnt={name:"1ndywgm",styles:"min-height:36px;padding:2px"};const Rnt=e=>({default:qnt,"__unstable-large":Cnt})[e],Tnt={name:"7whenc",styles:"display:flex;width:100%"},Ent=He("div",{target:"eakva830"})({name:"zjik7",styles:"display:flex"}),rj=x.createContext({}),Wnt=()=>x.useContext(rj);function Rpe(e){const t=x.useRef(!0),n=Fr(e),o=x.useRef(!1);x.useEffect(()=>{t.current&&(t.current=!1)},[]);const r=o.current||!t.current&&n!==e;return x.useEffect(()=>{o.current=r},[r]),r?{value:e??"",defaultValue:void 0}:{value:void 0,defaultValue:e}}function Nnt({children:e,isAdaptiveWidth:t,label:n,onChange:o,size:r,value:s,id:i,setSelectedElement:c,...l},u){const d=vt(Tpe,"toggle-group-control-as-radio-group"),p=i||d,{value:f,defaultValue:b}=Rpe(s),g=AFe({defaultValue:b,value:f,setValue:o?v=>{o(v??void 0)}:void 0,rtl:jt()}),z=Hn(g,"value"),A=g.setValue;x.useEffect(()=>{z===""&&g.setActiveId(void 0)},[g,z]);const _=x.useMemo(()=>({activeItemIsNotFirstItem:()=>g.getState().activeId!==g.first(),baseId:p,isBlock:!t,size:r,value:z,setValue:A,setSelectedElement:c}),[p,t,g,z,c,A,r]);return a.jsx(rj.Provider,{value:_,children:a.jsx(wFe,{store:g,"aria-label":n,render:a.jsx(mo,{}),...l,id:p,ref:u,children:e})})}const Tpe=x.forwardRef(Nnt);function Bnt({children:e,isAdaptiveWidth:t,label:n,onChange:o,size:r,value:s,id:i,setSelectedElement:c,...l},u){const d=vt(Epe,"toggle-group-control-as-button-group"),p=i||d,{value:f,defaultValue:b}=Rpe(s),[h,g]=B3({defaultValue:b,value:f,onChange:o}),z=x.useMemo(()=>({baseId:p,value:h,setValue:g,isBlock:!t,isDeselectable:!0,size:r,setSelectedElement:c}),[p,h,g,t,r,c]);return a.jsx(rj.Provider,{value:z,children:a.jsx(mo,{"aria-label":n,...l,ref:u,role:"group",children:e})})}const Epe=x.forwardRef(Bnt),F8={element:void 0,top:0,right:0,bottom:0,left:0,width:0,height:0};function Lnt(e){var t,n,o;const r=e.getBoundingClientRect();if(r.width===0||r.height===0)return;const s=e.offsetParent,i=(t=s?.getBoundingClientRect())!==null&&t!==void 0?t:F8,c=(n=s?.scrollLeft)!==null&&n!==void 0?n:0,l=(o=s?.scrollTop)!==null&&o!==void 0?o:0,u=parseFloat(getComputedStyle(e).width),d=parseFloat(getComputedStyle(e).height),p=u/r.width,f=d/r.height;return{element:e,top:(r.top-i?.top)*f+l,right:(i?.right-r.right)*p-c,bottom:(i?.bottom-r.bottom)*f-l,left:(r.left-i?.left)*p+c,width:u,height:d}}const Pnt=100;function Wpe(e,t=[]){const[n,o]=x.useState(F8),r=x.useRef(),s=Ts(()=>{if(e&&e.isConnected){const c=Lnt(e);if(c)return o(c),clearInterval(r.current),!0}else clearInterval(r.current);return!1}),i=js(()=>{s()||requestAnimationFrame(()=>{s()||(r.current=setInterval(s,Pnt))})});return x.useLayoutEffect(()=>{i(e),e||o(F8)},[i,e]),x.useLayoutEffect(()=>{s()},t),n}function jnt(e,t){const n=x.useRef(e),o=Ts(t);x.useLayoutEffect(()=>{n.current!==e&&(o({previousValue:n.current}),n.current=e)},[o,e])}function Npe(e,t,{prefix:n="subelement",dataAttribute:o=`${n}-animated`,transitionEndFilter:r=()=>!0,roundRect:s=!1}={}){const i=Ts(()=>{Object.keys(t).forEach(c=>c!=="element"&&e?.style.setProperty(`--${n}-${c}`,String(s?Math.floor(t[c]):t[c])))});x.useLayoutEffect(()=>{i()},[t,i]),jnt(t.element,({previousValue:c})=>{t.element&&c&&e?.setAttribute(`data-${o}`,"")}),x.useLayoutEffect(()=>{function c(l){r(l)&&e?.removeAttribute(`data-${o}`)}return e?.addEventListener("transitionend",c),()=>e?.removeEventListener("transitionend",c)},[o,e,r])}function Int(e,t){const{__nextHasNoMarginBottom:n=!1,__next40pxDefaultSize:o=!1,__shouldNotWarnDeprecated36pxSize:r,className:s,isAdaptiveWidth:i=!1,isBlock:c=!1,isDeselectable:l=!1,label:u,hideLabelFromVision:d=!1,help:p,onChange:f,size:b="default",value:h,children:g,...z}=vn(e,"ToggleGroupControl"),A=o&&b==="default"?"__unstable-large":b,[_,v]=x.useState(),[M,y]=x.useState(),k=xn([y,t]),S=Wpe(h||h===0?_:void 0);Npe(M,S,{prefix:"selected",dataAttribute:"indicator-animated",transitionEndFilter:E=>E.pseudoElement==="::before",roundRect:!0});const C=ro(),R=x.useMemo(()=>C(knt({isBlock:c,isDeselectable:l,size:A}),c&&Tnt,s),[s,C,c,l,A]),T=l?Epe:Tpe;return q1({componentName:"ToggleGroupControl",size:b,__next40pxDefaultSize:o,__shouldNotWarnDeprecated36pxSize:r}),a.jsxs(no,{help:p,__nextHasNoMarginBottom:n,__associatedWPComponentName:"ToggleGroupControl",children:[!d&&a.jsx(Ent,{children:a.jsx(no.VisualLabel,{children:u})}),a.jsx(T,{...z,setSelectedElement:v,className:R,isAdaptiveWidth:i,label:u,onChange:f,ref:k,size:A,value:h,children:g})]})}const Do=Rn(Int,"ToggleGroupControl"),Dnt=He("div",{target:"et6ln9s1"})({name:"sln1fl",styles:"display:inline-flex;max-width:100%;min-width:0;position:relative"}),Bpe={name:"82a6rk",styles:"flex:1"},Lpe=({isDeselectable:e,isIcon:t,isPressed:n,size:o})=>Xe("align-items:center;appearance:none;background:transparent;border:none;border-radius:",Ye.radiusXSmall,";color:",Ze.theme.gray[700],";fill:currentColor;cursor:pointer;display:flex;font-family:inherit;height:100%;justify-content:center;line-height:100%;outline:none;padding:0 12px;position:relative;text-align:center;@media not ( prefers-reduced-motion ){transition:background ",Ye.transitionDurationFast," linear,color ",Ye.transitionDurationFast," linear,font-weight 60ms linear;}user-select:none;width:100%;z-index:2;&::-moz-focus-inner{border:0;}&[disabled]{opacity:0.4;cursor:default;}&:active{background:",Ze.ui.background,";}",e&&$nt," ",t&&Hnt({size:o})," ",n&&Fnt,";",""),Fnt=Xe("color:",Ze.theme.foregroundInverted,";&:active{background:transparent;}",""),$nt=Xe("color:",Ze.theme.foreground,";&:focus{box-shadow:inset 0 0 0 1px ",Ze.ui.background,",0 0 0 ",Ye.borderWidthFocus," ",Ze.theme.accent,";outline:2px solid transparent;}",""),Vnt=He("div",{target:"et6ln9s0"})("display:flex;font-size:",Ye.fontSize,";line-height:1;"),Hnt=({size:e="default"})=>{const t={default:"30px","__unstable-large":"32px"};return Xe("color:",Ze.theme.foreground,";height:",t[e],";aspect-ratio:1;padding-left:0;padding-right:0;","")},Unt=Object.freeze(Object.defineProperty({__proto__:null,ButtonContentView:Vnt,LabelView:Dnt,buttonView:Lpe,labelBlock:Bpe},Symbol.toStringTag,{value:"Module"})),{ButtonContentView:_Y,LabelView:Xnt}=Unt,Gnt=({showTooltip:e,text:t,children:n})=>e&&t?a.jsx(B0,{text:t,placement:"top",children:n}):a.jsx(a.Fragment,{children:n});function Ppe(e,t){const n=Wnt(),o=vt(Ppe,n.baseId||"toggle-group-control-option-base"),r=vn({...e,id:o},"ToggleGroupControlOptionBase"),{isBlock:s=!1,isDeselectable:i=!1,size:c="default"}=n,{className:l,isIcon:u=!1,value:d,children:p,showTooltip:f=!1,disabled:b,...h}=r,g=n.value===d,z=ro(),A=x.useMemo(()=>z(s&&Bpe),[z,s]),_=x.useMemo(()=>z(Lpe({isDeselectable:i,isIcon:u,isPressed:g,size:c}),l),[z,i,u,g,c,l]),v=()=>{i&&g?n.setValue(void 0):n.setValue(d)},M={...h,className:_,"data-value":d,ref:t},y=x.useRef(null);return x.useLayoutEffect(()=>{g&&y.current&&n.setSelectedElement(y.current)},[g,n]),a.jsx(Xnt,{ref:y,className:A,children:a.jsx(Gnt,{showTooltip:f,text:h["aria-label"],children:i?a.jsx("button",{...M,disabled:b,"aria-pressed":g,type:"button",onClick:v,children:a.jsx(_Y,{children:p})}):a.jsx(fFe,{disabled:b,onFocusVisible:()=>{(!(n.value===null||n.value==="")||n.activeItemIsNotFirstItem?.())&&n.setValue(d)},render:a.jsx("button",{type:"button",...M}),value:d,children:a.jsx(_Y,{children:p})})})})}const jpe=Rn(Ppe,"ToggleGroupControlOptionBase");function Knt(e,t){const{label:n,...o}=e,r=o["aria-label"]||n;return a.jsx(jpe,{...o,"aria-label":r,ref:t,children:n})}const Kn=x.forwardRef(Knt);function Ynt(e,t){const{icon:n,label:o,...r}=e;return a.jsx(jpe,{...r,isIcon:!0,"aria-label":o,showTooltip:!0,ref:t,children:a.jsx(qo,{icon:n})})}const Ma=x.forwardRef(Ynt),Znt=[{label:m("Solid"),icon:fde,value:"solid"},{label:m("Dashed"),icon:uQe,value:"dashed"},{label:m("Dotted"),icon:dQe,value:"dotted"}];function Qnt({onChange:e,...t},n){return a.jsx(Do,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,ref:n,isDeselectable:!0,onChange:o=>{e?.(o)},...t,children:Znt.map(o=>a.jsx(Ma,{value:o.value,icon:o.icon,label:o.label},o.value))})}const Jnt=Rn(Qnt,"BorderControlStylePicker");function eot(e,t){const{className:n,colorValue:o,...r}=e;return a.jsx("span",{className:oe("component-color-indicator",n),style:{background:o},ref:t,...r})}const eb=x.forwardRef(eot),tot=(e,t)=>{const{renderContent:n,renderToggle:o,className:r,contentClassName:s,expandOnMobile:i,headerTitle:c,focusOnMount:l,popoverProps:u,onClose:d,onToggle:p,style:f,open:b,defaultOpen:h,position:g,variant:z}=vn(e,"Dropdown");g!==void 0&&Ke("`position` prop in wp.components.Dropdown",{since:"6.2",alternative:"`popoverProps.placement` prop",hint:"Note that the `position` prop will override any values passed through the `popoverProps.placement` prop."});const[A,_]=x.useState(null),v=x.useRef(),[M,y]=B3({defaultValue:h,value:b,onChange:p});function k(){if(!v.current)return;const{ownerDocument:T}=v.current,E=T?.activeElement?.closest('[role="dialog"]');!v.current.contains(T.activeElement)&&(!E||E.contains(v.current))&&S()}function S(){d?.(),y(!1)}const C={isOpen:!!M,onToggle:()=>y(!M),onClose:S},R=!!u?.anchor||!!u?.anchorRef||!!u?.getAnchorRect||!!u?.anchorRect;return a.jsxs("div",{className:r,ref:xn([v,t,_]),tabIndex:-1,style:f,children:[o(C),M&&a.jsx(Io,{position:g,onClose:S,onFocusOutside:k,expandOnMobile:i,headerTitle:c,focusOnMount:l,offset:13,anchor:R?void 0:A,variant:z,...u,className:oe("components-dropdown__content",u?.className,s),children:n(C)})]})},so=Rn(tot,"Dropdown");function not(e,t){const n=vn(e,"InputControlSuffixWrapper");return a.jsx(ope,{...n,ref:t})}const eO=Rn(not,"InputControlSuffixWrapper"),oot=({disabled:e})=>e?Xe("color:",Ze.ui.textDisabled,";cursor:default;",""):"";var rot={name:"1lv1yo7",styles:"display:inline-flex"};const sot=({variant:e})=>e==="minimal"?rot:"",iot=He(tj,{target:"e1mv6sxx3"})("color:",Ze.theme.foreground,";cursor:pointer;",oot," ",sot,";"),aot=({__next40pxDefaultSize:e,multiple:t,selectSize:n="default"})=>{if(t)return;const o={default:{height:40,minHeight:40,paddingTop:0,paddingBottom:0},small:{height:24,minHeight:24,paddingTop:0,paddingBottom:0},compact:{height:32,minHeight:32,paddingTop:0,paddingBottom:0},"__unstable-large":{height:40,minHeight:40,paddingTop:0,paddingBottom:0}};e||(o.default=o.compact);const r=o[n]||o.default;return Xe(r,"","")},CM=18,cot=({__next40pxDefaultSize:e,multiple:t,selectSize:n="default"})=>{const o={default:Ye.controlPaddingX,small:Ye.controlPaddingXSmall,compact:Ye.controlPaddingXSmall,"__unstable-large":Ye.controlPaddingX};e||(o.default=o.compact);const r=o[n]||o.default;return Go({paddingLeft:r,paddingRight:r+CM,...t?{paddingTop:r,paddingBottom:r}:{}})},lot=({multiple:e})=>({overflow:e?"auto":"hidden"});var uot={name:"n1jncc",styles:"field-sizing:content"};const dot=({variant:e})=>e==="minimal"?uot:"",pot=He("select",{target:"e1mv6sxx2"})("&&&{appearance:none;background:transparent;box-sizing:border-box;border:none;box-shadow:none!important;color:currentColor;cursor:inherit;display:block;font-family:inherit;margin:0;width:100%;max-width:none;white-space:nowrap;text-overflow:ellipsis;",ej,";",aot,";",cot,";",lot," ",dot,";}"),fot=He("div",{target:"e1mv6sxx1"})("margin-inline-end:",Je(-1),";line-height:0;path{fill:currentColor;}"),bot=He(eO,{target:"e1mv6sxx0"})("position:absolute;pointer-events:none;",Go({right:0}),";"),Ipe=()=>a.jsx(bot,{children:a.jsx(fot,{children:a.jsx(wn,{icon:nu,size:CM})})});function hot(e){const n=`inspector-select-control-${vt(jn)}`;return e||n}function mot({options:e}){return e.map(({id:t,label:n,value:o,...r},s)=>{const i=t||`${n}-${o}-${s}`;return a.jsx("option",{value:o,...r,children:n},i)})}function got(e,t){const{className:n,disabled:o=!1,help:r,hideLabelFromVision:s,id:i,label:c,multiple:l=!1,onChange:u,options:d=[],size:p="default",value:f,labelPosition:b="top",children:h,prefix:g,suffix:z,variant:A="default",__next40pxDefaultSize:_=!1,__nextHasNoMarginBottom:v=!1,__shouldNotWarnDeprecated36pxSize:M,...y}=sp(e),k=hot(i),S=r?`${k}__help`:void 0;if(!d?.length&&!h)return null;const C=T=>{if(e.multiple){const B=Array.from(T.target.options).filter(({selected:N})=>N).map(({value:N})=>N);e.onChange?.(B,{event:T});return}e.onChange?.(T.target.value,{event:T})},R=oe("components-select-control",n);return q1({componentName:"SelectControl",__next40pxDefaultSize:_,size:p,__shouldNotWarnDeprecated36pxSize:M}),a.jsx(no,{help:r,id:k,__nextHasNoMarginBottom:v,__associatedWPComponentName:"SelectControl",children:a.jsx(iot,{className:R,disabled:o,hideLabelFromVision:s,id:k,isBorderless:A==="minimal",label:c,size:p,suffix:z||!l&&a.jsx(Ipe,{}),prefix:g,labelPosition:b,__unstableInputWidth:A==="minimal"?"auto":void 0,variant:A,__next40pxDefaultSize:_,children:a.jsx(pot,{...y,__next40pxDefaultSize:_,"aria-describedby":S,className:"components-select-control__input",disabled:o,id:k,multiple:l,onChange:C,ref:t,selectSize:p,value:f,variant:A,children:h||a.jsx(mot,{options:d})})})})}const jn=x.forwardRef(got);function o4(e,t,n){return typeof e!="number"?null:parseFloat(`${nj(e,t,n)}`)}function Mot(e){const{min:t,max:n,value:o,initial:r}=e,[s,i]=Ow(o4(o,t,n),{initial:o4(r??null,t,n),fallback:null}),c=x.useCallback(l=>{i(l===null?null:o4(l,t,n))},[t,n,i]);return[s,c]}const Mh=30,zh=4,sj=()=>Xe({height:Mh,minHeight:Mh},"",""),of=12,zot=({__next40pxDefaultSize:e})=>!e&&Xe({minHeight:Mh},"",""),Oot=He("div",{target:"e1epgpqk14"})("-webkit-tap-highlight-color:transparent;align-items:center;display:flex;justify-content:flex-start;padding:0;position:relative;touch-action:none;width:100%;min-height:40px;",zot,";"),yot=({color:e=Ze.ui.borderFocus})=>Xe({color:e},"",""),Aot=({marks:e,__nextHasNoMarginBottom:t})=>t?"":Xe({marginBottom:e?16:void 0},"",""),vot=He("div",{shouldForwardProp:e=>!["color","__nextHasNoMarginBottom","marks"].includes(e),target:"e1epgpqk13"})("display:block;flex:1;position:relative;width:100%;",yot,";",sj,";",Aot,";"),xot=He("span",{target:"e1epgpqk12"})("display:flex;margin-top:",zh,"px;",Go({marginRight:6}),";"),wot=He("span",{target:"e1epgpqk11"})("display:flex;margin-top:",zh,"px;",Go({marginLeft:6}),";"),_ot=({disabled:e,railColor:t})=>{let n=t||"";return e&&(n=Ze.ui.backgroundDisabled),Xe({background:n},"","")},kot=He("span",{target:"e1epgpqk10"})("background-color:",Ze.gray[300],";left:0;pointer-events:none;right:0;display:block;height:",zh,"px;position:absolute;margin-top:",(Mh-zh)/2,"px;top:0;border-radius:",Ye.radiusFull,";",_ot,";"),Sot=({disabled:e,trackColor:t})=>{let n=t||"currentColor";return e&&(n=Ze.gray[400]),Xe({background:n},"","")},Cot=He("span",{target:"e1epgpqk9"})("background-color:currentColor;border-radius:",Ye.radiusFull,";height:",zh,"px;pointer-events:none;display:block;position:absolute;margin-top:",(Mh-zh)/2,"px;top:0;.is-marked &{@media not ( prefers-reduced-motion ){transition:width ease 0.1s;}}",Sot,";"),qot=He("span",{target:"e1epgpqk8"})({name:"g5kg28",styles:"display:block;pointer-events:none;position:relative;width:100%;user-select:none;margin-top:17px"}),Rot=He("span",{target:"e1epgpqk7"})("position:absolute;left:0;top:-4px;height:4px;width:2px;transform:translateX( -50% );background-color:",Ze.ui.background,";z-index:1;"),Tot=({isFilled:e})=>Xe({color:e?Ze.gray[700]:Ze.gray[300]},"",""),Eot=He("span",{target:"e1epgpqk6"})("color:",Ze.gray[300],";font-size:11px;position:absolute;top:8px;white-space:nowrap;",Go({left:0}),";",Go({transform:"translateX( -50% )"},{transform:"translateX( 50% )"}),";",Tot,";"),Dpe=({disabled:e})=>e?Xe("background-color:",Ze.gray[400],";",""):Xe("background-color:",Ze.theme.accent,";",""),Wot=He("span",{target:"e1epgpqk5"})("align-items:center;display:flex;height:",of,"px;justify-content:center;margin-top:",(Mh-of)/2,"px;outline:0;pointer-events:none;position:absolute;top:0;user-select:none;width:",of,"px;border-radius:",Ye.radiusRound,";z-index:3;.is-marked &{@media not ( prefers-reduced-motion ){transition:left ease 0.1s;}}",Dpe,";",Go({marginLeft:-10}),";",Go({transform:"translateX( 4.5px )"},{transform:"translateX( -4.5px )"}),";"),Not=({isFocused:e})=>e?Xe("&::before{content:' ';position:absolute;background-color:",Ze.theme.accent,";opacity:0.4;border-radius:",Ye.radiusRound,";height:",of+8,"px;width:",of+8,"px;top:-4px;left:-4px;}",""):"",Bot=He("span",{target:"e1epgpqk4"})("align-items:center;border-radius:",Ye.radiusRound,";height:100%;outline:0;position:absolute;user-select:none;width:100%;box-shadow:",Ye.elevationXSmall,";",Dpe,";",Not,";"),Lot=He("input",{target:"e1epgpqk3"})("box-sizing:border-box;cursor:pointer;display:block;height:100%;left:0;margin:0 -",of/2,"px;opacity:0;outline:none;position:absolute;right:0;top:0;width:calc( 100% + ",of,"px );"),Pot=({show:e})=>Xe("display:",e?"inline-block":"none",";opacity:",e?1:0,";@media not ( prefers-reduced-motion ){transition:opacity 120ms ease,display 120ms ease allow-discrete;}@starting-style{opacity:0;}","");var jot={name:"1cypxip",styles:"top:-80%"},Iot={name:"1lr98c4",styles:"bottom:-80%"};const Dot=({position:e})=>e==="bottom"?Iot:jot,Fot=He("span",{target:"e1epgpqk2"})("background:rgba( 0, 0, 0, 0.8 );border-radius:",Ye.radiusSmall,";color:white;font-size:12px;min-width:32px;padding:4px 8px;pointer-events:none;position:absolute;text-align:center;user-select:none;line-height:1.4;",Pot,";",Dot,";",Go({transform:"translateX(-50%)"},{transform:"translateX(50%)"}),";"),$ot=He(g0,{target:"e1epgpqk1"})("display:inline-block;font-size:13px;margin-top:0;input[type='number']&{",sj,";}",Go({marginLeft:`${Je(4)} !important`}),";"),Vot=He("span",{target:"e1epgpqk0"})("display:block;margin-top:0;button,button.is-small{margin-left:0;",sj,";}",Go({marginLeft:8}),";");function Hot(e,t){const{describedBy:n,label:o,value:r,...s}=e;return a.jsx(Lot,{...s,"aria-describedby":n,"aria-label":o,"aria-hidden":!1,ref:t,tabIndex:0,type:"range",value:r})}const Uot=x.forwardRef(Hot);function Xot(e){const{className:t,isFilled:n=!1,label:o,style:r={},...s}=e,i=oe("components-range-control__mark",n&&"is-filled",t),c=oe("components-range-control__mark-label",n&&"is-filled");return a.jsxs(a.Fragment,{children:[a.jsx(Rot,{...s,"aria-hidden":"true",className:i,style:r}),o&&a.jsx(Eot,{"aria-hidden":"true",className:c,isFilled:n,style:r,children:o})]})}function Got(e){const{disabled:t=!1,marks:n=!1,min:o=0,max:r=100,step:s=1,value:i=0,...c}=e;return a.jsxs(a.Fragment,{children:[a.jsx(kot,{disabled:t,...c}),n&&a.jsx(Kot,{disabled:t,marks:n,min:o,max:r,step:s,value:i})]})}function Kot(e){const{disabled:t=!1,marks:n=!1,min:o=0,max:r=100,step:s=1,value:i=0}=e,l=Yot({marks:n,min:o,max:r,step:s==="any"?1:s,value:i});return a.jsx(qot,{"aria-hidden":"true",className:"components-range-control__marks",children:l.map(u=>x.createElement(Xot,{...u,key:u.key,"aria-hidden":"true",disabled:t}))})}function Yot({marks:e,min:t=0,max:n=100,step:o=1,value:r=0}){if(!e)return[];const s=n-t;if(!Array.isArray(e)){e=[];const c=1+Math.round(s/o);for(;c>e.push({value:o*e.length+t}););}const i=[];return e.forEach((c,l)=>{if(c.value<t||c.value>n)return;const u=`mark-${l}`,d=c.value<=r,p=`${(c.value-t)/s*100}%`,f={[jt()?"right":"left"]:p};i.push({...c,isFilled:d,key:u,style:f})}),i}function Zot(e){const{className:t,inputRef:n,tooltipPosition:o,show:r=!1,style:s={},value:i=0,renderTooltipContent:c=b=>b,zIndex:l=100,...u}=e,d=Qot({inputRef:n,tooltipPosition:o}),p=oe("components-simple-tooltip",t),f={...s,zIndex:l};return a.jsx(Fot,{...u,"aria-hidden":"false",className:p,position:d,show:r,role:"tooltip",style:f,children:c(i)})}function Qot({inputRef:e,tooltipPosition:t}){const[n,o]=x.useState(),r=x.useCallback(()=>{e&&e.current&&o(t)},[t,e]);return x.useEffect(()=>{r()},[r]),x.useEffect(()=>(window.addEventListener("resize",r),()=>{window.removeEventListener("resize",r)})),n}const Cg=()=>{};function Jot({resetFallbackValue:e,initialPosition:t}){return e!==void 0?Number.isNaN(e)?null:e:t!==void 0?Number.isNaN(t)?null:t:null}function Fpe(e,t){const{__nextHasNoMarginBottom:n=!1,afterIcon:o,allowReset:r=!1,beforeIcon:s,className:i,color:c=Ze.theme.accent,currentInput:l,disabled:u=!1,help:d,hideLabelFromVision:p=!1,initialPosition:f,isShiftStepEnabled:b=!0,label:h,marks:g=!1,max:z=100,min:A=0,onBlur:_=Cg,onChange:v=Cg,onFocus:M=Cg,onMouseLeave:y=Cg,onMouseMove:k=Cg,railColor:S,renderTooltipContent:C=H=>H,resetFallbackValue:R,__next40pxDefaultSize:T=!1,shiftStep:E=10,showTooltip:B,step:N=1,trackColor:j,value:I,withInputField:P=!0,__shouldNotWarnDeprecated36pxSize:$,...F}=e,[X,Z]=Mot({min:A,max:z,value:I??null,initial:f}),V=x.useRef(!1);let ee=B,te=P;N==="any"&&(ee=!1,te=!1);const[J,ue]=x.useState(ee),[ce,me]=x.useState(!1),de=x.useRef(),Ae=de.current?.matches(":focus"),ye=!u&&ce,Ne=X===null,ie=Ne?"":X!==void 0?X:l,we=Ne?(z-A)/2+A:X,re=Ne?50:(X-A)/(z-A)*100,pe=`${nj(re,0,100)}%`,ke=oe("components-range-control",i),Se=oe("components-range-control__wrapper",!!g&&"is-marked"),se=vt(Fpe,"inspector-range-control"),L=d?`${se}__help`:void 0,U=ee!==!1&&Number.isFinite(X),ne=H=>{const Y=parseFloat(H.target.value);Z(Y),v(Y)},ve=H=>{let Y=parseFloat(H);Z(Y),isNaN(Y)?r&&(V.current=!0):((Y<A||Y>z)&&(Y=o4(Y,A,z)),v(Y),V.current=!1)},qe=()=>{V.current&&(Pe(),V.current=!1)},Pe=()=>{const H=Number.isNaN(R)?null:R??null;Z(H),v(H??void 0)},rt=()=>ue(!0),qt=()=>ue(!1),wt=H=>{_(H),me(!1),qt()},Bt=H=>{M(H),me(!0),rt()},ae={[jt()?"right":"left"]:pe};return q1({componentName:"RangeControl",__next40pxDefaultSize:T,size:void 0,__shouldNotWarnDeprecated36pxSize:$}),a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"RangeControl",className:ke,label:h,hideLabelFromVision:p,id:`${se}`,help:d,children:a.jsxs(Oot,{className:"components-range-control__root",__next40pxDefaultSize:T,children:[s&&a.jsx(xot,{children:a.jsx(qo,{icon:s})}),a.jsxs(vot,{__nextHasNoMarginBottom:n,className:Se,color:c,marks:!!g,children:[a.jsx(Uot,{...F,className:"components-range-control__slider",describedBy:L,disabled:u,id:`${se}`,label:h,max:z,min:A,onBlur:wt,onChange:ne,onFocus:Bt,onMouseMove:k,onMouseLeave:y,ref:xn([de,t]),step:N,value:ie??void 0}),a.jsx(Got,{"aria-hidden":!0,disabled:u,marks:g,max:z,min:A,railColor:S,step:N,value:we}),a.jsx(Cot,{"aria-hidden":!0,className:"components-range-control__track",disabled:u,style:{width:pe},trackColor:j}),a.jsx(Wot,{className:"components-range-control__thumb-wrapper",style:ae,disabled:u,children:a.jsx(Bot,{"aria-hidden":!0,isFocused:ye,disabled:u})}),U&&a.jsx(Zot,{className:"components-range-control__tooltip",inputRef:de,tooltipPosition:"bottom",renderTooltipContent:C,show:Ae||J,style:ae,value:X})]}),o&&a.jsx(wot,{children:a.jsx(qo,{icon:o})}),te&&a.jsx($ot,{"aria-label":h,className:"components-range-control__number",disabled:u,inputMode:"decimal",isShiftStepEnabled:b,max:z,min:A,onBlur:qe,onChange:ve,shiftStep:E,size:T?"__unstable-large":"default",__unstableInputWidth:Je(T?20:16),step:N,value:ie,__shouldNotWarnDeprecated36pxSize:!0}),r&&a.jsx(Vot,{children:a.jsx(Ce,{className:"components-range-control__reset",accessibleWhenDisabled:!u,disabled:u||X===Jot({resetFallbackValue:R,initialPosition:f}),variant:"secondary",size:"small",onClick:Pe,children:m("Reset")})})]})})}const bo=x.forwardRef(Fpe),ert=He(g0,{target:"ez9hsf46"})("width:",Je(24),";"),trt=He(jn,{target:"ez9hsf45"})("margin-left:",Je(-2),";"),nrt=He(bo,{target:"ez9hsf44"})("flex:1;margin-right:",Je(2),";"),ort=` + );}`,""),knt=e=>{const t=Xe("border-color:",Ze.ui.border,";","");return Xe(e&&t," &:hover{border-color:",Ze.ui.borderHover,";}&:focus-within{border-color:",Ze.ui.borderFocus,";box-shadow:",Ye.controlBoxShadowFocus,";z-index:1;outline:2px solid transparent;outline-offset:-2px;}","")};var Snt={name:"1aqh2c7",styles:"min-height:40px;padding:3px"},Cnt={name:"1ndywgm",styles:"min-height:36px;padding:2px"};const qnt=e=>({default:Cnt,"__unstable-large":Snt})[e],Rnt={name:"7whenc",styles:"display:flex;width:100%"},Tnt=He("div",{target:"eakva830"})({name:"zjik7",styles:"display:flex"}),oj=x.createContext({}),Ent=()=>x.useContext(oj);function Rpe(e){const t=x.useRef(!0),n=Fr(e),o=x.useRef(!1);x.useEffect(()=>{t.current&&(t.current=!1)},[]);const r=o.current||!t.current&&n!==e;return x.useEffect(()=>{o.current=r},[r]),r?{value:e??"",defaultValue:void 0}:{value:void 0,defaultValue:e}}function Wnt({children:e,isAdaptiveWidth:t,label:n,onChange:o,size:r,value:s,id:i,setSelectedElement:c,...l},u){const d=vt(Tpe,"toggle-group-control-as-radio-group"),p=i||d,{value:f,defaultValue:b}=Rpe(s),g=yFe({defaultValue:b,value:f,setValue:o?v=>{o(v??void 0)}:void 0,rtl:jt()}),z=Hn(g,"value"),A=g.setValue;x.useEffect(()=>{z===""&&g.setActiveId(void 0)},[g,z]);const _=x.useMemo(()=>({activeItemIsNotFirstItem:()=>g.getState().activeId!==g.first(),baseId:p,isBlock:!t,size:r,value:z,setValue:A,setSelectedElement:c}),[p,t,g,z,c,A,r]);return a.jsx(oj.Provider,{value:_,children:a.jsx(xFe,{store:g,"aria-label":n,render:a.jsx(mo,{}),...l,id:p,ref:u,children:e})})}const Tpe=x.forwardRef(Wnt);function Nnt({children:e,isAdaptiveWidth:t,label:n,onChange:o,size:r,value:s,id:i,setSelectedElement:c,...l},u){const d=vt(Epe,"toggle-group-control-as-button-group"),p=i||d,{value:f,defaultValue:b}=Rpe(s),[h,g]=B3({defaultValue:b,value:f,onChange:o}),z=x.useMemo(()=>({baseId:p,value:h,setValue:g,isBlock:!t,isDeselectable:!0,size:r,setSelectedElement:c}),[p,h,g,t,r,c]);return a.jsx(oj.Provider,{value:z,children:a.jsx(mo,{"aria-label":n,...l,ref:u,role:"group",children:e})})}const Epe=x.forwardRef(Nnt),D8={element:void 0,top:0,right:0,bottom:0,left:0,width:0,height:0};function Bnt(e){var t,n,o;const r=e.getBoundingClientRect();if(r.width===0||r.height===0)return;const s=e.offsetParent,i=(t=s?.getBoundingClientRect())!==null&&t!==void 0?t:D8,c=(n=s?.scrollLeft)!==null&&n!==void 0?n:0,l=(o=s?.scrollTop)!==null&&o!==void 0?o:0,u=parseFloat(getComputedStyle(e).width),d=parseFloat(getComputedStyle(e).height),p=u/r.width,f=d/r.height;return{element:e,top:(r.top-i?.top)*f+l,right:(i?.right-r.right)*p-c,bottom:(i?.bottom-r.bottom)*f-l,left:(r.left-i?.left)*p+c,width:u,height:d}}const Lnt=100;function Wpe(e,t=[]){const[n,o]=x.useState(D8),r=x.useRef(),s=Ts(()=>{if(e&&e.isConnected){const c=Bnt(e);if(c)return o(c),clearInterval(r.current),!0}else clearInterval(r.current);return!1}),i=js(()=>{s()||requestAnimationFrame(()=>{s()||(r.current=setInterval(s,Lnt))})});return x.useLayoutEffect(()=>{i(e),e||o(D8)},[i,e]),x.useLayoutEffect(()=>{s()},t),n}function Pnt(e,t){const n=x.useRef(e),o=Ts(t);x.useLayoutEffect(()=>{n.current!==e&&(o({previousValue:n.current}),n.current=e)},[o,e])}function Npe(e,t,{prefix:n="subelement",dataAttribute:o=`${n}-animated`,transitionEndFilter:r=()=>!0,roundRect:s=!1}={}){const i=Ts(()=>{Object.keys(t).forEach(c=>c!=="element"&&e?.style.setProperty(`--${n}-${c}`,String(s?Math.floor(t[c]):t[c])))});x.useLayoutEffect(()=>{i()},[t,i]),Pnt(t.element,({previousValue:c})=>{t.element&&c&&e?.setAttribute(`data-${o}`,"")}),x.useLayoutEffect(()=>{function c(l){r(l)&&e?.removeAttribute(`data-${o}`)}return e?.addEventListener("transitionend",c),()=>e?.removeEventListener("transitionend",c)},[o,e,r])}function jnt(e,t){const{__nextHasNoMarginBottom:n=!1,__next40pxDefaultSize:o=!1,__shouldNotWarnDeprecated36pxSize:r,className:s,isAdaptiveWidth:i=!1,isBlock:c=!1,isDeselectable:l=!1,label:u,hideLabelFromVision:d=!1,help:p,onChange:f,size:b="default",value:h,children:g,...z}=vn(e,"ToggleGroupControl"),A=o&&b==="default"?"__unstable-large":b,[_,v]=x.useState(),[M,y]=x.useState(),k=xn([y,t]),S=Wpe(h||h===0?_:void 0);Npe(M,S,{prefix:"selected",dataAttribute:"indicator-animated",transitionEndFilter:E=>E.pseudoElement==="::before",roundRect:!0});const C=ro(),R=x.useMemo(()=>C(_nt({isBlock:c,isDeselectable:l,size:A}),c&&Rnt,s),[s,C,c,l,A]),T=l?Epe:Tpe;return q1({componentName:"ToggleGroupControl",size:b,__next40pxDefaultSize:o,__shouldNotWarnDeprecated36pxSize:r}),a.jsxs(no,{help:p,__nextHasNoMarginBottom:n,__associatedWPComponentName:"ToggleGroupControl",children:[!d&&a.jsx(Tnt,{children:a.jsx(no.VisualLabel,{children:u})}),a.jsx(T,{...z,setSelectedElement:v,className:R,isAdaptiveWidth:i,label:u,onChange:f,ref:k,size:A,value:h,children:g})]})}const Do=Rn(jnt,"ToggleGroupControl"),Int=He("div",{target:"et6ln9s1"})({name:"sln1fl",styles:"display:inline-flex;max-width:100%;min-width:0;position:relative"}),Bpe={name:"82a6rk",styles:"flex:1"},Lpe=({isDeselectable:e,isIcon:t,isPressed:n,size:o})=>Xe("align-items:center;appearance:none;background:transparent;border:none;border-radius:",Ye.radiusXSmall,";color:",Ze.theme.gray[700],";fill:currentColor;cursor:pointer;display:flex;font-family:inherit;height:100%;justify-content:center;line-height:100%;outline:none;padding:0 12px;position:relative;text-align:center;@media not ( prefers-reduced-motion ){transition:background ",Ye.transitionDurationFast," linear,color ",Ye.transitionDurationFast," linear,font-weight 60ms linear;}user-select:none;width:100%;z-index:2;&::-moz-focus-inner{border:0;}&[disabled]{opacity:0.4;cursor:default;}&:active{background:",Ze.ui.background,";}",e&&Fnt," ",t&&Vnt({size:o})," ",n&&Dnt,";",""),Dnt=Xe("color:",Ze.theme.foregroundInverted,";&:active{background:transparent;}",""),Fnt=Xe("color:",Ze.theme.foreground,";&:focus{box-shadow:inset 0 0 0 1px ",Ze.ui.background,",0 0 0 ",Ye.borderWidthFocus," ",Ze.theme.accent,";outline:2px solid transparent;}",""),$nt=He("div",{target:"et6ln9s0"})("display:flex;font-size:",Ye.fontSize,";line-height:1;"),Vnt=({size:e="default"})=>{const t={default:"30px","__unstable-large":"32px"};return Xe("color:",Ze.theme.foreground,";height:",t[e],";aspect-ratio:1;padding-left:0;padding-right:0;","")},Hnt=Object.freeze(Object.defineProperty({__proto__:null,ButtonContentView:$nt,LabelView:Int,buttonView:Lpe,labelBlock:Bpe},Symbol.toStringTag,{value:"Module"})),{ButtonContentView:_Y,LabelView:Unt}=Hnt,Xnt=({showTooltip:e,text:t,children:n})=>e&&t?a.jsx(B0,{text:t,placement:"top",children:n}):a.jsx(a.Fragment,{children:n});function Ppe(e,t){const n=Ent(),o=vt(Ppe,n.baseId||"toggle-group-control-option-base"),r=vn({...e,id:o},"ToggleGroupControlOptionBase"),{isBlock:s=!1,isDeselectable:i=!1,size:c="default"}=n,{className:l,isIcon:u=!1,value:d,children:p,showTooltip:f=!1,disabled:b,...h}=r,g=n.value===d,z=ro(),A=x.useMemo(()=>z(s&&Bpe),[z,s]),_=x.useMemo(()=>z(Lpe({isDeselectable:i,isIcon:u,isPressed:g,size:c}),l),[z,i,u,g,c,l]),v=()=>{i&&g?n.setValue(void 0):n.setValue(d)},M={...h,className:_,"data-value":d,ref:t},y=x.useRef(null);return x.useLayoutEffect(()=>{g&&y.current&&n.setSelectedElement(y.current)},[g,n]),a.jsx(Unt,{ref:y,className:A,children:a.jsx(Xnt,{showTooltip:f,text:h["aria-label"],children:i?a.jsx("button",{...M,disabled:b,"aria-pressed":g,type:"button",onClick:v,children:a.jsx(_Y,{children:p})}):a.jsx(pFe,{disabled:b,onFocusVisible:()=>{(!(n.value===null||n.value==="")||n.activeItemIsNotFirstItem?.())&&n.setValue(d)},render:a.jsx("button",{type:"button",...M}),value:d,children:a.jsx(_Y,{children:p})})})})}const jpe=Rn(Ppe,"ToggleGroupControlOptionBase");function Gnt(e,t){const{label:n,...o}=e,r=o["aria-label"]||n;return a.jsx(jpe,{...o,"aria-label":r,ref:t,children:n})}const Kn=x.forwardRef(Gnt);function Knt(e,t){const{icon:n,label:o,...r}=e;return a.jsx(jpe,{...r,isIcon:!0,"aria-label":o,showTooltip:!0,ref:t,children:a.jsx(qo,{icon:n})})}const ga=x.forwardRef(Knt),Ynt=[{label:m("Solid"),icon:fde,value:"solid"},{label:m("Dashed"),icon:lQe,value:"dashed"},{label:m("Dotted"),icon:uQe,value:"dotted"}];function Znt({onChange:e,...t},n){return a.jsx(Do,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,ref:n,isDeselectable:!0,onChange:o=>{e?.(o)},...t,children:Ynt.map(o=>a.jsx(ga,{value:o.value,icon:o.icon,label:o.label},o.value))})}const Qnt=Rn(Znt,"BorderControlStylePicker");function Jnt(e,t){const{className:n,colorValue:o,...r}=e;return a.jsx("span",{className:oe("component-color-indicator",n),style:{background:o},ref:t,...r})}const eb=x.forwardRef(Jnt),eot=(e,t)=>{const{renderContent:n,renderToggle:o,className:r,contentClassName:s,expandOnMobile:i,headerTitle:c,focusOnMount:l,popoverProps:u,onClose:d,onToggle:p,style:f,open:b,defaultOpen:h,position:g,variant:z}=vn(e,"Dropdown");g!==void 0&&Ke("`position` prop in wp.components.Dropdown",{since:"6.2",alternative:"`popoverProps.placement` prop",hint:"Note that the `position` prop will override any values passed through the `popoverProps.placement` prop."});const[A,_]=x.useState(null),v=x.useRef(),[M,y]=B3({defaultValue:h,value:b,onChange:p});function k(){if(!v.current)return;const{ownerDocument:T}=v.current,E=T?.activeElement?.closest('[role="dialog"]');!v.current.contains(T.activeElement)&&(!E||E.contains(v.current))&&S()}function S(){d?.(),y(!1)}const C={isOpen:!!M,onToggle:()=>y(!M),onClose:S},R=!!u?.anchor||!!u?.anchorRef||!!u?.getAnchorRect||!!u?.anchorRect;return a.jsxs("div",{className:r,ref:xn([v,t,_]),tabIndex:-1,style:f,children:[o(C),M&&a.jsx(Io,{position:g,onClose:S,onFocusOutside:k,expandOnMobile:i,headerTitle:c,focusOnMount:l,offset:13,anchor:R?void 0:A,variant:z,...u,className:oe("components-dropdown__content",u?.className,s),children:n(C)})]})},so=Rn(eot,"Dropdown");function tot(e,t){const n=vn(e,"InputControlSuffixWrapper");return a.jsx(ope,{...n,ref:t})}const eO=Rn(tot,"InputControlSuffixWrapper"),not=({disabled:e})=>e?Xe("color:",Ze.ui.textDisabled,";cursor:default;",""):"";var oot={name:"1lv1yo7",styles:"display:inline-flex"};const rot=({variant:e})=>e==="minimal"?oot:"",sot=He(ej,{target:"e1mv6sxx3"})("color:",Ze.theme.foreground,";cursor:pointer;",not," ",rot,";"),iot=({__next40pxDefaultSize:e,multiple:t,selectSize:n="default"})=>{if(t)return;const o={default:{height:40,minHeight:40,paddingTop:0,paddingBottom:0},small:{height:24,minHeight:24,paddingTop:0,paddingBottom:0},compact:{height:32,minHeight:32,paddingTop:0,paddingBottom:0},"__unstable-large":{height:40,minHeight:40,paddingTop:0,paddingBottom:0}};e||(o.default=o.compact);const r=o[n]||o.default;return Xe(r,"","")},CM=18,aot=({__next40pxDefaultSize:e,multiple:t,selectSize:n="default"})=>{const o={default:Ye.controlPaddingX,small:Ye.controlPaddingXSmall,compact:Ye.controlPaddingXSmall,"__unstable-large":Ye.controlPaddingX};e||(o.default=o.compact);const r=o[n]||o.default;return Go({paddingLeft:r,paddingRight:r+CM,...t?{paddingTop:r,paddingBottom:r}:{}})},cot=({multiple:e})=>({overflow:e?"auto":"hidden"});var lot={name:"n1jncc",styles:"field-sizing:content"};const uot=({variant:e})=>e==="minimal"?lot:"",dot=He("select",{target:"e1mv6sxx2"})("&&&{appearance:none;background:transparent;box-sizing:border-box;border:none;box-shadow:none!important;color:currentColor;cursor:inherit;display:block;font-family:inherit;margin:0;width:100%;max-width:none;white-space:nowrap;text-overflow:ellipsis;",JP,";",iot,";",aot,";",cot," ",uot,";}"),pot=He("div",{target:"e1mv6sxx1"})("margin-inline-end:",Je(-1),";line-height:0;path{fill:currentColor;}"),fot=He(eO,{target:"e1mv6sxx0"})("position:absolute;pointer-events:none;",Go({right:0}),";"),Ipe=()=>a.jsx(fot,{children:a.jsx(pot,{children:a.jsx(wn,{icon:tu,size:CM})})});function bot(e){const n=`inspector-select-control-${vt(Pn)}`;return e||n}function hot({options:e}){return e.map(({id:t,label:n,value:o,...r},s)=>{const i=t||`${n}-${o}-${s}`;return a.jsx("option",{value:o,...r,children:n},i)})}function mot(e,t){const{className:n,disabled:o=!1,help:r,hideLabelFromVision:s,id:i,label:c,multiple:l=!1,onChange:u,options:d=[],size:p="default",value:f,labelPosition:b="top",children:h,prefix:g,suffix:z,variant:A="default",__next40pxDefaultSize:_=!1,__nextHasNoMarginBottom:v=!1,__shouldNotWarnDeprecated36pxSize:M,...y}=sp(e),k=bot(i),S=r?`${k}__help`:void 0;if(!d?.length&&!h)return null;const C=T=>{if(e.multiple){const B=Array.from(T.target.options).filter(({selected:N})=>N).map(({value:N})=>N);e.onChange?.(B,{event:T});return}e.onChange?.(T.target.value,{event:T})},R=oe("components-select-control",n);return q1({componentName:"SelectControl",__next40pxDefaultSize:_,size:p,__shouldNotWarnDeprecated36pxSize:M}),a.jsx(no,{help:r,id:k,__nextHasNoMarginBottom:v,__associatedWPComponentName:"SelectControl",children:a.jsx(sot,{className:R,disabled:o,hideLabelFromVision:s,id:k,isBorderless:A==="minimal",label:c,size:p,suffix:z||!l&&a.jsx(Ipe,{}),prefix:g,labelPosition:b,__unstableInputWidth:A==="minimal"?"auto":void 0,variant:A,__next40pxDefaultSize:_,children:a.jsx(dot,{...y,__next40pxDefaultSize:_,"aria-describedby":S,className:"components-select-control__input",disabled:o,id:k,multiple:l,onChange:C,ref:t,selectSize:p,value:f,variant:A,children:h||a.jsx(hot,{options:d})})})})}const Pn=x.forwardRef(mot);function n4(e,t,n){return typeof e!="number"?null:parseFloat(`${tj(e,t,n)}`)}function got(e){const{min:t,max:n,value:o,initial:r}=e,[s,i]=zw(n4(o,t,n),{initial:n4(r??null,t,n),fallback:null}),c=x.useCallback(l=>{i(l===null?null:n4(l,t,n))},[t,n,i]);return[s,c]}const Mh=30,zh=4,rj=()=>Xe({height:Mh,minHeight:Mh},"",""),of=12,Mot=({__next40pxDefaultSize:e})=>!e&&Xe({minHeight:Mh},"",""),zot=He("div",{target:"e1epgpqk14"})("-webkit-tap-highlight-color:transparent;align-items:center;display:flex;justify-content:flex-start;padding:0;position:relative;touch-action:none;width:100%;min-height:40px;",Mot,";"),Oot=({color:e=Ze.ui.borderFocus})=>Xe({color:e},"",""),yot=({marks:e,__nextHasNoMarginBottom:t})=>t?"":Xe({marginBottom:e?16:void 0},"",""),Aot=He("div",{shouldForwardProp:e=>!["color","__nextHasNoMarginBottom","marks"].includes(e),target:"e1epgpqk13"})("display:block;flex:1;position:relative;width:100%;",Oot,";",rj,";",yot,";"),vot=He("span",{target:"e1epgpqk12"})("display:flex;margin-top:",zh,"px;",Go({marginRight:6}),";"),xot=He("span",{target:"e1epgpqk11"})("display:flex;margin-top:",zh,"px;",Go({marginLeft:6}),";"),wot=({disabled:e,railColor:t})=>{let n=t||"";return e&&(n=Ze.ui.backgroundDisabled),Xe({background:n},"","")},_ot=He("span",{target:"e1epgpqk10"})("background-color:",Ze.gray[300],";left:0;pointer-events:none;right:0;display:block;height:",zh,"px;position:absolute;margin-top:",(Mh-zh)/2,"px;top:0;border-radius:",Ye.radiusFull,";",wot,";"),kot=({disabled:e,trackColor:t})=>{let n=t||"currentColor";return e&&(n=Ze.gray[400]),Xe({background:n},"","")},Sot=He("span",{target:"e1epgpqk9"})("background-color:currentColor;border-radius:",Ye.radiusFull,";height:",zh,"px;pointer-events:none;display:block;position:absolute;margin-top:",(Mh-zh)/2,"px;top:0;.is-marked &{@media not ( prefers-reduced-motion ){transition:width ease 0.1s;}}",kot,";"),Cot=He("span",{target:"e1epgpqk8"})({name:"g5kg28",styles:"display:block;pointer-events:none;position:relative;width:100%;user-select:none;margin-top:17px"}),qot=He("span",{target:"e1epgpqk7"})("position:absolute;left:0;top:-4px;height:4px;width:2px;transform:translateX( -50% );background-color:",Ze.ui.background,";z-index:1;"),Rot=({isFilled:e})=>Xe({color:e?Ze.gray[700]:Ze.gray[300]},"",""),Tot=He("span",{target:"e1epgpqk6"})("color:",Ze.gray[300],";font-size:11px;position:absolute;top:8px;white-space:nowrap;",Go({left:0}),";",Go({transform:"translateX( -50% )"},{transform:"translateX( 50% )"}),";",Rot,";"),Dpe=({disabled:e})=>e?Xe("background-color:",Ze.gray[400],";",""):Xe("background-color:",Ze.theme.accent,";",""),Eot=He("span",{target:"e1epgpqk5"})("align-items:center;display:flex;height:",of,"px;justify-content:center;margin-top:",(Mh-of)/2,"px;outline:0;pointer-events:none;position:absolute;top:0;user-select:none;width:",of,"px;border-radius:",Ye.radiusRound,";z-index:3;.is-marked &{@media not ( prefers-reduced-motion ){transition:left ease 0.1s;}}",Dpe,";",Go({marginLeft:-10}),";",Go({transform:"translateX( 4.5px )"},{transform:"translateX( -4.5px )"}),";"),Wot=({isFocused:e})=>e?Xe("&::before{content:' ';position:absolute;background-color:",Ze.theme.accent,";opacity:0.4;border-radius:",Ye.radiusRound,";height:",of+8,"px;width:",of+8,"px;top:-4px;left:-4px;}",""):"",Not=He("span",{target:"e1epgpqk4"})("align-items:center;border-radius:",Ye.radiusRound,";height:100%;outline:0;position:absolute;user-select:none;width:100%;box-shadow:",Ye.elevationXSmall,";",Dpe,";",Wot,";"),Bot=He("input",{target:"e1epgpqk3"})("box-sizing:border-box;cursor:pointer;display:block;height:100%;left:0;margin:0 -",of/2,"px;opacity:0;outline:none;position:absolute;right:0;top:0;width:calc( 100% + ",of,"px );"),Lot=({show:e})=>Xe("display:",e?"inline-block":"none",";opacity:",e?1:0,";@media not ( prefers-reduced-motion ){transition:opacity 120ms ease,display 120ms ease allow-discrete;}@starting-style{opacity:0;}","");var Pot={name:"1cypxip",styles:"top:-80%"},jot={name:"1lr98c4",styles:"bottom:-80%"};const Iot=({position:e})=>e==="bottom"?jot:Pot,Dot=He("span",{target:"e1epgpqk2"})("background:rgba( 0, 0, 0, 0.8 );border-radius:",Ye.radiusSmall,";color:white;font-size:12px;min-width:32px;padding:4px 8px;pointer-events:none;position:absolute;text-align:center;user-select:none;line-height:1.4;",Lot,";",Iot,";",Go({transform:"translateX(-50%)"},{transform:"translateX(50%)"}),";"),Fot=He(g0,{target:"e1epgpqk1"})("display:inline-block;font-size:13px;margin-top:0;input[type='number']&{",rj,";}",Go({marginLeft:`${Je(4)} !important`}),";"),$ot=He("span",{target:"e1epgpqk0"})("display:block;margin-top:0;button,button.is-small{margin-left:0;",rj,";}",Go({marginLeft:8}),";");function Vot(e,t){const{describedBy:n,label:o,value:r,...s}=e;return a.jsx(Bot,{...s,"aria-describedby":n,"aria-label":o,"aria-hidden":!1,ref:t,tabIndex:0,type:"range",value:r})}const Hot=x.forwardRef(Vot);function Uot(e){const{className:t,isFilled:n=!1,label:o,style:r={},...s}=e,i=oe("components-range-control__mark",n&&"is-filled",t),c=oe("components-range-control__mark-label",n&&"is-filled");return a.jsxs(a.Fragment,{children:[a.jsx(qot,{...s,"aria-hidden":"true",className:i,style:r}),o&&a.jsx(Tot,{"aria-hidden":"true",className:c,isFilled:n,style:r,children:o})]})}function Xot(e){const{disabled:t=!1,marks:n=!1,min:o=0,max:r=100,step:s=1,value:i=0,...c}=e;return a.jsxs(a.Fragment,{children:[a.jsx(_ot,{disabled:t,...c}),n&&a.jsx(Got,{disabled:t,marks:n,min:o,max:r,step:s,value:i})]})}function Got(e){const{disabled:t=!1,marks:n=!1,min:o=0,max:r=100,step:s=1,value:i=0}=e,l=Kot({marks:n,min:o,max:r,step:s==="any"?1:s,value:i});return a.jsx(Cot,{"aria-hidden":"true",className:"components-range-control__marks",children:l.map(u=>x.createElement(Uot,{...u,key:u.key,"aria-hidden":"true",disabled:t}))})}function Kot({marks:e,min:t=0,max:n=100,step:o=1,value:r=0}){if(!e)return[];const s=n-t;if(!Array.isArray(e)){e=[];const c=1+Math.round(s/o);for(;c>e.push({value:o*e.length+t}););}const i=[];return e.forEach((c,l)=>{if(c.value<t||c.value>n)return;const u=`mark-${l}`,d=c.value<=r,p=`${(c.value-t)/s*100}%`,f={[jt()?"right":"left"]:p};i.push({...c,isFilled:d,key:u,style:f})}),i}function Yot(e){const{className:t,inputRef:n,tooltipPosition:o,show:r=!1,style:s={},value:i=0,renderTooltipContent:c=b=>b,zIndex:l=100,...u}=e,d=Zot({inputRef:n,tooltipPosition:o}),p=oe("components-simple-tooltip",t),f={...s,zIndex:l};return a.jsx(Dot,{...u,"aria-hidden":"false",className:p,position:d,show:r,role:"tooltip",style:f,children:c(i)})}function Zot({inputRef:e,tooltipPosition:t}){const[n,o]=x.useState(),r=x.useCallback(()=>{e&&e.current&&o(t)},[t,e]);return x.useEffect(()=>{r()},[r]),x.useEffect(()=>(window.addEventListener("resize",r),()=>{window.removeEventListener("resize",r)})),n}const Cg=()=>{};function Qot({resetFallbackValue:e,initialPosition:t}){return e!==void 0?Number.isNaN(e)?null:e:t!==void 0?Number.isNaN(t)?null:t:null}function Fpe(e,t){const{__nextHasNoMarginBottom:n=!1,afterIcon:o,allowReset:r=!1,beforeIcon:s,className:i,color:c=Ze.theme.accent,currentInput:l,disabled:u=!1,help:d,hideLabelFromVision:p=!1,initialPosition:f,isShiftStepEnabled:b=!0,label:h,marks:g=!1,max:z=100,min:A=0,onBlur:_=Cg,onChange:v=Cg,onFocus:M=Cg,onMouseLeave:y=Cg,onMouseMove:k=Cg,railColor:S,renderTooltipContent:C=H=>H,resetFallbackValue:R,__next40pxDefaultSize:T=!1,shiftStep:E=10,showTooltip:B,step:N=1,trackColor:j,value:I,withInputField:P=!0,__shouldNotWarnDeprecated36pxSize:$,...F}=e,[X,Z]=got({min:A,max:z,value:I??null,initial:f}),V=x.useRef(!1);let ee=B,te=P;N==="any"&&(ee=!1,te=!1);const[J,ue]=x.useState(ee),[ce,me]=x.useState(!1),de=x.useRef(),Ae=de.current?.matches(":focus"),ye=!u&&ce,Ne=X===null,ie=Ne?"":X!==void 0?X:l,we=Ne?(z-A)/2+A:X,re=Ne?50:(X-A)/(z-A)*100,pe=`${tj(re,0,100)}%`,ke=oe("components-range-control",i),Se=oe("components-range-control__wrapper",!!g&&"is-marked"),se=vt(Fpe,"inspector-range-control"),L=d?`${se}__help`:void 0,U=ee!==!1&&Number.isFinite(X),ne=H=>{const Y=parseFloat(H.target.value);Z(Y),v(Y)},ve=H=>{let Y=parseFloat(H);Z(Y),isNaN(Y)?r&&(V.current=!0):((Y<A||Y>z)&&(Y=n4(Y,A,z)),v(Y),V.current=!1)},qe=()=>{V.current&&(Pe(),V.current=!1)},Pe=()=>{const H=Number.isNaN(R)?null:R??null;Z(H),v(H??void 0)},rt=()=>ue(!0),qt=()=>ue(!1),wt=H=>{_(H),me(!1),qt()},Bt=H=>{M(H),me(!0),rt()},ae={[jt()?"right":"left"]:pe};return q1({componentName:"RangeControl",__next40pxDefaultSize:T,size:void 0,__shouldNotWarnDeprecated36pxSize:$}),a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"RangeControl",className:ke,label:h,hideLabelFromVision:p,id:`${se}`,help:d,children:a.jsxs(zot,{className:"components-range-control__root",__next40pxDefaultSize:T,children:[s&&a.jsx(vot,{children:a.jsx(qo,{icon:s})}),a.jsxs(Aot,{__nextHasNoMarginBottom:n,className:Se,color:c,marks:!!g,children:[a.jsx(Hot,{...F,className:"components-range-control__slider",describedBy:L,disabled:u,id:`${se}`,label:h,max:z,min:A,onBlur:wt,onChange:ne,onFocus:Bt,onMouseMove:k,onMouseLeave:y,ref:xn([de,t]),step:N,value:ie??void 0}),a.jsx(Xot,{"aria-hidden":!0,disabled:u,marks:g,max:z,min:A,railColor:S,step:N,value:we}),a.jsx(Sot,{"aria-hidden":!0,className:"components-range-control__track",disabled:u,style:{width:pe},trackColor:j}),a.jsx(Eot,{className:"components-range-control__thumb-wrapper",style:ae,disabled:u,children:a.jsx(Not,{"aria-hidden":!0,isFocused:ye,disabled:u})}),U&&a.jsx(Yot,{className:"components-range-control__tooltip",inputRef:de,tooltipPosition:"bottom",renderTooltipContent:C,show:Ae||J,style:ae,value:X})]}),o&&a.jsx(xot,{children:a.jsx(qo,{icon:o})}),te&&a.jsx(Fot,{"aria-label":h,className:"components-range-control__number",disabled:u,inputMode:"decimal",isShiftStepEnabled:b,max:z,min:A,onBlur:qe,onChange:ve,shiftStep:E,size:T?"__unstable-large":"default",__unstableInputWidth:Je(T?20:16),step:N,value:ie,__shouldNotWarnDeprecated36pxSize:!0}),r&&a.jsx($ot,{children:a.jsx(Ce,{className:"components-range-control__reset",accessibleWhenDisabled:!u,disabled:u||X===Qot({resetFallbackValue:R,initialPosition:f}),variant:"secondary",size:"small",onClick:Pe,children:m("Reset")})})]})})}const bo=x.forwardRef(Fpe),Jot=He(g0,{target:"ez9hsf46"})("width:",Je(24),";"),ert=He(Pn,{target:"ez9hsf45"})("margin-left:",Je(-2),";"),trt=He(bo,{target:"ez9hsf44"})("flex:1;margin-right:",Je(2),";"),nrt=` .react-colorful__interactive { width: calc( 100% - ${Je(2)} ); margin-left: ${Je(1)}; -}`,rrt=He("div",{target:"ez9hsf43"})("padding-top:",Je(2),";padding-right:0;padding-left:0;padding-bottom:0;"),srt=He(Ot,{target:"ez9hsf42"})("padding-left:",Je(4),";padding-right:",Je(4),";"),irt=He(Yo,{target:"ez9hsf41"})("padding-top:",Je(4),";padding-left:",Je(4),";padding-right:",Je(3),";padding-bottom:",Je(5),";"),art=He("div",{target:"ez9hsf40"})(P3,";width:216px;.react-colorful{display:flex;flex-direction:column;align-items:center;width:216px;height:auto;}.react-colorful__saturation{width:100%;border-radius:0;height:216px;margin-bottom:",Je(4),";border-bottom:none;}.react-colorful__hue,.react-colorful__alpha{width:184px;height:16px;border-radius:",Ye.radiusFull,";margin-bottom:",Je(2),";}.react-colorful__pointer{height:16px;width:16px;border:none;box-shadow:0 0 2px 0 rgba( 0, 0, 0, 0.25 );outline:2px solid transparent;}.react-colorful__pointer-fill{box-shadow:inset 0 0 0 ",Ye.borderWidthFocus," #fff;}",ort,";"),crt=e=>{const{color:t,colorType:n}=e,[o,r]=x.useState(null),s=x.useRef(),i=Ul(()=>{switch(n){case"hsl":return t.toHslString();case"rgb":return t.toRgbString();default:case"hex":return t.toHex()}},()=>{s.current&&clearTimeout(s.current),r(t.toHex()),s.current=setTimeout(()=>{r(null),s.current=void 0},3e3)});x.useEffect(()=>()=>{s.current&&clearTimeout(s.current)},[]);const c=o===t.toHex()?m("Copied!"):m("Copy");return a.jsx(B0,{delay:0,hideOnClick:!1,text:c,children:a.jsx(Ce,{size:"compact","aria-label":c,ref:i,icon:H3,showTooltip:!1})})};function lrt(e,t){const n=vn(e,"InputControlPrefixWrapper");return a.jsx(ope,{...n,isPrefix:!0,ref:t})}const Ld=Rn(lrt,"InputControlPrefixWrapper"),Ju=({min:e,max:t,label:n,abbreviation:o,onChange:r,value:s})=>{const i=c=>{if(!c){r(0);return}if(typeof c=="string"){r(parseInt(c,10));return}r(c)};return a.jsxs(Ot,{spacing:4,children:[a.jsx(ert,{__next40pxDefaultSize:!0,min:e,max:t,label:n,hideLabelFromVision:!0,value:s,onChange:i,prefix:a.jsx(Ld,{children:a.jsx(Sn,{color:Ze.theme.accent,lineHeight:1,children:o})}),spinControls:"none"}),a.jsx(nrt,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:n,hideLabelFromVision:!0,min:e,max:t,value:s,onChange:r,withInputField:!1})]})},urt=({color:e,onChange:t,enableAlpha:n})=>{const{r:o,g:r,b:s,a:i}=e.toRgb();return a.jsxs(a.Fragment,{children:[a.jsx(Ju,{min:0,max:255,label:"Red",abbreviation:"R",value:o,onChange:c=>t(an({r:c,g:r,b:s,a:i}))}),a.jsx(Ju,{min:0,max:255,label:"Green",abbreviation:"G",value:r,onChange:c=>t(an({r:o,g:c,b:s,a:i}))}),a.jsx(Ju,{min:0,max:255,label:"Blue",abbreviation:"B",value:s,onChange:c=>t(an({r:o,g:r,b:c,a:i}))}),n&&a.jsx(Ju,{min:0,max:100,label:"Alpha",abbreviation:"A",value:Math.trunc(i*100),onChange:c=>t(an({r:o,g:r,b:s,a:c/100}))})]})},drt=({color:e,onChange:t,enableAlpha:n})=>{const o=x.useMemo(()=>e.toHsl(),[e]),[r,s]=x.useState({...o}),i=e.isEqual(an(r));x.useEffect(()=>{i||s(o)},[o,i]);const c=i?r:o,l=u=>{const d=an({...c,...u});e.isEqual(d)?s(p=>({...p,...u})):t(d)};return a.jsxs(a.Fragment,{children:[a.jsx(Ju,{min:0,max:359,label:"Hue",abbreviation:"H",value:c.h,onChange:u=>{l({h:u})}}),a.jsx(Ju,{min:0,max:100,label:"Saturation",abbreviation:"S",value:c.s,onChange:u=>{l({s:u})}}),a.jsx(Ju,{min:0,max:100,label:"Lightness",abbreviation:"L",value:c.l,onChange:u=>{l({l:u})}}),n&&a.jsx(Ju,{min:0,max:100,label:"Alpha",abbreviation:"A",value:Math.trunc(100*c.a),onChange:u=>{l({a:u/100})}})]})},prt=({color:e,onChange:t,enableAlpha:n})=>{const o=s=>{if(!s)return;const i=s.startsWith("#")?s:"#"+s;t(an(i))},r=(s,i)=>{if(i.payload?.event?.nativeEvent?.inputType!=="insertFromPaste")return{...s};const l=s.value?.startsWith("#")?s.value.slice(1).toUpperCase():s.value?.toUpperCase();return{...s,value:l}};return a.jsx(N1,{prefix:a.jsx(Ld,{children:a.jsx(Sn,{color:Ze.theme.accent,lineHeight:1,children:"#"})}),value:e.toHex().slice(1).toUpperCase(),onChange:o,maxLength:n?9:7,label:m("Hex color"),hideLabelFromVision:!0,size:"__unstable-large",__unstableStateReducer:r,__unstableInputWidth:"9em"})},frt=({colorType:e,color:t,onChange:n,enableAlpha:o})=>{const r={color:t,onChange:n,enableAlpha:o};switch(e){case"hsl":return a.jsx(drt,{...r});case"rgb":return a.jsx(urt,{...r});default:case"hex":return a.jsx(prt,{...r})}};function dm(){return(dm=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}function ij(e,t){if(e==null)return{};var n,o,r={},s=Object.keys(e);for(o=0;o<s.length;o++)t.indexOf(n=s[o])>=0||(r[n]=e[n]);return r}function $8(e){var t=x.useRef(e),n=x.useRef(function(o){t.current&&t.current(o)});return t.current=e,n.current}var Oh=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e<t?t:e},qM=function(e){return"touches"in e},V8=function(e){return e&&e.ownerDocument.defaultView||self},kY=function(e,t,n){var o=e.getBoundingClientRect(),r=qM(t)?function(s,i){for(var c=0;c<s.length;c++)if(s[c].identifier===i)return s[c];return s[0]}(t.touches,n):t;return{left:Oh((r.pageX-(o.left+V8(e).pageXOffset))/o.width),top:Oh((r.pageY-(o.top+V8(e).pageYOffset))/o.height)}},SY=function(e){!qM(e)&&e.preventDefault()},aj=Bo.memo(function(e){var t=e.onMove,n=e.onKey,o=ij(e,["onMove","onKey"]),r=x.useRef(null),s=$8(t),i=$8(n),c=x.useRef(null),l=x.useRef(!1),u=x.useMemo(function(){var b=function(z){SY(z),(qM(z)?z.touches.length>0:z.buttons>0)&&r.current?s(kY(r.current,z,c.current)):g(!1)},h=function(){return g(!1)};function g(z){var A=l.current,_=V8(r.current),v=z?_.addEventListener:_.removeEventListener;v(A?"touchmove":"mousemove",b),v(A?"touchend":"mouseup",h)}return[function(z){var A=z.nativeEvent,_=r.current;if(_&&(SY(A),!function(M,y){return y&&!qM(M)}(A,l.current)&&_)){if(qM(A)){l.current=!0;var v=A.changedTouches||[];v.length&&(c.current=v[0].identifier)}_.focus(),s(kY(_,A,c.current)),g(!0)}},function(z){var A=z.which||z.keyCode;A<37||A>40||(z.preventDefault(),i({left:A===39?.05:A===37?-.05:0,top:A===40?.05:A===38?-.05:0}))},g]},[i,s]),d=u[0],p=u[1],f=u[2];return x.useEffect(function(){return f},[f]),Bo.createElement("div",dm({},o,{onTouchStart:d,onMouseDown:d,className:"react-colorful__interactive",ref:r,onKeyDown:p,tabIndex:0,role:"slider"}))}),tO=function(e){return e.filter(Boolean).join(" ")},cj=function(e){var t=e.color,n=e.left,o=e.top,r=o===void 0?.5:o,s=tO(["react-colorful__pointer",e.className]);return Bo.createElement("div",{className:s,style:{top:100*r+"%",left:100*n+"%"}},Bo.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},B1=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n},$pe=function(e){var t=e.s,n=e.v,o=e.a,r=(200-t)*n/100;return{h:B1(e.h),s:B1(r>0&&r<200?t*n/100/(r<=100?r:200-r)*100:0),l:B1(r/2),a:B1(o,2)}},H8=function(e){var t=$pe(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},FC=function(e){var t=$pe(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},Vpe=function(e){var t=e.h,n=e.s,o=e.v,r=e.a;t=t/360*6,n/=100,o/=100;var s=Math.floor(t),i=o*(1-n),c=o*(1-(t-s)*n),l=o*(1-(1-t+s)*n),u=s%6;return{r:B1(255*[o,c,i,i,l,o][u]),g:B1(255*[l,o,o,c,i,i][u]),b:B1(255*[i,i,l,o,o,c][u]),a:B1(r,2)}},Hpe=function(e){var t=/rgba?\(?\s*(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return t?hrt({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):{h:0,s:0,v:0,a:1}},brt=Hpe,hrt=function(e){var t=e.r,n=e.g,o=e.b,r=e.a,s=Math.max(t,n,o),i=s-Math.min(t,n,o),c=i?s===t?(n-o)/i:s===n?2+(o-t)/i:4+(t-n)/i:0;return{h:B1(60*(c<0?c+6:c)),s:B1(s?i/s*100:0),v:B1(s/255*100),a:r}},Upe=Bo.memo(function(e){var t=e.hue,n=e.onChange,o=tO(["react-colorful__hue",e.className]);return Bo.createElement("div",{className:o},Bo.createElement(aj,{onMove:function(r){n({h:360*r.left})},onKey:function(r){n({h:Oh(t+360*r.left,0,360)})},"aria-label":"Hue","aria-valuenow":B1(t),"aria-valuemax":"360","aria-valuemin":"0"},Bo.createElement(cj,{className:"react-colorful__hue-pointer",left:t/360,color:H8({h:t,s:100,v:100,a:1})})))}),Xpe=Bo.memo(function(e){var t=e.hsva,n=e.onChange,o={backgroundColor:H8({h:t.h,s:100,v:100,a:1})};return Bo.createElement("div",{className:"react-colorful__saturation",style:o},Bo.createElement(aj,{onMove:function(r){n({s:100*r.left,v:100-100*r.top})},onKey:function(r){n({s:Oh(t.s+100*r.left,0,100),v:Oh(t.v-100*r.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+B1(t.s)+"%, Brightness "+B1(t.v)+"%"},Bo.createElement(cj,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:H8(t)})))}),mrt=function(e,t){if(e===t)return!0;for(var n in e)if(e[n]!==t[n])return!1;return!0},Gpe=function(e,t){return e.replace(/\s/g,"")===t.replace(/\s/g,"")};function Kpe(e,t,n){var o=$8(n),r=x.useState(function(){return e.toHsva(t)}),s=r[0],i=r[1],c=x.useRef({color:t,hsva:s});x.useEffect(function(){if(!e.equal(t,c.current.color)){var u=e.toHsva(t);c.current={hsva:u,color:t},i(u)}},[t,e]),x.useEffect(function(){var u;mrt(s,c.current.hsva)||e.equal(u=e.fromHsva(s),c.current.color)||(c.current={hsva:s,color:u},o(u))},[s,e,o]);var l=x.useCallback(function(u){i(function(d){return Object.assign({},d,u)})},[]);return[s,l]}var grt=typeof window<"u"?x.useLayoutEffect:x.useEffect,Mrt=function(){return typeof __webpack_nonce__<"u"?__webpack_nonce__:void 0},CY=new Map,Ype=function(e){grt(function(){var t=e.current?e.current.ownerDocument:document;if(t!==void 0&&!CY.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,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill-opacity=".05"><path d="M8 0h8v8H8zM0 8h8v8H0z"/></svg>')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}`,CY.set(t,n);var o=Mrt();o&&n.setAttribute("nonce",o),t.head.appendChild(n)}},[])},zrt=function(e){var t=e.className,n=e.colorModel,o=e.color,r=o===void 0?n.defaultColor:o,s=e.onChange,i=ij(e,["className","colorModel","color","onChange"]),c=x.useRef(null);Ype(c);var l=Kpe(n,r,s),u=l[0],d=l[1],p=tO(["react-colorful",t]);return Bo.createElement("div",dm({},i,{ref:c,className:p}),Bo.createElement(Xpe,{hsva:u,onChange:d}),Bo.createElement(Upe,{hue:u.h,onChange:d,className:"react-colorful__last-control"}))},Ort=function(e){var t=e.className,n=e.hsva,o=e.onChange,r={backgroundImage:"linear-gradient(90deg, "+FC(Object.assign({},n,{a:0}))+", "+FC(Object.assign({},n,{a:1}))+")"},s=tO(["react-colorful__alpha",t]),i=B1(100*n.a);return Bo.createElement("div",{className:s},Bo.createElement("div",{className:"react-colorful__alpha-gradient",style:r}),Bo.createElement(aj,{onMove:function(c){o({a:c.left})},onKey:function(c){o({a:Oh(n.a+c.left)})},"aria-label":"Alpha","aria-valuetext":i+"%","aria-valuenow":i,"aria-valuemin":"0","aria-valuemax":"100"},Bo.createElement(cj,{className:"react-colorful__alpha-pointer",left:n.a,color:FC(n)})))},yrt=function(e){var t=e.className,n=e.colorModel,o=e.color,r=o===void 0?n.defaultColor:o,s=e.onChange,i=ij(e,["className","colorModel","color","onChange"]),c=x.useRef(null);Ype(c);var l=Kpe(n,r,s),u=l[0],d=l[1],p=tO(["react-colorful",t]);return Bo.createElement("div",dm({},i,{ref:c,className:p}),Bo.createElement(Xpe,{hsva:u,onChange:d}),Bo.createElement(Upe,{hue:u.h,onChange:d}),Bo.createElement(Ort,{hsva:u,onChange:d,className:"react-colorful__last-control"}))},Art={defaultColor:"rgba(0, 0, 0, 1)",toHsva:Hpe,fromHsva:function(e){var t=Vpe(e);return"rgba("+t.r+", "+t.g+", "+t.b+", "+t.a+")"},equal:Gpe},vrt=function(e){return Bo.createElement(yrt,dm({},e,{colorModel:Art}))},xrt={defaultColor:"rgb(0, 0, 0)",toHsva:brt,fromHsva:function(e){var t=Vpe(e);return"rgb("+t.r+", "+t.g+", "+t.b+")"},equal:Gpe},wrt=function(e){return Bo.createElement(zrt,dm({},e,{colorModel:xrt}))};const _rt=({color:e,enableAlpha:t,onChange:n})=>{const o=t?vrt:wrt,r=x.useMemo(()=>e.toRgbString(),[e]);return a.jsx(o,{color:r,onChange:s=>{n(an(s))},onPointerDown:({currentTarget:s,pointerId:i})=>{s.setPointerCapture(i)},onPointerUp:({currentTarget:s,pointerId:i})=>{s.releasePointerCapture(i)}})};Xs([Gs]);const krt=[{label:"RGB",value:"rgb"},{label:"HSL",value:"hsl"},{label:"Hex",value:"hex"}],Srt=(e,t)=>{const{enableAlpha:n=!1,color:o,onChange:r,defaultValue:s="#fff",copyFormat:i,...c}=vn(e,"ColorPicker"),[l,u]=B3({onChange:r,value:o,defaultValue:s}),d=x.useMemo(()=>an(l||""),[l]),p=C1(u),f=x.useCallback(g=>{p(g.toHex())},[p]),[b,h]=x.useState(i||"hex");return a.jsxs(art,{ref:t,...c,children:[a.jsx(_rt,{onChange:f,color:d,enableAlpha:n}),a.jsxs(rrt,{children:[a.jsxs(srt,{justify:"space-between",children:[a.jsx(trt,{__nextHasNoMarginBottom:!0,size:"compact",options:krt,value:b,onChange:g=>h(g),label:m("Color format"),hideLabelFromVision:!0,variant:"minimal"}),a.jsx(crt,{color:d,colorType:i||b})]}),a.jsx(irt,{direction:"column",gap:2,children:a.jsx(frt,{colorType:b,color:d,onChange:f,enableAlpha:n})})]})]})},Crt=Rn(Srt,"ColorPicker");function qrt(e){return typeof e.onChangeComplete<"u"||typeof e.disableAlpha<"u"||typeof e.color?.hex=="string"}function Rrt(e){if(e!==void 0){if(typeof e=="string")return e;if(e.hex)return e.hex}}const Trt=Hs(e=>{const t=an(e),n=t.toHex(),o=t.toRgb(),r=t.toHsv(),s=t.toHsl();return{hex:n,rgb:o,hsv:r,hsl:s,source:"hex",oldHue:s.h}});function Ert(e){const{onChangeComplete:t}=e,n=x.useCallback(o=>{t(Trt(o))},[t]);return qrt(e)?{color:Rrt(e.color),enableAlpha:!e.disableAlpha,onChange:n}:{...e,color:e.color,enableAlpha:e.enableAlpha,onChange:e.onChange}}const lj=e=>a.jsx(Crt,{...Ert(e)}),Gw=x.createContext({});function Wrt(e,t){const{isPressed:n,label:o,...r}=e;return a.jsx(Ce,{...r,"aria-pressed":n,ref:t,label:o})}const Nrt=x.forwardRef(Wrt);function Brt(e,t){const{id:n,isSelected:o,label:r,...s}=e,{setActiveId:i,activeId:c}=x.useContext(Gw);return x.useEffect(()=>{o&&!c&&window.setTimeout(()=>i?.(n),0)},[o,i,c,n]),a.jsx(S1.Item,{render:a.jsx(Ce,{...s,role:"option","aria-selected":!!o,ref:t,label:r}),id:n})}const Lrt=x.forwardRef(Brt);function Zpe({className:e,isSelected:t,selectedIconProps:n={},tooltipText:o,...r}){const{baseId:s,setActiveId:i}=x.useContext(Gw),l={id:vt(Zpe,s||"components-circular-option-picker__option"),className:"components-circular-option-picker__option",__next40pxDefaultSize:!0,...r},d=i!==void 0?a.jsx(Lrt,{...l,label:o,isSelected:t}):a.jsx(Nrt,{...l,label:o,isPressed:t});return a.jsxs("div",{className:oe(e,"components-circular-option-picker__option-wrapper"),children:[d,t&&a.jsx(wn,{icon:M0,...n})]})}function Prt({className:e,options:t,...n}){const o="aria-label"in n||"aria-labelledby"in n?"group":void 0;return a.jsx("div",{...n,role:o,className:oe("components-circular-option-picker__option-group","components-circular-option-picker__swatches",e),children:t})}function jrt({buttonProps:e,className:t,dropdownProps:n,linkText:o}){return a.jsx(so,{className:oe("components-circular-option-picker__dropdown-link-action",t),renderToggle:({isOpen:r,onToggle:s})=>a.jsx(Ce,{"aria-expanded":r,"aria-haspopup":"true",onClick:s,variant:"link",...e,children:o}),...n})}function Irt({className:e,children:t,...n}){return a.jsx(Ce,{__next40pxDefaultSize:!0,className:oe("components-circular-option-picker__clear",e),variant:"tertiary",...n,children:t})}function Drt(e){const{actions:t,options:n,baseId:o,className:r,loop:s=!0,children:i,...c}=e,[l,u]=x.useState(void 0),d=x.useMemo(()=>({baseId:o,activeId:l,setActiveId:u}),[o,l,u]);return a.jsx("div",{className:r,children:a.jsxs(Gw.Provider,{value:d,children:[a.jsx(S1,{...c,id:o,focusLoop:s,rtl:jt(),role:"listbox",activeId:l,setActiveId:u,children:n}),i,t]})})}function Frt(e){const{actions:t,options:n,children:o,baseId:r,...s}=e,i=x.useMemo(()=>({baseId:r}),[r]);return a.jsx("div",{...s,id:r,children:a.jsxs(Gw.Provider,{value:i,children:[n,o,t]})})}function G0(e){const{asButtons:t,actions:n,options:o,children:r,className:s,...i}=e,c=vt(G0,"components-circular-option-picker",i.id),l=t?Frt:Drt,u=n?a.jsx("div",{className:"components-circular-option-picker__custom-clear-wrapper",children:n}):void 0,d=a.jsx("div",{className:"components-circular-option-picker__swatches",children:o});return a.jsx(l,{...i,baseId:c,className:oe("components-circular-option-picker",s),actions:u,options:d,children:r})}G0.Option=Zpe;G0.OptionGroup=Prt;G0.ButtonAction=Irt;G0.DropdownLinkAction=jrt;function $rt(e){const{expanded:t=!1,alignment:n="stretch",...o}=vn(e,"VStack");return wpe({direction:"column",expanded:t,alignment:n,...o})}function Vrt(e,t){const n=$rt(e);return a.jsx(mo,{...n,ref:t})}const dt=Rn(Vrt,"VStack");function Hrt(e){const{as:t,level:n=2,color:o=Ze.theme.foreground,isBlock:r=!0,weight:s=Ye.fontWeightHeading,...i}=vn(e,"Heading"),c=t||`h${n}`,l={};return typeof c=="string"&&c[0]!=="h"&&(l.role="heading",l["aria-level"]=typeof n=="string"?parseInt(n):n),{...Qde({color:o,isBlock:r,weight:s,size:wJe(n),...i}),...l,as:c}}function Urt(e,t){const n=Hrt(e);return a.jsx(mo,{...n,ref:t})}const _a=Rn(Urt,"Heading"),Qpe=He(_a,{target:"ev9wop70"})({name:"13lxv2o",styles:"text-transform:uppercase;line-height:24px;font-weight:500;&&&{font-size:11px;margin-bottom:0;}"}),Xrt=({paddingSize:e="small"})=>{if(e==="none")return;const t={small:Je(2),medium:Je(4)};return Xe("padding:",t[e]||t.small,";","")},Grt=He("div",{target:"eovvns30"})("margin-left:",Je(-2),";margin-right:",Je(-2),";&:first-of-type{margin-top:",Je(-2),";}&:last-of-type{margin-bottom:",Je(-2),";}",Xrt,";");function Krt(e,t){const{paddingSize:n="small",...o}=vn(e,"DropdownContentWrapper");return a.jsx(Grt,{...o,paddingSize:n,ref:t})}const $s=Rn(Krt,"DropdownContentWrapper");Xs([Gs,Uf]);const Jpe=e=>{const t=/var\(/.test(e??""),n=/color-mix\(/.test(e??"");return!t&&!n},Yrt=(e,t=[],n=!1)=>{if(!e)return"";const o=e?Jpe(e):!1,r=o?an(e).toHex():e,s=n?t:[{colors:t}];for(const{colors:i}of s)for(const{name:c,color:l}of i){const u=o?an(l).toHex():l;if(r===u)return c}return m("Custom")},Zrt=e=>Array.isArray(e.colors)&&!("color"in e),efe=e=>e.length>0&&e.every(t=>Zrt(t)),Qrt=(e,t)=>{if(!e||!t||Jpe(e))return e;const{ownerDocument:n}=t,{defaultView:o}=n,r=o?.getComputedStyle(t).backgroundColor;return r?an(r).toHex():e};Xs([Gs,Uf]);function tfe({className:e,clearColor:t,colors:n,onChange:o,value:r,...s}){const i=x.useMemo(()=>n.map(({color:c,name:l},u)=>{const d=an(c),p=r===c;return a.jsx(G0.Option,{isSelected:p,selectedIconProps:p?{fill:d.contrast()>d.contrast("#000")?"#fff":"#000"}:{},tooltipText:l||xe(m("Color code: %s"),c),style:{backgroundColor:c,color:c},onClick:p?t:()=>o(c,u)},`${c}-${u}`)}),[n,r,o,t]);return a.jsx(G0.OptionGroup,{className:e,options:i,...s})}function nfe({className:e,clearColor:t,colors:n,onChange:o,value:r,headingLevel:s}){const i=vt(nfe,"color-palette");return n.length===0?null:a.jsx(dt,{spacing:3,className:e,children:n.map(({name:c,colors:l},u)=>{const d=`${i}-${u}`;return a.jsxs(dt,{spacing:2,children:[a.jsx(Qpe,{id:d,level:s,children:c}),a.jsx(tfe,{clearColor:t,colors:l,onChange:p=>o(p,u),value:r,"aria-labelledby":d})]},u)})})}function ofe({isRenderedInSidebar:e,popoverProps:t,...n}){const o=x.useMemo(()=>({shift:!0,resize:!1,...e?{placement:"left-start",offset:34}:{placement:"bottom",offset:8},...t}),[e,t]);return a.jsx(so,{contentClassName:"components-color-palette__custom-color-dropdown-content",popoverProps:o,...n})}function Jrt(e,t){const{asButtons:n,loop:o,clearable:r=!0,colors:s=[],disableCustomColors:i=!1,enableAlpha:c=!1,onChange:l,value:u,__experimentalIsRenderedInSidebar:d=!1,headingLevel:p=2,"aria-label":f,"aria-labelledby":b,...h}=e,[g,z]=x.useState(u),A=x.useCallback(()=>l(void 0),[l]),_=x.useCallback(B=>{z(Qrt(u,B))},[u]),v=efe(s),M=x.useMemo(()=>Yrt(u,s,v),[u,s,v]),y=()=>a.jsx($s,{paddingSize:"none",children:a.jsx(lj,{color:g,onChange:B=>l(B),enableAlpha:c})}),k=u?.startsWith("#"),S=u?.replace(/^var\((.+)\)$/,"$1"),C=S?xe(m('Custom color picker. The currently selected color is called "%1$s" and has a value of "%2$s".'),M,S):m("Custom color picker."),R={clearColor:A,onChange:l,value:u},T=!!r&&a.jsx(G0.ButtonAction,{onClick:A,accessibleWhenDisabled:!0,disabled:!u,children:m("Clear")});let E;if(n)E={asButtons:!0};else{const B={asButtons:!1,loop:o};f?E={...B,"aria-label":f}:b?E={...B,"aria-labelledby":b}:E={...B,"aria-label":m("Custom color picker.")}}return a.jsxs(dt,{spacing:3,ref:t,...h,children:[!i&&a.jsx(ofe,{isRenderedInSidebar:d,renderContent:y,renderToggle:({isOpen:B,onToggle:N})=>a.jsxs(dt,{className:"components-color-palette__custom-color-wrapper",spacing:0,children:[a.jsx("button",{ref:_,className:"components-color-palette__custom-color-button","aria-expanded":B,"aria-haspopup":"true",onClick:N,"aria-label":C,style:{background:u},type:"button"}),a.jsxs(dt,{className:"components-color-palette__custom-color-text-wrapper",spacing:.5,children:[a.jsx(zs,{className:"components-color-palette__custom-color-name",children:u?M:m("No color selected")}),a.jsx(zs,{className:oe("components-color-palette__custom-color-value",{"components-color-palette__custom-color-value--is-hex":k}),children:S})]})]})}),(s.length>0||T)&&a.jsx(G0,{...E,actions:T,options:v?a.jsx(nfe,{...R,headingLevel:p,colors:s,value:u}):a.jsx(tfe,{...R,colors:s,value:u})})]})}const Kw=x.forwardRef(Jrt),uj=He(g0,{target:"e1bagdl32"})("&&&{input{display:block;width:100%;}",Y3,"{transition:box-shadow 0.1s linear;}}"),rfe=({selectSize:e})=>({small:Xe("box-sizing:border-box;padding:2px 1px;width:20px;font-size:8px;line-height:1;letter-spacing:-0.5px;text-transform:uppercase;text-align-last:center;&:not( :disabled ){color:",Ze.gray[800],";}",""),default:Xe("box-sizing:border-box;min-width:24px;max-width:48px;height:24px;margin-inline-end:",Je(2),";padding:",Je(1),";font-size:13px;line-height:1;text-align-last:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;field-sizing:content;&:not( :disabled ){color:",Ze.theme.accent,";}","")})[e],e0t=He("div",{target:"e1bagdl31"})("&&&{pointer-events:none;",rfe,";color:",Ze.gray[900],";}"),t0t=({selectSize:e="default"})=>({small:Xe("height:100%;border:1px solid transparent;transition:box-shadow 0.1s linear,border 0.1s linear;",Go({borderTopLeftRadius:0,borderBottomLeftRadius:0})()," &:not(:disabled):hover{background-color:",Ze.gray[100],";}&:focus{border:1px solid ",Ze.ui.borderFocus,";box-shadow:inset 0 0 0 ",Ye.borderWidth+" "+Ze.ui.borderFocus,";outline-offset:0;outline:2px solid transparent;z-index:1;}",""),default:Xe("display:flex;justify-content:center;align-items:center;&:where( :not( :disabled ) ):hover{box-shadow:0 0 0 ",Ye.borderWidth+" "+Ze.ui.borderFocus,";outline:",Ye.borderWidth," solid transparent;}&:focus{box-shadow:0 0 0 ",Ye.borderWidthFocus+" "+Ze.ui.borderFocus,";outline:",Ye.borderWidthFocus," solid transparent;}","")})[e],sfe=He("select",{target:"e1bagdl30"})("&&&{appearance:none;background:transparent;border-radius:",Ye.radiusXSmall,";border:none;display:block;outline:none;margin:0;min-height:auto;font-family:inherit;",rfe,";",t0t,";&:not( :disabled ){cursor:pointer;}}"),n0t=Xe("box-shadow:inset ",Ye.controlBoxShadowFocus,";",""),o0t=Xe("border:0;padding:0;margin:0;",P3,";",""),r0t=()=>Xe(uj,"{flex:1 1 40%;}&& ",sfe,"{min-height:0;}",""),s0t=Xe(uj,"{flex:0 0 auto;}",""),i0t=e=>Xe("height:",e==="__unstable-large"?"40px":"30px",";",""),a0t=Xe("background:#fff;&&>button{aspect-ratio:1;padding:0;display:flex;align-items:center;justify-content:center;",Go({borderRadius:"2px 0 0 2px"},{borderRadius:"0 2px 2px 0"})()," border:",Ye.borderWidth," solid ",Ze.ui.border,";&:focus,&:hover:not( :disabled ){",n0t," border-color:",Ze.ui.borderFocus,";z-index:1;position:relative;}}",""),c0t=e=>{const{color:t,style:n}=e||{},o=n&&n!=="none"?Ze.gray[300]:void 0;return Xe("border-style:",n==="none"?"solid":n,";border-color:",t||o,";","")},l0t=(e,t)=>{const{style:n}=e||{};return Xe("border-radius:",Ye.radiusFull,";border:2px solid transparent;",n?c0t(e):void 0," width:",t==="__unstable-large"?"24px":"22px",";height:",t==="__unstable-large"?"24px":"22px",";padding:",t==="__unstable-large"?"2px":"1px",";&>span{height:",Je(4),";width:",Je(4),`;background:linear-gradient( +}`,ort=He("div",{target:"ez9hsf43"})("padding-top:",Je(2),";padding-right:0;padding-left:0;padding-bottom:0;"),rrt=He(Ot,{target:"ez9hsf42"})("padding-left:",Je(4),";padding-right:",Je(4),";"),srt=He(Yo,{target:"ez9hsf41"})("padding-top:",Je(4),";padding-left:",Je(4),";padding-right:",Je(3),";padding-bottom:",Je(5),";"),irt=He("div",{target:"ez9hsf40"})(P3,";width:216px;.react-colorful{display:flex;flex-direction:column;align-items:center;width:216px;height:auto;}.react-colorful__saturation{width:100%;border-radius:0;height:216px;margin-bottom:",Je(4),";border-bottom:none;}.react-colorful__hue,.react-colorful__alpha{width:184px;height:16px;border-radius:",Ye.radiusFull,";margin-bottom:",Je(2),";}.react-colorful__pointer{height:16px;width:16px;border:none;box-shadow:0 0 2px 0 rgba( 0, 0, 0, 0.25 );outline:2px solid transparent;}.react-colorful__pointer-fill{box-shadow:inset 0 0 0 ",Ye.borderWidthFocus," #fff;}",nrt,";"),art=e=>{const{color:t,colorType:n}=e,[o,r]=x.useState(null),s=x.useRef(),i=Hl(()=>{switch(n){case"hsl":return t.toHslString();case"rgb":return t.toRgbString();default:case"hex":return t.toHex()}},()=>{s.current&&clearTimeout(s.current),r(t.toHex()),s.current=setTimeout(()=>{r(null),s.current=void 0},3e3)});x.useEffect(()=>()=>{s.current&&clearTimeout(s.current)},[]);const c=o===t.toHex()?m("Copied!"):m("Copy");return a.jsx(B0,{delay:0,hideOnClick:!1,text:c,children:a.jsx(Ce,{size:"compact","aria-label":c,ref:i,icon:H3,showTooltip:!1})})};function crt(e,t){const n=vn(e,"InputControlPrefixWrapper");return a.jsx(ope,{...n,isPrefix:!0,ref:t})}const Ld=Rn(crt,"InputControlPrefixWrapper"),Ju=({min:e,max:t,label:n,abbreviation:o,onChange:r,value:s})=>{const i=c=>{if(!c){r(0);return}if(typeof c=="string"){r(parseInt(c,10));return}r(c)};return a.jsxs(Ot,{spacing:4,children:[a.jsx(Jot,{__next40pxDefaultSize:!0,min:e,max:t,label:n,hideLabelFromVision:!0,value:s,onChange:i,prefix:a.jsx(Ld,{children:a.jsx(Sn,{color:Ze.theme.accent,lineHeight:1,children:o})}),spinControls:"none"}),a.jsx(trt,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:n,hideLabelFromVision:!0,min:e,max:t,value:s,onChange:r,withInputField:!1})]})},lrt=({color:e,onChange:t,enableAlpha:n})=>{const{r:o,g:r,b:s,a:i}=e.toRgb();return a.jsxs(a.Fragment,{children:[a.jsx(Ju,{min:0,max:255,label:"Red",abbreviation:"R",value:o,onChange:c=>t(an({r:c,g:r,b:s,a:i}))}),a.jsx(Ju,{min:0,max:255,label:"Green",abbreviation:"G",value:r,onChange:c=>t(an({r:o,g:c,b:s,a:i}))}),a.jsx(Ju,{min:0,max:255,label:"Blue",abbreviation:"B",value:s,onChange:c=>t(an({r:o,g:r,b:c,a:i}))}),n&&a.jsx(Ju,{min:0,max:100,label:"Alpha",abbreviation:"A",value:Math.trunc(i*100),onChange:c=>t(an({r:o,g:r,b:s,a:c/100}))})]})},urt=({color:e,onChange:t,enableAlpha:n})=>{const o=x.useMemo(()=>e.toHsl(),[e]),[r,s]=x.useState({...o}),i=e.isEqual(an(r));x.useEffect(()=>{i||s(o)},[o,i]);const c=i?r:o,l=u=>{const d=an({...c,...u});e.isEqual(d)?s(p=>({...p,...u})):t(d)};return a.jsxs(a.Fragment,{children:[a.jsx(Ju,{min:0,max:359,label:"Hue",abbreviation:"H",value:c.h,onChange:u=>{l({h:u})}}),a.jsx(Ju,{min:0,max:100,label:"Saturation",abbreviation:"S",value:c.s,onChange:u=>{l({s:u})}}),a.jsx(Ju,{min:0,max:100,label:"Lightness",abbreviation:"L",value:c.l,onChange:u=>{l({l:u})}}),n&&a.jsx(Ju,{min:0,max:100,label:"Alpha",abbreviation:"A",value:Math.trunc(100*c.a),onChange:u=>{l({a:u/100})}})]})},drt=({color:e,onChange:t,enableAlpha:n})=>{const o=s=>{if(!s)return;const i=s.startsWith("#")?s:"#"+s;t(an(i))},r=(s,i)=>{if(i.payload?.event?.nativeEvent?.inputType!=="insertFromPaste")return{...s};const l=s.value?.startsWith("#")?s.value.slice(1).toUpperCase():s.value?.toUpperCase();return{...s,value:l}};return a.jsx(N1,{prefix:a.jsx(Ld,{children:a.jsx(Sn,{color:Ze.theme.accent,lineHeight:1,children:"#"})}),value:e.toHex().slice(1).toUpperCase(),onChange:o,maxLength:n?9:7,label:m("Hex color"),hideLabelFromVision:!0,size:"__unstable-large",__unstableStateReducer:r,__unstableInputWidth:"9em"})},prt=({colorType:e,color:t,onChange:n,enableAlpha:o})=>{const r={color:t,onChange:n,enableAlpha:o};switch(e){case"hsl":return a.jsx(urt,{...r});case"rgb":return a.jsx(lrt,{...r});default:case"hex":return a.jsx(drt,{...r})}};function dm(){return(dm=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}function sj(e,t){if(e==null)return{};var n,o,r={},s=Object.keys(e);for(o=0;o<s.length;o++)t.indexOf(n=s[o])>=0||(r[n]=e[n]);return r}function F8(e){var t=x.useRef(e),n=x.useRef(function(o){t.current&&t.current(o)});return t.current=e,n.current}var Oh=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e<t?t:e},qM=function(e){return"touches"in e},$8=function(e){return e&&e.ownerDocument.defaultView||self},kY=function(e,t,n){var o=e.getBoundingClientRect(),r=qM(t)?function(s,i){for(var c=0;c<s.length;c++)if(s[c].identifier===i)return s[c];return s[0]}(t.touches,n):t;return{left:Oh((r.pageX-(o.left+$8(e).pageXOffset))/o.width),top:Oh((r.pageY-(o.top+$8(e).pageYOffset))/o.height)}},SY=function(e){!qM(e)&&e.preventDefault()},ij=Bo.memo(function(e){var t=e.onMove,n=e.onKey,o=sj(e,["onMove","onKey"]),r=x.useRef(null),s=F8(t),i=F8(n),c=x.useRef(null),l=x.useRef(!1),u=x.useMemo(function(){var b=function(z){SY(z),(qM(z)?z.touches.length>0:z.buttons>0)&&r.current?s(kY(r.current,z,c.current)):g(!1)},h=function(){return g(!1)};function g(z){var A=l.current,_=$8(r.current),v=z?_.addEventListener:_.removeEventListener;v(A?"touchmove":"mousemove",b),v(A?"touchend":"mouseup",h)}return[function(z){var A=z.nativeEvent,_=r.current;if(_&&(SY(A),!function(M,y){return y&&!qM(M)}(A,l.current)&&_)){if(qM(A)){l.current=!0;var v=A.changedTouches||[];v.length&&(c.current=v[0].identifier)}_.focus(),s(kY(_,A,c.current)),g(!0)}},function(z){var A=z.which||z.keyCode;A<37||A>40||(z.preventDefault(),i({left:A===39?.05:A===37?-.05:0,top:A===40?.05:A===38?-.05:0}))},g]},[i,s]),d=u[0],p=u[1],f=u[2];return x.useEffect(function(){return f},[f]),Bo.createElement("div",dm({},o,{onTouchStart:d,onMouseDown:d,className:"react-colorful__interactive",ref:r,onKeyDown:p,tabIndex:0,role:"slider"}))}),tO=function(e){return e.filter(Boolean).join(" ")},aj=function(e){var t=e.color,n=e.left,o=e.top,r=o===void 0?.5:o,s=tO(["react-colorful__pointer",e.className]);return Bo.createElement("div",{className:s,style:{top:100*r+"%",left:100*n+"%"}},Bo.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},B1=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n},$pe=function(e){var t=e.s,n=e.v,o=e.a,r=(200-t)*n/100;return{h:B1(e.h),s:B1(r>0&&r<200?t*n/100/(r<=100?r:200-r)*100:0),l:B1(r/2),a:B1(o,2)}},V8=function(e){var t=$pe(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},DC=function(e){var t=$pe(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},Vpe=function(e){var t=e.h,n=e.s,o=e.v,r=e.a;t=t/360*6,n/=100,o/=100;var s=Math.floor(t),i=o*(1-n),c=o*(1-(t-s)*n),l=o*(1-(1-t+s)*n),u=s%6;return{r:B1(255*[o,c,i,i,l,o][u]),g:B1(255*[l,o,o,c,i,i][u]),b:B1(255*[i,i,l,o,o,c][u]),a:B1(r,2)}},Hpe=function(e){var t=/rgba?\(?\s*(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return t?brt({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):{h:0,s:0,v:0,a:1}},frt=Hpe,brt=function(e){var t=e.r,n=e.g,o=e.b,r=e.a,s=Math.max(t,n,o),i=s-Math.min(t,n,o),c=i?s===t?(n-o)/i:s===n?2+(o-t)/i:4+(t-n)/i:0;return{h:B1(60*(c<0?c+6:c)),s:B1(s?i/s*100:0),v:B1(s/255*100),a:r}},Upe=Bo.memo(function(e){var t=e.hue,n=e.onChange,o=tO(["react-colorful__hue",e.className]);return Bo.createElement("div",{className:o},Bo.createElement(ij,{onMove:function(r){n({h:360*r.left})},onKey:function(r){n({h:Oh(t+360*r.left,0,360)})},"aria-label":"Hue","aria-valuenow":B1(t),"aria-valuemax":"360","aria-valuemin":"0"},Bo.createElement(aj,{className:"react-colorful__hue-pointer",left:t/360,color:V8({h:t,s:100,v:100,a:1})})))}),Xpe=Bo.memo(function(e){var t=e.hsva,n=e.onChange,o={backgroundColor:V8({h:t.h,s:100,v:100,a:1})};return Bo.createElement("div",{className:"react-colorful__saturation",style:o},Bo.createElement(ij,{onMove:function(r){n({s:100*r.left,v:100-100*r.top})},onKey:function(r){n({s:Oh(t.s+100*r.left,0,100),v:Oh(t.v-100*r.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+B1(t.s)+"%, Brightness "+B1(t.v)+"%"},Bo.createElement(aj,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:V8(t)})))}),hrt=function(e,t){if(e===t)return!0;for(var n in e)if(e[n]!==t[n])return!1;return!0},Gpe=function(e,t){return e.replace(/\s/g,"")===t.replace(/\s/g,"")};function Kpe(e,t,n){var o=F8(n),r=x.useState(function(){return e.toHsva(t)}),s=r[0],i=r[1],c=x.useRef({color:t,hsva:s});x.useEffect(function(){if(!e.equal(t,c.current.color)){var u=e.toHsva(t);c.current={hsva:u,color:t},i(u)}},[t,e]),x.useEffect(function(){var u;hrt(s,c.current.hsva)||e.equal(u=e.fromHsva(s),c.current.color)||(c.current={hsva:s,color:u},o(u))},[s,e,o]);var l=x.useCallback(function(u){i(function(d){return Object.assign({},d,u)})},[]);return[s,l]}var mrt=typeof window<"u"?x.useLayoutEffect:x.useEffect,grt=function(){return typeof __webpack_nonce__<"u"?__webpack_nonce__:void 0},CY=new Map,Ype=function(e){mrt(function(){var t=e.current?e.current.ownerDocument:document;if(t!==void 0&&!CY.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,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill-opacity=".05"><path d="M8 0h8v8H8zM0 8h8v8H0z"/></svg>')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}`,CY.set(t,n);var o=grt();o&&n.setAttribute("nonce",o),t.head.appendChild(n)}},[])},Mrt=function(e){var t=e.className,n=e.colorModel,o=e.color,r=o===void 0?n.defaultColor:o,s=e.onChange,i=sj(e,["className","colorModel","color","onChange"]),c=x.useRef(null);Ype(c);var l=Kpe(n,r,s),u=l[0],d=l[1],p=tO(["react-colorful",t]);return Bo.createElement("div",dm({},i,{ref:c,className:p}),Bo.createElement(Xpe,{hsva:u,onChange:d}),Bo.createElement(Upe,{hue:u.h,onChange:d,className:"react-colorful__last-control"}))},zrt=function(e){var t=e.className,n=e.hsva,o=e.onChange,r={backgroundImage:"linear-gradient(90deg, "+DC(Object.assign({},n,{a:0}))+", "+DC(Object.assign({},n,{a:1}))+")"},s=tO(["react-colorful__alpha",t]),i=B1(100*n.a);return Bo.createElement("div",{className:s},Bo.createElement("div",{className:"react-colorful__alpha-gradient",style:r}),Bo.createElement(ij,{onMove:function(c){o({a:c.left})},onKey:function(c){o({a:Oh(n.a+c.left)})},"aria-label":"Alpha","aria-valuetext":i+"%","aria-valuenow":i,"aria-valuemin":"0","aria-valuemax":"100"},Bo.createElement(aj,{className:"react-colorful__alpha-pointer",left:n.a,color:DC(n)})))},Ort=function(e){var t=e.className,n=e.colorModel,o=e.color,r=o===void 0?n.defaultColor:o,s=e.onChange,i=sj(e,["className","colorModel","color","onChange"]),c=x.useRef(null);Ype(c);var l=Kpe(n,r,s),u=l[0],d=l[1],p=tO(["react-colorful",t]);return Bo.createElement("div",dm({},i,{ref:c,className:p}),Bo.createElement(Xpe,{hsva:u,onChange:d}),Bo.createElement(Upe,{hue:u.h,onChange:d}),Bo.createElement(zrt,{hsva:u,onChange:d,className:"react-colorful__last-control"}))},yrt={defaultColor:"rgba(0, 0, 0, 1)",toHsva:Hpe,fromHsva:function(e){var t=Vpe(e);return"rgba("+t.r+", "+t.g+", "+t.b+", "+t.a+")"},equal:Gpe},Art=function(e){return Bo.createElement(Ort,dm({},e,{colorModel:yrt}))},vrt={defaultColor:"rgb(0, 0, 0)",toHsva:frt,fromHsva:function(e){var t=Vpe(e);return"rgb("+t.r+", "+t.g+", "+t.b+")"},equal:Gpe},xrt=function(e){return Bo.createElement(Mrt,dm({},e,{colorModel:vrt}))};const wrt=({color:e,enableAlpha:t,onChange:n})=>{const o=t?Art:xrt,r=x.useMemo(()=>e.toRgbString(),[e]);return a.jsx(o,{color:r,onChange:s=>{n(an(s))},onPointerDown:({currentTarget:s,pointerId:i})=>{s.setPointerCapture(i)},onPointerUp:({currentTarget:s,pointerId:i})=>{s.releasePointerCapture(i)}})};Xs([Gs]);const _rt=[{label:"RGB",value:"rgb"},{label:"HSL",value:"hsl"},{label:"Hex",value:"hex"}],krt=(e,t)=>{const{enableAlpha:n=!1,color:o,onChange:r,defaultValue:s="#fff",copyFormat:i,...c}=vn(e,"ColorPicker"),[l,u]=B3({onChange:r,value:o,defaultValue:s}),d=x.useMemo(()=>an(l||""),[l]),p=C1(u),f=x.useCallback(g=>{p(g.toHex())},[p]),[b,h]=x.useState(i||"hex");return a.jsxs(irt,{ref:t,...c,children:[a.jsx(wrt,{onChange:f,color:d,enableAlpha:n}),a.jsxs(ort,{children:[a.jsxs(rrt,{justify:"space-between",children:[a.jsx(ert,{__nextHasNoMarginBottom:!0,size:"compact",options:_rt,value:b,onChange:g=>h(g),label:m("Color format"),hideLabelFromVision:!0,variant:"minimal"}),a.jsx(art,{color:d,colorType:i||b})]}),a.jsx(srt,{direction:"column",gap:2,children:a.jsx(prt,{colorType:b,color:d,onChange:f,enableAlpha:n})})]})]})},Srt=Rn(krt,"ColorPicker");function Crt(e){return typeof e.onChangeComplete<"u"||typeof e.disableAlpha<"u"||typeof e.color?.hex=="string"}function qrt(e){if(e!==void 0){if(typeof e=="string")return e;if(e.hex)return e.hex}}const Rrt=Hs(e=>{const t=an(e),n=t.toHex(),o=t.toRgb(),r=t.toHsv(),s=t.toHsl();return{hex:n,rgb:o,hsv:r,hsl:s,source:"hex",oldHue:s.h}});function Trt(e){const{onChangeComplete:t}=e,n=x.useCallback(o=>{t(Rrt(o))},[t]);return Crt(e)?{color:qrt(e.color),enableAlpha:!e.disableAlpha,onChange:n}:{...e,color:e.color,enableAlpha:e.enableAlpha,onChange:e.onChange}}const cj=e=>a.jsx(Srt,{...Trt(e)}),Xw=x.createContext({});function Ert(e,t){const{isPressed:n,label:o,...r}=e;return a.jsx(Ce,{...r,"aria-pressed":n,ref:t,label:o})}const Wrt=x.forwardRef(Ert);function Nrt(e,t){const{id:n,isSelected:o,label:r,...s}=e,{setActiveId:i,activeId:c}=x.useContext(Xw);return x.useEffect(()=>{o&&!c&&window.setTimeout(()=>i?.(n),0)},[o,i,c,n]),a.jsx(S1.Item,{render:a.jsx(Ce,{...s,role:"option","aria-selected":!!o,ref:t,label:r}),id:n})}const Brt=x.forwardRef(Nrt);function Zpe({className:e,isSelected:t,selectedIconProps:n={},tooltipText:o,...r}){const{baseId:s,setActiveId:i}=x.useContext(Xw),l={id:vt(Zpe,s||"components-circular-option-picker__option"),className:"components-circular-option-picker__option",__next40pxDefaultSize:!0,...r},d=i!==void 0?a.jsx(Brt,{...l,label:o,isSelected:t}):a.jsx(Wrt,{...l,label:o,isPressed:t});return a.jsxs("div",{className:oe(e,"components-circular-option-picker__option-wrapper"),children:[d,t&&a.jsx(wn,{icon:M0,...n})]})}function Lrt({className:e,options:t,...n}){const o="aria-label"in n||"aria-labelledby"in n?"group":void 0;return a.jsx("div",{...n,role:o,className:oe("components-circular-option-picker__option-group","components-circular-option-picker__swatches",e),children:t})}function Prt({buttonProps:e,className:t,dropdownProps:n,linkText:o}){return a.jsx(so,{className:oe("components-circular-option-picker__dropdown-link-action",t),renderToggle:({isOpen:r,onToggle:s})=>a.jsx(Ce,{"aria-expanded":r,"aria-haspopup":"true",onClick:s,variant:"link",...e,children:o}),...n})}function jrt({className:e,children:t,...n}){return a.jsx(Ce,{__next40pxDefaultSize:!0,className:oe("components-circular-option-picker__clear",e),variant:"tertiary",...n,children:t})}function Irt(e){const{actions:t,options:n,baseId:o,className:r,loop:s=!0,children:i,...c}=e,[l,u]=x.useState(void 0),d=x.useMemo(()=>({baseId:o,activeId:l,setActiveId:u}),[o,l,u]);return a.jsx("div",{className:r,children:a.jsxs(Xw.Provider,{value:d,children:[a.jsx(S1,{...c,id:o,focusLoop:s,rtl:jt(),role:"listbox",activeId:l,setActiveId:u,children:n}),i,t]})})}function Drt(e){const{actions:t,options:n,children:o,baseId:r,...s}=e,i=x.useMemo(()=>({baseId:r}),[r]);return a.jsx("div",{...s,id:r,children:a.jsxs(Xw.Provider,{value:i,children:[n,o,t]})})}function G0(e){const{asButtons:t,actions:n,options:o,children:r,className:s,...i}=e,c=vt(G0,"components-circular-option-picker",i.id),l=t?Drt:Irt,u=n?a.jsx("div",{className:"components-circular-option-picker__custom-clear-wrapper",children:n}):void 0,d=a.jsx("div",{className:"components-circular-option-picker__swatches",children:o});return a.jsx(l,{...i,baseId:c,className:oe("components-circular-option-picker",s),actions:u,options:d,children:r})}G0.Option=Zpe;G0.OptionGroup=Lrt;G0.ButtonAction=jrt;G0.DropdownLinkAction=Prt;function Frt(e){const{expanded:t=!1,alignment:n="stretch",...o}=vn(e,"VStack");return wpe({direction:"column",expanded:t,alignment:n,...o})}function $rt(e,t){const n=Frt(e);return a.jsx(mo,{...n,ref:t})}const dt=Rn($rt,"VStack");function Vrt(e){const{as:t,level:n=2,color:o=Ze.theme.foreground,isBlock:r=!0,weight:s=Ye.fontWeightHeading,...i}=vn(e,"Heading"),c=t||`h${n}`,l={};return typeof c=="string"&&c[0]!=="h"&&(l.role="heading",l["aria-level"]=typeof n=="string"?parseInt(n):n),{...Qde({color:o,isBlock:r,weight:s,size:xJe(n),...i}),...l,as:c}}function Hrt(e,t){const n=Vrt(e);return a.jsx(mo,{...n,ref:t})}const _a=Rn(Hrt,"Heading"),Qpe=He(_a,{target:"ev9wop70"})({name:"13lxv2o",styles:"text-transform:uppercase;line-height:24px;font-weight:500;&&&{font-size:11px;margin-bottom:0;}"}),Urt=({paddingSize:e="small"})=>{if(e==="none")return;const t={small:Je(2),medium:Je(4)};return Xe("padding:",t[e]||t.small,";","")},Xrt=He("div",{target:"eovvns30"})("margin-left:",Je(-2),";margin-right:",Je(-2),";&:first-of-type{margin-top:",Je(-2),";}&:last-of-type{margin-bottom:",Je(-2),";}",Urt,";");function Grt(e,t){const{paddingSize:n="small",...o}=vn(e,"DropdownContentWrapper");return a.jsx(Xrt,{...o,paddingSize:n,ref:t})}const $s=Rn(Grt,"DropdownContentWrapper");Xs([Gs,Uf]);const Jpe=e=>{const t=/var\(/.test(e??""),n=/color-mix\(/.test(e??"");return!t&&!n},Krt=(e,t=[],n=!1)=>{if(!e)return"";const o=e?Jpe(e):!1,r=o?an(e).toHex():e,s=n?t:[{colors:t}];for(const{colors:i}of s)for(const{name:c,color:l}of i){const u=o?an(l).toHex():l;if(r===u)return c}return m("Custom")},Yrt=e=>Array.isArray(e.colors)&&!("color"in e),efe=e=>e.length>0&&e.every(t=>Yrt(t)),Zrt=(e,t)=>{if(!e||!t||Jpe(e))return e;const{ownerDocument:n}=t,{defaultView:o}=n,r=o?.getComputedStyle(t).backgroundColor;return r?an(r).toHex():e};Xs([Gs,Uf]);function tfe({className:e,clearColor:t,colors:n,onChange:o,value:r,...s}){const i=x.useMemo(()=>n.map(({color:c,name:l},u)=>{const d=an(c),p=r===c;return a.jsx(G0.Option,{isSelected:p,selectedIconProps:p?{fill:d.contrast()>d.contrast("#000")?"#fff":"#000"}:{},tooltipText:l||xe(m("Color code: %s"),c),style:{backgroundColor:c,color:c},onClick:p?t:()=>o(c,u)},`${c}-${u}`)}),[n,r,o,t]);return a.jsx(G0.OptionGroup,{className:e,options:i,...s})}function nfe({className:e,clearColor:t,colors:n,onChange:o,value:r,headingLevel:s}){const i=vt(nfe,"color-palette");return n.length===0?null:a.jsx(dt,{spacing:3,className:e,children:n.map(({name:c,colors:l},u)=>{const d=`${i}-${u}`;return a.jsxs(dt,{spacing:2,children:[a.jsx(Qpe,{id:d,level:s,children:c}),a.jsx(tfe,{clearColor:t,colors:l,onChange:p=>o(p,u),value:r,"aria-labelledby":d})]},u)})})}function ofe({isRenderedInSidebar:e,popoverProps:t,...n}){const o=x.useMemo(()=>({shift:!0,resize:!1,...e?{placement:"left-start",offset:34}:{placement:"bottom",offset:8},...t}),[e,t]);return a.jsx(so,{contentClassName:"components-color-palette__custom-color-dropdown-content",popoverProps:o,...n})}function Qrt(e,t){const{asButtons:n,loop:o,clearable:r=!0,colors:s=[],disableCustomColors:i=!1,enableAlpha:c=!1,onChange:l,value:u,__experimentalIsRenderedInSidebar:d=!1,headingLevel:p=2,"aria-label":f,"aria-labelledby":b,...h}=e,[g,z]=x.useState(u),A=x.useCallback(()=>l(void 0),[l]),_=x.useCallback(B=>{z(Zrt(u,B))},[u]),v=efe(s),M=x.useMemo(()=>Krt(u,s,v),[u,s,v]),y=()=>a.jsx($s,{paddingSize:"none",children:a.jsx(cj,{color:g,onChange:B=>l(B),enableAlpha:c})}),k=u?.startsWith("#"),S=u?.replace(/^var\((.+)\)$/,"$1"),C=S?xe(m('Custom color picker. The currently selected color is called "%1$s" and has a value of "%2$s".'),M,S):m("Custom color picker."),R={clearColor:A,onChange:l,value:u},T=!!r&&a.jsx(G0.ButtonAction,{onClick:A,accessibleWhenDisabled:!0,disabled:!u,children:m("Clear")});let E;if(n)E={asButtons:!0};else{const B={asButtons:!1,loop:o};f?E={...B,"aria-label":f}:b?E={...B,"aria-labelledby":b}:E={...B,"aria-label":m("Custom color picker.")}}return a.jsxs(dt,{spacing:3,ref:t,...h,children:[!i&&a.jsx(ofe,{isRenderedInSidebar:d,renderContent:y,renderToggle:({isOpen:B,onToggle:N})=>a.jsxs(dt,{className:"components-color-palette__custom-color-wrapper",spacing:0,children:[a.jsx("button",{ref:_,className:"components-color-palette__custom-color-button","aria-expanded":B,"aria-haspopup":"true",onClick:N,"aria-label":C,style:{background:u},type:"button"}),a.jsxs(dt,{className:"components-color-palette__custom-color-text-wrapper",spacing:.5,children:[a.jsx(zs,{className:"components-color-palette__custom-color-name",children:u?M:m("No color selected")}),a.jsx(zs,{className:oe("components-color-palette__custom-color-value",{"components-color-palette__custom-color-value--is-hex":k}),children:S})]})]})}),(s.length>0||T)&&a.jsx(G0,{...E,actions:T,options:v?a.jsx(nfe,{...R,headingLevel:p,colors:s,value:u}):a.jsx(tfe,{...R,colors:s,value:u})})]})}const Gw=x.forwardRef(Qrt),lj=He(g0,{target:"e1bagdl32"})("&&&{input{display:block;width:100%;}",Y3,"{transition:box-shadow 0.1s linear;}}"),rfe=({selectSize:e})=>({small:Xe("box-sizing:border-box;padding:2px 1px;width:20px;font-size:8px;line-height:1;letter-spacing:-0.5px;text-transform:uppercase;text-align-last:center;&:not( :disabled ){color:",Ze.gray[800],";}",""),default:Xe("box-sizing:border-box;min-width:24px;max-width:48px;height:24px;margin-inline-end:",Je(2),";padding:",Je(1),";font-size:13px;line-height:1;text-align-last:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;field-sizing:content;&:not( :disabled ){color:",Ze.theme.accent,";}","")})[e],Jrt=He("div",{target:"e1bagdl31"})("&&&{pointer-events:none;",rfe,";color:",Ze.gray[900],";}"),e0t=({selectSize:e="default"})=>({small:Xe("height:100%;border:1px solid transparent;transition:box-shadow 0.1s linear,border 0.1s linear;",Go({borderTopLeftRadius:0,borderBottomLeftRadius:0})()," &:not(:disabled):hover{background-color:",Ze.gray[100],";}&:focus{border:1px solid ",Ze.ui.borderFocus,";box-shadow:inset 0 0 0 ",Ye.borderWidth+" "+Ze.ui.borderFocus,";outline-offset:0;outline:2px solid transparent;z-index:1;}",""),default:Xe("display:flex;justify-content:center;align-items:center;&:where( :not( :disabled ) ):hover{box-shadow:0 0 0 ",Ye.borderWidth+" "+Ze.ui.borderFocus,";outline:",Ye.borderWidth," solid transparent;}&:focus{box-shadow:0 0 0 ",Ye.borderWidthFocus+" "+Ze.ui.borderFocus,";outline:",Ye.borderWidthFocus," solid transparent;}","")})[e],sfe=He("select",{target:"e1bagdl30"})("&&&{appearance:none;background:transparent;border-radius:",Ye.radiusXSmall,";border:none;display:block;outline:none;margin:0;min-height:auto;font-family:inherit;",rfe,";",e0t,";&:not( :disabled ){cursor:pointer;}}"),t0t=Xe("box-shadow:inset ",Ye.controlBoxShadowFocus,";",""),n0t=Xe("border:0;padding:0;margin:0;",P3,";",""),o0t=()=>Xe(lj,"{flex:1 1 40%;}&& ",sfe,"{min-height:0;}",""),r0t=Xe(lj,"{flex:0 0 auto;}",""),s0t=e=>Xe("height:",e==="__unstable-large"?"40px":"30px",";",""),i0t=Xe("background:#fff;&&>button{aspect-ratio:1;padding:0;display:flex;align-items:center;justify-content:center;",Go({borderRadius:"2px 0 0 2px"},{borderRadius:"0 2px 2px 0"})()," border:",Ye.borderWidth," solid ",Ze.ui.border,";&:focus,&:hover:not( :disabled ){",t0t," border-color:",Ze.ui.borderFocus,";z-index:1;position:relative;}}",""),a0t=e=>{const{color:t,style:n}=e||{},o=n&&n!=="none"?Ze.gray[300]:void 0;return Xe("border-style:",n==="none"?"solid":n,";border-color:",t||o,";","")},c0t=(e,t)=>{const{style:n}=e||{};return Xe("border-radius:",Ye.radiusFull,";border:2px solid transparent;",n?a0t(e):void 0," width:",t==="__unstable-large"?"24px":"22px",";height:",t==="__unstable-large"?"24px":"22px",";padding:",t==="__unstable-large"?"2px":"1px",";&>span{height:",Je(4),";width:",Je(4),`;background:linear-gradient( -45deg, transparent 48%, rgb( 0 0 0 / 20% ) 48%, rgb( 0 0 0 / 20% ) 52%, transparent 52% - );}`,"")},u0t=28,d0t=12,p0t=Xe("width:",u0t*6+d0t*5,"px;>div:first-of-type>",gh,"{margin-bottom:0;}&& ",gh,"+button:not( .has-text ){min-width:24px;padding:0;}",""),f0t=Xe("",""),b0t=Xe("",""),h0t=Xe("justify-content:center;width:100%;&&{border-top:",Ye.borderWidth," solid ",Ze.gray[400],";border-top-left-radius:0;border-top-right-radius:0;}",""),m0t=()=>Xe("flex:1 1 60%;",Go({marginRight:Je(3)})(),";",""),oc={px:{value:"px",label:"px",a11yLabel:m("Pixels (px)"),step:1},"%":{value:"%",label:"%",a11yLabel:m("Percent (%)"),step:.1},em:{value:"em",label:"em",a11yLabel:We("ems","Relative to parent font size (em)"),step:.01},rem:{value:"rem",label:"rem",a11yLabel:We("rems","Relative to root font size (rem)"),step:.01},vw:{value:"vw",label:"vw",a11yLabel:m("Viewport width (vw)"),step:.1},vh:{value:"vh",label:"vh",a11yLabel:m("Viewport height (vh)"),step:.1},vmin:{value:"vmin",label:"vmin",a11yLabel:m("Viewport smallest dimension (vmin)"),step:.1},vmax:{value:"vmax",label:"vmax",a11yLabel:m("Viewport largest dimension (vmax)"),step:.1},ch:{value:"ch",label:"ch",a11yLabel:m("Width of the zero (0) character (ch)"),step:.01},ex:{value:"ex",label:"ex",a11yLabel:m("x-height of the font (ex)"),step:.01},cm:{value:"cm",label:"cm",a11yLabel:m("Centimeters (cm)"),step:.001},mm:{value:"mm",label:"mm",a11yLabel:m("Millimeters (mm)"),step:.1},in:{value:"in",label:"in",a11yLabel:m("Inches (in)"),step:.001},pc:{value:"pc",label:"pc",a11yLabel:m("Picas (pc)"),step:1},pt:{value:"pt",label:"pt",a11yLabel:m("Points (pt)"),step:1},svw:{value:"svw",label:"svw",a11yLabel:m("Small viewport width (svw)"),step:.1},svh:{value:"svh",label:"svh",a11yLabel:m("Small viewport height (svh)"),step:.1},svi:{value:"svi",label:"svi",a11yLabel:m("Small viewport width or height (svi)"),step:.1},svb:{value:"svb",label:"svb",a11yLabel:m("Small viewport width or height (svb)"),step:.1},svmin:{value:"svmin",label:"svmin",a11yLabel:m("Small viewport smallest dimension (svmin)"),step:.1},lvw:{value:"lvw",label:"lvw",a11yLabel:m("Large viewport width (lvw)"),step:.1},lvh:{value:"lvh",label:"lvh",a11yLabel:m("Large viewport height (lvh)"),step:.1},lvi:{value:"lvi",label:"lvi",a11yLabel:m("Large viewport width or height (lvi)"),step:.1},lvb:{value:"lvb",label:"lvb",a11yLabel:m("Large viewport width or height (lvb)"),step:.1},lvmin:{value:"lvmin",label:"lvmin",a11yLabel:m("Large viewport smallest dimension (lvmin)"),step:.1},dvw:{value:"dvw",label:"dvw",a11yLabel:m("Dynamic viewport width (dvw)"),step:.1},dvh:{value:"dvh",label:"dvh",a11yLabel:m("Dynamic viewport height (dvh)"),step:.1},dvi:{value:"dvi",label:"dvi",a11yLabel:m("Dynamic viewport width or height (dvi)"),step:.1},dvb:{value:"dvb",label:"dvb",a11yLabel:m("Dynamic viewport width or height (dvb)"),step:.1},dvmin:{value:"dvmin",label:"dvmin",a11yLabel:m("Dynamic viewport smallest dimension (dvmin)"),step:.1},dvmax:{value:"dvmax",label:"dvmax",a11yLabel:m("Dynamic viewport largest dimension (dvmax)"),step:.1},svmax:{value:"svmax",label:"svmax",a11yLabel:m("Small viewport largest dimension (svmax)"),step:.1},lvmax:{value:"lvmax",label:"lvmax",a11yLabel:m("Large viewport largest dimension (lvmax)"),step:.1}},yx=Object.values(oc),ife=[oc.px,oc["%"],oc.em,oc.rem,oc.vw,oc.vh],g0t=oc.px;function afe(e,t,n){const o=t?`${e??""}${t}`:e;return yo(o,n)}function dj(e){return Array.isArray(e)&&!!e.length}function yo(e,t=yx){let n,o;if(typeof e<"u"||e===null){n=`${e}`.trim();const c=parseFloat(n);o=isFinite(c)?c:void 0}const s=n?.match(/[\d.\-\+]*\s*(.*)/)?.[1]?.toLowerCase();let i;return dj(t)?i=t.find(l=>l.value===s)?.value:i=g0t.value,[o,i]}function M0t(e,t,n,o){const[r,s]=yo(e,t),i=r??n;let c=s||o;return!c&&dj(t)&&(c=t[0].value),[i,c]}function z0t(e=[],t){return Array.isArray(t)?t.filter(n=>e.includes(n.value)):[]}const U1=({units:e=yx,availableUnits:t=[],defaultValues:n})=>{const o=z0t(t,e);return n&&o.forEach((r,s)=>{if(n[r.value]){const[i]=yo(n[r.value]);o[s].default=i}}),o};function O0t(e,t,n=yx){const o=Array.isArray(n)?[...n]:[],[,r]=afe(e,t,yx);return r&&!o.some(s=>s.value===r)&&oc[r]&&o.unshift(oc[r]),o}function y0t(e){const{border:t,className:n,colors:o=[],enableAlpha:r=!1,enableStyle:s=!0,onChange:i,previousStyleSelection:c,size:l="default",__experimentalIsRenderedInSidebar:u=!1,...d}=vn(e,"BorderControlDropdown"),[p]=yo(t?.width),f=p===0,b=S=>{const C=t?.style==="none"?c:t?.style,R=f&&S?"1px":t?.width;i({color:S,style:C,width:R})},h=S=>{const C=f&&S?"1px":t?.width;i({...t,style:S,width:C})},g=()=>{i({...t,color:void 0,style:void 0})},z=ro(),A=x.useMemo(()=>z(a0t,n),[n,z]),_=x.useMemo(()=>z(b0t),[z]),v=x.useMemo(()=>z(l0t(t,l)),[t,z,l]),M=x.useMemo(()=>z(p0t),[z]),y=x.useMemo(()=>z(f0t),[z]),k=x.useMemo(()=>z(h0t),[z]);return{...d,border:t,className:A,colors:o,enableAlpha:r,enableStyle:s,indicatorClassName:_,indicatorWrapperClassName:v,onColorChange:b,onStyleChange:h,onReset:g,popoverContentClassName:y,popoverControlsClassName:M,resetButtonClassName:k,size:l,__experimentalIsRenderedInSidebar:u}}const TA=e=>e.replace(/^var\((.+)\)$/,"$1"),A0t=(e,t)=>{if(!(!e||!t)){if(efe(t)){let n;return t.some(o=>o.colors.some(r=>r.color===e?(n=r,!0):!1)),n}return t.find(n=>n.color===e)}},v0t=(e,t,n,o)=>{if(o){if(t){const r=TA(t.color);return n?xe(m('Border color and style picker. The currently selected color is called "%1$s" and has a value of "%2$s". The currently selected style is "%3$s".'),t.name,r,n):xe(m('Border color and style picker. The currently selected color is called "%1$s" and has a value of "%2$s".'),t.name,r)}if(e){const r=TA(e);return n?xe(m('Border color and style picker. The currently selected color has a value of "%1$s". The currently selected style is "%2$s".'),r,n):xe(m('Border color and style picker. The currently selected color has a value of "%s".'),r)}return m("Border color and style picker.")}return t?xe(m('Border color picker. The currently selected color is called "%1$s" and has a value of "%2$s".'),t.name,TA(t.color)):e?xe(m('Border color picker. The currently selected color has a value of "%s".'),TA(e)):m("Border color picker.")},x0t=(e,t)=>{const{__experimentalIsRenderedInSidebar:n,border:o,colors:r,disableCustomColors:s,enableAlpha:i,enableStyle:c,indicatorClassName:l,indicatorWrapperClassName:u,isStyleSettable:d,onReset:p,onColorChange:f,onStyleChange:b,popoverContentClassName:h,popoverControlsClassName:g,resetButtonClassName:z,size:A,__unstablePopoverProps:_,...v}=y0t(e),{color:M,style:y}=o||{},k=A0t(M,r),S=v0t(M,k,y,c),C=M||y&&y!=="none",R=n?"bottom left":void 0,T=({onToggle:B})=>a.jsx(Ce,{onClick:B,variant:"tertiary","aria-label":S,tooltipPosition:R,label:m("Border color and style picker"),showTooltip:!0,__next40pxDefaultSize:A==="__unstable-large",children:a.jsx("span",{className:u,children:a.jsx(eb,{className:l,colorValue:M})})}),E=({onClose:B})=>a.jsxs(a.Fragment,{children:[a.jsx($s,{paddingSize:"medium",children:a.jsxs(dt,{className:g,spacing:6,children:[a.jsx(Kw,{className:h,value:M,onChange:f,colors:r,disableCustomColors:s,__experimentalIsRenderedInSidebar:n,clearable:!1,enableAlpha:i}),c&&d&&a.jsx(Jnt,{label:m("Style"),value:y,onChange:b})]})}),C&&a.jsx($s,{paddingSize:"none",children:a.jsx(Ce,{className:z,variant:"tertiary",onClick:()=>{p(),B()},__next40pxDefaultSize:!0,children:m("Reset")})})]});return a.jsx(so,{renderToggle:T,renderContent:E,popoverProps:{..._},...v,ref:t})},w0t=Rn(x0t,"BorderControlDropdown");function _0t({className:e,isUnitSelectTabbable:t=!0,onChange:n,size:o="default",unit:r="px",units:s=ife,...i},c){if(!dj(s)||s?.length===1)return a.jsx(e0t,{className:"components-unit-control__unit-label",selectSize:o,children:r});const l=d=>{const{value:p}=d.target,f=s.find(b=>b.value===p);n?.(p,{event:d,data:f})},u=oe("components-unit-control__select",e);return a.jsx(sfe,{ref:c,className:u,onChange:l,selectSize:o,tabIndex:t?void 0:-1,value:r,...i,children:s.map(d=>a.jsx("option",{value:d.value,children:d.label},d.value))})}const k0t=x.forwardRef(_0t);function S0t(e,t){const{__unstableStateReducer:n,autoComplete:o="off",children:r,className:s,disabled:i=!1,disableUnits:c=!1,isPressEnterToChange:l=!1,isResetValueOnUnitChange:u=!1,isUnitSelectTabbable:d=!0,label:p,onChange:f,onUnitChange:b,size:h="default",unit:g,units:z=ife,value:A,onFocus:_,__shouldNotWarnDeprecated36pxSize:v,...M}=sp(e);q1({componentName:"UnitControl",__next40pxDefaultSize:M.__next40pxDefaultSize,size:h,__shouldNotWarnDeprecated36pxSize:v}),"unit"in e&&Ke("UnitControl unit prop",{since:"5.6",hint:"The unit should be provided within the `value` prop.",version:"6.2"});const y=A??void 0,[k,S]=x.useMemo(()=>{const Z=O0t(y,g,z),[{value:V=""}={},...ee]=Z,te=ee.reduce((J,{value:ue})=>{const ce=xz(ue?.substring(0,1)||"");return J.includes(ce)?J:`${J}|${ce}`},xz(V.substring(0,1)));return[Z,new RegExp(`^(?:${te})$`,"i")]},[y,g,z]),[C,R]=afe(y,g,k),[T,E]=Ow(k.length===1?k[0].value:g,{initial:R,fallback:""});x.useEffect(()=>{R!==void 0&&E(R)},[R,E]);const B=oe("components-unit-control","components-unit-control-wrapper",s),N=(Z,V)=>{if(Z===""||typeof Z>"u"||Z===null){f?.("",V);return}const ee=M0t(Z,k,C,T).join("");f?.(ee,V)},j=(Z,V)=>{const{data:ee}=V;let te=`${C??""}${Z}`;u&&ee?.default!==void 0&&(te=`${ee.default}${Z}`),f?.(te,V),b?.(Z,V),E(Z)};let I;!c&&d&&k.length&&(I=Z=>{M.onKeyDown?.(Z),!Z.metaKey&&!Z.ctrlKey&&S.test(Z.key)&&P.current?.focus()});const P=x.useRef(null),$=c?null:a.jsx(k0t,{ref:P,"aria-label":m("Select unit"),disabled:i,isUnitSelectTabbable:d,onChange:j,size:["small","compact"].includes(h)||h==="default"&&!M.__next40pxDefaultSize?"small":"default",unit:T,units:k,onFocus:_,onBlur:e.onBlur});let F=M.step;if(!F&&k){var X;F=(X=k.find(V=>V.value===T)?.step)!==null&&X!==void 0?X:1}return a.jsx(uj,{...M,__shouldNotWarnDeprecated36pxSize:!0,autoComplete:o,className:B,disabled:i,spinControls:"none",isPressEnterToChange:l,label:p,onKeyDown:I,onChange:N,ref:t,size:h,suffix:$,type:l?"text":"number",value:C??"",step:F,onFocus:_,__unstableStateReducer:n})}const Ro=x.forwardRef(S0t),qY=e=>{const t=e?.width!==void 0&&e.width!=="",n=e?.color!==void 0;return t||n};function C0t(e){const{className:t,colors:n=[],isCompact:o,onChange:r,enableAlpha:s=!0,enableStyle:i=!0,shouldSanitizeBorder:c=!0,size:l="default",value:u,width:d,__experimentalIsRenderedInSidebar:p=!1,__next40pxDefaultSize:f,__shouldNotWarnDeprecated36pxSize:b,...h}=vn(e,"BorderControl");q1({componentName:"BorderControl",__next40pxDefaultSize:f,size:l,__shouldNotWarnDeprecated36pxSize:b});const g=l==="default"&&f?"__unstable-large":l,[z,A]=yo(u?.width),_=A||"px",v=z===0,[M,y]=x.useState(),[k,S]=x.useState(),C=c?qY(u):!0,R=x.useCallback($=>{if(c&&!qY($)){r(void 0);return}r($)},[r,c]),T=x.useCallback($=>{const F=$===""?void 0:$,[X]=yo($),Z=X===0,V={...u,width:F};Z&&!v&&(y(u?.color),S(u?.style),V.color=void 0,V.style="none"),!Z&&v&&(V.color===void 0&&(V.color=M),V.style==="none"&&(V.style=k)),R(V)},[u,v,M,k,R]),E=x.useCallback($=>{T(`${$}${_}`)},[T,_]),B=ro(),N=x.useMemo(()=>B(o0t,t),[t,B]);let j=d;o&&(j=l==="__unstable-large"?"116px":"90px");const I=x.useMemo(()=>{const $=!!j&&s0t,F=i0t(g);return B(r0t(),$,F)},[j,B,g]),P=x.useMemo(()=>B(m0t()),[B]);return{...h,className:N,colors:n,enableAlpha:s,enableStyle:i,innerWrapperClassName:I,inputWidth:j,isStyleSettable:C,onBorderChange:R,onSliderChange:E,onWidthChange:T,previousStyleSelection:k,sliderClassName:P,value:u,widthUnit:_,widthValue:z,size:g,__experimentalIsRenderedInSidebar:p,__next40pxDefaultSize:f}}const q0t=e=>{const{label:t,hideLabelFromVision:n}=e;return t?n?a.jsx(qn,{as:"legend",children:t}):a.jsx(gh,{as:"legend",children:t}):null},R0t=(e,t)=>{const{__next40pxDefaultSize:n=!1,colors:o,disableCustomColors:r,disableUnits:s,enableAlpha:i,enableStyle:c,hideLabelFromVision:l,innerWrapperClassName:u,inputWidth:d,isStyleSettable:p,label:f,onBorderChange:b,onSliderChange:h,onWidthChange:g,placeholder:z,__unstablePopoverProps:A,previousStyleSelection:_,showDropdownHeader:v,size:M,sliderClassName:y,value:k,widthUnit:S,widthValue:C,withSlider:R,__experimentalIsRenderedInSidebar:T,...E}=C0t(e);return a.jsxs(mo,{as:"fieldset",...E,ref:t,children:[a.jsx(q0t,{label:f,hideLabelFromVision:l}),a.jsxs(Ot,{spacing:4,className:u,children:[a.jsx(Ro,{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,prefix:a.jsx(t1,{marginRight:1,marginBottom:0,children:a.jsx(w0t,{border:k,colors:o,__unstablePopoverProps:A,disableCustomColors:r,enableAlpha:i,enableStyle:c,isStyleSettable:p,onChange:b,previousStyleSelection:_,__experimentalIsRenderedInSidebar:T,size:M})}),label:m("Border width"),hideLabelFromVision:!0,min:0,onChange:g,value:k?.width||"",placeholder:z,disableUnits:s,__unstableInputWidth:d,size:M}),R&&a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Border width"),hideLabelFromVision:!0,className:y,initialPosition:0,max:100,min:0,onChange:h,step:["px","%"].includes(S)?1:.1,value:C||void 0,withInputField:!1,__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0})]})]})},oM=Rn(R0t,"BorderControl"),T0t={bottom:{alignItems:"flex-end",justifyContent:"center"},bottomLeft:{alignItems:"flex-start",justifyContent:"flex-end"},bottomRight:{alignItems:"flex-end",justifyContent:"flex-end"},center:{alignItems:"center",justifyContent:"center"},spaced:{alignItems:"center",justifyContent:"space-between"},left:{alignItems:"center",justifyContent:"flex-start"},right:{alignItems:"center",justifyContent:"flex-end"},stretch:{alignItems:"stretch"},top:{alignItems:"flex-start",justifyContent:"center"},topLeft:{alignItems:"flex-start",justifyContent:"flex-start"},topRight:{alignItems:"flex-start",justifyContent:"flex-end"}};function E0t(e){return e?T0t[e]:{}}function W0t(e){const{align:t,alignment:n,className:o,columnGap:r,columns:s=2,gap:i=3,isInline:c=!1,justify:l,rowGap:u,rows:d,templateColumns:p,templateRows:f,...b}=vn(e,"Grid"),h=Array.isArray(s)?s:[s],g=N8(h),z=Array.isArray(d)?d:[d],A=N8(z),_=p||!!s&&`repeat( ${g}, 1fr )`,v=f||!!d&&`repeat( ${A}, 1fr )`,M=ro(),y=x.useMemo(()=>{const k=E0t(n),S=Xe({alignItems:t,display:c?"inline-grid":"grid",gap:`calc( ${Ye.gridBase} * ${i} )`,gridTemplateColumns:_||void 0,gridTemplateRows:v||void 0,gridRowGap:u,gridColumnGap:r,justifyContent:l,verticalAlign:c?"middle":void 0,...k},"","");return M(S,o)},[t,n,o,r,M,i,_,v,c,l,u]);return{...b,className:y}}function N0t(e,t){const n=W0t(e);return a.jsx(mo,{...n,ref:t})}const nO=Rn(N0t,"Grid");function B0t(e){const{className:t,colors:n=[],enableAlpha:o=!1,enableStyle:r=!0,size:s="default",__experimentalIsRenderedInSidebar:i=!1,...c}=vn(e,"BorderBoxControlSplitControls"),l=ro(),u=x.useMemo(()=>l(Mnt(s),t),[l,t,s]),d=x.useMemo(()=>l(znt,t),[l,t]),p=x.useMemo(()=>l(Ont(),t),[l,t]);return{...c,centeredClassName:d,className:u,colors:n,enableAlpha:o,enableStyle:r,rightAlignedClassName:p,size:s,__experimentalIsRenderedInSidebar:i}}const L0t=(e,t)=>{const{centeredClassName:n,colors:o,disableCustomColors:r,enableAlpha:s,enableStyle:i,onChange:c,popoverPlacement:l,popoverOffset:u,rightAlignedClassName:d,size:p="default",value:f,__experimentalIsRenderedInSidebar:b,...h}=B0t(e),[g,z]=x.useState(null),A=x.useMemo(()=>l?{placement:l,offset:u,anchor:g,shift:!0}:void 0,[l,u,g]),_={colors:o,disableCustomColors:r,enableAlpha:s,enableStyle:i,isCompact:!0,__experimentalIsRenderedInSidebar:b,size:p,__shouldNotWarnDeprecated36pxSize:!0},v=xn([z,t]);return a.jsxs(nO,{...h,ref:v,gap:3,children:[a.jsx(_nt,{value:f,size:p}),a.jsx(oM,{className:n,hideLabelFromVision:!0,label:m("Top border"),onChange:M=>c(M,"top"),__unstablePopoverProps:A,value:f?.top,..._}),a.jsx(oM,{hideLabelFromVision:!0,label:m("Left border"),onChange:M=>c(M,"left"),__unstablePopoverProps:A,value:f?.left,..._}),a.jsx(oM,{className:d,hideLabelFromVision:!0,label:m("Right border"),onChange:M=>c(M,"right"),__unstablePopoverProps:A,value:f?.right,..._}),a.jsx(oM,{className:n,hideLabelFromVision:!0,label:m("Bottom border"),onChange:M=>c(M,"bottom"),__unstablePopoverProps:A,value:f?.bottom,..._})]})},P0t=Rn(L0t,"BorderBoxControlSplitControls"),j0t=/^([\d.\-+]*)\s*(fr|cm|mm|Q|in|pc|pt|px|em|ex|ch|rem|lh|vw|vh|vmin|vmax|%|cap|ic|rlh|vi|vb|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx|svw|lvw|dvw|svh|lvh|dvh|svi|lvi|dvi|svb|lvb|dvb|svmin|lvmin|dvmin|svmax|lvmax|dvmax)?$/;function I0t(e){const n=e.trim().match(j0t);if(!n)return[void 0,void 0];const[,o,r]=n;let s=parseFloat(o);return s=Number.isNaN(s)?void 0:s,[s,r]}const Yw=["top","right","bottom","left"],cfe=["color","style","width"],yh=e=>e?!cfe.some(t=>e[t]!==void 0):!0,D0t=e=>e?Pd(e)?!Yw.every(n=>yh(e[n])):!yh(e):!1,F0t=e=>e?cfe.every(t=>e[t]!==void 0):!1,Pd=(e={})=>Object.keys(e).some(t=>Yw.indexOf(t)!==-1),$C=e=>{if(!Pd(e))return!1;const t=Yw.map(n=>U0t(e?.[n]));return!t.every(n=>n===t[0])},$0t=e=>{if(!(!e||yh(e)))return{top:e,right:e,bottom:e,left:e}},V0t=(e,t)=>{const n={};return e.color!==t.color&&(n.color=t.color),e.style!==t.style&&(n.style=t.style),e.width!==t.width&&(n.width=t.width),n},H0t=e=>{if(!e)return;const t=[],n=[],o=[];Yw.forEach(c=>{t.push(e[c]?.color),n.push(e[c]?.style),o.push(e[c]?.width)});const r=t.every(c=>c===t[0]),s=n.every(c=>c===n[0]),i=o.every(c=>c===o[0]);return{color:r?t[0]:void 0,style:s?n[0]:void 0,width:i?o[0]:X0t(o)}},U0t=(e,t)=>{if(yh(e))return t;const{color:n,style:o,width:r}={},{color:s=n,style:i=o,width:c=r}=e;return[c,!!c&&c!=="0"||!!s?i||"solid":i,s].filter(Boolean).join(" ")},X0t=e=>{const n=e.map(o=>o===void 0?void 0:I0t(`${o}`)[1]).filter(o=>o!==void 0);return G0t(n)};function G0t(e){if(e.length===0)return;const t={};let n=0,o;return e.forEach(r=>{t[r]=t[r]===void 0?1:t[r]+1,t[r]>n&&(o=r,n=t[r])}),o}function K0t(e){const{className:t,colors:n=[],onChange:o,enableAlpha:r=!1,enableStyle:s=!0,size:i="default",value:c,__experimentalIsRenderedInSidebar:l=!1,__next40pxDefaultSize:u,...d}=vn(e,"BorderBoxControl");q1({componentName:"BorderBoxControl",__next40pxDefaultSize:u,size:i});const p=i==="default"&&u?"__unstable-large":i,f=$C(c),b=Pd(c),h=b?H0t(c):c,g=b?c:$0t(c),z=!isNaN(parseFloat(`${h?.width}`)),[A,_]=x.useState(!f),v=()=>_(!A),M=T=>{if(!T)return o(void 0);if(!f||F0t(T))return o(yh(T)?void 0:T);const E=V0t(h,T),B={top:{...c?.top,...E},right:{...c?.right,...E},bottom:{...c?.bottom,...E},left:{...c?.left,...E}};if($C(B))return o(B);const N=yh(B.top)?void 0:B.top;o(N)},y=(T,E)=>{const B={...g,[E]:T};$C(B)?o(B):o(T)},k=ro(),S=x.useMemo(()=>k(fnt,t),[k,t]),C=x.useMemo(()=>k(bnt()),[k]),R=x.useMemo(()=>k(hnt),[k]);return{...d,className:S,colors:n,disableUnits:f&&!z,enableAlpha:r,enableStyle:s,hasMixedBorders:f,isLinked:A,linkedControlClassName:C,onLinkedChange:M,onSplitChange:y,toggleLinked:v,linkedValue:h,size:p,splitValue:g,wrapperClassName:R,__experimentalIsRenderedInSidebar:l}}const Y0t=e=>{const{label:t,hideLabelFromVision:n}=e;return t?n?a.jsx(qn,{as:"label",children:t}):a.jsx(gh,{children:t}):null},Z0t=(e,t)=>{const{className:n,colors:o,disableCustomColors:r,disableUnits:s,enableAlpha:i,enableStyle:c,hasMixedBorders:l,hideLabelFromVision:u,isLinked:d,label:p,linkedControlClassName:f,linkedValue:b,onLinkedChange:h,onSplitChange:g,popoverPlacement:z,popoverOffset:A,size:_,splitValue:v,toggleLinked:M,wrapperClassName:y,__experimentalIsRenderedInSidebar:k,...S}=K0t(e),[C,R]=x.useState(null),T=x.useMemo(()=>z?{placement:z,offset:A,anchor:C,shift:!0}:void 0,[z,A,C]),E=xn([R,t]);return a.jsxs(mo,{className:n,...S,ref:E,children:[a.jsx(Y0t,{label:p,hideLabelFromVision:u}),a.jsxs(mo,{className:y,children:[d?a.jsx(oM,{className:f,colors:o,disableUnits:s,disableCustomColors:r,enableAlpha:i,enableStyle:c,onChange:h,placeholder:l?m("Mixed"):void 0,__unstablePopoverProps:T,shouldSanitizeBorder:!1,value:b,withSlider:!0,width:_==="__unstable-large"?"116px":"110px",__experimentalIsRenderedInSidebar:k,__shouldNotWarnDeprecated36pxSize:!0,size:_}):a.jsx(P0t,{colors:o,disableCustomColors:r,enableAlpha:i,enableStyle:c,onChange:g,popoverPlacement:z,popoverOffset:A,value:v,__experimentalIsRenderedInSidebar:k,size:_}),a.jsx(vnt,{onClick:M,isLinked:d,size:_})]})]})},Q0t=Rn(Z0t,"BorderBoxControl"),RY={px:{max:300,step:1},"%":{max:100,step:1},vw:{max:100,step:1},vh:{max:100,step:1},em:{max:10,step:.1},rm:{max:10,step:.1},svw:{max:100,step:1},lvw:{max:100,step:1},dvw:{max:100,step:1},svh:{max:100,step:1},lvh:{max:100,step:1},dvh:{max:100,step:1},vi:{max:100,step:1},svi:{max:100,step:1},lvi:{max:100,step:1},dvi:{max:100,step:1},vb:{max:100,step:1},svb:{max:100,step:1},lvb:{max:100,step:1},dvb:{max:100,step:1},vmin:{max:100,step:1},svmin:{max:100,step:1},lvmin:{max:100,step:1},dvmin:{max:100,step:1},vmax:{max:100,step:1},svmax:{max:100,step:1},lvmax:{max:100,step:1},dvmax:{max:100,step:1}},EA={all:m("All sides"),top:m("Top side"),bottom:m("Bottom side"),left:m("Left side"),right:m("Right side"),vertical:m("Top and bottom sides"),horizontal:m("Left and right sides")},VC={top:void 0,right:void 0,bottom:void 0,left:void 0},wz=["top","right","bottom","left"];function J0t(e={},t=wz){const n=dfe(t);if(n.every(o=>e[o]===e[n[0]]))return e[n[0]]}function lfe(e={},t=wz){const n=dfe(t);return n.some(o=>e[o]!==e[n[0]])}function ufe(e){return e&&Object.values(e).filter(t=>!!t&&/\d/.test(t)).length>0}function TY(e,t){let n="all";return e||(n=t?"vertical":"top"),n}function dfe(e){const t=[];if(!e?.length)return wz;if(e.includes("vertical"))t.push("top","bottom");else if(e.includes("horizontal"))t.push("left","right");else{const n=wz.filter(o=>e.includes(o));t.push(...n)}return t}function pfe(e){const t=new Set(e?[]:wz);return e?.forEach(n=>{n==="vertical"?(t.add("top"),t.add("bottom")):n==="horizontal"?(t.add("right"),t.add("left")):t.add(n)}),t}function ffe(e,t){return e.startsWith(`var:preset|${t}|`)}function e1t(e,t,n){if(!ffe(e,t))return;const o=e.match(new RegExp(`^var:preset\\|${t}\\|(.+)$`));if(!o)return;const r=o[1],s=n.findIndex(i=>i.slug===r);return s!==-1?s:void 0}function t1t(e,t,n){const o=n[e];return`var:preset|${t}|${o.slug}`}const n1t=He("span",{target:"e1j5nr4z8"})({name:"1w884gc",styles:"box-sizing:border-box;display:block;width:24px;height:24px;position:relative;padding:4px"}),o1t=He("span",{target:"e1j5nr4z7"})({name:"i6vjox",styles:"box-sizing:border-box;display:block;position:relative;width:100%;height:100%"}),r1t=({isFocused:e})=>Xe({backgroundColor:"currentColor",opacity:e?1:.3},"",""),bfe=He("span",{target:"e1j5nr4z6"})("box-sizing:border-box;display:block;pointer-events:none;position:absolute;",r1t,";"),hfe=He(bfe,{target:"e1j5nr4z5"})({name:"1k2w39q",styles:"bottom:3px;top:3px;width:2px"}),mfe=He(bfe,{target:"e1j5nr4z4"})({name:"1q9b07k",styles:"height:2px;left:3px;right:3px"}),s1t=He(mfe,{target:"e1j5nr4z3"})({name:"abcix4",styles:"top:0"}),i1t=He(hfe,{target:"e1j5nr4z2"})({name:"1wf8jf",styles:"right:0"}),a1t=He(mfe,{target:"e1j5nr4z1"})({name:"8tapst",styles:"bottom:0"}),c1t=He(hfe,{target:"e1j5nr4z0"})({name:"1ode3cm",styles:"left:0"}),l1t=24;function u1t({size:e=24,side:t="all",sides:n,...o}){const r=p=>n?.length&&!n.includes(p),s=p=>r(p)?!1:t==="all"||t===p,i=s("top")||s("vertical"),c=s("right")||s("horizontal"),l=s("bottom")||s("vertical"),u=s("left")||s("horizontal"),d=e/l1t;return a.jsx(n1t,{style:{transform:`scale(${d})`},...o,children:a.jsxs(o1t,{children:[a.jsx(s1t,{isFocused:i}),a.jsx(i1t,{isFocused:c}),a.jsx(a1t,{isFocused:l}),a.jsx(c1t,{isFocused:u})]})})}const d1t=He(Ro,{target:"e1jovhle5"})({name:"1ejyr19",styles:"max-width:90px"}),gfe=He(Ot,{target:"e1jovhle4"})({name:"1j1lmoi",styles:"grid-column:1/span 3"}),p1t=He(Ce,{target:"e1jovhle3"})({name:"tkya7b",styles:"grid-area:1/2;justify-self:end"}),f1t=He("div",{target:"e1jovhle2"})({name:"1dfa8al",styles:"grid-area:1/3;justify-self:end"}),b1t=He(u1t,{target:"e1jovhle1"})({name:"ou8xsw",styles:"flex:0 0 auto"}),EY=He(bo,{target:"e1jovhle0"})("width:100%;margin-inline-end:",Je(2),";"),WY=()=>{};function NY(e,t,n){const o=pfe(t);let r=[];switch(e){case"all":r=["top","bottom","left","right"];break;case"horizontal":r=["left","right"];break;case"vertical":r=["top","bottom"];break;default:r=[e]}if(n)switch(e){case"top":r.push("bottom");break;case"bottom":r.push("top");break;case"left":r.push("left");break;case"right":r.push("right");break}return r.filter(s=>o.has(s))}function r4({__next40pxDefaultSize:e,onChange:t=WY,onFocus:n=WY,values:o,selectedUnits:r,setSelectedUnits:s,sides:i,side:c,min:l=0,presets:u,presetKey:d,...p}){var f,b;const h=NY(c,i),g=V=>{n(V,{side:c})},z=V=>{t(V)},A=V=>{const ee={...o};h.forEach(te=>{ee[te]=V}),z(ee)},_=(V,ee)=>{const te={...o},ue=V!==void 0&&!isNaN(parseFloat(V))?V:void 0;NY(c,i,!!ee?.event.altKey).forEach(me=>{te[me]=ue}),z(te)},v=V=>{const ee={...r};h.forEach(te=>{ee[te]=V}),s(ee)},M=J0t(o,h),y=ufe(o),k=y&&h.length>1&&lfe(o,h),[S,C]=yo(M),R=y?C:r[h[0]],E=[vt(r4,"box-control-input"),c].join("-"),B=h.length>1&&M===void 0&&h.some(V=>r[V]!==R),N=M===void 0&&R?R:M,j=k||B?m("Mixed"):void 0,I=u&&u.length>0&&d,P=I&&M!==void 0&&!k&&ffe(M,d),[$,F]=x.useState(!I||!P&&!k&&M!==void 0),X=P?e1t(M,d,u):void 0,Z=I?[{value:0,label:"",tooltip:m("None")}].concat(u.map((V,ee)=>{var te;return{value:ee+1,label:"",tooltip:(te=V.name)!==null&&te!==void 0?te:V.slug}})):[];return a.jsxs(gfe,{expanded:!0,children:[a.jsx(b1t,{side:c,sides:i}),$&&a.jsxs(a.Fragment,{children:[a.jsx(B0,{placement:"top-end",text:EA[c],children:a.jsx(d1t,{...p,min:l,__shouldNotWarnDeprecated36pxSize:!0,__next40pxDefaultSize:e,className:"component-box-control__unit-control",id:E,isPressEnterToChange:!0,disableUnits:k||B,value:N,onChange:_,onUnitChange:v,onFocus:g,label:EA[c],placeholder:j,hideLabelFromVision:!0})}),a.jsx(EY,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:e,__shouldNotWarnDeprecated36pxSize:!0,"aria-controls":E,label:EA[c],hideLabelFromVision:!0,onChange:V=>{_(V!==void 0?[V,R].join(""):void 0)},min:isFinite(l)?l:0,max:(f=RY[R??"px"]?.max)!==null&&f!==void 0?f:10,step:(b=RY[R??"px"]?.step)!==null&&b!==void 0?b:.1,value:S??0,withInputField:!1})]}),I&&!$&&a.jsx(EY,{__next40pxDefaultSize:!0,className:"spacing-sizes-control__range-control",value:X!==void 0?X+1:0,onChange:V=>{const ee=V===0||V===void 0?void 0:t1t(V-1,d,u);A(ee)},withInputField:!1,"aria-valuenow":X!==void 0?X+1:0,"aria-valuetext":Z[X!==void 0?X+1:0].tooltip,renderTooltipContent:V=>Z[V||0].tooltip,min:0,max:Z.length-1,marks:Z,label:EA[c],hideLabelFromVision:!0,__nextHasNoMarginBottom:!0}),I&&a.jsx(Ce,{label:m($?"Use size preset":"Set custom size"),icon:UP,onClick:()=>{F(!$)},isPressed:$,size:"small",iconSize:24})]},`box-control-${c}`)}function h1t({isLinked:e,...t}){const n=m(e?"Unlink sides":"Link sides");return a.jsx(Ce,{...t,className:"component-box-control__linked-button",size:"small",icon:e?xa:jl,iconSize:24,label:n})}const m1t={min:0},g1t=()=>{};function M1t(e){const t=vt(s4,"inspector-box-control");return e||t}function s4({__next40pxDefaultSize:e=!1,id:t,inputProps:n=m1t,onChange:o=g1t,label:r=m("Box Control"),values:s,units:i,sides:c,splitOnAxis:l=!1,allowReset:u=!0,resetValues:d=VC,presets:p,presetKey:f,onMouseOver:b,onMouseOut:h}){const[g,z]=Ow(s,{fallback:VC}),A=g||VC,_=ufe(s),v=c?.length===1,[M,y]=x.useState(_),[k,S]=x.useState(!_||!lfe(A)||v),[C,R]=x.useState(TY(k,l)),[T,E]=x.useState({top:yo(s?.top)[1],right:yo(s?.right)[1],bottom:yo(s?.bottom)[1],left:yo(s?.left)[1]}),B=M1t(t),N=`${B}-heading`,j=()=>{S(!k),R(TY(!k,l))},I=(Z,{side:V})=>{R(V)},P=Z=>{o(Z),z(Z),y(!0)},$=()=>{o(d),z(d),E(d),y(!1)},F={onMouseOver:b,onMouseOut:h,...n,onChange:P,onFocus:I,isLinked:k,units:i,selectedUnits:T,setSelectedUnits:E,sides:c,values:A,__next40pxDefaultSize:e,presets:p,presetKey:f};q1({componentName:"BoxControl",__next40pxDefaultSize:e,size:void 0});const X=pfe(c);if(p&&!f||!p&&f){const Z=p?"presets":"presetKey",V=p?"presetKey":"presets";globalThis.SCRIPT_DEBUG===!0&&zn(`wp.components.BoxControl: the '${V}' prop is required when the '${Z}' prop is defined.`)}return a.jsxs(nO,{id:B,columns:3,templateColumns:"1fr min-content min-content",role:"group","aria-labelledby":N,children:[a.jsx(no.VisualLabel,{id:N,children:r}),k&&a.jsx(gfe,{children:a.jsx(r4,{side:"all",...F})}),!v&&a.jsx(f1t,{children:a.jsx(h1t,{onClick:j,isLinked:k})}),!k&&l&&["vertical","horizontal"].map(Z=>a.jsx(r4,{side:Z,...F},Z)),!k&&!l&&Array.from(X).map(Z=>a.jsx(r4,{side:Z,...F},Z)),u&&a.jsx(p1t,{className:"component-box-control__reset-button",variant:"secondary",size:"small",onClick:$,disabled:!M,children:m("Reset")})]})}const z1t={name:"12ip69d",styles:"background:transparent;display:block;margin:0!important;pointer-events:none;position:absolute;will-change:box-shadow"};function WA(e){const t=`rgba(0, 0, 0, ${e/20})`;return`0 ${e}px ${e*2}px 0 - ${t}`}function O1t(e){const{active:t,borderRadius:n="inherit",className:o,focus:r,hover:s,isInteractive:i=!1,offset:c=0,value:l=0,...u}=vn(e,"Elevation"),d=ro(),p=x.useMemo(()=>{let f=bi(s)?s:l*2,b=bi(t)?t:l/2;i||(f=bi(s)?s:void 0,b=bi(t)?t:void 0);const h=`box-shadow ${Ye.transitionDuration} ${Ye.transitionTimingFunction}`,g={};return g.Base=Xe({borderRadius:n,bottom:c,boxShadow:WA(l),opacity:Ye.elevationIntensity,left:c,right:c,top:c},Xe("@media not ( prefers-reduced-motion ){transition:",h,";}",""),"",""),bi(f)&&(g.hover=Xe("*:hover>&{box-shadow:",WA(f),";}","")),bi(b)&&(g.active=Xe("*:active>&{box-shadow:",WA(b),";}","")),bi(r)&&(g.focus=Xe("*:focus>&{box-shadow:",WA(r),";}","")),d(z1t,g.Base,g.hover,g.focus,g.active,o)},[t,n,o,d,r,s,i,c,l]);return{...u,className:p,"aria-hidden":!0}}function y1t(e,t){const n=O1t(e);return a.jsx(mo,{...n,ref:t})}const BY=Rn(y1t,"Elevation"),rM=`calc(${Ye.radiusLarge} - 1px)`,A1t=Xe("box-shadow:0 0 0 1px ",Ye.surfaceBorderColor,";outline:none;",""),v1t={name:"1showjb",styles:"border-bottom:1px solid;box-sizing:border-box;&:last-child{border-bottom:none;}"},x1t={name:"13udsys",styles:"height:100%"},w1t={name:"6ywzd",styles:"box-sizing:border-box;height:auto;max-height:100%"},Mfe=Xe("&:first-of-type{border-top-left-radius:",rM,";border-top-right-radius:",rM,";}&:last-of-type{border-bottom-left-radius:",rM,";border-bottom-right-radius:",rM,";}",""),_1t=Xe("border-color:",Ye.colorDivider,";",""),k1t={name:"1t90u8d",styles:"box-shadow:none"},S1t={name:"1e1ncky",styles:"border:none"},C1t=Xe("border-radius:",rM,";",""),LY=Xe("padding:",Ye.cardPaddingXSmall,";",""),zfe={large:Xe("padding:",Ye.cardPaddingLarge,";",""),medium:Xe("padding:",Ye.cardPaddingMedium,";",""),small:Xe("padding:",Ye.cardPaddingSmall,";",""),xSmall:LY,extraSmall:LY},Ofe=Xe("background-color:",Ze.ui.backgroundDisabled,";",""),q1t=Xe("background-color:",Ye.surfaceColor,";color:",Ze.gray[900],";position:relative;","");Ye.surfaceBackgroundColor;function R1t({borderBottom:e,borderLeft:t,borderRight:n,borderTop:o}){const r=`1px solid ${Ye.surfaceBorderColor}`;return Xe({borderBottom:e?r:void 0,borderLeft:t?r:void 0,borderRight:n?r:void 0,borderTop:o?r:void 0},"","")}const T1t=Xe("",""),E1t=Xe("background:",Ye.surfaceBackgroundTintColor,";",""),W1t=Xe("background:",Ye.surfaceBackgroundTertiaryColor,";",""),yfe=e=>[e,e].join(" "),N1t=e=>["90deg",[Ye.surfaceBackgroundColor,e].join(" "),"transparent 1%"].join(","),B1t=e=>[[Ye.surfaceBackgroundColor,e].join(" "),"transparent 1%"].join(","),L1t=e=>[`linear-gradient( ${N1t(e)} ) center`,`linear-gradient( ${B1t(e)} ) center`,Ye.surfaceBorderBoldColor].join(","),P1t=(e,t)=>Xe("background:",L1t(t),";background-size:",yfe(e),";",""),j1t=[`${Ye.surfaceBorderSubtleColor} 1px`,"transparent 1px"].join(","),I1t=["90deg",`${Ye.surfaceBorderSubtleColor} 1px`,"transparent 1px"].join(","),D1t=[`linear-gradient( ${j1t} )`,`linear-gradient( ${I1t} )`].join(","),F1t=e=>Xe("background:",Ye.surfaceBackgroundColor,";background-image:",D1t,";background-size:",yfe(e),";",""),$1t=(e,t,n)=>{switch(e){case"dotted":return P1t(t,n);case"grid":return F1t(t);case"primary":return T1t;case"secondary":return E1t;case"tertiary":return W1t}};function V1t(e){const{backgroundSize:t=12,borderBottom:n=!1,borderLeft:o=!1,borderRight:r=!1,borderTop:s=!1,className:i,variant:c="primary",...l}=vn(e,"Surface"),u=ro(),d=x.useMemo(()=>{const p={borders:R1t({borderBottom:n,borderLeft:o,borderRight:r,borderTop:s})};return u(q1t,p.borders,$1t(c,`${t}px`,`${t-1}px`),i)},[t,n,o,r,s,i,u,c]);return{...l,className:d}}function H1t({elevation:e,isElevated:t,...n}){const o={...n};let r=e;if(t){var s;Ke("Card isElevated prop",{since:"5.9",alternative:"elevation"}),(s=r)!==null&&s!==void 0||(r=2)}return typeof r<"u"&&(o.elevation=r),o}function U1t(e){const{className:t,elevation:n=0,isBorderless:o=!1,isRounded:r=!0,size:s="medium",...i}=vn(H1t(e),"Card"),c=ro(),l=x.useMemo(()=>c(A1t,o&&k1t,r&&C1t,t),[t,c,o,r]);return{...V1t({...i,className:l}),elevation:n,isBorderless:o,isRounded:r,size:s}}function X1t(e,t){const{children:n,elevation:o,isBorderless:r,isRounded:s,size:i,...c}=U1t(e),l=s?Ye.radiusLarge:0,u=ro(),d=x.useMemo(()=>u(Xe({borderRadius:l},"","")),[u,l]),p=x.useMemo(()=>{const f={size:i,isBorderless:r};return{CardBody:f,CardHeader:f,CardFooter:f}},[r,i]);return a.jsx(j3,{value:p,children:a.jsxs(mo,{...c,ref:t,children:[a.jsx(mo,{className:u(x1t),children:n}),a.jsx(BY,{className:d,isInteractive:!1,value:o?1:0}),a.jsx(BY,{className:d,isInteractive:!1,value:o})]})})}const PY=Rn(X1t,"Card"),G1t=Xe("@media only screen and ( min-device-width: 40em ){&::-webkit-scrollbar{height:12px;width:12px;}&::-webkit-scrollbar-track{background-color:transparent;}&::-webkit-scrollbar-track{background:",Ye.colorScrollbarTrack,";border-radius:8px;}&::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:",Ye.colorScrollbarThumb,";border:2px solid rgba( 0, 0, 0, 0 );border-radius:7px;}&:hover::-webkit-scrollbar-thumb{background-color:",Ye.colorScrollbarThumbHover,";}}",""),K1t={name:"13udsys",styles:"height:100%"},Y1t={name:"7zq9w",styles:"scroll-behavior:smooth"},Z1t={name:"q33xhg",styles:"overflow-x:auto;overflow-y:hidden"},Q1t={name:"103x71s",styles:"overflow-x:hidden;overflow-y:auto"},J1t={name:"umwchj",styles:"overflow-y:auto"};function est(e){const{className:t,scrollDirection:n="y",smoothScroll:o=!1,...r}=vn(e,"Scrollable"),s=ro(),i=x.useMemo(()=>s(K1t,G1t,o&&Y1t,n==="x"&&Z1t,n==="y"&&Q1t,n==="auto"&&J1t,t),[t,s,n,o]);return{...r,className:i}}function tst(e,t){const n=est(e);return a.jsx(mo,{...n,ref:t})}const nst=Rn(tst,"Scrollable");function ost(e){const{className:t,isScrollable:n=!1,isShady:o=!1,size:r="medium",...s}=vn(e,"CardBody"),i=ro(),c=x.useMemo(()=>i(w1t,Mfe,zfe[r],o&&Ofe,"components-card__body",t),[t,i,o,r]);return{...s,className:c,isScrollable:n}}function rst(e,t){const{isScrollable:n,...o}=ost(e);return n?a.jsx(nst,{...o,ref:t}):a.jsx(mo,{...o,ref:t})}const jY=Rn(rst,"CardBody");function sst(e){const{className:t,isBorderless:n=!1,isShady:o=!1,size:r="medium",...s}=vn(e,"CardHeader"),i=ro(),c=x.useMemo(()=>i(v1t,Mfe,_1t,zfe[r],n&&S1t,o&&Ofe,"components-card__header",t),[t,i,n,o,r]);return{...s,className:c}}function ist(e,t){const n=sst(e);return a.jsx(Yo,{...n,ref:t})}const ast=Rn(ist,"CardHeader");function K0(e){const{__nextHasNoMarginBottom:t,label:n,className:o,heading:r,checked:s,indeterminate:i,help:c,id:l,onChange:u,...d}=e;r&&Ke("`heading` prop in `CheckboxControl`",{alternative:"a separate element to implement a heading",since:"5.8"});const[p,f]=x.useState(!1),[b,h]=x.useState(!1),g=Mn(_=>{_&&(_.indeterminate=!!i,f(_.matches(":checked")),h(_.matches(":indeterminate")))},[s,i]),z=vt(K0,"inspector-checkbox-control",l),A=_=>u(_.target.checked);return a.jsx(no,{__nextHasNoMarginBottom:t,__associatedWPComponentName:"CheckboxControl",label:r,id:z,help:c&&a.jsx("span",{className:"components-checkbox-control__help",children:c}),className:oe("components-checkbox-control",o),children:a.jsxs(Ot,{spacing:0,justify:"start",alignment:"top",children:[a.jsxs("span",{className:"components-checkbox-control__input-container",children:[a.jsx("input",{ref:g,id:z,className:"components-checkbox-control__input",type:"checkbox",value:"1",onChange:A,checked:s,"aria-describedby":c?z+"__help":void 0,...d}),b?a.jsx(wn,{icon:am,className:"components-checkbox-control__indeterminate",role:"presentation"}):null,p?a.jsx(wn,{icon:M0,className:"components-checkbox-control__checked",role:"presentation"}):null]}),n&&a.jsx("label",{className:"components-checkbox-control__label",htmlFor:z,children:n})]})})}const cst=e=>Xe("font-size:",ua("default.fontSize"),";font-family:inherit;appearance:none;border:1px solid transparent;cursor:pointer;background:none;text-align:start;text-decoration:",e==="a"?"none":void 0,";svg,path{fill:currentColor;}&:hover{color:",Ze.theme.accent,";}&:focus{box-shadow:none;outline:none;}&:focus-visible{box-shadow:0 0 0 var( --wp-admin-border-width-focus ) ",Ze.theme.accent,";outline:2px solid transparent;outline-offset:0;}",""),lst={name:"1bcj5ek",styles:"width:100%;display:block"},ust={name:"150ruhm",styles:"box-sizing:border-box;width:100%;display:block;margin:0;color:inherit"},dst=Xe("border:1px solid ",Ye.surfaceBorderColor,";",""),pst=Xe(">*:not( marquee )>*{border-bottom:1px solid ",Ye.surfaceBorderColor,";}>*:last-of-type>*:not( :focus ){border-bottom-color:transparent;}",""),s2=Ye.radiusSmall,fst=Xe("border-radius:",s2,";",""),bst=Xe("border-radius:",s2,";>*:first-of-type>*{border-top-left-radius:",s2,";border-top-right-radius:",s2,";}>*:last-of-type>*{border-bottom-left-radius:",s2,";border-bottom-right-radius:",s2,";}",""),pj=`calc(${Ye.fontSize} * ${Ye.fontLineHeightBase})`,hst=`calc((${Ye.controlHeight} - ${pj} - 2px) / 2)`,mst=`calc((${Ye.controlHeightSmall} - ${pj} - 2px) / 2)`,gst=`calc((${Ye.controlHeightLarge} - ${pj} - 2px) / 2)`,IY={small:Xe("padding:",mst," ",Ye.controlPaddingXSmall,"px;",""),medium:Xe("padding:",hst," ",Ye.controlPaddingX,"px;",""),large:Xe("padding:",gst," ",Ye.controlPaddingXLarge,"px;","")},Afe=x.createContext({size:"medium"}),vfe=()=>x.useContext(Afe);function Mst(e){const{as:t,className:n,onClick:o,role:r="listitem",size:s,...i}=vn(e,"Item"),{spacedAround:c,size:l}=vfe(),u=s||l,d=t||(typeof o<"u"?"button":"div"),p=ro(),f=x.useMemo(()=>p((d==="button"||d==="a")&&cst(d),IY[u]||IY.medium,ust,c&&fst,n),[d,n,p,u,c]),b=p(lst);return{as:d,className:f,onClick:o,wrapperClassName:b,role:r,...i}}function zst(e,t){const{role:n,wrapperClassName:o,...r}=Mst(e);return a.jsx("div",{role:n,className:o,children:a.jsx(mo,{...r,ref:t})})}const oO=Rn(zst,"Item");function Ost(e){const{className:t,isBordered:n=!1,isRounded:o=!0,isSeparated:r=!1,role:s="list",...i}=vn(e,"ItemGroup"),l=ro()(n&&dst,r&&pst,o&&bst,t);return{isBordered:n,className:l,role:s,isSeparated:r,...i}}function yst(e,t){const{isBordered:n,isSeparated:o,size:r,...s}=Ost(e),{size:i}=vfe(),u={spacedAround:!n&&!o,size:r||i};return a.jsx(Afe.Provider,{value:u,children:a.jsx(mo,{...s,ref:t})})}const tb=Rn(yst,"ItemGroup"),xfe=10,Ast=0,vst=5,DY=xfe;function U8(e){return Math.max(0,Math.min(100,e))}function xst(e,t,n,o=Ast){const r=e[t].position,s=Math.min(r,n),i=Math.max(r,n);return e.some(({position:c},l)=>l!==t&&(Math.abs(c-n)<o||s<c&&c<i))}function wst(e,t,n){const o=e.findIndex(i=>i.position>t),r={color:n,position:t},s=e.slice();return s.splice(o-1,0,r),s}function _st(e,t){return e.filter((n,o)=>o!==t)}function wfe(e,t,n){const o=e.slice();return o[t]=n,o}function HC(e,t,n){if(xst(e,t,n))return e;const o={...e[t],position:n};return wfe(e,t,o)}function _fe(e,t,n){const o={...e[t],color:n};return wfe(e,t,o)}function kst(e,t,n){const o=e.findIndex(r=>r.position===t);return _fe(e,o,n)}function kfe(e,t){if(!t)return;const{x:n,width:o}=t.getBoundingClientRect(),r=e-n;return Math.round(U8(r*100/o))}function Sfe({isOpen:e,position:t,color:n,...o}){const s=`components-custom-gradient-picker__control-point-button-description-${vt(Sfe)}`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{"aria-label":xe(m("Gradient control point at position %1$s%% with color code %2$s."),t,n),"aria-describedby":s,"aria-haspopup":"true","aria-expanded":e,__next40pxDefaultSize:!0,className:oe("components-custom-gradient-picker__control-point-button",{"is-active":e}),...o}),a.jsx(qn,{id:s,children:m("Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.")})]})}function Cfe({isRenderedInSidebar:e,className:t,...n}){const o=x.useMemo(()=>({placement:"bottom",offset:8,resize:!1}),[]),r=oe("components-custom-gradient-picker__control-point-dropdown",t);return a.jsx(ofe,{isRenderedInSidebar:e,popoverProps:o,className:r,...n})}function X8({disableRemove:e,disableAlpha:t,gradientPickerDomRef:n,ignoreMarkerPosition:o,value:r,onChange:s,onStartControlPointChange:i,onStopControlPointChange:c,__experimentalIsRenderedInSidebar:l}){const u=x.useRef(),d=b=>{if(u.current===void 0||n.current===null)return;const h=kfe(b.clientX,n.current),{initialPosition:g,index:z,significantMoveHappened:A}=u.current;!A&&Math.abs(g-h)>=vst&&(u.current.significantMoveHappened=!0),s(HC(r,z,h))},p=()=>{window&&window.removeEventListener&&u.current&&u.current.listenersActivated&&(window.removeEventListener("mousemove",d),window.removeEventListener("mouseup",p),c(),u.current.listenersActivated=!1)},f=x.useRef();return f.current=p,x.useEffect(()=>()=>{f.current?.()},[]),a.jsx(a.Fragment,{children:r.map((b,h)=>{const g=b?.position;return o!==g&&a.jsx(Cfe,{isRenderedInSidebar:l,onClose:c,renderToggle:({isOpen:z,onToggle:A})=>a.jsx(Sfe,{onClick:()=>{u.current&&u.current.significantMoveHappened||(z?c():i(),A())},onMouseDown:()=>{window&&window.addEventListener&&(u.current={initialPosition:g,index:h,significantMoveHappened:!1,listenersActivated:!0},i(),window.addEventListener("mousemove",d),window.addEventListener("mouseup",p))},onKeyDown:_=>{_.code==="ArrowLeft"?(_.stopPropagation(),s(HC(r,h,U8(b.position-DY)))):_.code==="ArrowRight"&&(_.stopPropagation(),s(HC(r,h,U8(b.position+DY))))},isOpen:z,position:b.position,color:b.color},h),renderContent:({onClose:z})=>a.jsxs($s,{paddingSize:"none",children:[a.jsx(lj,{enableAlpha:!t,color:b.color,onChange:A=>{s(_fe(r,h,an(A).toRgbString()))}}),!e&&r.length>2&&a.jsx(Ot,{className:"components-custom-gradient-picker__remove-control-point-wrapper",alignment:"center",children:a.jsx(Ce,{onClick:()=>{s(_st(r,h)),z()},variant:"link",children:m("Remove Control Point")})})]}),style:{left:`${b.position}%`,transform:"translateX( -50% )"}},h)})})}function Sst({value:e,onChange:t,onOpenInserter:n,onCloseInserter:o,insertPosition:r,disableAlpha:s,__experimentalIsRenderedInSidebar:i}){const[c,l]=x.useState(!1);return a.jsx(Cfe,{isRenderedInSidebar:i,className:"components-custom-gradient-picker__inserter",onClose:()=>{o()},renderToggle:({isOpen:u,onToggle:d})=>a.jsx(Ce,{__next40pxDefaultSize:!0,"aria-expanded":u,"aria-haspopup":"true",onClick:()=>{u?o():(l(!1),n()),d()},className:"components-custom-gradient-picker__insert-point-dropdown",icon:Fs}),renderContent:()=>a.jsx($s,{paddingSize:"none",children:a.jsx(lj,{enableAlpha:!s,onChange:u=>{c?t(kst(e,r,an(u).toRgbString())):(t(wst(e,r,an(u).toRgbString())),l(!0))}})}),style:r!==null?{left:`${r}%`,transform:"translateX( -50% )"}:void 0})}X8.InsertPoint=Sst;const Cst=(e,t)=>{switch(t.type){case"MOVE_INSERTER":if(e.id==="IDLE"||e.id==="MOVING_INSERTER")return{id:"MOVING_INSERTER",insertPosition:t.insertPosition};break;case"STOP_INSERTER_MOVE":if(e.id==="MOVING_INSERTER")return{id:"IDLE"};break;case"OPEN_INSERTER":if(e.id==="MOVING_INSERTER")return{id:"INSERTING_CONTROL_POINT",insertPosition:e.insertPosition};break;case"CLOSE_INSERTER":if(e.id==="INSERTING_CONTROL_POINT")return{id:"IDLE"};break;case"START_CONTROL_CHANGE":if(e.id==="IDLE")return{id:"MOVING_CONTROL_POINT"};break;case"STOP_CONTROL_CHANGE":if(e.id==="MOVING_CONTROL_POINT")return{id:"IDLE"};break}return e},qst={id:"IDLE"};function qfe({background:e,hasGradient:t,value:n,onChange:o,disableInserter:r=!1,disableAlpha:s=!1,__experimentalIsRenderedInSidebar:i=!1}){const c=x.useRef(null),[l,u]=x.useReducer(Cst,qst),d=h=>{if(!c.current)return;const g=kfe(h.clientX,c.current);if(n.some(({position:z})=>Math.abs(g-z)<xfe)){l.id==="MOVING_INSERTER"&&u({type:"STOP_INSERTER_MOVE"});return}u({type:"MOVE_INSERTER",insertPosition:g})},p=()=>{u({type:"STOP_INSERTER_MOVE"})},f=l.id==="MOVING_INSERTER",b=l.id==="INSERTING_CONTROL_POINT";return a.jsxs("div",{className:oe("components-custom-gradient-picker__gradient-bar",{"has-gradient":t}),onMouseEnter:d,onMouseMove:d,onMouseLeave:p,children:[a.jsx("div",{className:"components-custom-gradient-picker__gradient-bar-background",style:{background:e,opacity:t?1:.4}}),a.jsxs("div",{ref:c,className:"components-custom-gradient-picker__markers-container",children:[!r&&(f||b)&&a.jsx(X8.InsertPoint,{__experimentalIsRenderedInSidebar:i,disableAlpha:s,insertPosition:l.insertPosition,value:n,onChange:o,onOpenInserter:()=>{u({type:"OPEN_INSERTER"})},onCloseInserter:()=>{u({type:"CLOSE_INSERTER"})}}),a.jsx(X8,{__experimentalIsRenderedInSidebar:i,disableAlpha:s,disableRemove:r,gradientPickerDomRef:c,ignoreMarkerPosition:b?l.insertPosition:void 0,value:n,onChange:o,onStartControlPointChange:()=>{u({type:"START_CONTROL_CHANGE"})},onStopControlPointChange:()=>{u({type:"STOP_CONTROL_CHANGE"})}})]})]})}var NA={},FY;function Rst(){if(FY)return NA;FY=1;var e=e||{};e.stringify=function(){var t={"visit_linear-gradient":function(n){return t.visit_gradient(n)},"visit_repeating-linear-gradient":function(n){return t.visit_gradient(n)},"visit_radial-gradient":function(n){return t.visit_gradient(n)},"visit_repeating-radial-gradient":function(n){return t.visit_gradient(n)},visit_gradient:function(n){var o=t.visit(n.orientation);return o&&(o+=", "),n.type+"("+o+t.visit(n.colorStops)+")"},visit_shape:function(n){var o=n.value,r=t.visit(n.at),s=t.visit(n.style);return s&&(o+=" "+s),r&&(o+=" at "+r),o},"visit_default-radial":function(n){var o="",r=t.visit(n.at);return r&&(o+=r),o},"visit_extent-keyword":function(n){var o=n.value,r=t.visit(n.at);return r&&(o+=" at "+r),o},"visit_position-keyword":function(n){return n.value},visit_position:function(n){return t.visit(n.value.x)+" "+t.visit(n.value.y)},"visit_%":function(n){return n.value+"%"},visit_em:function(n){return n.value+"em"},visit_px:function(n){return n.value+"px"},visit_literal:function(n){return t.visit_color(n.value,n)},visit_hex:function(n){return t.visit_color("#"+n.value,n)},visit_rgb:function(n){return t.visit_color("rgb("+n.value.join(", ")+")",n)},visit_rgba:function(n){return t.visit_color("rgba("+n.value.join(", ")+")",n)},visit_color:function(n,o){var r=n,s=t.visit(o.length);return s&&(r+=" "+s),r},visit_angular:function(n){return n.value+"deg"},visit_directional:function(n){return"to "+n.value},visit_array:function(n){var o="",r=n.length;return n.forEach(function(s,i){o+=t.visit(s),i<r-1&&(o+=", ")}),o},visit:function(n){if(!n)return"";var o="";if(n instanceof Array)return t.visit_array(n,o);if(n.type){var r=t["visit_"+n.type];if(r)return r(n);throw Error("Missing visitor visit_"+n.type)}else throw Error("Invalid node.")}};return function(n){return t.visit(n)}}();var e=e||{};return e.parse=function(){var t={linearGradient:/^(\-(webkit|o|ms|moz)\-)?(linear\-gradient)/i,repeatingLinearGradient:/^(\-(webkit|o|ms|moz)\-)?(repeating\-linear\-gradient)/i,radialGradient:/^(\-(webkit|o|ms|moz)\-)?(radial\-gradient)/i,repeatingRadialGradient:/^(\-(webkit|o|ms|moz)\-)?(repeating\-radial\-gradient)/i,sideOrCorner:/^to (left (top|bottom)|right (top|bottom)|left|right|top|bottom)/i,extentKeywords:/^(closest\-side|closest\-corner|farthest\-side|farthest\-corner|contain|cover)/,positionKeywords:/^(left|center|right|top|bottom)/i,pixelValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))px/,percentageValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))\%/,emValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))em/,angleValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))deg/,startCall:/^\(/,endCall:/^\)/,comma:/^,/,hexColor:/^\#([0-9a-fA-F]+)/,literalColor:/^([a-zA-Z]+)/,rgbColor:/^rgb/i,rgbaColor:/^rgba/i,number:/^(([0-9]*\.[0-9]+)|([0-9]+\.?))/},n="";function o(F){var X=new Error(n+": "+F);throw X.source=n,X}function r(){var F=s();return n.length>0&&o("Invalid input not EOF"),F}function s(){return M(i)}function i(){return c("linear-gradient",t.linearGradient,u)||c("repeating-linear-gradient",t.repeatingLinearGradient,u)||c("radial-gradient",t.radialGradient,f)||c("repeating-radial-gradient",t.repeatingRadialGradient,f)}function c(F,X,Z){return l(X,function(V){var ee=Z();return ee&&(P(t.comma)||o("Missing comma before color stops")),{type:F,orientation:ee,colorStops:M(y)}})}function l(F,X){var Z=P(F);if(Z){P(t.startCall)||o("Missing (");var V=X(Z);return P(t.endCall)||o("Missing )"),V}}function u(){return d()||p()}function d(){return I("directional",t.sideOrCorner,1)}function p(){return I("angular",t.angleValue,1)}function f(){var F,X=b(),Z;return X&&(F=[],F.push(X),Z=n,P(t.comma)&&(X=b(),X?F.push(X):n=Z)),F}function b(){var F=h()||g();if(F)F.at=A();else{var X=z();if(X){F=X;var Z=A();Z&&(F.at=Z)}else{var V=_();V&&(F={type:"default-radial",at:V})}}return F}function h(){var F=I("shape",/^(circle)/i,0);return F&&(F.style=j()||z()),F}function g(){var F=I("shape",/^(ellipse)/i,0);return F&&(F.style=B()||z()),F}function z(){return I("extent-keyword",t.extentKeywords,1)}function A(){if(I("position",/^at/,0)){var F=_();return F||o("Missing positioning value"),F}}function _(){var F=v();if(F.x||F.y)return{type:"position",value:F}}function v(){return{x:B(),y:B()}}function M(F){var X=F(),Z=[];if(X)for(Z.push(X);P(t.comma);)X=F(),X?Z.push(X):o("One extra comma");return Z}function y(){var F=k();return F||o("Expected color definition"),F.length=B(),F}function k(){return C()||T()||R()||S()}function S(){return I("literal",t.literalColor,0)}function C(){return I("hex",t.hexColor,1)}function R(){return l(t.rgbColor,function(){return{type:"rgb",value:M(E)}})}function T(){return l(t.rgbaColor,function(){return{type:"rgba",value:M(E)}})}function E(){return P(t.number)[1]}function B(){return I("%",t.percentageValue,1)||N()||j()}function N(){return I("position-keyword",t.positionKeywords,1)}function j(){return I("px",t.pixelValue,1)||I("em",t.emValue,1)}function I(F,X,Z){var V=P(X);if(V)return{type:F,value:V[Z]}}function P(F){var X,Z;return Z=/^[\n\r\t\s]+/.exec(n),Z&&$(Z[0].length),X=F.exec(n),X&&$(X[0].length),X}function $(F){n=n.substr(F)}return function(F){return n=F.toString(),r()}}(),NA.parse=e.parse,NA.stringify=e.stringify,NA}var Tst=Rst();const $Y=Zr(Tst),VY="linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%)",Est=180,Rfe={type:"angular",value:"90"},Wst=[{value:"linear-gradient",label:m("Linear")},{value:"radial-gradient",label:m("Radial")}],Nst={top:0,"top right":45,"right top":45,right:90,"right bottom":135,"bottom right":135,bottom:180,"bottom left":225,"left bottom":225,left:270,"top left":315,"left top":315};function Bst({type:e,value:t}){return e==="literal"?t:e==="hex"?`#${t}`:`${e}(${t.join(",")})`}function Lst(e){if(!e)return"";const{value:t,type:n}=e;return`${t}${n}`}function Pst({type:e,value:t,length:n}){return`${Bst({type:e,value:t})} ${Lst(n)}`}function jst(e){if(!(Array.isArray(e)||!e||e.type!=="angular"))return`${e.value}deg`}function _z({type:e,orientation:t,colorStops:n}){const o=jst(t),r=n.sort((s,i)=>{const c=l=>l?.length?.value===void 0?0:parseInt(l.length.value);return c(s)-c(i)}).map(Pst);return`${e}(${[o,...r].filter(Boolean).join(",")})`}Xs([Gs]);function Ist(e){return _z({type:"linear-gradient",orientation:Rfe,colorStops:e.colorStops})}function Dst(e){return e.length===void 0||e.length.type!=="%"}function Fst(e){let t,n=!!e;const o=e??VY;try{t=$Y.parse(o)[0]}catch(r){console.warn("wp.components.CustomGradientPicker failed to parse the gradient with error",r),t=$Y.parse(VY)[0],n=!1}if(!Array.isArray(t.orientation)&&t.orientation?.type==="directional"&&(t.orientation={type:"angular",value:Nst[t.orientation.value].toString()}),t.colorStops.some(Dst)){const{colorStops:r}=t,s=100/(r.length-1);r.forEach((i,c)=>{i.length={value:`${s*c}`,type:"%"}})}return{gradientAST:t,hasGradient:n}}function $st(e,t){return{...e,colorStops:t.map(({position:n,color:o})=>{const{r,g:s,b:i,a:c}=an(o).toRgb();return{length:{type:"%",value:n?.toString()},type:c<1?"rgba":"rgb",value:c<1?[`${r}`,`${s}`,`${i}`,`${c}`]:[`${r}`,`${s}`,`${i}`]}})}}function Vst(e){switch(e.type){case"hex":return`#${e.value}`;case"literal":return e.value;case"rgb":case"rgba":return`${e.type}(${e.value.join(",")})`;default:return"transparent"}}const Hst=He(tu,{target:"e10bzpgi1"})({name:"1gvx10y",styles:"flex-grow:5"}),Ust=He(tu,{target:"e10bzpgi0"})({name:"1gvx10y",styles:"flex-grow:5"}),Xst=({gradientAST:e,hasGradient:t,onChange:n})=>{var o;const r=(o=e?.orientation?.value)!==null&&o!==void 0?o:Est,s=i=>{n(_z({...e,orientation:{type:"angular",value:`${i}`}}))};return a.jsx(Stt,{onChange:s,value:t?r:""})},Gst=({gradientAST:e,hasGradient:t,onChange:n})=>{const{type:o}=e,r=()=>{n(_z({...e,orientation:e.orientation?void 0:Rfe,type:"linear-gradient"}))},s=()=>{const{orientation:c,...l}=e;n(_z({...l,type:"radial-gradient"}))},i=c=>{c==="linear-gradient"&&r(),c==="radial-gradient"&&s()};return a.jsx(jn,{__nextHasNoMarginBottom:!0,className:"components-custom-gradient-picker__type-picker",label:m("Type"),labelPosition:"top",onChange:i,options:Wst,size:"__unstable-large",value:t?o:void 0})};function Kst({value:e,onChange:t,enableAlpha:n=!0,__experimentalIsRenderedInSidebar:o=!1}){const{gradientAST:r,hasGradient:s}=Fst(e),i=Ist(r),c=r.colorStops.map(l=>({color:Vst(l),position:parseInt(l.length.value)}));return a.jsxs(dt,{spacing:4,className:"components-custom-gradient-picker",children:[a.jsx(qfe,{__experimentalIsRenderedInSidebar:o,disableAlpha:!n,background:i,hasGradient:s,value:c,onChange:l=>{t(_z($st(r,l)))}}),a.jsxs(Yo,{gap:3,className:"components-custom-gradient-picker__ui-line",children:[a.jsx(Hst,{children:a.jsx(Gst,{gradientAST:r,hasGradient:s,onChange:t})}),a.jsx(Ust,{children:r.type==="linear-gradient"&&a.jsx(Xst,{gradientAST:r,hasGradient:s,onChange:t})})]})]})}const Yst=e=>Array.isArray(e.gradients)&&!("gradient"in e),Zst=e=>e.length>0&&e.every(t=>Yst(t));function Tfe({className:e,clearGradient:t,gradients:n,onChange:o,value:r,...s}){const i=x.useMemo(()=>n.map(({gradient:c,name:l,slug:u},d)=>a.jsx(G0.Option,{value:c,isSelected:r===c,tooltipText:l||xe(m("Gradient code: %s"),c),style:{color:"rgba( 0,0,0,0 )",background:c},onClick:r===c?t:()=>o(c,d),"aria-label":l?xe(m("Gradient: %s"),l):xe(m("Gradient code: %s"),c)},u)),[n,r,o,t]);return a.jsx(G0.OptionGroup,{className:e,options:i,...s})}function Efe({className:e,clearGradient:t,gradients:n,onChange:o,value:r,headingLevel:s}){const i=vt(Efe);return a.jsx(dt,{spacing:3,className:e,children:n.map(({name:c,gradients:l},u)=>{const d=`color-palette-${i}-${u}`;return a.jsxs(dt,{spacing:2,children:[a.jsx(Qpe,{level:s,id:d,children:c}),a.jsx(Tfe,{clearGradient:t,gradients:l,onChange:p=>o(p,u),value:r,"aria-labelledby":d})]},u)})})}function Qst(e){const{asButtons:t,loop:n,actions:o,headingLevel:r,"aria-label":s,"aria-labelledby":i,...c}=e,l=Zst(e.gradients)?a.jsx(Efe,{headingLevel:r,...c}):a.jsx(Tfe,{...c});let u;if(t)u={asButtons:!0};else{const d={asButtons:!1,loop:n};s?u={...d,"aria-label":s}:i?u={...d,"aria-labelledby":i}:u={...d,"aria-label":m("Custom color picker.")}}return a.jsx(G0,{...u,actions:o,options:l})}function Jst({className:e,gradients:t=[],onChange:n,value:o,clearable:r=!0,enableAlpha:s=!0,disableCustomGradients:i=!1,__experimentalIsRenderedInSidebar:c,headingLevel:l=2,...u}){const d=x.useCallback(()=>n(void 0),[n]);return a.jsxs(dt,{spacing:t.length?4:0,children:[!i&&a.jsx(Kst,{__experimentalIsRenderedInSidebar:c,enableAlpha:s,value:o,onChange:n}),(t.length>0||r)&&a.jsx(Qst,{...u,className:e,clearGradient:d,gradients:t,onChange:n,value:o,actions:r&&!i&&a.jsx(G0.ButtonAction,{onClick:d,accessibleWhenDisabled:!0,disabled:!o,children:m("Clear")}),headingLevel:l})]})}const eit=()=>{},tit=["menuitem","menuitemradio","menuitemcheckbox"];function nit(e,t,n){const o=e+n;return o<0?t+o:o>=t?o-t:o}class oit extends x.Component{constructor(t){super(t),this.onKeyDown=this.onKeyDown.bind(this),this.bindContainer=this.bindContainer.bind(this),this.getFocusableContext=this.getFocusableContext.bind(this),this.getFocusableIndex=this.getFocusableIndex.bind(this)}componentDidMount(){this.container&&this.container.addEventListener("keydown",this.onKeyDown)}componentWillUnmount(){this.container&&this.container.removeEventListener("keydown",this.onKeyDown)}bindContainer(t){const{forwardedRef:n}=this.props;this.container=t,typeof n=="function"?n(t):n&&"current"in n&&(n.current=t)}getFocusableContext(t){if(!this.container)return null;const{onlyBrowserTabstops:n}=this.props,r=(n?Xr.tabbable:Xr.focusable).find(this.container),s=this.getFocusableIndex(r,t);return s>-1&&t?{index:s,target:t,focusables:r}:null}getFocusableIndex(t,n){return t.indexOf(n)}onKeyDown(t){this.props.onKeyDown&&this.props.onKeyDown(t);const{getFocusableContext:n}=this,{cycle:o=!0,eventToOffset:r,onNavigate:s=eit,stopNavigationEvents:i}=this.props,c=r(t);if(c!==void 0&&i){t.stopImmediatePropagation();const b=t.target?.getAttribute("role");!!b&&tit.includes(b)&&t.preventDefault()}if(!c)return;const l=t.target?.ownerDocument?.activeElement;if(!l)return;const u=n(l);if(!u)return;const{index:d,focusables:p}=u,f=o?nit(d,p.length,c):d+c;f>=0&&f<p.length&&(p[f].focus(),s(f,p[f]),t.code==="Tab"&&t.preventDefault())}render(){const{children:t,stopNavigationEvents:n,eventToOffset:o,onNavigate:r,onKeyDown:s,cycle:i,onlyBrowserTabstops:c,forwardedRef:l,...u}=this.props;return a.jsx("div",{ref:this.bindContainer,...u,children:t})}}const Wfe=(e,t)=>a.jsx(oit,{...e,forwardedRef:t});Wfe.displayName="NavigableContainer";const rit=x.forwardRef(Wfe);function sit({role:e="menu",orientation:t="vertical",...n},o){const r=s=>{const{code:i}=s;let c=["ArrowDown"],l=["ArrowUp"];if(t==="horizontal"&&(c=["ArrowRight"],l=["ArrowLeft"]),t==="both"&&(c=["ArrowRight","ArrowDown"],l=["ArrowLeft","ArrowUp"]),c.includes(i))return 1;if(l.includes(i))return-1;if(["ArrowDown","ArrowUp","ArrowLeft","ArrowRight"].includes(i))return 0};return a.jsx(rit,{ref:o,stopNavigationEvents:!0,onlyBrowserTabstops:!1,role:e,"aria-orientation":e!=="presentation"&&(t==="vertical"||t==="horizontal")?t:void 0,eventToOffset:r,...n})}const pm=x.forwardRef(sit);function UC(e={},t={}){const n={...e,...t};return t.className&&e.className&&(n.className=oe(t.className,e.className)),n}function HY(e){return typeof e=="function"}function iit(e){const{children:t,className:n,controls:o,icon:r=mde,label:s,popoverProps:i,toggleProps:c,menuProps:l,disableOpenOnArrowDown:u=!1,text:d,noIcons:p,open:f,defaultOpen:b,onToggle:h,variant:g}=vn(e,"DropdownMenu");if(!o?.length&&!HY(t))return null;let z;o?.length&&(z=o,Array.isArray(z[0])||(z=[o]));const A=UC({className:"components-dropdown-menu__popover",variant:g},i);return a.jsx(so,{className:n,popoverProps:A,renderToggle:({isOpen:_,onToggle:v})=>{var M;const y=R=>{u||!_&&R.code==="ArrowDown"&&(R.preventDefault(),v())},{as:k=Ce,...S}=c??{},C=UC({className:oe("components-dropdown-menu__toggle",{"is-opened":_})},S);return a.jsx(k,{...C,icon:r,onClick:R=>{v(),C.onClick&&C.onClick(R)},onKeyDown:R=>{y(R),C.onKeyDown&&C.onKeyDown(R)},"aria-haspopup":"true","aria-expanded":_,label:s,text:d,showTooltip:(M=c?.showTooltip)!==null&&M!==void 0?M:!0,children:C.children})},renderContent:_=>{const v=UC({"aria-label":s,className:oe("components-dropdown-menu__menu",{"no-icons":p})},l);return a.jsxs(pm,{...v,role:"menu",children:[HY(t)?t(_):null,z?.flatMap((M,y)=>M.map((k,S)=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:C=>{C.stopPropagation(),_.onClose(),k.onClick&&k.onClick()},className:oe("components-dropdown-menu__menu-item",{"has-separator":y>0&&S===0,"is-active":k.isActive,"is-icon-only":!k.title}),icon:k.icon,label:k.label,"aria-checked":k.role==="menuitemcheckbox"||k.role==="menuitemradio"?k.isActive:void 0,role:k.role==="menuitemcheckbox"||k.role==="menuitemradio"?k.role:"menuitem",accessibleWhenDisabled:!0,disabled:k.isDisabled,children:k.title},[y,S].join())))]})},open:f,defaultOpen:b,onToggle:h})}const c0=ZL(iit,"DropdownMenu"),ait=({__next40pxDefaultSize:e})=>!e&&Xe("height:28px;padding-left:",Je(1),";padding-right:",Je(1),";",""),cit=He(Yo,{target:"evuatpg0"})("height:38px;padding-left:",Je(2),";padding-right:",Je(2),";",ait,";");function lit(e,t){const{value:n,isExpanded:o,instanceId:r,selectedSuggestionIndex:s,className:i,onChange:c,onFocus:l,onBlur:u,...d}=e,[p,f]=x.useState(!1),b=n?n.length+1:0,h=A=>{c&&c({value:A.target.value})},g=A=>{f(!0),l?.(A)},z=A=>{f(!1),u?.(A)};return a.jsx("input",{ref:t,id:`components-form-token-input-${r}`,type:"text",...d,value:n||"",onChange:h,onFocus:g,onBlur:z,size:b,className:oe(i,"components-form-token-field__input"),autoComplete:"off",role:"combobox","aria-expanded":o,"aria-autocomplete":"list","aria-owns":o?`components-form-token-suggestions-${r}`:void 0,"aria-activedescendant":p&&s!==-1&&o?`components-form-token-suggestions-${r}-${s}`:void 0,"aria-describedby":`components-form-token-suggestions-howto-${r}`})}const Nfe=x.forwardRef(lit),uit=e=>{e.preventDefault()};function Bfe({selectedIndex:e,scrollIntoView:t,match:n,onHover:o,onSelect:r,suggestions:s=[],displayTransform:i,instanceId:c,__experimentalRenderItem:l}){const u=Mn(b=>(e>-1&&t&&b.children[e]&&b.children[e].scrollIntoView({behavior:"instant",block:"nearest",inline:"nearest"}),()=>{}),[e,t]),d=b=>()=>{o?.(b)},p=b=>()=>{r?.(b)},f=b=>{const h=i(n).toLocaleLowerCase();if(h.length===0)return null;const g=i(b),z=g.toLocaleLowerCase().indexOf(h);return{suggestionBeforeMatch:g.substring(0,z),suggestionMatch:g.substring(z,z+h.length),suggestionAfterMatch:g.substring(z+h.length)}};return a.jsxs("ul",{ref:u,className:"components-form-token-field__suggestions-list",id:`components-form-token-suggestions-${c}`,role:"listbox",children:[s.map((b,h)=>{const g=f(b),z=h===e,A=typeof b=="object"&&b?.disabled,_=typeof b=="object"&&"value"in b?b?.value:i(b),v=oe("components-form-token-field__suggestion",{"is-selected":z});let M;return typeof l=="function"?M=l({item:b}):g?M=a.jsxs("span",{"aria-label":i(b),children:[g.suggestionBeforeMatch,a.jsx("strong",{className:"components-form-token-field__suggestion-match",children:g.suggestionMatch}),g.suggestionAfterMatch]}):M=i(b),a.jsx("li",{id:`components-form-token-suggestions-${c}-${h}`,role:"option",className:v,onMouseDown:uit,onClick:p(b),onMouseEnter:d(b),"aria-selected":h===e,"aria-disabled":A,children:M},_)}),s.length===0&&a.jsx("li",{className:"components-form-token-field__suggestion is-empty",children:m("No items found")})]})}const dit=Or(e=>t=>{const[n,o]=x.useState(void 0),r=x.useCallback(s=>o(()=>s?.handleFocusOutside?s.handleFocusOutside.bind(s):void 0),[]);return a.jsx("div",{...A0e(n),children:a.jsx(e,{ref:r,...t})})},"withFocusOutside"),pit=tp` + );}`,"")},l0t=28,u0t=12,d0t=Xe("width:",l0t*6+u0t*5,"px;>div:first-of-type>",gh,"{margin-bottom:0;}&& ",gh,"+button:not( .has-text ){min-width:24px;padding:0;}",""),p0t=Xe("",""),f0t=Xe("",""),b0t=Xe("justify-content:center;width:100%;&&{border-top:",Ye.borderWidth," solid ",Ze.gray[400],";border-top-left-radius:0;border-top-right-radius:0;}",""),h0t=()=>Xe("flex:1 1 60%;",Go({marginRight:Je(3)})(),";",""),oc={px:{value:"px",label:"px",a11yLabel:m("Pixels (px)"),step:1},"%":{value:"%",label:"%",a11yLabel:m("Percent (%)"),step:.1},em:{value:"em",label:"em",a11yLabel:We("ems","Relative to parent font size (em)"),step:.01},rem:{value:"rem",label:"rem",a11yLabel:We("rems","Relative to root font size (rem)"),step:.01},vw:{value:"vw",label:"vw",a11yLabel:m("Viewport width (vw)"),step:.1},vh:{value:"vh",label:"vh",a11yLabel:m("Viewport height (vh)"),step:.1},vmin:{value:"vmin",label:"vmin",a11yLabel:m("Viewport smallest dimension (vmin)"),step:.1},vmax:{value:"vmax",label:"vmax",a11yLabel:m("Viewport largest dimension (vmax)"),step:.1},ch:{value:"ch",label:"ch",a11yLabel:m("Width of the zero (0) character (ch)"),step:.01},ex:{value:"ex",label:"ex",a11yLabel:m("x-height of the font (ex)"),step:.01},cm:{value:"cm",label:"cm",a11yLabel:m("Centimeters (cm)"),step:.001},mm:{value:"mm",label:"mm",a11yLabel:m("Millimeters (mm)"),step:.1},in:{value:"in",label:"in",a11yLabel:m("Inches (in)"),step:.001},pc:{value:"pc",label:"pc",a11yLabel:m("Picas (pc)"),step:1},pt:{value:"pt",label:"pt",a11yLabel:m("Points (pt)"),step:1},svw:{value:"svw",label:"svw",a11yLabel:m("Small viewport width (svw)"),step:.1},svh:{value:"svh",label:"svh",a11yLabel:m("Small viewport height (svh)"),step:.1},svi:{value:"svi",label:"svi",a11yLabel:m("Small viewport width or height (svi)"),step:.1},svb:{value:"svb",label:"svb",a11yLabel:m("Small viewport width or height (svb)"),step:.1},svmin:{value:"svmin",label:"svmin",a11yLabel:m("Small viewport smallest dimension (svmin)"),step:.1},lvw:{value:"lvw",label:"lvw",a11yLabel:m("Large viewport width (lvw)"),step:.1},lvh:{value:"lvh",label:"lvh",a11yLabel:m("Large viewport height (lvh)"),step:.1},lvi:{value:"lvi",label:"lvi",a11yLabel:m("Large viewport width or height (lvi)"),step:.1},lvb:{value:"lvb",label:"lvb",a11yLabel:m("Large viewport width or height (lvb)"),step:.1},lvmin:{value:"lvmin",label:"lvmin",a11yLabel:m("Large viewport smallest dimension (lvmin)"),step:.1},dvw:{value:"dvw",label:"dvw",a11yLabel:m("Dynamic viewport width (dvw)"),step:.1},dvh:{value:"dvh",label:"dvh",a11yLabel:m("Dynamic viewport height (dvh)"),step:.1},dvi:{value:"dvi",label:"dvi",a11yLabel:m("Dynamic viewport width or height (dvi)"),step:.1},dvb:{value:"dvb",label:"dvb",a11yLabel:m("Dynamic viewport width or height (dvb)"),step:.1},dvmin:{value:"dvmin",label:"dvmin",a11yLabel:m("Dynamic viewport smallest dimension (dvmin)"),step:.1},dvmax:{value:"dvmax",label:"dvmax",a11yLabel:m("Dynamic viewport largest dimension (dvmax)"),step:.1},svmax:{value:"svmax",label:"svmax",a11yLabel:m("Small viewport largest dimension (svmax)"),step:.1},lvmax:{value:"lvmax",label:"lvmax",a11yLabel:m("Large viewport largest dimension (lvmax)"),step:.1}},Ox=Object.values(oc),ife=[oc.px,oc["%"],oc.em,oc.rem,oc.vw,oc.vh],m0t=oc.px;function afe(e,t,n){const o=t?`${e??""}${t}`:e;return yo(o,n)}function uj(e){return Array.isArray(e)&&!!e.length}function yo(e,t=Ox){let n,o;if(typeof e<"u"||e===null){n=`${e}`.trim();const c=parseFloat(n);o=isFinite(c)?c:void 0}const s=n?.match(/[\d.\-\+]*\s*(.*)/)?.[1]?.toLowerCase();let i;return uj(t)?i=t.find(l=>l.value===s)?.value:i=m0t.value,[o,i]}function g0t(e,t,n,o){const[r,s]=yo(e,t),i=r??n;let c=s||o;return!c&&uj(t)&&(c=t[0].value),[i,c]}function M0t(e=[],t){return Array.isArray(t)?t.filter(n=>e.includes(n.value)):[]}const U1=({units:e=Ox,availableUnits:t=[],defaultValues:n})=>{const o=M0t(t,e);return n&&o.forEach((r,s)=>{if(n[r.value]){const[i]=yo(n[r.value]);o[s].default=i}}),o};function z0t(e,t,n=Ox){const o=Array.isArray(n)?[...n]:[],[,r]=afe(e,t,Ox);return r&&!o.some(s=>s.value===r)&&oc[r]&&o.unshift(oc[r]),o}function O0t(e){const{border:t,className:n,colors:o=[],enableAlpha:r=!1,enableStyle:s=!0,onChange:i,previousStyleSelection:c,size:l="default",__experimentalIsRenderedInSidebar:u=!1,...d}=vn(e,"BorderControlDropdown"),[p]=yo(t?.width),f=p===0,b=S=>{const C=t?.style==="none"?c:t?.style,R=f&&S?"1px":t?.width;i({color:S,style:C,width:R})},h=S=>{const C=f&&S?"1px":t?.width;i({...t,style:S,width:C})},g=()=>{i({...t,color:void 0,style:void 0})},z=ro(),A=x.useMemo(()=>z(i0t,n),[n,z]),_=x.useMemo(()=>z(f0t),[z]),v=x.useMemo(()=>z(c0t(t,l)),[t,z,l]),M=x.useMemo(()=>z(d0t),[z]),y=x.useMemo(()=>z(p0t),[z]),k=x.useMemo(()=>z(b0t),[z]);return{...d,border:t,className:A,colors:o,enableAlpha:r,enableStyle:s,indicatorClassName:_,indicatorWrapperClassName:v,onColorChange:b,onStyleChange:h,onReset:g,popoverContentClassName:y,popoverControlsClassName:M,resetButtonClassName:k,size:l,__experimentalIsRenderedInSidebar:u}}const RA=e=>e.replace(/^var\((.+)\)$/,"$1"),y0t=(e,t)=>{if(!(!e||!t)){if(efe(t)){let n;return t.some(o=>o.colors.some(r=>r.color===e?(n=r,!0):!1)),n}return t.find(n=>n.color===e)}},A0t=(e,t,n,o)=>{if(o){if(t){const r=RA(t.color);return n?xe(m('Border color and style picker. The currently selected color is called "%1$s" and has a value of "%2$s". The currently selected style is "%3$s".'),t.name,r,n):xe(m('Border color and style picker. The currently selected color is called "%1$s" and has a value of "%2$s".'),t.name,r)}if(e){const r=RA(e);return n?xe(m('Border color and style picker. The currently selected color has a value of "%1$s". The currently selected style is "%2$s".'),r,n):xe(m('Border color and style picker. The currently selected color has a value of "%s".'),r)}return m("Border color and style picker.")}return t?xe(m('Border color picker. The currently selected color is called "%1$s" and has a value of "%2$s".'),t.name,RA(t.color)):e?xe(m('Border color picker. The currently selected color has a value of "%s".'),RA(e)):m("Border color picker.")},v0t=(e,t)=>{const{__experimentalIsRenderedInSidebar:n,border:o,colors:r,disableCustomColors:s,enableAlpha:i,enableStyle:c,indicatorClassName:l,indicatorWrapperClassName:u,isStyleSettable:d,onReset:p,onColorChange:f,onStyleChange:b,popoverContentClassName:h,popoverControlsClassName:g,resetButtonClassName:z,size:A,__unstablePopoverProps:_,...v}=O0t(e),{color:M,style:y}=o||{},k=y0t(M,r),S=A0t(M,k,y,c),C=M||y&&y!=="none",R=n?"bottom left":void 0,T=({onToggle:B})=>a.jsx(Ce,{onClick:B,variant:"tertiary","aria-label":S,tooltipPosition:R,label:m("Border color and style picker"),showTooltip:!0,__next40pxDefaultSize:A==="__unstable-large",children:a.jsx("span",{className:u,children:a.jsx(eb,{className:l,colorValue:M})})}),E=({onClose:B})=>a.jsxs(a.Fragment,{children:[a.jsx($s,{paddingSize:"medium",children:a.jsxs(dt,{className:g,spacing:6,children:[a.jsx(Gw,{className:h,value:M,onChange:f,colors:r,disableCustomColors:s,__experimentalIsRenderedInSidebar:n,clearable:!1,enableAlpha:i}),c&&d&&a.jsx(Qnt,{label:m("Style"),value:y,onChange:b})]})}),C&&a.jsx($s,{paddingSize:"none",children:a.jsx(Ce,{className:z,variant:"tertiary",onClick:()=>{p(),B()},__next40pxDefaultSize:!0,children:m("Reset")})})]});return a.jsx(so,{renderToggle:T,renderContent:E,popoverProps:{..._},...v,ref:t})},x0t=Rn(v0t,"BorderControlDropdown");function w0t({className:e,isUnitSelectTabbable:t=!0,onChange:n,size:o="default",unit:r="px",units:s=ife,...i},c){if(!uj(s)||s?.length===1)return a.jsx(Jrt,{className:"components-unit-control__unit-label",selectSize:o,children:r});const l=d=>{const{value:p}=d.target,f=s.find(b=>b.value===p);n?.(p,{event:d,data:f})},u=oe("components-unit-control__select",e);return a.jsx(sfe,{ref:c,className:u,onChange:l,selectSize:o,tabIndex:t?void 0:-1,value:r,...i,children:s.map(d=>a.jsx("option",{value:d.value,children:d.label},d.value))})}const _0t=x.forwardRef(w0t);function k0t(e,t){const{__unstableStateReducer:n,autoComplete:o="off",children:r,className:s,disabled:i=!1,disableUnits:c=!1,isPressEnterToChange:l=!1,isResetValueOnUnitChange:u=!1,isUnitSelectTabbable:d=!0,label:p,onChange:f,onUnitChange:b,size:h="default",unit:g,units:z=ife,value:A,onFocus:_,__shouldNotWarnDeprecated36pxSize:v,...M}=sp(e);q1({componentName:"UnitControl",__next40pxDefaultSize:M.__next40pxDefaultSize,size:h,__shouldNotWarnDeprecated36pxSize:v}),"unit"in e&&Ke("UnitControl unit prop",{since:"5.6",hint:"The unit should be provided within the `value` prop.",version:"6.2"});const y=A??void 0,[k,S]=x.useMemo(()=>{const Z=z0t(y,g,z),[{value:V=""}={},...ee]=Z,te=ee.reduce((J,{value:ue})=>{const ce=xz(ue?.substring(0,1)||"");return J.includes(ce)?J:`${J}|${ce}`},xz(V.substring(0,1)));return[Z,new RegExp(`^(?:${te})$`,"i")]},[y,g,z]),[C,R]=afe(y,g,k),[T,E]=zw(k.length===1?k[0].value:g,{initial:R,fallback:""});x.useEffect(()=>{R!==void 0&&E(R)},[R,E]);const B=oe("components-unit-control","components-unit-control-wrapper",s),N=(Z,V)=>{if(Z===""||typeof Z>"u"||Z===null){f?.("",V);return}const ee=g0t(Z,k,C,T).join("");f?.(ee,V)},j=(Z,V)=>{const{data:ee}=V;let te=`${C??""}${Z}`;u&&ee?.default!==void 0&&(te=`${ee.default}${Z}`),f?.(te,V),b?.(Z,V),E(Z)};let I;!c&&d&&k.length&&(I=Z=>{M.onKeyDown?.(Z),!Z.metaKey&&!Z.ctrlKey&&S.test(Z.key)&&P.current?.focus()});const P=x.useRef(null),$=c?null:a.jsx(_0t,{ref:P,"aria-label":m("Select unit"),disabled:i,isUnitSelectTabbable:d,onChange:j,size:["small","compact"].includes(h)||h==="default"&&!M.__next40pxDefaultSize?"small":"default",unit:T,units:k,onFocus:_,onBlur:e.onBlur});let F=M.step;if(!F&&k){var X;F=(X=k.find(V=>V.value===T)?.step)!==null&&X!==void 0?X:1}return a.jsx(lj,{...M,__shouldNotWarnDeprecated36pxSize:!0,autoComplete:o,className:B,disabled:i,spinControls:"none",isPressEnterToChange:l,label:p,onKeyDown:I,onChange:N,ref:t,size:h,suffix:$,type:l?"text":"number",value:C??"",step:F,onFocus:_,__unstableStateReducer:n})}const Ro=x.forwardRef(k0t),qY=e=>{const t=e?.width!==void 0&&e.width!=="",n=e?.color!==void 0;return t||n};function S0t(e){const{className:t,colors:n=[],isCompact:o,onChange:r,enableAlpha:s=!0,enableStyle:i=!0,shouldSanitizeBorder:c=!0,size:l="default",value:u,width:d,__experimentalIsRenderedInSidebar:p=!1,__next40pxDefaultSize:f,__shouldNotWarnDeprecated36pxSize:b,...h}=vn(e,"BorderControl");q1({componentName:"BorderControl",__next40pxDefaultSize:f,size:l,__shouldNotWarnDeprecated36pxSize:b});const g=l==="default"&&f?"__unstable-large":l,[z,A]=yo(u?.width),_=A||"px",v=z===0,[M,y]=x.useState(),[k,S]=x.useState(),C=c?qY(u):!0,R=x.useCallback($=>{if(c&&!qY($)){r(void 0);return}r($)},[r,c]),T=x.useCallback($=>{const F=$===""?void 0:$,[X]=yo($),Z=X===0,V={...u,width:F};Z&&!v&&(y(u?.color),S(u?.style),V.color=void 0,V.style="none"),!Z&&v&&(V.color===void 0&&(V.color=M),V.style==="none"&&(V.style=k)),R(V)},[u,v,M,k,R]),E=x.useCallback($=>{T(`${$}${_}`)},[T,_]),B=ro(),N=x.useMemo(()=>B(n0t,t),[t,B]);let j=d;o&&(j=l==="__unstable-large"?"116px":"90px");const I=x.useMemo(()=>{const $=!!j&&r0t,F=s0t(g);return B(o0t(),$,F)},[j,B,g]),P=x.useMemo(()=>B(h0t()),[B]);return{...h,className:N,colors:n,enableAlpha:s,enableStyle:i,innerWrapperClassName:I,inputWidth:j,isStyleSettable:C,onBorderChange:R,onSliderChange:E,onWidthChange:T,previousStyleSelection:k,sliderClassName:P,value:u,widthUnit:_,widthValue:z,size:g,__experimentalIsRenderedInSidebar:p,__next40pxDefaultSize:f}}const C0t=e=>{const{label:t,hideLabelFromVision:n}=e;return t?n?a.jsx(qn,{as:"legend",children:t}):a.jsx(gh,{as:"legend",children:t}):null},q0t=(e,t)=>{const{__next40pxDefaultSize:n=!1,colors:o,disableCustomColors:r,disableUnits:s,enableAlpha:i,enableStyle:c,hideLabelFromVision:l,innerWrapperClassName:u,inputWidth:d,isStyleSettable:p,label:f,onBorderChange:b,onSliderChange:h,onWidthChange:g,placeholder:z,__unstablePopoverProps:A,previousStyleSelection:_,showDropdownHeader:v,size:M,sliderClassName:y,value:k,widthUnit:S,widthValue:C,withSlider:R,__experimentalIsRenderedInSidebar:T,...E}=S0t(e);return a.jsxs(mo,{as:"fieldset",...E,ref:t,children:[a.jsx(C0t,{label:f,hideLabelFromVision:l}),a.jsxs(Ot,{spacing:4,className:u,children:[a.jsx(Ro,{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,prefix:a.jsx(t1,{marginRight:1,marginBottom:0,children:a.jsx(x0t,{border:k,colors:o,__unstablePopoverProps:A,disableCustomColors:r,enableAlpha:i,enableStyle:c,isStyleSettable:p,onChange:b,previousStyleSelection:_,__experimentalIsRenderedInSidebar:T,size:M})}),label:m("Border width"),hideLabelFromVision:!0,min:0,onChange:g,value:k?.width||"",placeholder:z,disableUnits:s,__unstableInputWidth:d,size:M}),R&&a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Border width"),hideLabelFromVision:!0,className:y,initialPosition:0,max:100,min:0,onChange:h,step:["px","%"].includes(S)?1:.1,value:C||void 0,withInputField:!1,__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0})]})]})},oM=Rn(q0t,"BorderControl"),R0t={bottom:{alignItems:"flex-end",justifyContent:"center"},bottomLeft:{alignItems:"flex-start",justifyContent:"flex-end"},bottomRight:{alignItems:"flex-end",justifyContent:"flex-end"},center:{alignItems:"center",justifyContent:"center"},spaced:{alignItems:"center",justifyContent:"space-between"},left:{alignItems:"center",justifyContent:"flex-start"},right:{alignItems:"center",justifyContent:"flex-end"},stretch:{alignItems:"stretch"},top:{alignItems:"flex-start",justifyContent:"center"},topLeft:{alignItems:"flex-start",justifyContent:"flex-start"},topRight:{alignItems:"flex-start",justifyContent:"flex-end"}};function T0t(e){return e?R0t[e]:{}}function E0t(e){const{align:t,alignment:n,className:o,columnGap:r,columns:s=2,gap:i=3,isInline:c=!1,justify:l,rowGap:u,rows:d,templateColumns:p,templateRows:f,...b}=vn(e,"Grid"),h=Array.isArray(s)?s:[s],g=W8(h),z=Array.isArray(d)?d:[d],A=W8(z),_=p||!!s&&`repeat( ${g}, 1fr )`,v=f||!!d&&`repeat( ${A}, 1fr )`,M=ro(),y=x.useMemo(()=>{const k=T0t(n),S=Xe({alignItems:t,display:c?"inline-grid":"grid",gap:`calc( ${Ye.gridBase} * ${i} )`,gridTemplateColumns:_||void 0,gridTemplateRows:v||void 0,gridRowGap:u,gridColumnGap:r,justifyContent:l,verticalAlign:c?"middle":void 0,...k},"","");return M(S,o)},[t,n,o,r,M,i,_,v,c,l,u]);return{...b,className:y}}function W0t(e,t){const n=E0t(e);return a.jsx(mo,{...n,ref:t})}const nO=Rn(W0t,"Grid");function N0t(e){const{className:t,colors:n=[],enableAlpha:o=!1,enableStyle:r=!0,size:s="default",__experimentalIsRenderedInSidebar:i=!1,...c}=vn(e,"BorderBoxControlSplitControls"),l=ro(),u=x.useMemo(()=>l(gnt(s),t),[l,t,s]),d=x.useMemo(()=>l(Mnt,t),[l,t]),p=x.useMemo(()=>l(znt(),t),[l,t]);return{...c,centeredClassName:d,className:u,colors:n,enableAlpha:o,enableStyle:r,rightAlignedClassName:p,size:s,__experimentalIsRenderedInSidebar:i}}const B0t=(e,t)=>{const{centeredClassName:n,colors:o,disableCustomColors:r,enableAlpha:s,enableStyle:i,onChange:c,popoverPlacement:l,popoverOffset:u,rightAlignedClassName:d,size:p="default",value:f,__experimentalIsRenderedInSidebar:b,...h}=N0t(e),[g,z]=x.useState(null),A=x.useMemo(()=>l?{placement:l,offset:u,anchor:g,shift:!0}:void 0,[l,u,g]),_={colors:o,disableCustomColors:r,enableAlpha:s,enableStyle:i,isCompact:!0,__experimentalIsRenderedInSidebar:b,size:p,__shouldNotWarnDeprecated36pxSize:!0},v=xn([z,t]);return a.jsxs(nO,{...h,ref:v,gap:3,children:[a.jsx(wnt,{value:f,size:p}),a.jsx(oM,{className:n,hideLabelFromVision:!0,label:m("Top border"),onChange:M=>c(M,"top"),__unstablePopoverProps:A,value:f?.top,..._}),a.jsx(oM,{hideLabelFromVision:!0,label:m("Left border"),onChange:M=>c(M,"left"),__unstablePopoverProps:A,value:f?.left,..._}),a.jsx(oM,{className:d,hideLabelFromVision:!0,label:m("Right border"),onChange:M=>c(M,"right"),__unstablePopoverProps:A,value:f?.right,..._}),a.jsx(oM,{className:n,hideLabelFromVision:!0,label:m("Bottom border"),onChange:M=>c(M,"bottom"),__unstablePopoverProps:A,value:f?.bottom,..._})]})},L0t=Rn(B0t,"BorderBoxControlSplitControls"),P0t=/^([\d.\-+]*)\s*(fr|cm|mm|Q|in|pc|pt|px|em|ex|ch|rem|lh|vw|vh|vmin|vmax|%|cap|ic|rlh|vi|vb|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx|svw|lvw|dvw|svh|lvh|dvh|svi|lvi|dvi|svb|lvb|dvb|svmin|lvmin|dvmin|svmax|lvmax|dvmax)?$/;function j0t(e){const n=e.trim().match(P0t);if(!n)return[void 0,void 0];const[,o,r]=n;let s=parseFloat(o);return s=Number.isNaN(s)?void 0:s,[s,r]}const Kw=["top","right","bottom","left"],cfe=["color","style","width"],yh=e=>e?!cfe.some(t=>e[t]!==void 0):!0,I0t=e=>e?Pd(e)?!Kw.every(n=>yh(e[n])):!yh(e):!1,D0t=e=>e?cfe.every(t=>e[t]!==void 0):!1,Pd=(e={})=>Object.keys(e).some(t=>Kw.indexOf(t)!==-1),FC=e=>{if(!Pd(e))return!1;const t=Kw.map(n=>H0t(e?.[n]));return!t.every(n=>n===t[0])},F0t=e=>{if(!(!e||yh(e)))return{top:e,right:e,bottom:e,left:e}},$0t=(e,t)=>{const n={};return e.color!==t.color&&(n.color=t.color),e.style!==t.style&&(n.style=t.style),e.width!==t.width&&(n.width=t.width),n},V0t=e=>{if(!e)return;const t=[],n=[],o=[];Kw.forEach(c=>{t.push(e[c]?.color),n.push(e[c]?.style),o.push(e[c]?.width)});const r=t.every(c=>c===t[0]),s=n.every(c=>c===n[0]),i=o.every(c=>c===o[0]);return{color:r?t[0]:void 0,style:s?n[0]:void 0,width:i?o[0]:U0t(o)}},H0t=(e,t)=>{if(yh(e))return t;const{color:n,style:o,width:r}={},{color:s=n,style:i=o,width:c=r}=e;return[c,!!c&&c!=="0"||!!s?i||"solid":i,s].filter(Boolean).join(" ")},U0t=e=>{const n=e.map(o=>o===void 0?void 0:j0t(`${o}`)[1]).filter(o=>o!==void 0);return X0t(n)};function X0t(e){if(e.length===0)return;const t={};let n=0,o;return e.forEach(r=>{t[r]=t[r]===void 0?1:t[r]+1,t[r]>n&&(o=r,n=t[r])}),o}function G0t(e){const{className:t,colors:n=[],onChange:o,enableAlpha:r=!1,enableStyle:s=!0,size:i="default",value:c,__experimentalIsRenderedInSidebar:l=!1,__next40pxDefaultSize:u,...d}=vn(e,"BorderBoxControl");q1({componentName:"BorderBoxControl",__next40pxDefaultSize:u,size:i});const p=i==="default"&&u?"__unstable-large":i,f=FC(c),b=Pd(c),h=b?V0t(c):c,g=b?c:F0t(c),z=!isNaN(parseFloat(`${h?.width}`)),[A,_]=x.useState(!f),v=()=>_(!A),M=T=>{if(!T)return o(void 0);if(!f||D0t(T))return o(yh(T)?void 0:T);const E=$0t(h,T),B={top:{...c?.top,...E},right:{...c?.right,...E},bottom:{...c?.bottom,...E},left:{...c?.left,...E}};if(FC(B))return o(B);const N=yh(B.top)?void 0:B.top;o(N)},y=(T,E)=>{const B={...g,[E]:T};FC(B)?o(B):o(T)},k=ro(),S=x.useMemo(()=>k(pnt,t),[k,t]),C=x.useMemo(()=>k(fnt()),[k]),R=x.useMemo(()=>k(bnt),[k]);return{...d,className:S,colors:n,disableUnits:f&&!z,enableAlpha:r,enableStyle:s,hasMixedBorders:f,isLinked:A,linkedControlClassName:C,onLinkedChange:M,onSplitChange:y,toggleLinked:v,linkedValue:h,size:p,splitValue:g,wrapperClassName:R,__experimentalIsRenderedInSidebar:l}}const K0t=e=>{const{label:t,hideLabelFromVision:n}=e;return t?n?a.jsx(qn,{as:"label",children:t}):a.jsx(gh,{children:t}):null},Y0t=(e,t)=>{const{className:n,colors:o,disableCustomColors:r,disableUnits:s,enableAlpha:i,enableStyle:c,hasMixedBorders:l,hideLabelFromVision:u,isLinked:d,label:p,linkedControlClassName:f,linkedValue:b,onLinkedChange:h,onSplitChange:g,popoverPlacement:z,popoverOffset:A,size:_,splitValue:v,toggleLinked:M,wrapperClassName:y,__experimentalIsRenderedInSidebar:k,...S}=G0t(e),[C,R]=x.useState(null),T=x.useMemo(()=>z?{placement:z,offset:A,anchor:C,shift:!0}:void 0,[z,A,C]),E=xn([R,t]);return a.jsxs(mo,{className:n,...S,ref:E,children:[a.jsx(K0t,{label:p,hideLabelFromVision:u}),a.jsxs(mo,{className:y,children:[d?a.jsx(oM,{className:f,colors:o,disableUnits:s,disableCustomColors:r,enableAlpha:i,enableStyle:c,onChange:h,placeholder:l?m("Mixed"):void 0,__unstablePopoverProps:T,shouldSanitizeBorder:!1,value:b,withSlider:!0,width:_==="__unstable-large"?"116px":"110px",__experimentalIsRenderedInSidebar:k,__shouldNotWarnDeprecated36pxSize:!0,size:_}):a.jsx(L0t,{colors:o,disableCustomColors:r,enableAlpha:i,enableStyle:c,onChange:g,popoverPlacement:z,popoverOffset:A,value:v,__experimentalIsRenderedInSidebar:k,size:_}),a.jsx(Ant,{onClick:M,isLinked:d,size:_})]})]})},Z0t=Rn(Y0t,"BorderBoxControl"),RY={px:{max:300,step:1},"%":{max:100,step:1},vw:{max:100,step:1},vh:{max:100,step:1},em:{max:10,step:.1},rm:{max:10,step:.1},svw:{max:100,step:1},lvw:{max:100,step:1},dvw:{max:100,step:1},svh:{max:100,step:1},lvh:{max:100,step:1},dvh:{max:100,step:1},vi:{max:100,step:1},svi:{max:100,step:1},lvi:{max:100,step:1},dvi:{max:100,step:1},vb:{max:100,step:1},svb:{max:100,step:1},lvb:{max:100,step:1},dvb:{max:100,step:1},vmin:{max:100,step:1},svmin:{max:100,step:1},lvmin:{max:100,step:1},dvmin:{max:100,step:1},vmax:{max:100,step:1},svmax:{max:100,step:1},lvmax:{max:100,step:1},dvmax:{max:100,step:1}},TA={all:m("All sides"),top:m("Top side"),bottom:m("Bottom side"),left:m("Left side"),right:m("Right side"),vertical:m("Top and bottom sides"),horizontal:m("Left and right sides")},$C={top:void 0,right:void 0,bottom:void 0,left:void 0},wz=["top","right","bottom","left"];function Q0t(e={},t=wz){const n=dfe(t);if(n.every(o=>e[o]===e[n[0]]))return e[n[0]]}function lfe(e={},t=wz){const n=dfe(t);return n.some(o=>e[o]!==e[n[0]])}function ufe(e){return e&&Object.values(e).filter(t=>!!t&&/\d/.test(t)).length>0}function TY(e,t){let n="all";return e||(n=t?"vertical":"top"),n}function dfe(e){const t=[];if(!e?.length)return wz;if(e.includes("vertical"))t.push("top","bottom");else if(e.includes("horizontal"))t.push("left","right");else{const n=wz.filter(o=>e.includes(o));t.push(...n)}return t}function pfe(e){const t=new Set(e?[]:wz);return e?.forEach(n=>{n==="vertical"?(t.add("top"),t.add("bottom")):n==="horizontal"?(t.add("right"),t.add("left")):t.add(n)}),t}function ffe(e,t){return e.startsWith(`var:preset|${t}|`)}function J0t(e,t,n){if(!ffe(e,t))return;const o=e.match(new RegExp(`^var:preset\\|${t}\\|(.+)$`));if(!o)return;const r=o[1],s=n.findIndex(i=>i.slug===r);return s!==-1?s:void 0}function e1t(e,t,n){const o=n[e];return`var:preset|${t}|${o.slug}`}const t1t=He("span",{target:"e1j5nr4z8"})({name:"1w884gc",styles:"box-sizing:border-box;display:block;width:24px;height:24px;position:relative;padding:4px"}),n1t=He("span",{target:"e1j5nr4z7"})({name:"i6vjox",styles:"box-sizing:border-box;display:block;position:relative;width:100%;height:100%"}),o1t=({isFocused:e})=>Xe({backgroundColor:"currentColor",opacity:e?1:.3},"",""),bfe=He("span",{target:"e1j5nr4z6"})("box-sizing:border-box;display:block;pointer-events:none;position:absolute;",o1t,";"),hfe=He(bfe,{target:"e1j5nr4z5"})({name:"1k2w39q",styles:"bottom:3px;top:3px;width:2px"}),mfe=He(bfe,{target:"e1j5nr4z4"})({name:"1q9b07k",styles:"height:2px;left:3px;right:3px"}),r1t=He(mfe,{target:"e1j5nr4z3"})({name:"abcix4",styles:"top:0"}),s1t=He(hfe,{target:"e1j5nr4z2"})({name:"1wf8jf",styles:"right:0"}),i1t=He(mfe,{target:"e1j5nr4z1"})({name:"8tapst",styles:"bottom:0"}),a1t=He(hfe,{target:"e1j5nr4z0"})({name:"1ode3cm",styles:"left:0"}),c1t=24;function l1t({size:e=24,side:t="all",sides:n,...o}){const r=p=>n?.length&&!n.includes(p),s=p=>r(p)?!1:t==="all"||t===p,i=s("top")||s("vertical"),c=s("right")||s("horizontal"),l=s("bottom")||s("vertical"),u=s("left")||s("horizontal"),d=e/c1t;return a.jsx(t1t,{style:{transform:`scale(${d})`},...o,children:a.jsxs(n1t,{children:[a.jsx(r1t,{isFocused:i}),a.jsx(s1t,{isFocused:c}),a.jsx(i1t,{isFocused:l}),a.jsx(a1t,{isFocused:u})]})})}const u1t=He(Ro,{target:"e1jovhle5"})({name:"1ejyr19",styles:"max-width:90px"}),gfe=He(Ot,{target:"e1jovhle4"})({name:"1j1lmoi",styles:"grid-column:1/span 3"}),d1t=He(Ce,{target:"e1jovhle3"})({name:"tkya7b",styles:"grid-area:1/2;justify-self:end"}),p1t=He("div",{target:"e1jovhle2"})({name:"1dfa8al",styles:"grid-area:1/3;justify-self:end"}),f1t=He(l1t,{target:"e1jovhle1"})({name:"ou8xsw",styles:"flex:0 0 auto"}),EY=He(bo,{target:"e1jovhle0"})("width:100%;margin-inline-end:",Je(2),";"),WY=()=>{};function NY(e,t,n){const o=pfe(t);let r=[];switch(e){case"all":r=["top","bottom","left","right"];break;case"horizontal":r=["left","right"];break;case"vertical":r=["top","bottom"];break;default:r=[e]}if(n)switch(e){case"top":r.push("bottom");break;case"bottom":r.push("top");break;case"left":r.push("left");break;case"right":r.push("right");break}return r.filter(s=>o.has(s))}function o4({__next40pxDefaultSize:e,onChange:t=WY,onFocus:n=WY,values:o,selectedUnits:r,setSelectedUnits:s,sides:i,side:c,min:l=0,presets:u,presetKey:d,...p}){var f,b;const h=NY(c,i),g=V=>{n(V,{side:c})},z=V=>{t(V)},A=V=>{const ee={...o};h.forEach(te=>{ee[te]=V}),z(ee)},_=(V,ee)=>{const te={...o},ue=V!==void 0&&!isNaN(parseFloat(V))?V:void 0;NY(c,i,!!ee?.event.altKey).forEach(me=>{te[me]=ue}),z(te)},v=V=>{const ee={...r};h.forEach(te=>{ee[te]=V}),s(ee)},M=Q0t(o,h),y=ufe(o),k=y&&h.length>1&&lfe(o,h),[S,C]=yo(M),R=y?C:r[h[0]],E=[vt(o4,"box-control-input"),c].join("-"),B=h.length>1&&M===void 0&&h.some(V=>r[V]!==R),N=M===void 0&&R?R:M,j=k||B?m("Mixed"):void 0,I=u&&u.length>0&&d,P=I&&M!==void 0&&!k&&ffe(M,d),[$,F]=x.useState(!I||!P&&!k&&M!==void 0),X=P?J0t(M,d,u):void 0,Z=I?[{value:0,label:"",tooltip:m("None")}].concat(u.map((V,ee)=>{var te;return{value:ee+1,label:"",tooltip:(te=V.name)!==null&&te!==void 0?te:V.slug}})):[];return a.jsxs(gfe,{expanded:!0,children:[a.jsx(f1t,{side:c,sides:i}),$&&a.jsxs(a.Fragment,{children:[a.jsx(B0,{placement:"top-end",text:TA[c],children:a.jsx(u1t,{...p,min:l,__shouldNotWarnDeprecated36pxSize:!0,__next40pxDefaultSize:e,className:"component-box-control__unit-control",id:E,isPressEnterToChange:!0,disableUnits:k||B,value:N,onChange:_,onUnitChange:v,onFocus:g,label:TA[c],placeholder:j,hideLabelFromVision:!0})}),a.jsx(EY,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:e,__shouldNotWarnDeprecated36pxSize:!0,"aria-controls":E,label:TA[c],hideLabelFromVision:!0,onChange:V=>{_(V!==void 0?[V,R].join(""):void 0)},min:isFinite(l)?l:0,max:(f=RY[R??"px"]?.max)!==null&&f!==void 0?f:10,step:(b=RY[R??"px"]?.step)!==null&&b!==void 0?b:.1,value:S??0,withInputField:!1})]}),I&&!$&&a.jsx(EY,{__next40pxDefaultSize:!0,className:"spacing-sizes-control__range-control",value:X!==void 0?X+1:0,onChange:V=>{const ee=V===0||V===void 0?void 0:e1t(V-1,d,u);A(ee)},withInputField:!1,"aria-valuenow":X!==void 0?X+1:0,"aria-valuetext":Z[X!==void 0?X+1:0].tooltip,renderTooltipContent:V=>Z[V||0].tooltip,min:0,max:Z.length-1,marks:Z,label:TA[c],hideLabelFromVision:!0,__nextHasNoMarginBottom:!0}),I&&a.jsx(Ce,{label:m($?"Use size preset":"Set custom size"),icon:HP,onClick:()=>{F(!$)},isPressed:$,size:"small",iconSize:24})]},`box-control-${c}`)}function b1t({isLinked:e,...t}){const n=m(e?"Unlink sides":"Link sides");return a.jsx(Ce,{...t,className:"component-box-control__linked-button",size:"small",icon:e?xa:Pl,iconSize:24,label:n})}const h1t={min:0},m1t=()=>{};function g1t(e){const t=vt(r4,"inspector-box-control");return e||t}function r4({__next40pxDefaultSize:e=!1,id:t,inputProps:n=h1t,onChange:o=m1t,label:r=m("Box Control"),values:s,units:i,sides:c,splitOnAxis:l=!1,allowReset:u=!0,resetValues:d=$C,presets:p,presetKey:f,onMouseOver:b,onMouseOut:h}){const[g,z]=zw(s,{fallback:$C}),A=g||$C,_=ufe(s),v=c?.length===1,[M,y]=x.useState(_),[k,S]=x.useState(!_||!lfe(A)||v),[C,R]=x.useState(TY(k,l)),[T,E]=x.useState({top:yo(s?.top)[1],right:yo(s?.right)[1],bottom:yo(s?.bottom)[1],left:yo(s?.left)[1]}),B=g1t(t),N=`${B}-heading`,j=()=>{S(!k),R(TY(!k,l))},I=(Z,{side:V})=>{R(V)},P=Z=>{o(Z),z(Z),y(!0)},$=()=>{o(d),z(d),E(d),y(!1)},F={onMouseOver:b,onMouseOut:h,...n,onChange:P,onFocus:I,isLinked:k,units:i,selectedUnits:T,setSelectedUnits:E,sides:c,values:A,__next40pxDefaultSize:e,presets:p,presetKey:f};q1({componentName:"BoxControl",__next40pxDefaultSize:e,size:void 0});const X=pfe(c);if(p&&!f||!p&&f){const Z=p?"presets":"presetKey",V=p?"presetKey":"presets";globalThis.SCRIPT_DEBUG===!0&&zn(`wp.components.BoxControl: the '${V}' prop is required when the '${Z}' prop is defined.`)}return a.jsxs(nO,{id:B,columns:3,templateColumns:"1fr min-content min-content",role:"group","aria-labelledby":N,children:[a.jsx(no.VisualLabel,{id:N,children:r}),k&&a.jsx(gfe,{children:a.jsx(o4,{side:"all",...F})}),!v&&a.jsx(p1t,{children:a.jsx(b1t,{onClick:j,isLinked:k})}),!k&&l&&["vertical","horizontal"].map(Z=>a.jsx(o4,{side:Z,...F},Z)),!k&&!l&&Array.from(X).map(Z=>a.jsx(o4,{side:Z,...F},Z)),u&&a.jsx(d1t,{className:"component-box-control__reset-button",variant:"secondary",size:"small",onClick:$,disabled:!M,children:m("Reset")})]})}const M1t={name:"12ip69d",styles:"background:transparent;display:block;margin:0!important;pointer-events:none;position:absolute;will-change:box-shadow"};function EA(e){const t=`rgba(0, 0, 0, ${e/20})`;return`0 ${e}px ${e*2}px 0 + ${t}`}function z1t(e){const{active:t,borderRadius:n="inherit",className:o,focus:r,hover:s,isInteractive:i=!1,offset:c=0,value:l=0,...u}=vn(e,"Elevation"),d=ro(),p=x.useMemo(()=>{let f=bi(s)?s:l*2,b=bi(t)?t:l/2;i||(f=bi(s)?s:void 0,b=bi(t)?t:void 0);const h=`box-shadow ${Ye.transitionDuration} ${Ye.transitionTimingFunction}`,g={};return g.Base=Xe({borderRadius:n,bottom:c,boxShadow:EA(l),opacity:Ye.elevationIntensity,left:c,right:c,top:c},Xe("@media not ( prefers-reduced-motion ){transition:",h,";}",""),"",""),bi(f)&&(g.hover=Xe("*:hover>&{box-shadow:",EA(f),";}","")),bi(b)&&(g.active=Xe("*:active>&{box-shadow:",EA(b),";}","")),bi(r)&&(g.focus=Xe("*:focus>&{box-shadow:",EA(r),";}","")),d(M1t,g.Base,g.hover,g.focus,g.active,o)},[t,n,o,d,r,s,i,c,l]);return{...u,className:p,"aria-hidden":!0}}function O1t(e,t){const n=z1t(e);return a.jsx(mo,{...n,ref:t})}const BY=Rn(O1t,"Elevation"),rM=`calc(${Ye.radiusLarge} - 1px)`,y1t=Xe("box-shadow:0 0 0 1px ",Ye.surfaceBorderColor,";outline:none;",""),A1t={name:"1showjb",styles:"border-bottom:1px solid;box-sizing:border-box;&:last-child{border-bottom:none;}"},v1t={name:"13udsys",styles:"height:100%"},x1t={name:"6ywzd",styles:"box-sizing:border-box;height:auto;max-height:100%"},Mfe=Xe("&:first-of-type{border-top-left-radius:",rM,";border-top-right-radius:",rM,";}&:last-of-type{border-bottom-left-radius:",rM,";border-bottom-right-radius:",rM,";}",""),w1t=Xe("border-color:",Ye.colorDivider,";",""),_1t={name:"1t90u8d",styles:"box-shadow:none"},k1t={name:"1e1ncky",styles:"border:none"},S1t=Xe("border-radius:",rM,";",""),LY=Xe("padding:",Ye.cardPaddingXSmall,";",""),zfe={large:Xe("padding:",Ye.cardPaddingLarge,";",""),medium:Xe("padding:",Ye.cardPaddingMedium,";",""),small:Xe("padding:",Ye.cardPaddingSmall,";",""),xSmall:LY,extraSmall:LY},Ofe=Xe("background-color:",Ze.ui.backgroundDisabled,";",""),C1t=Xe("background-color:",Ye.surfaceColor,";color:",Ze.gray[900],";position:relative;","");Ye.surfaceBackgroundColor;function q1t({borderBottom:e,borderLeft:t,borderRight:n,borderTop:o}){const r=`1px solid ${Ye.surfaceBorderColor}`;return Xe({borderBottom:e?r:void 0,borderLeft:t?r:void 0,borderRight:n?r:void 0,borderTop:o?r:void 0},"","")}const R1t=Xe("",""),T1t=Xe("background:",Ye.surfaceBackgroundTintColor,";",""),E1t=Xe("background:",Ye.surfaceBackgroundTertiaryColor,";",""),yfe=e=>[e,e].join(" "),W1t=e=>["90deg",[Ye.surfaceBackgroundColor,e].join(" "),"transparent 1%"].join(","),N1t=e=>[[Ye.surfaceBackgroundColor,e].join(" "),"transparent 1%"].join(","),B1t=e=>[`linear-gradient( ${W1t(e)} ) center`,`linear-gradient( ${N1t(e)} ) center`,Ye.surfaceBorderBoldColor].join(","),L1t=(e,t)=>Xe("background:",B1t(t),";background-size:",yfe(e),";",""),P1t=[`${Ye.surfaceBorderSubtleColor} 1px`,"transparent 1px"].join(","),j1t=["90deg",`${Ye.surfaceBorderSubtleColor} 1px`,"transparent 1px"].join(","),I1t=[`linear-gradient( ${P1t} )`,`linear-gradient( ${j1t} )`].join(","),D1t=e=>Xe("background:",Ye.surfaceBackgroundColor,";background-image:",I1t,";background-size:",yfe(e),";",""),F1t=(e,t,n)=>{switch(e){case"dotted":return L1t(t,n);case"grid":return D1t(t);case"primary":return R1t;case"secondary":return T1t;case"tertiary":return E1t}};function $1t(e){const{backgroundSize:t=12,borderBottom:n=!1,borderLeft:o=!1,borderRight:r=!1,borderTop:s=!1,className:i,variant:c="primary",...l}=vn(e,"Surface"),u=ro(),d=x.useMemo(()=>{const p={borders:q1t({borderBottom:n,borderLeft:o,borderRight:r,borderTop:s})};return u(C1t,p.borders,F1t(c,`${t}px`,`${t-1}px`),i)},[t,n,o,r,s,i,u,c]);return{...l,className:d}}function V1t({elevation:e,isElevated:t,...n}){const o={...n};let r=e;if(t){var s;Ke("Card isElevated prop",{since:"5.9",alternative:"elevation"}),(s=r)!==null&&s!==void 0||(r=2)}return typeof r<"u"&&(o.elevation=r),o}function H1t(e){const{className:t,elevation:n=0,isBorderless:o=!1,isRounded:r=!0,size:s="medium",...i}=vn(V1t(e),"Card"),c=ro(),l=x.useMemo(()=>c(y1t,o&&_1t,r&&S1t,t),[t,c,o,r]);return{...$1t({...i,className:l}),elevation:n,isBorderless:o,isRounded:r,size:s}}function U1t(e,t){const{children:n,elevation:o,isBorderless:r,isRounded:s,size:i,...c}=H1t(e),l=s?Ye.radiusLarge:0,u=ro(),d=x.useMemo(()=>u(Xe({borderRadius:l},"","")),[u,l]),p=x.useMemo(()=>{const f={size:i,isBorderless:r};return{CardBody:f,CardHeader:f,CardFooter:f}},[r,i]);return a.jsx(j3,{value:p,children:a.jsxs(mo,{...c,ref:t,children:[a.jsx(mo,{className:u(v1t),children:n}),a.jsx(BY,{className:d,isInteractive:!1,value:o?1:0}),a.jsx(BY,{className:d,isInteractive:!1,value:o})]})})}const PY=Rn(U1t,"Card"),X1t=Xe("@media only screen and ( min-device-width: 40em ){&::-webkit-scrollbar{height:12px;width:12px;}&::-webkit-scrollbar-track{background-color:transparent;}&::-webkit-scrollbar-track{background:",Ye.colorScrollbarTrack,";border-radius:8px;}&::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:",Ye.colorScrollbarThumb,";border:2px solid rgba( 0, 0, 0, 0 );border-radius:7px;}&:hover::-webkit-scrollbar-thumb{background-color:",Ye.colorScrollbarThumbHover,";}}",""),G1t={name:"13udsys",styles:"height:100%"},K1t={name:"7zq9w",styles:"scroll-behavior:smooth"},Y1t={name:"q33xhg",styles:"overflow-x:auto;overflow-y:hidden"},Z1t={name:"103x71s",styles:"overflow-x:hidden;overflow-y:auto"},Q1t={name:"umwchj",styles:"overflow-y:auto"};function J1t(e){const{className:t,scrollDirection:n="y",smoothScroll:o=!1,...r}=vn(e,"Scrollable"),s=ro(),i=x.useMemo(()=>s(G1t,X1t,o&&K1t,n==="x"&&Y1t,n==="y"&&Z1t,n==="auto"&&Q1t,t),[t,s,n,o]);return{...r,className:i}}function est(e,t){const n=J1t(e);return a.jsx(mo,{...n,ref:t})}const tst=Rn(est,"Scrollable");function nst(e){const{className:t,isScrollable:n=!1,isShady:o=!1,size:r="medium",...s}=vn(e,"CardBody"),i=ro(),c=x.useMemo(()=>i(x1t,Mfe,zfe[r],o&&Ofe,"components-card__body",t),[t,i,o,r]);return{...s,className:c,isScrollable:n}}function ost(e,t){const{isScrollable:n,...o}=nst(e);return n?a.jsx(tst,{...o,ref:t}):a.jsx(mo,{...o,ref:t})}const jY=Rn(ost,"CardBody");function rst(e){const{className:t,isBorderless:n=!1,isShady:o=!1,size:r="medium",...s}=vn(e,"CardHeader"),i=ro(),c=x.useMemo(()=>i(A1t,Mfe,w1t,zfe[r],n&&k1t,o&&Ofe,"components-card__header",t),[t,i,n,o,r]);return{...s,className:c}}function sst(e,t){const n=rst(e);return a.jsx(Yo,{...n,ref:t})}const ist=Rn(sst,"CardHeader");function K0(e){const{__nextHasNoMarginBottom:t,label:n,className:o,heading:r,checked:s,indeterminate:i,help:c,id:l,onChange:u,...d}=e;r&&Ke("`heading` prop in `CheckboxControl`",{alternative:"a separate element to implement a heading",since:"5.8"});const[p,f]=x.useState(!1),[b,h]=x.useState(!1),g=Mn(_=>{_&&(_.indeterminate=!!i,f(_.matches(":checked")),h(_.matches(":indeterminate")))},[s,i]),z=vt(K0,"inspector-checkbox-control",l),A=_=>u(_.target.checked);return a.jsx(no,{__nextHasNoMarginBottom:t,__associatedWPComponentName:"CheckboxControl",label:r,id:z,help:c&&a.jsx("span",{className:"components-checkbox-control__help",children:c}),className:oe("components-checkbox-control",o),children:a.jsxs(Ot,{spacing:0,justify:"start",alignment:"top",children:[a.jsxs("span",{className:"components-checkbox-control__input-container",children:[a.jsx("input",{ref:g,id:z,className:"components-checkbox-control__input",type:"checkbox",value:"1",onChange:A,checked:s,"aria-describedby":c?z+"__help":void 0,...d}),b?a.jsx(wn,{icon:am,className:"components-checkbox-control__indeterminate",role:"presentation"}):null,p?a.jsx(wn,{icon:M0,className:"components-checkbox-control__checked",role:"presentation"}):null]}),n&&a.jsx("label",{className:"components-checkbox-control__label",htmlFor:z,children:n})]})})}const ast=e=>Xe("font-size:",la("default.fontSize"),";font-family:inherit;appearance:none;border:1px solid transparent;cursor:pointer;background:none;text-align:start;text-decoration:",e==="a"?"none":void 0,";svg,path{fill:currentColor;}&:hover{color:",Ze.theme.accent,";}&:focus{box-shadow:none;outline:none;}&:focus-visible{box-shadow:0 0 0 var( --wp-admin-border-width-focus ) ",Ze.theme.accent,";outline:2px solid transparent;outline-offset:0;}",""),cst={name:"1bcj5ek",styles:"width:100%;display:block"},lst={name:"150ruhm",styles:"box-sizing:border-box;width:100%;display:block;margin:0;color:inherit"},ust=Xe("border:1px solid ",Ye.surfaceBorderColor,";",""),dst=Xe(">*:not( marquee )>*{border-bottom:1px solid ",Ye.surfaceBorderColor,";}>*:last-of-type>*:not( :focus ){border-bottom-color:transparent;}",""),s2=Ye.radiusSmall,pst=Xe("border-radius:",s2,";",""),fst=Xe("border-radius:",s2,";>*:first-of-type>*{border-top-left-radius:",s2,";border-top-right-radius:",s2,";}>*:last-of-type>*{border-bottom-left-radius:",s2,";border-bottom-right-radius:",s2,";}",""),dj=`calc(${Ye.fontSize} * ${Ye.fontLineHeightBase})`,bst=`calc((${Ye.controlHeight} - ${dj} - 2px) / 2)`,hst=`calc((${Ye.controlHeightSmall} - ${dj} - 2px) / 2)`,mst=`calc((${Ye.controlHeightLarge} - ${dj} - 2px) / 2)`,IY={small:Xe("padding:",hst," ",Ye.controlPaddingXSmall,"px;",""),medium:Xe("padding:",bst," ",Ye.controlPaddingX,"px;",""),large:Xe("padding:",mst," ",Ye.controlPaddingXLarge,"px;","")},Afe=x.createContext({size:"medium"}),vfe=()=>x.useContext(Afe);function gst(e){const{as:t,className:n,onClick:o,role:r="listitem",size:s,...i}=vn(e,"Item"),{spacedAround:c,size:l}=vfe(),u=s||l,d=t||(typeof o<"u"?"button":"div"),p=ro(),f=x.useMemo(()=>p((d==="button"||d==="a")&&ast(d),IY[u]||IY.medium,lst,c&&pst,n),[d,n,p,u,c]),b=p(cst);return{as:d,className:f,onClick:o,wrapperClassName:b,role:r,...i}}function Mst(e,t){const{role:n,wrapperClassName:o,...r}=gst(e);return a.jsx("div",{role:n,className:o,children:a.jsx(mo,{...r,ref:t})})}const oO=Rn(Mst,"Item");function zst(e){const{className:t,isBordered:n=!1,isRounded:o=!0,isSeparated:r=!1,role:s="list",...i}=vn(e,"ItemGroup"),l=ro()(n&&ust,r&&dst,o&&fst,t);return{isBordered:n,className:l,role:s,isSeparated:r,...i}}function Ost(e,t){const{isBordered:n,isSeparated:o,size:r,...s}=zst(e),{size:i}=vfe(),u={spacedAround:!n&&!o,size:r||i};return a.jsx(Afe.Provider,{value:u,children:a.jsx(mo,{...s,ref:t})})}const tb=Rn(Ost,"ItemGroup"),xfe=10,yst=0,Ast=5,DY=xfe;function H8(e){return Math.max(0,Math.min(100,e))}function vst(e,t,n,o=yst){const r=e[t].position,s=Math.min(r,n),i=Math.max(r,n);return e.some(({position:c},l)=>l!==t&&(Math.abs(c-n)<o||s<c&&c<i))}function xst(e,t,n){const o=e.findIndex(i=>i.position>t),r={color:n,position:t},s=e.slice();return s.splice(o-1,0,r),s}function wst(e,t){return e.filter((n,o)=>o!==t)}function wfe(e,t,n){const o=e.slice();return o[t]=n,o}function VC(e,t,n){if(vst(e,t,n))return e;const o={...e[t],position:n};return wfe(e,t,o)}function _fe(e,t,n){const o={...e[t],color:n};return wfe(e,t,o)}function _st(e,t,n){const o=e.findIndex(r=>r.position===t);return _fe(e,o,n)}function kfe(e,t){if(!t)return;const{x:n,width:o}=t.getBoundingClientRect(),r=e-n;return Math.round(H8(r*100/o))}function Sfe({isOpen:e,position:t,color:n,...o}){const s=`components-custom-gradient-picker__control-point-button-description-${vt(Sfe)}`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{"aria-label":xe(m("Gradient control point at position %1$s%% with color code %2$s."),t,n),"aria-describedby":s,"aria-haspopup":"true","aria-expanded":e,__next40pxDefaultSize:!0,className:oe("components-custom-gradient-picker__control-point-button",{"is-active":e}),...o}),a.jsx(qn,{id:s,children:m("Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.")})]})}function Cfe({isRenderedInSidebar:e,className:t,...n}){const o=x.useMemo(()=>({placement:"bottom",offset:8,resize:!1}),[]),r=oe("components-custom-gradient-picker__control-point-dropdown",t);return a.jsx(ofe,{isRenderedInSidebar:e,popoverProps:o,className:r,...n})}function U8({disableRemove:e,disableAlpha:t,gradientPickerDomRef:n,ignoreMarkerPosition:o,value:r,onChange:s,onStartControlPointChange:i,onStopControlPointChange:c,__experimentalIsRenderedInSidebar:l}){const u=x.useRef(),d=b=>{if(u.current===void 0||n.current===null)return;const h=kfe(b.clientX,n.current),{initialPosition:g,index:z,significantMoveHappened:A}=u.current;!A&&Math.abs(g-h)>=Ast&&(u.current.significantMoveHappened=!0),s(VC(r,z,h))},p=()=>{window&&window.removeEventListener&&u.current&&u.current.listenersActivated&&(window.removeEventListener("mousemove",d),window.removeEventListener("mouseup",p),c(),u.current.listenersActivated=!1)},f=x.useRef();return f.current=p,x.useEffect(()=>()=>{f.current?.()},[]),a.jsx(a.Fragment,{children:r.map((b,h)=>{const g=b?.position;return o!==g&&a.jsx(Cfe,{isRenderedInSidebar:l,onClose:c,renderToggle:({isOpen:z,onToggle:A})=>a.jsx(Sfe,{onClick:()=>{u.current&&u.current.significantMoveHappened||(z?c():i(),A())},onMouseDown:()=>{window&&window.addEventListener&&(u.current={initialPosition:g,index:h,significantMoveHappened:!1,listenersActivated:!0},i(),window.addEventListener("mousemove",d),window.addEventListener("mouseup",p))},onKeyDown:_=>{_.code==="ArrowLeft"?(_.stopPropagation(),s(VC(r,h,H8(b.position-DY)))):_.code==="ArrowRight"&&(_.stopPropagation(),s(VC(r,h,H8(b.position+DY))))},isOpen:z,position:b.position,color:b.color},h),renderContent:({onClose:z})=>a.jsxs($s,{paddingSize:"none",children:[a.jsx(cj,{enableAlpha:!t,color:b.color,onChange:A=>{s(_fe(r,h,an(A).toRgbString()))}}),!e&&r.length>2&&a.jsx(Ot,{className:"components-custom-gradient-picker__remove-control-point-wrapper",alignment:"center",children:a.jsx(Ce,{onClick:()=>{s(wst(r,h)),z()},variant:"link",children:m("Remove Control Point")})})]}),style:{left:`${b.position}%`,transform:"translateX( -50% )"}},h)})})}function kst({value:e,onChange:t,onOpenInserter:n,onCloseInserter:o,insertPosition:r,disableAlpha:s,__experimentalIsRenderedInSidebar:i}){const[c,l]=x.useState(!1);return a.jsx(Cfe,{isRenderedInSidebar:i,className:"components-custom-gradient-picker__inserter",onClose:()=>{o()},renderToggle:({isOpen:u,onToggle:d})=>a.jsx(Ce,{__next40pxDefaultSize:!0,"aria-expanded":u,"aria-haspopup":"true",onClick:()=>{u?o():(l(!1),n()),d()},className:"components-custom-gradient-picker__insert-point-dropdown",icon:Fs}),renderContent:()=>a.jsx($s,{paddingSize:"none",children:a.jsx(cj,{enableAlpha:!s,onChange:u=>{c?t(_st(e,r,an(u).toRgbString())):(t(xst(e,r,an(u).toRgbString())),l(!0))}})}),style:r!==null?{left:`${r}%`,transform:"translateX( -50% )"}:void 0})}U8.InsertPoint=kst;const Sst=(e,t)=>{switch(t.type){case"MOVE_INSERTER":if(e.id==="IDLE"||e.id==="MOVING_INSERTER")return{id:"MOVING_INSERTER",insertPosition:t.insertPosition};break;case"STOP_INSERTER_MOVE":if(e.id==="MOVING_INSERTER")return{id:"IDLE"};break;case"OPEN_INSERTER":if(e.id==="MOVING_INSERTER")return{id:"INSERTING_CONTROL_POINT",insertPosition:e.insertPosition};break;case"CLOSE_INSERTER":if(e.id==="INSERTING_CONTROL_POINT")return{id:"IDLE"};break;case"START_CONTROL_CHANGE":if(e.id==="IDLE")return{id:"MOVING_CONTROL_POINT"};break;case"STOP_CONTROL_CHANGE":if(e.id==="MOVING_CONTROL_POINT")return{id:"IDLE"};break}return e},Cst={id:"IDLE"};function qfe({background:e,hasGradient:t,value:n,onChange:o,disableInserter:r=!1,disableAlpha:s=!1,__experimentalIsRenderedInSidebar:i=!1}){const c=x.useRef(null),[l,u]=x.useReducer(Sst,Cst),d=h=>{if(!c.current)return;const g=kfe(h.clientX,c.current);if(n.some(({position:z})=>Math.abs(g-z)<xfe)){l.id==="MOVING_INSERTER"&&u({type:"STOP_INSERTER_MOVE"});return}u({type:"MOVE_INSERTER",insertPosition:g})},p=()=>{u({type:"STOP_INSERTER_MOVE"})},f=l.id==="MOVING_INSERTER",b=l.id==="INSERTING_CONTROL_POINT";return a.jsxs("div",{className:oe("components-custom-gradient-picker__gradient-bar",{"has-gradient":t}),onMouseEnter:d,onMouseMove:d,onMouseLeave:p,children:[a.jsx("div",{className:"components-custom-gradient-picker__gradient-bar-background",style:{background:e,opacity:t?1:.4}}),a.jsxs("div",{ref:c,className:"components-custom-gradient-picker__markers-container",children:[!r&&(f||b)&&a.jsx(U8.InsertPoint,{__experimentalIsRenderedInSidebar:i,disableAlpha:s,insertPosition:l.insertPosition,value:n,onChange:o,onOpenInserter:()=>{u({type:"OPEN_INSERTER"})},onCloseInserter:()=>{u({type:"CLOSE_INSERTER"})}}),a.jsx(U8,{__experimentalIsRenderedInSidebar:i,disableAlpha:s,disableRemove:r,gradientPickerDomRef:c,ignoreMarkerPosition:b?l.insertPosition:void 0,value:n,onChange:o,onStartControlPointChange:()=>{u({type:"START_CONTROL_CHANGE"})},onStopControlPointChange:()=>{u({type:"STOP_CONTROL_CHANGE"})}})]})]})}var WA={},FY;function qst(){if(FY)return WA;FY=1;var e=e||{};e.stringify=function(){var t={"visit_linear-gradient":function(n){return t.visit_gradient(n)},"visit_repeating-linear-gradient":function(n){return t.visit_gradient(n)},"visit_radial-gradient":function(n){return t.visit_gradient(n)},"visit_repeating-radial-gradient":function(n){return t.visit_gradient(n)},visit_gradient:function(n){var o=t.visit(n.orientation);return o&&(o+=", "),n.type+"("+o+t.visit(n.colorStops)+")"},visit_shape:function(n){var o=n.value,r=t.visit(n.at),s=t.visit(n.style);return s&&(o+=" "+s),r&&(o+=" at "+r),o},"visit_default-radial":function(n){var o="",r=t.visit(n.at);return r&&(o+=r),o},"visit_extent-keyword":function(n){var o=n.value,r=t.visit(n.at);return r&&(o+=" at "+r),o},"visit_position-keyword":function(n){return n.value},visit_position:function(n){return t.visit(n.value.x)+" "+t.visit(n.value.y)},"visit_%":function(n){return n.value+"%"},visit_em:function(n){return n.value+"em"},visit_px:function(n){return n.value+"px"},visit_literal:function(n){return t.visit_color(n.value,n)},visit_hex:function(n){return t.visit_color("#"+n.value,n)},visit_rgb:function(n){return t.visit_color("rgb("+n.value.join(", ")+")",n)},visit_rgba:function(n){return t.visit_color("rgba("+n.value.join(", ")+")",n)},visit_color:function(n,o){var r=n,s=t.visit(o.length);return s&&(r+=" "+s),r},visit_angular:function(n){return n.value+"deg"},visit_directional:function(n){return"to "+n.value},visit_array:function(n){var o="",r=n.length;return n.forEach(function(s,i){o+=t.visit(s),i<r-1&&(o+=", ")}),o},visit:function(n){if(!n)return"";var o="";if(n instanceof Array)return t.visit_array(n,o);if(n.type){var r=t["visit_"+n.type];if(r)return r(n);throw Error("Missing visitor visit_"+n.type)}else throw Error("Invalid node.")}};return function(n){return t.visit(n)}}();var e=e||{};return e.parse=function(){var t={linearGradient:/^(\-(webkit|o|ms|moz)\-)?(linear\-gradient)/i,repeatingLinearGradient:/^(\-(webkit|o|ms|moz)\-)?(repeating\-linear\-gradient)/i,radialGradient:/^(\-(webkit|o|ms|moz)\-)?(radial\-gradient)/i,repeatingRadialGradient:/^(\-(webkit|o|ms|moz)\-)?(repeating\-radial\-gradient)/i,sideOrCorner:/^to (left (top|bottom)|right (top|bottom)|left|right|top|bottom)/i,extentKeywords:/^(closest\-side|closest\-corner|farthest\-side|farthest\-corner|contain|cover)/,positionKeywords:/^(left|center|right|top|bottom)/i,pixelValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))px/,percentageValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))\%/,emValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))em/,angleValue:/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))deg/,startCall:/^\(/,endCall:/^\)/,comma:/^,/,hexColor:/^\#([0-9a-fA-F]+)/,literalColor:/^([a-zA-Z]+)/,rgbColor:/^rgb/i,rgbaColor:/^rgba/i,number:/^(([0-9]*\.[0-9]+)|([0-9]+\.?))/},n="";function o(F){var X=new Error(n+": "+F);throw X.source=n,X}function r(){var F=s();return n.length>0&&o("Invalid input not EOF"),F}function s(){return M(i)}function i(){return c("linear-gradient",t.linearGradient,u)||c("repeating-linear-gradient",t.repeatingLinearGradient,u)||c("radial-gradient",t.radialGradient,f)||c("repeating-radial-gradient",t.repeatingRadialGradient,f)}function c(F,X,Z){return l(X,function(V){var ee=Z();return ee&&(P(t.comma)||o("Missing comma before color stops")),{type:F,orientation:ee,colorStops:M(y)}})}function l(F,X){var Z=P(F);if(Z){P(t.startCall)||o("Missing (");var V=X(Z);return P(t.endCall)||o("Missing )"),V}}function u(){return d()||p()}function d(){return I("directional",t.sideOrCorner,1)}function p(){return I("angular",t.angleValue,1)}function f(){var F,X=b(),Z;return X&&(F=[],F.push(X),Z=n,P(t.comma)&&(X=b(),X?F.push(X):n=Z)),F}function b(){var F=h()||g();if(F)F.at=A();else{var X=z();if(X){F=X;var Z=A();Z&&(F.at=Z)}else{var V=_();V&&(F={type:"default-radial",at:V})}}return F}function h(){var F=I("shape",/^(circle)/i,0);return F&&(F.style=j()||z()),F}function g(){var F=I("shape",/^(ellipse)/i,0);return F&&(F.style=B()||z()),F}function z(){return I("extent-keyword",t.extentKeywords,1)}function A(){if(I("position",/^at/,0)){var F=_();return F||o("Missing positioning value"),F}}function _(){var F=v();if(F.x||F.y)return{type:"position",value:F}}function v(){return{x:B(),y:B()}}function M(F){var X=F(),Z=[];if(X)for(Z.push(X);P(t.comma);)X=F(),X?Z.push(X):o("One extra comma");return Z}function y(){var F=k();return F||o("Expected color definition"),F.length=B(),F}function k(){return C()||T()||R()||S()}function S(){return I("literal",t.literalColor,0)}function C(){return I("hex",t.hexColor,1)}function R(){return l(t.rgbColor,function(){return{type:"rgb",value:M(E)}})}function T(){return l(t.rgbaColor,function(){return{type:"rgba",value:M(E)}})}function E(){return P(t.number)[1]}function B(){return I("%",t.percentageValue,1)||N()||j()}function N(){return I("position-keyword",t.positionKeywords,1)}function j(){return I("px",t.pixelValue,1)||I("em",t.emValue,1)}function I(F,X,Z){var V=P(X);if(V)return{type:F,value:V[Z]}}function P(F){var X,Z;return Z=/^[\n\r\t\s]+/.exec(n),Z&&$(Z[0].length),X=F.exec(n),X&&$(X[0].length),X}function $(F){n=n.substr(F)}return function(F){return n=F.toString(),r()}}(),WA.parse=e.parse,WA.stringify=e.stringify,WA}var Rst=qst();const $Y=Zr(Rst),VY="linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%)",Tst=180,Rfe={type:"angular",value:"90"},Est=[{value:"linear-gradient",label:m("Linear")},{value:"radial-gradient",label:m("Radial")}],Wst={top:0,"top right":45,"right top":45,right:90,"right bottom":135,"bottom right":135,bottom:180,"bottom left":225,"left bottom":225,left:270,"top left":315,"left top":315};function Nst({type:e,value:t}){return e==="literal"?t:e==="hex"?`#${t}`:`${e}(${t.join(",")})`}function Bst(e){if(!e)return"";const{value:t,type:n}=e;return`${t}${n}`}function Lst({type:e,value:t,length:n}){return`${Nst({type:e,value:t})} ${Bst(n)}`}function Pst(e){if(!(Array.isArray(e)||!e||e.type!=="angular"))return`${e.value}deg`}function _z({type:e,orientation:t,colorStops:n}){const o=Pst(t),r=n.sort((s,i)=>{const c=l=>l?.length?.value===void 0?0:parseInt(l.length.value);return c(s)-c(i)}).map(Lst);return`${e}(${[o,...r].filter(Boolean).join(",")})`}Xs([Gs]);function jst(e){return _z({type:"linear-gradient",orientation:Rfe,colorStops:e.colorStops})}function Ist(e){return e.length===void 0||e.length.type!=="%"}function Dst(e){let t,n=!!e;const o=e??VY;try{t=$Y.parse(o)[0]}catch(r){console.warn("wp.components.CustomGradientPicker failed to parse the gradient with error",r),t=$Y.parse(VY)[0],n=!1}if(!Array.isArray(t.orientation)&&t.orientation?.type==="directional"&&(t.orientation={type:"angular",value:Wst[t.orientation.value].toString()}),t.colorStops.some(Ist)){const{colorStops:r}=t,s=100/(r.length-1);r.forEach((i,c)=>{i.length={value:`${s*c}`,type:"%"}})}return{gradientAST:t,hasGradient:n}}function Fst(e,t){return{...e,colorStops:t.map(({position:n,color:o})=>{const{r,g:s,b:i,a:c}=an(o).toRgb();return{length:{type:"%",value:n?.toString()},type:c<1?"rgba":"rgb",value:c<1?[`${r}`,`${s}`,`${i}`,`${c}`]:[`${r}`,`${s}`,`${i}`]}})}}function $st(e){switch(e.type){case"hex":return`#${e.value}`;case"literal":return e.value;case"rgb":case"rgba":return`${e.type}(${e.value.join(",")})`;default:return"transparent"}}const Vst=He(eu,{target:"e10bzpgi1"})({name:"1gvx10y",styles:"flex-grow:5"}),Hst=He(eu,{target:"e10bzpgi0"})({name:"1gvx10y",styles:"flex-grow:5"}),Ust=({gradientAST:e,hasGradient:t,onChange:n})=>{var o;const r=(o=e?.orientation?.value)!==null&&o!==void 0?o:Tst,s=i=>{n(_z({...e,orientation:{type:"angular",value:`${i}`}}))};return a.jsx(ktt,{onChange:s,value:t?r:""})},Xst=({gradientAST:e,hasGradient:t,onChange:n})=>{const{type:o}=e,r=()=>{n(_z({...e,orientation:e.orientation?void 0:Rfe,type:"linear-gradient"}))},s=()=>{const{orientation:c,...l}=e;n(_z({...l,type:"radial-gradient"}))},i=c=>{c==="linear-gradient"&&r(),c==="radial-gradient"&&s()};return a.jsx(Pn,{__nextHasNoMarginBottom:!0,className:"components-custom-gradient-picker__type-picker",label:m("Type"),labelPosition:"top",onChange:i,options:Est,size:"__unstable-large",value:t?o:void 0})};function Gst({value:e,onChange:t,enableAlpha:n=!0,__experimentalIsRenderedInSidebar:o=!1}){const{gradientAST:r,hasGradient:s}=Dst(e),i=jst(r),c=r.colorStops.map(l=>({color:$st(l),position:parseInt(l.length.value)}));return a.jsxs(dt,{spacing:4,className:"components-custom-gradient-picker",children:[a.jsx(qfe,{__experimentalIsRenderedInSidebar:o,disableAlpha:!n,background:i,hasGradient:s,value:c,onChange:l=>{t(_z(Fst(r,l)))}}),a.jsxs(Yo,{gap:3,className:"components-custom-gradient-picker__ui-line",children:[a.jsx(Vst,{children:a.jsx(Xst,{gradientAST:r,hasGradient:s,onChange:t})}),a.jsx(Hst,{children:r.type==="linear-gradient"&&a.jsx(Ust,{gradientAST:r,hasGradient:s,onChange:t})})]})]})}const Kst=e=>Array.isArray(e.gradients)&&!("gradient"in e),Yst=e=>e.length>0&&e.every(t=>Kst(t));function Tfe({className:e,clearGradient:t,gradients:n,onChange:o,value:r,...s}){const i=x.useMemo(()=>n.map(({gradient:c,name:l,slug:u},d)=>a.jsx(G0.Option,{value:c,isSelected:r===c,tooltipText:l||xe(m("Gradient code: %s"),c),style:{color:"rgba( 0,0,0,0 )",background:c},onClick:r===c?t:()=>o(c,d),"aria-label":l?xe(m("Gradient: %s"),l):xe(m("Gradient code: %s"),c)},u)),[n,r,o,t]);return a.jsx(G0.OptionGroup,{className:e,options:i,...s})}function Efe({className:e,clearGradient:t,gradients:n,onChange:o,value:r,headingLevel:s}){const i=vt(Efe);return a.jsx(dt,{spacing:3,className:e,children:n.map(({name:c,gradients:l},u)=>{const d=`color-palette-${i}-${u}`;return a.jsxs(dt,{spacing:2,children:[a.jsx(Qpe,{level:s,id:d,children:c}),a.jsx(Tfe,{clearGradient:t,gradients:l,onChange:p=>o(p,u),value:r,"aria-labelledby":d})]},u)})})}function Zst(e){const{asButtons:t,loop:n,actions:o,headingLevel:r,"aria-label":s,"aria-labelledby":i,...c}=e,l=Yst(e.gradients)?a.jsx(Efe,{headingLevel:r,...c}):a.jsx(Tfe,{...c});let u;if(t)u={asButtons:!0};else{const d={asButtons:!1,loop:n};s?u={...d,"aria-label":s}:i?u={...d,"aria-labelledby":i}:u={...d,"aria-label":m("Custom color picker.")}}return a.jsx(G0,{...u,actions:o,options:l})}function Qst({className:e,gradients:t=[],onChange:n,value:o,clearable:r=!0,enableAlpha:s=!0,disableCustomGradients:i=!1,__experimentalIsRenderedInSidebar:c,headingLevel:l=2,...u}){const d=x.useCallback(()=>n(void 0),[n]);return a.jsxs(dt,{spacing:t.length?4:0,children:[!i&&a.jsx(Gst,{__experimentalIsRenderedInSidebar:c,enableAlpha:s,value:o,onChange:n}),(t.length>0||r)&&a.jsx(Zst,{...u,className:e,clearGradient:d,gradients:t,onChange:n,value:o,actions:r&&!i&&a.jsx(G0.ButtonAction,{onClick:d,accessibleWhenDisabled:!0,disabled:!o,children:m("Clear")}),headingLevel:l})]})}const Jst=()=>{},eit=["menuitem","menuitemradio","menuitemcheckbox"];function tit(e,t,n){const o=e+n;return o<0?t+o:o>=t?o-t:o}class nit extends x.Component{constructor(t){super(t),this.onKeyDown=this.onKeyDown.bind(this),this.bindContainer=this.bindContainer.bind(this),this.getFocusableContext=this.getFocusableContext.bind(this),this.getFocusableIndex=this.getFocusableIndex.bind(this)}componentDidMount(){this.container&&this.container.addEventListener("keydown",this.onKeyDown)}componentWillUnmount(){this.container&&this.container.removeEventListener("keydown",this.onKeyDown)}bindContainer(t){const{forwardedRef:n}=this.props;this.container=t,typeof n=="function"?n(t):n&&"current"in n&&(n.current=t)}getFocusableContext(t){if(!this.container)return null;const{onlyBrowserTabstops:n}=this.props,r=(n?Xr.tabbable:Xr.focusable).find(this.container),s=this.getFocusableIndex(r,t);return s>-1&&t?{index:s,target:t,focusables:r}:null}getFocusableIndex(t,n){return t.indexOf(n)}onKeyDown(t){this.props.onKeyDown&&this.props.onKeyDown(t);const{getFocusableContext:n}=this,{cycle:o=!0,eventToOffset:r,onNavigate:s=Jst,stopNavigationEvents:i}=this.props,c=r(t);if(c!==void 0&&i){t.stopImmediatePropagation();const b=t.target?.getAttribute("role");!!b&&eit.includes(b)&&t.preventDefault()}if(!c)return;const l=t.target?.ownerDocument?.activeElement;if(!l)return;const u=n(l);if(!u)return;const{index:d,focusables:p}=u,f=o?tit(d,p.length,c):d+c;f>=0&&f<p.length&&(p[f].focus(),s(f,p[f]),t.code==="Tab"&&t.preventDefault())}render(){const{children:t,stopNavigationEvents:n,eventToOffset:o,onNavigate:r,onKeyDown:s,cycle:i,onlyBrowserTabstops:c,forwardedRef:l,...u}=this.props;return a.jsx("div",{ref:this.bindContainer,...u,children:t})}}const Wfe=(e,t)=>a.jsx(nit,{...e,forwardedRef:t});Wfe.displayName="NavigableContainer";const oit=x.forwardRef(Wfe);function rit({role:e="menu",orientation:t="vertical",...n},o){const r=s=>{const{code:i}=s;let c=["ArrowDown"],l=["ArrowUp"];if(t==="horizontal"&&(c=["ArrowRight"],l=["ArrowLeft"]),t==="both"&&(c=["ArrowRight","ArrowDown"],l=["ArrowLeft","ArrowUp"]),c.includes(i))return 1;if(l.includes(i))return-1;if(["ArrowDown","ArrowUp","ArrowLeft","ArrowRight"].includes(i))return 0};return a.jsx(oit,{ref:o,stopNavigationEvents:!0,onlyBrowserTabstops:!1,role:e,"aria-orientation":e!=="presentation"&&(t==="vertical"||t==="horizontal")?t:void 0,eventToOffset:r,...n})}const pm=x.forwardRef(rit);function HC(e={},t={}){const n={...e,...t};return t.className&&e.className&&(n.className=oe(t.className,e.className)),n}function HY(e){return typeof e=="function"}function sit(e){const{children:t,className:n,controls:o,icon:r=mde,label:s,popoverProps:i,toggleProps:c,menuProps:l,disableOpenOnArrowDown:u=!1,text:d,noIcons:p,open:f,defaultOpen:b,onToggle:h,variant:g}=vn(e,"DropdownMenu");if(!o?.length&&!HY(t))return null;let z;o?.length&&(z=o,Array.isArray(z[0])||(z=[o]));const A=HC({className:"components-dropdown-menu__popover",variant:g},i);return a.jsx(so,{className:n,popoverProps:A,renderToggle:({isOpen:_,onToggle:v})=>{var M;const y=R=>{u||!_&&R.code==="ArrowDown"&&(R.preventDefault(),v())},{as:k=Ce,...S}=c??{},C=HC({className:oe("components-dropdown-menu__toggle",{"is-opened":_})},S);return a.jsx(k,{...C,icon:r,onClick:R=>{v(),C.onClick&&C.onClick(R)},onKeyDown:R=>{y(R),C.onKeyDown&&C.onKeyDown(R)},"aria-haspopup":"true","aria-expanded":_,label:s,text:d,showTooltip:(M=c?.showTooltip)!==null&&M!==void 0?M:!0,children:C.children})},renderContent:_=>{const v=HC({"aria-label":s,className:oe("components-dropdown-menu__menu",{"no-icons":p})},l);return a.jsxs(pm,{...v,role:"menu",children:[HY(t)?t(_):null,z?.flatMap((M,y)=>M.map((k,S)=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:C=>{C.stopPropagation(),_.onClose(),k.onClick&&k.onClick()},className:oe("components-dropdown-menu__menu-item",{"has-separator":y>0&&S===0,"is-active":k.isActive,"is-icon-only":!k.title}),icon:k.icon,label:k.label,"aria-checked":k.role==="menuitemcheckbox"||k.role==="menuitemradio"?k.isActive:void 0,role:k.role==="menuitemcheckbox"||k.role==="menuitemradio"?k.role:"menuitem",accessibleWhenDisabled:!0,disabled:k.isDisabled,children:k.title},[y,S].join())))]})},open:f,defaultOpen:b,onToggle:h})}const c0=YL(sit,"DropdownMenu"),iit=({__next40pxDefaultSize:e})=>!e&&Xe("height:28px;padding-left:",Je(1),";padding-right:",Je(1),";",""),ait=He(Yo,{target:"evuatpg0"})("height:38px;padding-left:",Je(2),";padding-right:",Je(2),";",iit,";");function cit(e,t){const{value:n,isExpanded:o,instanceId:r,selectedSuggestionIndex:s,className:i,onChange:c,onFocus:l,onBlur:u,...d}=e,[p,f]=x.useState(!1),b=n?n.length+1:0,h=A=>{c&&c({value:A.target.value})},g=A=>{f(!0),l?.(A)},z=A=>{f(!1),u?.(A)};return a.jsx("input",{ref:t,id:`components-form-token-input-${r}`,type:"text",...d,value:n||"",onChange:h,onFocus:g,onBlur:z,size:b,className:oe(i,"components-form-token-field__input"),autoComplete:"off",role:"combobox","aria-expanded":o,"aria-autocomplete":"list","aria-owns":o?`components-form-token-suggestions-${r}`:void 0,"aria-activedescendant":p&&s!==-1&&o?`components-form-token-suggestions-${r}-${s}`:void 0,"aria-describedby":`components-form-token-suggestions-howto-${r}`})}const Nfe=x.forwardRef(cit),lit=e=>{e.preventDefault()};function Bfe({selectedIndex:e,scrollIntoView:t,match:n,onHover:o,onSelect:r,suggestions:s=[],displayTransform:i,instanceId:c,__experimentalRenderItem:l}){const u=Mn(b=>(e>-1&&t&&b.children[e]&&b.children[e].scrollIntoView({behavior:"instant",block:"nearest",inline:"nearest"}),()=>{}),[e,t]),d=b=>()=>{o?.(b)},p=b=>()=>{r?.(b)},f=b=>{const h=i(n).toLocaleLowerCase();if(h.length===0)return null;const g=i(b),z=g.toLocaleLowerCase().indexOf(h);return{suggestionBeforeMatch:g.substring(0,z),suggestionMatch:g.substring(z,z+h.length),suggestionAfterMatch:g.substring(z+h.length)}};return a.jsxs("ul",{ref:u,className:"components-form-token-field__suggestions-list",id:`components-form-token-suggestions-${c}`,role:"listbox",children:[s.map((b,h)=>{const g=f(b),z=h===e,A=typeof b=="object"&&b?.disabled,_=typeof b=="object"&&"value"in b?b?.value:i(b),v=oe("components-form-token-field__suggestion",{"is-selected":z});let M;return typeof l=="function"?M=l({item:b}):g?M=a.jsxs("span",{"aria-label":i(b),children:[g.suggestionBeforeMatch,a.jsx("strong",{className:"components-form-token-field__suggestion-match",children:g.suggestionMatch}),g.suggestionAfterMatch]}):M=i(b),a.jsx("li",{id:`components-form-token-suggestions-${c}-${h}`,role:"option",className:v,onMouseDown:lit,onClick:p(b),onMouseEnter:d(b),"aria-selected":h===e,"aria-disabled":A,children:M},_)}),s.length===0&&a.jsx("li",{className:"components-form-token-field__suggestion is-empty",children:m("No items found")})]})}const uit=Or(e=>t=>{const[n,o]=x.useState(void 0),r=x.useCallback(s=>o(()=>s?.handleFocusOutside?s.handleFocusOutside.bind(s):void 0),[]);return a.jsx("div",{...A0e(n),children:a.jsx(e,{ref:r,...t})})},"withFocusOutside"),dit=tp` from { transform: rotate(0deg); } to { transform: rotate(360deg); } - `,fit=He("svg",{target:"ea4tfvq2"})("width:",Ye.spinnerSize,"px;height:",Ye.spinnerSize,"px;display:inline-block;margin:5px 11px 0;position:relative;color:",Ze.theme.accent,";overflow:visible;opacity:1;background-color:transparent;"),Lfe={name:"9s4963",styles:"fill:transparent;stroke-width:1.5px"},bit=He("circle",{target:"ea4tfvq1"})(Lfe,";stroke:",Ze.gray[300],";"),hit=He("path",{target:"ea4tfvq0"})(Lfe,";stroke:currentColor;stroke-linecap:round;transform-origin:50% 50%;animation:1.4s linear infinite both ",pit,";");function mit({className:e,...t},n){return a.jsxs(fit,{className:oe("components-spinner",e),viewBox:"0 0 100 100",width:"16",height:"16",xmlns:"http://www.w3.org/2000/svg",role:"presentation",focusable:"false",...t,ref:n,children:[a.jsx(bit,{cx:"50",cy:"50",r:"50",vectorEffect:"non-scaling-stroke"}),a.jsx(hit,{d:"m 50 0 a 50 50 0 0 1 50 50",vectorEffect:"non-scaling-stroke"})]})}const Xn=x.forwardRef(mit),git=()=>{},Mit=dit(class extends x.Component{handleFocusOutside(e){this.props.onFocusOutside(e)}render(){return this.props.children}}),BA=(e,t)=>e===null?-1:t.indexOf(e);function nb(e){var t;const{__nextHasNoMarginBottom:n=!1,__next40pxDefaultSize:o=!1,value:r,label:s,options:i,onChange:c,onFilterValueChange:l=git,hideLabelFromVision:u,help:d,allowReset:p=!0,className:f,isLoading:b=!1,messages:h={selected:m("Item selected.")},__experimentalRenderItem:g,expandOnFocus:z=!0,placeholder:A}=sp(e),[_,v]=B3({value:r,onChange:c}),M=i.find(me=>me.value===_),y=(t=M?.label)!==null&&t!==void 0?t:"",k=vt(nb,"combobox-control"),[S,C]=x.useState(M||null),[R,T]=x.useState(!1),[E,B]=x.useState(!1),[N,j]=x.useState(""),I=x.useRef(null),P=x.useMemo(()=>{const me=[],de=[],Ae=gY(N);return i.forEach(ye=>{const Ne=gY(ye.label).indexOf(Ae);Ne===0?me.push(ye):Ne>0&&de.push(ye)}),me.concat(de)},[N,i]),$=me=>{me.disabled||(v(me.value),Yt(h.selected,"assertive"),C(me),j(""),T(!1))},F=(me=1)=>{let Ae=BA(S,P)+me;Ae<0?Ae=P.length-1:Ae>=P.length&&(Ae=0),C(P[Ae]),T(!0)},X=J3(me=>{let de=!1;if(!me.defaultPrevented){switch(me.code){case"Enter":S&&($(S),de=!0);break;case"ArrowUp":F(-1),de=!0;break;case"ArrowDown":F(1),de=!0;break;case"Escape":T(!1),C(null),de=!0;break}de&&me.preventDefault()}}),Z=()=>{B(!1)},V=()=>{B(!0),z&&T(!0),l(""),j("")},ee=()=>{T(!0)},te=()=>{T(!1)},J=me=>{const de=me.value;j(de),l(de),E&&T(!0)},ue=()=>{v(null),I.current?.focus()},ce=me=>{me.stopPropagation()};return x.useEffect(()=>{const me=P.length>0,de=BA(S,P)>0;me&&!de&&C(P[0])},[P,S]),x.useEffect(()=>{const me=P.length>0;if(R){const de=me?xe(Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",P.length),P.length):m("No results.");Yt(de,"polite")}},[P,R]),q1({componentName:"ComboboxControl",__next40pxDefaultSize:o,size:void 0}),a.jsx(Mit,{onFocusOutside:te,children:a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"ComboboxControl",className:oe(f,"components-combobox-control"),label:s,id:`components-form-token-input-${k}`,hideLabelFromVision:u,help:d,children:a.jsxs("div",{className:"components-combobox-control__suggestions-container",tabIndex:-1,onKeyDown:X,children:[a.jsxs(cit,{__next40pxDefaultSize:o,children:[a.jsx(tu,{children:a.jsx(Nfe,{className:"components-combobox-control__input",instanceId:k,ref:I,placeholder:A,value:R?N:y,onFocus:V,onBlur:Z,onClick:ee,isExpanded:R,selectedSuggestionIndex:BA(S,P),onChange:J})}),b&&a.jsx(Xn,{}),p&&a.jsx(Ce,{size:"small",icon:rp,disabled:!_,onClick:ue,onKeyDown:ce,label:m("Reset")})]}),R&&!b&&a.jsx(Bfe,{instanceId:k,match:{label:N,value:""},displayTransform:me=>me.label,suggestions:P,selectedIndex:BA(S,P),onHover:C,onSelect:$,scrollIntoView:!0,__experimentalRenderItem:g})]})})})}const zit=new Set(["alert","status","log","marquee","timer"]),Pfe=[];function Oit(e){const t=Array.from(document.body.children),n=[];Pfe.push(n);for(const o of t)o!==e&&yit(o)&&(o.setAttribute("aria-hidden","true"),n.push(o))}function yit(e){const t=e.getAttribute("role");return!(e.tagName==="SCRIPT"||e.hasAttribute("hidden")||e.hasAttribute("aria-hidden")||e.hasAttribute("aria-live")||t&&zit.has(t))}function Ait(){const e=Pfe.pop();if(e)for(const t of e)t.removeAttribute("aria-hidden")}const vit=Ye.transitionDuration,xit=Number.parseInt(Ye.transitionDuration),wit="components-modal__disappear-animation";function _it(){const e=x.useRef(),[t,n]=x.useState(!1),o=$1(),r=x.useCallback(()=>new Promise(s=>{const i=e.current;if(o){s();return}if(!i){globalThis.SCRIPT_DEBUG===!0&&zn("wp.components.Modal: the Modal component can't be closed with an exit animation because of a missing reference to the modal frame element."),s();return}let c;const l=()=>new Promise(d=>{c=p=>{p.animationName===wit&&d()},i.addEventListener("animationend",c),n(!0)}),u=()=>new Promise(d=>{setTimeout(()=>d(),xit*1.2)});Promise.race([l(),u()]).then(()=>{c&&i.removeEventListener("animationend",c),n(!1),s()})}),[o]);return{overlayClassname:t?"is-animating-out":void 0,frameRef:e,frameStyle:{"--modal-frame-animation-duration":`${vit}`},closeModal:r}}const UY=x.createContext(new Set),qg=new Map;function kit(e,t){const{bodyOpenClassName:n="modal-open",role:o="dialog",title:r=null,focusOnMount:s=!0,shouldCloseOnEsc:i=!0,shouldCloseOnClickOutside:c=!0,isDismissible:l=!0,aria:u={labelledby:void 0,describedby:void 0},onRequestClose:d,icon:p,closeButtonLabel:f,children:b,style:h,overlayClassName:g,className:z,contentLabel:A,onKeyDown:_,isFullScreen:v=!1,size:M,headerActions:y=null,__experimentalHideHeader:k=!1}=e,S=x.useRef(),C=vt(Zo),R=r?`components-modal-header-${C}`:u.labelledby,T=E5(s==="firstContentElement"?"firstElement":s),E=$N(),B=HN(),N=x.useRef(null),j=x.useRef(null),[I,P]=x.useState(!1),[$,F]=x.useState(!1);let X;v||M==="fill"?X="is-full-screen":M&&(X=`has-size-${M}`);const Z=x.useCallback(()=>{if(!N.current)return;const ie=ps(N.current);N.current===ie?F(!0):F(!1)},[N]);x.useEffect(()=>(Oit(S.current),()=>Ait()),[]);const V=x.useRef();x.useEffect(()=>{V.current=d},[d]);const ee=x.useContext(UY),[te]=x.useState(()=>new Set);x.useEffect(()=>{ee.add(V);for(const ie of ee)ie!==V&&ie.current?.();return()=>{for(const ie of te)ie.current?.();ee.delete(V)}},[ee,te]),x.useEffect(()=>{var ie;const we=n,re=1+((ie=qg.get(we))!==null&&ie!==void 0?ie:0);return qg.set(we,re),document.body.classList.add(n),()=>{const pe=qg.get(we)-1;pe===0?(document.body.classList.remove(we),qg.delete(we)):qg.set(we,pe)}},[n]);const{closeModal:J,frameRef:ue,frameStyle:ce,overlayClassname:me}=_it();x.useLayoutEffect(()=>{if(!window.ResizeObserver||!j.current)return;const ie=new ResizeObserver(Z);return ie.observe(j.current),Z(),()=>{ie.disconnect()}},[Z,j]);function de(ie){i&&(ie.code==="Escape"||ie.key==="Escape")&&!ie.defaultPrevented&&(ie.preventDefault(),J().then(()=>d(ie)))}const Ae=x.useCallback(ie=>{var we;const re=(we=ie?.currentTarget?.scrollTop)!==null&&we!==void 0?we:-1;!I&&re>0?P(!0):I&&re<=0&&P(!1)},[I]);let ye=null;const Ne={onPointerDown:ie=>{ie.target===ie.currentTarget&&(ye=ie.target,ie.preventDefault())},onPointerUp:({target:ie,button:we})=>{const re=ie===ye;ye=null,we===0&&re&&J().then(()=>d())}},je=a.jsx("div",{ref:xn([S,t]),className:oe("components-modal__screen-overlay",me,g),onKeyDown:J3(de),...c?Ne:{},children:a.jsx(Jf,{document,children:a.jsx("div",{className:oe("components-modal__frame",X,z),style:{...ce,...h},ref:xn([ue,E,B,s!=="firstContentElement"?T:null]),role:o,"aria-label":A,"aria-labelledby":A?void 0:R,"aria-describedby":u.describedby,tabIndex:-1,onKeyDown:_,children:a.jsxs("div",{className:oe("components-modal__content",{"hide-header":k,"is-scrollable":$,"has-scrolled-content":I}),role:"document",onScroll:Ae,ref:N,"aria-label":$?m("Scrollable section"):void 0,tabIndex:$?0:void 0,children:[!k&&a.jsxs("div",{className:"components-modal__header",children:[a.jsxs("div",{className:"components-modal__header-heading-container",children:[p&&a.jsx("span",{className:"components-modal__icon-container","aria-hidden":!0,children:p}),r&&a.jsx("h1",{id:R,className:"components-modal__header-heading",children:r})]}),y,l&&a.jsxs(a.Fragment,{children:[a.jsx(t1,{marginBottom:0,marginLeft:2}),a.jsx(Ce,{size:"compact",onClick:ie=>J().then(()=>d(ie)),icon:im,label:f||m("Close")})]})]}),a.jsx("div",{ref:xn([j,s==="firstContentElement"?T:null]),children:b})]})})})});return hs.createPortal(a.jsx(UY.Provider,{value:te,children:je}),document.body)}const Zo=x.forwardRef(kit),Sit={name:"7g5ii0",styles:"&&{z-index:1000001;}"},Cit=(e,t)=>{const{isOpen:n,onConfirm:o,onCancel:r,children:s,confirmButtonText:i,cancelButtonText:c,...l}=vn(e,"ConfirmDialog"),d=ro()(Sit),p=x.useRef(),f=x.useRef(),[b,h]=x.useState(),[g,z]=x.useState();x.useEffect(()=>{const y=typeof n<"u";h(y?n:!0),z(!y)},[n]);const A=x.useCallback(y=>k=>{y?.(k),g&&h(!1)},[g,h]),_=x.useCallback(y=>{!(y.target===p.current||y.target===f.current)&&y.key==="Enter"&&A(o)(y)},[A,o]),v=c??m("Cancel"),M=i??m("OK");return a.jsx(a.Fragment,{children:b&&a.jsx(Zo,{onRequestClose:A(r),onKeyDown:_,closeButtonLabel:v,isDismissible:!0,ref:t,overlayClassName:d,__experimentalHideHeader:!0,...l,children:a.jsxs(dt,{spacing:8,children:[a.jsx(Sn,{children:s}),a.jsxs(Yo,{direction:"row",justify:"flex-end",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,ref:p,variant:"tertiary",onClick:A(r),children:v}),a.jsx(Ce,{__next40pxDefaultSize:!0,ref:f,variant:"primary",onClick:A(o),children:M})]})]})})})},wf=Rn(Cit,"ConfirmDialog"),G8={SLIDE_AMOUNT:"2px",DURATION:"400ms",EASING:"cubic-bezier( 0.16, 1, 0.3, 1 )"},gi={compact:Ye.controlPaddingXSmall,small:Ye.controlPaddingXSmall,default:Ye.controlPaddingX},qit=(e,t)=>{const n={compact:{[t]:32,paddingInlineStart:gi.compact,paddingInlineEnd:gi.compact+CM},default:{[t]:40,paddingInlineStart:gi.default,paddingInlineEnd:gi.default+CM},small:{[t]:24,paddingInlineStart:gi.small,paddingInlineEnd:gi.small+CM}};return n[e]||n.default},Rit=e=>{const n={compact:{paddingInlineStart:gi.compact,paddingInlineEnd:gi.compact-6},default:{paddingInlineStart:gi.default,paddingInlineEnd:gi.default-6},small:{paddingInlineStart:gi.small,paddingInlineEnd:gi.small-6}};return n[e]||n.default},Tit=He(iVe,{shouldForwardProp:e=>e!=="hasCustomRenderProp",target:"e1p3eej77"})(({size:e,hasCustomRenderProp:t})=>Xe("display:block;background-color:",Ze.theme.background,";border:none;color:",Ze.theme.foreground,";cursor:pointer;font-family:inherit;text-align:start;user-select:none;width:100%;&[data-focus-visible]{outline:none;}",qit(e,t?"minHeight":"height")," ",!t&&jfe," ",ej({inputSize:e}),";",""),""),Eit=tp({"0%":{opacity:0,transform:`translateY(-${G8.SLIDE_AMOUNT})`},"100%":{opacity:1,transform:"translateY(0)"}}),Wit=He(OVe,{target:"e1p3eej76"})("display:flex;flex-direction:column;background-color:",Ze.theme.background,";border-radius:",Ye.radiusSmall,";border:1px solid ",Ze.theme.foreground,";box-shadow:",Ye.elevationMedium,";z-index:1000000;max-height:min( var( --popover-available-height, 400px ), 400px );overflow:auto;overscroll-behavior:contain;min-width:min-content;&[data-open]{@media not ( prefers-reduced-motion ){animation-duration:",G8.DURATION,";animation-timing-function:",G8.EASING,";animation-name:",Eit,";will-change:transform,opacity;}}&[data-focus-visible]{outline:none;}"),Nit=He(fVe,{target:"e1p3eej75"})(({size:e})=>Xe("cursor:default;display:flex;align-items:center;justify-content:space-between;font-size:",Ye.fontSize,";line-height:28px;padding-block:",Je(2),";scroll-margin:",Je(1),";user-select:none;&[aria-disabled='true']{cursor:not-allowed;}&[data-active-item]{background-color:",Ze.theme.gray[300],";}",Rit(e),";",""),""),jfe={name:"1h52dri",styles:"overflow:hidden;text-overflow:ellipsis;white-space:nowrap"},Bit=He("div",{target:"e1p3eej74"})(jfe,";"),Lit=He("span",{target:"e1p3eej73"})("color:",Ze.theme.gray[600],";margin-inline-start:",Je(2),";"),Ife=He("div",{target:"e1p3eej72"})("display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;flex:1;column-gap:",Je(4),";"),Pit=He("span",{target:"e1p3eej71"})("color:",Ze.theme.gray[600],";text-align:initial;line-height:",Ye.fontLineHeightBase,";padding-inline-end:",Je(1),";margin-block:",Je(1),";"),jit=He(lVe,{target:"e1p3eej70"})("display:flex;align-items:center;margin-inline-start:",Je(2),";align-self:start;margin-block-start:2px;font-size:0;",Ife,"~&,&:not(:empty){font-size:24px;}"),Dfe=x.createContext(void 0);function Iit(e){return(Array.isArray(e)?e.length===0:e==null)?m("Select an item"):Array.isArray(e)?e.length===1?e[0]:xe(m("%s items selected"),e.length):e}const Dit=({renderSelectedValue:e,size:t="default",store:n,...o})=>{const{value:r}=Hn(n),s=x.useMemo(()=>e??Iit,[e]);return a.jsx(Tit,{...o,size:t,hasCustomRenderProp:!!e,store:n,children:s(r)})};function Fit(e){const{children:t,hideLabelFromVision:n=!1,label:o,size:r,store:s,className:i,isLegacy:c=!1,...l}=e,u=x.useCallback(p=>{c&&p.stopPropagation()},[c]),d=x.useMemo(()=>({store:s,size:r}),[s,r]);return a.jsxs("div",{className:i,children:[a.jsx(mVe,{store:s,render:n?a.jsx(qn,{}):a.jsx(no.VisualLabel,{as:"div"}),children:o}),a.jsxs(tj,{__next40pxDefaultSize:!0,size:r,suffix:a.jsx(Ipe,{}),children:[a.jsx(Dit,{...l,size:r,store:s,showOnKeyDown:!c}),a.jsx(Wit,{gutter:12,store:s,sameWidth:!0,slide:!1,onKeyDown:u,flip:!c,children:a.jsx(Dfe.Provider,{value:d,children:t})})]})]})}function Ffe({children:e,...t}){var n;const o=x.useContext(Dfe);return a.jsxs(Nit,{store:o?.store,size:(n=o?.size)!==null&&n!==void 0?n:"default",...t,children:[e??t.value,a.jsx(jit,{children:a.jsx(wn,{icon:M0})})]})}Ffe.displayName="CustomSelectControlV2.Item";function $it({__experimentalShowSelectedHint:e,...t}){return{showSelectedHint:e,...t}}function XY({__experimentalHint:e,...t}){return{hint:e,...t}}function Vit(e,t){return t||xe(m("Currently selected: %s"),e)}function ob(e){const{__next40pxDefaultSize:t=!1,__shouldNotWarnDeprecated36pxSize:n,describedBy:o,options:r,onChange:s,size:i="default",value:c,className:l,showSelectedHint:u=!1,...d}=$it(e);q1({componentName:"CustomSelectControl",__next40pxDefaultSize:t,size:i,__shouldNotWarnDeprecated36pxSize:n});const p=vt(ob,"custom-select-control__description"),f=J$e({async setValue(A){const _=r.find(y=>y.name===A);if(!s||!_)return;await Promise.resolve();const v=f.getState(),M={highlightedIndex:v.renderedItems.findIndex(y=>y.value===A),inputValue:"",isOpen:v.open,selectedItem:_,type:""};s(M)},value:c?.name,defaultValue:r[0]?.name}),b=r.map(XY).map(({name:A,key:_,hint:v,style:M,className:y})=>{const k=a.jsxs(Ife,{children:[a.jsx("span",{children:A}),a.jsx(Pit,{className:"components-custom-select-control__item-hint",children:v})]});return a.jsx(Ffe,{value:A,children:v?k:A,style:M,className:oe(y,"components-custom-select-control__item",{"has-hint":v})},_)}),h=Hn(f,"value"),g=()=>{const A=r?.map(XY)?.find(({name:_})=>h===_)?.hint;return a.jsxs(Bit,{children:[h,A&&a.jsx(Lit,{className:"components-custom-select-control__hint",children:A})]})},z=t&&i==="default"||i==="__unstable-large"?"default":!t&&i==="default"?"compact":i;return a.jsxs(a.Fragment,{children:[a.jsx(Fit,{"aria-describedby":p,renderSelectedValue:u?g:void 0,size:z,store:f,className:oe("components-custom-select-control",l),isLegacy:!0,...d,children:b}),a.jsx(qn,{children:a.jsx("span",{id:p,children:Vit(h,o)})})]})}function In(e){const t=Object.prototype.toString.call(e);return e instanceof Date||typeof e=="object"&&t==="[object Date]"?new e.constructor(+e):typeof e=="number"||t==="[object Number]"||typeof e=="string"||t==="[object String]"?new Date(e):new Date(NaN)}function Os(e,t){return e instanceof Date?new e.constructor(t):new Date(t)}function K8(e,t){const n=In(e);return isNaN(t)?Os(e,NaN):(t&&n.setDate(n.getDate()+t),n)}function rf(e,t){const n=In(e);if(isNaN(t))return Os(e,NaN);if(!t)return n;const o=n.getDate(),r=Os(e,n.getTime());r.setMonth(n.getMonth()+t+1,0);const s=r.getDate();return o>=s?r:(n.setFullYear(r.getFullYear(),r.getMonth(),o),n)}const $fe=6048e5,Hit=864e5,Vfe=6e4,Hfe=36e5;let Uit={};function rO(){return Uit}function sa(e,t){const n=rO(),o=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??n.weekStartsOn??n.locale?.options?.weekStartsOn??0,r=In(e),s=r.getDay(),i=(s<o?7:0)+s-o;return r.setDate(r.getDate()-i),r.setHours(0,0,0,0),r}function Ax(e){return sa(e,{weekStartsOn:1})}function Ufe(e){const t=In(e),n=t.getFullYear(),o=Os(e,0);o.setFullYear(n+1,0,4),o.setHours(0,0,0,0);const r=Ax(o),s=Os(e,0);s.setFullYear(n,0,4),s.setHours(0,0,0,0);const i=Ax(s);return t.getTime()>=r.getTime()?n+1:t.getTime()>=i.getTime()?n:n-1}function hi(e){const t=In(e);return t.setHours(0,0,0,0),t}function GY(e){const t=In(e),n=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return n.setUTCFullYear(t.getFullYear()),+e-+n}function Xit(e,t){const n=hi(e),o=hi(t),r=+n-GY(n),s=+o-GY(o);return Math.round((r-s)/Hit)}function Git(e){const t=Ufe(e),n=Os(e,0);return n.setFullYear(t,0,4),n.setHours(0,0,0,0),Ax(n)}function fj(e,t){const n=t*7;return K8(e,n)}function Xfe(e,t){return rf(e,t*12)}function KY(e,t){const n=hi(e),o=hi(t);return+n==+o}function Kit(e){return e instanceof Date||typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"}function Yit(e){if(!Kit(e)&&typeof e!="number")return!1;const t=In(e);return!isNaN(Number(t))}function Y8(e){const t=In(e),n=t.getMonth();return t.setFullYear(t.getFullYear(),n+1,0),t.setHours(23,59,59,999),t}function LA(e,t){const n=In(e.start),o=In(e.end);let r=+n>+o;const s=r?+n:+o,i=r?o:n;i.setHours(0,0,0,0);let c=1;const l=[];for(;+i<=s;)l.push(In(i)),i.setDate(i.getDate()+c),i.setHours(0,0,0,0);return r?l.reverse():l}function YY(e){const t=In(e);return t.setSeconds(0,0),t}function Zit(e,t){const n=In(e.start),o=In(e.end);let r=+n>+o;const s=r?+n:+o,i=r?o:n;i.setHours(0,0,0,0),i.setDate(1);let c=1;const l=[];for(;+i<=s;)l.push(In(i)),i.setMonth(i.getMonth()+c);return r?l.reverse():l}function Qit(e,t){const n=In(e.start),o=In(e.end);let r=+n>+o;const s=sa(r?o:n,t),i=sa(r?n:o,t);s.setHours(15),i.setHours(15);const c=+i.getTime();let l=s,u=t?.step??1;if(!u)return[];u<0&&(u=-u,r=!r);const d=[];for(;+l<=c;)l.setHours(0),d.push(In(l)),l=fj(l,u),l.setHours(15);return r?d.reverse():d}function vx(e){const t=In(e);return t.setDate(1),t.setHours(0,0,0,0),t}function Jit(e){const t=In(e),n=Os(e,0);return n.setFullYear(t.getFullYear(),0,1),n.setHours(0,0,0,0),n}function Gfe(e,t){const n=rO(),o=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??n.weekStartsOn??n.locale?.options?.weekStartsOn??0,r=In(e),s=r.getDay(),i=(s<o?-7:0)+6-(s-o);return r.setDate(r.getDate()+i),r.setHours(23,59,59,999),r}const eat={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},tat=(e,t,n)=>{let o;const r=eat[e];return typeof r=="string"?o=r:t===1?o=r.one:o=r.other.replace("{{count}}",t.toString()),n?.addSuffix?n.comparison&&n.comparison>0?"in "+o:o+" ago":o};function XC(e){return(t={})=>{const n=t.width?String(t.width):e.defaultWidth;return e.formats[n]||e.formats[e.defaultWidth]}}const nat={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},oat={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},rat={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},sat={date:XC({formats:nat,defaultWidth:"full"}),time:XC({formats:oat,defaultWidth:"full"}),dateTime:XC({formats:rat,defaultWidth:"full"})},iat={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},aat=(e,t,n,o)=>iat[e];function Rg(e){return(t,n)=>{const o=n?.context?String(n.context):"standalone";let r;if(o==="formatting"&&e.formattingValues){const i=e.defaultFormattingWidth||e.defaultWidth,c=n?.width?String(n.width):i;r=e.formattingValues[c]||e.formattingValues[i]}else{const i=e.defaultWidth,c=n?.width?String(n.width):e.defaultWidth;r=e.values[c]||e.values[i]}const s=e.argumentCallback?e.argumentCallback(t):t;return r[s]}}const cat={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},lat={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},uat={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},dat={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},pat={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},fat={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},bat=(e,t)=>{const n=Number(e),o=n%100;if(o>20||o<10)switch(o%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},hat={ordinalNumber:bat,era:Rg({values:cat,defaultWidth:"wide"}),quarter:Rg({values:lat,defaultWidth:"wide",argumentCallback:e=>e-1}),month:Rg({values:uat,defaultWidth:"wide"}),day:Rg({values:dat,defaultWidth:"wide"}),dayPeriod:Rg({values:pat,defaultWidth:"wide",formattingValues:fat,defaultFormattingWidth:"wide"})};function Tg(e){return(t,n={})=>{const o=n.width,r=o&&e.matchPatterns[o]||e.matchPatterns[e.defaultMatchWidth],s=t.match(r);if(!s)return null;const i=s[0],c=o&&e.parsePatterns[o]||e.parsePatterns[e.defaultParseWidth],l=Array.isArray(c)?gat(c,p=>p.test(i)):mat(c,p=>p.test(i));let u;u=e.valueCallback?e.valueCallback(l):l,u=n.valueCallback?n.valueCallback(u):u;const d=t.slice(i.length);return{value:u,rest:d}}}function mat(e,t){for(const n in e)if(Object.prototype.hasOwnProperty.call(e,n)&&t(e[n]))return n}function gat(e,t){for(let n=0;n<e.length;n++)if(t(e[n]))return n}function Mat(e){return(t,n={})=>{const o=t.match(e.matchPattern);if(!o)return null;const r=o[0],s=t.match(e.parsePattern);if(!s)return null;let i=e.valueCallback?e.valueCallback(s[0]):s[0];i=n.valueCallback?n.valueCallback(i):i;const c=t.slice(r.length);return{value:i,rest:c}}}const zat=/^(\d+)(th|st|nd|rd)?/i,Oat=/\d+/i,yat={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},Aat={any:[/^b/i,/^(a|c)/i]},vat={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},xat={any:[/1/i,/2/i,/3/i,/4/i]},wat={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},_at={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},kat={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},Sat={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},Cat={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},qat={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},Rat={ordinalNumber:Mat({matchPattern:zat,parsePattern:Oat,valueCallback:e=>parseInt(e,10)}),era:Tg({matchPatterns:yat,defaultMatchWidth:"wide",parsePatterns:Aat,defaultParseWidth:"any"}),quarter:Tg({matchPatterns:vat,defaultMatchWidth:"wide",parsePatterns:xat,defaultParseWidth:"any",valueCallback:e=>e+1}),month:Tg({matchPatterns:wat,defaultMatchWidth:"wide",parsePatterns:_at,defaultParseWidth:"any"}),day:Tg({matchPatterns:kat,defaultMatchWidth:"wide",parsePatterns:Sat,defaultParseWidth:"any"}),dayPeriod:Tg({matchPatterns:Cat,defaultMatchWidth:"any",parsePatterns:qat,defaultParseWidth:"any"})},Tat={code:"en-US",formatDistance:tat,formatLong:sat,formatRelative:aat,localize:hat,match:Rat,options:{weekStartsOn:0,firstWeekContainsDate:1}};function Eat(e){const t=In(e);return Xit(t,Jit(t))+1}function Wat(e){const t=In(e),n=+Ax(t)-+Git(t);return Math.round(n/$fe)+1}function Kfe(e,t){const n=In(e),o=n.getFullYear(),r=rO(),s=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??r.firstWeekContainsDate??r.locale?.options?.firstWeekContainsDate??1,i=Os(e,0);i.setFullYear(o+1,0,s),i.setHours(0,0,0,0);const c=sa(i,t),l=Os(e,0);l.setFullYear(o,0,s),l.setHours(0,0,0,0);const u=sa(l,t);return n.getTime()>=c.getTime()?o+1:n.getTime()>=u.getTime()?o:o-1}function Nat(e,t){const n=rO(),o=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??n.firstWeekContainsDate??n.locale?.options?.firstWeekContainsDate??1,r=Kfe(e,t),s=Os(e,0);return s.setFullYear(r,0,o),s.setHours(0,0,0,0),sa(s,t)}function Bat(e,t){const n=In(e),o=+sa(n,t)-+Nat(n,t);return Math.round(o/$fe)+1}function Wo(e,t){const n=e<0?"-":"",o=Math.abs(e).toString().padStart(t,"0");return n+o}const Tu={y(e,t){const n=e.getFullYear(),o=n>0?n:1-n;return Wo(t==="yy"?o%100:o,t.length)},M(e,t){const n=e.getMonth();return t==="M"?String(n+1):Wo(n+1,2)},d(e,t){return Wo(e.getDate(),t.length)},a(e,t){const n=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.toUpperCase();case"aaa":return n;case"aaaaa":return n[0];case"aaaa":default:return n==="am"?"a.m.":"p.m."}},h(e,t){return Wo(e.getHours()%12||12,t.length)},H(e,t){return Wo(e.getHours(),t.length)},m(e,t){return Wo(e.getMinutes(),t.length)},s(e,t){return Wo(e.getSeconds(),t.length)},S(e,t){const n=t.length,o=e.getMilliseconds(),r=Math.trunc(o*Math.pow(10,n-3));return Wo(r,t.length)}},Ub={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},ZY={G:function(e,t,n){const o=e.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return n.era(o,{width:"abbreviated"});case"GGGGG":return n.era(o,{width:"narrow"});case"GGGG":default:return n.era(o,{width:"wide"})}},y:function(e,t,n){if(t==="yo"){const o=e.getFullYear(),r=o>0?o:1-o;return n.ordinalNumber(r,{unit:"year"})}return Tu.y(e,t)},Y:function(e,t,n,o){const r=Kfe(e,o),s=r>0?r:1-r;if(t==="YY"){const i=s%100;return Wo(i,2)}return t==="Yo"?n.ordinalNumber(s,{unit:"year"}):Wo(s,t.length)},R:function(e,t){const n=Ufe(e);return Wo(n,t.length)},u:function(e,t){const n=e.getFullYear();return Wo(n,t.length)},Q:function(e,t,n){const o=Math.ceil((e.getMonth()+1)/3);switch(t){case"Q":return String(o);case"QQ":return Wo(o,2);case"Qo":return n.ordinalNumber(o,{unit:"quarter"});case"QQQ":return n.quarter(o,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(o,{width:"narrow",context:"formatting"});case"QQQQ":default:return n.quarter(o,{width:"wide",context:"formatting"})}},q:function(e,t,n){const o=Math.ceil((e.getMonth()+1)/3);switch(t){case"q":return String(o);case"qq":return Wo(o,2);case"qo":return n.ordinalNumber(o,{unit:"quarter"});case"qqq":return n.quarter(o,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(o,{width:"narrow",context:"standalone"});case"qqqq":default:return n.quarter(o,{width:"wide",context:"standalone"})}},M:function(e,t,n){const o=e.getMonth();switch(t){case"M":case"MM":return Tu.M(e,t);case"Mo":return n.ordinalNumber(o+1,{unit:"month"});case"MMM":return n.month(o,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(o,{width:"narrow",context:"formatting"});case"MMMM":default:return n.month(o,{width:"wide",context:"formatting"})}},L:function(e,t,n){const o=e.getMonth();switch(t){case"L":return String(o+1);case"LL":return Wo(o+1,2);case"Lo":return n.ordinalNumber(o+1,{unit:"month"});case"LLL":return n.month(o,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(o,{width:"narrow",context:"standalone"});case"LLLL":default:return n.month(o,{width:"wide",context:"standalone"})}},w:function(e,t,n,o){const r=Bat(e,o);return t==="wo"?n.ordinalNumber(r,{unit:"week"}):Wo(r,t.length)},I:function(e,t,n){const o=Wat(e);return t==="Io"?n.ordinalNumber(o,{unit:"week"}):Wo(o,t.length)},d:function(e,t,n){return t==="do"?n.ordinalNumber(e.getDate(),{unit:"date"}):Tu.d(e,t)},D:function(e,t,n){const o=Eat(e);return t==="Do"?n.ordinalNumber(o,{unit:"dayOfYear"}):Wo(o,t.length)},E:function(e,t,n){const o=e.getDay();switch(t){case"E":case"EE":case"EEE":return n.day(o,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(o,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(o,{width:"short",context:"formatting"});case"EEEE":default:return n.day(o,{width:"wide",context:"formatting"})}},e:function(e,t,n,o){const r=e.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(t){case"e":return String(s);case"ee":return Wo(s,2);case"eo":return n.ordinalNumber(s,{unit:"day"});case"eee":return n.day(r,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(r,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(r,{width:"short",context:"formatting"});case"eeee":default:return n.day(r,{width:"wide",context:"formatting"})}},c:function(e,t,n,o){const r=e.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(t){case"c":return String(s);case"cc":return Wo(s,t.length);case"co":return n.ordinalNumber(s,{unit:"day"});case"ccc":return n.day(r,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(r,{width:"narrow",context:"standalone"});case"cccccc":return n.day(r,{width:"short",context:"standalone"});case"cccc":default:return n.day(r,{width:"wide",context:"standalone"})}},i:function(e,t,n){const o=e.getDay(),r=o===0?7:o;switch(t){case"i":return String(r);case"ii":return Wo(r,t.length);case"io":return n.ordinalNumber(r,{unit:"day"});case"iii":return n.day(o,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(o,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(o,{width:"short",context:"formatting"});case"iiii":default:return n.day(o,{width:"wide",context:"formatting"})}},a:function(e,t,n){const r=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"aaaa":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},b:function(e,t,n){const o=e.getHours();let r;switch(o===12?r=Ub.noon:o===0?r=Ub.midnight:r=o/12>=1?"pm":"am",t){case"b":case"bb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"bbbb":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(e,t,n){const o=e.getHours();let r;switch(o>=17?r=Ub.evening:o>=12?r=Ub.afternoon:o>=4?r=Ub.morning:r=Ub.night,t){case"B":case"BB":case"BBB":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"BBBB":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(e,t,n){if(t==="ho"){let o=e.getHours()%12;return o===0&&(o=12),n.ordinalNumber(o,{unit:"hour"})}return Tu.h(e,t)},H:function(e,t,n){return t==="Ho"?n.ordinalNumber(e.getHours(),{unit:"hour"}):Tu.H(e,t)},K:function(e,t,n){const o=e.getHours()%12;return t==="Ko"?n.ordinalNumber(o,{unit:"hour"}):Wo(o,t.length)},k:function(e,t,n){let o=e.getHours();return o===0&&(o=24),t==="ko"?n.ordinalNumber(o,{unit:"hour"}):Wo(o,t.length)},m:function(e,t,n){return t==="mo"?n.ordinalNumber(e.getMinutes(),{unit:"minute"}):Tu.m(e,t)},s:function(e,t,n){return t==="so"?n.ordinalNumber(e.getSeconds(),{unit:"second"}):Tu.s(e,t)},S:function(e,t){return Tu.S(e,t)},X:function(e,t,n){const o=e.getTimezoneOffset();if(o===0)return"Z";switch(t){case"X":return JY(o);case"XXXX":case"XX":return Dp(o);case"XXXXX":case"XXX":default:return Dp(o,":")}},x:function(e,t,n){const o=e.getTimezoneOffset();switch(t){case"x":return JY(o);case"xxxx":case"xx":return Dp(o);case"xxxxx":case"xxx":default:return Dp(o,":")}},O:function(e,t,n){const o=e.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+QY(o,":");case"OOOO":default:return"GMT"+Dp(o,":")}},z:function(e,t,n){const o=e.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+QY(o,":");case"zzzz":default:return"GMT"+Dp(o,":")}},t:function(e,t,n){const o=Math.trunc(e.getTime()/1e3);return Wo(o,t.length)},T:function(e,t,n){const o=e.getTime();return Wo(o,t.length)}};function QY(e,t=""){const n=e>0?"-":"+",o=Math.abs(e),r=Math.trunc(o/60),s=o%60;return s===0?n+String(r):n+String(r)+t+Wo(s,2)}function JY(e,t){return e%60===0?(e>0?"-":"+")+Wo(Math.abs(e)/60,2):Dp(e,t)}function Dp(e,t=""){const n=e>0?"-":"+",o=Math.abs(e),r=Wo(Math.trunc(o/60),2),s=Wo(o%60,2);return n+r+t+s}const eZ=(e,t)=>{switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});case"PPPP":default:return t.date({width:"full"})}},Yfe=(e,t)=>{switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});case"pppp":default:return t.time({width:"full"})}},Lat=(e,t)=>{const n=e.match(/(P+)(p+)?/)||[],o=n[1],r=n[2];if(!r)return eZ(e,t);let s;switch(o){case"P":s=t.dateTime({width:"short"});break;case"PP":s=t.dateTime({width:"medium"});break;case"PPP":s=t.dateTime({width:"long"});break;case"PPPP":default:s=t.dateTime({width:"full"});break}return s.replace("{{date}}",eZ(o,t)).replace("{{time}}",Yfe(r,t))},Pat={p:Yfe,P:Lat},jat=/^D+$/,Iat=/^Y+$/,Dat=["D","DD","YY","YYYY"];function Fat(e){return jat.test(e)}function $at(e){return Iat.test(e)}function Vat(e,t,n){const o=Hat(e,t,n);if(console.warn(o),Dat.includes(e))throw new RangeError(o)}function Hat(e,t,n){const o=e[0]==="Y"?"years":"days of the month";return`Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${t}\`) for formatting ${o} to the input \`${n}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const Uat=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Xat=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Gat=/^'([^]*?)'?$/,Kat=/''/g,Yat=/[a-zA-Z]/;function Rs(e,t,n){const o=rO(),r=o.locale??Tat,s=o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,i=o.weekStartsOn??o.locale?.options?.weekStartsOn??0,c=In(e);if(!Yit(c))throw new RangeError("Invalid time value");let l=t.match(Xat).map(d=>{const p=d[0];if(p==="p"||p==="P"){const f=Pat[p];return f(d,r.formatLong)}return d}).join("").match(Uat).map(d=>{if(d==="''")return{isToken:!1,value:"'"};const p=d[0];if(p==="'")return{isToken:!1,value:Zat(d)};if(ZY[p])return{isToken:!0,value:d};if(p.match(Yat))throw new RangeError("Format string contains an unescaped latin alphabet character `"+p+"`");return{isToken:!1,value:d}});r.localize.preprocessor&&(l=r.localize.preprocessor(c,l));const u={firstWeekContainsDate:s,weekStartsOn:i,locale:r};return l.map(d=>{if(!d.isToken)return d.value;const p=d.value;($at(p)||Fat(p))&&Vat(p,t,String(e));const f=ZY[p[0]];return f(c,p,r.localize,u)}).join("")}function Zat(e){const t=e.match(Gat);return t?t[1].replace(Kat,"'"):e}function Qat(e){const t=In(e),n=t.getFullYear(),o=t.getMonth(),r=Os(e,0);return r.setFullYear(n,o+1,0),r.setHours(0,0,0,0),r.getDate()}function Jat(e,t){const n=In(e),o=In(t);return n.getTime()>o.getTime()}function ect(e,t){const n=In(e),o=In(t);return+n<+o}function kz(e,t){const n=In(e),o=In(t);return+n==+o}function tZ(e,t){const n=In(e),o=In(t);return n.getFullYear()===o.getFullYear()&&n.getMonth()===o.getMonth()}function tct(e,t){const o=sct(e);let r;if(o.date){const l=ict(o.date,2);r=act(l.restDateString,l.year)}if(!r||isNaN(r.getTime()))return new Date(NaN);const s=r.getTime();let i=0,c;if(o.time&&(i=cct(o.time),isNaN(i)))return new Date(NaN);if(o.timezone){if(c=lct(o.timezone),isNaN(c))return new Date(NaN)}else{const l=new Date(s+i),u=new Date(0);return u.setFullYear(l.getUTCFullYear(),l.getUTCMonth(),l.getUTCDate()),u.setHours(l.getUTCHours(),l.getUTCMinutes(),l.getUTCSeconds(),l.getUTCMilliseconds()),u}return new Date(s+i+c)}const PA={dateTimeDelimiter:/[T ]/,timeZoneDelimiter:/[Z ]/i,timezone:/([Z+-].*)$/},nct=/^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/,oct=/^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/,rct=/^([+-])(\d{2})(?::?(\d{2}))?$/;function sct(e){const t={},n=e.split(PA.dateTimeDelimiter);let o;if(n.length>2)return t;if(/:/.test(n[0])?o=n[0]:(t.date=n[0],o=n[1],PA.timeZoneDelimiter.test(t.date)&&(t.date=e.split(PA.timeZoneDelimiter)[0],o=e.substr(t.date.length,e.length))),o){const r=PA.timezone.exec(o);r?(t.time=o.replace(r[1],""),t.timezone=r[1]):t.time=o}return t}function ict(e,t){const n=new RegExp("^(?:(\\d{4}|[+-]\\d{"+(4+t)+"})|(\\d{2}|[+-]\\d{"+(2+t)+"})$)"),o=e.match(n);if(!o)return{year:NaN,restDateString:""};const r=o[1]?parseInt(o[1]):null,s=o[2]?parseInt(o[2]):null;return{year:s===null?r:s*100,restDateString:e.slice((o[1]||o[2]).length)}}function act(e,t){if(t===null)return new Date(NaN);const n=e.match(nct);if(!n)return new Date(NaN);const o=!!n[4],r=Eg(n[1]),s=Eg(n[2])-1,i=Eg(n[3]),c=Eg(n[4]),l=Eg(n[5])-1;if(o)return bct(t,c,l)?uct(t,c,l):new Date(NaN);{const u=new Date(0);return!pct(t,s,i)||!fct(t,r)?new Date(NaN):(u.setUTCFullYear(t,s,Math.max(r,i)),u)}}function Eg(e){return e?parseInt(e):1}function cct(e){const t=e.match(oct);if(!t)return NaN;const n=GC(t[1]),o=GC(t[2]),r=GC(t[3]);return hct(n,o,r)?n*Hfe+o*Vfe+r*1e3:NaN}function GC(e){return e&&parseFloat(e.replace(",","."))||0}function lct(e){if(e==="Z")return 0;const t=e.match(rct);if(!t)return 0;const n=t[1]==="+"?-1:1,o=parseInt(t[2]),r=t[3]&&parseInt(t[3])||0;return mct(o,r)?n*(o*Hfe+r*Vfe):NaN}function uct(e,t,n){const o=new Date(0);o.setUTCFullYear(e,0,4);const r=o.getUTCDay()||7,s=(t-1)*7+n+1-r;return o.setUTCDate(o.getUTCDate()+s),o}const dct=[31,null,31,30,31,30,31,31,30,31,30,31];function Zfe(e){return e%400===0||e%4===0&&e%100!==0}function pct(e,t,n){return t>=0&&t<=11&&n>=1&&n<=(dct[t]||(Zfe(e)?29:28))}function fct(e,t){return t>=1&&t<=(Zfe(e)?366:365)}function bct(e,t,n){return t>=1&&t<=53&&n>=0&&n<=6}function hct(e,t,n){return e===24?t===0&&n===0:n>=0&&n<60&&t>=0&&t<60&&e>=0&&e<25}function mct(e,t){return t>=0&&t<=59}function bj(e,t){const n=In(e),o=n.getFullYear(),r=n.getDate(),s=Os(e,0);s.setFullYear(o,t,15),s.setHours(0,0,0,0);const i=Qat(s);return n.setMonth(t,Math.min(r,i)),n}function Z8(e,t){let n=In(e);return isNaN(+n)?Os(e,NaN):(t.year!=null&&n.setFullYear(t.year),t.month!=null&&(n=bj(n,t.month)),t.date!=null&&n.setDate(t.date),t.hours!=null&&n.setHours(t.hours),t.minutes!=null&&n.setMinutes(t.minutes),t.seconds!=null&&n.setSeconds(t.seconds),t.milliseconds!=null&&n.setMilliseconds(t.milliseconds),n)}function gct(e,t){const n=In(e);return isNaN(+n)?Os(e,NaN):(n.setFullYear(t),n)}function Mct(){return hi(Date.now())}function i4(e,t){return rf(e,-t)}function zct(e,t){return fj(e,-t)}function Oct(e,t){return Xfe(e,-t)}//! moment.js + `,pit=He("svg",{target:"ea4tfvq2"})("width:",Ye.spinnerSize,"px;height:",Ye.spinnerSize,"px;display:inline-block;margin:5px 11px 0;position:relative;color:",Ze.theme.accent,";overflow:visible;opacity:1;background-color:transparent;"),Lfe={name:"9s4963",styles:"fill:transparent;stroke-width:1.5px"},fit=He("circle",{target:"ea4tfvq1"})(Lfe,";stroke:",Ze.gray[300],";"),bit=He("path",{target:"ea4tfvq0"})(Lfe,";stroke:currentColor;stroke-linecap:round;transform-origin:50% 50%;animation:1.4s linear infinite both ",dit,";");function hit({className:e,...t},n){return a.jsxs(pit,{className:oe("components-spinner",e),viewBox:"0 0 100 100",width:"16",height:"16",xmlns:"http://www.w3.org/2000/svg",role:"presentation",focusable:"false",...t,ref:n,children:[a.jsx(fit,{cx:"50",cy:"50",r:"50",vectorEffect:"non-scaling-stroke"}),a.jsx(bit,{d:"m 50 0 a 50 50 0 0 1 50 50",vectorEffect:"non-scaling-stroke"})]})}const Xn=x.forwardRef(hit),mit=()=>{},git=uit(class extends x.Component{handleFocusOutside(e){this.props.onFocusOutside(e)}render(){return this.props.children}}),NA=(e,t)=>e===null?-1:t.indexOf(e);function nb(e){var t;const{__nextHasNoMarginBottom:n=!1,__next40pxDefaultSize:o=!1,value:r,label:s,options:i,onChange:c,onFilterValueChange:l=mit,hideLabelFromVision:u,help:d,allowReset:p=!0,className:f,isLoading:b=!1,messages:h={selected:m("Item selected.")},__experimentalRenderItem:g,expandOnFocus:z=!0,placeholder:A}=sp(e),[_,v]=B3({value:r,onChange:c}),M=i.find(me=>me.value===_),y=(t=M?.label)!==null&&t!==void 0?t:"",k=vt(nb,"combobox-control"),[S,C]=x.useState(M||null),[R,T]=x.useState(!1),[E,B]=x.useState(!1),[N,j]=x.useState(""),I=x.useRef(null),P=x.useMemo(()=>{const me=[],de=[],Ae=gY(N);return i.forEach(ye=>{const Ne=gY(ye.label).indexOf(Ae);Ne===0?me.push(ye):Ne>0&&de.push(ye)}),me.concat(de)},[N,i]),$=me=>{me.disabled||(v(me.value),Yt(h.selected,"assertive"),C(me),j(""),T(!1))},F=(me=1)=>{let Ae=NA(S,P)+me;Ae<0?Ae=P.length-1:Ae>=P.length&&(Ae=0),C(P[Ae]),T(!0)},X=J3(me=>{let de=!1;if(!me.defaultPrevented){switch(me.code){case"Enter":S&&($(S),de=!0);break;case"ArrowUp":F(-1),de=!0;break;case"ArrowDown":F(1),de=!0;break;case"Escape":T(!1),C(null),de=!0;break}de&&me.preventDefault()}}),Z=()=>{B(!1)},V=()=>{B(!0),z&&T(!0),l(""),j("")},ee=()=>{T(!0)},te=()=>{T(!1)},J=me=>{const de=me.value;j(de),l(de),E&&T(!0)},ue=()=>{v(null),I.current?.focus()},ce=me=>{me.stopPropagation()};return x.useEffect(()=>{const me=P.length>0,de=NA(S,P)>0;me&&!de&&C(P[0])},[P,S]),x.useEffect(()=>{const me=P.length>0;if(R){const de=me?xe(Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",P.length),P.length):m("No results.");Yt(de,"polite")}},[P,R]),q1({componentName:"ComboboxControl",__next40pxDefaultSize:o,size:void 0}),a.jsx(git,{onFocusOutside:te,children:a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"ComboboxControl",className:oe(f,"components-combobox-control"),label:s,id:`components-form-token-input-${k}`,hideLabelFromVision:u,help:d,children:a.jsxs("div",{className:"components-combobox-control__suggestions-container",tabIndex:-1,onKeyDown:X,children:[a.jsxs(ait,{__next40pxDefaultSize:o,children:[a.jsx(eu,{children:a.jsx(Nfe,{className:"components-combobox-control__input",instanceId:k,ref:I,placeholder:A,value:R?N:y,onFocus:V,onBlur:Z,onClick:ee,isExpanded:R,selectedSuggestionIndex:NA(S,P),onChange:J})}),b&&a.jsx(Xn,{}),p&&a.jsx(Ce,{size:"small",icon:rp,disabled:!_,onClick:ue,onKeyDown:ce,label:m("Reset")})]}),R&&!b&&a.jsx(Bfe,{instanceId:k,match:{label:N,value:""},displayTransform:me=>me.label,suggestions:P,selectedIndex:NA(S,P),onHover:C,onSelect:$,scrollIntoView:!0,__experimentalRenderItem:g})]})})})}const Mit=new Set(["alert","status","log","marquee","timer"]),Pfe=[];function zit(e){const t=Array.from(document.body.children),n=[];Pfe.push(n);for(const o of t)o!==e&&Oit(o)&&(o.setAttribute("aria-hidden","true"),n.push(o))}function Oit(e){const t=e.getAttribute("role");return!(e.tagName==="SCRIPT"||e.hasAttribute("hidden")||e.hasAttribute("aria-hidden")||e.hasAttribute("aria-live")||t&&Mit.has(t))}function yit(){const e=Pfe.pop();if(e)for(const t of e)t.removeAttribute("aria-hidden")}const Ait=Ye.transitionDuration,vit=Number.parseInt(Ye.transitionDuration),xit="components-modal__disappear-animation";function wit(){const e=x.useRef(),[t,n]=x.useState(!1),o=$1(),r=x.useCallback(()=>new Promise(s=>{const i=e.current;if(o){s();return}if(!i){globalThis.SCRIPT_DEBUG===!0&&zn("wp.components.Modal: the Modal component can't be closed with an exit animation because of a missing reference to the modal frame element."),s();return}let c;const l=()=>new Promise(d=>{c=p=>{p.animationName===xit&&d()},i.addEventListener("animationend",c),n(!0)}),u=()=>new Promise(d=>{setTimeout(()=>d(),vit*1.2)});Promise.race([l(),u()]).then(()=>{c&&i.removeEventListener("animationend",c),n(!1),s()})}),[o]);return{overlayClassname:t?"is-animating-out":void 0,frameRef:e,frameStyle:{"--modal-frame-animation-duration":`${Ait}`},closeModal:r}}const UY=x.createContext(new Set),qg=new Map;function _it(e,t){const{bodyOpenClassName:n="modal-open",role:o="dialog",title:r=null,focusOnMount:s=!0,shouldCloseOnEsc:i=!0,shouldCloseOnClickOutside:c=!0,isDismissible:l=!0,aria:u={labelledby:void 0,describedby:void 0},onRequestClose:d,icon:p,closeButtonLabel:f,children:b,style:h,overlayClassName:g,className:z,contentLabel:A,onKeyDown:_,isFullScreen:v=!1,size:M,headerActions:y=null,__experimentalHideHeader:k=!1}=e,S=x.useRef(),C=vt(Zo),R=r?`components-modal-header-${C}`:u.labelledby,T=T5(s==="firstContentElement"?"firstElement":s),E=FN(),B=VN(),N=x.useRef(null),j=x.useRef(null),[I,P]=x.useState(!1),[$,F]=x.useState(!1);let X;v||M==="fill"?X="is-full-screen":M&&(X=`has-size-${M}`);const Z=x.useCallback(()=>{if(!N.current)return;const ie=ps(N.current);N.current===ie?F(!0):F(!1)},[N]);x.useEffect(()=>(zit(S.current),()=>yit()),[]);const V=x.useRef();x.useEffect(()=>{V.current=d},[d]);const ee=x.useContext(UY),[te]=x.useState(()=>new Set);x.useEffect(()=>{ee.add(V);for(const ie of ee)ie!==V&&ie.current?.();return()=>{for(const ie of te)ie.current?.();ee.delete(V)}},[ee,te]),x.useEffect(()=>{var ie;const we=n,re=1+((ie=qg.get(we))!==null&&ie!==void 0?ie:0);return qg.set(we,re),document.body.classList.add(n),()=>{const pe=qg.get(we)-1;pe===0?(document.body.classList.remove(we),qg.delete(we)):qg.set(we,pe)}},[n]);const{closeModal:J,frameRef:ue,frameStyle:ce,overlayClassname:me}=wit();x.useLayoutEffect(()=>{if(!window.ResizeObserver||!j.current)return;const ie=new ResizeObserver(Z);return ie.observe(j.current),Z(),()=>{ie.disconnect()}},[Z,j]);function de(ie){i&&(ie.code==="Escape"||ie.key==="Escape")&&!ie.defaultPrevented&&(ie.preventDefault(),J().then(()=>d(ie)))}const Ae=x.useCallback(ie=>{var we;const re=(we=ie?.currentTarget?.scrollTop)!==null&&we!==void 0?we:-1;!I&&re>0?P(!0):I&&re<=0&&P(!1)},[I]);let ye=null;const Ne={onPointerDown:ie=>{ie.target===ie.currentTarget&&(ye=ie.target,ie.preventDefault())},onPointerUp:({target:ie,button:we})=>{const re=ie===ye;ye=null,we===0&&re&&J().then(()=>d())}},je=a.jsx("div",{ref:xn([S,t]),className:oe("components-modal__screen-overlay",me,g),onKeyDown:J3(de),...c?Ne:{},children:a.jsx(Jf,{document,children:a.jsx("div",{className:oe("components-modal__frame",X,z),style:{...ce,...h},ref:xn([ue,E,B,s!=="firstContentElement"?T:null]),role:o,"aria-label":A,"aria-labelledby":A?void 0:R,"aria-describedby":u.describedby,tabIndex:-1,onKeyDown:_,children:a.jsxs("div",{className:oe("components-modal__content",{"hide-header":k,"is-scrollable":$,"has-scrolled-content":I}),role:"document",onScroll:Ae,ref:N,"aria-label":$?m("Scrollable section"):void 0,tabIndex:$?0:void 0,children:[!k&&a.jsxs("div",{className:"components-modal__header",children:[a.jsxs("div",{className:"components-modal__header-heading-container",children:[p&&a.jsx("span",{className:"components-modal__icon-container","aria-hidden":!0,children:p}),r&&a.jsx("h1",{id:R,className:"components-modal__header-heading",children:r})]}),y,l&&a.jsxs(a.Fragment,{children:[a.jsx(t1,{marginBottom:0,marginLeft:2}),a.jsx(Ce,{size:"compact",onClick:ie=>J().then(()=>d(ie)),icon:im,label:f||m("Close")})]})]}),a.jsx("div",{ref:xn([j,s==="firstContentElement"?T:null]),children:b})]})})})});return hs.createPortal(a.jsx(UY.Provider,{value:te,children:je}),document.body)}const Zo=x.forwardRef(_it),kit={name:"7g5ii0",styles:"&&{z-index:1000001;}"},Sit=(e,t)=>{const{isOpen:n,onConfirm:o,onCancel:r,children:s,confirmButtonText:i,cancelButtonText:c,...l}=vn(e,"ConfirmDialog"),d=ro()(kit),p=x.useRef(),f=x.useRef(),[b,h]=x.useState(),[g,z]=x.useState();x.useEffect(()=>{const y=typeof n<"u";h(y?n:!0),z(!y)},[n]);const A=x.useCallback(y=>k=>{y?.(k),g&&h(!1)},[g,h]),_=x.useCallback(y=>{!(y.target===p.current||y.target===f.current)&&y.key==="Enter"&&A(o)(y)},[A,o]),v=c??m("Cancel"),M=i??m("OK");return a.jsx(a.Fragment,{children:b&&a.jsx(Zo,{onRequestClose:A(r),onKeyDown:_,closeButtonLabel:v,isDismissible:!0,ref:t,overlayClassName:d,__experimentalHideHeader:!0,...l,children:a.jsxs(dt,{spacing:8,children:[a.jsx(Sn,{children:s}),a.jsxs(Yo,{direction:"row",justify:"flex-end",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,ref:p,variant:"tertiary",onClick:A(r),children:v}),a.jsx(Ce,{__next40pxDefaultSize:!0,ref:f,variant:"primary",onClick:A(o),children:M})]})]})})})},wf=Rn(Sit,"ConfirmDialog"),X8={SLIDE_AMOUNT:"2px",DURATION:"400ms",EASING:"cubic-bezier( 0.16, 1, 0.3, 1 )"},gi={compact:Ye.controlPaddingXSmall,small:Ye.controlPaddingXSmall,default:Ye.controlPaddingX},Cit=(e,t)=>{const n={compact:{[t]:32,paddingInlineStart:gi.compact,paddingInlineEnd:gi.compact+CM},default:{[t]:40,paddingInlineStart:gi.default,paddingInlineEnd:gi.default+CM},small:{[t]:24,paddingInlineStart:gi.small,paddingInlineEnd:gi.small+CM}};return n[e]||n.default},qit=e=>{const n={compact:{paddingInlineStart:gi.compact,paddingInlineEnd:gi.compact-6},default:{paddingInlineStart:gi.default,paddingInlineEnd:gi.default-6},small:{paddingInlineStart:gi.small,paddingInlineEnd:gi.small-6}};return n[e]||n.default},Rit=He(sVe,{shouldForwardProp:e=>e!=="hasCustomRenderProp",target:"e1p3eej77"})(({size:e,hasCustomRenderProp:t})=>Xe("display:block;background-color:",Ze.theme.background,";border:none;color:",Ze.theme.foreground,";cursor:pointer;font-family:inherit;text-align:start;user-select:none;width:100%;&[data-focus-visible]{outline:none;}",Cit(e,t?"minHeight":"height")," ",!t&&jfe," ",JP({inputSize:e}),";",""),""),Tit=tp({"0%":{opacity:0,transform:`translateY(-${X8.SLIDE_AMOUNT})`},"100%":{opacity:1,transform:"translateY(0)"}}),Eit=He(zVe,{target:"e1p3eej76"})("display:flex;flex-direction:column;background-color:",Ze.theme.background,";border-radius:",Ye.radiusSmall,";border:1px solid ",Ze.theme.foreground,";box-shadow:",Ye.elevationMedium,";z-index:1000000;max-height:min( var( --popover-available-height, 400px ), 400px );overflow:auto;overscroll-behavior:contain;min-width:min-content;&[data-open]{@media not ( prefers-reduced-motion ){animation-duration:",X8.DURATION,";animation-timing-function:",X8.EASING,";animation-name:",Tit,";will-change:transform,opacity;}}&[data-focus-visible]{outline:none;}"),Wit=He(pVe,{target:"e1p3eej75"})(({size:e})=>Xe("cursor:default;display:flex;align-items:center;justify-content:space-between;font-size:",Ye.fontSize,";line-height:28px;padding-block:",Je(2),";scroll-margin:",Je(1),";user-select:none;&[aria-disabled='true']{cursor:not-allowed;}&[data-active-item]{background-color:",Ze.theme.gray[300],";}",qit(e),";",""),""),jfe={name:"1h52dri",styles:"overflow:hidden;text-overflow:ellipsis;white-space:nowrap"},Nit=He("div",{target:"e1p3eej74"})(jfe,";"),Bit=He("span",{target:"e1p3eej73"})("color:",Ze.theme.gray[600],";margin-inline-start:",Je(2),";"),Ife=He("div",{target:"e1p3eej72"})("display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;flex:1;column-gap:",Je(4),";"),Lit=He("span",{target:"e1p3eej71"})("color:",Ze.theme.gray[600],";text-align:initial;line-height:",Ye.fontLineHeightBase,";padding-inline-end:",Je(1),";margin-block:",Je(1),";"),Pit=He(cVe,{target:"e1p3eej70"})("display:flex;align-items:center;margin-inline-start:",Je(2),";align-self:start;margin-block-start:2px;font-size:0;",Ife,"~&,&:not(:empty){font-size:24px;}"),Dfe=x.createContext(void 0);function jit(e){return(Array.isArray(e)?e.length===0:e==null)?m("Select an item"):Array.isArray(e)?e.length===1?e[0]:xe(m("%s items selected"),e.length):e}const Iit=({renderSelectedValue:e,size:t="default",store:n,...o})=>{const{value:r}=Hn(n),s=x.useMemo(()=>e??jit,[e]);return a.jsx(Rit,{...o,size:t,hasCustomRenderProp:!!e,store:n,children:s(r)})};function Dit(e){const{children:t,hideLabelFromVision:n=!1,label:o,size:r,store:s,className:i,isLegacy:c=!1,...l}=e,u=x.useCallback(p=>{c&&p.stopPropagation()},[c]),d=x.useMemo(()=>({store:s,size:r}),[s,r]);return a.jsxs("div",{className:i,children:[a.jsx(hVe,{store:s,render:n?a.jsx(qn,{}):a.jsx(no.VisualLabel,{as:"div"}),children:o}),a.jsxs(ej,{__next40pxDefaultSize:!0,size:r,suffix:a.jsx(Ipe,{}),children:[a.jsx(Iit,{...l,size:r,store:s,showOnKeyDown:!c}),a.jsx(Eit,{gutter:12,store:s,sameWidth:!0,slide:!1,onKeyDown:u,flip:!c,children:a.jsx(Dfe.Provider,{value:d,children:t})})]})]})}function Ffe({children:e,...t}){var n;const o=x.useContext(Dfe);return a.jsxs(Wit,{store:o?.store,size:(n=o?.size)!==null&&n!==void 0?n:"default",...t,children:[e??t.value,a.jsx(Pit,{children:a.jsx(wn,{icon:M0})})]})}Ffe.displayName="CustomSelectControlV2.Item";function Fit({__experimentalShowSelectedHint:e,...t}){return{showSelectedHint:e,...t}}function XY({__experimentalHint:e,...t}){return{hint:e,...t}}function $it(e,t){return t||xe(m("Currently selected: %s"),e)}function ob(e){const{__next40pxDefaultSize:t=!1,__shouldNotWarnDeprecated36pxSize:n,describedBy:o,options:r,onChange:s,size:i="default",value:c,className:l,showSelectedHint:u=!1,...d}=Fit(e);q1({componentName:"CustomSelectControl",__next40pxDefaultSize:t,size:i,__shouldNotWarnDeprecated36pxSize:n});const p=vt(ob,"custom-select-control__description"),f=Q$e({async setValue(A){const _=r.find(y=>y.name===A);if(!s||!_)return;await Promise.resolve();const v=f.getState(),M={highlightedIndex:v.renderedItems.findIndex(y=>y.value===A),inputValue:"",isOpen:v.open,selectedItem:_,type:""};s(M)},value:c?.name,defaultValue:r[0]?.name}),b=r.map(XY).map(({name:A,key:_,hint:v,style:M,className:y})=>{const k=a.jsxs(Ife,{children:[a.jsx("span",{children:A}),a.jsx(Lit,{className:"components-custom-select-control__item-hint",children:v})]});return a.jsx(Ffe,{value:A,children:v?k:A,style:M,className:oe(y,"components-custom-select-control__item",{"has-hint":v})},_)}),h=Hn(f,"value"),g=()=>{const A=r?.map(XY)?.find(({name:_})=>h===_)?.hint;return a.jsxs(Nit,{children:[h,A&&a.jsx(Bit,{className:"components-custom-select-control__hint",children:A})]})},z=t&&i==="default"||i==="__unstable-large"?"default":!t&&i==="default"?"compact":i;return a.jsxs(a.Fragment,{children:[a.jsx(Dit,{"aria-describedby":p,renderSelectedValue:u?g:void 0,size:z,store:f,className:oe("components-custom-select-control",l),isLegacy:!0,...d,children:b}),a.jsx(qn,{children:a.jsx("span",{id:p,children:$it(h,o)})})]})}function In(e){const t=Object.prototype.toString.call(e);return e instanceof Date||typeof e=="object"&&t==="[object Date]"?new e.constructor(+e):typeof e=="number"||t==="[object Number]"||typeof e=="string"||t==="[object String]"?new Date(e):new Date(NaN)}function Os(e,t){return e instanceof Date?new e.constructor(t):new Date(t)}function G8(e,t){const n=In(e);return isNaN(t)?Os(e,NaN):(t&&n.setDate(n.getDate()+t),n)}function rf(e,t){const n=In(e);if(isNaN(t))return Os(e,NaN);if(!t)return n;const o=n.getDate(),r=Os(e,n.getTime());r.setMonth(n.getMonth()+t+1,0);const s=r.getDate();return o>=s?r:(n.setFullYear(r.getFullYear(),r.getMonth(),o),n)}const $fe=6048e5,Vit=864e5,Vfe=6e4,Hfe=36e5;let Hit={};function rO(){return Hit}function ra(e,t){const n=rO(),o=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??n.weekStartsOn??n.locale?.options?.weekStartsOn??0,r=In(e),s=r.getDay(),i=(s<o?7:0)+s-o;return r.setDate(r.getDate()-i),r.setHours(0,0,0,0),r}function yx(e){return ra(e,{weekStartsOn:1})}function Ufe(e){const t=In(e),n=t.getFullYear(),o=Os(e,0);o.setFullYear(n+1,0,4),o.setHours(0,0,0,0);const r=yx(o),s=Os(e,0);s.setFullYear(n,0,4),s.setHours(0,0,0,0);const i=yx(s);return t.getTime()>=r.getTime()?n+1:t.getTime()>=i.getTime()?n:n-1}function hi(e){const t=In(e);return t.setHours(0,0,0,0),t}function GY(e){const t=In(e),n=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return n.setUTCFullYear(t.getFullYear()),+e-+n}function Uit(e,t){const n=hi(e),o=hi(t),r=+n-GY(n),s=+o-GY(o);return Math.round((r-s)/Vit)}function Xit(e){const t=Ufe(e),n=Os(e,0);return n.setFullYear(t,0,4),n.setHours(0,0,0,0),yx(n)}function pj(e,t){const n=t*7;return G8(e,n)}function Xfe(e,t){return rf(e,t*12)}function KY(e,t){const n=hi(e),o=hi(t);return+n==+o}function Git(e){return e instanceof Date||typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"}function Kit(e){if(!Git(e)&&typeof e!="number")return!1;const t=In(e);return!isNaN(Number(t))}function K8(e){const t=In(e),n=t.getMonth();return t.setFullYear(t.getFullYear(),n+1,0),t.setHours(23,59,59,999),t}function BA(e,t){const n=In(e.start),o=In(e.end);let r=+n>+o;const s=r?+n:+o,i=r?o:n;i.setHours(0,0,0,0);let c=1;const l=[];for(;+i<=s;)l.push(In(i)),i.setDate(i.getDate()+c),i.setHours(0,0,0,0);return r?l.reverse():l}function YY(e){const t=In(e);return t.setSeconds(0,0),t}function Yit(e,t){const n=In(e.start),o=In(e.end);let r=+n>+o;const s=r?+n:+o,i=r?o:n;i.setHours(0,0,0,0),i.setDate(1);let c=1;const l=[];for(;+i<=s;)l.push(In(i)),i.setMonth(i.getMonth()+c);return r?l.reverse():l}function Zit(e,t){const n=In(e.start),o=In(e.end);let r=+n>+o;const s=ra(r?o:n,t),i=ra(r?n:o,t);s.setHours(15),i.setHours(15);const c=+i.getTime();let l=s,u=t?.step??1;if(!u)return[];u<0&&(u=-u,r=!r);const d=[];for(;+l<=c;)l.setHours(0),d.push(In(l)),l=pj(l,u),l.setHours(15);return r?d.reverse():d}function Ax(e){const t=In(e);return t.setDate(1),t.setHours(0,0,0,0),t}function Qit(e){const t=In(e),n=Os(e,0);return n.setFullYear(t.getFullYear(),0,1),n.setHours(0,0,0,0),n}function Gfe(e,t){const n=rO(),o=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??n.weekStartsOn??n.locale?.options?.weekStartsOn??0,r=In(e),s=r.getDay(),i=(s<o?-7:0)+6-(s-o);return r.setDate(r.getDate()+i),r.setHours(23,59,59,999),r}const Jit={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},eat=(e,t,n)=>{let o;const r=Jit[e];return typeof r=="string"?o=r:t===1?o=r.one:o=r.other.replace("{{count}}",t.toString()),n?.addSuffix?n.comparison&&n.comparison>0?"in "+o:o+" ago":o};function UC(e){return(t={})=>{const n=t.width?String(t.width):e.defaultWidth;return e.formats[n]||e.formats[e.defaultWidth]}}const tat={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},nat={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},oat={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},rat={date:UC({formats:tat,defaultWidth:"full"}),time:UC({formats:nat,defaultWidth:"full"}),dateTime:UC({formats:oat,defaultWidth:"full"})},sat={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},iat=(e,t,n,o)=>sat[e];function Rg(e){return(t,n)=>{const o=n?.context?String(n.context):"standalone";let r;if(o==="formatting"&&e.formattingValues){const i=e.defaultFormattingWidth||e.defaultWidth,c=n?.width?String(n.width):i;r=e.formattingValues[c]||e.formattingValues[i]}else{const i=e.defaultWidth,c=n?.width?String(n.width):e.defaultWidth;r=e.values[c]||e.values[i]}const s=e.argumentCallback?e.argumentCallback(t):t;return r[s]}}const aat={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},cat={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},lat={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},uat={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},dat={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},pat={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},fat=(e,t)=>{const n=Number(e),o=n%100;if(o>20||o<10)switch(o%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},bat={ordinalNumber:fat,era:Rg({values:aat,defaultWidth:"wide"}),quarter:Rg({values:cat,defaultWidth:"wide",argumentCallback:e=>e-1}),month:Rg({values:lat,defaultWidth:"wide"}),day:Rg({values:uat,defaultWidth:"wide"}),dayPeriod:Rg({values:dat,defaultWidth:"wide",formattingValues:pat,defaultFormattingWidth:"wide"})};function Tg(e){return(t,n={})=>{const o=n.width,r=o&&e.matchPatterns[o]||e.matchPatterns[e.defaultMatchWidth],s=t.match(r);if(!s)return null;const i=s[0],c=o&&e.parsePatterns[o]||e.parsePatterns[e.defaultParseWidth],l=Array.isArray(c)?mat(c,p=>p.test(i)):hat(c,p=>p.test(i));let u;u=e.valueCallback?e.valueCallback(l):l,u=n.valueCallback?n.valueCallback(u):u;const d=t.slice(i.length);return{value:u,rest:d}}}function hat(e,t){for(const n in e)if(Object.prototype.hasOwnProperty.call(e,n)&&t(e[n]))return n}function mat(e,t){for(let n=0;n<e.length;n++)if(t(e[n]))return n}function gat(e){return(t,n={})=>{const o=t.match(e.matchPattern);if(!o)return null;const r=o[0],s=t.match(e.parsePattern);if(!s)return null;let i=e.valueCallback?e.valueCallback(s[0]):s[0];i=n.valueCallback?n.valueCallback(i):i;const c=t.slice(r.length);return{value:i,rest:c}}}const Mat=/^(\d+)(th|st|nd|rd)?/i,zat=/\d+/i,Oat={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},yat={any:[/^b/i,/^(a|c)/i]},Aat={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},vat={any:[/1/i,/2/i,/3/i,/4/i]},xat={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},wat={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},_at={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},kat={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},Sat={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},Cat={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},qat={ordinalNumber:gat({matchPattern:Mat,parsePattern:zat,valueCallback:e=>parseInt(e,10)}),era:Tg({matchPatterns:Oat,defaultMatchWidth:"wide",parsePatterns:yat,defaultParseWidth:"any"}),quarter:Tg({matchPatterns:Aat,defaultMatchWidth:"wide",parsePatterns:vat,defaultParseWidth:"any",valueCallback:e=>e+1}),month:Tg({matchPatterns:xat,defaultMatchWidth:"wide",parsePatterns:wat,defaultParseWidth:"any"}),day:Tg({matchPatterns:_at,defaultMatchWidth:"wide",parsePatterns:kat,defaultParseWidth:"any"}),dayPeriod:Tg({matchPatterns:Sat,defaultMatchWidth:"any",parsePatterns:Cat,defaultParseWidth:"any"})},Rat={code:"en-US",formatDistance:eat,formatLong:rat,formatRelative:iat,localize:bat,match:qat,options:{weekStartsOn:0,firstWeekContainsDate:1}};function Tat(e){const t=In(e);return Uit(t,Qit(t))+1}function Eat(e){const t=In(e),n=+yx(t)-+Xit(t);return Math.round(n/$fe)+1}function Kfe(e,t){const n=In(e),o=n.getFullYear(),r=rO(),s=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??r.firstWeekContainsDate??r.locale?.options?.firstWeekContainsDate??1,i=Os(e,0);i.setFullYear(o+1,0,s),i.setHours(0,0,0,0);const c=ra(i,t),l=Os(e,0);l.setFullYear(o,0,s),l.setHours(0,0,0,0);const u=ra(l,t);return n.getTime()>=c.getTime()?o+1:n.getTime()>=u.getTime()?o:o-1}function Wat(e,t){const n=rO(),o=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??n.firstWeekContainsDate??n.locale?.options?.firstWeekContainsDate??1,r=Kfe(e,t),s=Os(e,0);return s.setFullYear(r,0,o),s.setHours(0,0,0,0),ra(s,t)}function Nat(e,t){const n=In(e),o=+ra(n,t)-+Wat(n,t);return Math.round(o/$fe)+1}function Wo(e,t){const n=e<0?"-":"",o=Math.abs(e).toString().padStart(t,"0");return n+o}const Tu={y(e,t){const n=e.getFullYear(),o=n>0?n:1-n;return Wo(t==="yy"?o%100:o,t.length)},M(e,t){const n=e.getMonth();return t==="M"?String(n+1):Wo(n+1,2)},d(e,t){return Wo(e.getDate(),t.length)},a(e,t){const n=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.toUpperCase();case"aaa":return n;case"aaaaa":return n[0];case"aaaa":default:return n==="am"?"a.m.":"p.m."}},h(e,t){return Wo(e.getHours()%12||12,t.length)},H(e,t){return Wo(e.getHours(),t.length)},m(e,t){return Wo(e.getMinutes(),t.length)},s(e,t){return Wo(e.getSeconds(),t.length)},S(e,t){const n=t.length,o=e.getMilliseconds(),r=Math.trunc(o*Math.pow(10,n-3));return Wo(r,t.length)}},Ub={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},ZY={G:function(e,t,n){const o=e.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return n.era(o,{width:"abbreviated"});case"GGGGG":return n.era(o,{width:"narrow"});case"GGGG":default:return n.era(o,{width:"wide"})}},y:function(e,t,n){if(t==="yo"){const o=e.getFullYear(),r=o>0?o:1-o;return n.ordinalNumber(r,{unit:"year"})}return Tu.y(e,t)},Y:function(e,t,n,o){const r=Kfe(e,o),s=r>0?r:1-r;if(t==="YY"){const i=s%100;return Wo(i,2)}return t==="Yo"?n.ordinalNumber(s,{unit:"year"}):Wo(s,t.length)},R:function(e,t){const n=Ufe(e);return Wo(n,t.length)},u:function(e,t){const n=e.getFullYear();return Wo(n,t.length)},Q:function(e,t,n){const o=Math.ceil((e.getMonth()+1)/3);switch(t){case"Q":return String(o);case"QQ":return Wo(o,2);case"Qo":return n.ordinalNumber(o,{unit:"quarter"});case"QQQ":return n.quarter(o,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(o,{width:"narrow",context:"formatting"});case"QQQQ":default:return n.quarter(o,{width:"wide",context:"formatting"})}},q:function(e,t,n){const o=Math.ceil((e.getMonth()+1)/3);switch(t){case"q":return String(o);case"qq":return Wo(o,2);case"qo":return n.ordinalNumber(o,{unit:"quarter"});case"qqq":return n.quarter(o,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(o,{width:"narrow",context:"standalone"});case"qqqq":default:return n.quarter(o,{width:"wide",context:"standalone"})}},M:function(e,t,n){const o=e.getMonth();switch(t){case"M":case"MM":return Tu.M(e,t);case"Mo":return n.ordinalNumber(o+1,{unit:"month"});case"MMM":return n.month(o,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(o,{width:"narrow",context:"formatting"});case"MMMM":default:return n.month(o,{width:"wide",context:"formatting"})}},L:function(e,t,n){const o=e.getMonth();switch(t){case"L":return String(o+1);case"LL":return Wo(o+1,2);case"Lo":return n.ordinalNumber(o+1,{unit:"month"});case"LLL":return n.month(o,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(o,{width:"narrow",context:"standalone"});case"LLLL":default:return n.month(o,{width:"wide",context:"standalone"})}},w:function(e,t,n,o){const r=Nat(e,o);return t==="wo"?n.ordinalNumber(r,{unit:"week"}):Wo(r,t.length)},I:function(e,t,n){const o=Eat(e);return t==="Io"?n.ordinalNumber(o,{unit:"week"}):Wo(o,t.length)},d:function(e,t,n){return t==="do"?n.ordinalNumber(e.getDate(),{unit:"date"}):Tu.d(e,t)},D:function(e,t,n){const o=Tat(e);return t==="Do"?n.ordinalNumber(o,{unit:"dayOfYear"}):Wo(o,t.length)},E:function(e,t,n){const o=e.getDay();switch(t){case"E":case"EE":case"EEE":return n.day(o,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(o,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(o,{width:"short",context:"formatting"});case"EEEE":default:return n.day(o,{width:"wide",context:"formatting"})}},e:function(e,t,n,o){const r=e.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(t){case"e":return String(s);case"ee":return Wo(s,2);case"eo":return n.ordinalNumber(s,{unit:"day"});case"eee":return n.day(r,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(r,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(r,{width:"short",context:"formatting"});case"eeee":default:return n.day(r,{width:"wide",context:"formatting"})}},c:function(e,t,n,o){const r=e.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(t){case"c":return String(s);case"cc":return Wo(s,t.length);case"co":return n.ordinalNumber(s,{unit:"day"});case"ccc":return n.day(r,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(r,{width:"narrow",context:"standalone"});case"cccccc":return n.day(r,{width:"short",context:"standalone"});case"cccc":default:return n.day(r,{width:"wide",context:"standalone"})}},i:function(e,t,n){const o=e.getDay(),r=o===0?7:o;switch(t){case"i":return String(r);case"ii":return Wo(r,t.length);case"io":return n.ordinalNumber(r,{unit:"day"});case"iii":return n.day(o,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(o,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(o,{width:"short",context:"formatting"});case"iiii":default:return n.day(o,{width:"wide",context:"formatting"})}},a:function(e,t,n){const r=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"aaaa":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},b:function(e,t,n){const o=e.getHours();let r;switch(o===12?r=Ub.noon:o===0?r=Ub.midnight:r=o/12>=1?"pm":"am",t){case"b":case"bb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"bbbb":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(e,t,n){const o=e.getHours();let r;switch(o>=17?r=Ub.evening:o>=12?r=Ub.afternoon:o>=4?r=Ub.morning:r=Ub.night,t){case"B":case"BB":case"BBB":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"BBBB":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(e,t,n){if(t==="ho"){let o=e.getHours()%12;return o===0&&(o=12),n.ordinalNumber(o,{unit:"hour"})}return Tu.h(e,t)},H:function(e,t,n){return t==="Ho"?n.ordinalNumber(e.getHours(),{unit:"hour"}):Tu.H(e,t)},K:function(e,t,n){const o=e.getHours()%12;return t==="Ko"?n.ordinalNumber(o,{unit:"hour"}):Wo(o,t.length)},k:function(e,t,n){let o=e.getHours();return o===0&&(o=24),t==="ko"?n.ordinalNumber(o,{unit:"hour"}):Wo(o,t.length)},m:function(e,t,n){return t==="mo"?n.ordinalNumber(e.getMinutes(),{unit:"minute"}):Tu.m(e,t)},s:function(e,t,n){return t==="so"?n.ordinalNumber(e.getSeconds(),{unit:"second"}):Tu.s(e,t)},S:function(e,t){return Tu.S(e,t)},X:function(e,t,n){const o=e.getTimezoneOffset();if(o===0)return"Z";switch(t){case"X":return JY(o);case"XXXX":case"XX":return Dp(o);case"XXXXX":case"XXX":default:return Dp(o,":")}},x:function(e,t,n){const o=e.getTimezoneOffset();switch(t){case"x":return JY(o);case"xxxx":case"xx":return Dp(o);case"xxxxx":case"xxx":default:return Dp(o,":")}},O:function(e,t,n){const o=e.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+QY(o,":");case"OOOO":default:return"GMT"+Dp(o,":")}},z:function(e,t,n){const o=e.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+QY(o,":");case"zzzz":default:return"GMT"+Dp(o,":")}},t:function(e,t,n){const o=Math.trunc(e.getTime()/1e3);return Wo(o,t.length)},T:function(e,t,n){const o=e.getTime();return Wo(o,t.length)}};function QY(e,t=""){const n=e>0?"-":"+",o=Math.abs(e),r=Math.trunc(o/60),s=o%60;return s===0?n+String(r):n+String(r)+t+Wo(s,2)}function JY(e,t){return e%60===0?(e>0?"-":"+")+Wo(Math.abs(e)/60,2):Dp(e,t)}function Dp(e,t=""){const n=e>0?"-":"+",o=Math.abs(e),r=Wo(Math.trunc(o/60),2),s=Wo(o%60,2);return n+r+t+s}const eZ=(e,t)=>{switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});case"PPPP":default:return t.date({width:"full"})}},Yfe=(e,t)=>{switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});case"pppp":default:return t.time({width:"full"})}},Bat=(e,t)=>{const n=e.match(/(P+)(p+)?/)||[],o=n[1],r=n[2];if(!r)return eZ(e,t);let s;switch(o){case"P":s=t.dateTime({width:"short"});break;case"PP":s=t.dateTime({width:"medium"});break;case"PPP":s=t.dateTime({width:"long"});break;case"PPPP":default:s=t.dateTime({width:"full"});break}return s.replace("{{date}}",eZ(o,t)).replace("{{time}}",Yfe(r,t))},Lat={p:Yfe,P:Bat},Pat=/^D+$/,jat=/^Y+$/,Iat=["D","DD","YY","YYYY"];function Dat(e){return Pat.test(e)}function Fat(e){return jat.test(e)}function $at(e,t,n){const o=Vat(e,t,n);if(console.warn(o),Iat.includes(e))throw new RangeError(o)}function Vat(e,t,n){const o=e[0]==="Y"?"years":"days of the month";return`Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${t}\`) for formatting ${o} to the input \`${n}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const Hat=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Uat=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Xat=/^'([^]*?)'?$/,Gat=/''/g,Kat=/[a-zA-Z]/;function Rs(e,t,n){const o=rO(),r=o.locale??Rat,s=o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,i=o.weekStartsOn??o.locale?.options?.weekStartsOn??0,c=In(e);if(!Kit(c))throw new RangeError("Invalid time value");let l=t.match(Uat).map(d=>{const p=d[0];if(p==="p"||p==="P"){const f=Lat[p];return f(d,r.formatLong)}return d}).join("").match(Hat).map(d=>{if(d==="''")return{isToken:!1,value:"'"};const p=d[0];if(p==="'")return{isToken:!1,value:Yat(d)};if(ZY[p])return{isToken:!0,value:d};if(p.match(Kat))throw new RangeError("Format string contains an unescaped latin alphabet character `"+p+"`");return{isToken:!1,value:d}});r.localize.preprocessor&&(l=r.localize.preprocessor(c,l));const u={firstWeekContainsDate:s,weekStartsOn:i,locale:r};return l.map(d=>{if(!d.isToken)return d.value;const p=d.value;(Fat(p)||Dat(p))&&$at(p,t,String(e));const f=ZY[p[0]];return f(c,p,r.localize,u)}).join("")}function Yat(e){const t=e.match(Xat);return t?t[1].replace(Gat,"'"):e}function Zat(e){const t=In(e),n=t.getFullYear(),o=t.getMonth(),r=Os(e,0);return r.setFullYear(n,o+1,0),r.setHours(0,0,0,0),r.getDate()}function Qat(e,t){const n=In(e),o=In(t);return n.getTime()>o.getTime()}function Jat(e,t){const n=In(e),o=In(t);return+n<+o}function kz(e,t){const n=In(e),o=In(t);return+n==+o}function tZ(e,t){const n=In(e),o=In(t);return n.getFullYear()===o.getFullYear()&&n.getMonth()===o.getMonth()}function ect(e,t){const o=rct(e);let r;if(o.date){const l=sct(o.date,2);r=ict(l.restDateString,l.year)}if(!r||isNaN(r.getTime()))return new Date(NaN);const s=r.getTime();let i=0,c;if(o.time&&(i=act(o.time),isNaN(i)))return new Date(NaN);if(o.timezone){if(c=cct(o.timezone),isNaN(c))return new Date(NaN)}else{const l=new Date(s+i),u=new Date(0);return u.setFullYear(l.getUTCFullYear(),l.getUTCMonth(),l.getUTCDate()),u.setHours(l.getUTCHours(),l.getUTCMinutes(),l.getUTCSeconds(),l.getUTCMilliseconds()),u}return new Date(s+i+c)}const LA={dateTimeDelimiter:/[T ]/,timeZoneDelimiter:/[Z ]/i,timezone:/([Z+-].*)$/},tct=/^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/,nct=/^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/,oct=/^([+-])(\d{2})(?::?(\d{2}))?$/;function rct(e){const t={},n=e.split(LA.dateTimeDelimiter);let o;if(n.length>2)return t;if(/:/.test(n[0])?o=n[0]:(t.date=n[0],o=n[1],LA.timeZoneDelimiter.test(t.date)&&(t.date=e.split(LA.timeZoneDelimiter)[0],o=e.substr(t.date.length,e.length))),o){const r=LA.timezone.exec(o);r?(t.time=o.replace(r[1],""),t.timezone=r[1]):t.time=o}return t}function sct(e,t){const n=new RegExp("^(?:(\\d{4}|[+-]\\d{"+(4+t)+"})|(\\d{2}|[+-]\\d{"+(2+t)+"})$)"),o=e.match(n);if(!o)return{year:NaN,restDateString:""};const r=o[1]?parseInt(o[1]):null,s=o[2]?parseInt(o[2]):null;return{year:s===null?r:s*100,restDateString:e.slice((o[1]||o[2]).length)}}function ict(e,t){if(t===null)return new Date(NaN);const n=e.match(tct);if(!n)return new Date(NaN);const o=!!n[4],r=Eg(n[1]),s=Eg(n[2])-1,i=Eg(n[3]),c=Eg(n[4]),l=Eg(n[5])-1;if(o)return fct(t,c,l)?lct(t,c,l):new Date(NaN);{const u=new Date(0);return!dct(t,s,i)||!pct(t,r)?new Date(NaN):(u.setUTCFullYear(t,s,Math.max(r,i)),u)}}function Eg(e){return e?parseInt(e):1}function act(e){const t=e.match(nct);if(!t)return NaN;const n=XC(t[1]),o=XC(t[2]),r=XC(t[3]);return bct(n,o,r)?n*Hfe+o*Vfe+r*1e3:NaN}function XC(e){return e&&parseFloat(e.replace(",","."))||0}function cct(e){if(e==="Z")return 0;const t=e.match(oct);if(!t)return 0;const n=t[1]==="+"?-1:1,o=parseInt(t[2]),r=t[3]&&parseInt(t[3])||0;return hct(o,r)?n*(o*Hfe+r*Vfe):NaN}function lct(e,t,n){const o=new Date(0);o.setUTCFullYear(e,0,4);const r=o.getUTCDay()||7,s=(t-1)*7+n+1-r;return o.setUTCDate(o.getUTCDate()+s),o}const uct=[31,null,31,30,31,30,31,31,30,31,30,31];function Zfe(e){return e%400===0||e%4===0&&e%100!==0}function dct(e,t,n){return t>=0&&t<=11&&n>=1&&n<=(uct[t]||(Zfe(e)?29:28))}function pct(e,t){return t>=1&&t<=(Zfe(e)?366:365)}function fct(e,t,n){return t>=1&&t<=53&&n>=0&&n<=6}function bct(e,t,n){return e===24?t===0&&n===0:n>=0&&n<60&&t>=0&&t<60&&e>=0&&e<25}function hct(e,t){return t>=0&&t<=59}function fj(e,t){const n=In(e),o=n.getFullYear(),r=n.getDate(),s=Os(e,0);s.setFullYear(o,t,15),s.setHours(0,0,0,0);const i=Zat(s);return n.setMonth(t,Math.min(r,i)),n}function Y8(e,t){let n=In(e);return isNaN(+n)?Os(e,NaN):(t.year!=null&&n.setFullYear(t.year),t.month!=null&&(n=fj(n,t.month)),t.date!=null&&n.setDate(t.date),t.hours!=null&&n.setHours(t.hours),t.minutes!=null&&n.setMinutes(t.minutes),t.seconds!=null&&n.setSeconds(t.seconds),t.milliseconds!=null&&n.setMilliseconds(t.milliseconds),n)}function mct(e,t){const n=In(e);return isNaN(+n)?Os(e,NaN):(n.setFullYear(t),n)}function gct(){return hi(Date.now())}function s4(e,t){return rf(e,-t)}function Mct(e,t){return pj(e,-t)}function zct(e,t){return Xfe(e,-t)}//! moment.js //! version : 2.30.1 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors //! license : MIT //! momentjs.com -var Qfe;function gt(){return Qfe.apply(null,arguments)}function yct(e){Qfe=e}function za(e){return e instanceof Array||Object.prototype.toString.call(e)==="[object Array]"}function sf(e){return e!=null&&Object.prototype.toString.call(e)==="[object Object]"}function ho(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function hj(e){if(Object.getOwnPropertyNames)return Object.getOwnPropertyNames(e).length===0;var t;for(t in e)if(ho(e,t))return!1;return!0}function rs(e){return e===void 0}function Il(e){return typeof e=="number"||Object.prototype.toString.call(e)==="[object Number]"}function sO(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function Jfe(e,t){var n=[],o,r=e.length;for(o=0;o<r;++o)n.push(t(e[o],o));return n}function ed(e,t){for(var n in t)ho(t,n)&&(e[n]=t[n]);return ho(t,"toString")&&(e.toString=t.toString),ho(t,"valueOf")&&(e.valueOf=t.valueOf),e}function Nc(e,t,n,o){return Abe(e,t,n,o,!0).utc()}function Act(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidEra:null,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],era:null,meridiem:null,rfc2822:!1,weekdayMismatch:!1}}function Nn(e){return e._pf==null&&(e._pf=Act()),e._pf}var Q8;Array.prototype.some?Q8=Array.prototype.some:Q8=function(e){var t=Object(this),n=t.length>>>0,o;for(o=0;o<n;o++)if(o in t&&e.call(this,t[o],o,t))return!0;return!1};function mj(e){var t=null,n=!1,o=e._d&&!isNaN(e._d.getTime());if(o&&(t=Nn(e),n=Q8.call(t.parsedDateParts,function(r){return r!=null}),o=t.overflow<0&&!t.empty&&!t.invalidEra&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n),e._strict&&(o=o&&t.charsLeftOver===0&&t.unusedTokens.length===0&&t.bigHour===void 0)),Object.isFrozen==null||!Object.isFrozen(e))e._isValid=o;else return o;return e._isValid}function Zw(e){var t=Nc(NaN);return e!=null?ed(Nn(t),e):Nn(t).userInvalidated=!0,t}var nZ=gt.momentProperties=[],KC=!1;function gj(e,t){var n,o,r,s=nZ.length;if(rs(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),rs(t._i)||(e._i=t._i),rs(t._f)||(e._f=t._f),rs(t._l)||(e._l=t._l),rs(t._strict)||(e._strict=t._strict),rs(t._tzm)||(e._tzm=t._tzm),rs(t._isUTC)||(e._isUTC=t._isUTC),rs(t._offset)||(e._offset=t._offset),rs(t._pf)||(e._pf=Nn(t)),rs(t._locale)||(e._locale=t._locale),s>0)for(n=0;n<s;n++)o=nZ[n],r=t[o],rs(r)||(e[o]=r);return e}function iO(e){gj(this,e),this._d=new Date(e._d!=null?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),KC===!1&&(KC=!0,gt.updateOffset(this),KC=!1)}function Oa(e){return e instanceof iO||e!=null&&e._isAMomentObject!=null}function ebe(e){gt.suppressDeprecationWarnings===!1&&typeof console<"u"&&console.warn&&console.warn("Deprecation warning: "+e)}function Bi(e,t){var n=!0;return ed(function(){if(gt.deprecationHandler!=null&>.deprecationHandler(null,e),n){var o=[],r,s,i,c=arguments.length;for(s=0;s<c;s++){if(r="",typeof arguments[s]=="object"){r+=` +var Qfe;function gt(){return Qfe.apply(null,arguments)}function Oct(e){Qfe=e}function Ma(e){return e instanceof Array||Object.prototype.toString.call(e)==="[object Array]"}function sf(e){return e!=null&&Object.prototype.toString.call(e)==="[object Object]"}function ho(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function bj(e){if(Object.getOwnPropertyNames)return Object.getOwnPropertyNames(e).length===0;var t;for(t in e)if(ho(e,t))return!1;return!0}function rs(e){return e===void 0}function jl(e){return typeof e=="number"||Object.prototype.toString.call(e)==="[object Number]"}function sO(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function Jfe(e,t){var n=[],o,r=e.length;for(o=0;o<r;++o)n.push(t(e[o],o));return n}function ed(e,t){for(var n in t)ho(t,n)&&(e[n]=t[n]);return ho(t,"toString")&&(e.toString=t.toString),ho(t,"valueOf")&&(e.valueOf=t.valueOf),e}function Nc(e,t,n,o){return Abe(e,t,n,o,!0).utc()}function yct(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidEra:null,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],era:null,meridiem:null,rfc2822:!1,weekdayMismatch:!1}}function Nn(e){return e._pf==null&&(e._pf=yct()),e._pf}var Z8;Array.prototype.some?Z8=Array.prototype.some:Z8=function(e){var t=Object(this),n=t.length>>>0,o;for(o=0;o<n;o++)if(o in t&&e.call(this,t[o],o,t))return!0;return!1};function hj(e){var t=null,n=!1,o=e._d&&!isNaN(e._d.getTime());if(o&&(t=Nn(e),n=Z8.call(t.parsedDateParts,function(r){return r!=null}),o=t.overflow<0&&!t.empty&&!t.invalidEra&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n),e._strict&&(o=o&&t.charsLeftOver===0&&t.unusedTokens.length===0&&t.bigHour===void 0)),Object.isFrozen==null||!Object.isFrozen(e))e._isValid=o;else return o;return e._isValid}function Yw(e){var t=Nc(NaN);return e!=null?ed(Nn(t),e):Nn(t).userInvalidated=!0,t}var nZ=gt.momentProperties=[],GC=!1;function mj(e,t){var n,o,r,s=nZ.length;if(rs(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),rs(t._i)||(e._i=t._i),rs(t._f)||(e._f=t._f),rs(t._l)||(e._l=t._l),rs(t._strict)||(e._strict=t._strict),rs(t._tzm)||(e._tzm=t._tzm),rs(t._isUTC)||(e._isUTC=t._isUTC),rs(t._offset)||(e._offset=t._offset),rs(t._pf)||(e._pf=Nn(t)),rs(t._locale)||(e._locale=t._locale),s>0)for(n=0;n<s;n++)o=nZ[n],r=t[o],rs(r)||(e[o]=r);return e}function iO(e){mj(this,e),this._d=new Date(e._d!=null?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),GC===!1&&(GC=!0,gt.updateOffset(this),GC=!1)}function za(e){return e instanceof iO||e!=null&&e._isAMomentObject!=null}function ebe(e){gt.suppressDeprecationWarnings===!1&&typeof console<"u"&&console.warn&&console.warn("Deprecation warning: "+e)}function Ni(e,t){var n=!0;return ed(function(){if(gt.deprecationHandler!=null&>.deprecationHandler(null,e),n){var o=[],r,s,i,c=arguments.length;for(s=0;s<c;s++){if(r="",typeof arguments[s]=="object"){r+=` [`+s+"] ";for(i in arguments[0])ho(arguments[0],i)&&(r+=i+": "+arguments[0][i]+", ");r=r.slice(0,-2)}else r=arguments[s];o.push(r)}ebe(e+` Arguments: `+Array.prototype.slice.call(o).join("")+` -`+new Error().stack),n=!1}return t.apply(this,arguments)},t)}var oZ={};function tbe(e,t){gt.deprecationHandler!=null&>.deprecationHandler(e,t),oZ[e]||(ebe(t),oZ[e]=!0)}gt.suppressDeprecationWarnings=!1;gt.deprecationHandler=null;function Bc(e){return typeof Function<"u"&&e instanceof Function||Object.prototype.toString.call(e)==="[object Function]"}function vct(e){var t,n;for(n in e)ho(e,n)&&(t=e[n],Bc(t)?this[n]=t:this["_"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)}function J8(e,t){var n=ed({},e),o;for(o in t)ho(t,o)&&(sf(e[o])&&sf(t[o])?(n[o]={},ed(n[o],e[o]),ed(n[o],t[o])):t[o]!=null?n[o]=t[o]:delete n[o]);for(o in e)ho(e,o)&&!ho(t,o)&&sf(e[o])&&(n[o]=ed({},n[o]));return n}function Mj(e){e!=null&&this.set(e)}var eW;Object.keys?eW=Object.keys:eW=function(e){var t,n=[];for(t in e)ho(e,t)&&n.push(t);return n};var xct={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"};function wct(e,t,n){var o=this._calendar[e]||this._calendar.sameElse;return Bc(o)?o.call(t,n):o}function _c(e,t,n){var o=""+Math.abs(e),r=t-o.length,s=e>=0;return(s?n?"+":"":"-")+Math.pow(10,Math.max(0,r)).toString().substr(1)+o}var zj=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,jA=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,YC={},j2={};function rn(e,t,n,o){var r=o;typeof o=="string"&&(r=function(){return this[o]()}),e&&(j2[e]=r),t&&(j2[t[0]]=function(){return _c(r.apply(this,arguments),t[1],t[2])}),n&&(j2[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),e)})}function _ct(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function kct(e){var t=e.match(zj),n,o;for(n=0,o=t.length;n<o;n++)j2[t[n]]?t[n]=j2[t[n]]:t[n]=_ct(t[n]);return function(r){var s="",i;for(i=0;i<o;i++)s+=Bc(t[i])?t[i].call(r,e):t[i];return s}}function a4(e,t){return e.isValid()?(t=nbe(t,e.localeData()),YC[t]=YC[t]||kct(t),YC[t](e)):e.localeData().invalidDate()}function nbe(e,t){var n=5;function o(r){return t.longDateFormat(r)||r}for(jA.lastIndex=0;n>=0&&jA.test(e);)e=e.replace(jA,o),jA.lastIndex=0,n-=1;return e}var Sct={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function Cct(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(zj).map(function(o){return o==="MMMM"||o==="MM"||o==="DD"||o==="dddd"?o.slice(1):o}).join(""),this._longDateFormat[e])}var qct="Invalid date";function Rct(){return this._invalidDate}var Tct="%d",Ect=/\d{1,2}/;function Wct(e){return this._ordinal.replace("%d",e)}var Nct={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function Bct(e,t,n,o){var r=this._relativeTime[n];return Bc(r)?r(e,t,n,o):r.replace(/%d/i,e)}function Lct(e,t){var n=this._relativeTime[e>0?"future":"past"];return Bc(n)?n(t):n.replace(/%s/i,t)}var rZ={D:"date",dates:"date",date:"date",d:"day",days:"day",day:"day",e:"weekday",weekdays:"weekday",weekday:"weekday",E:"isoWeekday",isoweekdays:"isoWeekday",isoweekday:"isoWeekday",DDD:"dayOfYear",dayofyears:"dayOfYear",dayofyear:"dayOfYear",h:"hour",hours:"hour",hour:"hour",ms:"millisecond",milliseconds:"millisecond",millisecond:"millisecond",m:"minute",minutes:"minute",minute:"minute",M:"month",months:"month",month:"month",Q:"quarter",quarters:"quarter",quarter:"quarter",s:"second",seconds:"second",second:"second",gg:"weekYear",weekyears:"weekYear",weekyear:"weekYear",GG:"isoWeekYear",isoweekyears:"isoWeekYear",isoweekyear:"isoWeekYear",w:"week",weeks:"week",week:"week",W:"isoWeek",isoweeks:"isoWeek",isoweek:"isoWeek",y:"year",years:"year",year:"year"};function Li(e){return typeof e=="string"?rZ[e]||rZ[e.toLowerCase()]:void 0}function Oj(e){var t={},n,o;for(o in e)ho(e,o)&&(n=Li(o),n&&(t[n]=e[o]));return t}var Pct={date:9,day:11,weekday:11,isoWeekday:11,dayOfYear:4,hour:13,millisecond:16,minute:14,month:8,quarter:7,second:15,weekYear:1,isoWeekYear:1,week:5,isoWeek:5,year:1};function jct(e){var t=[],n;for(n in e)ho(e,n)&&t.push({unit:n,priority:Pct[n]});return t.sort(function(o,r){return o.priority-r.priority}),t}var obe=/\d/,Ys=/\d\d/,rbe=/\d{3}/,yj=/\d{4}/,Qw=/[+-]?\d{6}/,dr=/\d\d?/,sbe=/\d\d\d\d?/,ibe=/\d\d\d\d\d\d?/,Jw=/\d{1,3}/,Aj=/\d{1,4}/,e_=/[+-]?\d{1,6}/,fm=/\d+/,t_=/[+-]?\d+/,Ict=/Z|[+-]\d\d:?\d\d/gi,n_=/Z|[+-]\d\d(?::?\d\d)?/gi,Dct=/[+-]?\d+(\.\d{1,3})?/,aO=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,bm=/^[1-9]\d?/,vj=/^([1-9]\d|\d)/,xx;xx={};function Dt(e,t,n){xx[e]=Bc(t)?t:function(o,r){return o&&n?n:t}}function Fct(e,t){return ho(xx,e)?xx[e](t._strict,t._locale):new RegExp($ct(e))}function $ct(e){return Cl(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,n,o,r,s){return n||o||r||s}))}function Cl(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function Mi(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function Gn(e){var t=+e,n=0;return t!==0&&isFinite(t)&&(n=Mi(t)),n}var tW={};function Fo(e,t){var n,o=t,r;for(typeof e=="string"&&(e=[e]),Il(t)&&(o=function(s,i){i[t]=Gn(s)}),r=e.length,n=0;n<r;n++)tW[e[n]]=o}function cO(e,t){Fo(e,function(n,o,r,s){r._w=r._w||{},t(n,r._w,r,s)})}function Vct(e,t,n){t!=null&&ho(tW,e)&&tW[e](t,n._a,n,e)}function o_(e){return e%4===0&&e%100!==0||e%400===0}var y1=0,gl=1,sc=2,b0=3,ia=4,Ml=5,Yp=6,Hct=7,Uct=8;rn("Y",0,0,function(){var e=this.year();return e<=9999?_c(e,4):"+"+e});rn(0,["YY",2],0,function(){return this.year()%100});rn(0,["YYYY",4],0,"year");rn(0,["YYYYY",5],0,"year");rn(0,["YYYYYY",6,!0],0,"year");Dt("Y",t_);Dt("YY",dr,Ys);Dt("YYYY",Aj,yj);Dt("YYYYY",e_,Qw);Dt("YYYYYY",e_,Qw);Fo(["YYYYY","YYYYYY"],y1);Fo("YYYY",function(e,t){t[y1]=e.length===2?gt.parseTwoDigitYear(e):Gn(e)});Fo("YY",function(e,t){t[y1]=gt.parseTwoDigitYear(e)});Fo("Y",function(e,t){t[y1]=parseInt(e,10)});function RM(e){return o_(e)?366:365}gt.parseTwoDigitYear=function(e){return Gn(e)+(Gn(e)>68?1900:2e3)};var abe=hm("FullYear",!0);function Xct(){return o_(this.year())}function hm(e,t){return function(n){return n!=null?(cbe(this,e,n),gt.updateOffset(this,t),this):Sz(this,e)}}function Sz(e,t){if(!e.isValid())return NaN;var n=e._d,o=e._isUTC;switch(t){case"Milliseconds":return o?n.getUTCMilliseconds():n.getMilliseconds();case"Seconds":return o?n.getUTCSeconds():n.getSeconds();case"Minutes":return o?n.getUTCMinutes():n.getMinutes();case"Hours":return o?n.getUTCHours():n.getHours();case"Date":return o?n.getUTCDate():n.getDate();case"Day":return o?n.getUTCDay():n.getDay();case"Month":return o?n.getUTCMonth():n.getMonth();case"FullYear":return o?n.getUTCFullYear():n.getFullYear();default:return NaN}}function cbe(e,t,n){var o,r,s,i,c;if(!(!e.isValid()||isNaN(n))){switch(o=e._d,r=e._isUTC,t){case"Milliseconds":return void(r?o.setUTCMilliseconds(n):o.setMilliseconds(n));case"Seconds":return void(r?o.setUTCSeconds(n):o.setSeconds(n));case"Minutes":return void(r?o.setUTCMinutes(n):o.setMinutes(n));case"Hours":return void(r?o.setUTCHours(n):o.setHours(n));case"Date":return void(r?o.setUTCDate(n):o.setDate(n));case"FullYear":break;default:return}s=n,i=e.month(),c=e.date(),c=c===29&&i===1&&!o_(s)?28:c,r?o.setUTCFullYear(s,i,c):o.setFullYear(s,i,c)}}function Gct(e){return e=Li(e),Bc(this[e])?this[e]():this}function Kct(e,t){if(typeof e=="object"){e=Oj(e);var n=jct(e),o,r=n.length;for(o=0;o<r;o++)this[n[o].unit](e[n[o].unit])}else if(e=Li(e),Bc(this[e]))return this[e](t);return this}function Yct(e,t){return(e%t+t)%t}var Ur;Array.prototype.indexOf?Ur=Array.prototype.indexOf:Ur=function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1};function xj(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=Yct(t,12);return e+=(t-n)/12,n===1?o_(e)?29:28:31-n%7%2}rn("M",["MM",2],"Mo",function(){return this.month()+1});rn("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)});rn("MMMM",0,0,function(e){return this.localeData().months(this,e)});Dt("M",dr,bm);Dt("MM",dr,Ys);Dt("MMM",function(e,t){return t.monthsShortRegex(e)});Dt("MMMM",function(e,t){return t.monthsRegex(e)});Fo(["M","MM"],function(e,t){t[gl]=Gn(e)-1});Fo(["MMM","MMMM"],function(e,t,n,o){var r=n._locale.monthsParse(e,o,n._strict);r!=null?t[gl]=r:Nn(n).invalidMonth=e});var Zct="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),lbe="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),ube=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,Qct=aO,Jct=aO;function elt(e,t){return e?za(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||ube).test(t)?"format":"standalone"][e.month()]:za(this._months)?this._months:this._months.standalone}function tlt(e,t){return e?za(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[ube.test(t)?"format":"standalone"][e.month()]:za(this._monthsShort)?this._monthsShort:this._monthsShort.standalone}function nlt(e,t,n){var o,r,s,i=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],o=0;o<12;++o)s=Nc([2e3,o]),this._shortMonthsParse[o]=this.monthsShort(s,"").toLocaleLowerCase(),this._longMonthsParse[o]=this.months(s,"").toLocaleLowerCase();return n?t==="MMM"?(r=Ur.call(this._shortMonthsParse,i),r!==-1?r:null):(r=Ur.call(this._longMonthsParse,i),r!==-1?r:null):t==="MMM"?(r=Ur.call(this._shortMonthsParse,i),r!==-1?r:(r=Ur.call(this._longMonthsParse,i),r!==-1?r:null)):(r=Ur.call(this._longMonthsParse,i),r!==-1?r:(r=Ur.call(this._shortMonthsParse,i),r!==-1?r:null))}function olt(e,t,n){var o,r,s;if(this._monthsParseExact)return nlt.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),o=0;o<12;o++){if(r=Nc([2e3,o]),n&&!this._longMonthsParse[o]&&(this._longMonthsParse[o]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i"),this._shortMonthsParse[o]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")),!n&&!this._monthsParse[o]&&(s="^"+this.months(r,"")+"|^"+this.monthsShort(r,""),this._monthsParse[o]=new RegExp(s.replace(".",""),"i")),n&&t==="MMMM"&&this._longMonthsParse[o].test(e))return o;if(n&&t==="MMM"&&this._shortMonthsParse[o].test(e))return o;if(!n&&this._monthsParse[o].test(e))return o}}function dbe(e,t){if(!e.isValid())return e;if(typeof t=="string"){if(/^\d+$/.test(t))t=Gn(t);else if(t=e.localeData().monthsParse(t),!Il(t))return e}var n=t,o=e.date();return o=o<29?o:Math.min(o,xj(e.year(),n)),e._isUTC?e._d.setUTCMonth(n,o):e._d.setMonth(n,o),e}function pbe(e){return e!=null?(dbe(this,e),gt.updateOffset(this,!0),this):Sz(this,"Month")}function rlt(){return xj(this.year(),this.month())}function slt(e){return this._monthsParseExact?(ho(this,"_monthsRegex")||fbe.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(ho(this,"_monthsShortRegex")||(this._monthsShortRegex=Qct),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)}function ilt(e){return this._monthsParseExact?(ho(this,"_monthsRegex")||fbe.call(this),e?this._monthsStrictRegex:this._monthsRegex):(ho(this,"_monthsRegex")||(this._monthsRegex=Jct),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)}function fbe(){function e(l,u){return u.length-l.length}var t=[],n=[],o=[],r,s,i,c;for(r=0;r<12;r++)s=Nc([2e3,r]),i=Cl(this.monthsShort(s,"")),c=Cl(this.months(s,"")),t.push(i),n.push(c),o.push(c),o.push(i);t.sort(e),n.sort(e),o.sort(e),this._monthsRegex=new RegExp("^("+o.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+n.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+t.join("|")+")","i")}function alt(e,t,n,o,r,s,i){var c;return e<100&&e>=0?(c=new Date(e+400,t,n,o,r,s,i),isFinite(c.getFullYear())&&c.setFullYear(e)):c=new Date(e,t,n,o,r,s,i),c}function Cz(e){var t,n;return e<100&&e>=0?(n=Array.prototype.slice.call(arguments),n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function wx(e,t,n){var o=7+t-n,r=(7+Cz(e,0,o).getUTCDay()-t)%7;return-r+o-1}function bbe(e,t,n,o,r){var s=(7+n-o)%7,i=wx(e,o,r),c=1+7*(t-1)+s+i,l,u;return c<=0?(l=e-1,u=RM(l)+c):c>RM(e)?(l=e+1,u=c-RM(e)):(l=e,u=c),{year:l,dayOfYear:u}}function qz(e,t,n){var o=wx(e.year(),t,n),r=Math.floor((e.dayOfYear()-o-1)/7)+1,s,i;return r<1?(i=e.year()-1,s=r+ql(i,t,n)):r>ql(e.year(),t,n)?(s=r-ql(e.year(),t,n),i=e.year()+1):(i=e.year(),s=r),{week:s,year:i}}function ql(e,t,n){var o=wx(e,t,n),r=wx(e+1,t,n);return(RM(e)-o+r)/7}rn("w",["ww",2],"wo","week");rn("W",["WW",2],"Wo","isoWeek");Dt("w",dr,bm);Dt("ww",dr,Ys);Dt("W",dr,bm);Dt("WW",dr,Ys);cO(["w","ww","W","WW"],function(e,t,n,o){t[o.substr(0,1)]=Gn(e)});function clt(e){return qz(e,this._week.dow,this._week.doy).week}var llt={dow:0,doy:6};function ult(){return this._week.dow}function dlt(){return this._week.doy}function plt(e){var t=this.localeData().week(this);return e==null?t:this.add((e-t)*7,"d")}function flt(e){var t=qz(this,1,4).week;return e==null?t:this.add((e-t)*7,"d")}rn("d",0,"do","day");rn("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)});rn("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)});rn("dddd",0,0,function(e){return this.localeData().weekdays(this,e)});rn("e",0,0,"weekday");rn("E",0,0,"isoWeekday");Dt("d",dr);Dt("e",dr);Dt("E",dr);Dt("dd",function(e,t){return t.weekdaysMinRegex(e)});Dt("ddd",function(e,t){return t.weekdaysShortRegex(e)});Dt("dddd",function(e,t){return t.weekdaysRegex(e)});cO(["dd","ddd","dddd"],function(e,t,n,o){var r=n._locale.weekdaysParse(e,o,n._strict);r!=null?t.d=r:Nn(n).invalidWeekday=e});cO(["d","e","E"],function(e,t,n,o){t[o]=Gn(e)});function blt(e,t){return typeof e!="string"?e:isNaN(e)?(e=t.weekdaysParse(e),typeof e=="number"?e:null):parseInt(e,10)}function hlt(e,t){return typeof e=="string"?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function wj(e,t){return e.slice(t,7).concat(e.slice(0,t))}var mlt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),hbe="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),glt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Mlt=aO,zlt=aO,Olt=aO;function ylt(e,t){var n=za(this._weekdays)?this._weekdays:this._weekdays[e&&e!==!0&&this._weekdays.isFormat.test(t)?"format":"standalone"];return e===!0?wj(n,this._week.dow):e?n[e.day()]:n}function Alt(e){return e===!0?wj(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function vlt(e){return e===!0?wj(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function xlt(e,t,n){var o,r,s,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],o=0;o<7;++o)s=Nc([2e3,1]).day(o),this._minWeekdaysParse[o]=this.weekdaysMin(s,"").toLocaleLowerCase(),this._shortWeekdaysParse[o]=this.weekdaysShort(s,"").toLocaleLowerCase(),this._weekdaysParse[o]=this.weekdays(s,"").toLocaleLowerCase();return n?t==="dddd"?(r=Ur.call(this._weekdaysParse,i),r!==-1?r:null):t==="ddd"?(r=Ur.call(this._shortWeekdaysParse,i),r!==-1?r:null):(r=Ur.call(this._minWeekdaysParse,i),r!==-1?r:null):t==="dddd"?(r=Ur.call(this._weekdaysParse,i),r!==-1||(r=Ur.call(this._shortWeekdaysParse,i),r!==-1)?r:(r=Ur.call(this._minWeekdaysParse,i),r!==-1?r:null)):t==="ddd"?(r=Ur.call(this._shortWeekdaysParse,i),r!==-1||(r=Ur.call(this._weekdaysParse,i),r!==-1)?r:(r=Ur.call(this._minWeekdaysParse,i),r!==-1?r:null)):(r=Ur.call(this._minWeekdaysParse,i),r!==-1||(r=Ur.call(this._weekdaysParse,i),r!==-1)?r:(r=Ur.call(this._shortWeekdaysParse,i),r!==-1?r:null))}function wlt(e,t,n){var o,r,s;if(this._weekdaysParseExact)return xlt.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),o=0;o<7;o++){if(r=Nc([2e3,1]).day(o),n&&!this._fullWeekdaysParse[o]&&(this._fullWeekdaysParse[o]=new RegExp("^"+this.weekdays(r,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[o]=new RegExp("^"+this.weekdaysShort(r,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[o]=new RegExp("^"+this.weekdaysMin(r,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[o]||(s="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,""),this._weekdaysParse[o]=new RegExp(s.replace(".",""),"i")),n&&t==="dddd"&&this._fullWeekdaysParse[o].test(e))return o;if(n&&t==="ddd"&&this._shortWeekdaysParse[o].test(e))return o;if(n&&t==="dd"&&this._minWeekdaysParse[o].test(e))return o;if(!n&&this._weekdaysParse[o].test(e))return o}}function _lt(e){if(!this.isValid())return e!=null?this:NaN;var t=Sz(this,"Day");return e!=null?(e=blt(e,this.localeData()),this.add(e-t,"d")):t}function klt(e){if(!this.isValid())return e!=null?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return e==null?t:this.add(e-t,"d")}function Slt(e){if(!this.isValid())return e!=null?this:NaN;if(e!=null){var t=hlt(e,this.localeData());return this.day(this.day()%7?t:t-7)}else return this.day()||7}function Clt(e){return this._weekdaysParseExact?(ho(this,"_weekdaysRegex")||_j.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(ho(this,"_weekdaysRegex")||(this._weekdaysRegex=Mlt),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function qlt(e){return this._weekdaysParseExact?(ho(this,"_weekdaysRegex")||_j.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(ho(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=zlt),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Rlt(e){return this._weekdaysParseExact?(ho(this,"_weekdaysRegex")||_j.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(ho(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Olt),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function _j(){function e(d,p){return p.length-d.length}var t=[],n=[],o=[],r=[],s,i,c,l,u;for(s=0;s<7;s++)i=Nc([2e3,1]).day(s),c=Cl(this.weekdaysMin(i,"")),l=Cl(this.weekdaysShort(i,"")),u=Cl(this.weekdays(i,"")),t.push(c),n.push(l),o.push(u),r.push(c),r.push(l),r.push(u);t.sort(e),n.sort(e),o.sort(e),r.sort(e),this._weekdaysRegex=new RegExp("^("+r.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+n.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+t.join("|")+")","i")}function kj(){return this.hours()%12||12}function Tlt(){return this.hours()||24}rn("H",["HH",2],0,"hour");rn("h",["hh",2],0,kj);rn("k",["kk",2],0,Tlt);rn("hmm",0,0,function(){return""+kj.apply(this)+_c(this.minutes(),2)});rn("hmmss",0,0,function(){return""+kj.apply(this)+_c(this.minutes(),2)+_c(this.seconds(),2)});rn("Hmm",0,0,function(){return""+this.hours()+_c(this.minutes(),2)});rn("Hmmss",0,0,function(){return""+this.hours()+_c(this.minutes(),2)+_c(this.seconds(),2)});function mbe(e,t){rn(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}mbe("a",!0);mbe("A",!1);function gbe(e,t){return t._meridiemParse}Dt("a",gbe);Dt("A",gbe);Dt("H",dr,vj);Dt("h",dr,bm);Dt("k",dr,bm);Dt("HH",dr,Ys);Dt("hh",dr,Ys);Dt("kk",dr,Ys);Dt("hmm",sbe);Dt("hmmss",ibe);Dt("Hmm",sbe);Dt("Hmmss",ibe);Fo(["H","HH"],b0);Fo(["k","kk"],function(e,t,n){var o=Gn(e);t[b0]=o===24?0:o});Fo(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e});Fo(["h","hh"],function(e,t,n){t[b0]=Gn(e),Nn(n).bigHour=!0});Fo("hmm",function(e,t,n){var o=e.length-2;t[b0]=Gn(e.substr(0,o)),t[ia]=Gn(e.substr(o)),Nn(n).bigHour=!0});Fo("hmmss",function(e,t,n){var o=e.length-4,r=e.length-2;t[b0]=Gn(e.substr(0,o)),t[ia]=Gn(e.substr(o,2)),t[Ml]=Gn(e.substr(r)),Nn(n).bigHour=!0});Fo("Hmm",function(e,t,n){var o=e.length-2;t[b0]=Gn(e.substr(0,o)),t[ia]=Gn(e.substr(o))});Fo("Hmmss",function(e,t,n){var o=e.length-4,r=e.length-2;t[b0]=Gn(e.substr(0,o)),t[ia]=Gn(e.substr(o,2)),t[Ml]=Gn(e.substr(r))});function Elt(e){return(e+"").toLowerCase().charAt(0)==="p"}var Wlt=/[ap]\.?m?\.?/i,Nlt=hm("Hours",!0);function Blt(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}var Mbe={calendar:xct,longDateFormat:Sct,invalidDate:qct,ordinal:Tct,dayOfMonthOrdinalParse:Ect,relativeTime:Nct,months:Zct,monthsShort:lbe,week:llt,weekdays:mlt,weekdaysMin:glt,weekdaysShort:hbe,meridiemParse:Wlt},br={},Wg={},Rz;function Llt(e,t){var n,o=Math.min(e.length,t.length);for(n=0;n<o;n+=1)if(e[n]!==t[n])return n;return o}function sZ(e){return e&&e.toLowerCase().replace("_","-")}function Plt(e){for(var t=0,n,o,r,s;t<e.length;){for(s=sZ(e[t]).split("-"),n=s.length,o=sZ(e[t+1]),o=o?o.split("-"):null;n>0;){if(r=r_(s.slice(0,n).join("-")),r)return r;if(o&&o.length>=n&&Llt(s,o)>=n-1)break;n--}t++}return Rz}function jlt(e){return!!(e&&e.match("^[^/\\\\]*$"))}function r_(e){var t=null,n;if(br[e]===void 0&&typeof k4<"u"&&k4&&k4.exports&&jlt(e))try{t=Rz._abbr,n=require,n("./locale/"+e),ld(t)}catch{br[e]=null}return br[e]}function ld(e,t){var n;return e&&(rs(t)?n=ru(e):n=Sj(e,t),n?Rz=n:typeof console<"u"&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Rz._abbr}function Sj(e,t){if(t!==null){var n,o=Mbe;if(t.abbr=e,br[e]!=null)tbe("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),o=br[e]._config;else if(t.parentLocale!=null)if(br[t.parentLocale]!=null)o=br[t.parentLocale]._config;else if(n=r_(t.parentLocale),n!=null)o=n._config;else return Wg[t.parentLocale]||(Wg[t.parentLocale]=[]),Wg[t.parentLocale].push({name:e,config:t}),null;return br[e]=new Mj(J8(o,t)),Wg[e]&&Wg[e].forEach(function(r){Sj(r.name,r.config)}),ld(e),br[e]}else return delete br[e],null}function Ilt(e,t){if(t!=null){var n,o,r=Mbe;br[e]!=null&&br[e].parentLocale!=null?br[e].set(J8(br[e]._config,t)):(o=r_(e),o!=null&&(r=o._config),t=J8(r,t),o==null&&(t.abbr=e),n=new Mj(t),n.parentLocale=br[e],br[e]=n),ld(e)}else br[e]!=null&&(br[e].parentLocale!=null?(br[e]=br[e].parentLocale,e===ld()&&ld(e)):br[e]!=null&&delete br[e]);return br[e]}function ru(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Rz;if(!za(e)){if(t=r_(e),t)return t;e=[e]}return Plt(e)}function Dlt(){return eW(br)}function Cj(e){var t,n=e._a;return n&&Nn(e).overflow===-2&&(t=n[gl]<0||n[gl]>11?gl:n[sc]<1||n[sc]>xj(n[y1],n[gl])?sc:n[b0]<0||n[b0]>24||n[b0]===24&&(n[ia]!==0||n[Ml]!==0||n[Yp]!==0)?b0:n[ia]<0||n[ia]>59?ia:n[Ml]<0||n[Ml]>59?Ml:n[Yp]<0||n[Yp]>999?Yp:-1,Nn(e)._overflowDayOfYear&&(t<y1||t>sc)&&(t=sc),Nn(e)._overflowWeeks&&t===-1&&(t=Hct),Nn(e)._overflowWeekday&&t===-1&&(t=Uct),Nn(e).overflow=t),e}var Flt=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,$lt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Vlt=/Z|[+-]\d\d(?::?\d\d)?/,IA=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],ZC=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Hlt=/^\/?Date\((-?\d+)/i,Ult=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Xlt={UT:0,GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function zbe(e){var t,n,o=e._i,r=Flt.exec(o)||$lt.exec(o),s,i,c,l,u=IA.length,d=ZC.length;if(r){for(Nn(e).iso=!0,t=0,n=u;t<n;t++)if(IA[t][1].exec(r[1])){i=IA[t][0],s=IA[t][2]!==!1;break}if(i==null){e._isValid=!1;return}if(r[3]){for(t=0,n=d;t<n;t++)if(ZC[t][1].exec(r[3])){c=(r[2]||" ")+ZC[t][0];break}if(c==null){e._isValid=!1;return}}if(!s&&c!=null){e._isValid=!1;return}if(r[4])if(Vlt.exec(r[4]))l="Z";else{e._isValid=!1;return}e._f=i+(c||"")+(l||""),Rj(e)}else e._isValid=!1}function Glt(e,t,n,o,r,s){var i=[Klt(e),lbe.indexOf(t),parseInt(n,10),parseInt(o,10),parseInt(r,10)];return s&&i.push(parseInt(s,10)),i}function Klt(e){var t=parseInt(e,10);return t<=49?2e3+t:t<=999?1900+t:t}function Ylt(e){return e.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,"")}function Zlt(e,t,n){if(e){var o=hbe.indexOf(e),r=new Date(t[0],t[1],t[2]).getDay();if(o!==r)return Nn(n).weekdayMismatch=!0,n._isValid=!1,!1}return!0}function Qlt(e,t,n){if(e)return Xlt[e];if(t)return 0;var o=parseInt(n,10),r=o%100,s=(o-r)/100;return s*60+r}function Obe(e){var t=Ult.exec(Ylt(e._i)),n;if(t){if(n=Glt(t[4],t[3],t[2],t[5],t[6],t[7]),!Zlt(t[1],n,e))return;e._a=n,e._tzm=Qlt(t[8],t[9],t[10]),e._d=Cz.apply(null,e._a),e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),Nn(e).rfc2822=!0}else e._isValid=!1}function Jlt(e){var t=Hlt.exec(e._i);if(t!==null){e._d=new Date(+t[1]);return}if(zbe(e),e._isValid===!1)delete e._isValid;else return;if(Obe(e),e._isValid===!1)delete e._isValid;else return;e._strict?e._isValid=!1:gt.createFromInputFallback(e)}gt.createFromInputFallback=Bi("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))});function i2(e,t,n){return e??t??n}function eut(e){var t=new Date(gt.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}function qj(e){var t,n,o=[],r,s,i;if(!e._d){for(r=eut(e),e._w&&e._a[sc]==null&&e._a[gl]==null&&tut(e),e._dayOfYear!=null&&(i=i2(e._a[y1],r[y1]),(e._dayOfYear>RM(i)||e._dayOfYear===0)&&(Nn(e)._overflowDayOfYear=!0),n=Cz(i,0,e._dayOfYear),e._a[gl]=n.getUTCMonth(),e._a[sc]=n.getUTCDate()),t=0;t<3&&e._a[t]==null;++t)e._a[t]=o[t]=r[t];for(;t<7;t++)e._a[t]=o[t]=e._a[t]==null?t===2?1:0:e._a[t];e._a[b0]===24&&e._a[ia]===0&&e._a[Ml]===0&&e._a[Yp]===0&&(e._nextDay=!0,e._a[b0]=0),e._d=(e._useUTC?Cz:alt).apply(null,o),s=e._useUTC?e._d.getUTCDay():e._d.getDay(),e._tzm!=null&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[b0]=24),e._w&&typeof e._w.d<"u"&&e._w.d!==s&&(Nn(e).weekdayMismatch=!0)}}function tut(e){var t,n,o,r,s,i,c,l,u;t=e._w,t.GG!=null||t.W!=null||t.E!=null?(s=1,i=4,n=i2(t.GG,e._a[y1],qz(lr(),1,4).year),o=i2(t.W,1),r=i2(t.E,1),(r<1||r>7)&&(l=!0)):(s=e._locale._week.dow,i=e._locale._week.doy,u=qz(lr(),s,i),n=i2(t.gg,e._a[y1],u.year),o=i2(t.w,u.week),t.d!=null?(r=t.d,(r<0||r>6)&&(l=!0)):t.e!=null?(r=t.e+s,(t.e<0||t.e>6)&&(l=!0)):r=s),o<1||o>ql(n,s,i)?Nn(e)._overflowWeeks=!0:l!=null?Nn(e)._overflowWeekday=!0:(c=bbe(n,o,r,s,i),e._a[y1]=c.year,e._dayOfYear=c.dayOfYear)}gt.ISO_8601=function(){};gt.RFC_2822=function(){};function Rj(e){if(e._f===gt.ISO_8601){zbe(e);return}if(e._f===gt.RFC_2822){Obe(e);return}e._a=[],Nn(e).empty=!0;var t=""+e._i,n,o,r,s,i,c=t.length,l=0,u,d;for(r=nbe(e._f,e._locale).match(zj)||[],d=r.length,n=0;n<d;n++)s=r[n],o=(t.match(Fct(s,e))||[])[0],o&&(i=t.substr(0,t.indexOf(o)),i.length>0&&Nn(e).unusedInput.push(i),t=t.slice(t.indexOf(o)+o.length),l+=o.length),j2[s]?(o?Nn(e).empty=!1:Nn(e).unusedTokens.push(s),Vct(s,o,e)):e._strict&&!o&&Nn(e).unusedTokens.push(s);Nn(e).charsLeftOver=c-l,t.length>0&&Nn(e).unusedInput.push(t),e._a[b0]<=12&&Nn(e).bigHour===!0&&e._a[b0]>0&&(Nn(e).bigHour=void 0),Nn(e).parsedDateParts=e._a.slice(0),Nn(e).meridiem=e._meridiem,e._a[b0]=nut(e._locale,e._a[b0],e._meridiem),u=Nn(e).era,u!==null&&(e._a[y1]=e._locale.erasConvertYear(u,e._a[y1])),qj(e),Cj(e)}function nut(e,t,n){var o;return n==null?t:e.meridiemHour!=null?e.meridiemHour(t,n):(e.isPM!=null&&(o=e.isPM(n),o&&t<12&&(t+=12),!o&&t===12&&(t=0)),t)}function out(e){var t,n,o,r,s,i,c=!1,l=e._f.length;if(l===0){Nn(e).invalidFormat=!0,e._d=new Date(NaN);return}for(r=0;r<l;r++)s=0,i=!1,t=gj({},e),e._useUTC!=null&&(t._useUTC=e._useUTC),t._f=e._f[r],Rj(t),mj(t)&&(i=!0),s+=Nn(t).charsLeftOver,s+=Nn(t).unusedTokens.length*10,Nn(t).score=s,c?s<o&&(o=s,n=t):(o==null||s<o||i)&&(o=s,n=t,i&&(c=!0));ed(e,n||t)}function rut(e){if(!e._d){var t=Oj(e._i),n=t.day===void 0?t.date:t.day;e._a=Jfe([t.year,t.month,n,t.hour,t.minute,t.second,t.millisecond],function(o){return o&&parseInt(o,10)}),qj(e)}}function sut(e){var t=new iO(Cj(ybe(e)));return t._nextDay&&(t.add(1,"d"),t._nextDay=void 0),t}function ybe(e){var t=e._i,n=e._f;return e._locale=e._locale||ru(e._l),t===null||n===void 0&&t===""?Zw({nullInput:!0}):(typeof t=="string"&&(e._i=t=e._locale.preparse(t)),Oa(t)?new iO(Cj(t)):(sO(t)?e._d=t:za(n)?out(e):n?Rj(e):iut(e),mj(e)||(e._d=null),e))}function iut(e){var t=e._i;rs(t)?e._d=new Date(gt.now()):sO(t)?e._d=new Date(t.valueOf()):typeof t=="string"?Jlt(e):za(t)?(e._a=Jfe(t.slice(0),function(n){return parseInt(n,10)}),qj(e)):sf(t)?rut(e):Il(t)?e._d=new Date(t):gt.createFromInputFallback(e)}function Abe(e,t,n,o,r){var s={};return(t===!0||t===!1)&&(o=t,t=void 0),(n===!0||n===!1)&&(o=n,n=void 0),(sf(e)&&hj(e)||za(e)&&e.length===0)&&(e=void 0),s._isAMomentObject=!0,s._useUTC=s._isUTC=r,s._l=n,s._i=e,s._f=t,s._strict=o,sut(s)}function lr(e,t,n,o){return Abe(e,t,n,o,!1)}var aut=Bi("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=lr.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:Zw()}),cut=Bi("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=lr.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:Zw()});function vbe(e,t){var n,o;if(t.length===1&&za(t[0])&&(t=t[0]),!t.length)return lr();for(n=t[0],o=1;o<t.length;++o)(!t[o].isValid()||t[o][e](n))&&(n=t[o]);return n}function lut(){var e=[].slice.call(arguments,0);return vbe("isBefore",e)}function uut(){var e=[].slice.call(arguments,0);return vbe("isAfter",e)}var dut=function(){return Date.now?Date.now():+new Date},Ng=["year","quarter","month","week","day","hour","minute","second","millisecond"];function put(e){var t,n=!1,o,r=Ng.length;for(t in e)if(ho(e,t)&&!(Ur.call(Ng,t)!==-1&&(e[t]==null||!isNaN(e[t]))))return!1;for(o=0;o<r;++o)if(e[Ng[o]]){if(n)return!1;parseFloat(e[Ng[o]])!==Gn(e[Ng[o]])&&(n=!0)}return!0}function fut(){return this._isValid}function but(){return ka(NaN)}function s_(e){var t=Oj(e),n=t.year||0,o=t.quarter||0,r=t.month||0,s=t.week||t.isoWeek||0,i=t.day||0,c=t.hour||0,l=t.minute||0,u=t.second||0,d=t.millisecond||0;this._isValid=put(t),this._milliseconds=+d+u*1e3+l*6e4+c*1e3*60*60,this._days=+i+s*7,this._months=+r+o*3+n*12,this._data={},this._locale=ru(),this._bubble()}function c4(e){return e instanceof s_}function nW(e){return e<0?Math.round(-1*e)*-1:Math.round(e)}function hut(e,t,n){var o=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),s=0,i;for(i=0;i<o;i++)Gn(e[i])!==Gn(t[i])&&s++;return s+r}function xbe(e,t){rn(e,0,0,function(){var n=this.utcOffset(),o="+";return n<0&&(n=-n,o="-"),o+_c(~~(n/60),2)+t+_c(~~n%60,2)})}xbe("Z",":");xbe("ZZ","");Dt("Z",n_);Dt("ZZ",n_);Fo(["Z","ZZ"],function(e,t,n){n._useUTC=!0,n._tzm=Tj(n_,e)});var mut=/([\+\-]|\d\d)/gi;function Tj(e,t){var n=(t||"").match(e),o,r,s;return n===null?null:(o=n[n.length-1]||[],r=(o+"").match(mut)||["-",0,0],s=+(r[1]*60)+Gn(r[2]),s===0?0:r[0]==="+"?s:-s)}function Ej(e,t){var n,o;return t._isUTC?(n=t.clone(),o=(Oa(e)||sO(e)?e.valueOf():lr(e).valueOf())-n.valueOf(),n._d.setTime(n._d.valueOf()+o),gt.updateOffset(n,!1),n):lr(e).local()}function oW(e){return-Math.round(e._d.getTimezoneOffset())}gt.updateOffset=function(){};function gut(e,t,n){var o=this._offset||0,r;if(!this.isValid())return e!=null?this:NaN;if(e!=null){if(typeof e=="string"){if(e=Tj(n_,e),e===null)return this}else Math.abs(e)<16&&!n&&(e=e*60);return!this._isUTC&&t&&(r=oW(this)),this._offset=e,this._isUTC=!0,r!=null&&this.add(r,"m"),o!==e&&(!t||this._changeInProgress?kbe(this,ka(e-o,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,gt.updateOffset(this,!0),this._changeInProgress=null)),this}else return this._isUTC?o:oW(this)}function Mut(e,t){return e!=null?(typeof e!="string"&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}function zut(e){return this.utcOffset(0,e)}function Out(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(oW(this),"m")),this}function yut(){if(this._tzm!=null)this.utcOffset(this._tzm,!1,!0);else if(typeof this._i=="string"){var e=Tj(Ict,this._i);e!=null?this.utcOffset(e):this.utcOffset(0,!0)}return this}function Aut(e){return this.isValid()?(e=e?lr(e).utcOffset():0,(this.utcOffset()-e)%60===0):!1}function vut(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function xut(){if(!rs(this._isDSTShifted))return this._isDSTShifted;var e={},t;return gj(e,this),e=ybe(e),e._a?(t=e._isUTC?Nc(e._a):lr(e._a),this._isDSTShifted=this.isValid()&&hut(e._a,t.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function wut(){return this.isValid()?!this._isUTC:!1}function _ut(){return this.isValid()?this._isUTC:!1}function wbe(){return this.isValid()?this._isUTC&&this._offset===0:!1}var kut=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Sut=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function ka(e,t){var n=e,o=null,r,s,i;return c4(e)?n={ms:e._milliseconds,d:e._days,M:e._months}:Il(e)||!isNaN(+e)?(n={},t?n[t]=+e:n.milliseconds=+e):(o=kut.exec(e))?(r=o[1]==="-"?-1:1,n={y:0,d:Gn(o[sc])*r,h:Gn(o[b0])*r,m:Gn(o[ia])*r,s:Gn(o[Ml])*r,ms:Gn(nW(o[Yp]*1e3))*r}):(o=Sut.exec(e))?(r=o[1]==="-"?-1:1,n={y:Ep(o[2],r),M:Ep(o[3],r),w:Ep(o[4],r),d:Ep(o[5],r),h:Ep(o[6],r),m:Ep(o[7],r),s:Ep(o[8],r)}):n==null?n={}:typeof n=="object"&&("from"in n||"to"in n)&&(i=Cut(lr(n.from),lr(n.to)),n={},n.ms=i.milliseconds,n.M=i.months),s=new s_(n),c4(e)&&ho(e,"_locale")&&(s._locale=e._locale),c4(e)&&ho(e,"_isValid")&&(s._isValid=e._isValid),s}ka.fn=s_.prototype;ka.invalid=but;function Ep(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function iZ(e,t){var n={};return n.months=t.month()-e.month()+(t.year()-e.year())*12,e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Cut(e,t){var n;return e.isValid()&&t.isValid()?(t=Ej(t,e),e.isBefore(t)?n=iZ(e,t):(n=iZ(t,e),n.milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function _be(e,t){return function(n,o){var r,s;return o!==null&&!isNaN(+o)&&(tbe(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),s=n,n=o,o=s),r=ka(n,o),kbe(this,r,e),this}}function kbe(e,t,n,o){var r=t._milliseconds,s=nW(t._days),i=nW(t._months);e.isValid()&&(o=o??!0,i&&dbe(e,Sz(e,"Month")+i*n),s&&cbe(e,"Date",Sz(e,"Date")+s*n),r&&e._d.setTime(e._d.valueOf()+r*n),o&>.updateOffset(e,s||i))}var qut=_be(1,"add"),Rut=_be(-1,"subtract");function Sbe(e){return typeof e=="string"||e instanceof String}function Tut(e){return Oa(e)||sO(e)||Sbe(e)||Il(e)||Wut(e)||Eut(e)||e===null||e===void 0}function Eut(e){var t=sf(e)&&!hj(e),n=!1,o=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],r,s,i=o.length;for(r=0;r<i;r+=1)s=o[r],n=n||ho(e,s);return t&&n}function Wut(e){var t=za(e),n=!1;return t&&(n=e.filter(function(o){return!Il(o)&&Sbe(e)}).length===0),t&&n}function Nut(e){var t=sf(e)&&!hj(e),n=!1,o=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"],r,s;for(r=0;r<o.length;r+=1)s=o[r],n=n||ho(e,s);return t&&n}function But(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"}function Lut(e,t){arguments.length===1&&(arguments[0]?Tut(arguments[0])?(e=arguments[0],t=void 0):Nut(arguments[0])&&(t=arguments[0],e=void 0):(e=void 0,t=void 0));var n=e||lr(),o=Ej(n,this).startOf("day"),r=gt.calendarFormat(this,o)||"sameElse",s=t&&(Bc(t[r])?t[r].call(this,n):t[r]);return this.format(s||this.localeData().calendar(r,this,lr(n)))}function Put(){return new iO(this)}function jut(e,t){var n=Oa(e)?e:lr(e);return this.isValid()&&n.isValid()?(t=Li(t)||"millisecond",t==="millisecond"?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf()):!1}function Iut(e,t){var n=Oa(e)?e:lr(e);return this.isValid()&&n.isValid()?(t=Li(t)||"millisecond",t==="millisecond"?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf()):!1}function Dut(e,t,n,o){var r=Oa(e)?e:lr(e),s=Oa(t)?t:lr(t);return this.isValid()&&r.isValid()&&s.isValid()?(o=o||"()",(o[0]==="("?this.isAfter(r,n):!this.isBefore(r,n))&&(o[1]===")"?this.isBefore(s,n):!this.isAfter(s,n))):!1}function Fut(e,t){var n=Oa(e)?e:lr(e),o;return this.isValid()&&n.isValid()?(t=Li(t)||"millisecond",t==="millisecond"?this.valueOf()===n.valueOf():(o=n.valueOf(),this.clone().startOf(t).valueOf()<=o&&o<=this.clone().endOf(t).valueOf())):!1}function $ut(e,t){return this.isSame(e,t)||this.isAfter(e,t)}function Vut(e,t){return this.isSame(e,t)||this.isBefore(e,t)}function Hut(e,t,n){var o,r,s;if(!this.isValid())return NaN;if(o=Ej(e,this),!o.isValid())return NaN;switch(r=(o.utcOffset()-this.utcOffset())*6e4,t=Li(t),t){case"year":s=l4(this,o)/12;break;case"month":s=l4(this,o);break;case"quarter":s=l4(this,o)/3;break;case"second":s=(this-o)/1e3;break;case"minute":s=(this-o)/6e4;break;case"hour":s=(this-o)/36e5;break;case"day":s=(this-o-r)/864e5;break;case"week":s=(this-o-r)/6048e5;break;default:s=this-o}return n?s:Mi(s)}function l4(e,t){if(e.date()<t.date())return-l4(t,e);var n=(t.year()-e.year())*12+(t.month()-e.month()),o=e.clone().add(n,"months"),r,s;return t-o<0?(r=e.clone().add(n-1,"months"),s=(t-o)/(o-r)):(r=e.clone().add(n+1,"months"),s=(t-o)/(r-o)),-(n+s)||0}gt.defaultFormat="YYYY-MM-DDTHH:mm:ssZ";gt.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";function Uut(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function Xut(e){if(!this.isValid())return null;var t=e!==!0,n=t?this.clone().utc():this;return n.year()<0||n.year()>9999?a4(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):Bc(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+this.utcOffset()*60*1e3).toISOString().replace("Z",a4(n,"Z")):a4(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function Gut(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="",n,o,r,s;return this.isLocal()||(e=this.utcOffset()===0?"moment.utc":"moment.parseZone",t="Z"),n="["+e+'("]',o=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",r="-MM-DD[T]HH:mm:ss.SSS",s=t+'[")]',this.format(n+o+r+s)}function Kut(e){e||(e=this.isUtc()?gt.defaultFormatUtc:gt.defaultFormat);var t=a4(this,e);return this.localeData().postformat(t)}function Yut(e,t){return this.isValid()&&(Oa(e)&&e.isValid()||lr(e).isValid())?ka({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Zut(e){return this.from(lr(),e)}function Qut(e,t){return this.isValid()&&(Oa(e)&&e.isValid()||lr(e).isValid())?ka({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Jut(e){return this.to(lr(),e)}function Cbe(e){var t;return e===void 0?this._locale._abbr:(t=ru(e),t!=null&&(this._locale=t),this)}var qbe=Bi("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return e===void 0?this.localeData():this.locale(e)});function Rbe(){return this._locale}var _x=1e3,I2=60*_x,kx=60*I2,Tbe=(365*400+97)*24*kx;function D2(e,t){return(e%t+t)%t}function Ebe(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-Tbe:new Date(e,t,n).valueOf()}function Wbe(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-Tbe:Date.UTC(e,t,n)}function edt(e){var t,n;if(e=Li(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(n=this._isUTC?Wbe:Ebe,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=D2(t+(this._isUTC?0:this.utcOffset()*I2),kx);break;case"minute":t=this._d.valueOf(),t-=D2(t,I2);break;case"second":t=this._d.valueOf(),t-=D2(t,_x);break}return this._d.setTime(t),gt.updateOffset(this,!0),this}function tdt(e){var t,n;if(e=Li(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(n=this._isUTC?Wbe:Ebe,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=kx-D2(t+(this._isUTC?0:this.utcOffset()*I2),kx)-1;break;case"minute":t=this._d.valueOf(),t+=I2-D2(t,I2)-1;break;case"second":t=this._d.valueOf(),t+=_x-D2(t,_x)-1;break}return this._d.setTime(t),gt.updateOffset(this,!0),this}function ndt(){return this._d.valueOf()-(this._offset||0)*6e4}function odt(){return Math.floor(this.valueOf()/1e3)}function rdt(){return new Date(this.valueOf())}function sdt(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function idt(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function adt(){return this.isValid()?this.toISOString():null}function cdt(){return mj(this)}function ldt(){return ed({},Nn(this))}function udt(){return Nn(this).overflow}function ddt(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}rn("N",0,0,"eraAbbr");rn("NN",0,0,"eraAbbr");rn("NNN",0,0,"eraAbbr");rn("NNNN",0,0,"eraName");rn("NNNNN",0,0,"eraNarrow");rn("y",["y",1],"yo","eraYear");rn("y",["yy",2],0,"eraYear");rn("y",["yyy",3],0,"eraYear");rn("y",["yyyy",4],0,"eraYear");Dt("N",Wj);Dt("NN",Wj);Dt("NNN",Wj);Dt("NNNN",Adt);Dt("NNNNN",vdt);Fo(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,o){var r=n._locale.erasParse(e,o,n._strict);r?Nn(n).era=r:Nn(n).invalidEra=e});Dt("y",fm);Dt("yy",fm);Dt("yyy",fm);Dt("yyyy",fm);Dt("yo",xdt);Fo(["y","yy","yyy","yyyy"],y1);Fo(["yo"],function(e,t,n,o){var r;n._locale._eraYearOrdinalRegex&&(r=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[y1]=n._locale.eraYearOrdinalParse(e,r):t[y1]=parseInt(e,10)});function pdt(e,t){var n,o,r,s=this._eras||ru("en")._eras;for(n=0,o=s.length;n<o;++n){switch(typeof s[n].since){case"string":r=gt(s[n].since).startOf("day"),s[n].since=r.valueOf();break}switch(typeof s[n].until){case"undefined":s[n].until=1/0;break;case"string":r=gt(s[n].until).startOf("day").valueOf(),s[n].until=r.valueOf();break}}return s}function fdt(e,t,n){var o,r,s=this.eras(),i,c,l;for(e=e.toUpperCase(),o=0,r=s.length;o<r;++o)if(i=s[o].name.toUpperCase(),c=s[o].abbr.toUpperCase(),l=s[o].narrow.toUpperCase(),n)switch(t){case"N":case"NN":case"NNN":if(c===e)return s[o];break;case"NNNN":if(i===e)return s[o];break;case"NNNNN":if(l===e)return s[o];break}else if([i,c,l].indexOf(e)>=0)return s[o]}function bdt(e,t){var n=e.since<=e.until?1:-1;return t===void 0?gt(e.since).year():gt(e.since).year()+(t-e.offset)*n}function hdt(){var e,t,n,o=this.localeData().eras();for(e=0,t=o.length;e<t;++e)if(n=this.clone().startOf("day").valueOf(),o[e].since<=n&&n<=o[e].until||o[e].until<=n&&n<=o[e].since)return o[e].name;return""}function mdt(){var e,t,n,o=this.localeData().eras();for(e=0,t=o.length;e<t;++e)if(n=this.clone().startOf("day").valueOf(),o[e].since<=n&&n<=o[e].until||o[e].until<=n&&n<=o[e].since)return o[e].narrow;return""}function gdt(){var e,t,n,o=this.localeData().eras();for(e=0,t=o.length;e<t;++e)if(n=this.clone().startOf("day").valueOf(),o[e].since<=n&&n<=o[e].until||o[e].until<=n&&n<=o[e].since)return o[e].abbr;return""}function Mdt(){var e,t,n,o,r=this.localeData().eras();for(e=0,t=r.length;e<t;++e)if(n=r[e].since<=r[e].until?1:-1,o=this.clone().startOf("day").valueOf(),r[e].since<=o&&o<=r[e].until||r[e].until<=o&&o<=r[e].since)return(this.year()-gt(r[e].since).year())*n+r[e].offset;return this.year()}function zdt(e){return ho(this,"_erasNameRegex")||Nj.call(this),e?this._erasNameRegex:this._erasRegex}function Odt(e){return ho(this,"_erasAbbrRegex")||Nj.call(this),e?this._erasAbbrRegex:this._erasRegex}function ydt(e){return ho(this,"_erasNarrowRegex")||Nj.call(this),e?this._erasNarrowRegex:this._erasRegex}function Wj(e,t){return t.erasAbbrRegex(e)}function Adt(e,t){return t.erasNameRegex(e)}function vdt(e,t){return t.erasNarrowRegex(e)}function xdt(e,t){return t._eraYearOrdinalRegex||fm}function Nj(){var e=[],t=[],n=[],o=[],r,s,i,c,l,u=this.eras();for(r=0,s=u.length;r<s;++r)i=Cl(u[r].name),c=Cl(u[r].abbr),l=Cl(u[r].narrow),t.push(i),e.push(c),n.push(l),o.push(i),o.push(c),o.push(l);this._erasRegex=new RegExp("^("+o.join("|")+")","i"),this._erasNameRegex=new RegExp("^("+t.join("|")+")","i"),this._erasAbbrRegex=new RegExp("^("+e.join("|")+")","i"),this._erasNarrowRegex=new RegExp("^("+n.join("|")+")","i")}rn(0,["gg",2],0,function(){return this.weekYear()%100});rn(0,["GG",2],0,function(){return this.isoWeekYear()%100});function i_(e,t){rn(0,[e,e.length],0,t)}i_("gggg","weekYear");i_("ggggg","weekYear");i_("GGGG","isoWeekYear");i_("GGGGG","isoWeekYear");Dt("G",t_);Dt("g",t_);Dt("GG",dr,Ys);Dt("gg",dr,Ys);Dt("GGGG",Aj,yj);Dt("gggg",Aj,yj);Dt("GGGGG",e_,Qw);Dt("ggggg",e_,Qw);cO(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,o){t[o.substr(0,2)]=Gn(e)});cO(["gg","GG"],function(e,t,n,o){t[o]=gt.parseTwoDigitYear(e)});function wdt(e){return Nbe.call(this,e,this.week(),this.weekday()+this.localeData()._week.dow,this.localeData()._week.dow,this.localeData()._week.doy)}function _dt(e){return Nbe.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)}function kdt(){return ql(this.year(),1,4)}function Sdt(){return ql(this.isoWeekYear(),1,4)}function Cdt(){var e=this.localeData()._week;return ql(this.year(),e.dow,e.doy)}function qdt(){var e=this.localeData()._week;return ql(this.weekYear(),e.dow,e.doy)}function Nbe(e,t,n,o,r){var s;return e==null?qz(this,o,r).year:(s=ql(e,o,r),t>s&&(t=s),Rdt.call(this,e,t,n,o,r))}function Rdt(e,t,n,o,r){var s=bbe(e,t,n,o,r),i=Cz(s.year,0,s.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}rn("Q",0,"Qo","quarter");Dt("Q",obe);Fo("Q",function(e,t){t[gl]=(Gn(e)-1)*3});function Tdt(e){return e==null?Math.ceil((this.month()+1)/3):this.month((e-1)*3+this.month()%3)}rn("D",["DD",2],"Do","date");Dt("D",dr,bm);Dt("DD",dr,Ys);Dt("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient});Fo(["D","DD"],sc);Fo("Do",function(e,t){t[sc]=Gn(e.match(dr)[0])});var Bbe=hm("Date",!0);rn("DDD",["DDDD",3],"DDDo","dayOfYear");Dt("DDD",Jw);Dt("DDDD",rbe);Fo(["DDD","DDDD"],function(e,t,n){n._dayOfYear=Gn(e)});function Edt(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return e==null?t:this.add(e-t,"d")}rn("m",["mm",2],0,"minute");Dt("m",dr,vj);Dt("mm",dr,Ys);Fo(["m","mm"],ia);var Wdt=hm("Minutes",!1);rn("s",["ss",2],0,"second");Dt("s",dr,vj);Dt("ss",dr,Ys);Fo(["s","ss"],Ml);var Ndt=hm("Seconds",!1);rn("S",0,0,function(){return~~(this.millisecond()/100)});rn(0,["SS",2],0,function(){return~~(this.millisecond()/10)});rn(0,["SSS",3],0,"millisecond");rn(0,["SSSS",4],0,function(){return this.millisecond()*10});rn(0,["SSSSS",5],0,function(){return this.millisecond()*100});rn(0,["SSSSSS",6],0,function(){return this.millisecond()*1e3});rn(0,["SSSSSSS",7],0,function(){return this.millisecond()*1e4});rn(0,["SSSSSSSS",8],0,function(){return this.millisecond()*1e5});rn(0,["SSSSSSSSS",9],0,function(){return this.millisecond()*1e6});Dt("S",Jw,obe);Dt("SS",Jw,Ys);Dt("SSS",Jw,rbe);var td,Lbe;for(td="SSSS";td.length<=9;td+="S")Dt(td,fm);function Bdt(e,t){t[Yp]=Gn(("0."+e)*1e3)}for(td="S";td.length<=9;td+="S")Fo(td,Bdt);Lbe=hm("Milliseconds",!1);rn("z",0,0,"zoneAbbr");rn("zz",0,0,"zoneName");function Ldt(){return this._isUTC?"UTC":""}function Pdt(){return this._isUTC?"Coordinated Universal Time":""}var pt=iO.prototype;pt.add=qut;pt.calendar=Lut;pt.clone=Put;pt.diff=Hut;pt.endOf=tdt;pt.format=Kut;pt.from=Yut;pt.fromNow=Zut;pt.to=Qut;pt.toNow=Jut;pt.get=Gct;pt.invalidAt=udt;pt.isAfter=jut;pt.isBefore=Iut;pt.isBetween=Dut;pt.isSame=Fut;pt.isSameOrAfter=$ut;pt.isSameOrBefore=Vut;pt.isValid=cdt;pt.lang=qbe;pt.locale=Cbe;pt.localeData=Rbe;pt.max=cut;pt.min=aut;pt.parsingFlags=ldt;pt.set=Kct;pt.startOf=edt;pt.subtract=Rut;pt.toArray=sdt;pt.toObject=idt;pt.toDate=rdt;pt.toISOString=Xut;pt.inspect=Gut;typeof Symbol<"u"&&Symbol.for!=null&&(pt[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"});pt.toJSON=adt;pt.toString=Uut;pt.unix=odt;pt.valueOf=ndt;pt.creationData=ddt;pt.eraName=hdt;pt.eraNarrow=mdt;pt.eraAbbr=gdt;pt.eraYear=Mdt;pt.year=abe;pt.isLeapYear=Xct;pt.weekYear=wdt;pt.isoWeekYear=_dt;pt.quarter=pt.quarters=Tdt;pt.month=pbe;pt.daysInMonth=rlt;pt.week=pt.weeks=plt;pt.isoWeek=pt.isoWeeks=flt;pt.weeksInYear=Cdt;pt.weeksInWeekYear=qdt;pt.isoWeeksInYear=kdt;pt.isoWeeksInISOWeekYear=Sdt;pt.date=Bbe;pt.day=pt.days=_lt;pt.weekday=klt;pt.isoWeekday=Slt;pt.dayOfYear=Edt;pt.hour=pt.hours=Nlt;pt.minute=pt.minutes=Wdt;pt.second=pt.seconds=Ndt;pt.millisecond=pt.milliseconds=Lbe;pt.utcOffset=gut;pt.utc=zut;pt.local=Out;pt.parseZone=yut;pt.hasAlignedHourOffset=Aut;pt.isDST=vut;pt.isLocal=wut;pt.isUtcOffset=_ut;pt.isUtc=wbe;pt.isUTC=wbe;pt.zoneAbbr=Ldt;pt.zoneName=Pdt;pt.dates=Bi("dates accessor is deprecated. Use date instead.",Bbe);pt.months=Bi("months accessor is deprecated. Use month instead",pbe);pt.years=Bi("years accessor is deprecated. Use year instead",abe);pt.zone=Bi("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",Mut);pt.isDSTShifted=Bi("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",xut);function jdt(e){return lr(e*1e3)}function Idt(){return lr.apply(null,arguments).parseZone()}function Pbe(e){return e}var go=Mj.prototype;go.calendar=wct;go.longDateFormat=Cct;go.invalidDate=Rct;go.ordinal=Wct;go.preparse=Pbe;go.postformat=Pbe;go.relativeTime=Bct;go.pastFuture=Lct;go.set=vct;go.eras=pdt;go.erasParse=fdt;go.erasConvertYear=bdt;go.erasAbbrRegex=Odt;go.erasNameRegex=zdt;go.erasNarrowRegex=ydt;go.months=elt;go.monthsShort=tlt;go.monthsParse=olt;go.monthsRegex=ilt;go.monthsShortRegex=slt;go.week=clt;go.firstDayOfYear=dlt;go.firstDayOfWeek=ult;go.weekdays=ylt;go.weekdaysMin=vlt;go.weekdaysShort=Alt;go.weekdaysParse=wlt;go.weekdaysRegex=Clt;go.weekdaysShortRegex=qlt;go.weekdaysMinRegex=Rlt;go.isPM=Elt;go.meridiem=Blt;function Sx(e,t,n,o){var r=ru(),s=Nc().set(o,t);return r[n](s,e)}function jbe(e,t,n){if(Il(e)&&(t=e,e=void 0),e=e||"",t!=null)return Sx(e,t,n,"month");var o,r=[];for(o=0;o<12;o++)r[o]=Sx(e,o,n,"month");return r}function Bj(e,t,n,o){typeof e=="boolean"?(Il(t)&&(n=t,t=void 0),t=t||""):(t=e,n=t,e=!1,Il(t)&&(n=t,t=void 0),t=t||"");var r=ru(),s=e?r._week.dow:0,i,c=[];if(n!=null)return Sx(t,(n+s)%7,o,"day");for(i=0;i<7;i++)c[i]=Sx(t,(i+s)%7,o,"day");return c}function Ddt(e,t){return jbe(e,t,"months")}function Fdt(e,t){return jbe(e,t,"monthsShort")}function $dt(e,t,n){return Bj(e,t,n,"weekdays")}function Vdt(e,t,n){return Bj(e,t,n,"weekdaysShort")}function Hdt(e,t,n){return Bj(e,t,n,"weekdaysMin")}ld("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,n=Gn(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n}});gt.lang=Bi("moment.lang is deprecated. Use moment.locale instead.",ld);gt.langData=Bi("moment.langData is deprecated. Use moment.localeData instead.",ru);var Jc=Math.abs;function Udt(){var e=this._data;return this._milliseconds=Jc(this._milliseconds),this._days=Jc(this._days),this._months=Jc(this._months),e.milliseconds=Jc(e.milliseconds),e.seconds=Jc(e.seconds),e.minutes=Jc(e.minutes),e.hours=Jc(e.hours),e.months=Jc(e.months),e.years=Jc(e.years),this}function Ibe(e,t,n,o){var r=ka(t,n);return e._milliseconds+=o*r._milliseconds,e._days+=o*r._days,e._months+=o*r._months,e._bubble()}function Xdt(e,t){return Ibe(this,e,t,1)}function Gdt(e,t){return Ibe(this,e,t,-1)}function aZ(e){return e<0?Math.floor(e):Math.ceil(e)}function Kdt(){var e=this._milliseconds,t=this._days,n=this._months,o=this._data,r,s,i,c,l;return e>=0&&t>=0&&n>=0||e<=0&&t<=0&&n<=0||(e+=aZ(rW(n)+t)*864e5,t=0,n=0),o.milliseconds=e%1e3,r=Mi(e/1e3),o.seconds=r%60,s=Mi(r/60),o.minutes=s%60,i=Mi(s/60),o.hours=i%24,t+=Mi(i/24),l=Mi(Dbe(t)),n+=l,t-=aZ(rW(l)),c=Mi(n/12),n%=12,o.days=t,o.months=n,o.years=c,this}function Dbe(e){return e*4800/146097}function rW(e){return e*146097/4800}function Ydt(e){if(!this.isValid())return NaN;var t,n,o=this._milliseconds;if(e=Li(e),e==="month"||e==="quarter"||e==="year")switch(t=this._days+o/864e5,n=this._months+Dbe(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(rW(this._months)),e){case"week":return t/7+o/6048e5;case"day":return t+o/864e5;case"hour":return t*24+o/36e5;case"minute":return t*1440+o/6e4;case"second":return t*86400+o/1e3;case"millisecond":return Math.floor(t*864e5)+o;default:throw new Error("Unknown unit "+e)}}function su(e){return function(){return this.as(e)}}var Fbe=su("ms"),Zdt=su("s"),Qdt=su("m"),Jdt=su("h"),ept=su("d"),tpt=su("w"),npt=su("M"),opt=su("Q"),rpt=su("y"),spt=Fbe;function ipt(){return ka(this)}function apt(e){return e=Li(e),this.isValid()?this[e+"s"]():NaN}function rb(e){return function(){return this.isValid()?this._data[e]:NaN}}var cpt=rb("milliseconds"),lpt=rb("seconds"),upt=rb("minutes"),dpt=rb("hours"),ppt=rb("days"),fpt=rb("months"),bpt=rb("years");function hpt(){return Mi(this.days()/7)}var al=Math.round,g2={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function mpt(e,t,n,o,r){return r.relativeTime(t||1,!!n,e,o)}function gpt(e,t,n,o){var r=ka(e).abs(),s=al(r.as("s")),i=al(r.as("m")),c=al(r.as("h")),l=al(r.as("d")),u=al(r.as("M")),d=al(r.as("w")),p=al(r.as("y")),f=s<=n.ss&&["s",s]||s<n.s&&["ss",s]||i<=1&&["m"]||i<n.m&&["mm",i]||c<=1&&["h"]||c<n.h&&["hh",c]||l<=1&&["d"]||l<n.d&&["dd",l];return n.w!=null&&(f=f||d<=1&&["w"]||d<n.w&&["ww",d]),f=f||u<=1&&["M"]||u<n.M&&["MM",u]||p<=1&&["y"]||["yy",p],f[2]=t,f[3]=+e>0,f[4]=o,mpt.apply(null,f)}function Mpt(e){return e===void 0?al:typeof e=="function"?(al=e,!0):!1}function zpt(e,t){return g2[e]===void 0?!1:t===void 0?g2[e]:(g2[e]=t,e==="s"&&(g2.ss=t-1),!0)}function Opt(e,t){if(!this.isValid())return this.localeData().invalidDate();var n=!1,o=g2,r,s;return typeof e=="object"&&(t=e,e=!1),typeof e=="boolean"&&(n=e),typeof t=="object"&&(o=Object.assign({},g2,t),t.s!=null&&t.ss==null&&(o.ss=t.s-1)),r=this.localeData(),s=gpt(this,!n,o,r),n&&(s=r.pastFuture(+this,s)),r.postformat(s)}var QC=Math.abs;function Xb(e){return(e>0)-(e<0)||+e}function a_(){if(!this.isValid())return this.localeData().invalidDate();var e=QC(this._milliseconds)/1e3,t=QC(this._days),n=QC(this._months),o,r,s,i,c=this.asSeconds(),l,u,d,p;return c?(o=Mi(e/60),r=Mi(o/60),e%=60,o%=60,s=Mi(n/12),n%=12,i=e?e.toFixed(3).replace(/\.?0+$/,""):"",l=c<0?"-":"",u=Xb(this._months)!==Xb(c)?"-":"",d=Xb(this._days)!==Xb(c)?"-":"",p=Xb(this._milliseconds)!==Xb(c)?"-":"",l+"P"+(s?u+s+"Y":"")+(n?u+n+"M":"")+(t?d+t+"D":"")+(r||o||e?"T":"")+(r?p+r+"H":"")+(o?p+o+"M":"")+(e?p+i+"S":"")):"P0D"}var io=s_.prototype;io.isValid=fut;io.abs=Udt;io.add=Xdt;io.subtract=Gdt;io.as=Ydt;io.asMilliseconds=Fbe;io.asSeconds=Zdt;io.asMinutes=Qdt;io.asHours=Jdt;io.asDays=ept;io.asWeeks=tpt;io.asMonths=npt;io.asQuarters=opt;io.asYears=rpt;io.valueOf=spt;io._bubble=Kdt;io.clone=ipt;io.get=apt;io.milliseconds=cpt;io.seconds=lpt;io.minutes=upt;io.hours=dpt;io.days=ppt;io.weeks=hpt;io.months=fpt;io.years=bpt;io.humanize=Opt;io.toISOString=a_;io.toString=a_;io.toJSON=a_;io.locale=Cbe;io.localeData=Rbe;io.toIsoString=Bi("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",a_);io.lang=qbe;rn("X",0,0,"unix");rn("x",0,0,"valueOf");Dt("x",t_);Dt("X",Dct);Fo("X",function(e,t,n){n._d=new Date(parseFloat(e)*1e3)});Fo("x",function(e,t,n){n._d=new Date(Gn(e))});//! moment.js -gt.version="2.30.1";yct(lr);gt.fn=pt;gt.min=lut;gt.max=uut;gt.now=dut;gt.utc=Nc;gt.unix=jdt;gt.months=Ddt;gt.isDate=sO;gt.locale=ld;gt.invalid=Zw;gt.duration=ka;gt.isMoment=Oa;gt.weekdays=$dt;gt.parseZone=Idt;gt.localeData=ru;gt.isDuration=c4;gt.monthsShort=Fdt;gt.weekdaysMin=Hdt;gt.defineLocale=Sj;gt.updateLocale=Ilt;gt.locales=Dlt;gt.weekdaysShort=Vdt;gt.normalizeUnits=Li;gt.relativeTimeRounding=Mpt;gt.relativeTimeThreshold=zpt;gt.calendarFormat=But;gt.prototype=pt;gt.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"};const ypt=Object.freeze(Object.defineProperty({__proto__:null,default:gt},Symbol.toStringTag,{value:"Module"}));var u4={exports:{}};const Apt=y5(ypt);var vpt=u4.exports,cZ;function $be(){return cZ||(cZ=1,function(e){//! moment-timezone.js +`+new Error().stack),n=!1}return t.apply(this,arguments)},t)}var oZ={};function tbe(e,t){gt.deprecationHandler!=null&>.deprecationHandler(e,t),oZ[e]||(ebe(t),oZ[e]=!0)}gt.suppressDeprecationWarnings=!1;gt.deprecationHandler=null;function Bc(e){return typeof Function<"u"&&e instanceof Function||Object.prototype.toString.call(e)==="[object Function]"}function Act(e){var t,n;for(n in e)ho(e,n)&&(t=e[n],Bc(t)?this[n]=t:this["_"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)}function Q8(e,t){var n=ed({},e),o;for(o in t)ho(t,o)&&(sf(e[o])&&sf(t[o])?(n[o]={},ed(n[o],e[o]),ed(n[o],t[o])):t[o]!=null?n[o]=t[o]:delete n[o]);for(o in e)ho(e,o)&&!ho(t,o)&&sf(e[o])&&(n[o]=ed({},n[o]));return n}function gj(e){e!=null&&this.set(e)}var J8;Object.keys?J8=Object.keys:J8=function(e){var t,n=[];for(t in e)ho(e,t)&&n.push(t);return n};var vct={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"};function xct(e,t,n){var o=this._calendar[e]||this._calendar.sameElse;return Bc(o)?o.call(t,n):o}function _c(e,t,n){var o=""+Math.abs(e),r=t-o.length,s=e>=0;return(s?n?"+":"":"-")+Math.pow(10,Math.max(0,r)).toString().substr(1)+o}var Mj=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,PA=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,KC={},j2={};function rn(e,t,n,o){var r=o;typeof o=="string"&&(r=function(){return this[o]()}),e&&(j2[e]=r),t&&(j2[t[0]]=function(){return _c(r.apply(this,arguments),t[1],t[2])}),n&&(j2[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),e)})}function wct(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function _ct(e){var t=e.match(Mj),n,o;for(n=0,o=t.length;n<o;n++)j2[t[n]]?t[n]=j2[t[n]]:t[n]=wct(t[n]);return function(r){var s="",i;for(i=0;i<o;i++)s+=Bc(t[i])?t[i].call(r,e):t[i];return s}}function i4(e,t){return e.isValid()?(t=nbe(t,e.localeData()),KC[t]=KC[t]||_ct(t),KC[t](e)):e.localeData().invalidDate()}function nbe(e,t){var n=5;function o(r){return t.longDateFormat(r)||r}for(PA.lastIndex=0;n>=0&&PA.test(e);)e=e.replace(PA,o),PA.lastIndex=0,n-=1;return e}var kct={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function Sct(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(Mj).map(function(o){return o==="MMMM"||o==="MM"||o==="DD"||o==="dddd"?o.slice(1):o}).join(""),this._longDateFormat[e])}var Cct="Invalid date";function qct(){return this._invalidDate}var Rct="%d",Tct=/\d{1,2}/;function Ect(e){return this._ordinal.replace("%d",e)}var Wct={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function Nct(e,t,n,o){var r=this._relativeTime[n];return Bc(r)?r(e,t,n,o):r.replace(/%d/i,e)}function Bct(e,t){var n=this._relativeTime[e>0?"future":"past"];return Bc(n)?n(t):n.replace(/%s/i,t)}var rZ={D:"date",dates:"date",date:"date",d:"day",days:"day",day:"day",e:"weekday",weekdays:"weekday",weekday:"weekday",E:"isoWeekday",isoweekdays:"isoWeekday",isoweekday:"isoWeekday",DDD:"dayOfYear",dayofyears:"dayOfYear",dayofyear:"dayOfYear",h:"hour",hours:"hour",hour:"hour",ms:"millisecond",milliseconds:"millisecond",millisecond:"millisecond",m:"minute",minutes:"minute",minute:"minute",M:"month",months:"month",month:"month",Q:"quarter",quarters:"quarter",quarter:"quarter",s:"second",seconds:"second",second:"second",gg:"weekYear",weekyears:"weekYear",weekyear:"weekYear",GG:"isoWeekYear",isoweekyears:"isoWeekYear",isoweekyear:"isoWeekYear",w:"week",weeks:"week",week:"week",W:"isoWeek",isoweeks:"isoWeek",isoweek:"isoWeek",y:"year",years:"year",year:"year"};function Bi(e){return typeof e=="string"?rZ[e]||rZ[e.toLowerCase()]:void 0}function zj(e){var t={},n,o;for(o in e)ho(e,o)&&(n=Bi(o),n&&(t[n]=e[o]));return t}var Lct={date:9,day:11,weekday:11,isoWeekday:11,dayOfYear:4,hour:13,millisecond:16,minute:14,month:8,quarter:7,second:15,weekYear:1,isoWeekYear:1,week:5,isoWeek:5,year:1};function Pct(e){var t=[],n;for(n in e)ho(e,n)&&t.push({unit:n,priority:Lct[n]});return t.sort(function(o,r){return o.priority-r.priority}),t}var obe=/\d/,Ys=/\d\d/,rbe=/\d{3}/,Oj=/\d{4}/,Zw=/[+-]?\d{6}/,dr=/\d\d?/,sbe=/\d\d\d\d?/,ibe=/\d\d\d\d\d\d?/,Qw=/\d{1,3}/,yj=/\d{1,4}/,Jw=/[+-]?\d{1,6}/,fm=/\d+/,e_=/[+-]?\d+/,jct=/Z|[+-]\d\d:?\d\d/gi,t_=/Z|[+-]\d\d(?::?\d\d)?/gi,Ict=/[+-]?\d+(\.\d{1,3})?/,aO=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,bm=/^[1-9]\d?/,Aj=/^([1-9]\d|\d)/,vx;vx={};function Dt(e,t,n){vx[e]=Bc(t)?t:function(o,r){return o&&n?n:t}}function Dct(e,t){return ho(vx,e)?vx[e](t._strict,t._locale):new RegExp(Fct(e))}function Fct(e){return Sl(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,n,o,r,s){return n||o||r||s}))}function Sl(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function Mi(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function Gn(e){var t=+e,n=0;return t!==0&&isFinite(t)&&(n=Mi(t)),n}var eW={};function Fo(e,t){var n,o=t,r;for(typeof e=="string"&&(e=[e]),jl(t)&&(o=function(s,i){i[t]=Gn(s)}),r=e.length,n=0;n<r;n++)eW[e[n]]=o}function cO(e,t){Fo(e,function(n,o,r,s){r._w=r._w||{},t(n,r._w,r,s)})}function $ct(e,t,n){t!=null&&ho(eW,e)&&eW[e](t,n._a,n,e)}function n_(e){return e%4===0&&e%100!==0||e%400===0}var y1=0,ml=1,sc=2,b0=3,sa=4,gl=5,Yp=6,Vct=7,Hct=8;rn("Y",0,0,function(){var e=this.year();return e<=9999?_c(e,4):"+"+e});rn(0,["YY",2],0,function(){return this.year()%100});rn(0,["YYYY",4],0,"year");rn(0,["YYYYY",5],0,"year");rn(0,["YYYYYY",6,!0],0,"year");Dt("Y",e_);Dt("YY",dr,Ys);Dt("YYYY",yj,Oj);Dt("YYYYY",Jw,Zw);Dt("YYYYYY",Jw,Zw);Fo(["YYYYY","YYYYYY"],y1);Fo("YYYY",function(e,t){t[y1]=e.length===2?gt.parseTwoDigitYear(e):Gn(e)});Fo("YY",function(e,t){t[y1]=gt.parseTwoDigitYear(e)});Fo("Y",function(e,t){t[y1]=parseInt(e,10)});function RM(e){return n_(e)?366:365}gt.parseTwoDigitYear=function(e){return Gn(e)+(Gn(e)>68?1900:2e3)};var abe=hm("FullYear",!0);function Uct(){return n_(this.year())}function hm(e,t){return function(n){return n!=null?(cbe(this,e,n),gt.updateOffset(this,t),this):Sz(this,e)}}function Sz(e,t){if(!e.isValid())return NaN;var n=e._d,o=e._isUTC;switch(t){case"Milliseconds":return o?n.getUTCMilliseconds():n.getMilliseconds();case"Seconds":return o?n.getUTCSeconds():n.getSeconds();case"Minutes":return o?n.getUTCMinutes():n.getMinutes();case"Hours":return o?n.getUTCHours():n.getHours();case"Date":return o?n.getUTCDate():n.getDate();case"Day":return o?n.getUTCDay():n.getDay();case"Month":return o?n.getUTCMonth():n.getMonth();case"FullYear":return o?n.getUTCFullYear():n.getFullYear();default:return NaN}}function cbe(e,t,n){var o,r,s,i,c;if(!(!e.isValid()||isNaN(n))){switch(o=e._d,r=e._isUTC,t){case"Milliseconds":return void(r?o.setUTCMilliseconds(n):o.setMilliseconds(n));case"Seconds":return void(r?o.setUTCSeconds(n):o.setSeconds(n));case"Minutes":return void(r?o.setUTCMinutes(n):o.setMinutes(n));case"Hours":return void(r?o.setUTCHours(n):o.setHours(n));case"Date":return void(r?o.setUTCDate(n):o.setDate(n));case"FullYear":break;default:return}s=n,i=e.month(),c=e.date(),c=c===29&&i===1&&!n_(s)?28:c,r?o.setUTCFullYear(s,i,c):o.setFullYear(s,i,c)}}function Xct(e){return e=Bi(e),Bc(this[e])?this[e]():this}function Gct(e,t){if(typeof e=="object"){e=zj(e);var n=Pct(e),o,r=n.length;for(o=0;o<r;o++)this[n[o].unit](e[n[o].unit])}else if(e=Bi(e),Bc(this[e]))return this[e](t);return this}function Kct(e,t){return(e%t+t)%t}var Ur;Array.prototype.indexOf?Ur=Array.prototype.indexOf:Ur=function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1};function vj(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=Kct(t,12);return e+=(t-n)/12,n===1?n_(e)?29:28:31-n%7%2}rn("M",["MM",2],"Mo",function(){return this.month()+1});rn("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)});rn("MMMM",0,0,function(e){return this.localeData().months(this,e)});Dt("M",dr,bm);Dt("MM",dr,Ys);Dt("MMM",function(e,t){return t.monthsShortRegex(e)});Dt("MMMM",function(e,t){return t.monthsRegex(e)});Fo(["M","MM"],function(e,t){t[ml]=Gn(e)-1});Fo(["MMM","MMMM"],function(e,t,n,o){var r=n._locale.monthsParse(e,o,n._strict);r!=null?t[ml]=r:Nn(n).invalidMonth=e});var Yct="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),lbe="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),ube=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,Zct=aO,Qct=aO;function Jct(e,t){return e?Ma(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||ube).test(t)?"format":"standalone"][e.month()]:Ma(this._months)?this._months:this._months.standalone}function elt(e,t){return e?Ma(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[ube.test(t)?"format":"standalone"][e.month()]:Ma(this._monthsShort)?this._monthsShort:this._monthsShort.standalone}function tlt(e,t,n){var o,r,s,i=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],o=0;o<12;++o)s=Nc([2e3,o]),this._shortMonthsParse[o]=this.monthsShort(s,"").toLocaleLowerCase(),this._longMonthsParse[o]=this.months(s,"").toLocaleLowerCase();return n?t==="MMM"?(r=Ur.call(this._shortMonthsParse,i),r!==-1?r:null):(r=Ur.call(this._longMonthsParse,i),r!==-1?r:null):t==="MMM"?(r=Ur.call(this._shortMonthsParse,i),r!==-1?r:(r=Ur.call(this._longMonthsParse,i),r!==-1?r:null)):(r=Ur.call(this._longMonthsParse,i),r!==-1?r:(r=Ur.call(this._shortMonthsParse,i),r!==-1?r:null))}function nlt(e,t,n){var o,r,s;if(this._monthsParseExact)return tlt.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),o=0;o<12;o++){if(r=Nc([2e3,o]),n&&!this._longMonthsParse[o]&&(this._longMonthsParse[o]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i"),this._shortMonthsParse[o]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")),!n&&!this._monthsParse[o]&&(s="^"+this.months(r,"")+"|^"+this.monthsShort(r,""),this._monthsParse[o]=new RegExp(s.replace(".",""),"i")),n&&t==="MMMM"&&this._longMonthsParse[o].test(e))return o;if(n&&t==="MMM"&&this._shortMonthsParse[o].test(e))return o;if(!n&&this._monthsParse[o].test(e))return o}}function dbe(e,t){if(!e.isValid())return e;if(typeof t=="string"){if(/^\d+$/.test(t))t=Gn(t);else if(t=e.localeData().monthsParse(t),!jl(t))return e}var n=t,o=e.date();return o=o<29?o:Math.min(o,vj(e.year(),n)),e._isUTC?e._d.setUTCMonth(n,o):e._d.setMonth(n,o),e}function pbe(e){return e!=null?(dbe(this,e),gt.updateOffset(this,!0),this):Sz(this,"Month")}function olt(){return vj(this.year(),this.month())}function rlt(e){return this._monthsParseExact?(ho(this,"_monthsRegex")||fbe.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(ho(this,"_monthsShortRegex")||(this._monthsShortRegex=Zct),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)}function slt(e){return this._monthsParseExact?(ho(this,"_monthsRegex")||fbe.call(this),e?this._monthsStrictRegex:this._monthsRegex):(ho(this,"_monthsRegex")||(this._monthsRegex=Qct),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)}function fbe(){function e(l,u){return u.length-l.length}var t=[],n=[],o=[],r,s,i,c;for(r=0;r<12;r++)s=Nc([2e3,r]),i=Sl(this.monthsShort(s,"")),c=Sl(this.months(s,"")),t.push(i),n.push(c),o.push(c),o.push(i);t.sort(e),n.sort(e),o.sort(e),this._monthsRegex=new RegExp("^("+o.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+n.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+t.join("|")+")","i")}function ilt(e,t,n,o,r,s,i){var c;return e<100&&e>=0?(c=new Date(e+400,t,n,o,r,s,i),isFinite(c.getFullYear())&&c.setFullYear(e)):c=new Date(e,t,n,o,r,s,i),c}function Cz(e){var t,n;return e<100&&e>=0?(n=Array.prototype.slice.call(arguments),n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function xx(e,t,n){var o=7+t-n,r=(7+Cz(e,0,o).getUTCDay()-t)%7;return-r+o-1}function bbe(e,t,n,o,r){var s=(7+n-o)%7,i=xx(e,o,r),c=1+7*(t-1)+s+i,l,u;return c<=0?(l=e-1,u=RM(l)+c):c>RM(e)?(l=e+1,u=c-RM(e)):(l=e,u=c),{year:l,dayOfYear:u}}function qz(e,t,n){var o=xx(e.year(),t,n),r=Math.floor((e.dayOfYear()-o-1)/7)+1,s,i;return r<1?(i=e.year()-1,s=r+Cl(i,t,n)):r>Cl(e.year(),t,n)?(s=r-Cl(e.year(),t,n),i=e.year()+1):(i=e.year(),s=r),{week:s,year:i}}function Cl(e,t,n){var o=xx(e,t,n),r=xx(e+1,t,n);return(RM(e)-o+r)/7}rn("w",["ww",2],"wo","week");rn("W",["WW",2],"Wo","isoWeek");Dt("w",dr,bm);Dt("ww",dr,Ys);Dt("W",dr,bm);Dt("WW",dr,Ys);cO(["w","ww","W","WW"],function(e,t,n,o){t[o.substr(0,1)]=Gn(e)});function alt(e){return qz(e,this._week.dow,this._week.doy).week}var clt={dow:0,doy:6};function llt(){return this._week.dow}function ult(){return this._week.doy}function dlt(e){var t=this.localeData().week(this);return e==null?t:this.add((e-t)*7,"d")}function plt(e){var t=qz(this,1,4).week;return e==null?t:this.add((e-t)*7,"d")}rn("d",0,"do","day");rn("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)});rn("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)});rn("dddd",0,0,function(e){return this.localeData().weekdays(this,e)});rn("e",0,0,"weekday");rn("E",0,0,"isoWeekday");Dt("d",dr);Dt("e",dr);Dt("E",dr);Dt("dd",function(e,t){return t.weekdaysMinRegex(e)});Dt("ddd",function(e,t){return t.weekdaysShortRegex(e)});Dt("dddd",function(e,t){return t.weekdaysRegex(e)});cO(["dd","ddd","dddd"],function(e,t,n,o){var r=n._locale.weekdaysParse(e,o,n._strict);r!=null?t.d=r:Nn(n).invalidWeekday=e});cO(["d","e","E"],function(e,t,n,o){t[o]=Gn(e)});function flt(e,t){return typeof e!="string"?e:isNaN(e)?(e=t.weekdaysParse(e),typeof e=="number"?e:null):parseInt(e,10)}function blt(e,t){return typeof e=="string"?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function xj(e,t){return e.slice(t,7).concat(e.slice(0,t))}var hlt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),hbe="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),mlt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),glt=aO,Mlt=aO,zlt=aO;function Olt(e,t){var n=Ma(this._weekdays)?this._weekdays:this._weekdays[e&&e!==!0&&this._weekdays.isFormat.test(t)?"format":"standalone"];return e===!0?xj(n,this._week.dow):e?n[e.day()]:n}function ylt(e){return e===!0?xj(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Alt(e){return e===!0?xj(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function vlt(e,t,n){var o,r,s,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],o=0;o<7;++o)s=Nc([2e3,1]).day(o),this._minWeekdaysParse[o]=this.weekdaysMin(s,"").toLocaleLowerCase(),this._shortWeekdaysParse[o]=this.weekdaysShort(s,"").toLocaleLowerCase(),this._weekdaysParse[o]=this.weekdays(s,"").toLocaleLowerCase();return n?t==="dddd"?(r=Ur.call(this._weekdaysParse,i),r!==-1?r:null):t==="ddd"?(r=Ur.call(this._shortWeekdaysParse,i),r!==-1?r:null):(r=Ur.call(this._minWeekdaysParse,i),r!==-1?r:null):t==="dddd"?(r=Ur.call(this._weekdaysParse,i),r!==-1||(r=Ur.call(this._shortWeekdaysParse,i),r!==-1)?r:(r=Ur.call(this._minWeekdaysParse,i),r!==-1?r:null)):t==="ddd"?(r=Ur.call(this._shortWeekdaysParse,i),r!==-1||(r=Ur.call(this._weekdaysParse,i),r!==-1)?r:(r=Ur.call(this._minWeekdaysParse,i),r!==-1?r:null)):(r=Ur.call(this._minWeekdaysParse,i),r!==-1||(r=Ur.call(this._weekdaysParse,i),r!==-1)?r:(r=Ur.call(this._shortWeekdaysParse,i),r!==-1?r:null))}function xlt(e,t,n){var o,r,s;if(this._weekdaysParseExact)return vlt.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),o=0;o<7;o++){if(r=Nc([2e3,1]).day(o),n&&!this._fullWeekdaysParse[o]&&(this._fullWeekdaysParse[o]=new RegExp("^"+this.weekdays(r,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[o]=new RegExp("^"+this.weekdaysShort(r,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[o]=new RegExp("^"+this.weekdaysMin(r,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[o]||(s="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,""),this._weekdaysParse[o]=new RegExp(s.replace(".",""),"i")),n&&t==="dddd"&&this._fullWeekdaysParse[o].test(e))return o;if(n&&t==="ddd"&&this._shortWeekdaysParse[o].test(e))return o;if(n&&t==="dd"&&this._minWeekdaysParse[o].test(e))return o;if(!n&&this._weekdaysParse[o].test(e))return o}}function wlt(e){if(!this.isValid())return e!=null?this:NaN;var t=Sz(this,"Day");return e!=null?(e=flt(e,this.localeData()),this.add(e-t,"d")):t}function _lt(e){if(!this.isValid())return e!=null?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return e==null?t:this.add(e-t,"d")}function klt(e){if(!this.isValid())return e!=null?this:NaN;if(e!=null){var t=blt(e,this.localeData());return this.day(this.day()%7?t:t-7)}else return this.day()||7}function Slt(e){return this._weekdaysParseExact?(ho(this,"_weekdaysRegex")||wj.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(ho(this,"_weekdaysRegex")||(this._weekdaysRegex=glt),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Clt(e){return this._weekdaysParseExact?(ho(this,"_weekdaysRegex")||wj.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(ho(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Mlt),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function qlt(e){return this._weekdaysParseExact?(ho(this,"_weekdaysRegex")||wj.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(ho(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=zlt),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function wj(){function e(d,p){return p.length-d.length}var t=[],n=[],o=[],r=[],s,i,c,l,u;for(s=0;s<7;s++)i=Nc([2e3,1]).day(s),c=Sl(this.weekdaysMin(i,"")),l=Sl(this.weekdaysShort(i,"")),u=Sl(this.weekdays(i,"")),t.push(c),n.push(l),o.push(u),r.push(c),r.push(l),r.push(u);t.sort(e),n.sort(e),o.sort(e),r.sort(e),this._weekdaysRegex=new RegExp("^("+r.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+n.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+t.join("|")+")","i")}function _j(){return this.hours()%12||12}function Rlt(){return this.hours()||24}rn("H",["HH",2],0,"hour");rn("h",["hh",2],0,_j);rn("k",["kk",2],0,Rlt);rn("hmm",0,0,function(){return""+_j.apply(this)+_c(this.minutes(),2)});rn("hmmss",0,0,function(){return""+_j.apply(this)+_c(this.minutes(),2)+_c(this.seconds(),2)});rn("Hmm",0,0,function(){return""+this.hours()+_c(this.minutes(),2)});rn("Hmmss",0,0,function(){return""+this.hours()+_c(this.minutes(),2)+_c(this.seconds(),2)});function mbe(e,t){rn(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}mbe("a",!0);mbe("A",!1);function gbe(e,t){return t._meridiemParse}Dt("a",gbe);Dt("A",gbe);Dt("H",dr,Aj);Dt("h",dr,bm);Dt("k",dr,bm);Dt("HH",dr,Ys);Dt("hh",dr,Ys);Dt("kk",dr,Ys);Dt("hmm",sbe);Dt("hmmss",ibe);Dt("Hmm",sbe);Dt("Hmmss",ibe);Fo(["H","HH"],b0);Fo(["k","kk"],function(e,t,n){var o=Gn(e);t[b0]=o===24?0:o});Fo(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e});Fo(["h","hh"],function(e,t,n){t[b0]=Gn(e),Nn(n).bigHour=!0});Fo("hmm",function(e,t,n){var o=e.length-2;t[b0]=Gn(e.substr(0,o)),t[sa]=Gn(e.substr(o)),Nn(n).bigHour=!0});Fo("hmmss",function(e,t,n){var o=e.length-4,r=e.length-2;t[b0]=Gn(e.substr(0,o)),t[sa]=Gn(e.substr(o,2)),t[gl]=Gn(e.substr(r)),Nn(n).bigHour=!0});Fo("Hmm",function(e,t,n){var o=e.length-2;t[b0]=Gn(e.substr(0,o)),t[sa]=Gn(e.substr(o))});Fo("Hmmss",function(e,t,n){var o=e.length-4,r=e.length-2;t[b0]=Gn(e.substr(0,o)),t[sa]=Gn(e.substr(o,2)),t[gl]=Gn(e.substr(r))});function Tlt(e){return(e+"").toLowerCase().charAt(0)==="p"}var Elt=/[ap]\.?m?\.?/i,Wlt=hm("Hours",!0);function Nlt(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}var Mbe={calendar:vct,longDateFormat:kct,invalidDate:Cct,ordinal:Rct,dayOfMonthOrdinalParse:Tct,relativeTime:Wct,months:Yct,monthsShort:lbe,week:clt,weekdays:hlt,weekdaysMin:mlt,weekdaysShort:hbe,meridiemParse:Elt},br={},Wg={},Rz;function Blt(e,t){var n,o=Math.min(e.length,t.length);for(n=0;n<o;n+=1)if(e[n]!==t[n])return n;return o}function sZ(e){return e&&e.toLowerCase().replace("_","-")}function Llt(e){for(var t=0,n,o,r,s;t<e.length;){for(s=sZ(e[t]).split("-"),n=s.length,o=sZ(e[t+1]),o=o?o.split("-"):null;n>0;){if(r=o_(s.slice(0,n).join("-")),r)return r;if(o&&o.length>=n&&Blt(s,o)>=n-1)break;n--}t++}return Rz}function Plt(e){return!!(e&&e.match("^[^/\\\\]*$"))}function o_(e){var t=null,n;if(br[e]===void 0&&typeof _4<"u"&&_4&&_4.exports&&Plt(e))try{t=Rz._abbr,n=require,n("./locale/"+e),ld(t)}catch{br[e]=null}return br[e]}function ld(e,t){var n;return e&&(rs(t)?n=ou(e):n=kj(e,t),n?Rz=n:typeof console<"u"&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Rz._abbr}function kj(e,t){if(t!==null){var n,o=Mbe;if(t.abbr=e,br[e]!=null)tbe("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),o=br[e]._config;else if(t.parentLocale!=null)if(br[t.parentLocale]!=null)o=br[t.parentLocale]._config;else if(n=o_(t.parentLocale),n!=null)o=n._config;else return Wg[t.parentLocale]||(Wg[t.parentLocale]=[]),Wg[t.parentLocale].push({name:e,config:t}),null;return br[e]=new gj(Q8(o,t)),Wg[e]&&Wg[e].forEach(function(r){kj(r.name,r.config)}),ld(e),br[e]}else return delete br[e],null}function jlt(e,t){if(t!=null){var n,o,r=Mbe;br[e]!=null&&br[e].parentLocale!=null?br[e].set(Q8(br[e]._config,t)):(o=o_(e),o!=null&&(r=o._config),t=Q8(r,t),o==null&&(t.abbr=e),n=new gj(t),n.parentLocale=br[e],br[e]=n),ld(e)}else br[e]!=null&&(br[e].parentLocale!=null?(br[e]=br[e].parentLocale,e===ld()&&ld(e)):br[e]!=null&&delete br[e]);return br[e]}function ou(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Rz;if(!Ma(e)){if(t=o_(e),t)return t;e=[e]}return Llt(e)}function Ilt(){return J8(br)}function Sj(e){var t,n=e._a;return n&&Nn(e).overflow===-2&&(t=n[ml]<0||n[ml]>11?ml:n[sc]<1||n[sc]>vj(n[y1],n[ml])?sc:n[b0]<0||n[b0]>24||n[b0]===24&&(n[sa]!==0||n[gl]!==0||n[Yp]!==0)?b0:n[sa]<0||n[sa]>59?sa:n[gl]<0||n[gl]>59?gl:n[Yp]<0||n[Yp]>999?Yp:-1,Nn(e)._overflowDayOfYear&&(t<y1||t>sc)&&(t=sc),Nn(e)._overflowWeeks&&t===-1&&(t=Vct),Nn(e)._overflowWeekday&&t===-1&&(t=Hct),Nn(e).overflow=t),e}var Dlt=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Flt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,$lt=/Z|[+-]\d\d(?::?\d\d)?/,jA=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],YC=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Vlt=/^\/?Date\((-?\d+)/i,Hlt=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Ult={UT:0,GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function zbe(e){var t,n,o=e._i,r=Dlt.exec(o)||Flt.exec(o),s,i,c,l,u=jA.length,d=YC.length;if(r){for(Nn(e).iso=!0,t=0,n=u;t<n;t++)if(jA[t][1].exec(r[1])){i=jA[t][0],s=jA[t][2]!==!1;break}if(i==null){e._isValid=!1;return}if(r[3]){for(t=0,n=d;t<n;t++)if(YC[t][1].exec(r[3])){c=(r[2]||" ")+YC[t][0];break}if(c==null){e._isValid=!1;return}}if(!s&&c!=null){e._isValid=!1;return}if(r[4])if($lt.exec(r[4]))l="Z";else{e._isValid=!1;return}e._f=i+(c||"")+(l||""),qj(e)}else e._isValid=!1}function Xlt(e,t,n,o,r,s){var i=[Glt(e),lbe.indexOf(t),parseInt(n,10),parseInt(o,10),parseInt(r,10)];return s&&i.push(parseInt(s,10)),i}function Glt(e){var t=parseInt(e,10);return t<=49?2e3+t:t<=999?1900+t:t}function Klt(e){return e.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,"")}function Ylt(e,t,n){if(e){var o=hbe.indexOf(e),r=new Date(t[0],t[1],t[2]).getDay();if(o!==r)return Nn(n).weekdayMismatch=!0,n._isValid=!1,!1}return!0}function Zlt(e,t,n){if(e)return Ult[e];if(t)return 0;var o=parseInt(n,10),r=o%100,s=(o-r)/100;return s*60+r}function Obe(e){var t=Hlt.exec(Klt(e._i)),n;if(t){if(n=Xlt(t[4],t[3],t[2],t[5],t[6],t[7]),!Ylt(t[1],n,e))return;e._a=n,e._tzm=Zlt(t[8],t[9],t[10]),e._d=Cz.apply(null,e._a),e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),Nn(e).rfc2822=!0}else e._isValid=!1}function Qlt(e){var t=Vlt.exec(e._i);if(t!==null){e._d=new Date(+t[1]);return}if(zbe(e),e._isValid===!1)delete e._isValid;else return;if(Obe(e),e._isValid===!1)delete e._isValid;else return;e._strict?e._isValid=!1:gt.createFromInputFallback(e)}gt.createFromInputFallback=Ni("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))});function i2(e,t,n){return e??t??n}function Jlt(e){var t=new Date(gt.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}function Cj(e){var t,n,o=[],r,s,i;if(!e._d){for(r=Jlt(e),e._w&&e._a[sc]==null&&e._a[ml]==null&&eut(e),e._dayOfYear!=null&&(i=i2(e._a[y1],r[y1]),(e._dayOfYear>RM(i)||e._dayOfYear===0)&&(Nn(e)._overflowDayOfYear=!0),n=Cz(i,0,e._dayOfYear),e._a[ml]=n.getUTCMonth(),e._a[sc]=n.getUTCDate()),t=0;t<3&&e._a[t]==null;++t)e._a[t]=o[t]=r[t];for(;t<7;t++)e._a[t]=o[t]=e._a[t]==null?t===2?1:0:e._a[t];e._a[b0]===24&&e._a[sa]===0&&e._a[gl]===0&&e._a[Yp]===0&&(e._nextDay=!0,e._a[b0]=0),e._d=(e._useUTC?Cz:ilt).apply(null,o),s=e._useUTC?e._d.getUTCDay():e._d.getDay(),e._tzm!=null&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[b0]=24),e._w&&typeof e._w.d<"u"&&e._w.d!==s&&(Nn(e).weekdayMismatch=!0)}}function eut(e){var t,n,o,r,s,i,c,l,u;t=e._w,t.GG!=null||t.W!=null||t.E!=null?(s=1,i=4,n=i2(t.GG,e._a[y1],qz(lr(),1,4).year),o=i2(t.W,1),r=i2(t.E,1),(r<1||r>7)&&(l=!0)):(s=e._locale._week.dow,i=e._locale._week.doy,u=qz(lr(),s,i),n=i2(t.gg,e._a[y1],u.year),o=i2(t.w,u.week),t.d!=null?(r=t.d,(r<0||r>6)&&(l=!0)):t.e!=null?(r=t.e+s,(t.e<0||t.e>6)&&(l=!0)):r=s),o<1||o>Cl(n,s,i)?Nn(e)._overflowWeeks=!0:l!=null?Nn(e)._overflowWeekday=!0:(c=bbe(n,o,r,s,i),e._a[y1]=c.year,e._dayOfYear=c.dayOfYear)}gt.ISO_8601=function(){};gt.RFC_2822=function(){};function qj(e){if(e._f===gt.ISO_8601){zbe(e);return}if(e._f===gt.RFC_2822){Obe(e);return}e._a=[],Nn(e).empty=!0;var t=""+e._i,n,o,r,s,i,c=t.length,l=0,u,d;for(r=nbe(e._f,e._locale).match(Mj)||[],d=r.length,n=0;n<d;n++)s=r[n],o=(t.match(Dct(s,e))||[])[0],o&&(i=t.substr(0,t.indexOf(o)),i.length>0&&Nn(e).unusedInput.push(i),t=t.slice(t.indexOf(o)+o.length),l+=o.length),j2[s]?(o?Nn(e).empty=!1:Nn(e).unusedTokens.push(s),$ct(s,o,e)):e._strict&&!o&&Nn(e).unusedTokens.push(s);Nn(e).charsLeftOver=c-l,t.length>0&&Nn(e).unusedInput.push(t),e._a[b0]<=12&&Nn(e).bigHour===!0&&e._a[b0]>0&&(Nn(e).bigHour=void 0),Nn(e).parsedDateParts=e._a.slice(0),Nn(e).meridiem=e._meridiem,e._a[b0]=tut(e._locale,e._a[b0],e._meridiem),u=Nn(e).era,u!==null&&(e._a[y1]=e._locale.erasConvertYear(u,e._a[y1])),Cj(e),Sj(e)}function tut(e,t,n){var o;return n==null?t:e.meridiemHour!=null?e.meridiemHour(t,n):(e.isPM!=null&&(o=e.isPM(n),o&&t<12&&(t+=12),!o&&t===12&&(t=0)),t)}function nut(e){var t,n,o,r,s,i,c=!1,l=e._f.length;if(l===0){Nn(e).invalidFormat=!0,e._d=new Date(NaN);return}for(r=0;r<l;r++)s=0,i=!1,t=mj({},e),e._useUTC!=null&&(t._useUTC=e._useUTC),t._f=e._f[r],qj(t),hj(t)&&(i=!0),s+=Nn(t).charsLeftOver,s+=Nn(t).unusedTokens.length*10,Nn(t).score=s,c?s<o&&(o=s,n=t):(o==null||s<o||i)&&(o=s,n=t,i&&(c=!0));ed(e,n||t)}function out(e){if(!e._d){var t=zj(e._i),n=t.day===void 0?t.date:t.day;e._a=Jfe([t.year,t.month,n,t.hour,t.minute,t.second,t.millisecond],function(o){return o&&parseInt(o,10)}),Cj(e)}}function rut(e){var t=new iO(Sj(ybe(e)));return t._nextDay&&(t.add(1,"d"),t._nextDay=void 0),t}function ybe(e){var t=e._i,n=e._f;return e._locale=e._locale||ou(e._l),t===null||n===void 0&&t===""?Yw({nullInput:!0}):(typeof t=="string"&&(e._i=t=e._locale.preparse(t)),za(t)?new iO(Sj(t)):(sO(t)?e._d=t:Ma(n)?nut(e):n?qj(e):sut(e),hj(e)||(e._d=null),e))}function sut(e){var t=e._i;rs(t)?e._d=new Date(gt.now()):sO(t)?e._d=new Date(t.valueOf()):typeof t=="string"?Qlt(e):Ma(t)?(e._a=Jfe(t.slice(0),function(n){return parseInt(n,10)}),Cj(e)):sf(t)?out(e):jl(t)?e._d=new Date(t):gt.createFromInputFallback(e)}function Abe(e,t,n,o,r){var s={};return(t===!0||t===!1)&&(o=t,t=void 0),(n===!0||n===!1)&&(o=n,n=void 0),(sf(e)&&bj(e)||Ma(e)&&e.length===0)&&(e=void 0),s._isAMomentObject=!0,s._useUTC=s._isUTC=r,s._l=n,s._i=e,s._f=t,s._strict=o,rut(s)}function lr(e,t,n,o){return Abe(e,t,n,o,!1)}var iut=Ni("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=lr.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:Yw()}),aut=Ni("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=lr.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:Yw()});function vbe(e,t){var n,o;if(t.length===1&&Ma(t[0])&&(t=t[0]),!t.length)return lr();for(n=t[0],o=1;o<t.length;++o)(!t[o].isValid()||t[o][e](n))&&(n=t[o]);return n}function cut(){var e=[].slice.call(arguments,0);return vbe("isBefore",e)}function lut(){var e=[].slice.call(arguments,0);return vbe("isAfter",e)}var uut=function(){return Date.now?Date.now():+new Date},Ng=["year","quarter","month","week","day","hour","minute","second","millisecond"];function dut(e){var t,n=!1,o,r=Ng.length;for(t in e)if(ho(e,t)&&!(Ur.call(Ng,t)!==-1&&(e[t]==null||!isNaN(e[t]))))return!1;for(o=0;o<r;++o)if(e[Ng[o]]){if(n)return!1;parseFloat(e[Ng[o]])!==Gn(e[Ng[o]])&&(n=!0)}return!0}function put(){return this._isValid}function fut(){return ka(NaN)}function r_(e){var t=zj(e),n=t.year||0,o=t.quarter||0,r=t.month||0,s=t.week||t.isoWeek||0,i=t.day||0,c=t.hour||0,l=t.minute||0,u=t.second||0,d=t.millisecond||0;this._isValid=dut(t),this._milliseconds=+d+u*1e3+l*6e4+c*1e3*60*60,this._days=+i+s*7,this._months=+r+o*3+n*12,this._data={},this._locale=ou(),this._bubble()}function a4(e){return e instanceof r_}function tW(e){return e<0?Math.round(-1*e)*-1:Math.round(e)}function but(e,t,n){var o=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),s=0,i;for(i=0;i<o;i++)Gn(e[i])!==Gn(t[i])&&s++;return s+r}function xbe(e,t){rn(e,0,0,function(){var n=this.utcOffset(),o="+";return n<0&&(n=-n,o="-"),o+_c(~~(n/60),2)+t+_c(~~n%60,2)})}xbe("Z",":");xbe("ZZ","");Dt("Z",t_);Dt("ZZ",t_);Fo(["Z","ZZ"],function(e,t,n){n._useUTC=!0,n._tzm=Rj(t_,e)});var hut=/([\+\-]|\d\d)/gi;function Rj(e,t){var n=(t||"").match(e),o,r,s;return n===null?null:(o=n[n.length-1]||[],r=(o+"").match(hut)||["-",0,0],s=+(r[1]*60)+Gn(r[2]),s===0?0:r[0]==="+"?s:-s)}function Tj(e,t){var n,o;return t._isUTC?(n=t.clone(),o=(za(e)||sO(e)?e.valueOf():lr(e).valueOf())-n.valueOf(),n._d.setTime(n._d.valueOf()+o),gt.updateOffset(n,!1),n):lr(e).local()}function nW(e){return-Math.round(e._d.getTimezoneOffset())}gt.updateOffset=function(){};function mut(e,t,n){var o=this._offset||0,r;if(!this.isValid())return e!=null?this:NaN;if(e!=null){if(typeof e=="string"){if(e=Rj(t_,e),e===null)return this}else Math.abs(e)<16&&!n&&(e=e*60);return!this._isUTC&&t&&(r=nW(this)),this._offset=e,this._isUTC=!0,r!=null&&this.add(r,"m"),o!==e&&(!t||this._changeInProgress?kbe(this,ka(e-o,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,gt.updateOffset(this,!0),this._changeInProgress=null)),this}else return this._isUTC?o:nW(this)}function gut(e,t){return e!=null?(typeof e!="string"&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}function Mut(e){return this.utcOffset(0,e)}function zut(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(nW(this),"m")),this}function Out(){if(this._tzm!=null)this.utcOffset(this._tzm,!1,!0);else if(typeof this._i=="string"){var e=Rj(jct,this._i);e!=null?this.utcOffset(e):this.utcOffset(0,!0)}return this}function yut(e){return this.isValid()?(e=e?lr(e).utcOffset():0,(this.utcOffset()-e)%60===0):!1}function Aut(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function vut(){if(!rs(this._isDSTShifted))return this._isDSTShifted;var e={},t;return mj(e,this),e=ybe(e),e._a?(t=e._isUTC?Nc(e._a):lr(e._a),this._isDSTShifted=this.isValid()&&but(e._a,t.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function xut(){return this.isValid()?!this._isUTC:!1}function wut(){return this.isValid()?this._isUTC:!1}function wbe(){return this.isValid()?this._isUTC&&this._offset===0:!1}var _ut=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,kut=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function ka(e,t){var n=e,o=null,r,s,i;return a4(e)?n={ms:e._milliseconds,d:e._days,M:e._months}:jl(e)||!isNaN(+e)?(n={},t?n[t]=+e:n.milliseconds=+e):(o=_ut.exec(e))?(r=o[1]==="-"?-1:1,n={y:0,d:Gn(o[sc])*r,h:Gn(o[b0])*r,m:Gn(o[sa])*r,s:Gn(o[gl])*r,ms:Gn(tW(o[Yp]*1e3))*r}):(o=kut.exec(e))?(r=o[1]==="-"?-1:1,n={y:Ep(o[2],r),M:Ep(o[3],r),w:Ep(o[4],r),d:Ep(o[5],r),h:Ep(o[6],r),m:Ep(o[7],r),s:Ep(o[8],r)}):n==null?n={}:typeof n=="object"&&("from"in n||"to"in n)&&(i=Sut(lr(n.from),lr(n.to)),n={},n.ms=i.milliseconds,n.M=i.months),s=new r_(n),a4(e)&&ho(e,"_locale")&&(s._locale=e._locale),a4(e)&&ho(e,"_isValid")&&(s._isValid=e._isValid),s}ka.fn=r_.prototype;ka.invalid=fut;function Ep(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function iZ(e,t){var n={};return n.months=t.month()-e.month()+(t.year()-e.year())*12,e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Sut(e,t){var n;return e.isValid()&&t.isValid()?(t=Tj(t,e),e.isBefore(t)?n=iZ(e,t):(n=iZ(t,e),n.milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function _be(e,t){return function(n,o){var r,s;return o!==null&&!isNaN(+o)&&(tbe(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),s=n,n=o,o=s),r=ka(n,o),kbe(this,r,e),this}}function kbe(e,t,n,o){var r=t._milliseconds,s=tW(t._days),i=tW(t._months);e.isValid()&&(o=o??!0,i&&dbe(e,Sz(e,"Month")+i*n),s&&cbe(e,"Date",Sz(e,"Date")+s*n),r&&e._d.setTime(e._d.valueOf()+r*n),o&>.updateOffset(e,s||i))}var Cut=_be(1,"add"),qut=_be(-1,"subtract");function Sbe(e){return typeof e=="string"||e instanceof String}function Rut(e){return za(e)||sO(e)||Sbe(e)||jl(e)||Eut(e)||Tut(e)||e===null||e===void 0}function Tut(e){var t=sf(e)&&!bj(e),n=!1,o=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],r,s,i=o.length;for(r=0;r<i;r+=1)s=o[r],n=n||ho(e,s);return t&&n}function Eut(e){var t=Ma(e),n=!1;return t&&(n=e.filter(function(o){return!jl(o)&&Sbe(e)}).length===0),t&&n}function Wut(e){var t=sf(e)&&!bj(e),n=!1,o=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"],r,s;for(r=0;r<o.length;r+=1)s=o[r],n=n||ho(e,s);return t&&n}function Nut(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"}function But(e,t){arguments.length===1&&(arguments[0]?Rut(arguments[0])?(e=arguments[0],t=void 0):Wut(arguments[0])&&(t=arguments[0],e=void 0):(e=void 0,t=void 0));var n=e||lr(),o=Tj(n,this).startOf("day"),r=gt.calendarFormat(this,o)||"sameElse",s=t&&(Bc(t[r])?t[r].call(this,n):t[r]);return this.format(s||this.localeData().calendar(r,this,lr(n)))}function Lut(){return new iO(this)}function Put(e,t){var n=za(e)?e:lr(e);return this.isValid()&&n.isValid()?(t=Bi(t)||"millisecond",t==="millisecond"?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf()):!1}function jut(e,t){var n=za(e)?e:lr(e);return this.isValid()&&n.isValid()?(t=Bi(t)||"millisecond",t==="millisecond"?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf()):!1}function Iut(e,t,n,o){var r=za(e)?e:lr(e),s=za(t)?t:lr(t);return this.isValid()&&r.isValid()&&s.isValid()?(o=o||"()",(o[0]==="("?this.isAfter(r,n):!this.isBefore(r,n))&&(o[1]===")"?this.isBefore(s,n):!this.isAfter(s,n))):!1}function Dut(e,t){var n=za(e)?e:lr(e),o;return this.isValid()&&n.isValid()?(t=Bi(t)||"millisecond",t==="millisecond"?this.valueOf()===n.valueOf():(o=n.valueOf(),this.clone().startOf(t).valueOf()<=o&&o<=this.clone().endOf(t).valueOf())):!1}function Fut(e,t){return this.isSame(e,t)||this.isAfter(e,t)}function $ut(e,t){return this.isSame(e,t)||this.isBefore(e,t)}function Vut(e,t,n){var o,r,s;if(!this.isValid())return NaN;if(o=Tj(e,this),!o.isValid())return NaN;switch(r=(o.utcOffset()-this.utcOffset())*6e4,t=Bi(t),t){case"year":s=c4(this,o)/12;break;case"month":s=c4(this,o);break;case"quarter":s=c4(this,o)/3;break;case"second":s=(this-o)/1e3;break;case"minute":s=(this-o)/6e4;break;case"hour":s=(this-o)/36e5;break;case"day":s=(this-o-r)/864e5;break;case"week":s=(this-o-r)/6048e5;break;default:s=this-o}return n?s:Mi(s)}function c4(e,t){if(e.date()<t.date())return-c4(t,e);var n=(t.year()-e.year())*12+(t.month()-e.month()),o=e.clone().add(n,"months"),r,s;return t-o<0?(r=e.clone().add(n-1,"months"),s=(t-o)/(o-r)):(r=e.clone().add(n+1,"months"),s=(t-o)/(r-o)),-(n+s)||0}gt.defaultFormat="YYYY-MM-DDTHH:mm:ssZ";gt.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";function Hut(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function Uut(e){if(!this.isValid())return null;var t=e!==!0,n=t?this.clone().utc():this;return n.year()<0||n.year()>9999?i4(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):Bc(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+this.utcOffset()*60*1e3).toISOString().replace("Z",i4(n,"Z")):i4(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function Xut(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="",n,o,r,s;return this.isLocal()||(e=this.utcOffset()===0?"moment.utc":"moment.parseZone",t="Z"),n="["+e+'("]',o=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",r="-MM-DD[T]HH:mm:ss.SSS",s=t+'[")]',this.format(n+o+r+s)}function Gut(e){e||(e=this.isUtc()?gt.defaultFormatUtc:gt.defaultFormat);var t=i4(this,e);return this.localeData().postformat(t)}function Kut(e,t){return this.isValid()&&(za(e)&&e.isValid()||lr(e).isValid())?ka({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Yut(e){return this.from(lr(),e)}function Zut(e,t){return this.isValid()&&(za(e)&&e.isValid()||lr(e).isValid())?ka({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Qut(e){return this.to(lr(),e)}function Cbe(e){var t;return e===void 0?this._locale._abbr:(t=ou(e),t!=null&&(this._locale=t),this)}var qbe=Ni("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return e===void 0?this.localeData():this.locale(e)});function Rbe(){return this._locale}var wx=1e3,I2=60*wx,_x=60*I2,Tbe=(365*400+97)*24*_x;function D2(e,t){return(e%t+t)%t}function Ebe(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-Tbe:new Date(e,t,n).valueOf()}function Wbe(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-Tbe:Date.UTC(e,t,n)}function Jut(e){var t,n;if(e=Bi(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(n=this._isUTC?Wbe:Ebe,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=D2(t+(this._isUTC?0:this.utcOffset()*I2),_x);break;case"minute":t=this._d.valueOf(),t-=D2(t,I2);break;case"second":t=this._d.valueOf(),t-=D2(t,wx);break}return this._d.setTime(t),gt.updateOffset(this,!0),this}function edt(e){var t,n;if(e=Bi(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(n=this._isUTC?Wbe:Ebe,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=_x-D2(t+(this._isUTC?0:this.utcOffset()*I2),_x)-1;break;case"minute":t=this._d.valueOf(),t+=I2-D2(t,I2)-1;break;case"second":t=this._d.valueOf(),t+=wx-D2(t,wx)-1;break}return this._d.setTime(t),gt.updateOffset(this,!0),this}function tdt(){return this._d.valueOf()-(this._offset||0)*6e4}function ndt(){return Math.floor(this.valueOf()/1e3)}function odt(){return new Date(this.valueOf())}function rdt(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function sdt(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function idt(){return this.isValid()?this.toISOString():null}function adt(){return hj(this)}function cdt(){return ed({},Nn(this))}function ldt(){return Nn(this).overflow}function udt(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}rn("N",0,0,"eraAbbr");rn("NN",0,0,"eraAbbr");rn("NNN",0,0,"eraAbbr");rn("NNNN",0,0,"eraName");rn("NNNNN",0,0,"eraNarrow");rn("y",["y",1],"yo","eraYear");rn("y",["yy",2],0,"eraYear");rn("y",["yyy",3],0,"eraYear");rn("y",["yyyy",4],0,"eraYear");Dt("N",Ej);Dt("NN",Ej);Dt("NNN",Ej);Dt("NNNN",ydt);Dt("NNNNN",Adt);Fo(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,o){var r=n._locale.erasParse(e,o,n._strict);r?Nn(n).era=r:Nn(n).invalidEra=e});Dt("y",fm);Dt("yy",fm);Dt("yyy",fm);Dt("yyyy",fm);Dt("yo",vdt);Fo(["y","yy","yyy","yyyy"],y1);Fo(["yo"],function(e,t,n,o){var r;n._locale._eraYearOrdinalRegex&&(r=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[y1]=n._locale.eraYearOrdinalParse(e,r):t[y1]=parseInt(e,10)});function ddt(e,t){var n,o,r,s=this._eras||ou("en")._eras;for(n=0,o=s.length;n<o;++n){switch(typeof s[n].since){case"string":r=gt(s[n].since).startOf("day"),s[n].since=r.valueOf();break}switch(typeof s[n].until){case"undefined":s[n].until=1/0;break;case"string":r=gt(s[n].until).startOf("day").valueOf(),s[n].until=r.valueOf();break}}return s}function pdt(e,t,n){var o,r,s=this.eras(),i,c,l;for(e=e.toUpperCase(),o=0,r=s.length;o<r;++o)if(i=s[o].name.toUpperCase(),c=s[o].abbr.toUpperCase(),l=s[o].narrow.toUpperCase(),n)switch(t){case"N":case"NN":case"NNN":if(c===e)return s[o];break;case"NNNN":if(i===e)return s[o];break;case"NNNNN":if(l===e)return s[o];break}else if([i,c,l].indexOf(e)>=0)return s[o]}function fdt(e,t){var n=e.since<=e.until?1:-1;return t===void 0?gt(e.since).year():gt(e.since).year()+(t-e.offset)*n}function bdt(){var e,t,n,o=this.localeData().eras();for(e=0,t=o.length;e<t;++e)if(n=this.clone().startOf("day").valueOf(),o[e].since<=n&&n<=o[e].until||o[e].until<=n&&n<=o[e].since)return o[e].name;return""}function hdt(){var e,t,n,o=this.localeData().eras();for(e=0,t=o.length;e<t;++e)if(n=this.clone().startOf("day").valueOf(),o[e].since<=n&&n<=o[e].until||o[e].until<=n&&n<=o[e].since)return o[e].narrow;return""}function mdt(){var e,t,n,o=this.localeData().eras();for(e=0,t=o.length;e<t;++e)if(n=this.clone().startOf("day").valueOf(),o[e].since<=n&&n<=o[e].until||o[e].until<=n&&n<=o[e].since)return o[e].abbr;return""}function gdt(){var e,t,n,o,r=this.localeData().eras();for(e=0,t=r.length;e<t;++e)if(n=r[e].since<=r[e].until?1:-1,o=this.clone().startOf("day").valueOf(),r[e].since<=o&&o<=r[e].until||r[e].until<=o&&o<=r[e].since)return(this.year()-gt(r[e].since).year())*n+r[e].offset;return this.year()}function Mdt(e){return ho(this,"_erasNameRegex")||Wj.call(this),e?this._erasNameRegex:this._erasRegex}function zdt(e){return ho(this,"_erasAbbrRegex")||Wj.call(this),e?this._erasAbbrRegex:this._erasRegex}function Odt(e){return ho(this,"_erasNarrowRegex")||Wj.call(this),e?this._erasNarrowRegex:this._erasRegex}function Ej(e,t){return t.erasAbbrRegex(e)}function ydt(e,t){return t.erasNameRegex(e)}function Adt(e,t){return t.erasNarrowRegex(e)}function vdt(e,t){return t._eraYearOrdinalRegex||fm}function Wj(){var e=[],t=[],n=[],o=[],r,s,i,c,l,u=this.eras();for(r=0,s=u.length;r<s;++r)i=Sl(u[r].name),c=Sl(u[r].abbr),l=Sl(u[r].narrow),t.push(i),e.push(c),n.push(l),o.push(i),o.push(c),o.push(l);this._erasRegex=new RegExp("^("+o.join("|")+")","i"),this._erasNameRegex=new RegExp("^("+t.join("|")+")","i"),this._erasAbbrRegex=new RegExp("^("+e.join("|")+")","i"),this._erasNarrowRegex=new RegExp("^("+n.join("|")+")","i")}rn(0,["gg",2],0,function(){return this.weekYear()%100});rn(0,["GG",2],0,function(){return this.isoWeekYear()%100});function s_(e,t){rn(0,[e,e.length],0,t)}s_("gggg","weekYear");s_("ggggg","weekYear");s_("GGGG","isoWeekYear");s_("GGGGG","isoWeekYear");Dt("G",e_);Dt("g",e_);Dt("GG",dr,Ys);Dt("gg",dr,Ys);Dt("GGGG",yj,Oj);Dt("gggg",yj,Oj);Dt("GGGGG",Jw,Zw);Dt("ggggg",Jw,Zw);cO(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,o){t[o.substr(0,2)]=Gn(e)});cO(["gg","GG"],function(e,t,n,o){t[o]=gt.parseTwoDigitYear(e)});function xdt(e){return Nbe.call(this,e,this.week(),this.weekday()+this.localeData()._week.dow,this.localeData()._week.dow,this.localeData()._week.doy)}function wdt(e){return Nbe.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)}function _dt(){return Cl(this.year(),1,4)}function kdt(){return Cl(this.isoWeekYear(),1,4)}function Sdt(){var e=this.localeData()._week;return Cl(this.year(),e.dow,e.doy)}function Cdt(){var e=this.localeData()._week;return Cl(this.weekYear(),e.dow,e.doy)}function Nbe(e,t,n,o,r){var s;return e==null?qz(this,o,r).year:(s=Cl(e,o,r),t>s&&(t=s),qdt.call(this,e,t,n,o,r))}function qdt(e,t,n,o,r){var s=bbe(e,t,n,o,r),i=Cz(s.year,0,s.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}rn("Q",0,"Qo","quarter");Dt("Q",obe);Fo("Q",function(e,t){t[ml]=(Gn(e)-1)*3});function Rdt(e){return e==null?Math.ceil((this.month()+1)/3):this.month((e-1)*3+this.month()%3)}rn("D",["DD",2],"Do","date");Dt("D",dr,bm);Dt("DD",dr,Ys);Dt("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient});Fo(["D","DD"],sc);Fo("Do",function(e,t){t[sc]=Gn(e.match(dr)[0])});var Bbe=hm("Date",!0);rn("DDD",["DDDD",3],"DDDo","dayOfYear");Dt("DDD",Qw);Dt("DDDD",rbe);Fo(["DDD","DDDD"],function(e,t,n){n._dayOfYear=Gn(e)});function Tdt(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return e==null?t:this.add(e-t,"d")}rn("m",["mm",2],0,"minute");Dt("m",dr,Aj);Dt("mm",dr,Ys);Fo(["m","mm"],sa);var Edt=hm("Minutes",!1);rn("s",["ss",2],0,"second");Dt("s",dr,Aj);Dt("ss",dr,Ys);Fo(["s","ss"],gl);var Wdt=hm("Seconds",!1);rn("S",0,0,function(){return~~(this.millisecond()/100)});rn(0,["SS",2],0,function(){return~~(this.millisecond()/10)});rn(0,["SSS",3],0,"millisecond");rn(0,["SSSS",4],0,function(){return this.millisecond()*10});rn(0,["SSSSS",5],0,function(){return this.millisecond()*100});rn(0,["SSSSSS",6],0,function(){return this.millisecond()*1e3});rn(0,["SSSSSSS",7],0,function(){return this.millisecond()*1e4});rn(0,["SSSSSSSS",8],0,function(){return this.millisecond()*1e5});rn(0,["SSSSSSSSS",9],0,function(){return this.millisecond()*1e6});Dt("S",Qw,obe);Dt("SS",Qw,Ys);Dt("SSS",Qw,rbe);var td,Lbe;for(td="SSSS";td.length<=9;td+="S")Dt(td,fm);function Ndt(e,t){t[Yp]=Gn(("0."+e)*1e3)}for(td="S";td.length<=9;td+="S")Fo(td,Ndt);Lbe=hm("Milliseconds",!1);rn("z",0,0,"zoneAbbr");rn("zz",0,0,"zoneName");function Bdt(){return this._isUTC?"UTC":""}function Ldt(){return this._isUTC?"Coordinated Universal Time":""}var pt=iO.prototype;pt.add=Cut;pt.calendar=But;pt.clone=Lut;pt.diff=Vut;pt.endOf=edt;pt.format=Gut;pt.from=Kut;pt.fromNow=Yut;pt.to=Zut;pt.toNow=Qut;pt.get=Xct;pt.invalidAt=ldt;pt.isAfter=Put;pt.isBefore=jut;pt.isBetween=Iut;pt.isSame=Dut;pt.isSameOrAfter=Fut;pt.isSameOrBefore=$ut;pt.isValid=adt;pt.lang=qbe;pt.locale=Cbe;pt.localeData=Rbe;pt.max=aut;pt.min=iut;pt.parsingFlags=cdt;pt.set=Gct;pt.startOf=Jut;pt.subtract=qut;pt.toArray=rdt;pt.toObject=sdt;pt.toDate=odt;pt.toISOString=Uut;pt.inspect=Xut;typeof Symbol<"u"&&Symbol.for!=null&&(pt[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"});pt.toJSON=idt;pt.toString=Hut;pt.unix=ndt;pt.valueOf=tdt;pt.creationData=udt;pt.eraName=bdt;pt.eraNarrow=hdt;pt.eraAbbr=mdt;pt.eraYear=gdt;pt.year=abe;pt.isLeapYear=Uct;pt.weekYear=xdt;pt.isoWeekYear=wdt;pt.quarter=pt.quarters=Rdt;pt.month=pbe;pt.daysInMonth=olt;pt.week=pt.weeks=dlt;pt.isoWeek=pt.isoWeeks=plt;pt.weeksInYear=Sdt;pt.weeksInWeekYear=Cdt;pt.isoWeeksInYear=_dt;pt.isoWeeksInISOWeekYear=kdt;pt.date=Bbe;pt.day=pt.days=wlt;pt.weekday=_lt;pt.isoWeekday=klt;pt.dayOfYear=Tdt;pt.hour=pt.hours=Wlt;pt.minute=pt.minutes=Edt;pt.second=pt.seconds=Wdt;pt.millisecond=pt.milliseconds=Lbe;pt.utcOffset=mut;pt.utc=Mut;pt.local=zut;pt.parseZone=Out;pt.hasAlignedHourOffset=yut;pt.isDST=Aut;pt.isLocal=xut;pt.isUtcOffset=wut;pt.isUtc=wbe;pt.isUTC=wbe;pt.zoneAbbr=Bdt;pt.zoneName=Ldt;pt.dates=Ni("dates accessor is deprecated. Use date instead.",Bbe);pt.months=Ni("months accessor is deprecated. Use month instead",pbe);pt.years=Ni("years accessor is deprecated. Use year instead",abe);pt.zone=Ni("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",gut);pt.isDSTShifted=Ni("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",vut);function Pdt(e){return lr(e*1e3)}function jdt(){return lr.apply(null,arguments).parseZone()}function Pbe(e){return e}var go=gj.prototype;go.calendar=xct;go.longDateFormat=Sct;go.invalidDate=qct;go.ordinal=Ect;go.preparse=Pbe;go.postformat=Pbe;go.relativeTime=Nct;go.pastFuture=Bct;go.set=Act;go.eras=ddt;go.erasParse=pdt;go.erasConvertYear=fdt;go.erasAbbrRegex=zdt;go.erasNameRegex=Mdt;go.erasNarrowRegex=Odt;go.months=Jct;go.monthsShort=elt;go.monthsParse=nlt;go.monthsRegex=slt;go.monthsShortRegex=rlt;go.week=alt;go.firstDayOfYear=ult;go.firstDayOfWeek=llt;go.weekdays=Olt;go.weekdaysMin=Alt;go.weekdaysShort=ylt;go.weekdaysParse=xlt;go.weekdaysRegex=Slt;go.weekdaysShortRegex=Clt;go.weekdaysMinRegex=qlt;go.isPM=Tlt;go.meridiem=Nlt;function kx(e,t,n,o){var r=ou(),s=Nc().set(o,t);return r[n](s,e)}function jbe(e,t,n){if(jl(e)&&(t=e,e=void 0),e=e||"",t!=null)return kx(e,t,n,"month");var o,r=[];for(o=0;o<12;o++)r[o]=kx(e,o,n,"month");return r}function Nj(e,t,n,o){typeof e=="boolean"?(jl(t)&&(n=t,t=void 0),t=t||""):(t=e,n=t,e=!1,jl(t)&&(n=t,t=void 0),t=t||"");var r=ou(),s=e?r._week.dow:0,i,c=[];if(n!=null)return kx(t,(n+s)%7,o,"day");for(i=0;i<7;i++)c[i]=kx(t,(i+s)%7,o,"day");return c}function Idt(e,t){return jbe(e,t,"months")}function Ddt(e,t){return jbe(e,t,"monthsShort")}function Fdt(e,t,n){return Nj(e,t,n,"weekdays")}function $dt(e,t,n){return Nj(e,t,n,"weekdaysShort")}function Vdt(e,t,n){return Nj(e,t,n,"weekdaysMin")}ld("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,n=Gn(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n}});gt.lang=Ni("moment.lang is deprecated. Use moment.locale instead.",ld);gt.langData=Ni("moment.langData is deprecated. Use moment.localeData instead.",ou);var Qc=Math.abs;function Hdt(){var e=this._data;return this._milliseconds=Qc(this._milliseconds),this._days=Qc(this._days),this._months=Qc(this._months),e.milliseconds=Qc(e.milliseconds),e.seconds=Qc(e.seconds),e.minutes=Qc(e.minutes),e.hours=Qc(e.hours),e.months=Qc(e.months),e.years=Qc(e.years),this}function Ibe(e,t,n,o){var r=ka(t,n);return e._milliseconds+=o*r._milliseconds,e._days+=o*r._days,e._months+=o*r._months,e._bubble()}function Udt(e,t){return Ibe(this,e,t,1)}function Xdt(e,t){return Ibe(this,e,t,-1)}function aZ(e){return e<0?Math.floor(e):Math.ceil(e)}function Gdt(){var e=this._milliseconds,t=this._days,n=this._months,o=this._data,r,s,i,c,l;return e>=0&&t>=0&&n>=0||e<=0&&t<=0&&n<=0||(e+=aZ(oW(n)+t)*864e5,t=0,n=0),o.milliseconds=e%1e3,r=Mi(e/1e3),o.seconds=r%60,s=Mi(r/60),o.minutes=s%60,i=Mi(s/60),o.hours=i%24,t+=Mi(i/24),l=Mi(Dbe(t)),n+=l,t-=aZ(oW(l)),c=Mi(n/12),n%=12,o.days=t,o.months=n,o.years=c,this}function Dbe(e){return e*4800/146097}function oW(e){return e*146097/4800}function Kdt(e){if(!this.isValid())return NaN;var t,n,o=this._milliseconds;if(e=Bi(e),e==="month"||e==="quarter"||e==="year")switch(t=this._days+o/864e5,n=this._months+Dbe(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(oW(this._months)),e){case"week":return t/7+o/6048e5;case"day":return t+o/864e5;case"hour":return t*24+o/36e5;case"minute":return t*1440+o/6e4;case"second":return t*86400+o/1e3;case"millisecond":return Math.floor(t*864e5)+o;default:throw new Error("Unknown unit "+e)}}function ru(e){return function(){return this.as(e)}}var Fbe=ru("ms"),Ydt=ru("s"),Zdt=ru("m"),Qdt=ru("h"),Jdt=ru("d"),ept=ru("w"),tpt=ru("M"),npt=ru("Q"),opt=ru("y"),rpt=Fbe;function spt(){return ka(this)}function ipt(e){return e=Bi(e),this.isValid()?this[e+"s"]():NaN}function rb(e){return function(){return this.isValid()?this._data[e]:NaN}}var apt=rb("milliseconds"),cpt=rb("seconds"),lpt=rb("minutes"),upt=rb("hours"),dpt=rb("days"),ppt=rb("months"),fpt=rb("years");function bpt(){return Mi(this.days()/7)}var il=Math.round,g2={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function hpt(e,t,n,o,r){return r.relativeTime(t||1,!!n,e,o)}function mpt(e,t,n,o){var r=ka(e).abs(),s=il(r.as("s")),i=il(r.as("m")),c=il(r.as("h")),l=il(r.as("d")),u=il(r.as("M")),d=il(r.as("w")),p=il(r.as("y")),f=s<=n.ss&&["s",s]||s<n.s&&["ss",s]||i<=1&&["m"]||i<n.m&&["mm",i]||c<=1&&["h"]||c<n.h&&["hh",c]||l<=1&&["d"]||l<n.d&&["dd",l];return n.w!=null&&(f=f||d<=1&&["w"]||d<n.w&&["ww",d]),f=f||u<=1&&["M"]||u<n.M&&["MM",u]||p<=1&&["y"]||["yy",p],f[2]=t,f[3]=+e>0,f[4]=o,hpt.apply(null,f)}function gpt(e){return e===void 0?il:typeof e=="function"?(il=e,!0):!1}function Mpt(e,t){return g2[e]===void 0?!1:t===void 0?g2[e]:(g2[e]=t,e==="s"&&(g2.ss=t-1),!0)}function zpt(e,t){if(!this.isValid())return this.localeData().invalidDate();var n=!1,o=g2,r,s;return typeof e=="object"&&(t=e,e=!1),typeof e=="boolean"&&(n=e),typeof t=="object"&&(o=Object.assign({},g2,t),t.s!=null&&t.ss==null&&(o.ss=t.s-1)),r=this.localeData(),s=mpt(this,!n,o,r),n&&(s=r.pastFuture(+this,s)),r.postformat(s)}var ZC=Math.abs;function Xb(e){return(e>0)-(e<0)||+e}function i_(){if(!this.isValid())return this.localeData().invalidDate();var e=ZC(this._milliseconds)/1e3,t=ZC(this._days),n=ZC(this._months),o,r,s,i,c=this.asSeconds(),l,u,d,p;return c?(o=Mi(e/60),r=Mi(o/60),e%=60,o%=60,s=Mi(n/12),n%=12,i=e?e.toFixed(3).replace(/\.?0+$/,""):"",l=c<0?"-":"",u=Xb(this._months)!==Xb(c)?"-":"",d=Xb(this._days)!==Xb(c)?"-":"",p=Xb(this._milliseconds)!==Xb(c)?"-":"",l+"P"+(s?u+s+"Y":"")+(n?u+n+"M":"")+(t?d+t+"D":"")+(r||o||e?"T":"")+(r?p+r+"H":"")+(o?p+o+"M":"")+(e?p+i+"S":"")):"P0D"}var io=r_.prototype;io.isValid=put;io.abs=Hdt;io.add=Udt;io.subtract=Xdt;io.as=Kdt;io.asMilliseconds=Fbe;io.asSeconds=Ydt;io.asMinutes=Zdt;io.asHours=Qdt;io.asDays=Jdt;io.asWeeks=ept;io.asMonths=tpt;io.asQuarters=npt;io.asYears=opt;io.valueOf=rpt;io._bubble=Gdt;io.clone=spt;io.get=ipt;io.milliseconds=apt;io.seconds=cpt;io.minutes=lpt;io.hours=upt;io.days=dpt;io.weeks=bpt;io.months=ppt;io.years=fpt;io.humanize=zpt;io.toISOString=i_;io.toString=i_;io.toJSON=i_;io.locale=Cbe;io.localeData=Rbe;io.toIsoString=Ni("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",i_);io.lang=qbe;rn("X",0,0,"unix");rn("x",0,0,"valueOf");Dt("x",e_);Dt("X",Ict);Fo("X",function(e,t,n){n._d=new Date(parseFloat(e)*1e3)});Fo("x",function(e,t,n){n._d=new Date(Gn(e))});//! moment.js +gt.version="2.30.1";Oct(lr);gt.fn=pt;gt.min=cut;gt.max=lut;gt.now=uut;gt.utc=Nc;gt.unix=Pdt;gt.months=Idt;gt.isDate=sO;gt.locale=ld;gt.invalid=Yw;gt.duration=ka;gt.isMoment=za;gt.weekdays=Fdt;gt.parseZone=jdt;gt.localeData=ou;gt.isDuration=a4;gt.monthsShort=Ddt;gt.weekdaysMin=Vdt;gt.defineLocale=kj;gt.updateLocale=jlt;gt.locales=Ilt;gt.weekdaysShort=$dt;gt.normalizeUnits=Bi;gt.relativeTimeRounding=gpt;gt.relativeTimeThreshold=Mpt;gt.calendarFormat=Nut;gt.prototype=pt;gt.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"};const Opt=Object.freeze(Object.defineProperty({__proto__:null,default:gt},Symbol.toStringTag,{value:"Module"}));var l4={exports:{}};const ypt=O5(Opt);var Apt=l4.exports,cZ;function $be(){return cZ||(cZ=1,function(e){//! moment-timezone.js //! version : 0.5.47 //! Copyright (c) JS Foundation and other contributors //! license : MIT //! github.com/moment/moment-timezone -(function(t,n){e.exports?e.exports=n(Apt):n(t.moment)})(vpt,function(t){t.version===void 0&&t.default&&(t=t.default);var n="0.5.47",o={},r={},s={},i={},c={},l;(!t||typeof t.version!="string")&&ce("Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/");var u=t.version.split("."),d=+u[0],p=+u[1];(d<2||d===2&&p<6)&&ce("Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js "+t.version+". See momentjs.com");function f(ie){return ie>96?ie-87:ie>64?ie-29:ie-48}function b(ie){var we=0,re=ie.split("."),pe=re[0],ke=re[1]||"",Se=1,se,L=0,U=1;for(ie.charCodeAt(0)===45&&(we=1,U=-1),we;we<pe.length;we++)se=f(pe.charCodeAt(we)),L=60*L+se;for(we=0;we<ke.length;we++)Se=Se/60,se=f(ke.charCodeAt(we)),L+=se*Se;return L*U}function h(ie){for(var we=0;we<ie.length;we++)ie[we]=b(ie[we])}function g(ie,we){for(var re=0;re<we;re++)ie[re]=Math.round((ie[re-1]||0)+ie[re]*6e4);ie[we-1]=1/0}function z(ie,we){var re=[],pe;for(pe=0;pe<we.length;pe++)re[pe]=ie[we[pe]];return re}function A(ie){var we=ie.split("|"),re=we[2].split(" "),pe=we[3].split(""),ke=we[4].split(" ");return h(re),h(pe),h(ke),g(ke,pe.length),{name:we[0],abbrs:z(we[1].split(" "),pe),offsets:z(re,pe),untils:ke,population:we[5]|0}}function _(ie){ie&&this._set(A(ie))}function v(ie,we){var re=we.length;if(ie<we[0])return 0;if(re>1&&we[re-1]===1/0&&ie>=we[re-2])return re-1;if(ie>=we[re-1])return-1;for(var pe,ke=0,Se=re-1;Se-ke>1;)pe=Math.floor((ke+Se)/2),we[pe]<=ie?ke=pe:Se=pe;return Se}_.prototype={_set:function(ie){this.name=ie.name,this.abbrs=ie.abbrs,this.untils=ie.untils,this.offsets=ie.offsets,this.population=ie.population},_index:function(ie){var we=+ie,re=this.untils,pe;if(pe=v(we,re),pe>=0)return pe},countries:function(){var ie=this.name;return Object.keys(s).filter(function(we){return s[we].zones.indexOf(ie)!==-1})},parse:function(ie){var we=+ie,re=this.offsets,pe=this.untils,ke=pe.length-1,Se,se,L,U;for(U=0;U<ke;U++)if(Se=re[U],se=re[U+1],L=re[U&&U-1],Se<se&&me.moveAmbiguousForward?Se=se:Se>L&&me.moveInvalidForward&&(Se=L),we<pe[U]-Se*6e4)return re[U];return re[ke]},abbr:function(ie){return this.abbrs[this._index(ie)]},offset:function(ie){return ce("zone.offset has been deprecated in favor of zone.utcOffset"),this.offsets[this._index(ie)]},utcOffset:function(ie){return this.offsets[this._index(ie)]}};function M(ie,we){this.name=ie,this.zones=we}function y(ie){var we=ie.toTimeString(),re=we.match(/\([a-z ]+\)/i);re&&re[0]?(re=re[0].match(/[A-Z]/g),re=re?re.join(""):void 0):(re=we.match(/[A-Z]{3,5}/g),re=re?re[0]:void 0),re==="GMT"&&(re=void 0),this.at=+ie,this.abbr=re,this.offset=ie.getTimezoneOffset()}function k(ie){this.zone=ie,this.offsetScore=0,this.abbrScore=0}k.prototype.scoreOffsetAt=function(ie){this.offsetScore+=Math.abs(this.zone.utcOffset(ie.at)-ie.offset),this.zone.abbr(ie.at).replace(/[^A-Z]/g,"")!==ie.abbr&&this.abbrScore++};function S(ie,we){for(var re,pe;pe=((we.at-ie.at)/12e4|0)*6e4;)re=new y(new Date(ie.at+pe)),re.offset===ie.offset?ie=re:we=re;return ie}function C(){var ie=new Date().getFullYear()-2,we=new y(new Date(ie,0,1)),re=we.offset,pe=[we],ke,Se,se,L;for(L=1;L<48;L++)se=new Date(ie,L,1).getTimezoneOffset(),se!==re&&(Se=new y(new Date(ie,L,1)),ke=S(we,Se),pe.push(ke),pe.push(new y(new Date(ke.at+6e4))),we=Se,re=se);for(L=0;L<4;L++)pe.push(new y(new Date(ie+L,0,1))),pe.push(new y(new Date(ie+L,6,1)));return pe}function R(ie,we){return ie.offsetScore!==we.offsetScore?ie.offsetScore-we.offsetScore:ie.abbrScore!==we.abbrScore?ie.abbrScore-we.abbrScore:ie.zone.population!==we.zone.population?we.zone.population-ie.zone.population:we.zone.name.localeCompare(ie.zone.name)}function T(ie,we){var re,pe;for(h(we),re=0;re<we.length;re++)pe=we[re],c[pe]=c[pe]||{},c[pe][ie]=!0}function E(ie){var we=ie.length,re={},pe=[],ke={},Se,se,L,U;for(Se=0;Se<we;Se++)if(L=ie[Se].offset,!ke.hasOwnProperty(L)){U=c[L]||{};for(se in U)U.hasOwnProperty(se)&&(re[se]=!0);ke[L]=!0}for(Se in re)re.hasOwnProperty(Se)&&pe.push(i[Se]);return pe}function B(){try{var ie=Intl.DateTimeFormat().resolvedOptions().timeZone;if(ie&&ie.length>3){var we=i[j(ie)];if(we)return we;ce("Moment Timezone found "+ie+" from the Intl api, but did not have that data loaded.")}}catch{}var re=C(),pe=re.length,ke=E(re),Se=[],se,L,U;for(L=0;L<ke.length;L++){for(se=new k(P(ke[L])),U=0;U<pe;U++)se.scoreOffsetAt(re[U]);Se.push(se)}return Se.sort(R),Se.length>0?Se[0].zone.name:void 0}function N(ie){return(!l||ie)&&(l=B()),l}function j(ie){return(ie||"").toLowerCase().replace(/\//g,"_")}function I(ie){var we,re,pe,ke;for(typeof ie=="string"&&(ie=[ie]),we=0;we<ie.length;we++)pe=ie[we].split("|"),re=pe[0],ke=j(re),o[ke]=ie[we],i[ke]=re,T(ke,pe[2].split(" "))}function P(ie,we){ie=j(ie);var re=o[ie],pe;return re instanceof _?re:typeof re=="string"?(re=new _(re),o[ie]=re,re):r[ie]&&we!==P&&(pe=P(r[ie],P))?(re=o[ie]=new _,re._set(pe),re.name=i[ie],re):null}function $(){var ie,we=[];for(ie in i)i.hasOwnProperty(ie)&&(o[ie]||o[r[ie]])&&i[ie]&&we.push(i[ie]);return we.sort()}function F(){return Object.keys(s)}function X(ie){var we,re,pe,ke;for(typeof ie=="string"&&(ie=[ie]),we=0;we<ie.length;we++)re=ie[we].split("|"),pe=j(re[0]),ke=j(re[1]),r[pe]=ke,i[pe]=re[0],r[ke]=pe,i[ke]=re[1]}function Z(ie){var we,re,pe,ke;if(!(!ie||!ie.length))for(we=0;we<ie.length;we++)ke=ie[we].split("|"),re=ke[0].toUpperCase(),pe=ke[1].split(" "),s[re]=new M(re,pe)}function V(ie){return ie=ie.toUpperCase(),s[ie]||null}function ee(ie,we){if(ie=V(ie),!ie)return null;var re=ie.zones.sort();return we?re.map(function(pe){var ke=P(pe);return{name:pe,offset:ke.utcOffset(new Date)}}):re}function te(ie){I(ie.zones),X(ie.links),Z(ie.countries),me.dataVersion=ie.version}function J(ie){return J.didShowError||(J.didShowError=!0,ce("moment.tz.zoneExists('"+ie+"') has been deprecated in favor of !moment.tz.zone('"+ie+"')")),!!P(ie)}function ue(ie){var we=ie._f==="X"||ie._f==="x";return!!(ie._a&&ie._tzm===void 0&&!we)}function ce(ie){typeof console<"u"&&typeof console.error=="function"&&console.error(ie)}function me(ie){var we=Array.prototype.slice.call(arguments,0,-1),re=arguments[arguments.length-1],pe=t.utc.apply(null,we),ke;return!t.isMoment(ie)&&ue(pe)&&(ke=P(re))&&pe.add(ke.parse(pe),"minutes"),pe.tz(re),pe}me.version=n,me.dataVersion="",me._zones=o,me._links=r,me._names=i,me._countries=s,me.add=I,me.link=X,me.load=te,me.zone=P,me.zoneExists=J,me.guess=N,me.names=$,me.Zone=_,me.unpack=A,me.unpackBase60=b,me.needsOffset=ue,me.moveInvalidForward=!0,me.moveAmbiguousForward=!1,me.countries=F,me.zonesForCountry=ee;var de=t.fn;t.tz=me,t.defaultZone=null,t.updateOffset=function(ie,we){var re=t.defaultZone,pe;if(ie._z===void 0&&(re&&ue(ie)&&!ie._isUTC&&ie.isValid()&&(ie._d=t.utc(ie._a)._d,ie.utc().add(re.parse(ie),"minutes")),ie._z=re),ie._z)if(pe=ie._z.utcOffset(ie),Math.abs(pe)<16&&(pe=pe/60),ie.utcOffset!==void 0){var ke=ie._z;ie.utcOffset(-pe,we),ie._z=ke}else ie.zone(pe,we)},de.tz=function(ie,we){if(ie){if(typeof ie!="string")throw new Error("Time zone name must be a string, got "+ie+" ["+typeof ie+"]");return this._z=P(ie),this._z?t.updateOffset(this,we):ce("Moment Timezone has no data for "+ie+". See http://momentjs.com/timezone/docs/#/data-loading/."),this}if(this._z)return this._z.name};function Ae(ie){return function(){return this._z?this._z.abbr(this):ie.call(this)}}function ye(ie){return function(){return this._z=null,ie.apply(this,arguments)}}function Ne(ie){return function(){return arguments.length>0&&(this._z=null),ie.apply(this,arguments)}}de.zoneName=Ae(de.zoneName),de.zoneAbbr=Ae(de.zoneAbbr),de.utc=ye(de.utc),de.local=ye(de.local),de.utcOffset=Ne(de.utcOffset),t.tz.setDefault=function(ie){return(d<2||d===2&&p<9)&&ce("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+t.version+"."),t.defaultZone=ie?P(ie):null,t};var je=t.momentProperties;return Object.prototype.toString.call(je)==="[object Array]"?(je.push("_z"),je.push("_a")):je&&(je._z=null),t})}(u4)),u4.exports}$be();var d4={exports:{}},JC={exports:{}};const xpt="2025a",wpt=JSON.parse('["Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5","Africa/Nairobi|LMT +0230 EAT +0245|-2r.g -2u -30 -2J|012132|-2ua2r.g N6nV.g 3Fbu h1cu dzbJ|47e5","Africa/Algiers|LMT PMT WET WEST CET CEST|-c.c -9.l 0 -10 -10 -20|01232323232323232454542423234542324|-3bQ0c.c MDA2.P cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5","Africa/Lagos|LMT GMT +0030 WAT|-d.z 0 -u -10|01023|-2B40d.z 7iod.z dnXK.p dLzH.z|17e6","Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldX0 2xoo0|39e4","Africa/Maputo|LMT CAT|-2a.i -20|01|-2sw2a.i|26e5","Africa/Cairo|LMT EET EEST|-25.9 -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBC5.9 1AQM5.9 vb0 1ip0 11z0 1iN0 1nz0 12p0 1pz0 10N0 1pz0 16p0 1jz0 s3d0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1WL0 rd0 1Rz0 wp0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1qL0 Xd0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1ny0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 WL0 1qN0 Rb0 1wp0 On0 1zd0 Lz0 1EN0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0 kSp0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0|15e6","Africa/Casablanca|LMT +00 +01|u.k 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2gMnt.E 130Lt.E rb0 Dd0 dVb0 b6p0 TX0 EoB0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4mn0 SyN0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0|32e5","Africa/Ceuta|LMT WET WEST CET CEST|l.g 0 -10 -10 -20|0121212121212121212121343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-2M0M0 GdX0 11z0 drd0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1y7o0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4VB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|85e3","Africa/El_Aaiun|LMT -01 +00 +01|Q.M 10 0 -10|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1rDz7.c 1GVA7.c 6L0 AL0 1Nd0 XX0 1Cp0 pz0 1cBB0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0|20e4","Africa/Johannesburg|LMT SAST SAST SAST|-1Q -1u -20 -30|0123232|-39EpQ qTcm 1Ajdu 1cL0 1cN0 1cL0|84e5","Africa/Juba|LMT CAT CAST EAT|-26.s -20 -30 -30|012121212121212121212121212121212131|-1yW26.s 1zK06.s 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 PeX0|","Africa/Khartoum|LMT CAT CAST EAT|-2a.8 -20 -30 -30|012121212121212121212121212121212131|-1yW2a.8 1zK0a.8 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 HjL0|51e5","Africa/Monrovia|LMT MMT MMT GMT|H.8 H.8 I.u 0|0123|-3ygng.Q 1usM0 28G01.m|11e5","Africa/Ndjamena|LMT WAT WAST|-10.c -10 -20|0121|-2le10.c 2J3c0.c Wn0|13e5","Africa/Sao_Tome|LMT LMT GMT WAT|-q.U A.J 0 -10|01232|-3tooq.U 18aoq.U 4i6N0 2q00|","Africa/Tripoli|LMT CET CEST EET|-Q.I -10 -20 -20|012121213121212121212121213123123|-21JcQ.I 1hnBQ.I vx0 4iP0 xx0 4eN0 Bb0 7ip0 U0n0 A10 1db0 1cN0 1db0 1dd0 1db0 1eN0 1bb0 1e10 1cL0 1c10 1db0 1dd0 1db0 1cN0 1db0 1q10 fAn0 1ep0 1db0 AKq0 TA0 1o00|11e5","Africa/Tunis|LMT PMT CET CEST|-E.I -9.l -10 -20|01232323232323232323232323232323232|-3zO0E.I 1cBAv.n 18pa9.l 1qM0 DA0 3Tc0 11B0 1ze0 WM0 7z0 3d0 14L0 1cN0 1f90 1ar0 16J0 1gXB0 WM0 1rA0 11c0 nwo0 Ko0 1cM0 1cM0 1rA0 10M0 zuM0 10N0 1aN0 1qM0 WM0 1qM0 11A0 1o00|20e5","Africa/Windhoek|LMT +0130 SAST SAST CAT WAT|-18.o -1u -20 -30 -20 -10|012324545454545454545454545454545454545454545454545454|-39Ep8.o qTbC.o 1Ajdu 1cL0 1SqL0 9Io0 16P0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|32e4","America/Adak|LMT LMT NST NWT NPT BST BDT AHST HST HDT|-cd.m bK.C b0 a0 a0 b0 a0 a0 a0 90|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVzf.p 1EX1d.m 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326","America/Anchorage|LMT LMT AST AWT APT AHST AHDT YST AKST AKDT|-e0.o 9X.A a0 90 90 a0 90 90 90 80|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVxs.n 1EX20.o 8wX0 iA0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4","America/Puerto_Rico|LMT AST AWT APT|4o.p 40 30 30|01231|-2Qi7z.z 1IUbz.z 7XT0 iu0|24e5","America/Araguaina|LMT -03 -02|3c.M 30 20|0121212121212121212121212121212121212121212121212121|-2glwL.c HdKL.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 ny10 Lz0|14e4","America/Argentina/Buenos_Aires|LMT CMT -04 -03 -02|3R.M 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343434343|-331U6.c 125cn pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Catamarca|LMT CMT -04 -03 -02|4n.8 4g.M 40 30 20|012323232323232323232323232323232323232323234343434243432343|-331TA.Q 125bR.E pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Cordoba|LMT CMT -04 -03 -02|4g.M 4g.M 40 30 20|012323232323232323232323232323232323232323234343434243434343|-331TH.c 125c0 pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Jujuy|LMT CMT -04 -03 -02|4l.c 4g.M 40 30 20|0123232323232323232323232323232323232323232343434232434343|-331TC.M 125bT.A pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1ze0 TX0 1ld0 WK0 1wp0 TX0 A4p0 uL0|","America/Argentina/La_Rioja|LMT CMT -04 -03 -02|4r.o 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342343432343|-331Tw.A 125bN.o pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Mendoza|LMT CMT -04 -03 -02|4z.g 4g.M 40 30 20|012323232323232323232323232323232323232323234343423232432343|-331To.I 125bF.w pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1u20 SL0 1vd0 Tb0 1wp0 TW0 ri10 Op0 7TX0 uL0|","America/Argentina/Rio_Gallegos|LMT CMT -04 -03 -02|4A.Q 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343432343|-331Tn.8 125bD.U pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Salta|LMT CMT -04 -03 -02|4l.E 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342434343|-331TC.k 125bT.8 pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0|","America/Argentina/San_Juan|LMT CMT -04 -03 -02|4y.4 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342343432343|-331Tp.U 125bG.I pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rld0 m10 8lb0 uL0|","America/Argentina/San_Luis|LMT CMT -04 -03 -02|4p.o 4g.M 40 30 20|0123232323232323232323232323232323232323232343434232323432323|-331Ty.A 125bP.o pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 XX0 1q20 SL0 AN0 vDb0 m10 8lb0 8L0 jd0 1qN0 WL0 1qN0|","America/Argentina/Tucuman|LMT CMT -04 -03 -02|4k.Q 4g.M 40 30 20|01232323232323232323232323232323232323232323434343424343234343|-331TD.8 125bT.U pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 4N0 8BX0 uL0 1qN0 WL0|","America/Argentina/Ushuaia|LMT CMT -04 -03 -02|4x.c 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343432343|-331Tq.M 125bH.A pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rkN0 8p0 8zb0 uL0|","America/Asuncion|LMT AMT -04 -03|3O.E 3O.E 40 30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-3eLw9.k 1FGo0 1DKM9.k 3CL0 3Dd0 10L0 1pB0 10n0 1pB0 10n0 1pB0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1lB0 14n0 1dd0 1cL0 1fd0 WL0 1rd0 1aL0 1dB0 Xz0 1qp0 Xb0 1qN0 10L0 1rB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 WN0 1qL0 11B0 1nX0 1ip0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 TX0 1tB0 19X0 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0|28e5","America/Panama|LMT CMT EST|5i.8 5j.A 50|012|-3eLuF.Q Iy01.s|15e5","America/Bahia_Banderas|LMT MST CST MDT CDT|71 70 60 60 50|01213121313131313131313131313131313142424242424242424242424242|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 otX0 2bmP0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|84e3","America/Bahia|LMT -03 -02|2y.4 30 20|01212121212121212121212121212121212121212121212121212121212121|-2glxp.U HdLp.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 l5B0 Rb0|27e5","America/Barbados|LMT AST ADT -0330|3W.t 40 30 3u|0121213121212121|-2m4k1.v 1eAN1.v RB0 1Bz0 Op0 1rb0 11d0 1jJc0 IL0 1ip0 17b0 1ip0 17b0 1ld0 13b0|28e4","America/Belem|LMT -03 -02|3d.U 30 20|012121212121212121212121212121|-2glwK.4 HdKK.4 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|20e5","America/Belize|LMT CST -0530 CWT CPT CDT|5Q.M 60 5u 50 50 50|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121215151|-2kBu7.c fPA7.c Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu Rcu 7Bt0 Ni0 4nd0 Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu e9Au qn0 lxB0 mn0|57e3","America/Boa_Vista|LMT -04 -03|42.E 40 30|0121212121212121212121212121212121|-2glvV.k HdKV.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 smp0 WL0 1tB0 2L0|62e2","America/Bogota|LMT BMT -05 -04|4U.g 4U.g 50 40|01232|-3sTv3.I 1eIo0 38yo3.I 1PX0|90e5","America/Boise|LMT PST PDT MST MWT MPT MDT|7I.N 80 70 70 60 60 60|01212134536363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363|-3tFE0 1nEe0 1nX0 11B0 1nX0 8C10 JCL0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 Dd0 1Kn0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e4","America/Cambridge_Bay|-00 MST MWT MPT MDT CST CDT EST|0 70 60 60 60 60 50 50|012314141414141414141414141414141414141414141414141414141414567541414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-21Jc0 RO90 8x20 ix0 14HB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11A0 1nX0 2K0 WQ0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e2","America/Campo_Grande|LMT -04 -03|3C.s 40 30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwl.w HdLl.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|77e4","America/Cancun|LMT CST EST CDT EDT|5L.4 60 50 50 40|01213132431313131313131313131313131313131312|-1UQG0 2q3C0 2tx0 wgP0 1lb0 14p0 1lb0 14o0 Lz0 xB0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4","America/Caracas|LMT CMT -0430 -04|4r.I 4r.E 4u 40|012323|-3eLvw.g ROnX.U 28KM2.k 1IwOu kqo0|29e5","America/Cayenne|LMT -04 -03|3t.k 40 30|012|-2mrwu.E 2gWou.E|58e3","America/Chicago|LMT CST CDT EST CWT CPT|5O.A 60 50 50 50 50|012121212121212121212121212121212121213121212121214512121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 1wp0 TX0 WN0 1qL0 1cN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 11B0 1Hz0 14p0 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5","America/Chihuahua|LMT MST CST MDT CDT|74.k 70 60 60 50|0121312424231313131313131313131313131313131313131313131313132|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|81e4","America/Ciudad_Juarez|LMT MST CST MDT CDT|75.U 70 60 60 50|01213124242313131313131313131313131313131313131313131313131321313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1wn0 cm0 EP0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Costa_Rica|LMT SJMT CST CDT|5A.d 5A.d 60 50|01232323232|-3eLun.L 1fyo0 2lu0n.L Db0 1Kp0 Db0 pRB0 15b0 1kp0 mL0|12e5","America/Phoenix|LMT MST MDT MWT|7s.i 70 60 60|012121313121|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 4Al1 Ap0 1db0 SWqX 1cL0|42e5","America/Cuiaba|LMT -04 -03|3I.k 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwf.E HdLf.E 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 4a10 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|54e4","America/Danmarkshavn|LMT -03 -02 GMT|1e.E 30 20 0|01212121212121212121212121212121213|-2a5WJ.k 2z5fJ.k 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 DC0|8","America/Dawson_Creek|LMT PST PDT PWT PPT MST|80.U 80 70 70 70 70|01213412121212121212121212121212121212121212121212121212125|-3tofX.4 1nspX.4 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 ML0|12e3","America/Dawson|LMT YST YDT YWT YPT YDDT PST PDT MST|9h.E 90 80 80 80 70 80 70 70|0121213415167676767676767676767676767676767676767676767676767676767676767676767676767676767678|-2MSeG.k GWpG.k 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 jrA0 fNd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|13e2","America/Denver|LMT MST MDT MWT MPT|6X.U 70 60 60 60|012121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFF0 1nEe0 1nX0 11B0 1nX0 11B0 1qL0 WN0 mn0 Ord0 8x20 ix0 LCN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5","America/Detroit|LMT CST EST EWT EPT EDT|5w.b 60 50 40 40 40|0123425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2Cgir.N peqr.N 156L0 8x40 iv0 6fd0 11z0 JxX1 SMX 1cN0 1cL0 aW10 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e5","America/Edmonton|LMT MST MDT MWT MPT|7x.Q 70 60 60 60|0121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2yd4q.8 shdq.8 1in0 17d0 hz0 2dB0 1fz0 1a10 11z0 1qN0 WL0 1qN0 11z0 IGN0 8x20 ix0 3NB0 11z0 XQp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|10e5","America/Eirunepe|LMT -05 -04|4D.s 50 40|0121212121212121212121212121212121|-2glvk.w HdLk.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0 yTd0 d5X0|31e3","America/El_Salvador|LMT CST CDT|5U.M 60 50|012121|-1XiG3.c 2Fvc3.c WL0 1qN0 WL0|11e5","America/Tijuana|LMT MST PST PDT PWT PPT|7M.4 70 80 70 70 70|012123245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQF0 4Q00 8mp0 8lz0 SN0 1cL0 pHB0 83r0 AU0 5MN0 1Rz0 38N0 Wn0 1qP0 11z0 1o10 11z0 3NA0 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 BUp0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|20e5","America/Fort_Nelson|LMT PST PDT PWT PPT MST|8a.L 80 70 70 70 70|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121215|-3tofN.d 1nspN.d 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2","America/Fort_Wayne|LMT CST CDT CWT CPT EST EDT|5I.C 60 50 50 50 50 40|0121212134121212121212121212151565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 QI10 Db0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 5Tz0 1o10 qLb0 1cL0 1cN0 1cL0 1qhd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Fortaleza|LMT -03 -02|2y 30 20|0121212121212121212121212121212121212121|-2glxq HdLq 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 5z0 2mN0 On0|34e5","America/Glace_Bay|LMT AST ADT AWT APT|3X.M 40 30 30 30|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsI0.c CwO0.c 1in0 UGp0 8x50 iu0 iq10 11z0 Jg10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3","America/Godthab|LMT -03 -02 -01|3q.U 30 20 10|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2a5Ux.4 2z5dx.4 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 2so0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e3","America/Goose_Bay|LMT NST NDT NST NDT NWT NPT AST ADT ADDT|41.E 3u.Q 2u.Q 3u 2u 2u 2u 40 30 20|0121343434343434356343434343434343434343434343434343434343437878787878787878787878787878787878787878787879787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787|-3tojW.k 1nspt.c 1in0 DXb0 2HbX.8 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 S10 g0u 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2","America/Grand_Turk|LMT KMT EST EDT AST|4I.w 57.a 50 40 40|01232323232323232323232323232323232323232323232323232323232323232323232323243232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLvf.s RK0m.C 2HHBQ.O 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 7jA0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2","America/Guatemala|LMT CST CDT|62.4 60 50|0121212121|-24KhV.U 2efXV.U An0 mtd0 Nz0 ifB0 17b0 zDB0 11z0|13e5","America/Guayaquil|LMT QMT -05 -04|5j.k 5e 50 40|01232|-3eLuE.E 1DNzS.E 2uILK rz0|27e5","America/Guyana|LMT -04 -0345 -03|3Q.D 40 3J 30|01231|-2mf87.l 8Hc7.l 2r7bJ Ey0f|80e4","America/Halifax|LMT AST ADT AWT APT|4e.o 40 30 30 30|0121212121212121212121212121212121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsHJ.A xzzJ.A 1db0 3I30 1in0 3HX0 IL0 1E10 ML0 1yN0 Pb0 1Bd0 Mn0 1Bd0 Rz0 1w10 Xb0 1w10 LX0 1w10 Xb0 1w10 Lz0 1C10 Jz0 1E10 OL0 1yN0 Un0 1qp0 Xb0 1qp0 11X0 1w10 Lz0 1HB0 LX0 1C10 FX0 1w10 Xb0 1qp0 Xb0 1BB0 LX0 1td0 Xb0 1qp0 Xb0 Rf0 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 6i10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4","America/Havana|LMT HMT CST CDT|5t.s 5t.A 50 40|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLuu.w 1qx00.8 72zu.o ML0 sld0 An0 1Nd0 Db0 1Nd0 An0 6Ep0 An0 1Nd0 An0 JDd0 Mn0 1Ap0 On0 1fd0 11X0 1qN0 WL0 1wp0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 14n0 1ld0 14L0 1kN0 15b0 1kp0 1cL0 1cN0 1fz0 1a10 1fz0 1fB0 11z0 14p0 1nX0 11B0 1nX0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 1a10 1in0 1a10 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 17c0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 11A0 6i00 Rc0 1wo0 U00 1tA0 Rc0 1wo0 U00 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5","America/Hermosillo|LMT MST CST MDT|7n.Q 70 60 60|01213121313131|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 otX0 2bmP0 1lb0 14p0 1lb0 14p0 1lb0|64e4","America/Indiana/Knox|LMT CST CDT CWT CPT EST|5K.u 60 50 50 50 50|01212134121212121212121212121212121212151212121212121212121212121212121212121212121212121252121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 3Cn0 8wp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 z8o0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Marengo|LMT CST CDT CWT CPT EST EDT|5J.n 60 50 50 50 50 40|01212134121212121212121215656565656525656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 dyN0 11z0 6fd0 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1e6p0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Petersburg|LMT CST CDT CWT CPT EST EDT|5N.7 60 50 50 50 50 40|012121341212121212121212121215121212121212121212121252125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 3Fb0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 19co0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Tell_City|LMT CST CDT CWT CPT EST EDT|5L.3 60 50 50 50 50 40|012121341212121212121212121512165652121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 8wn0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vevay|LMT CST CDT CWT CPT EST EDT|5E.g 60 50 50 50 50 40|0121213415656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 kPB0 Awn0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1lnd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vincennes|LMT CST CDT CWT CPT EST EDT|5O.7 60 50 50 50 50 40|012121341212121212121212121212121565652125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Winamac|LMT CST CDT CWT CPT EST EDT|5K.p 60 50 50 50 50 40|012121341212121212121212121212121212121565652165656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1za0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Inuvik|-00 PST PDT MDT MST|0 80 70 60 70|01212121212121213434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-FnA0 L3K0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|35e2","America/Iqaluit|-00 EWT EPT EST EDT CST CDT|0 40 40 50 40 60 50|0123434343434343434343434343434343434343434343434343434343456343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-16K00 7nX0 iv0 14HB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|67e2","America/Jamaica|LMT KMT EST EDT|57.a 57.a 50 40|01232323232323232323232|-3eLuQ.O RK00 2uM1Q.O 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0|94e4","America/Juneau|LMT LMT PST PWT PPT PDT YDT YST AKST AKDT|-f2.j 8V.F 80 70 70 70 80 90 90 80|0123425252525252525252525252625252578989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVwq.s 1EX12.j 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cM0 1cM0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|33e3","America/Kentucky/Louisville|LMT CST CDT CWT CPT EST EDT|5H.2 60 50 50 50 50 40|01212121213412121212121212121212121212565656565656525656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 3Fd0 Nb0 LPd0 11z0 RB0 8x30 iw0 1nX1 e0X 9vd0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 xz0 gso0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Kentucky/Monticello|LMT CST CDT CWT CPT EST EDT|5D.o 60 50 50 50 50 40|01212134121212121212121212121212121212121212121212121212121212121212121212565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 SWp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/La_Paz|LMT CMT BST -04|4w.A 4w.A 3w.A 40|0123|-3eLvr.o 1FIo0 13b0|19e5","America/Lima|LMT LMT -05 -04|58.c 58.A 50 40|01232323232323232|-3eLuP.M JcM0.o 1bDzP.o zX0 1aN0 1cL0 1cN0 1cL0 1PrB0 zX0 1O10 zX0 6Gp0 zX0 98p0 zX0|11e6","America/Los_Angeles|LMT PST PDT PWT PPT|7Q.W 80 70 70 70|0121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFE0 1nEe0 1nX0 11B0 1nX0 SgN0 8x10 iy0 5Wp1 1VaX 3dA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6","America/Maceio|LMT -03 -02|2m.Q 30 20|012121212121212121212121212121212121212121|-2glxB.8 HdLB.8 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 8Q10 WL0 1tB0 5z0 2mN0 On0|93e4","America/Managua|LMT MMT CST EST CDT|5J.8 5J.c 60 50 50|01232424232324242|-3eLue.Q 1Mhc0.4 1yAMe.M 4mn0 9Up0 Dz0 1K10 Dz0 s3F0 1KH0 DB0 9In0 k8p0 19X0 1o30 11y0|22e5","America/Manaus|LMT -04 -03|40.4 40 30|01212121212121212121212121212121|-2glvX.U HdKX.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0|19e5","America/Martinique|LMT FFMT AST ADT|44.k 44.k 40 30|01232|-3eLvT.E PTA0 2LPbT.E 19X0|39e4","America/Matamoros|LMT CST CDT|6u 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|45e4","America/Mazatlan|LMT MST CST MDT|75.E 70 60 60|01213121313131313131313131313131313131313131313131313131313131|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 otX0 2bmP0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|44e4","America/Menominee|LMT CST CDT CWT CPT EST|5O.r 60 50 50 50 50|012121341212152121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3pdG9.x 1jce9.x 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 LCN0 1fz0 6410 9Jb0 1cM0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|85e2","America/Merida|LMT CST EST CDT|5W.s 60 50 50|0121313131313131313131313131313131313131313131313131313131|-1UQG0 2q3C0 24n0 wG10 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|11e5","America/Metlakatla|LMT LMT PST PWT PPT PDT AKST AKDT|-fd.G 8K.i 80 70 70 70 90 80|0123425252525252525252525252525252526767672676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-48Pzs.L 1jVwf.5 1EX1d.G 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1hU10 Rd0 1zb0 Op0 1zb0 Op0 1zb0 uM0 jB0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2","America/Mexico_City|LMT MST CST MDT CDT CWT|6A.A 70 60 60 50 50|012131242425242424242424242424242424242424242424242424242424242424242|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 gEn0 TX0 3xd0 Jb0 6zB0 SL0 e5d0 17b0 1Pff0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|20e6","America/Miquelon|LMT AST -03 -02|3I.E 40 30 20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2mxUf.k 2LHcf.k gQ10 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2","America/Moncton|LMT EST AST ADT AWT APT|4j.8 50 40 30 30 30|0123232323232323232323245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3txvE.Q J4ME.Q CwN0 1in0 zAo0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1K10 Lz0 1zB0 NX0 1u10 Wn0 S20 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14n1 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 ReX 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|64e3","America/Monterrey|LMT MST CST MDT CDT|6F.g 70 60 60 50|012131242424242424242424242424242424242424242424242424242424242|-1UQG0 dep0 8lz0 16p0 11z0 1dd0 2gmp0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|41e5","America/Montevideo|LMT MMT -04 -03 -0330 -0230 -02 -0130|3I.P 3I.P 40 30 3u 2u 20 1u|012343434343434343434343435353636353636375363636363636363636363636363636363636363636363|-2tRUf.9 sVc0 8jcf.9 1db0 1dcu 1cLu 1dcu 1cLu ircu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu WLu 1fAu 1cLu 1o0u 11zu NAu 3jXu zXu Dq0u 19Xu pcu jz0 cm10 19X0 6tB0 1fbu 3o0u jX0 4vB0 xz0 3Cp0 mmu 1a10 IMu Db0 4c10 uL0 1Nd0 An0 1SN0 uL0 mp0 28L0 iPB0 un0 1SN0 xz0 1zd0 Lz0 1zd0 Rb0 1zd0 On0 1wp0 Rb0 s8p0 1fB0 1ip0 11z0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5","America/Toronto|LMT EST EDT EWT EPT|5h.w 50 40 40 40|012121212121212121212121212121212121212121212123412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-32B6G.s UFdG.s 1in0 11Wu 1nzu 1fD0 WJ0 1wr0 Nb0 1Ap0 On0 1zd0 On0 1wp0 TX0 1tB0 TX0 1tB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 4kM0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1qL0 11B0 1nX0 11B0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e5","America/New_York|LMT EST EDT EWT EPT|4U.2 50 40 40 40|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFH0 1nEe0 1nX0 11B0 1nX0 11B0 1qL0 1a10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6","America/Nome|LMT LMT NST NWT NPT BST BDT YST AKST AKDT|-cW.m b1.C b0 a0 a0 b0 a0 90 90 80|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVyu.p 1EX1W.m 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cl0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|38e2","America/Noronha|LMT -02 -01|29.E 20 10|0121212121212121212121212121212121212121|-2glxO.k HdKO.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|30e2","America/North_Dakota/Beulah|LMT MST MDT MWT MPT CST CDT|6L.7 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/Center|LMT MST MDT MWT MPT CST CDT|6J.c 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/New_Salem|LMT MST MDT MWT MPT CST CDT|6J.D 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212121212121212121212121212565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Ojinaga|LMT MST CST MDT CDT|6V.E 70 60 60 50|0121312424231313131313131313131313131313131313131313131313132424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1wn0 Rc0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3","America/Paramaribo|LMT PMT PMT -0330 -03|3E.E 3E.Q 3E.A 3u 30|01234|-2nDUj.k Wqo0.c qanX.I 1yVXN.o|24e4","America/Port-au-Prince|LMT PPMT EST EDT|4N.k 4N 50 40|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLva.E 15RLX.E 2FnMb 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14q0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 i6n0 1nX0 11B0 1nX0 d430 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Rio_Branco|LMT -05 -04|4v.c 50 40|01212121212121212121212121212121|-2glvs.M HdLs.M 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0 d5X0|31e4","America/Porto_Velho|LMT -04 -03|4f.A 40 30|012121212121212121212121212121|-2glvI.o HdKI.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|37e4","America/Punta_Arenas|LMT SMT -05 -04 -03|4H.E 4G.J 50 40 30|01213132323232323232343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLvg.k MJbX.5 fJAh.f 5knG.J 1Vzh.f jRAG.J 1pbh.f 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 blz0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|","America/Winnipeg|LMT CST CDT CWT CPT|6s.A 60 50 50 50|0121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3kLtv.o 1a3bv.o WL0 3ND0 1in0 Jap0 Rb0 aCN0 8x30 iw0 1tB0 11z0 1ip0 11z0 1o10 11z0 1o10 11z0 1rd0 10L0 1op0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 1cL0 1cN0 11z0 6i10 WL0 6i10 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|66e4","America/Rankin_Inlet|-00 CST CDT EST|0 60 50 50|01212121212121212121212121212121212121212121212121212121212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-vDc0 Bjk0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e2","America/Recife|LMT -03 -02|2j.A 30 20|0121212121212121212121212121212121212121|-2glxE.o HdLE.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|33e5","America/Regina|LMT MST MDT MWT MPT CST|6W.A 70 60 60 60 60|012121212121212121212121341212121212121212121212121215|-2AD51.o uHe1.o 1in0 s2L0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 66N0 1cL0 1cN0 19X0 1fB0 1cL0 1fB0 1cL0 1cN0 1cL0 M30 8x20 ix0 1ip0 1cL0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 3NB0 1cL0 1cN0|19e4","America/Resolute|-00 CST CDT EST|0 60 50 50|01212121212121212121212121212121212121212121212121212121212321212121212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-SnA0 103I0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|229","America/Santarem|LMT -04 -03|3C.M 40 30|0121212121212121212121212121212|-2glwl.c HdLl.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0|21e4","America/Santiago|LMT SMT -05 -04 -03|4G.J 4G.J 50 40 30|0121313232323232323432343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLvh.f MJc0 fJAh.f 5knG.J 1Vzh.f jRAG.J 1pbh.f 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 9Bz0 hX0 1q10 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0|62e5","America/Santo_Domingo|LMT SDMT EST EDT -0430 AST|4D.A 4E 50 40 4u 40|012324242424242525|-3eLvk.o 1Jic0.o 1lJMk Mn0 6sp0 Lbu 1Cou yLu 1RAu wLu 1QMu xzu 1Q0u xXu 1PAu 13jB0 e00|29e5","America/Sao_Paulo|LMT -03 -02|36.s 30 20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwR.w HdKR.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 pTd0 PX0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|20e6","America/Scoresbysund|LMT -02 -01 +00|1r.Q 20 10 0|012132323232323232323232323232323232323232323232323232323232323232323232323232323232323232121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5Ww.8 2z5ew.8 1a00 1cK0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 2pA0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|452","America/Sitka|LMT LMT PST PWT PPT PDT YST AKST AKDT|-eW.L 91.d 80 70 70 70 90 90 80|0123425252525252525252525252525252567878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787|-48Pzs.L 1jVwu 1EX0W.L 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|90e2","America/St_Johns|LMT NST NDT NST NDT NWT NPT NDDT|3u.Q 3u.Q 2u.Q 3u 2u 2u 2u 1u|012121212121212121212121212121212121213434343434343435634343434343434343434343434343434343434343434343434343434343434343434343434343434343437343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3tokt.8 1l020 14L0 1nB0 1in0 1gm0 Dz0 1JB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1fB0 19X0 1fB0 19X0 10O0 eKX.8 19X0 1iq0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4","America/Swift_Current|LMT MST MDT MWT MPT CST|7b.k 70 60 60 60 60|012134121212121212121215|-2AD4M.E uHdM.E 1in0 UGp0 8x20 ix0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 isN0 1cL0 3Cp0 1cL0 1cN0 11z0 1qN0 WL0 pMp0|16e3","America/Tegucigalpa|LMT CST CDT|5M.Q 60 50|01212121|-1WGGb.8 2ETcb.8 WL0 1qN0 WL0 GRd0 AL0|11e5","America/Thule|LMT AST ADT|4z.8 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5To.Q 31NBo.Q 1cL0 1cN0 1cL0 1fB0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|656","America/Vancouver|LMT PST PDT PWT PPT|8c.s 80 70 70 70|01213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tofL.w 1nspL.w 1in0 UGp0 8x10 iy0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Whitehorse|LMT YST YDT YWT YPT YDDT PST PDT MST|90.c 90 80 80 80 70 80 70 70|0121213415167676767676767676767676767676767676767676767676767676767676767676767676767676767678|-2MSeX.M GWpX.M 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 LA0 ytd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|23e3","America/Yakutat|LMT LMT YST YWT YPT YDT AKST AKDT|-eF.5 9i.T 90 80 80 80 90 80|0123425252525252525252525252525252526767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-48Pzs.L 1jVwL.G 1EX1F.5 8x00 iz0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cn0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|642","Antarctica/Casey|-00 +08 +11|0 -80 -b0|012121212121212121|-2q00 1DjS0 T90 40P0 KL0 blz0 3m10 1o30 14k0 1kr0 12l0 1o01 14kX 1lf1 14kX 1lf1 13bX|10","Antarctica/Davis|-00 +07 +05|0 -70 -50|01012121|-vyo0 iXt0 alj0 1D7v0 VB0 3Wn0 KN0|70","Pacific/Port_Moresby|LMT PMMT +10|-9M.E -9M.w -a0|012|-3D8VM.E AvA0.8|25e4","Antarctica/Macquarie|-00 AEST AEDT|0 -a0 -b0|0121012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2OPc0 Fb40 1a00 4SK0 1ayy0 Lvs0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 3Co0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|1","Antarctica/Mawson|-00 +06 +05|0 -60 -50|012|-CEo0 2fyk0|60","Pacific/Auckland|LMT NZMT NZST NZST NZDT|-bD.4 -bu -cu -c0 -d0|012131313131313131313131313134343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-46jLD.4 2nEO9.4 Lz0 1tB0 11zu 1o0u 11zu 1o0u 11zu 1o0u 14nu 1lcu 14nu 1lcu 1lbu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1qLu WMu 1qLu 11Au 1n1bu IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00|14e5","Antarctica/Palmer|-00 -03 -04 -02|0 30 40 20|0121212121213121212121212121212121212121212121212121212121212121212121212121212121|-cao0 nD0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 jsN0 14N0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40","Antarctica/Rothera|-00 -03|0 30|01|gOo0|130","Asia/Riyadh|LMT +03|-36.Q -30|01|-TvD6.Q|57e5","Antarctica/Troll|-00 +00 +02|0 0 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|1puo0 hd0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|40","Antarctica/Vostok|-00 +07 +05|0 -70 -50|01012|-tjA0 1rWh0 1Nj0 1aTv0|25","Europe/Berlin|LMT CET CEST CEMT|-R.s -10 -20 -30|012121212121212321212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-36RcR.s UbWR.s 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 kL0 Nc0 m10 WM0 1ao0 1cp0 dX0 jz0 Dd0 1io0 17c0 1fA0 1a00 1ehA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|41e5","Asia/Almaty|LMT +05 +06 +07|-57.M -50 -60 -70|0123232323232323232323212323232323232323232323232321|-1Pc57.M eUo7.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 L4m0|15e5","Asia/Amman|LMT EET EEST +03|-2n.I -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212123|-1yW2n.I 1HiMn.I KL0 1oN0 11b0 1oN0 11b0 1pd0 1dz0 1cp0 11b0 1op0 11b0 fO10 1db0 1e10 1cL0 1cN0 1cL0 1cN0 1fz0 1pd0 10n0 1ld0 14n0 1hB0 15b0 1ip0 19X0 1cN0 1cL0 1cN0 17b0 1ld0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1So0 y00 1fc0 1dc0 1co0 1dc0 1cM0 1cM0 1cM0 1o00 11A0 1lc0 17c0 1cM0 1cM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 LA0 1C00|25e5","Asia/Anadyr|LMT +12 +13 +14 +11|-bN.U -c0 -d0 -e0 -b0|01232121212121212121214121212121212121212121212121212121212141|-1PcbN.U eUnN.U 23CL0 1db0 2q10 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|13e3","Asia/Aqtau|LMT +04 +05 +06|-3l.4 -40 -50 -60|012323232323232323232123232312121212121212121212|-1Pc3l.4 eUnl.4 24PX0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|15e4","Asia/Aqtobe|LMT +04 +05 +06|-3M.E -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc3M.E eUnM.E 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|27e4","Asia/Ashgabat|LMT +04 +05 +06|-3R.w -40 -50 -60|0123232323232323232323212|-1Pc3R.w eUnR.w 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0|41e4","Asia/Atyrau|LMT +03 +05 +06 +04|-3r.I -30 -50 -60 -40|01232323232323232323242323232323232324242424242|-1Pc3r.I eUor.I 24PW0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 2sp0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|","Asia/Baghdad|LMT BMT +03 +04|-2V.E -2V.A -30 -40|0123232323232323232323232323232323232323232323232323232|-3eLCV.E 18ao0.4 2ACnV.A 11b0 1cp0 1dz0 1dd0 1db0 1cN0 1cp0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1de0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0|66e5","Asia/Qatar|LMT +04 +03|-3q.8 -40 -30|012|-21Jfq.8 27BXq.8|96e4","Asia/Baku|LMT +03 +04 +05|-3j.o -30 -40 -50|01232323232323232323232123232323232323232323232323232323232323232|-1Pc3j.o 1jUoj.o WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 9Je0 1o00 11z0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Asia/Bangkok|LMT BMT +07|-6G.4 -6G.4 -70|012|-3D8SG.4 1C000|15e6","Asia/Barnaul|LMT +06 +07 +08|-5z -60 -70 -80|0123232323232323232323212323232321212121212121212121212121212121212|-21S5z pCnz 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 p90 LE0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|","Asia/Beirut|LMT EET EEST|-2m -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3D8Om 1BWom 1on0 1410 1db0 19B0 1in0 1ip0 WL0 1lQp0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 q6N0 En0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1op0 11b0 dA10 17b0 1iN0 17b0 1iN0 17b0 1iN0 17b0 1vB0 SL0 1mp0 13z0 1iN0 17b0 1iN0 17b0 1jd0 12n0 1a10 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|22e5","Asia/Bishkek|LMT +05 +06 +07|-4W.o -50 -60 -70|012323232323232323232321212121212121212121212121212|-1Pc4W.o eUnW.o 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2e00 1tX0 17b0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1cPu 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0|87e4","Asia/Brunei|LMT +0730 +08 +0820 +09|-7l.k -7u -80 -8k -90|0123232323232323242|-1KITl.k gDbP.k 6ynu AnE 1O0k AnE 1NAk AnE 1NAk AnE 1NAk AnE 1O0k AnE 1NAk AnE pAk 8Fz0|42e4","Asia/Kolkata|LMT HMT MMT IST +0630|-5R.s -5R.k -5l.a -5u -6u|01234343|-4Fg5R.s BKo0.8 1rDcw.a 1r2LP.a 1un0 HB0 7zX0|15e6","Asia/Chita|LMT +08 +09 +10|-7x.Q -80 -90 -a0|012323232323232323232321232323232323232323232323232323232323232312|-21Q7x.Q pAnx.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3re0|33e4","Asia/Ulaanbaatar|LMT +07 +08 +09|-77.w -70 -80 -90|012323232323232323232323232323232323232323232323232|-2APH7.w 2Uko7.w cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|12e5","Asia/Shanghai|LMT CST CDT|-85.H -80 -90|012121212121212121212121212121|-2M0U5.H Iuo5.H 18n0 OjB0 Rz0 11d0 1wL0 A10 8HX0 1G10 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 aL0 1tU30 Rb0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0|23e6","Asia/Colombo|LMT MMT +0530 +06 +0630|-5j.o -5j.w -5u -60 -6u|012342432|-3D8Rj.o 13inX.Q 1rFbN.w 1zzu 7Apu 23dz0 11zu n3cu|22e5","Asia/Dhaka|LMT HMT +0630 +0530 +06 +07|-61.E -5R.k -6u -5u -60 -70|01232454|-3eLG1.E 26008.k 1unn.k HB0 m6n0 2kxbu 1i00|16e6","Asia/Damascus|LMT EET EEST +03|-2p.c -20 -30 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212123|-21Jep.c Hep.c 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1xRB0 11X0 1oN0 10L0 1pB0 11b0 1oN0 10L0 1mp0 13X0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 Nb0 1AN0 Nb0 bcp0 19X0 1gp0 19X0 3ld0 1xX0 Vd0 1Bz0 Sp0 1vX0 10p0 1dz0 1cN0 1cL0 1db0 1db0 1g10 1an0 1ap0 1db0 1fd0 1db0 1cN0 1db0 1dd0 1db0 1cp0 1dz0 1c10 1dX0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 19z0 1fB0 1qL0 11B0 1on0 Wp0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0|26e5","Asia/Dili|LMT +08 +09|-8m.k -80 -90|01212|-2le80 1dnX0 1nfA0 Xld0|19e4","Asia/Dubai|LMT +04|-3F.c -40|01|-21JfF.c|39e5","Asia/Dushanbe|LMT +05 +06 +07|-4z.c -50 -60 -70|012323232323232323232321|-1Pc4z.c eUnz.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2hB0|76e4","Asia/Famagusta|LMT EET EEST +03|-2f.M -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212312121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2f.M 2a3cf.M 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0 2Ks0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|","Asia/Gaza|LMT EET EEST IST IDT|-2h.Q -20 -30 -20 -30|0121212121212121212121212121212121234343434343434343434343434343431212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBCh.Q 1Azeh.Q MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 11z0 1o10 14o0 1lA1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qo0 XA0 1qp0 1cN0 1cL0 1a10 1fz0 17d0 1in0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1lb0 14p0 1in0 17d0 1cL0 1cN0 19X0 1fB0 14n0 jB0 2L0 11B0 WL0 gN0 8n0 11B0 TX0 gN0 bb0 11B0 On0 jB0 dX0 11B0 Lz0 gN0 mn0 WN0 IL0 gN0 pb0 WN0 Db0 jB0 rX0 11B0 xz0 gN0 xz0 11B0 rX0 jB0 An0 11B0 pb0 gN0 IL0 WN0 mn0 gN0 Lz0 WN0 gL0 jB0 On0 11B0 bb0 gN0 TX0 11B0 5z0 jB0 WL0 11B0 2L0 jB0 11z0 1ip0 19X0 1cN0 1cL0 17d0 1in0 14p0 1lb0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1nX0 14p0 1in0 17d0 1fz0 1a10 19X0 1fB0 17b0 gN0 2L0 WN0 14n0 gN0 5z0 WN0 WL0 jB0 8n0 11B0 Rb0 gN0 dX0 11B0 Lz0 jB0 gL0 11B0 IL0 jB0 mn0 WN0 FX0 gN0 rX0 WN0 An0 jB0 uL0 11B0 uL0 gN0 An0 11B0 rX0 gN0 Db0 11B0 mn0 jB0 FX0 11B0 jz0 gN0 On0 WN0 dX0 jB0 Rb0 WN0 bb0 jB0 TX0 11B0 5z0 gN0 11z0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|18e5","Asia/Hebron|LMT EET EEST IST IDT|-2k.n -20 -30 -20 -30|012121212121212121212121212121212123434343434343434343434343434343121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBCk.n 1Azek.n MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 12L0 1mN0 14o0 1lc0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qo0 XA0 1qp0 1cN0 1cL0 1a10 1fz0 17d0 1in0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1lb0 14p0 1in0 17d0 1cL0 1cN0 19X0 1fB0 14n0 jB0 2L0 11B0 WL0 gN0 8n0 11B0 TX0 gN0 bb0 11B0 On0 jB0 dX0 11B0 Lz0 gN0 mn0 WN0 IL0 gN0 pb0 WN0 Db0 jB0 rX0 11B0 xz0 gN0 xz0 11B0 rX0 jB0 An0 11B0 pb0 gN0 IL0 WN0 mn0 gN0 Lz0 WN0 gL0 jB0 On0 11B0 bb0 gN0 TX0 11B0 5z0 jB0 WL0 11B0 2L0 jB0 11z0 1ip0 19X0 1cN0 1cL0 17d0 1in0 14p0 1lb0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1nX0 14p0 1in0 17d0 1fz0 1a10 19X0 1fB0 17b0 gN0 2L0 WN0 14n0 gN0 5z0 WN0 WL0 jB0 8n0 11B0 Rb0 gN0 dX0 11B0 Lz0 jB0 gL0 11B0 IL0 jB0 mn0 WN0 FX0 gN0 rX0 WN0 An0 jB0 uL0 11B0 uL0 gN0 An0 11B0 rX0 gN0 Db0 11B0 mn0 jB0 FX0 11B0 jz0 gN0 On0 WN0 dX0 jB0 Rb0 WN0 bb0 jB0 TX0 11B0 5z0 gN0 11z0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|25e4","Asia/Ho_Chi_Minh|LMT PLMT +07 +08 +09|-76.u -76.u -70 -80 -90|0123423232|-2yC76.u bK00 1h7b6.u 5lz0 18o0 3Oq0 k5c0 aVX0 BAM0|90e5","Asia/Hong_Kong|LMT HKT HKST HKWT JST|-7A.G -80 -90 -8u -90|0123412121212121212121212121212121212121212121212121212121212121212121|-2CFH0 1taO0 Hc0 xUu 9tBu 11z0 1tDu Rc0 1wo0 11A0 1cM0 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1nX0 U10 1tz0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|73e5","Asia/Hovd|LMT +06 +07 +08|-66.A -60 -70 -80|012323232323232323232323232323232323232323232323232|-2APG6.A 2Uko6.A cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|81e3","Asia/Irkutsk|LMT IMT +07 +08 +09|-6V.5 -6V.5 -70 -80 -90|012343434343434343434343234343434343434343434343434343434343434343|-3D8SV.5 1Bxc0 pjXV.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Europe/Istanbul|LMT IMT EET EEST +03 +04|-1T.Q -1U.U -20 -30 -30 -40|01232323232323232323232323232323232323232323232345423232323232323232323232323232323232323232323232323232323232323234|-3D8NT.Q 1ePXW.U dzzU.U 11b0 8tB0 1on0 1410 1db0 19B0 1in0 3Rd0 Un0 1oN0 11b0 zSN0 CL0 mp0 1Vz0 1gN0 8yn0 1yp0 ML0 1kp0 17b0 1ip0 17b0 1fB0 19X0 1ip0 19X0 1ip0 17b0 qdB0 38L0 1jd0 Tz0 l6O0 11A0 WN0 1qL0 TB0 1tX0 U10 1tz0 11B0 1in0 17d0 z90 cne0 pb0 2Cp0 1800 14o0 1dc0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1a00 1fA0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WO0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6","Asia/Jakarta|LMT BMT +0720 +0730 +09 +08 WIB|-77.c -77.c -7k -7u -90 -80 -70|012343536|-49jH7.c 2hiLL.c luM0 mPzO 8vWu 6kpu 4PXu xhcu|31e6","Asia/Jayapura|LMT +09 +0930 WIT|-9m.M -90 -9u -90|0123|-1uu9m.M sMMm.M L4nu|26e4","Asia/Jerusalem|LMT JMT IST IDT IDDT|-2k.S -2k.E -20 -30 -40|012323232323232432323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3D8Ok.S 1wvA0.e SyOk.E MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 3LA0 Eo0 oo0 1co0 1dA0 16o0 10M0 1jc0 1tA0 14o0 1cM0 1a00 11A0 1Nc0 Ao0 1Nc0 Ao0 1Ko0 LA0 1o00 WM0 EQK0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 1hB0 1dX0 1ep0 1aL0 1eN0 17X0 1nf0 11z0 1tB0 19W0 1e10 17b0 1ep0 1gL0 18N0 1fz0 1eN0 17b0 1gq0 1gn0 19d0 1dz0 1c10 17X0 1hB0 1gn0 19d0 1dz0 1c10 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0|81e4","Asia/Kabul|LMT +04 +0430|-4A.M -40 -4u|012|-3eLEA.M 2dTcA.M|46e5","Asia/Kamchatka|LMT +11 +12 +13|-ay.A -b0 -c0 -d0|012323232323232323232321232323232323232323232323232323232323212|-1SLKy.A ivXy.A 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|18e4","Asia/Karachi|LMT +0530 +0630 +05 PKT PKST|-4s.c -5u -6u -50 -50 -60|012134545454|-2xoss.c 1qOKW.c 7zX0 eup0 LqMu 1fy00 1cL0 dK10 11b0 1610 1jX0|24e6","Asia/Urumqi|LMT +06|-5O.k -60|01|-1GgtO.k|32e5","Asia/Kathmandu|LMT +0530 +0545|-5F.g -5u -5J|012|-21JhF.g 2EGMb.g|12e5","Asia/Khandyga|LMT +08 +09 +10 +11|-92.d -80 -90 -a0 -b0|0123232323232323232323212323232323232323232323232343434343434343432|-21Q92.d pAp2.d 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 qK0 yN0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|66e2","Asia/Krasnoyarsk|LMT +06 +07 +08|-6b.q -60 -70 -80|01232323232323232323232123232323232323232323232323232323232323232|-21Hib.q prAb.q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5","Asia/Kuala_Lumpur|LMT SMT +07 +0720 +0730 +09 +08|-6T.p -6T.p -70 -7k -7u -90 -80|01234546|-2M0ST.p aIM0 17anT.p l5XE 17bO 8Fyu 1so10|71e5","Asia/Macau|LMT CST +09 +10 CDT|-7y.a -80 -90 -a0 -90|012323214141414141414141414141414141414141414141414141414141414141414141|-2CFHy.a 1uqKy.a PX0 1kn0 15B0 11b0 4Qq0 1oM0 11c0 1ko0 1u00 11A0 1cM0 11c0 1o00 11A0 1o00 11A0 1oo0 1400 1o00 11A0 1o00 U00 1tA0 U00 1wo0 Rc0 1wru U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cK0 1cO0 1cK0 1cO0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|57e4","Asia/Magadan|LMT +10 +11 +12|-a3.c -a0 -b0 -c0|012323232323232323232321232323232323232323232323232323232323232312|-1Pca3.c eUo3.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Cq0|95e3","Asia/Makassar|LMT MMT +08 +09 WITA|-7V.A -7V.A -80 -90 -80|01234|-21JjV.A vfc0 myLV.A 8ML0|15e5","Asia/Manila|LMT LMT PST PDT JST|fU.8 -83.Q -80 -90 -90|012323432323232|-54m83.Q 2d8A3.Q 1urM0 un0 bW10 nb0 7qo0 1MM0 klB0 lz0 TwN0 1bb0 uNB0 rz0|24e6","Asia/Nicosia|LMT EET EEST|-2d.s -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2d.s 2a3cd.s 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|32e4","Asia/Novokuznetsk|LMT +06 +07 +08|-5M.M -60 -70 -80|012323232323232323232321232323232323232323232323232323232323212|-1PctM.M eULM.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|55e4","Asia/Novosibirsk|LMT +06 +07 +08|-5v.E -60 -70 -80|0123232323232323232323212323212121212121212121212121212121212121212|-21Qnv.E pAFv.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 ml0 Os0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 4eN0|15e5","Asia/Omsk|LMT +05 +06 +07|-4R.u -50 -60 -70|01232323232323232323232123232323232323232323232323232323232323232|-224sR.u pMLR.u 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|12e5","Asia/Oral|LMT +03 +05 +06 +04|-3p.o -30 -50 -60 -40|01232323232323232424242424242424242424242424242|-1Pc3p.o eUop.o 23CK0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 1cM0 IM0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|27e4","Asia/Pontianak|LMT PMT +0730 +09 +08 WITA WIB|-7h.k -7h.k -7u -90 -80 -80 -70|012324256|-2ua7h.k XE00 munL.k 8Rau 6kpu 4PXu xhcu Wqnu|23e4","Asia/Pyongyang|LMT KST JST KST|-8n -8u -90 -90|012313|-2um8n 97XR 1lTzu 2Onc0 6BA0|29e5","Asia/Qostanay|LMT +04 +05 +06|-4e.s -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc4e.s eUoe.s 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 Mv90|","Asia/Qyzylorda|LMT +04 +05 +06|-4l.Q -40 -50 -60|01232323232323232323232323232323232323232323232|-1Pc4l.Q eUol.Q 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 3ao0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 zQl0|73e4","Asia/Rangoon|LMT RMT +0630 +09|-6o.L -6o.L -6u -90|01232|-3D8So.L 1BnA0 SmnS.L 7j9u|48e5","Asia/Sakhalin|LMT +09 +11 +12 +10|-9u.M -90 -b0 -c0 -a0|01232323232323232323232423232323232424242424242424242424242424242|-2AGVu.M 1BoMu.M 1qFa0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 2pB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|58e4","Asia/Samarkand|LMT +04 +05 +06|-4r.R -40 -50 -60|01232323232323232323232|-1Pc4r.R eUor.R 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0|36e4","Asia/Seoul|LMT KST JST KST KDT KDT|-8r.Q -8u -90 -90 -a0 -9u|012343434343151515151515134343|-2um8r.Q 97XV.Q 1m1zu 6CM0 Fz0 1kN0 14n0 1kN0 14L0 1zd0 On0 69B0 2I0u OL0 1FB0 Rb0 1qN0 TX0 1tB0 TX0 1tB0 TX0 1tB0 TX0 2ap0 12FBu 11A0 1o00 11A0|23e6","Asia/Srednekolymsk|LMT +10 +11 +12|-ae.Q -a0 -b0 -c0|01232323232323232323232123232323232323232323232323232323232323232|-1Pcae.Q eUoe.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|35e2","Asia/Taipei|LMT CST JST CDT|-86 -80 -90 -90|012131313131313131313131313131313131313131|-30bk6 1FDc6 joM0 1yo0 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 10N0 1BX0 10p0 1pz0 10p0 1pz0 10p0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1BB0 ML0 1Bd0 ML0 uq10 1db0 1cN0 1db0 97B0 AL0|74e5","Asia/Tashkent|LMT +05 +06 +07|-4B.b -50 -60 -70|012323232323232323232321|-1Pc4B.b eUnB.b 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0|23e5","Asia/Tbilisi|LMT TBMT +03 +04 +05|-2X.b -2X.b -30 -40 -50|01234343434343434343434323232343434343434343434323|-3D8OX.b 1LUM0 1jUnX.b WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cK0 1cL0 1cN0 1cL0 1cN0 2pz0 1cL0 1fB0 3Nz0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 An0 Os0 WM0|11e5","Asia/Tehran|LMT TMT +0330 +0430 +04 +05|-3p.I -3p.I -3u -4u -40 -50|012345423232323232323232323232323232323232323232323232323232323232323232|-2btDp.I Llc0 1FHaT.I 1pc0 120u Rc0 XA0 Wou JX0 1dB0 1en0 pNB0 UL0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 64p0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0|14e6","Asia/Thimphu|LMT +0530 +06|-5W.A -5u -60|012|-Su5W.A 1BGMs.A|79e3","Asia/Tokyo|LMT JST JDT|-9i.X -90 -a0|0121212121|-3jE90 2qSo0 Rc0 1lc0 14o0 1zc0 Oo0 1zc0 Oo0|38e6","Asia/Tomsk|LMT +06 +07 +08|-5D.P -60 -70 -80|0123232323232323232323212323232323232323232323212121212121212121212|-21NhD.P pxzD.P 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 co0 1bB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Qp0|10e5","Asia/Ust-Nera|LMT +08 +09 +12 +11 +10|-9w.S -80 -90 -c0 -b0 -a0|012343434343434343434345434343434343434343434343434343434343434345|-21Q9w.S pApw.S 23CL0 1d90 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|65e2","Asia/Vladivostok|LMT +09 +10 +11|-8L.v -90 -a0 -b0|01232323232323232323232123232323232323232323232323232323232323232|-1SJIL.v itXL.v 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Asia/Yakutsk|LMT +08 +09 +10|-8C.W -80 -90 -a0|01232323232323232323232123232323232323232323232323232323232323232|-21Q8C.W pAoC.W 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|28e4","Asia/Yekaterinburg|LMT PMT +04 +05 +06|-42.x -3J.5 -40 -50 -60|012343434343434343434343234343434343434343434343434343434343434343|-2ag42.x 7mQh.s qBvJ.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|14e5","Asia/Yerevan|LMT +03 +04 +05|-2W -30 -40 -50|0123232323232323232323212121212323232323232323232323232323232|-1Pc2W 1jUnW WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 4RX0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|13e5","Atlantic/Azores|LMT HMT -02 -01 +00 WET WEST|1G.E 1S.w 20 10 0 0 -10|012323232323232323232323232323232323232323232343234323432343232323232323232323232323232323232323232323434343434343434343434356434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3tomh.k 18aoh.k aPX0 Sp0 M00 1vb0 SN0 1vb0 SN0 1vb0 Td0 1vb0 SN0 1vb0 6600 18o0 3I00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1uo0 1c00 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 CT90 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 Ap0 An0 wo0 Eo0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|25e4","Atlantic/Bermuda|LMT BMT BST AST ADT|4j.i 4j.i 3j.i 40 30|0121213434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3eLvE.G 16mo0 1bb0 1i10 11X0 ru30 thbE.G 1PX0 11B0 1tz0 Rd0 1zb0 Op0 1zb0 3I10 Lz0 1EN0 FX0 1HB0 FX0 1Kp0 Db0 1Kp0 Db0 1Kp0 FX0 93d0 11z0 GAp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e3","Atlantic/Canary|LMT -01 WET WEST|11.A 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UtaW.o XPAW.o 1lAK0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|54e4","Atlantic/Cape_Verde|LMT -02 -01|1y.4 20 10|01212|-2ldW0 1eEo0 7zX0 1djf0|50e4","Atlantic/Faroe|LMT WET WEST|r.4 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2uSnw.U 2Wgow.U 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|49e3","Atlantic/Madeira|LMT FMT -01 +00 +01 WET WEST|17.A 17.A 10 0 -10 0 -10|01232323232323232323232323232323232323232323234323432343234323232323232323232323232323232323232323232356565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tomQ.o 18anQ.o aPX0 Sp0 M00 1vb0 SN0 1vb0 SN0 1vb0 Td0 1vb0 SN0 1vb0 6600 18o0 3I00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1uo0 1c00 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 BJ90 1a00 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e4","Atlantic/South_Georgia|LMT -02|2q.8 20|01|-3eLxx.Q|30","Atlantic/Stanley|LMT SMT -04 -03 -02|3P.o 3P.o 40 30 20|0123232323232323434323232323232323232323232323232323232323232323232323|-3eLw8.A S200 12bA8.A 19X0 1fB0 19X0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 Cn0 1Cc10 WL0 1qL0 U10 1tz0 2mN0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 U10 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qN0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 U10 1tz0 U10 1tz0 U10|21e2","Australia/Sydney|LMT AEST AEDT|-a4.Q -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-32oW4.Q RlC4.Q xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|40e5","Australia/Adelaide|LMT ACST ACST ACDT|-9e.k -90 -9u -au|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-32oVe.k ak0e.k H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 WM0 1qM0 Rc0 1zc0 U00 1tA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|11e5","Australia/Brisbane|LMT AEST AEDT|-ac.8 -a0 -b0|012121212121212121|-32Bmc.8 Ry2c.8 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0|20e5","Australia/Broken_Hill|LMT AEST ACST ACST ACDT|-9p.M -a0 -90 -9u -au|0123434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-32oVp.M 3Lzp.M 6wp0 H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|18e3","Australia/Hobart|LMT AEST AEDT|-9N.g -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-3109N.g Pk1N.g 1a00 1qM0 Oo0 1zc0 Oo0 TAo0 yM0 1cM0 1cM0 1fA0 1a00 VfA0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|21e4","Australia/Darwin|LMT ACST ACST ACDT|-8H.k -90 -9u -au|01232323232|-32oUH.k ajXH.k H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00|12e4","Australia/Eucla|LMT +0845 +0945|-8z.s -8J -9J|01212121212121212121|-30nIz.s PkpO.s xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|368","Australia/Lord_Howe|LMT AEST +1030 +1130 +11|-aA.k -a0 -au -bu -b0|01232323232424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424|-32oWA.k 3tzAA.k 1zdu Rb0 1zd0 On0 1zd0 On0 1zd0 On0 1zd0 TXu 1qMu WLu 1tAu WLu 1tAu TXu 1tAu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 11Au 1nXu 1qMu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu 11zu 1o0u WLu 1qMu 14nu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu|347","Australia/Lindeman|LMT AEST AEDT|-9T.U -a0 -b0|0121212121212121212121|-32BlT.U Ry1T.U xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10","Australia/Melbourne|LMT AEST AEDT|-9D.Q -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-32oVD.Q RlBD.Q xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1qM0 11A0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|39e5","Australia/Perth|LMT AWST AWDT|-7H.o -80 -90|01212121212121212121|-30nHH.o PkpH.o xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|18e5","Europe/Brussels|LMT BMT WET CET CEST WEST|-h.u -h.u 0 -10 -20 -10|012343434325252525252525252525252525252525252525252525434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3D8Mh.u u1Ah.u SO00 3zX0 11c0 1iO0 11A0 1o00 11A0 my0 Ic0 1qM0 Rc0 1EM0 UM0 1u00 10o0 1io0 1io0 17c0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a30 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 y00 5Wn0 WM0 1fA0 1cM0 16M0 1iM0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|21e5","Pacific/Easter|LMT EMT -07 -06 -05|7h.s 7h.s 70 60 50|0123232323232323232323232323234343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLsG.w 1HRc0 1s4IG.w WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 2pA0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0|30e2","Europe/Athens|LMT AMT EET EEST CEST CET|-1y.Q -1y.Q -20 -30 -20 -10|0123234545232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-30SNy.Q OMM1 CNbx.Q mn0 kU10 9b0 3Es0 Xa0 1fb0 1dd0 k3X0 Nz0 SCp0 1vc0 SO0 1cM0 1a00 1ao0 1fc0 1a10 1fG0 1cg0 1dX0 1bX0 1cQ0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|35e5","Europe/Dublin|LMT DMT IST GMT BST IST|p.l p.l -y.D 0 -10 -10|012343434343435353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353|-3BHby.D 1ra20 Rc0 1fzy.D 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 g600 14o0 1wo0 17c0 1io0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Etc/GMT-0|GMT|0|0||","Etc/GMT-1|+01|-10|0||","Etc/GMT-10|+10|-a0|0||","Etc/GMT-11|+11|-b0|0||","Etc/GMT-12|+12|-c0|0||","Etc/GMT-13|+13|-d0|0||","Etc/GMT-14|+14|-e0|0||","Etc/GMT-2|+02|-20|0||","Etc/GMT-3|+03|-30|0||","Etc/GMT-4|+04|-40|0||","Etc/GMT-5|+05|-50|0||","Etc/GMT-6|+06|-60|0||","Etc/GMT-7|+07|-70|0||","Etc/GMT-8|+08|-80|0||","Etc/GMT-9|+09|-90|0||","Etc/GMT+1|-01|10|0||","Etc/GMT+10|-10|a0|0||","Etc/GMT+11|-11|b0|0||","Etc/GMT+12|-12|c0|0||","Etc/GMT+2|-02|20|0||","Etc/GMT+3|-03|30|0||","Etc/GMT+4|-04|40|0||","Etc/GMT+5|-05|50|0||","Etc/GMT+6|-06|60|0||","Etc/GMT+7|-07|70|0||","Etc/GMT+8|-08|80|0||","Etc/GMT+9|-09|90|0||","Etc/UTC|UTC|0|0||","Europe/Andorra|LMT WET CET CEST|-6.4 0 -10 -20|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2M0M6.4 1Pnc6.4 1xIN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|79e3","Europe/Astrakhan|LMT +03 +04 +05|-3c.c -30 -40 -50|012323232323232323212121212121212121212121212121212121212121212|-1Pcrc.c eUMc.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|10e5","Europe/London|LMT GMT BST BDST|1.f 0 -10 -20|01212121212121212121212121212121212121212121212121232323232321212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-4VgnW.J 2KHdW.J Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|10e6","Europe/Belgrade|LMT CET CEST|-1m -10 -20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3topm 2juLm 3IP0 WM0 1fA0 1cM0 1cM0 1rc0 Qo0 1vmo0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Prague|LMT PMT CET CEST GMT|-V.I -V.I -10 -20 0|0123232323232323232423232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4QbAV.I 1FDc0 XPaV.I 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 1qM0 11c0 mp0 xA0 mn0 17c0 1io0 17c0 1fc0 1ao0 1bNc0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|13e5","Europe/Bucharest|LMT BMT EET EEST|-1I.o -1I.o -20 -30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3awpI.o 1AU00 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Axc0 On0 1fA0 1a10 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|19e5","Europe/Budapest|LMT CET CEST|-1g.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3cK1g.k 124Lg.k 11d0 1iO0 11A0 1o00 11A0 1oo0 11c0 1lc0 17c0 O1V0 3Nf0 WM0 1fA0 1cM0 1cM0 1oJ0 1dd0 1020 1fX0 1cp0 1cM0 1cM0 1cM0 1fA0 1a00 bhy0 Rb0 1wr0 Rc0 1C00 LA0 1C00 LA0 SNW0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cO0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e5","Europe/Zurich|LMT BMT CET CEST|-y.8 -t.K -10 -20|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4HyMy.8 1Dw04.m 1SfAt.K 11A0 1o00 11A0 1xG10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|38e4","Europe/Chisinau|LMT CMT BMT EET EEST CEST CET MSK MSD|-1T.k -1T -1I.o -20 -30 -20 -10 -30 -40|0123434343434343434345656578787878787878787878434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3D8NT.k 1wNA0.k wGMa.A 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 27A0 2en0 39g0 WM0 1fA0 1cM0 V90 1t7z0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 gL0 WO0 1cM0 1cM0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11D0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|67e4","Europe/Gibraltar|LMT GMT BST BDST CET CEST|l.o 0 -10 -20 -10 -20|0121212121212121212121212121212121212121212121212123232323232121232121212121212121212145454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-3BHbC.A 1ra1C.A Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 10Jz0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|30e3","Europe/Helsinki|LMT HMT EET EEST|-1D.N -1D.N -20 -30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3H0ND.N 1Iu00 OULD.N 1dA0 1xGq0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Kaliningrad|LMT CET CEST EET EEST MSK MSD +03|-1m -10 -20 -20 -30 -30 -40 -30|012121212121212343565656565656565654343434343434343434343434343434343434343434373|-36Rdm UbXm 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 390 7A0 1en0 12N0 1pbb0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|44e4","Europe/Kiev|LMT KMT EET MSK CEST CET MSD EEST|-22.4 -22.4 -20 -30 -20 -10 -40 -30|01234545363636363636363636367272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272|-3D8O2.4 1LUM0 eUo2.4 rnz0 2Hg0 WM0 1fA0 da0 1v4m0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 Db0 3220 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o10 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|34e5","Europe/Kirov|LMT +03 +04 +05 MSD MSK MSK|-3i.M -30 -40 -50 -40 -30 -40|0123232323232323232454524545454545454545454545454545454545454565|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 2pz0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|48e4","Europe/Lisbon|LMT WET WEST WEMT CET CEST|A.J 0 -10 -20 -10 -20|012121212121212121212121212121212121212121212321232123212321212121212121212121212121212121212121212124121212121212121212121212121212124545454212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2le00 aPX0 Sp0 M00 1vb0 SN0 1vb0 SN0 1vb0 Td0 1vb0 SN0 1vb0 6600 18o0 3I00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1uo0 1c00 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 oiK0 1cM0 1cM0 1fB0 1cM0 1cM0 1cM0 1fA0 1a00 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Europe/Madrid|LMT WET WEST WEMT CET CEST|e.I 0 -10 -20 -10 -20|0121212121212121212321454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2M0M0 G5z0 19B0 1cL0 1dd0 b1z0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1in0 17d0 iIn0 Hd0 1cL0 bb0 1200 2s20 14n0 5aL0 Mp0 1vz0 17d0 1in0 17d0 1in0 17d0 1in0 17d0 6hX0 11B0 XHX0 1a10 1fz0 1a10 19X0 1cN0 1fz0 1a10 1fC0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|62e5","Europe/Malta|LMT CET CEST|-W.4 -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-35rcW.4 SXzW.4 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1co0 17c0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1co0 1cM0 1lA0 Xc0 1qq0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1iN0 19z0 1fB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|42e4","Europe/Minsk|LMT MMT EET MSK CEST CET MSD EEST +03|-1O.g -1O -20 -30 -20 -10 -40 -30 -30|012345454363636363636363636372727272727272727272727272727272727272728|-3D8NO.g 1LUM0.g eUnO qNX0 3gQ0 WM0 1fA0 1cM0 Al0 1tsn0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 3Fc0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0|19e5","Europe/Paris|LMT PMT WET WEST CEST CET WEMT|-9.l -9.l 0 -10 -20 -10 -20|01232323232323232323232323232323232323232323232323234545463654545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-3bQ09.l MDA0 cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 Ik0 5M30 WM0 1fA0 1cM0 Vx0 hB0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|11e6","Europe/Moscow|LMT MMT MMT MST MDST MSD MSK +05 EET EEST MSK|-2u.h -2u.h -2v.j -3v.j -4v.j -40 -30 -50 -20 -30 -40|01232434565756865656565656565656565698656565656565656565656565656565656565656a6|-3D8Ou.h 1sQM0 2pyW.W 1bA0 11X0 GN0 1Hb0 c4v.j ik0 3DA0 dz0 15A0 c10 2q10 iM10 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|16e6","Europe/Riga|LMT RMT LST EET MSK CEST CET MSD EEST|-1A.y -1A.y -2A.y -20 -30 -20 -10 -40 -30|0121213456565647474747474747474838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383|-3D8NA.y 1xde0 11A0 1iM0 ko0 gWm0 yDXA.y 2bX0 3fE0 WM0 1fA0 1cM0 1cM0 4m0 1sLy0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 1o00 11A0 1o00 11A0 1qM0 3oo0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|64e4","Europe/Rome|LMT RMT CET CEST|-N.U -N.U -10 -20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4aU0N.U 15snN.U T000 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1cM0 16M0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1C00 LA0 1zc0 Oo0 1C00 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1zc0 Oo0 1fC0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|39e5","Europe/Samara|LMT +03 +04 +05|-3k.k -30 -40 -50|0123232323232323232121232323232323232323232323232323232323212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2y10 14m0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|12e5","Europe/Saratov|LMT +03 +04 +05|-34.i -30 -40 -50|012323232323232321212121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 5810|","Europe/Simferopol|LMT SMT EET MSK CEST CET MSD EEST MSK|-2g.o -2g -20 -30 -20 -10 -40 -30 -40|0123454543636363636363636363272727636363727272727272727272727272727272727283|-3D8Og.o 1LUM0.o eUog rEn0 2qs0 WM0 1fA0 1cM0 3V0 1u0L0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 4eN0 1cM0 1cM0 1cM0 1cM0 dV0 WO0 1cM0 1cM0 1fy0 1o30 11B0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4","Europe/Sofia|LMT IMT EET CET CEST EEST|-1x.g -1U.U -20 -10 -20 -30|0123434325252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-3D8Nx.g AiLA.k 1UFeU.U WM0 1fA0 1cM0 1cM0 1cN0 1mKH0 1dd0 1fb0 1ap0 1fb0 1a20 1fy0 1a30 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Tallinn|LMT TMT CET CEST EET MSK MSD EEST|-1D -1D -10 -20 -20 -30 -40 -30|0123214532323565656565656565657474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474|-3D8ND 1wI00 teD 11A0 1Ta0 4rXl KSLD 2FX0 2Jg0 WM0 1fA0 1cM0 18J0 1sTX0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o10 11A0 1qM0 5QM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|41e4","Europe/Tirane|LMT CET CEST|-1j.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glBj.k 14pcj.k 5LC0 WM0 4M0 1fCK0 10n0 1op0 11z0 1pd0 11z0 1qN0 WL0 1qp0 Xb0 1qp0 Xb0 1qp0 11z0 1lB0 11z0 1qN0 11z0 1iN0 16n0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|42e4","Europe/Ulyanovsk|LMT +03 +04 +05 +02|-3d.A -30 -40 -50 -20|01232323232323232321214121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|13e5","Europe/Vienna|LMT CET CEST|-15.l -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-36Rd5.l UbX5.l 11d0 1iO0 11A0 1o00 11A0 3KM0 14o0 LA00 6i00 WM0 1fA0 1cM0 1cM0 1cM0 400 2qM0 1ao0 1co0 1cM0 1io0 17c0 1gHa0 19X0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|18e5","Europe/Vilnius|LMT WMT KMT CET EET MSK CEST MSD EEST|-1F.g -1o -1z.A -10 -20 -30 -20 -40 -30|0123435636365757575757575757584848484848484848463648484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484|-3D8NF.g 1u5Ah.g 6ILM.o 1Ooz.A zz0 Mfd0 29W0 3is0 WM0 1fA0 1cM0 LV0 1tgL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11B0 1o00 11A0 1qM0 8io0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|54e4","Europe/Volgograd|LMT +03 +04 +05 MSD MSK MSK|-2V.E -30 -40 -50 -40 -30 -40|012323232323232324545452454545454545454545454545454545454545456525|-21IqV.E psLV.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1fA0 1cM0 2pz0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 9Jd0 5gn0|10e5","Europe/Warsaw|LMT WMT CET CEST EET EEST|-1o -1o -10 -20 -20 -30|0123232345423232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3D8No 1qDA0 1LXo 11d0 1iO0 11A0 1o00 11A0 1on0 11A0 6zy0 HWP0 5IM0 WM0 1fA0 1cM0 1dz0 1mL0 1en0 15B0 1aq0 1nA0 11A0 1io0 17c0 1fA0 1a00 iDX0 LA0 1cM0 1cM0 1C00 Oo0 1cM0 1cM0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1C00 LA0 uso0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e5","Pacific/Honolulu|LMT HST HDT HWT HPT HST|av.q au 9u 9u 9u a0|01213415|-3061s.y 1uMdW.y 8x0 lef0 8wWu iAu 46p0|37e4","Indian/Chagos|LMT +05 +06|-4N.E -50 -60|012|-2xosN.E 3AGLN.E|30e2","Indian/Maldives|LMT MMT +05|-4S -4S -50|012|-3D8QS 3eLA0|35e4","Indian/Mauritius|LMT +04 +05|-3O -40 -50|012121|-2xorO 34unO 14L0 12kr0 11z0|15e4","Pacific/Kwajalein|LMT +11 +10 +09 -12 +12|-b9.k -b0 -a0 -90 c0 -c0|0123145|-2M0X9.k 1rDA9.k akp0 6Up0 12ry0 Wan0|14e3","Pacific/Chatham|LMT +1215 +1245 +1345|-cd.M -cf -cJ -dJ|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-46jMd.M 37RbW.M 1adef IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00|600","Pacific/Apia|LMT LMT -1130 -11 -10 +14 +13|-cx.4 bq.U bu b0 a0 -e0 -d0|012343456565656565656565656|-38Fox.4 J1A0 1yW03.4 2rRbu 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0|37e3","Pacific/Bougainville|LMT PMMT +10 +09 +11|-am.g -9M.w -a0 -90 -b0|012324|-3D8Wm.g AvAx.I 1TCLM.w 7CN0 2MQp0|18e4","Pacific/Efate|LMT +11 +12|-bd.g -b0 -c0|012121212121212121212121|-2l9nd.g 2uNXd.g Dc0 n610 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 Lz0 1Nd0 An0|66e3","Pacific/Enderbury|-00 -12 -11 +13|0 c0 b0 -d0|0123|-1iIo0 1GsA0 B7X0|1","Pacific/Fakaofo|LMT -11 +13|bo.U b0 -d0|012|-2M0Az.4 4ufXz.4|483","Pacific/Fiji|LMT +12 +13|-bT.I -c0 -d0|012121212121212121212121212121|-2bUzT.I 3m8NT.I LA0 1EM0 IM0 nJc0 LA0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 20o0 pc0 2hc0 bc0|88e4","Pacific/Tarawa|LMT +12|-bw.4 -c0|01|-2M0Xw.4|29e3","Pacific/Galapagos|LMT -05 -06|5W.o 50 60|01212|-1yVS1.A 2dTz1.A gNd0 rz0|25e3","Pacific/Gambier|LMT -09|8X.M 90|01|-2jof0.c|125","Pacific/Guadalcanal|LMT +11|-aD.M -b0|01|-2joyD.M|11e4","Pacific/Guam|LMT LMT GST +09 GDT ChST|el -9D -a0 -90 -b0 -a0|0123242424242424242425|-54m9D 2glc0 1DFbD 6pB0 AhB0 3QL0 g2p0 3p91 WOX rX0 1zd0 Rb0 1wp0 Rb0 5xd0 rX0 5sN0 zb1 1C0X On0 ULb0|17e4","Pacific/Kiritimati|LMT -1040 -10 +14|at.k aE a0 -e0|0123|-2M0Bu.E 3bIMa.E B7Xk|51e2","Pacific/Kosrae|LMT LMT +11 +09 +10 +12|d8.4 -aP.U -b0 -90 -a0 -c0|0123243252|-54maP.U 2glc0 xsnP.U axC0 HBy0 akp0 axd0 WOK0 1bdz0|66e2","Pacific/Marquesas|LMT -0930|9i 9u|01|-2joeG|86e2","Pacific/Pago_Pago|LMT LMT SST|-cB.c bm.M b0|012|-38FoB.c J1A0|37e2","Pacific/Nauru|LMT +1130 +09 +12|-b7.E -bu -90 -c0|01213|-1Xdn7.E QCnB.E 7mqu 1lnbu|10e3","Pacific/Niue|LMT -1120 -11|bj.E bk b0|012|-FScE.k suo0.k|12e2","Pacific/Norfolk|LMT +1112 +1130 +1230 +11 +12|-bb.Q -bc -bu -cu -b0 -c0|0123245454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2M0Xb.Q 21ILX.Q W01G Oo0 1COo0 9Jcu 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|25e4","Pacific/Noumea|LMT +11 +12|-b5.M -b0 -c0|01212121|-2l9n5.M 2EqM5.M xX0 1PB0 yn0 HeP0 Ao0|98e3","Pacific/Palau|LMT LMT +09|f2.4 -8V.U -90|012|-54m8V.U 2glc0|21e3","Pacific/Pitcairn|LMT -0830 -08|8E.k 8u 80|012|-2M0Dj.E 3UVXN.E|56","Pacific/Rarotonga|LMT LMT -1030 -0930 -10|-dk.U aD.4 au 9u a0|01234343434343434343434343434|-2Otpk.U 28zc0 13tbO.U IL0 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu|13e3","Pacific/Tahiti|LMT -10|9W.g a0|01|-2joe1.I|18e4","Pacific/Tongatapu|LMT +1220 +13 +14|-cj.c -ck -d0 -e0|01232323232|-XbMj.c BgLX.c 1yndk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00|75e3"]'),_pt=["Africa/Abidjan|Africa/Accra","Africa/Abidjan|Africa/Bamako","Africa/Abidjan|Africa/Banjul","Africa/Abidjan|Africa/Conakry","Africa/Abidjan|Africa/Dakar","Africa/Abidjan|Africa/Freetown","Africa/Abidjan|Africa/Lome","Africa/Abidjan|Africa/Nouakchott","Africa/Abidjan|Africa/Ouagadougou","Africa/Abidjan|Africa/Timbuktu","Africa/Abidjan|Atlantic/Reykjavik","Africa/Abidjan|Atlantic/St_Helena","Africa/Abidjan|Iceland","Africa/Cairo|Egypt","Africa/Johannesburg|Africa/Maseru","Africa/Johannesburg|Africa/Mbabane","Africa/Lagos|Africa/Bangui","Africa/Lagos|Africa/Brazzaville","Africa/Lagos|Africa/Douala","Africa/Lagos|Africa/Kinshasa","Africa/Lagos|Africa/Libreville","Africa/Lagos|Africa/Luanda","Africa/Lagos|Africa/Malabo","Africa/Lagos|Africa/Niamey","Africa/Lagos|Africa/Porto-Novo","Africa/Maputo|Africa/Blantyre","Africa/Maputo|Africa/Bujumbura","Africa/Maputo|Africa/Gaborone","Africa/Maputo|Africa/Harare","Africa/Maputo|Africa/Kigali","Africa/Maputo|Africa/Lubumbashi","Africa/Maputo|Africa/Lusaka","Africa/Nairobi|Africa/Addis_Ababa","Africa/Nairobi|Africa/Asmara","Africa/Nairobi|Africa/Asmera","Africa/Nairobi|Africa/Dar_es_Salaam","Africa/Nairobi|Africa/Djibouti","Africa/Nairobi|Africa/Kampala","Africa/Nairobi|Africa/Mogadishu","Africa/Nairobi|Indian/Antananarivo","Africa/Nairobi|Indian/Comoro","Africa/Nairobi|Indian/Mayotte","Africa/Tripoli|Libya","America/Adak|America/Atka","America/Adak|US/Aleutian","America/Anchorage|US/Alaska","America/Argentina/Buenos_Aires|America/Buenos_Aires","America/Argentina/Catamarca|America/Argentina/ComodRivadavia","America/Argentina/Catamarca|America/Catamarca","America/Argentina/Cordoba|America/Cordoba","America/Argentina/Cordoba|America/Rosario","America/Argentina/Jujuy|America/Jujuy","America/Argentina/Mendoza|America/Mendoza","America/Chicago|CST6CDT","America/Chicago|US/Central","America/Denver|America/Shiprock","America/Denver|MST7MDT","America/Denver|Navajo","America/Denver|US/Mountain","America/Detroit|US/Michigan","America/Edmonton|America/Yellowknife","America/Edmonton|Canada/Mountain","America/Fort_Wayne|America/Indiana/Indianapolis","America/Fort_Wayne|America/Indianapolis","America/Fort_Wayne|US/East-Indiana","America/Godthab|America/Nuuk","America/Halifax|Canada/Atlantic","America/Havana|Cuba","America/Indiana/Knox|America/Knox_IN","America/Indiana/Knox|US/Indiana-Starke","America/Iqaluit|America/Pangnirtung","America/Jamaica|Jamaica","America/Kentucky/Louisville|America/Louisville","America/Los_Angeles|PST8PDT","America/Los_Angeles|US/Pacific","America/Manaus|Brazil/West","America/Mazatlan|Mexico/BajaSur","America/Mexico_City|Mexico/General","America/New_York|EST5EDT","America/New_York|US/Eastern","America/Noronha|Brazil/DeNoronha","America/Panama|America/Atikokan","America/Panama|America/Cayman","America/Panama|America/Coral_Harbour","America/Panama|EST","America/Phoenix|America/Creston","America/Phoenix|MST","America/Phoenix|US/Arizona","America/Puerto_Rico|America/Anguilla","America/Puerto_Rico|America/Antigua","America/Puerto_Rico|America/Aruba","America/Puerto_Rico|America/Blanc-Sablon","America/Puerto_Rico|America/Curacao","America/Puerto_Rico|America/Dominica","America/Puerto_Rico|America/Grenada","America/Puerto_Rico|America/Guadeloupe","America/Puerto_Rico|America/Kralendijk","America/Puerto_Rico|America/Lower_Princes","America/Puerto_Rico|America/Marigot","America/Puerto_Rico|America/Montserrat","America/Puerto_Rico|America/Port_of_Spain","America/Puerto_Rico|America/St_Barthelemy","America/Puerto_Rico|America/St_Kitts","America/Puerto_Rico|America/St_Lucia","America/Puerto_Rico|America/St_Thomas","America/Puerto_Rico|America/St_Vincent","America/Puerto_Rico|America/Tortola","America/Puerto_Rico|America/Virgin","America/Regina|Canada/Saskatchewan","America/Rio_Branco|America/Porto_Acre","America/Rio_Branco|Brazil/Acre","America/Santiago|Chile/Continental","America/Sao_Paulo|Brazil/East","America/St_Johns|Canada/Newfoundland","America/Tijuana|America/Ensenada","America/Tijuana|America/Santa_Isabel","America/Tijuana|Mexico/BajaNorte","America/Toronto|America/Montreal","America/Toronto|America/Nassau","America/Toronto|America/Nipigon","America/Toronto|America/Thunder_Bay","America/Toronto|Canada/Eastern","America/Vancouver|Canada/Pacific","America/Whitehorse|Canada/Yukon","America/Winnipeg|America/Rainy_River","America/Winnipeg|Canada/Central","Asia/Ashgabat|Asia/Ashkhabad","Asia/Bangkok|Asia/Phnom_Penh","Asia/Bangkok|Asia/Vientiane","Asia/Bangkok|Indian/Christmas","Asia/Brunei|Asia/Kuching","Asia/Dhaka|Asia/Dacca","Asia/Dubai|Asia/Muscat","Asia/Dubai|Indian/Mahe","Asia/Dubai|Indian/Reunion","Asia/Ho_Chi_Minh|Asia/Saigon","Asia/Hong_Kong|Hongkong","Asia/Jerusalem|Asia/Tel_Aviv","Asia/Jerusalem|Israel","Asia/Kathmandu|Asia/Katmandu","Asia/Kolkata|Asia/Calcutta","Asia/Kuala_Lumpur|Asia/Singapore","Asia/Kuala_Lumpur|Singapore","Asia/Macau|Asia/Macao","Asia/Makassar|Asia/Ujung_Pandang","Asia/Nicosia|Europe/Nicosia","Asia/Qatar|Asia/Bahrain","Asia/Rangoon|Asia/Yangon","Asia/Rangoon|Indian/Cocos","Asia/Riyadh|Antarctica/Syowa","Asia/Riyadh|Asia/Aden","Asia/Riyadh|Asia/Kuwait","Asia/Seoul|ROK","Asia/Shanghai|Asia/Chongqing","Asia/Shanghai|Asia/Chungking","Asia/Shanghai|Asia/Harbin","Asia/Shanghai|PRC","Asia/Taipei|ROC","Asia/Tehran|Iran","Asia/Thimphu|Asia/Thimbu","Asia/Tokyo|Japan","Asia/Ulaanbaatar|Asia/Choibalsan","Asia/Ulaanbaatar|Asia/Ulan_Bator","Asia/Urumqi|Asia/Kashgar","Atlantic/Faroe|Atlantic/Faeroe","Australia/Adelaide|Australia/South","Australia/Brisbane|Australia/Queensland","Australia/Broken_Hill|Australia/Yancowinna","Australia/Darwin|Australia/North","Australia/Hobart|Australia/Currie","Australia/Hobart|Australia/Tasmania","Australia/Lord_Howe|Australia/LHI","Australia/Melbourne|Australia/Victoria","Australia/Perth|Australia/West","Australia/Sydney|Australia/ACT","Australia/Sydney|Australia/Canberra","Australia/Sydney|Australia/NSW","Etc/GMT-0|Etc/GMT","Etc/GMT-0|Etc/GMT+0","Etc/GMT-0|Etc/GMT0","Etc/GMT-0|Etc/Greenwich","Etc/GMT-0|GMT","Etc/GMT-0|GMT+0","Etc/GMT-0|GMT-0","Etc/GMT-0|GMT0","Etc/GMT-0|Greenwich","Etc/UTC|Etc/UCT","Etc/UTC|Etc/Universal","Etc/UTC|Etc/Zulu","Etc/UTC|UCT","Etc/UTC|UTC","Etc/UTC|Universal","Etc/UTC|Zulu","Europe/Athens|EET","Europe/Belgrade|Europe/Ljubljana","Europe/Belgrade|Europe/Podgorica","Europe/Belgrade|Europe/Sarajevo","Europe/Belgrade|Europe/Skopje","Europe/Belgrade|Europe/Zagreb","Europe/Berlin|Arctic/Longyearbyen","Europe/Berlin|Atlantic/Jan_Mayen","Europe/Berlin|Europe/Copenhagen","Europe/Berlin|Europe/Oslo","Europe/Berlin|Europe/Stockholm","Europe/Brussels|CET","Europe/Brussels|Europe/Amsterdam","Europe/Brussels|Europe/Luxembourg","Europe/Brussels|MET","Europe/Chisinau|Europe/Tiraspol","Europe/Dublin|Eire","Europe/Helsinki|Europe/Mariehamn","Europe/Istanbul|Asia/Istanbul","Europe/Istanbul|Turkey","Europe/Kiev|Europe/Kyiv","Europe/Kiev|Europe/Uzhgorod","Europe/Kiev|Europe/Zaporozhye","Europe/Lisbon|Portugal","Europe/Lisbon|WET","Europe/London|Europe/Belfast","Europe/London|Europe/Guernsey","Europe/London|Europe/Isle_of_Man","Europe/London|Europe/Jersey","Europe/London|GB","Europe/London|GB-Eire","Europe/Moscow|W-SU","Europe/Paris|Europe/Monaco","Europe/Prague|Europe/Bratislava","Europe/Rome|Europe/San_Marino","Europe/Rome|Europe/Vatican","Europe/Warsaw|Poland","Europe/Zurich|Europe/Busingen","Europe/Zurich|Europe/Vaduz","Indian/Maldives|Indian/Kerguelen","Pacific/Auckland|Antarctica/McMurdo","Pacific/Auckland|Antarctica/South_Pole","Pacific/Auckland|NZ","Pacific/Chatham|NZ-CHAT","Pacific/Easter|Chile/EasterIsland","Pacific/Enderbury|Pacific/Kanton","Pacific/Guadalcanal|Pacific/Pohnpei","Pacific/Guadalcanal|Pacific/Ponape","Pacific/Guam|Pacific/Saipan","Pacific/Honolulu|HST","Pacific/Honolulu|Pacific/Johnston","Pacific/Honolulu|US/Hawaii","Pacific/Kwajalein|Kwajalein","Pacific/Pago_Pago|Pacific/Midway","Pacific/Pago_Pago|Pacific/Samoa","Pacific/Pago_Pago|US/Samoa","Pacific/Port_Moresby|Antarctica/DumontDUrville","Pacific/Port_Moresby|Pacific/Chuuk","Pacific/Port_Moresby|Pacific/Truk","Pacific/Port_Moresby|Pacific/Yap","Pacific/Tarawa|Pacific/Funafuti","Pacific/Tarawa|Pacific/Majuro","Pacific/Tarawa|Pacific/Wake","Pacific/Tarawa|Pacific/Wallis"],kpt=["AD|Europe/Andorra","AE|Asia/Dubai","AF|Asia/Kabul","AG|America/Puerto_Rico America/Antigua","AI|America/Puerto_Rico America/Anguilla","AL|Europe/Tirane","AM|Asia/Yerevan","AO|Africa/Lagos Africa/Luanda","AQ|Antarctica/Casey Antarctica/Davis Antarctica/Mawson Antarctica/Palmer Antarctica/Rothera Antarctica/Troll Antarctica/Vostok Pacific/Auckland Pacific/Port_Moresby Asia/Riyadh Asia/Singapore Antarctica/McMurdo Antarctica/DumontDUrville Antarctica/Syowa","AR|America/Argentina/Buenos_Aires America/Argentina/Cordoba America/Argentina/Salta America/Argentina/Jujuy America/Argentina/Tucuman America/Argentina/Catamarca America/Argentina/La_Rioja America/Argentina/San_Juan America/Argentina/Mendoza America/Argentina/San_Luis America/Argentina/Rio_Gallegos America/Argentina/Ushuaia","AS|Pacific/Pago_Pago","AT|Europe/Vienna","AU|Australia/Lord_Howe Antarctica/Macquarie Australia/Hobart Australia/Melbourne Australia/Sydney Australia/Broken_Hill Australia/Brisbane Australia/Lindeman Australia/Adelaide Australia/Darwin Australia/Perth Australia/Eucla Asia/Tokyo","AW|America/Puerto_Rico America/Aruba","AX|Europe/Helsinki Europe/Mariehamn","AZ|Asia/Baku","BA|Europe/Belgrade Europe/Sarajevo","BB|America/Barbados","BD|Asia/Dhaka","BE|Europe/Brussels","BF|Africa/Abidjan Africa/Ouagadougou","BG|Europe/Sofia","BH|Asia/Qatar Asia/Bahrain","BI|Africa/Maputo Africa/Bujumbura","BJ|Africa/Lagos Africa/Porto-Novo","BL|America/Puerto_Rico America/St_Barthelemy","BM|Atlantic/Bermuda","BN|Asia/Kuching Asia/Brunei","BO|America/La_Paz","BQ|America/Puerto_Rico America/Kralendijk","BR|America/Noronha America/Belem America/Fortaleza America/Recife America/Araguaina America/Maceio America/Bahia America/Sao_Paulo America/Campo_Grande America/Cuiaba America/Santarem America/Porto_Velho America/Boa_Vista America/Manaus America/Eirunepe America/Rio_Branco","BS|America/Toronto America/Nassau","BT|Asia/Thimphu","BW|Africa/Maputo Africa/Gaborone","BY|Europe/Minsk","BZ|America/Belize","CA|America/St_Johns America/Halifax America/Glace_Bay America/Moncton America/Goose_Bay America/Toronto America/Iqaluit America/Winnipeg America/Resolute America/Rankin_Inlet America/Regina America/Swift_Current America/Edmonton America/Cambridge_Bay America/Inuvik America/Dawson_Creek America/Fort_Nelson America/Whitehorse America/Dawson America/Vancouver America/Panama America/Puerto_Rico America/Phoenix America/Blanc-Sablon America/Atikokan America/Creston","CC|Asia/Yangon Indian/Cocos","CD|Africa/Maputo Africa/Lagos Africa/Kinshasa Africa/Lubumbashi","CF|Africa/Lagos Africa/Bangui","CG|Africa/Lagos Africa/Brazzaville","CH|Europe/Zurich","CI|Africa/Abidjan","CK|Pacific/Rarotonga","CL|America/Santiago America/Punta_Arenas Pacific/Easter","CM|Africa/Lagos Africa/Douala","CN|Asia/Shanghai Asia/Urumqi","CO|America/Bogota","CR|America/Costa_Rica","CU|America/Havana","CV|Atlantic/Cape_Verde","CW|America/Puerto_Rico America/Curacao","CX|Asia/Bangkok Indian/Christmas","CY|Asia/Nicosia Asia/Famagusta","CZ|Europe/Prague","DE|Europe/Zurich Europe/Berlin Europe/Busingen","DJ|Africa/Nairobi Africa/Djibouti","DK|Europe/Berlin Europe/Copenhagen","DM|America/Puerto_Rico America/Dominica","DO|America/Santo_Domingo","DZ|Africa/Algiers","EC|America/Guayaquil Pacific/Galapagos","EE|Europe/Tallinn","EG|Africa/Cairo","EH|Africa/El_Aaiun","ER|Africa/Nairobi Africa/Asmara","ES|Europe/Madrid Africa/Ceuta Atlantic/Canary","ET|Africa/Nairobi Africa/Addis_Ababa","FI|Europe/Helsinki","FJ|Pacific/Fiji","FK|Atlantic/Stanley","FM|Pacific/Kosrae Pacific/Port_Moresby Pacific/Guadalcanal Pacific/Chuuk Pacific/Pohnpei","FO|Atlantic/Faroe","FR|Europe/Paris","GA|Africa/Lagos Africa/Libreville","GB|Europe/London","GD|America/Puerto_Rico America/Grenada","GE|Asia/Tbilisi","GF|America/Cayenne","GG|Europe/London Europe/Guernsey","GH|Africa/Abidjan Africa/Accra","GI|Europe/Gibraltar","GL|America/Nuuk America/Danmarkshavn America/Scoresbysund America/Thule","GM|Africa/Abidjan Africa/Banjul","GN|Africa/Abidjan Africa/Conakry","GP|America/Puerto_Rico America/Guadeloupe","GQ|Africa/Lagos Africa/Malabo","GR|Europe/Athens","GS|Atlantic/South_Georgia","GT|America/Guatemala","GU|Pacific/Guam","GW|Africa/Bissau","GY|America/Guyana","HK|Asia/Hong_Kong","HN|America/Tegucigalpa","HR|Europe/Belgrade Europe/Zagreb","HT|America/Port-au-Prince","HU|Europe/Budapest","ID|Asia/Jakarta Asia/Pontianak Asia/Makassar Asia/Jayapura","IE|Europe/Dublin","IL|Asia/Jerusalem","IM|Europe/London Europe/Isle_of_Man","IN|Asia/Kolkata","IO|Indian/Chagos","IQ|Asia/Baghdad","IR|Asia/Tehran","IS|Africa/Abidjan Atlantic/Reykjavik","IT|Europe/Rome","JE|Europe/London Europe/Jersey","JM|America/Jamaica","JO|Asia/Amman","JP|Asia/Tokyo","KE|Africa/Nairobi","KG|Asia/Bishkek","KH|Asia/Bangkok Asia/Phnom_Penh","KI|Pacific/Tarawa Pacific/Kanton Pacific/Kiritimati","KM|Africa/Nairobi Indian/Comoro","KN|America/Puerto_Rico America/St_Kitts","KP|Asia/Pyongyang","KR|Asia/Seoul","KW|Asia/Riyadh Asia/Kuwait","KY|America/Panama America/Cayman","KZ|Asia/Almaty Asia/Qyzylorda Asia/Qostanay Asia/Aqtobe Asia/Aqtau Asia/Atyrau Asia/Oral","LA|Asia/Bangkok Asia/Vientiane","LB|Asia/Beirut","LC|America/Puerto_Rico America/St_Lucia","LI|Europe/Zurich Europe/Vaduz","LK|Asia/Colombo","LR|Africa/Monrovia","LS|Africa/Johannesburg Africa/Maseru","LT|Europe/Vilnius","LU|Europe/Brussels Europe/Luxembourg","LV|Europe/Riga","LY|Africa/Tripoli","MA|Africa/Casablanca","MC|Europe/Paris Europe/Monaco","MD|Europe/Chisinau","ME|Europe/Belgrade Europe/Podgorica","MF|America/Puerto_Rico America/Marigot","MG|Africa/Nairobi Indian/Antananarivo","MH|Pacific/Tarawa Pacific/Kwajalein Pacific/Majuro","MK|Europe/Belgrade Europe/Skopje","ML|Africa/Abidjan Africa/Bamako","MM|Asia/Yangon","MN|Asia/Ulaanbaatar Asia/Hovd","MO|Asia/Macau","MP|Pacific/Guam Pacific/Saipan","MQ|America/Martinique","MR|Africa/Abidjan Africa/Nouakchott","MS|America/Puerto_Rico America/Montserrat","MT|Europe/Malta","MU|Indian/Mauritius","MV|Indian/Maldives","MW|Africa/Maputo Africa/Blantyre","MX|America/Mexico_City America/Cancun America/Merida America/Monterrey America/Matamoros America/Chihuahua America/Ciudad_Juarez America/Ojinaga America/Mazatlan America/Bahia_Banderas America/Hermosillo America/Tijuana","MY|Asia/Kuching Asia/Singapore Asia/Kuala_Lumpur","MZ|Africa/Maputo","NA|Africa/Windhoek","NC|Pacific/Noumea","NE|Africa/Lagos Africa/Niamey","NF|Pacific/Norfolk","NG|Africa/Lagos","NI|America/Managua","NL|Europe/Brussels Europe/Amsterdam","NO|Europe/Berlin Europe/Oslo","NP|Asia/Kathmandu","NR|Pacific/Nauru","NU|Pacific/Niue","NZ|Pacific/Auckland Pacific/Chatham","OM|Asia/Dubai Asia/Muscat","PA|America/Panama","PE|America/Lima","PF|Pacific/Tahiti Pacific/Marquesas Pacific/Gambier","PG|Pacific/Port_Moresby Pacific/Bougainville","PH|Asia/Manila","PK|Asia/Karachi","PL|Europe/Warsaw","PM|America/Miquelon","PN|Pacific/Pitcairn","PR|America/Puerto_Rico","PS|Asia/Gaza Asia/Hebron","PT|Europe/Lisbon Atlantic/Madeira Atlantic/Azores","PW|Pacific/Palau","PY|America/Asuncion","QA|Asia/Qatar","RE|Asia/Dubai Indian/Reunion","RO|Europe/Bucharest","RS|Europe/Belgrade","RU|Europe/Kaliningrad Europe/Moscow Europe/Simferopol Europe/Kirov Europe/Volgograd Europe/Astrakhan Europe/Saratov Europe/Ulyanovsk Europe/Samara Asia/Yekaterinburg Asia/Omsk Asia/Novosibirsk Asia/Barnaul Asia/Tomsk Asia/Novokuznetsk Asia/Krasnoyarsk Asia/Irkutsk Asia/Chita Asia/Yakutsk Asia/Khandyga Asia/Vladivostok Asia/Ust-Nera Asia/Magadan Asia/Sakhalin Asia/Srednekolymsk Asia/Kamchatka Asia/Anadyr","RW|Africa/Maputo Africa/Kigali","SA|Asia/Riyadh","SB|Pacific/Guadalcanal","SC|Asia/Dubai Indian/Mahe","SD|Africa/Khartoum","SE|Europe/Berlin Europe/Stockholm","SG|Asia/Singapore","SH|Africa/Abidjan Atlantic/St_Helena","SI|Europe/Belgrade Europe/Ljubljana","SJ|Europe/Berlin Arctic/Longyearbyen","SK|Europe/Prague Europe/Bratislava","SL|Africa/Abidjan Africa/Freetown","SM|Europe/Rome Europe/San_Marino","SN|Africa/Abidjan Africa/Dakar","SO|Africa/Nairobi Africa/Mogadishu","SR|America/Paramaribo","SS|Africa/Juba","ST|Africa/Sao_Tome","SV|America/El_Salvador","SX|America/Puerto_Rico America/Lower_Princes","SY|Asia/Damascus","SZ|Africa/Johannesburg Africa/Mbabane","TC|America/Grand_Turk","TD|Africa/Ndjamena","TF|Asia/Dubai Indian/Maldives Indian/Kerguelen","TG|Africa/Abidjan Africa/Lome","TH|Asia/Bangkok","TJ|Asia/Dushanbe","TK|Pacific/Fakaofo","TL|Asia/Dili","TM|Asia/Ashgabat","TN|Africa/Tunis","TO|Pacific/Tongatapu","TR|Europe/Istanbul","TT|America/Puerto_Rico America/Port_of_Spain","TV|Pacific/Tarawa Pacific/Funafuti","TW|Asia/Taipei","TZ|Africa/Nairobi Africa/Dar_es_Salaam","UA|Europe/Simferopol Europe/Kyiv","UG|Africa/Nairobi Africa/Kampala","UM|Pacific/Pago_Pago Pacific/Tarawa Pacific/Midway Pacific/Wake","US|America/New_York America/Detroit America/Kentucky/Louisville America/Kentucky/Monticello America/Indiana/Indianapolis America/Indiana/Vincennes America/Indiana/Winamac America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Vevay America/Chicago America/Indiana/Tell_City America/Indiana/Knox America/Menominee America/North_Dakota/Center America/North_Dakota/New_Salem America/North_Dakota/Beulah America/Denver America/Boise America/Phoenix America/Los_Angeles America/Anchorage America/Juneau America/Sitka America/Metlakatla America/Yakutat America/Nome America/Adak Pacific/Honolulu","UY|America/Montevideo","UZ|Asia/Samarkand Asia/Tashkent","VA|Europe/Rome Europe/Vatican","VC|America/Puerto_Rico America/St_Vincent","VE|America/Caracas","VG|America/Puerto_Rico America/Tortola","VI|America/Puerto_Rico America/St_Thomas","VN|Asia/Bangkok Asia/Ho_Chi_Minh","VU|Pacific/Efate","WF|Pacific/Tarawa Pacific/Wallis","WS|Pacific/Apia","YE|Asia/Riyadh Asia/Aden","YT|Africa/Nairobi Indian/Mayotte","ZA|Africa/Johannesburg","ZM|Africa/Maputo Africa/Lusaka","ZW|Africa/Maputo Africa/Harare"],Spt={version:xpt,zones:wpt,links:_pt,countries:kpt};var lZ;function Cpt(){if(lZ)return JC.exports;lZ=1;var e=JC.exports=$be();return e.tz.load(Spt),JC.exports}var qpt=d4.exports,uZ;function Rpt(){return uZ||(uZ=1,function(e){//! moment-timezone-utils.js +(function(t,n){e.exports?e.exports=n(ypt):n(t.moment)})(Apt,function(t){t.version===void 0&&t.default&&(t=t.default);var n="0.5.47",o={},r={},s={},i={},c={},l;(!t||typeof t.version!="string")&&ce("Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/");var u=t.version.split("."),d=+u[0],p=+u[1];(d<2||d===2&&p<6)&&ce("Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js "+t.version+". See momentjs.com");function f(ie){return ie>96?ie-87:ie>64?ie-29:ie-48}function b(ie){var we=0,re=ie.split("."),pe=re[0],ke=re[1]||"",Se=1,se,L=0,U=1;for(ie.charCodeAt(0)===45&&(we=1,U=-1),we;we<pe.length;we++)se=f(pe.charCodeAt(we)),L=60*L+se;for(we=0;we<ke.length;we++)Se=Se/60,se=f(ke.charCodeAt(we)),L+=se*Se;return L*U}function h(ie){for(var we=0;we<ie.length;we++)ie[we]=b(ie[we])}function g(ie,we){for(var re=0;re<we;re++)ie[re]=Math.round((ie[re-1]||0)+ie[re]*6e4);ie[we-1]=1/0}function z(ie,we){var re=[],pe;for(pe=0;pe<we.length;pe++)re[pe]=ie[we[pe]];return re}function A(ie){var we=ie.split("|"),re=we[2].split(" "),pe=we[3].split(""),ke=we[4].split(" ");return h(re),h(pe),h(ke),g(ke,pe.length),{name:we[0],abbrs:z(we[1].split(" "),pe),offsets:z(re,pe),untils:ke,population:we[5]|0}}function _(ie){ie&&this._set(A(ie))}function v(ie,we){var re=we.length;if(ie<we[0])return 0;if(re>1&&we[re-1]===1/0&&ie>=we[re-2])return re-1;if(ie>=we[re-1])return-1;for(var pe,ke=0,Se=re-1;Se-ke>1;)pe=Math.floor((ke+Se)/2),we[pe]<=ie?ke=pe:Se=pe;return Se}_.prototype={_set:function(ie){this.name=ie.name,this.abbrs=ie.abbrs,this.untils=ie.untils,this.offsets=ie.offsets,this.population=ie.population},_index:function(ie){var we=+ie,re=this.untils,pe;if(pe=v(we,re),pe>=0)return pe},countries:function(){var ie=this.name;return Object.keys(s).filter(function(we){return s[we].zones.indexOf(ie)!==-1})},parse:function(ie){var we=+ie,re=this.offsets,pe=this.untils,ke=pe.length-1,Se,se,L,U;for(U=0;U<ke;U++)if(Se=re[U],se=re[U+1],L=re[U&&U-1],Se<se&&me.moveAmbiguousForward?Se=se:Se>L&&me.moveInvalidForward&&(Se=L),we<pe[U]-Se*6e4)return re[U];return re[ke]},abbr:function(ie){return this.abbrs[this._index(ie)]},offset:function(ie){return ce("zone.offset has been deprecated in favor of zone.utcOffset"),this.offsets[this._index(ie)]},utcOffset:function(ie){return this.offsets[this._index(ie)]}};function M(ie,we){this.name=ie,this.zones=we}function y(ie){var we=ie.toTimeString(),re=we.match(/\([a-z ]+\)/i);re&&re[0]?(re=re[0].match(/[A-Z]/g),re=re?re.join(""):void 0):(re=we.match(/[A-Z]{3,5}/g),re=re?re[0]:void 0),re==="GMT"&&(re=void 0),this.at=+ie,this.abbr=re,this.offset=ie.getTimezoneOffset()}function k(ie){this.zone=ie,this.offsetScore=0,this.abbrScore=0}k.prototype.scoreOffsetAt=function(ie){this.offsetScore+=Math.abs(this.zone.utcOffset(ie.at)-ie.offset),this.zone.abbr(ie.at).replace(/[^A-Z]/g,"")!==ie.abbr&&this.abbrScore++};function S(ie,we){for(var re,pe;pe=((we.at-ie.at)/12e4|0)*6e4;)re=new y(new Date(ie.at+pe)),re.offset===ie.offset?ie=re:we=re;return ie}function C(){var ie=new Date().getFullYear()-2,we=new y(new Date(ie,0,1)),re=we.offset,pe=[we],ke,Se,se,L;for(L=1;L<48;L++)se=new Date(ie,L,1).getTimezoneOffset(),se!==re&&(Se=new y(new Date(ie,L,1)),ke=S(we,Se),pe.push(ke),pe.push(new y(new Date(ke.at+6e4))),we=Se,re=se);for(L=0;L<4;L++)pe.push(new y(new Date(ie+L,0,1))),pe.push(new y(new Date(ie+L,6,1)));return pe}function R(ie,we){return ie.offsetScore!==we.offsetScore?ie.offsetScore-we.offsetScore:ie.abbrScore!==we.abbrScore?ie.abbrScore-we.abbrScore:ie.zone.population!==we.zone.population?we.zone.population-ie.zone.population:we.zone.name.localeCompare(ie.zone.name)}function T(ie,we){var re,pe;for(h(we),re=0;re<we.length;re++)pe=we[re],c[pe]=c[pe]||{},c[pe][ie]=!0}function E(ie){var we=ie.length,re={},pe=[],ke={},Se,se,L,U;for(Se=0;Se<we;Se++)if(L=ie[Se].offset,!ke.hasOwnProperty(L)){U=c[L]||{};for(se in U)U.hasOwnProperty(se)&&(re[se]=!0);ke[L]=!0}for(Se in re)re.hasOwnProperty(Se)&&pe.push(i[Se]);return pe}function B(){try{var ie=Intl.DateTimeFormat().resolvedOptions().timeZone;if(ie&&ie.length>3){var we=i[j(ie)];if(we)return we;ce("Moment Timezone found "+ie+" from the Intl api, but did not have that data loaded.")}}catch{}var re=C(),pe=re.length,ke=E(re),Se=[],se,L,U;for(L=0;L<ke.length;L++){for(se=new k(P(ke[L])),U=0;U<pe;U++)se.scoreOffsetAt(re[U]);Se.push(se)}return Se.sort(R),Se.length>0?Se[0].zone.name:void 0}function N(ie){return(!l||ie)&&(l=B()),l}function j(ie){return(ie||"").toLowerCase().replace(/\//g,"_")}function I(ie){var we,re,pe,ke;for(typeof ie=="string"&&(ie=[ie]),we=0;we<ie.length;we++)pe=ie[we].split("|"),re=pe[0],ke=j(re),o[ke]=ie[we],i[ke]=re,T(ke,pe[2].split(" "))}function P(ie,we){ie=j(ie);var re=o[ie],pe;return re instanceof _?re:typeof re=="string"?(re=new _(re),o[ie]=re,re):r[ie]&&we!==P&&(pe=P(r[ie],P))?(re=o[ie]=new _,re._set(pe),re.name=i[ie],re):null}function $(){var ie,we=[];for(ie in i)i.hasOwnProperty(ie)&&(o[ie]||o[r[ie]])&&i[ie]&&we.push(i[ie]);return we.sort()}function F(){return Object.keys(s)}function X(ie){var we,re,pe,ke;for(typeof ie=="string"&&(ie=[ie]),we=0;we<ie.length;we++)re=ie[we].split("|"),pe=j(re[0]),ke=j(re[1]),r[pe]=ke,i[pe]=re[0],r[ke]=pe,i[ke]=re[1]}function Z(ie){var we,re,pe,ke;if(!(!ie||!ie.length))for(we=0;we<ie.length;we++)ke=ie[we].split("|"),re=ke[0].toUpperCase(),pe=ke[1].split(" "),s[re]=new M(re,pe)}function V(ie){return ie=ie.toUpperCase(),s[ie]||null}function ee(ie,we){if(ie=V(ie),!ie)return null;var re=ie.zones.sort();return we?re.map(function(pe){var ke=P(pe);return{name:pe,offset:ke.utcOffset(new Date)}}):re}function te(ie){I(ie.zones),X(ie.links),Z(ie.countries),me.dataVersion=ie.version}function J(ie){return J.didShowError||(J.didShowError=!0,ce("moment.tz.zoneExists('"+ie+"') has been deprecated in favor of !moment.tz.zone('"+ie+"')")),!!P(ie)}function ue(ie){var we=ie._f==="X"||ie._f==="x";return!!(ie._a&&ie._tzm===void 0&&!we)}function ce(ie){typeof console<"u"&&typeof console.error=="function"&&console.error(ie)}function me(ie){var we=Array.prototype.slice.call(arguments,0,-1),re=arguments[arguments.length-1],pe=t.utc.apply(null,we),ke;return!t.isMoment(ie)&&ue(pe)&&(ke=P(re))&&pe.add(ke.parse(pe),"minutes"),pe.tz(re),pe}me.version=n,me.dataVersion="",me._zones=o,me._links=r,me._names=i,me._countries=s,me.add=I,me.link=X,me.load=te,me.zone=P,me.zoneExists=J,me.guess=N,me.names=$,me.Zone=_,me.unpack=A,me.unpackBase60=b,me.needsOffset=ue,me.moveInvalidForward=!0,me.moveAmbiguousForward=!1,me.countries=F,me.zonesForCountry=ee;var de=t.fn;t.tz=me,t.defaultZone=null,t.updateOffset=function(ie,we){var re=t.defaultZone,pe;if(ie._z===void 0&&(re&&ue(ie)&&!ie._isUTC&&ie.isValid()&&(ie._d=t.utc(ie._a)._d,ie.utc().add(re.parse(ie),"minutes")),ie._z=re),ie._z)if(pe=ie._z.utcOffset(ie),Math.abs(pe)<16&&(pe=pe/60),ie.utcOffset!==void 0){var ke=ie._z;ie.utcOffset(-pe,we),ie._z=ke}else ie.zone(pe,we)},de.tz=function(ie,we){if(ie){if(typeof ie!="string")throw new Error("Time zone name must be a string, got "+ie+" ["+typeof ie+"]");return this._z=P(ie),this._z?t.updateOffset(this,we):ce("Moment Timezone has no data for "+ie+". See http://momentjs.com/timezone/docs/#/data-loading/."),this}if(this._z)return this._z.name};function Ae(ie){return function(){return this._z?this._z.abbr(this):ie.call(this)}}function ye(ie){return function(){return this._z=null,ie.apply(this,arguments)}}function Ne(ie){return function(){return arguments.length>0&&(this._z=null),ie.apply(this,arguments)}}de.zoneName=Ae(de.zoneName),de.zoneAbbr=Ae(de.zoneAbbr),de.utc=ye(de.utc),de.local=ye(de.local),de.utcOffset=Ne(de.utcOffset),t.tz.setDefault=function(ie){return(d<2||d===2&&p<9)&&ce("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+t.version+"."),t.defaultZone=ie?P(ie):null,t};var je=t.momentProperties;return Object.prototype.toString.call(je)==="[object Array]"?(je.push("_z"),je.push("_a")):je&&(je._z=null),t})}(l4)),l4.exports}$be();var u4={exports:{}},QC={exports:{}};const vpt="2025a",xpt=JSON.parse('["Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5","Africa/Nairobi|LMT +0230 EAT +0245|-2r.g -2u -30 -2J|012132|-2ua2r.g N6nV.g 3Fbu h1cu dzbJ|47e5","Africa/Algiers|LMT PMT WET WEST CET CEST|-c.c -9.l 0 -10 -10 -20|01232323232323232454542423234542324|-3bQ0c.c MDA2.P cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5","Africa/Lagos|LMT GMT +0030 WAT|-d.z 0 -u -10|01023|-2B40d.z 7iod.z dnXK.p dLzH.z|17e6","Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldX0 2xoo0|39e4","Africa/Maputo|LMT CAT|-2a.i -20|01|-2sw2a.i|26e5","Africa/Cairo|LMT EET EEST|-25.9 -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBC5.9 1AQM5.9 vb0 1ip0 11z0 1iN0 1nz0 12p0 1pz0 10N0 1pz0 16p0 1jz0 s3d0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1WL0 rd0 1Rz0 wp0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1qL0 Xd0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1ny0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 WL0 1qN0 Rb0 1wp0 On0 1zd0 Lz0 1EN0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0 kSp0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1a10 1fz0|15e6","Africa/Casablanca|LMT +00 +01|u.k 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2gMnt.E 130Lt.E rb0 Dd0 dVb0 b6p0 TX0 EoB0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4mn0 SyN0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0|32e5","Africa/Ceuta|LMT WET WEST CET CEST|l.g 0 -10 -10 -20|0121212121212121212121343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-2M0M0 GdX0 11z0 drd0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1y7o0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4VB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|85e3","Africa/El_Aaiun|LMT -01 +00 +01|Q.M 10 0 -10|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1rDz7.c 1GVA7.c 6L0 AL0 1Nd0 XX0 1Cp0 pz0 1cBB0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0|20e4","Africa/Johannesburg|LMT SAST SAST SAST|-1Q -1u -20 -30|0123232|-39EpQ qTcm 1Ajdu 1cL0 1cN0 1cL0|84e5","Africa/Juba|LMT CAT CAST EAT|-26.s -20 -30 -30|012121212121212121212121212121212131|-1yW26.s 1zK06.s 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 PeX0|","Africa/Khartoum|LMT CAT CAST EAT|-2a.8 -20 -30 -30|012121212121212121212121212121212131|-1yW2a.8 1zK0a.8 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 HjL0|51e5","Africa/Monrovia|LMT MMT MMT GMT|H.8 H.8 I.u 0|0123|-3ygng.Q 1usM0 28G01.m|11e5","Africa/Ndjamena|LMT WAT WAST|-10.c -10 -20|0121|-2le10.c 2J3c0.c Wn0|13e5","Africa/Sao_Tome|LMT LMT GMT WAT|-q.U A.J 0 -10|01232|-3tooq.U 18aoq.U 4i6N0 2q00|","Africa/Tripoli|LMT CET CEST EET|-Q.I -10 -20 -20|012121213121212121212121213123123|-21JcQ.I 1hnBQ.I vx0 4iP0 xx0 4eN0 Bb0 7ip0 U0n0 A10 1db0 1cN0 1db0 1dd0 1db0 1eN0 1bb0 1e10 1cL0 1c10 1db0 1dd0 1db0 1cN0 1db0 1q10 fAn0 1ep0 1db0 AKq0 TA0 1o00|11e5","Africa/Tunis|LMT PMT CET CEST|-E.I -9.l -10 -20|01232323232323232323232323232323232|-3zO0E.I 1cBAv.n 18pa9.l 1qM0 DA0 3Tc0 11B0 1ze0 WM0 7z0 3d0 14L0 1cN0 1f90 1ar0 16J0 1gXB0 WM0 1rA0 11c0 nwo0 Ko0 1cM0 1cM0 1rA0 10M0 zuM0 10N0 1aN0 1qM0 WM0 1qM0 11A0 1o00|20e5","Africa/Windhoek|LMT +0130 SAST SAST CAT WAT|-18.o -1u -20 -30 -20 -10|012324545454545454545454545454545454545454545454545454|-39Ep8.o qTbC.o 1Ajdu 1cL0 1SqL0 9Io0 16P0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|32e4","America/Adak|LMT LMT NST NWT NPT BST BDT AHST HST HDT|-cd.m bK.C b0 a0 a0 b0 a0 a0 a0 90|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVzf.p 1EX1d.m 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326","America/Anchorage|LMT LMT AST AWT APT AHST AHDT YST AKST AKDT|-e0.o 9X.A a0 90 90 a0 90 90 90 80|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVxs.n 1EX20.o 8wX0 iA0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4","America/Puerto_Rico|LMT AST AWT APT|4o.p 40 30 30|01231|-2Qi7z.z 1IUbz.z 7XT0 iu0|24e5","America/Araguaina|LMT -03 -02|3c.M 30 20|0121212121212121212121212121212121212121212121212121|-2glwL.c HdKL.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 ny10 Lz0|14e4","America/Argentina/Buenos_Aires|LMT CMT -04 -03 -02|3R.M 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343434343|-331U6.c 125cn pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Catamarca|LMT CMT -04 -03 -02|4n.8 4g.M 40 30 20|012323232323232323232323232323232323232323234343434243432343|-331TA.Q 125bR.E pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Cordoba|LMT CMT -04 -03 -02|4g.M 4g.M 40 30 20|012323232323232323232323232323232323232323234343434243434343|-331TH.c 125c0 pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0 1qN0 WL0|","America/Argentina/Jujuy|LMT CMT -04 -03 -02|4l.c 4g.M 40 30 20|0123232323232323232323232323232323232323232343434232434343|-331TC.M 125bT.A pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1ze0 TX0 1ld0 WK0 1wp0 TX0 A4p0 uL0|","America/Argentina/La_Rioja|LMT CMT -04 -03 -02|4r.o 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342343432343|-331Tw.A 125bN.o pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Mendoza|LMT CMT -04 -03 -02|4z.g 4g.M 40 30 20|012323232323232323232323232323232323232323234343423232432343|-331To.I 125bF.w pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1u20 SL0 1vd0 Tb0 1wp0 TW0 ri10 Op0 7TX0 uL0|","America/Argentina/Rio_Gallegos|LMT CMT -04 -03 -02|4A.Q 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343432343|-331Tn.8 125bD.U pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|","America/Argentina/Salta|LMT CMT -04 -03 -02|4l.E 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342434343|-331TC.k 125bT.8 pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0|","America/Argentina/San_Juan|LMT CMT -04 -03 -02|4y.4 4g.M 40 30 20|0123232323232323232323232323232323232323232343434342343432343|-331Tp.U 125bG.I pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rld0 m10 8lb0 uL0|","America/Argentina/San_Luis|LMT CMT -04 -03 -02|4p.o 4g.M 40 30 20|0123232323232323232323232323232323232323232343434232323432323|-331Ty.A 125bP.o pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 XX0 1q20 SL0 AN0 vDb0 m10 8lb0 8L0 jd0 1qN0 WL0 1qN0|","America/Argentina/Tucuman|LMT CMT -04 -03 -02|4k.Q 4g.M 40 30 20|01232323232323232323232323232323232323232323434343424343234343|-331TD.8 125bT.U pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 4N0 8BX0 uL0 1qN0 WL0|","America/Argentina/Ushuaia|LMT CMT -04 -03 -02|4x.c 4g.M 40 30 20|012323232323232323232323232323232323232323234343434343432343|-331Tq.M 125bH.A pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rkN0 8p0 8zb0 uL0|","America/Asuncion|LMT AMT -04 -03|3O.E 3O.E 40 30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-3eLw9.k 1FGo0 1DKM9.k 3CL0 3Dd0 10L0 1pB0 10n0 1pB0 10n0 1pB0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1lB0 14n0 1dd0 1cL0 1fd0 WL0 1rd0 1aL0 1dB0 Xz0 1qp0 Xb0 1qN0 10L0 1rB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 WN0 1qL0 11B0 1nX0 1ip0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 TX0 1tB0 19X0 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0|28e5","America/Panama|LMT CMT EST|5i.8 5j.A 50|012|-3eLuF.Q Iy01.s|15e5","America/Bahia_Banderas|LMT MST CST MDT CDT|71 70 60 60 50|01213121313131313131313131313131313142424242424242424242424242|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 otX0 2bmP0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|84e3","America/Bahia|LMT -03 -02|2y.4 30 20|01212121212121212121212121212121212121212121212121212121212121|-2glxp.U HdLp.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 l5B0 Rb0|27e5","America/Barbados|LMT AST ADT -0330|3W.t 40 30 3u|0121213121212121|-2m4k1.v 1eAN1.v RB0 1Bz0 Op0 1rb0 11d0 1jJc0 IL0 1ip0 17b0 1ip0 17b0 1ld0 13b0|28e4","America/Belem|LMT -03 -02|3d.U 30 20|012121212121212121212121212121|-2glwK.4 HdKK.4 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|20e5","America/Belize|LMT CST -0530 CWT CPT CDT|5Q.M 60 5u 50 50 50|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121215151|-2kBu7.c fPA7.c Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu Rcu 7Bt0 Ni0 4nd0 Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu e9Au qn0 lxB0 mn0|57e3","America/Boa_Vista|LMT -04 -03|42.E 40 30|0121212121212121212121212121212121|-2glvV.k HdKV.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 smp0 WL0 1tB0 2L0|62e2","America/Bogota|LMT BMT -05 -04|4U.g 4U.g 50 40|01232|-3sTv3.I 1eIo0 38yo3.I 1PX0|90e5","America/Boise|LMT PST PDT MST MWT MPT MDT|7I.N 80 70 70 60 60 60|01212134536363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363|-3tFE0 1nEe0 1nX0 11B0 1nX0 8C10 JCL0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 Dd0 1Kn0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e4","America/Cambridge_Bay|-00 MST MWT MPT MDT CST CDT EST|0 70 60 60 60 60 50 50|012314141414141414141414141414141414141414141414141414141414567541414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-21Jc0 RO90 8x20 ix0 14HB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11A0 1nX0 2K0 WQ0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e2","America/Campo_Grande|LMT -04 -03|3C.s 40 30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwl.w HdLl.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|77e4","America/Cancun|LMT CST EST CDT EDT|5L.4 60 50 50 40|01213132431313131313131313131313131313131312|-1UQG0 2q3C0 2tx0 wgP0 1lb0 14p0 1lb0 14o0 Lz0 xB0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4","America/Caracas|LMT CMT -0430 -04|4r.I 4r.E 4u 40|012323|-3eLvw.g ROnX.U 28KM2.k 1IwOu kqo0|29e5","America/Cayenne|LMT -04 -03|3t.k 40 30|012|-2mrwu.E 2gWou.E|58e3","America/Chicago|LMT CST CDT EST CWT CPT|5O.A 60 50 50 50 50|012121212121212121212121212121212121213121212121214512121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 1wp0 TX0 WN0 1qL0 1cN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 11B0 1Hz0 14p0 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5","America/Chihuahua|LMT MST CST MDT CDT|74.k 70 60 60 50|0121312424231313131313131313131313131313131313131313131313132|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|81e4","America/Ciudad_Juarez|LMT MST CST MDT CDT|75.U 70 60 60 50|01213124242313131313131313131313131313131313131313131313131321313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1wn0 cm0 EP0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Costa_Rica|LMT SJMT CST CDT|5A.d 5A.d 60 50|01232323232|-3eLun.L 1fyo0 2lu0n.L Db0 1Kp0 Db0 pRB0 15b0 1kp0 mL0|12e5","America/Phoenix|LMT MST MDT MWT|7s.i 70 60 60|012121313121|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 4Al1 Ap0 1db0 SWqX 1cL0|42e5","America/Cuiaba|LMT -04 -03|3I.k 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwf.E HdLf.E 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 4a10 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|54e4","America/Danmarkshavn|LMT -03 -02 GMT|1e.E 30 20 0|01212121212121212121212121212121213|-2a5WJ.k 2z5fJ.k 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 DC0|8","America/Dawson_Creek|LMT PST PDT PWT PPT MST|80.U 80 70 70 70 70|01213412121212121212121212121212121212121212121212121212125|-3tofX.4 1nspX.4 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 ML0|12e3","America/Dawson|LMT YST YDT YWT YPT YDDT PST PDT MST|9h.E 90 80 80 80 70 80 70 70|0121213415167676767676767676767676767676767676767676767676767676767676767676767676767676767678|-2MSeG.k GWpG.k 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 jrA0 fNd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|13e2","America/Denver|LMT MST MDT MWT MPT|6X.U 70 60 60 60|012121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFF0 1nEe0 1nX0 11B0 1nX0 11B0 1qL0 WN0 mn0 Ord0 8x20 ix0 LCN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5","America/Detroit|LMT CST EST EWT EPT EDT|5w.b 60 50 40 40 40|0123425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2Cgir.N peqr.N 156L0 8x40 iv0 6fd0 11z0 JxX1 SMX 1cN0 1cL0 aW10 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e5","America/Edmonton|LMT MST MDT MWT MPT|7x.Q 70 60 60 60|0121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2yd4q.8 shdq.8 1in0 17d0 hz0 2dB0 1fz0 1a10 11z0 1qN0 WL0 1qN0 11z0 IGN0 8x20 ix0 3NB0 11z0 XQp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|10e5","America/Eirunepe|LMT -05 -04|4D.s 50 40|0121212121212121212121212121212121|-2glvk.w HdLk.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0 yTd0 d5X0|31e3","America/El_Salvador|LMT CST CDT|5U.M 60 50|012121|-1XiG3.c 2Fvc3.c WL0 1qN0 WL0|11e5","America/Tijuana|LMT MST PST PDT PWT PPT|7M.4 70 80 70 70 70|012123245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQF0 4Q00 8mp0 8lz0 SN0 1cL0 pHB0 83r0 AU0 5MN0 1Rz0 38N0 Wn0 1qP0 11z0 1o10 11z0 3NA0 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 BUp0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|20e5","America/Fort_Nelson|LMT PST PDT PWT PPT MST|8a.L 80 70 70 70 70|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121215|-3tofN.d 1nspN.d 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2","America/Fort_Wayne|LMT CST CDT CWT CPT EST EDT|5I.C 60 50 50 50 50 40|0121212134121212121212121212151565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 QI10 Db0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 5Tz0 1o10 qLb0 1cL0 1cN0 1cL0 1qhd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Fortaleza|LMT -03 -02|2y 30 20|0121212121212121212121212121212121212121|-2glxq HdLq 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 5z0 2mN0 On0|34e5","America/Glace_Bay|LMT AST ADT AWT APT|3X.M 40 30 30 30|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsI0.c CwO0.c 1in0 UGp0 8x50 iu0 iq10 11z0 Jg10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3","America/Godthab|LMT -03 -02 -01|3q.U 30 20 10|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2a5Ux.4 2z5dx.4 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 2so0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e3","America/Goose_Bay|LMT NST NDT NST NDT NWT NPT AST ADT ADDT|41.E 3u.Q 2u.Q 3u 2u 2u 2u 40 30 20|0121343434343434356343434343434343434343434343434343434343437878787878787878787878787878787878787878787879787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787|-3tojW.k 1nspt.c 1in0 DXb0 2HbX.8 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 S10 g0u 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2","America/Grand_Turk|LMT KMT EST EDT AST|4I.w 57.a 50 40 40|01232323232323232323232323232323232323232323232323232323232323232323232323243232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLvf.s RK0m.C 2HHBQ.O 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 7jA0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2","America/Guatemala|LMT CST CDT|62.4 60 50|0121212121|-24KhV.U 2efXV.U An0 mtd0 Nz0 ifB0 17b0 zDB0 11z0|13e5","America/Guayaquil|LMT QMT -05 -04|5j.k 5e 50 40|01232|-3eLuE.E 1DNzS.E 2uILK rz0|27e5","America/Guyana|LMT -04 -0345 -03|3Q.D 40 3J 30|01231|-2mf87.l 8Hc7.l 2r7bJ Ey0f|80e4","America/Halifax|LMT AST ADT AWT APT|4e.o 40 30 30 30|0121212121212121212121212121212121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsHJ.A xzzJ.A 1db0 3I30 1in0 3HX0 IL0 1E10 ML0 1yN0 Pb0 1Bd0 Mn0 1Bd0 Rz0 1w10 Xb0 1w10 LX0 1w10 Xb0 1w10 Lz0 1C10 Jz0 1E10 OL0 1yN0 Un0 1qp0 Xb0 1qp0 11X0 1w10 Lz0 1HB0 LX0 1C10 FX0 1w10 Xb0 1qp0 Xb0 1BB0 LX0 1td0 Xb0 1qp0 Xb0 Rf0 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 6i10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4","America/Havana|LMT HMT CST CDT|5t.s 5t.A 50 40|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLuu.w 1qx00.8 72zu.o ML0 sld0 An0 1Nd0 Db0 1Nd0 An0 6Ep0 An0 1Nd0 An0 JDd0 Mn0 1Ap0 On0 1fd0 11X0 1qN0 WL0 1wp0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 14n0 1ld0 14L0 1kN0 15b0 1kp0 1cL0 1cN0 1fz0 1a10 1fz0 1fB0 11z0 14p0 1nX0 11B0 1nX0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 1a10 1in0 1a10 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 17c0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 11A0 6i00 Rc0 1wo0 U00 1tA0 Rc0 1wo0 U00 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5","America/Hermosillo|LMT MST CST MDT|7n.Q 70 60 60|01213121313131|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 otX0 2bmP0 1lb0 14p0 1lb0 14p0 1lb0|64e4","America/Indiana/Knox|LMT CST CDT CWT CPT EST|5K.u 60 50 50 50 50|01212134121212121212121212121212121212151212121212121212121212121212121212121212121212121252121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 3Cn0 8wp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 z8o0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Marengo|LMT CST CDT CWT CPT EST EDT|5J.n 60 50 50 50 50 40|01212134121212121212121215656565656525656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 dyN0 11z0 6fd0 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1e6p0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Petersburg|LMT CST CDT CWT CPT EST EDT|5N.7 60 50 50 50 50 40|012121341212121212121212121215121212121212121212121252125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 3Fb0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 19co0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Tell_City|LMT CST CDT CWT CPT EST EDT|5L.3 60 50 50 50 50 40|012121341212121212121212121512165652121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 8wn0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vevay|LMT CST CDT CWT CPT EST EDT|5E.g 60 50 50 50 50 40|0121213415656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 kPB0 Awn0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1lnd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Vincennes|LMT CST CDT CWT CPT EST EDT|5O.7 60 50 50 50 50 40|012121341212121212121212121212121565652125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Indiana/Winamac|LMT CST CDT CWT CPT EST EDT|5K.p 60 50 50 50 50 40|012121341212121212121212121212121212121565652165656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1za0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Inuvik|-00 PST PDT MDT MST|0 80 70 60 70|01212121212121213434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-FnA0 L3K0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|35e2","America/Iqaluit|-00 EWT EPT EST EDT CST CDT|0 40 40 50 40 60 50|0123434343434343434343434343434343434343434343434343434343456343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-16K00 7nX0 iv0 14HB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|67e2","America/Jamaica|LMT KMT EST EDT|57.a 57.a 50 40|01232323232323232323232|-3eLuQ.O RK00 2uM1Q.O 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0|94e4","America/Juneau|LMT LMT PST PWT PPT PDT YDT YST AKST AKDT|-f2.j 8V.F 80 70 70 70 80 90 90 80|0123425252525252525252525252625252578989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVwq.s 1EX12.j 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cM0 1cM0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|33e3","America/Kentucky/Louisville|LMT CST CDT CWT CPT EST EDT|5H.2 60 50 50 50 50 40|01212121213412121212121212121212121212565656565656525656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 3Fd0 Nb0 LPd0 11z0 RB0 8x30 iw0 1nX1 e0X 9vd0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 xz0 gso0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Kentucky/Monticello|LMT CST CDT CWT CPT EST EDT|5D.o 60 50 50 50 50 40|01212134121212121212121212121212121212121212121212121212121212121212121212565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFG0 1nEe0 1nX0 11B0 1nX0 SgN0 8x30 iw0 SWp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/La_Paz|LMT CMT BST -04|4w.A 4w.A 3w.A 40|0123|-3eLvr.o 1FIo0 13b0|19e5","America/Lima|LMT LMT -05 -04|58.c 58.A 50 40|01232323232323232|-3eLuP.M JcM0.o 1bDzP.o zX0 1aN0 1cL0 1cN0 1cL0 1PrB0 zX0 1O10 zX0 6Gp0 zX0 98p0 zX0|11e6","America/Los_Angeles|LMT PST PDT PWT PPT|7Q.W 80 70 70 70|0121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFE0 1nEe0 1nX0 11B0 1nX0 SgN0 8x10 iy0 5Wp1 1VaX 3dA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6","America/Maceio|LMT -03 -02|2m.Q 30 20|012121212121212121212121212121212121212121|-2glxB.8 HdLB.8 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 8Q10 WL0 1tB0 5z0 2mN0 On0|93e4","America/Managua|LMT MMT CST EST CDT|5J.8 5J.c 60 50 50|01232424232324242|-3eLue.Q 1Mhc0.4 1yAMe.M 4mn0 9Up0 Dz0 1K10 Dz0 s3F0 1KH0 DB0 9In0 k8p0 19X0 1o30 11y0|22e5","America/Manaus|LMT -04 -03|40.4 40 30|01212121212121212121212121212121|-2glvX.U HdKX.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0|19e5","America/Martinique|LMT FFMT AST ADT|44.k 44.k 40 30|01232|-3eLvT.E PTA0 2LPbT.E 19X0|39e4","America/Matamoros|LMT CST CDT|6u 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|45e4","America/Mazatlan|LMT MST CST MDT|75.E 70 60 60|01213121313131313131313131313131313131313131313131313131313131|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 otX0 2bmP0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|44e4","America/Menominee|LMT CST CDT CWT CPT EST|5O.r 60 50 50 50 50|012121341212152121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3pdG9.x 1jce9.x 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 LCN0 1fz0 6410 9Jb0 1cM0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|85e2","America/Merida|LMT CST EST CDT|5W.s 60 50 50|0121313131313131313131313131313131313131313131313131313131|-1UQG0 2q3C0 24n0 wG10 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|11e5","America/Metlakatla|LMT LMT PST PWT PPT PDT AKST AKDT|-fd.G 8K.i 80 70 70 70 90 80|0123425252525252525252525252525252526767672676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-48Pzs.L 1jVwf.5 1EX1d.G 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1hU10 Rd0 1zb0 Op0 1zb0 Op0 1zb0 uM0 jB0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2","America/Mexico_City|LMT MST CST MDT CDT CWT|6A.A 70 60 60 50 50|012131242425242424242424242424242424242424242424242424242424242424242|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 gEn0 TX0 3xd0 Jb0 6zB0 SL0 e5d0 17b0 1Pff0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|20e6","America/Miquelon|LMT AST -03 -02|3I.E 40 30 20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2mxUf.k 2LHcf.k gQ10 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2","America/Moncton|LMT EST AST ADT AWT APT|4j.8 50 40 30 30 30|0123232323232323232323245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3txvE.Q J4ME.Q CwN0 1in0 zAo0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1K10 Lz0 1zB0 NX0 1u10 Wn0 S20 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14n1 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 ReX 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|64e3","America/Monterrey|LMT MST CST MDT CDT|6F.g 70 60 60 50|012131242424242424242424242424242424242424242424242424242424242|-1UQG0 dep0 8lz0 16p0 11z0 1dd0 2gmp0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|41e5","America/Montevideo|LMT MMT -04 -03 -0330 -0230 -02 -0130|3I.P 3I.P 40 30 3u 2u 20 1u|012343434343434343434343435353636353636375363636363636363636363636363636363636363636363|-2tRUf.9 sVc0 8jcf.9 1db0 1dcu 1cLu 1dcu 1cLu ircu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu WLu 1fAu 1cLu 1o0u 11zu NAu 3jXu zXu Dq0u 19Xu pcu jz0 cm10 19X0 6tB0 1fbu 3o0u jX0 4vB0 xz0 3Cp0 mmu 1a10 IMu Db0 4c10 uL0 1Nd0 An0 1SN0 uL0 mp0 28L0 iPB0 un0 1SN0 xz0 1zd0 Lz0 1zd0 Rb0 1zd0 On0 1wp0 Rb0 s8p0 1fB0 1ip0 11z0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5","America/Toronto|LMT EST EDT EWT EPT|5h.w 50 40 40 40|012121212121212121212121212121212121212121212123412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-32B6G.s UFdG.s 1in0 11Wu 1nzu 1fD0 WJ0 1wr0 Nb0 1Ap0 On0 1zd0 On0 1wp0 TX0 1tB0 TX0 1tB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 4kM0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1qL0 11B0 1nX0 11B0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e5","America/New_York|LMT EST EDT EWT EPT|4U.2 50 40 40 40|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tFH0 1nEe0 1nX0 11B0 1nX0 11B0 1qL0 1a10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6","America/Nome|LMT LMT NST NWT NPT BST BDT YST AKST AKDT|-cW.m b1.C b0 a0 a0 b0 a0 90 90 80|01234256565656565656565656565656565678989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898|-48Pzs.L 1jVyu.p 1EX1W.m 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cl0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|38e2","America/Noronha|LMT -02 -01|29.E 20 10|0121212121212121212121212121212121212121|-2glxO.k HdKO.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|30e2","America/North_Dakota/Beulah|LMT MST MDT MWT MPT CST CDT|6L.7 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/Center|LMT MST MDT MWT MPT CST CDT|6J.c 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212125656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/North_Dakota/New_Salem|LMT MST MDT MWT MPT CST CDT|6J.D 70 60 60 60 60 50|0121213412121212121212121212121212121212121212121212121212121212121212121212121212565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tFF0 1nEe0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|","America/Ojinaga|LMT MST CST MDT CDT|6V.E 70 60 60 50|0121312424231313131313131313131313131313131313131313131313132424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242|-1UQF0 deo0 8lz0 16p0 11z0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1wn0 Rc0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3","America/Paramaribo|LMT PMT PMT -0330 -03|3E.E 3E.Q 3E.A 3u 30|01234|-2nDUj.k Wqo0.c qanX.I 1yVXN.o|24e4","America/Port-au-Prince|LMT PPMT EST EDT|4N.k 4N 50 40|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3eLva.E 15RLX.E 2FnMb 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14q0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 i6n0 1nX0 11B0 1nX0 d430 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Rio_Branco|LMT -05 -04|4v.c 50 40|01212121212121212121212121212121|-2glvs.M HdLs.M 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0 d5X0|31e4","America/Porto_Velho|LMT -04 -03|4f.A 40 30|012121212121212121212121212121|-2glvI.o HdKI.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|37e4","America/Punta_Arenas|LMT SMT -05 -04 -03|4H.E 4G.J 50 40 30|01213132323232323232343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLvg.k MJbX.5 fJAh.f 5knG.J 1Vzh.f jRAG.J 1pbh.f 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 blz0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|","America/Winnipeg|LMT CST CDT CWT CPT|6s.A 60 50 50 50|0121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3kLtv.o 1a3bv.o WL0 3ND0 1in0 Jap0 Rb0 aCN0 8x30 iw0 1tB0 11z0 1ip0 11z0 1o10 11z0 1o10 11z0 1rd0 10L0 1op0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 1cL0 1cN0 11z0 6i10 WL0 6i10 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|66e4","America/Rankin_Inlet|-00 CST CDT EST|0 60 50 50|01212121212121212121212121212121212121212121212121212121212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-vDc0 Bjk0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e2","America/Recife|LMT -03 -02|2j.A 30 20|0121212121212121212121212121212121212121|-2glxE.o HdLE.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|33e5","America/Regina|LMT MST MDT MWT MPT CST|6W.A 70 60 60 60 60|012121212121212121212121341212121212121212121212121215|-2AD51.o uHe1.o 1in0 s2L0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 66N0 1cL0 1cN0 19X0 1fB0 1cL0 1fB0 1cL0 1cN0 1cL0 M30 8x20 ix0 1ip0 1cL0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 3NB0 1cL0 1cN0|19e4","America/Resolute|-00 CST CDT EST|0 60 50 50|01212121212121212121212121212121212121212121212121212121212321212121212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-SnA0 103I0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|229","America/Santarem|LMT -04 -03|3C.M 40 30|0121212121212121212121212121212|-2glwl.c HdLl.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0|21e4","America/Santiago|LMT SMT -05 -04 -03|4G.J 4G.J 50 40 30|0121313232323232323432343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLvh.f MJc0 fJAh.f 5knG.J 1Vzh.f jRAG.J 1pbh.f 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 9Bz0 hX0 1q10 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0|62e5","America/Santo_Domingo|LMT SDMT EST EDT -0430 AST|4D.A 4E 50 40 4u 40|012324242424242525|-3eLvk.o 1Jic0.o 1lJMk Mn0 6sp0 Lbu 1Cou yLu 1RAu wLu 1QMu xzu 1Q0u xXu 1PAu 13jB0 e00|29e5","America/Sao_Paulo|LMT -03 -02|36.s 30 20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwR.w HdKR.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 pTd0 PX0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|20e6","America/Scoresbysund|LMT -02 -01 +00|1r.Q 20 10 0|012132323232323232323232323232323232323232323232323232323232323232323232323232323232323232121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5Ww.8 2z5ew.8 1a00 1cK0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 2pA0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|452","America/Sitka|LMT LMT PST PWT PPT PDT YST AKST AKDT|-eW.L 91.d 80 70 70 70 90 90 80|0123425252525252525252525252525252567878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787878787|-48Pzs.L 1jVwu 1EX0W.L 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|90e2","America/St_Johns|LMT NST NDT NST NDT NWT NPT NDDT|3u.Q 3u.Q 2u.Q 3u 2u 2u 2u 1u|012121212121212121212121212121212121213434343434343435634343434343434343434343434343434343434343434343434343434343434343434343434343434343437343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3tokt.8 1l020 14L0 1nB0 1in0 1gm0 Dz0 1JB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1fB0 19X0 1fB0 19X0 10O0 eKX.8 19X0 1iq0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4","America/Swift_Current|LMT MST MDT MWT MPT CST|7b.k 70 60 60 60 60|012134121212121212121215|-2AD4M.E uHdM.E 1in0 UGp0 8x20 ix0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 isN0 1cL0 3Cp0 1cL0 1cN0 11z0 1qN0 WL0 pMp0|16e3","America/Tegucigalpa|LMT CST CDT|5M.Q 60 50|01212121|-1WGGb.8 2ETcb.8 WL0 1qN0 WL0 GRd0 AL0|11e5","America/Thule|LMT AST ADT|4z.8 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5To.Q 31NBo.Q 1cL0 1cN0 1cL0 1fB0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|656","America/Vancouver|LMT PST PDT PWT PPT|8c.s 80 70 70 70|01213412121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3tofL.w 1nspL.w 1in0 UGp0 8x10 iy0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Whitehorse|LMT YST YDT YWT YPT YDDT PST PDT MST|90.c 90 80 80 80 70 80 70 70|0121213415167676767676767676767676767676767676767676767676767676767676767676767676767676767678|-2MSeX.M GWpX.M 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 LA0 ytd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|23e3","America/Yakutat|LMT LMT YST YWT YPT YDT AKST AKDT|-eF.5 9i.T 90 80 80 80 90 80|0123425252525252525252525252525252526767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-48Pzs.L 1jVwL.G 1EX1F.5 8x00 iz0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cn0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|642","Antarctica/Casey|-00 +08 +11|0 -80 -b0|012121212121212121|-2q00 1DjS0 T90 40P0 KL0 blz0 3m10 1o30 14k0 1kr0 12l0 1o01 14kX 1lf1 14kX 1lf1 13bX|10","Antarctica/Davis|-00 +07 +05|0 -70 -50|01012121|-vyo0 iXt0 alj0 1D7v0 VB0 3Wn0 KN0|70","Pacific/Port_Moresby|LMT PMMT +10|-9M.E -9M.w -a0|012|-3D8VM.E AvA0.8|25e4","Antarctica/Macquarie|-00 AEST AEDT|0 -a0 -b0|0121012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2OPc0 Fb40 1a00 4SK0 1ayy0 Lvs0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 3Co0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|1","Antarctica/Mawson|-00 +06 +05|0 -60 -50|012|-CEo0 2fyk0|60","Pacific/Auckland|LMT NZMT NZST NZST NZDT|-bD.4 -bu -cu -c0 -d0|012131313131313131313131313134343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-46jLD.4 2nEO9.4 Lz0 1tB0 11zu 1o0u 11zu 1o0u 11zu 1o0u 14nu 1lcu 14nu 1lcu 1lbu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1qLu WMu 1qLu 11Au 1n1bu IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00|14e5","Antarctica/Palmer|-00 -03 -04 -02|0 30 40 20|0121212121213121212121212121212121212121212121212121212121212121212121212121212121|-cao0 nD0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 jsN0 14N0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40","Antarctica/Rothera|-00 -03|0 30|01|gOo0|130","Asia/Riyadh|LMT +03|-36.Q -30|01|-TvD6.Q|57e5","Antarctica/Troll|-00 +00 +02|0 0 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|1puo0 hd0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|40","Antarctica/Vostok|-00 +07 +05|0 -70 -50|01012|-tjA0 1rWh0 1Nj0 1aTv0|25","Europe/Berlin|LMT CET CEST CEMT|-R.s -10 -20 -30|012121212121212321212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-36RcR.s UbWR.s 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 kL0 Nc0 m10 WM0 1ao0 1cp0 dX0 jz0 Dd0 1io0 17c0 1fA0 1a00 1ehA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|41e5","Asia/Almaty|LMT +05 +06 +07|-57.M -50 -60 -70|0123232323232323232323212323232323232323232323232321|-1Pc57.M eUo7.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 L4m0|15e5","Asia/Amman|LMT EET EEST +03|-2n.I -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212123|-1yW2n.I 1HiMn.I KL0 1oN0 11b0 1oN0 11b0 1pd0 1dz0 1cp0 11b0 1op0 11b0 fO10 1db0 1e10 1cL0 1cN0 1cL0 1cN0 1fz0 1pd0 10n0 1ld0 14n0 1hB0 15b0 1ip0 19X0 1cN0 1cL0 1cN0 17b0 1ld0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1So0 y00 1fc0 1dc0 1co0 1dc0 1cM0 1cM0 1cM0 1o00 11A0 1lc0 17c0 1cM0 1cM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 LA0 1C00|25e5","Asia/Anadyr|LMT +12 +13 +14 +11|-bN.U -c0 -d0 -e0 -b0|01232121212121212121214121212121212121212121212121212121212141|-1PcbN.U eUnN.U 23CL0 1db0 2q10 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|13e3","Asia/Aqtau|LMT +04 +05 +06|-3l.4 -40 -50 -60|012323232323232323232123232312121212121212121212|-1Pc3l.4 eUnl.4 24PX0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|15e4","Asia/Aqtobe|LMT +04 +05 +06|-3M.E -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc3M.E eUnM.E 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|27e4","Asia/Ashgabat|LMT +04 +05 +06|-3R.w -40 -50 -60|0123232323232323232323212|-1Pc3R.w eUnR.w 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0|41e4","Asia/Atyrau|LMT +03 +05 +06 +04|-3r.I -30 -50 -60 -40|01232323232323232323242323232323232324242424242|-1Pc3r.I eUor.I 24PW0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 2sp0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|","Asia/Baghdad|LMT BMT +03 +04|-2V.E -2V.A -30 -40|0123232323232323232323232323232323232323232323232323232|-3eLCV.E 18ao0.4 2ACnV.A 11b0 1cp0 1dz0 1dd0 1db0 1cN0 1cp0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1de0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0|66e5","Asia/Qatar|LMT +04 +03|-3q.8 -40 -30|012|-21Jfq.8 27BXq.8|96e4","Asia/Baku|LMT +03 +04 +05|-3j.o -30 -40 -50|01232323232323232323232123232323232323232323232323232323232323232|-1Pc3j.o 1jUoj.o WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 9Je0 1o00 11z0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Asia/Bangkok|LMT BMT +07|-6G.4 -6G.4 -70|012|-3D8SG.4 1C000|15e6","Asia/Barnaul|LMT +06 +07 +08|-5z -60 -70 -80|0123232323232323232323212323232321212121212121212121212121212121212|-21S5z pCnz 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 p90 LE0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|","Asia/Beirut|LMT EET EEST|-2m -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3D8Om 1BWom 1on0 1410 1db0 19B0 1in0 1ip0 WL0 1lQp0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 q6N0 En0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1op0 11b0 dA10 17b0 1iN0 17b0 1iN0 17b0 1iN0 17b0 1vB0 SL0 1mp0 13z0 1iN0 17b0 1iN0 17b0 1jd0 12n0 1a10 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|22e5","Asia/Bishkek|LMT +05 +06 +07|-4W.o -50 -60 -70|012323232323232323232321212121212121212121212121212|-1Pc4W.o eUnW.o 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2e00 1tX0 17b0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1cPu 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0|87e4","Asia/Brunei|LMT +0730 +08 +0820 +09|-7l.k -7u -80 -8k -90|0123232323232323242|-1KITl.k gDbP.k 6ynu AnE 1O0k AnE 1NAk AnE 1NAk AnE 1NAk AnE 1O0k AnE 1NAk AnE pAk 8Fz0|42e4","Asia/Kolkata|LMT HMT MMT IST +0630|-5R.s -5R.k -5l.a -5u -6u|01234343|-4Fg5R.s BKo0.8 1rDcw.a 1r2LP.a 1un0 HB0 7zX0|15e6","Asia/Chita|LMT +08 +09 +10|-7x.Q -80 -90 -a0|012323232323232323232321232323232323232323232323232323232323232312|-21Q7x.Q pAnx.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3re0|33e4","Asia/Ulaanbaatar|LMT +07 +08 +09|-77.w -70 -80 -90|012323232323232323232323232323232323232323232323232|-2APH7.w 2Uko7.w cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|12e5","Asia/Shanghai|LMT CST CDT|-85.H -80 -90|012121212121212121212121212121|-2M0U5.H Iuo5.H 18n0 OjB0 Rz0 11d0 1wL0 A10 8HX0 1G10 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 aL0 1tU30 Rb0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0|23e6","Asia/Colombo|LMT MMT +0530 +06 +0630|-5j.o -5j.w -5u -60 -6u|012342432|-3D8Rj.o 13inX.Q 1rFbN.w 1zzu 7Apu 23dz0 11zu n3cu|22e5","Asia/Dhaka|LMT HMT +0630 +0530 +06 +07|-61.E -5R.k -6u -5u -60 -70|01232454|-3eLG1.E 26008.k 1unn.k HB0 m6n0 2kxbu 1i00|16e6","Asia/Damascus|LMT EET EEST +03|-2p.c -20 -30 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212123|-21Jep.c Hep.c 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1xRB0 11X0 1oN0 10L0 1pB0 11b0 1oN0 10L0 1mp0 13X0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 Nb0 1AN0 Nb0 bcp0 19X0 1gp0 19X0 3ld0 1xX0 Vd0 1Bz0 Sp0 1vX0 10p0 1dz0 1cN0 1cL0 1db0 1db0 1g10 1an0 1ap0 1db0 1fd0 1db0 1cN0 1db0 1dd0 1db0 1cp0 1dz0 1c10 1dX0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 19z0 1fB0 1qL0 11B0 1on0 Wp0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0|26e5","Asia/Dili|LMT +08 +09|-8m.k -80 -90|01212|-2le80 1dnX0 1nfA0 Xld0|19e4","Asia/Dubai|LMT +04|-3F.c -40|01|-21JfF.c|39e5","Asia/Dushanbe|LMT +05 +06 +07|-4z.c -50 -60 -70|012323232323232323232321|-1Pc4z.c eUnz.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2hB0|76e4","Asia/Famagusta|LMT EET EEST +03|-2f.M -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212312121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2f.M 2a3cf.M 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0 2Ks0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|","Asia/Gaza|LMT EET EEST IST IDT|-2h.Q -20 -30 -20 -30|0121212121212121212121212121212121234343434343434343434343434343431212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBCh.Q 1Azeh.Q MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 11z0 1o10 14o0 1lA1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qo0 XA0 1qp0 1cN0 1cL0 1a10 1fz0 17d0 1in0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1lb0 14p0 1in0 17d0 1cL0 1cN0 19X0 1fB0 14n0 jB0 2L0 11B0 WL0 gN0 8n0 11B0 TX0 gN0 bb0 11B0 On0 jB0 dX0 11B0 Lz0 gN0 mn0 WN0 IL0 gN0 pb0 WN0 Db0 jB0 rX0 11B0 xz0 gN0 xz0 11B0 rX0 jB0 An0 11B0 pb0 gN0 IL0 WN0 mn0 gN0 Lz0 WN0 gL0 jB0 On0 11B0 bb0 gN0 TX0 11B0 5z0 jB0 WL0 11B0 2L0 jB0 11z0 1ip0 19X0 1cN0 1cL0 17d0 1in0 14p0 1lb0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1nX0 14p0 1in0 17d0 1fz0 1a10 19X0 1fB0 17b0 gN0 2L0 WN0 14n0 gN0 5z0 WN0 WL0 jB0 8n0 11B0 Rb0 gN0 dX0 11B0 Lz0 jB0 gL0 11B0 IL0 jB0 mn0 WN0 FX0 gN0 rX0 WN0 An0 jB0 uL0 11B0 uL0 gN0 An0 11B0 rX0 gN0 Db0 11B0 mn0 jB0 FX0 11B0 jz0 gN0 On0 WN0 dX0 jB0 Rb0 WN0 bb0 jB0 TX0 11B0 5z0 gN0 11z0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|18e5","Asia/Hebron|LMT EET EEST IST IDT|-2k.n -20 -30 -20 -30|012121212121212121212121212121212123434343434343434343434343434343121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2MBCk.n 1Azek.n MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 12L0 1mN0 14o0 1lc0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qo0 XA0 1qp0 1cN0 1cL0 1a10 1fz0 17d0 1in0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1lb0 14p0 1in0 17d0 1cL0 1cN0 19X0 1fB0 14n0 jB0 2L0 11B0 WL0 gN0 8n0 11B0 TX0 gN0 bb0 11B0 On0 jB0 dX0 11B0 Lz0 gN0 mn0 WN0 IL0 gN0 pb0 WN0 Db0 jB0 rX0 11B0 xz0 gN0 xz0 11B0 rX0 jB0 An0 11B0 pb0 gN0 IL0 WN0 mn0 gN0 Lz0 WN0 gL0 jB0 On0 11B0 bb0 gN0 TX0 11B0 5z0 jB0 WL0 11B0 2L0 jB0 11z0 1ip0 19X0 1cN0 1cL0 17d0 1in0 14p0 1lb0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1nX0 14p0 1in0 17d0 1fz0 1a10 19X0 1fB0 17b0 gN0 2L0 WN0 14n0 gN0 5z0 WN0 WL0 jB0 8n0 11B0 Rb0 gN0 dX0 11B0 Lz0 jB0 gL0 11B0 IL0 jB0 mn0 WN0 FX0 gN0 rX0 WN0 An0 jB0 uL0 11B0 uL0 gN0 An0 11B0 rX0 gN0 Db0 11B0 mn0 jB0 FX0 11B0 jz0 gN0 On0 WN0 dX0 jB0 Rb0 WN0 bb0 jB0 TX0 11B0 5z0 gN0 11z0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0|25e4","Asia/Ho_Chi_Minh|LMT PLMT +07 +08 +09|-76.u -76.u -70 -80 -90|0123423232|-2yC76.u bK00 1h7b6.u 5lz0 18o0 3Oq0 k5c0 aVX0 BAM0|90e5","Asia/Hong_Kong|LMT HKT HKST HKWT JST|-7A.G -80 -90 -8u -90|0123412121212121212121212121212121212121212121212121212121212121212121|-2CFH0 1taO0 Hc0 xUu 9tBu 11z0 1tDu Rc0 1wo0 11A0 1cM0 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1nX0 U10 1tz0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|73e5","Asia/Hovd|LMT +06 +07 +08|-66.A -60 -70 -80|012323232323232323232323232323232323232323232323232|-2APG6.A 2Uko6.A cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|81e3","Asia/Irkutsk|LMT IMT +07 +08 +09|-6V.5 -6V.5 -70 -80 -90|012343434343434343434343234343434343434343434343434343434343434343|-3D8SV.5 1Bxc0 pjXV.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Europe/Istanbul|LMT IMT EET EEST +03 +04|-1T.Q -1U.U -20 -30 -30 -40|01232323232323232323232323232323232323232323232345423232323232323232323232323232323232323232323232323232323232323234|-3D8NT.Q 1ePXW.U dzzU.U 11b0 8tB0 1on0 1410 1db0 19B0 1in0 3Rd0 Un0 1oN0 11b0 zSN0 CL0 mp0 1Vz0 1gN0 8yn0 1yp0 ML0 1kp0 17b0 1ip0 17b0 1fB0 19X0 1ip0 19X0 1ip0 17b0 qdB0 38L0 1jd0 Tz0 l6O0 11A0 WN0 1qL0 TB0 1tX0 U10 1tz0 11B0 1in0 17d0 z90 cne0 pb0 2Cp0 1800 14o0 1dc0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1a00 1fA0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WO0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6","Asia/Jakarta|LMT BMT +0720 +0730 +09 +08 WIB|-77.c -77.c -7k -7u -90 -80 -70|012343536|-49jH7.c 2hiLL.c luM0 mPzO 8vWu 6kpu 4PXu xhcu|31e6","Asia/Jayapura|LMT +09 +0930 WIT|-9m.M -90 -9u -90|0123|-1uu9m.M sMMm.M L4nu|26e4","Asia/Jerusalem|LMT JMT IST IDT IDDT|-2k.S -2k.E -20 -30 -40|012323232323232432323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3D8Ok.S 1wvA0.e SyOk.E MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 3LA0 Eo0 oo0 1co0 1dA0 16o0 10M0 1jc0 1tA0 14o0 1cM0 1a00 11A0 1Nc0 Ao0 1Nc0 Ao0 1Ko0 LA0 1o00 WM0 EQK0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 1hB0 1dX0 1ep0 1aL0 1eN0 17X0 1nf0 11z0 1tB0 19W0 1e10 17b0 1ep0 1gL0 18N0 1fz0 1eN0 17b0 1gq0 1gn0 19d0 1dz0 1c10 17X0 1hB0 1gn0 19d0 1dz0 1c10 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0|81e4","Asia/Kabul|LMT +04 +0430|-4A.M -40 -4u|012|-3eLEA.M 2dTcA.M|46e5","Asia/Kamchatka|LMT +11 +12 +13|-ay.A -b0 -c0 -d0|012323232323232323232321232323232323232323232323232323232323212|-1SLKy.A ivXy.A 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|18e4","Asia/Karachi|LMT +0530 +0630 +05 PKT PKST|-4s.c -5u -6u -50 -50 -60|012134545454|-2xoss.c 1qOKW.c 7zX0 eup0 LqMu 1fy00 1cL0 dK10 11b0 1610 1jX0|24e6","Asia/Urumqi|LMT +06|-5O.k -60|01|-1GgtO.k|32e5","Asia/Kathmandu|LMT +0530 +0545|-5F.g -5u -5J|012|-21JhF.g 2EGMb.g|12e5","Asia/Khandyga|LMT +08 +09 +10 +11|-92.d -80 -90 -a0 -b0|0123232323232323232323212323232323232323232323232343434343434343432|-21Q92.d pAp2.d 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 qK0 yN0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|66e2","Asia/Krasnoyarsk|LMT +06 +07 +08|-6b.q -60 -70 -80|01232323232323232323232123232323232323232323232323232323232323232|-21Hib.q prAb.q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5","Asia/Kuala_Lumpur|LMT SMT +07 +0720 +0730 +09 +08|-6T.p -6T.p -70 -7k -7u -90 -80|01234546|-2M0ST.p aIM0 17anT.p l5XE 17bO 8Fyu 1so10|71e5","Asia/Macau|LMT CST +09 +10 CDT|-7y.a -80 -90 -a0 -90|012323214141414141414141414141414141414141414141414141414141414141414141|-2CFHy.a 1uqKy.a PX0 1kn0 15B0 11b0 4Qq0 1oM0 11c0 1ko0 1u00 11A0 1cM0 11c0 1o00 11A0 1o00 11A0 1oo0 1400 1o00 11A0 1o00 U00 1tA0 U00 1wo0 Rc0 1wru U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cK0 1cO0 1cK0 1cO0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|57e4","Asia/Magadan|LMT +10 +11 +12|-a3.c -a0 -b0 -c0|012323232323232323232321232323232323232323232323232323232323232312|-1Pca3.c eUo3.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Cq0|95e3","Asia/Makassar|LMT MMT +08 +09 WITA|-7V.A -7V.A -80 -90 -80|01234|-21JjV.A vfc0 myLV.A 8ML0|15e5","Asia/Manila|LMT LMT PST PDT JST|fU.8 -83.Q -80 -90 -90|012323432323232|-54m83.Q 2d8A3.Q 1urM0 un0 bW10 nb0 7qo0 1MM0 klB0 lz0 TwN0 1bb0 uNB0 rz0|24e6","Asia/Nicosia|LMT EET EEST|-2d.s -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2d.s 2a3cd.s 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|32e4","Asia/Novokuznetsk|LMT +06 +07 +08|-5M.M -60 -70 -80|012323232323232323232321232323232323232323232323232323232323212|-1PctM.M eULM.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|55e4","Asia/Novosibirsk|LMT +06 +07 +08|-5v.E -60 -70 -80|0123232323232323232323212323212121212121212121212121212121212121212|-21Qnv.E pAFv.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 ml0 Os0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 4eN0|15e5","Asia/Omsk|LMT +05 +06 +07|-4R.u -50 -60 -70|01232323232323232323232123232323232323232323232323232323232323232|-224sR.u pMLR.u 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|12e5","Asia/Oral|LMT +03 +05 +06 +04|-3p.o -30 -50 -60 -40|01232323232323232424242424242424242424242424242|-1Pc3p.o eUop.o 23CK0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 1cM0 IM0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|27e4","Asia/Pontianak|LMT PMT +0730 +09 +08 WITA WIB|-7h.k -7h.k -7u -90 -80 -80 -70|012324256|-2ua7h.k XE00 munL.k 8Rau 6kpu 4PXu xhcu Wqnu|23e4","Asia/Pyongyang|LMT KST JST KST|-8n -8u -90 -90|012313|-2um8n 97XR 1lTzu 2Onc0 6BA0|29e5","Asia/Qostanay|LMT +04 +05 +06|-4e.s -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc4e.s eUoe.s 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 Mv90|","Asia/Qyzylorda|LMT +04 +05 +06|-4l.Q -40 -50 -60|01232323232323232323232323232323232323232323232|-1Pc4l.Q eUol.Q 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 3ao0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 zQl0|73e4","Asia/Rangoon|LMT RMT +0630 +09|-6o.L -6o.L -6u -90|01232|-3D8So.L 1BnA0 SmnS.L 7j9u|48e5","Asia/Sakhalin|LMT +09 +11 +12 +10|-9u.M -90 -b0 -c0 -a0|01232323232323232323232423232323232424242424242424242424242424242|-2AGVu.M 1BoMu.M 1qFa0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 2pB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|58e4","Asia/Samarkand|LMT +04 +05 +06|-4r.R -40 -50 -60|01232323232323232323232|-1Pc4r.R eUor.R 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0|36e4","Asia/Seoul|LMT KST JST KST KDT KDT|-8r.Q -8u -90 -90 -a0 -9u|012343434343151515151515134343|-2um8r.Q 97XV.Q 1m1zu 6CM0 Fz0 1kN0 14n0 1kN0 14L0 1zd0 On0 69B0 2I0u OL0 1FB0 Rb0 1qN0 TX0 1tB0 TX0 1tB0 TX0 1tB0 TX0 2ap0 12FBu 11A0 1o00 11A0|23e6","Asia/Srednekolymsk|LMT +10 +11 +12|-ae.Q -a0 -b0 -c0|01232323232323232323232123232323232323232323232323232323232323232|-1Pcae.Q eUoe.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|35e2","Asia/Taipei|LMT CST JST CDT|-86 -80 -90 -90|012131313131313131313131313131313131313131|-30bk6 1FDc6 joM0 1yo0 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 10N0 1BX0 10p0 1pz0 10p0 1pz0 10p0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1BB0 ML0 1Bd0 ML0 uq10 1db0 1cN0 1db0 97B0 AL0|74e5","Asia/Tashkent|LMT +05 +06 +07|-4B.b -50 -60 -70|012323232323232323232321|-1Pc4B.b eUnB.b 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0|23e5","Asia/Tbilisi|LMT TBMT +03 +04 +05|-2X.b -2X.b -30 -40 -50|01234343434343434343434323232343434343434343434323|-3D8OX.b 1LUM0 1jUnX.b WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cK0 1cL0 1cN0 1cL0 1cN0 2pz0 1cL0 1fB0 3Nz0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 An0 Os0 WM0|11e5","Asia/Tehran|LMT TMT +0330 +0430 +04 +05|-3p.I -3p.I -3u -4u -40 -50|012345423232323232323232323232323232323232323232323232323232323232323232|-2btDp.I Llc0 1FHaT.I 1pc0 120u Rc0 XA0 Wou JX0 1dB0 1en0 pNB0 UL0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 64p0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0|14e6","Asia/Thimphu|LMT +0530 +06|-5W.A -5u -60|012|-Su5W.A 1BGMs.A|79e3","Asia/Tokyo|LMT JST JDT|-9i.X -90 -a0|0121212121|-3jE90 2qSo0 Rc0 1lc0 14o0 1zc0 Oo0 1zc0 Oo0|38e6","Asia/Tomsk|LMT +06 +07 +08|-5D.P -60 -70 -80|0123232323232323232323212323232323232323232323212121212121212121212|-21NhD.P pxzD.P 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 co0 1bB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Qp0|10e5","Asia/Ust-Nera|LMT +08 +09 +12 +11 +10|-9w.S -80 -90 -c0 -b0 -a0|012343434343434343434345434343434343434343434343434343434343434345|-21Q9w.S pApw.S 23CL0 1d90 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|65e2","Asia/Vladivostok|LMT +09 +10 +11|-8L.v -90 -a0 -b0|01232323232323232323232123232323232323232323232323232323232323232|-1SJIL.v itXL.v 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Asia/Yakutsk|LMT +08 +09 +10|-8C.W -80 -90 -a0|01232323232323232323232123232323232323232323232323232323232323232|-21Q8C.W pAoC.W 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|28e4","Asia/Yekaterinburg|LMT PMT +04 +05 +06|-42.x -3J.5 -40 -50 -60|012343434343434343434343234343434343434343434343434343434343434343|-2ag42.x 7mQh.s qBvJ.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|14e5","Asia/Yerevan|LMT +03 +04 +05|-2W -30 -40 -50|0123232323232323232323212121212323232323232323232323232323232|-1Pc2W 1jUnW WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 4RX0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|13e5","Atlantic/Azores|LMT HMT -02 -01 +00 WET WEST|1G.E 1S.w 20 10 0 0 -10|012323232323232323232323232323232323232323232343234323432343232323232323232323232323232323232323232323434343434343434343434356434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3tomh.k 18aoh.k aPX0 Sp0 M00 1vb0 SN0 1vb0 SN0 1vb0 Td0 1vb0 SN0 1vb0 6600 18o0 3I00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1uo0 1c00 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 CT90 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 Ap0 An0 wo0 Eo0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|25e4","Atlantic/Bermuda|LMT BMT BST AST ADT|4j.i 4j.i 3j.i 40 30|0121213434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3eLvE.G 16mo0 1bb0 1i10 11X0 ru30 thbE.G 1PX0 11B0 1tz0 Rd0 1zb0 Op0 1zb0 3I10 Lz0 1EN0 FX0 1HB0 FX0 1Kp0 Db0 1Kp0 Db0 1Kp0 FX0 93d0 11z0 GAp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e3","Atlantic/Canary|LMT -01 WET WEST|11.A 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UtaW.o XPAW.o 1lAK0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|54e4","Atlantic/Cape_Verde|LMT -02 -01|1y.4 20 10|01212|-2ldW0 1eEo0 7zX0 1djf0|50e4","Atlantic/Faroe|LMT WET WEST|r.4 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2uSnw.U 2Wgow.U 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|49e3","Atlantic/Madeira|LMT FMT -01 +00 +01 WET WEST|17.A 17.A 10 0 -10 0 -10|01232323232323232323232323232323232323232323234323432343234323232323232323232323232323232323232323232356565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-3tomQ.o 18anQ.o aPX0 Sp0 M00 1vb0 SN0 1vb0 SN0 1vb0 Td0 1vb0 SN0 1vb0 6600 18o0 3I00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1uo0 1c00 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 BJ90 1a00 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e4","Atlantic/South_Georgia|LMT -02|2q.8 20|01|-3eLxx.Q|30","Atlantic/Stanley|LMT SMT -04 -03 -02|3P.o 3P.o 40 30 20|0123232323232323434323232323232323232323232323232323232323232323232323|-3eLw8.A S200 12bA8.A 19X0 1fB0 19X0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 Cn0 1Cc10 WL0 1qL0 U10 1tz0 2mN0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 U10 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qN0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 U10 1tz0 U10 1tz0 U10|21e2","Australia/Sydney|LMT AEST AEDT|-a4.Q -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-32oW4.Q RlC4.Q xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|40e5","Australia/Adelaide|LMT ACST ACST ACDT|-9e.k -90 -9u -au|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-32oVe.k ak0e.k H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 WM0 1qM0 Rc0 1zc0 U00 1tA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|11e5","Australia/Brisbane|LMT AEST AEDT|-ac.8 -a0 -b0|012121212121212121|-32Bmc.8 Ry2c.8 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0|20e5","Australia/Broken_Hill|LMT AEST ACST ACST ACDT|-9p.M -a0 -90 -9u -au|0123434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-32oVp.M 3Lzp.M 6wp0 H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|18e3","Australia/Hobart|LMT AEST AEDT|-9N.g -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-3109N.g Pk1N.g 1a00 1qM0 Oo0 1zc0 Oo0 TAo0 yM0 1cM0 1cM0 1fA0 1a00 VfA0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|21e4","Australia/Darwin|LMT ACST ACST ACDT|-8H.k -90 -9u -au|01232323232|-32oUH.k ajXH.k H1Bu xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00|12e4","Australia/Eucla|LMT +0845 +0945|-8z.s -8J -9J|01212121212121212121|-30nIz.s PkpO.s xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|368","Australia/Lord_Howe|LMT AEST +1030 +1130 +11|-aA.k -a0 -au -bu -b0|01232323232424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424|-32oWA.k 3tzAA.k 1zdu Rb0 1zd0 On0 1zd0 On0 1zd0 On0 1zd0 TXu 1qMu WLu 1tAu WLu 1tAu TXu 1tAu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 11Au 1nXu 1qMu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu 11zu 1o0u WLu 1qMu 14nu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu|347","Australia/Lindeman|LMT AEST AEDT|-9T.U -a0 -b0|0121212121212121212121|-32BlT.U Ry1T.U xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10","Australia/Melbourne|LMT AEST AEDT|-9D.Q -a0 -b0|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-32oVD.Q RlBD.Q xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1qM0 11A0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|39e5","Australia/Perth|LMT AWST AWDT|-7H.o -80 -90|01212121212121212121|-30nHH.o PkpH.o xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|18e5","Europe/Brussels|LMT BMT WET CET CEST WEST|-h.u -h.u 0 -10 -20 -10|012343434325252525252525252525252525252525252525252525434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3D8Mh.u u1Ah.u SO00 3zX0 11c0 1iO0 11A0 1o00 11A0 my0 Ic0 1qM0 Rc0 1EM0 UM0 1u00 10o0 1io0 1io0 17c0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a30 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 y00 5Wn0 WM0 1fA0 1cM0 16M0 1iM0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|21e5","Pacific/Easter|LMT EMT -07 -06 -05|7h.s 7h.s 70 60 50|0123232323232323232323232323234343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-3eLsG.w 1HRc0 1s4IG.w WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 2pA0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0|30e2","Europe/Athens|LMT AMT EET EEST CEST CET|-1y.Q -1y.Q -20 -30 -20 -10|0123234545232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-30SNy.Q OMM1 CNbx.Q mn0 kU10 9b0 3Es0 Xa0 1fb0 1dd0 k3X0 Nz0 SCp0 1vc0 SO0 1cM0 1a00 1ao0 1fc0 1a10 1fG0 1cg0 1dX0 1bX0 1cQ0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|35e5","Europe/Dublin|LMT DMT IST GMT BST IST|p.l p.l -y.D 0 -10 -10|012343434343435353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353535353|-3BHby.D 1ra20 Rc0 1fzy.D 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 g600 14o0 1wo0 17c0 1io0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Etc/GMT-0|GMT|0|0||","Etc/GMT-1|+01|-10|0||","Etc/GMT-10|+10|-a0|0||","Etc/GMT-11|+11|-b0|0||","Etc/GMT-12|+12|-c0|0||","Etc/GMT-13|+13|-d0|0||","Etc/GMT-14|+14|-e0|0||","Etc/GMT-2|+02|-20|0||","Etc/GMT-3|+03|-30|0||","Etc/GMT-4|+04|-40|0||","Etc/GMT-5|+05|-50|0||","Etc/GMT-6|+06|-60|0||","Etc/GMT-7|+07|-70|0||","Etc/GMT-8|+08|-80|0||","Etc/GMT-9|+09|-90|0||","Etc/GMT+1|-01|10|0||","Etc/GMT+10|-10|a0|0||","Etc/GMT+11|-11|b0|0||","Etc/GMT+12|-12|c0|0||","Etc/GMT+2|-02|20|0||","Etc/GMT+3|-03|30|0||","Etc/GMT+4|-04|40|0||","Etc/GMT+5|-05|50|0||","Etc/GMT+6|-06|60|0||","Etc/GMT+7|-07|70|0||","Etc/GMT+8|-08|80|0||","Etc/GMT+9|-09|90|0||","Etc/UTC|UTC|0|0||","Europe/Andorra|LMT WET CET CEST|-6.4 0 -10 -20|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2M0M6.4 1Pnc6.4 1xIN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|79e3","Europe/Astrakhan|LMT +03 +04 +05|-3c.c -30 -40 -50|012323232323232323212121212121212121212121212121212121212121212|-1Pcrc.c eUMc.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|10e5","Europe/London|LMT GMT BST BDST|1.f 0 -10 -20|01212121212121212121212121212121212121212121212121232323232321212321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-4VgnW.J 2KHdW.J Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|10e6","Europe/Belgrade|LMT CET CEST|-1m -10 -20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3topm 2juLm 3IP0 WM0 1fA0 1cM0 1cM0 1rc0 Qo0 1vmo0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Prague|LMT PMT CET CEST GMT|-V.I -V.I -10 -20 0|0123232323232323232423232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4QbAV.I 1FDc0 XPaV.I 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 1qM0 11c0 mp0 xA0 mn0 17c0 1io0 17c0 1fc0 1ao0 1bNc0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|13e5","Europe/Bucharest|LMT BMT EET EEST|-1I.o -1I.o -20 -30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3awpI.o 1AU00 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Axc0 On0 1fA0 1a10 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|19e5","Europe/Budapest|LMT CET CEST|-1g.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-3cK1g.k 124Lg.k 11d0 1iO0 11A0 1o00 11A0 1oo0 11c0 1lc0 17c0 O1V0 3Nf0 WM0 1fA0 1cM0 1cM0 1oJ0 1dd0 1020 1fX0 1cp0 1cM0 1cM0 1cM0 1fA0 1a00 bhy0 Rb0 1wr0 Rc0 1C00 LA0 1C00 LA0 SNW0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cO0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e5","Europe/Zurich|LMT BMT CET CEST|-y.8 -t.K -10 -20|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4HyMy.8 1Dw04.m 1SfAt.K 11A0 1o00 11A0 1xG10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|38e4","Europe/Chisinau|LMT CMT BMT EET EEST CEST CET MSK MSD|-1T.k -1T -1I.o -20 -30 -20 -10 -30 -40|0123434343434343434345656578787878787878787878434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-3D8NT.k 1wNA0.k wGMa.A 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 27A0 2en0 39g0 WM0 1fA0 1cM0 V90 1t7z0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 gL0 WO0 1cM0 1cM0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11D0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|67e4","Europe/Gibraltar|LMT GMT BST BDST CET CEST|l.o 0 -10 -20 -10 -20|0121212121212121212121212121212121212121212121212123232323232121232121212121212121212145454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-3BHbC.A 1ra1C.A Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 10Jz0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|30e3","Europe/Helsinki|LMT HMT EET EEST|-1D.N -1D.N -20 -30|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3H0ND.N 1Iu00 OULD.N 1dA0 1xGq0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Kaliningrad|LMT CET CEST EET EEST MSK MSD +03|-1m -10 -20 -20 -30 -30 -40 -30|012121212121212343565656565656565654343434343434343434343434343434343434343434373|-36Rdm UbXm 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 390 7A0 1en0 12N0 1pbb0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|44e4","Europe/Kiev|LMT KMT EET MSK CEST CET MSD EEST|-22.4 -22.4 -20 -30 -20 -10 -40 -30|01234545363636363636363636367272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272|-3D8O2.4 1LUM0 eUo2.4 rnz0 2Hg0 WM0 1fA0 da0 1v4m0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 Db0 3220 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o10 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|34e5","Europe/Kirov|LMT +03 +04 +05 MSD MSK MSK|-3i.M -30 -40 -50 -40 -30 -40|0123232323232323232454524545454545454545454545454545454545454565|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 2pz0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|48e4","Europe/Lisbon|LMT WET WEST WEMT CET CEST|A.J 0 -10 -20 -10 -20|012121212121212121212121212121212121212121212321232123212321212121212121212121212121212121212121212124121212121212121212121212121212124545454212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2le00 aPX0 Sp0 M00 1vb0 SN0 1vb0 SN0 1vb0 Td0 1vb0 SN0 1vb0 6600 18o0 3I00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1uo0 1c00 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 oiK0 1cM0 1cM0 1fB0 1cM0 1cM0 1cM0 1fA0 1a00 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Europe/Madrid|LMT WET WEST WEMT CET CEST|e.I 0 -10 -20 -10 -20|0121212121212121212321454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2M0M0 G5z0 19B0 1cL0 1dd0 b1z0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1in0 17d0 iIn0 Hd0 1cL0 bb0 1200 2s20 14n0 5aL0 Mp0 1vz0 17d0 1in0 17d0 1in0 17d0 1in0 17d0 6hX0 11B0 XHX0 1a10 1fz0 1a10 19X0 1cN0 1fz0 1a10 1fC0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|62e5","Europe/Malta|LMT CET CEST|-W.4 -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-35rcW.4 SXzW.4 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1co0 17c0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1co0 1cM0 1lA0 Xc0 1qq0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1iN0 19z0 1fB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|42e4","Europe/Minsk|LMT MMT EET MSK CEST CET MSD EEST +03|-1O.g -1O -20 -30 -20 -10 -40 -30 -30|012345454363636363636363636372727272727272727272727272727272727272728|-3D8NO.g 1LUM0.g eUnO qNX0 3gQ0 WM0 1fA0 1cM0 Al0 1tsn0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 3Fc0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0|19e5","Europe/Paris|LMT PMT WET WEST CEST CET WEMT|-9.l -9.l 0 -10 -20 -10 -20|01232323232323232323232323232323232323232323232323234545463654545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-3bQ09.l MDA0 cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 Ik0 5M30 WM0 1fA0 1cM0 Vx0 hB0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|11e6","Europe/Moscow|LMT MMT MMT MST MDST MSD MSK +05 EET EEST MSK|-2u.h -2u.h -2v.j -3v.j -4v.j -40 -30 -50 -20 -30 -40|01232434565756865656565656565656565698656565656565656565656565656565656565656a6|-3D8Ou.h 1sQM0 2pyW.W 1bA0 11X0 GN0 1Hb0 c4v.j ik0 3DA0 dz0 15A0 c10 2q10 iM10 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|16e6","Europe/Riga|LMT RMT LST EET MSK CEST CET MSD EEST|-1A.y -1A.y -2A.y -20 -30 -20 -10 -40 -30|0121213456565647474747474747474838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383838383|-3D8NA.y 1xde0 11A0 1iM0 ko0 gWm0 yDXA.y 2bX0 3fE0 WM0 1fA0 1cM0 1cM0 4m0 1sLy0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 1o00 11A0 1o00 11A0 1qM0 3oo0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|64e4","Europe/Rome|LMT RMT CET CEST|-N.U -N.U -10 -20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-4aU0N.U 15snN.U T000 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1cM0 16M0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1C00 LA0 1zc0 Oo0 1C00 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1zc0 Oo0 1fC0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|39e5","Europe/Samara|LMT +03 +04 +05|-3k.k -30 -40 -50|0123232323232323232121232323232323232323232323232323232323212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2y10 14m0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|12e5","Europe/Saratov|LMT +03 +04 +05|-34.i -30 -40 -50|012323232323232321212121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 5810|","Europe/Simferopol|LMT SMT EET MSK CEST CET MSD EEST MSK|-2g.o -2g -20 -30 -20 -10 -40 -30 -40|0123454543636363636363636363272727636363727272727272727272727272727272727283|-3D8Og.o 1LUM0.o eUog rEn0 2qs0 WM0 1fA0 1cM0 3V0 1u0L0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 4eN0 1cM0 1cM0 1cM0 1cM0 dV0 WO0 1cM0 1cM0 1fy0 1o30 11B0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4","Europe/Sofia|LMT IMT EET CET CEST EEST|-1x.g -1U.U -20 -10 -20 -30|0123434325252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-3D8Nx.g AiLA.k 1UFeU.U WM0 1fA0 1cM0 1cM0 1cN0 1mKH0 1dd0 1fb0 1ap0 1fb0 1a20 1fy0 1a30 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|12e5","Europe/Tallinn|LMT TMT CET CEST EET MSK MSD EEST|-1D -1D -10 -20 -20 -30 -40 -30|0123214532323565656565656565657474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474|-3D8ND 1wI00 teD 11A0 1Ta0 4rXl KSLD 2FX0 2Jg0 WM0 1fA0 1cM0 18J0 1sTX0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o10 11A0 1qM0 5QM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|41e4","Europe/Tirane|LMT CET CEST|-1j.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glBj.k 14pcj.k 5LC0 WM0 4M0 1fCK0 10n0 1op0 11z0 1pd0 11z0 1qN0 WL0 1qp0 Xb0 1qp0 Xb0 1qp0 11z0 1lB0 11z0 1qN0 11z0 1iN0 16n0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|42e4","Europe/Ulyanovsk|LMT +03 +04 +05 +02|-3d.A -30 -40 -50 -20|01232323232323232321214121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|13e5","Europe/Vienna|LMT CET CEST|-15.l -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-36Rd5.l UbX5.l 11d0 1iO0 11A0 1o00 11A0 3KM0 14o0 LA00 6i00 WM0 1fA0 1cM0 1cM0 1cM0 400 2qM0 1ao0 1co0 1cM0 1io0 17c0 1gHa0 19X0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|18e5","Europe/Vilnius|LMT WMT KMT CET EET MSK CEST MSD EEST|-1F.g -1o -1z.A -10 -20 -30 -20 -40 -30|0123435636365757575757575757584848484848484848463648484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484|-3D8NF.g 1u5Ah.g 6ILM.o 1Ooz.A zz0 Mfd0 29W0 3is0 WM0 1fA0 1cM0 LV0 1tgL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11B0 1o00 11A0 1qM0 8io0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|54e4","Europe/Volgograd|LMT +03 +04 +05 MSD MSK MSK|-2V.E -30 -40 -50 -40 -30 -40|012323232323232324545452454545454545454545454545454545454545456525|-21IqV.E psLV.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1fA0 1cM0 2pz0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 9Jd0 5gn0|10e5","Europe/Warsaw|LMT WMT CET CEST EET EEST|-1o -1o -10 -20 -20 -30|0123232345423232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-3D8No 1qDA0 1LXo 11d0 1iO0 11A0 1o00 11A0 1on0 11A0 6zy0 HWP0 5IM0 WM0 1fA0 1cM0 1dz0 1mL0 1en0 15B0 1aq0 1nA0 11A0 1io0 17c0 1fA0 1a00 iDX0 LA0 1cM0 1cM0 1C00 Oo0 1cM0 1cM0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1C00 LA0 uso0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|17e5","Pacific/Honolulu|LMT HST HDT HWT HPT HST|av.q au 9u 9u 9u a0|01213415|-3061s.y 1uMdW.y 8x0 lef0 8wWu iAu 46p0|37e4","Indian/Chagos|LMT +05 +06|-4N.E -50 -60|012|-2xosN.E 3AGLN.E|30e2","Indian/Maldives|LMT MMT +05|-4S -4S -50|012|-3D8QS 3eLA0|35e4","Indian/Mauritius|LMT +04 +05|-3O -40 -50|012121|-2xorO 34unO 14L0 12kr0 11z0|15e4","Pacific/Kwajalein|LMT +11 +10 +09 -12 +12|-b9.k -b0 -a0 -90 c0 -c0|0123145|-2M0X9.k 1rDA9.k akp0 6Up0 12ry0 Wan0|14e3","Pacific/Chatham|LMT +1215 +1245 +1345|-cd.M -cf -cJ -dJ|0123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-46jMd.M 37RbW.M 1adef IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00|600","Pacific/Apia|LMT LMT -1130 -11 -10 +14 +13|-cx.4 bq.U bu b0 a0 -e0 -d0|012343456565656565656565656|-38Fox.4 J1A0 1yW03.4 2rRbu 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0|37e3","Pacific/Bougainville|LMT PMMT +10 +09 +11|-am.g -9M.w -a0 -90 -b0|012324|-3D8Wm.g AvAx.I 1TCLM.w 7CN0 2MQp0|18e4","Pacific/Efate|LMT +11 +12|-bd.g -b0 -c0|012121212121212121212121|-2l9nd.g 2uNXd.g Dc0 n610 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 Lz0 1Nd0 An0|66e3","Pacific/Enderbury|-00 -12 -11 +13|0 c0 b0 -d0|0123|-1iIo0 1GsA0 B7X0|1","Pacific/Fakaofo|LMT -11 +13|bo.U b0 -d0|012|-2M0Az.4 4ufXz.4|483","Pacific/Fiji|LMT +12 +13|-bT.I -c0 -d0|012121212121212121212121212121|-2bUzT.I 3m8NT.I LA0 1EM0 IM0 nJc0 LA0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 20o0 pc0 2hc0 bc0|88e4","Pacific/Tarawa|LMT +12|-bw.4 -c0|01|-2M0Xw.4|29e3","Pacific/Galapagos|LMT -05 -06|5W.o 50 60|01212|-1yVS1.A 2dTz1.A gNd0 rz0|25e3","Pacific/Gambier|LMT -09|8X.M 90|01|-2jof0.c|125","Pacific/Guadalcanal|LMT +11|-aD.M -b0|01|-2joyD.M|11e4","Pacific/Guam|LMT LMT GST +09 GDT ChST|el -9D -a0 -90 -b0 -a0|0123242424242424242425|-54m9D 2glc0 1DFbD 6pB0 AhB0 3QL0 g2p0 3p91 WOX rX0 1zd0 Rb0 1wp0 Rb0 5xd0 rX0 5sN0 zb1 1C0X On0 ULb0|17e4","Pacific/Kiritimati|LMT -1040 -10 +14|at.k aE a0 -e0|0123|-2M0Bu.E 3bIMa.E B7Xk|51e2","Pacific/Kosrae|LMT LMT +11 +09 +10 +12|d8.4 -aP.U -b0 -90 -a0 -c0|0123243252|-54maP.U 2glc0 xsnP.U axC0 HBy0 akp0 axd0 WOK0 1bdz0|66e2","Pacific/Marquesas|LMT -0930|9i 9u|01|-2joeG|86e2","Pacific/Pago_Pago|LMT LMT SST|-cB.c bm.M b0|012|-38FoB.c J1A0|37e2","Pacific/Nauru|LMT +1130 +09 +12|-b7.E -bu -90 -c0|01213|-1Xdn7.E QCnB.E 7mqu 1lnbu|10e3","Pacific/Niue|LMT -1120 -11|bj.E bk b0|012|-FScE.k suo0.k|12e2","Pacific/Norfolk|LMT +1112 +1130 +1230 +11 +12|-bb.Q -bc -bu -cu -b0 -c0|0123245454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2M0Xb.Q 21ILX.Q W01G Oo0 1COo0 9Jcu 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|25e4","Pacific/Noumea|LMT +11 +12|-b5.M -b0 -c0|01212121|-2l9n5.M 2EqM5.M xX0 1PB0 yn0 HeP0 Ao0|98e3","Pacific/Palau|LMT LMT +09|f2.4 -8V.U -90|012|-54m8V.U 2glc0|21e3","Pacific/Pitcairn|LMT -0830 -08|8E.k 8u 80|012|-2M0Dj.E 3UVXN.E|56","Pacific/Rarotonga|LMT LMT -1030 -0930 -10|-dk.U aD.4 au 9u a0|01234343434343434343434343434|-2Otpk.U 28zc0 13tbO.U IL0 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu|13e3","Pacific/Tahiti|LMT -10|9W.g a0|01|-2joe1.I|18e4","Pacific/Tongatapu|LMT +1220 +13 +14|-cj.c -ck -d0 -e0|01232323232|-XbMj.c BgLX.c 1yndk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00|75e3"]'),wpt=["Africa/Abidjan|Africa/Accra","Africa/Abidjan|Africa/Bamako","Africa/Abidjan|Africa/Banjul","Africa/Abidjan|Africa/Conakry","Africa/Abidjan|Africa/Dakar","Africa/Abidjan|Africa/Freetown","Africa/Abidjan|Africa/Lome","Africa/Abidjan|Africa/Nouakchott","Africa/Abidjan|Africa/Ouagadougou","Africa/Abidjan|Africa/Timbuktu","Africa/Abidjan|Atlantic/Reykjavik","Africa/Abidjan|Atlantic/St_Helena","Africa/Abidjan|Iceland","Africa/Cairo|Egypt","Africa/Johannesburg|Africa/Maseru","Africa/Johannesburg|Africa/Mbabane","Africa/Lagos|Africa/Bangui","Africa/Lagos|Africa/Brazzaville","Africa/Lagos|Africa/Douala","Africa/Lagos|Africa/Kinshasa","Africa/Lagos|Africa/Libreville","Africa/Lagos|Africa/Luanda","Africa/Lagos|Africa/Malabo","Africa/Lagos|Africa/Niamey","Africa/Lagos|Africa/Porto-Novo","Africa/Maputo|Africa/Blantyre","Africa/Maputo|Africa/Bujumbura","Africa/Maputo|Africa/Gaborone","Africa/Maputo|Africa/Harare","Africa/Maputo|Africa/Kigali","Africa/Maputo|Africa/Lubumbashi","Africa/Maputo|Africa/Lusaka","Africa/Nairobi|Africa/Addis_Ababa","Africa/Nairobi|Africa/Asmara","Africa/Nairobi|Africa/Asmera","Africa/Nairobi|Africa/Dar_es_Salaam","Africa/Nairobi|Africa/Djibouti","Africa/Nairobi|Africa/Kampala","Africa/Nairobi|Africa/Mogadishu","Africa/Nairobi|Indian/Antananarivo","Africa/Nairobi|Indian/Comoro","Africa/Nairobi|Indian/Mayotte","Africa/Tripoli|Libya","America/Adak|America/Atka","America/Adak|US/Aleutian","America/Anchorage|US/Alaska","America/Argentina/Buenos_Aires|America/Buenos_Aires","America/Argentina/Catamarca|America/Argentina/ComodRivadavia","America/Argentina/Catamarca|America/Catamarca","America/Argentina/Cordoba|America/Cordoba","America/Argentina/Cordoba|America/Rosario","America/Argentina/Jujuy|America/Jujuy","America/Argentina/Mendoza|America/Mendoza","America/Chicago|CST6CDT","America/Chicago|US/Central","America/Denver|America/Shiprock","America/Denver|MST7MDT","America/Denver|Navajo","America/Denver|US/Mountain","America/Detroit|US/Michigan","America/Edmonton|America/Yellowknife","America/Edmonton|Canada/Mountain","America/Fort_Wayne|America/Indiana/Indianapolis","America/Fort_Wayne|America/Indianapolis","America/Fort_Wayne|US/East-Indiana","America/Godthab|America/Nuuk","America/Halifax|Canada/Atlantic","America/Havana|Cuba","America/Indiana/Knox|America/Knox_IN","America/Indiana/Knox|US/Indiana-Starke","America/Iqaluit|America/Pangnirtung","America/Jamaica|Jamaica","America/Kentucky/Louisville|America/Louisville","America/Los_Angeles|PST8PDT","America/Los_Angeles|US/Pacific","America/Manaus|Brazil/West","America/Mazatlan|Mexico/BajaSur","America/Mexico_City|Mexico/General","America/New_York|EST5EDT","America/New_York|US/Eastern","America/Noronha|Brazil/DeNoronha","America/Panama|America/Atikokan","America/Panama|America/Cayman","America/Panama|America/Coral_Harbour","America/Panama|EST","America/Phoenix|America/Creston","America/Phoenix|MST","America/Phoenix|US/Arizona","America/Puerto_Rico|America/Anguilla","America/Puerto_Rico|America/Antigua","America/Puerto_Rico|America/Aruba","America/Puerto_Rico|America/Blanc-Sablon","America/Puerto_Rico|America/Curacao","America/Puerto_Rico|America/Dominica","America/Puerto_Rico|America/Grenada","America/Puerto_Rico|America/Guadeloupe","America/Puerto_Rico|America/Kralendijk","America/Puerto_Rico|America/Lower_Princes","America/Puerto_Rico|America/Marigot","America/Puerto_Rico|America/Montserrat","America/Puerto_Rico|America/Port_of_Spain","America/Puerto_Rico|America/St_Barthelemy","America/Puerto_Rico|America/St_Kitts","America/Puerto_Rico|America/St_Lucia","America/Puerto_Rico|America/St_Thomas","America/Puerto_Rico|America/St_Vincent","America/Puerto_Rico|America/Tortola","America/Puerto_Rico|America/Virgin","America/Regina|Canada/Saskatchewan","America/Rio_Branco|America/Porto_Acre","America/Rio_Branco|Brazil/Acre","America/Santiago|Chile/Continental","America/Sao_Paulo|Brazil/East","America/St_Johns|Canada/Newfoundland","America/Tijuana|America/Ensenada","America/Tijuana|America/Santa_Isabel","America/Tijuana|Mexico/BajaNorte","America/Toronto|America/Montreal","America/Toronto|America/Nassau","America/Toronto|America/Nipigon","America/Toronto|America/Thunder_Bay","America/Toronto|Canada/Eastern","America/Vancouver|Canada/Pacific","America/Whitehorse|Canada/Yukon","America/Winnipeg|America/Rainy_River","America/Winnipeg|Canada/Central","Asia/Ashgabat|Asia/Ashkhabad","Asia/Bangkok|Asia/Phnom_Penh","Asia/Bangkok|Asia/Vientiane","Asia/Bangkok|Indian/Christmas","Asia/Brunei|Asia/Kuching","Asia/Dhaka|Asia/Dacca","Asia/Dubai|Asia/Muscat","Asia/Dubai|Indian/Mahe","Asia/Dubai|Indian/Reunion","Asia/Ho_Chi_Minh|Asia/Saigon","Asia/Hong_Kong|Hongkong","Asia/Jerusalem|Asia/Tel_Aviv","Asia/Jerusalem|Israel","Asia/Kathmandu|Asia/Katmandu","Asia/Kolkata|Asia/Calcutta","Asia/Kuala_Lumpur|Asia/Singapore","Asia/Kuala_Lumpur|Singapore","Asia/Macau|Asia/Macao","Asia/Makassar|Asia/Ujung_Pandang","Asia/Nicosia|Europe/Nicosia","Asia/Qatar|Asia/Bahrain","Asia/Rangoon|Asia/Yangon","Asia/Rangoon|Indian/Cocos","Asia/Riyadh|Antarctica/Syowa","Asia/Riyadh|Asia/Aden","Asia/Riyadh|Asia/Kuwait","Asia/Seoul|ROK","Asia/Shanghai|Asia/Chongqing","Asia/Shanghai|Asia/Chungking","Asia/Shanghai|Asia/Harbin","Asia/Shanghai|PRC","Asia/Taipei|ROC","Asia/Tehran|Iran","Asia/Thimphu|Asia/Thimbu","Asia/Tokyo|Japan","Asia/Ulaanbaatar|Asia/Choibalsan","Asia/Ulaanbaatar|Asia/Ulan_Bator","Asia/Urumqi|Asia/Kashgar","Atlantic/Faroe|Atlantic/Faeroe","Australia/Adelaide|Australia/South","Australia/Brisbane|Australia/Queensland","Australia/Broken_Hill|Australia/Yancowinna","Australia/Darwin|Australia/North","Australia/Hobart|Australia/Currie","Australia/Hobart|Australia/Tasmania","Australia/Lord_Howe|Australia/LHI","Australia/Melbourne|Australia/Victoria","Australia/Perth|Australia/West","Australia/Sydney|Australia/ACT","Australia/Sydney|Australia/Canberra","Australia/Sydney|Australia/NSW","Etc/GMT-0|Etc/GMT","Etc/GMT-0|Etc/GMT+0","Etc/GMT-0|Etc/GMT0","Etc/GMT-0|Etc/Greenwich","Etc/GMT-0|GMT","Etc/GMT-0|GMT+0","Etc/GMT-0|GMT-0","Etc/GMT-0|GMT0","Etc/GMT-0|Greenwich","Etc/UTC|Etc/UCT","Etc/UTC|Etc/Universal","Etc/UTC|Etc/Zulu","Etc/UTC|UCT","Etc/UTC|UTC","Etc/UTC|Universal","Etc/UTC|Zulu","Europe/Athens|EET","Europe/Belgrade|Europe/Ljubljana","Europe/Belgrade|Europe/Podgorica","Europe/Belgrade|Europe/Sarajevo","Europe/Belgrade|Europe/Skopje","Europe/Belgrade|Europe/Zagreb","Europe/Berlin|Arctic/Longyearbyen","Europe/Berlin|Atlantic/Jan_Mayen","Europe/Berlin|Europe/Copenhagen","Europe/Berlin|Europe/Oslo","Europe/Berlin|Europe/Stockholm","Europe/Brussels|CET","Europe/Brussels|Europe/Amsterdam","Europe/Brussels|Europe/Luxembourg","Europe/Brussels|MET","Europe/Chisinau|Europe/Tiraspol","Europe/Dublin|Eire","Europe/Helsinki|Europe/Mariehamn","Europe/Istanbul|Asia/Istanbul","Europe/Istanbul|Turkey","Europe/Kiev|Europe/Kyiv","Europe/Kiev|Europe/Uzhgorod","Europe/Kiev|Europe/Zaporozhye","Europe/Lisbon|Portugal","Europe/Lisbon|WET","Europe/London|Europe/Belfast","Europe/London|Europe/Guernsey","Europe/London|Europe/Isle_of_Man","Europe/London|Europe/Jersey","Europe/London|GB","Europe/London|GB-Eire","Europe/Moscow|W-SU","Europe/Paris|Europe/Monaco","Europe/Prague|Europe/Bratislava","Europe/Rome|Europe/San_Marino","Europe/Rome|Europe/Vatican","Europe/Warsaw|Poland","Europe/Zurich|Europe/Busingen","Europe/Zurich|Europe/Vaduz","Indian/Maldives|Indian/Kerguelen","Pacific/Auckland|Antarctica/McMurdo","Pacific/Auckland|Antarctica/South_Pole","Pacific/Auckland|NZ","Pacific/Chatham|NZ-CHAT","Pacific/Easter|Chile/EasterIsland","Pacific/Enderbury|Pacific/Kanton","Pacific/Guadalcanal|Pacific/Pohnpei","Pacific/Guadalcanal|Pacific/Ponape","Pacific/Guam|Pacific/Saipan","Pacific/Honolulu|HST","Pacific/Honolulu|Pacific/Johnston","Pacific/Honolulu|US/Hawaii","Pacific/Kwajalein|Kwajalein","Pacific/Pago_Pago|Pacific/Midway","Pacific/Pago_Pago|Pacific/Samoa","Pacific/Pago_Pago|US/Samoa","Pacific/Port_Moresby|Antarctica/DumontDUrville","Pacific/Port_Moresby|Pacific/Chuuk","Pacific/Port_Moresby|Pacific/Truk","Pacific/Port_Moresby|Pacific/Yap","Pacific/Tarawa|Pacific/Funafuti","Pacific/Tarawa|Pacific/Majuro","Pacific/Tarawa|Pacific/Wake","Pacific/Tarawa|Pacific/Wallis"],_pt=["AD|Europe/Andorra","AE|Asia/Dubai","AF|Asia/Kabul","AG|America/Puerto_Rico America/Antigua","AI|America/Puerto_Rico America/Anguilla","AL|Europe/Tirane","AM|Asia/Yerevan","AO|Africa/Lagos Africa/Luanda","AQ|Antarctica/Casey Antarctica/Davis Antarctica/Mawson Antarctica/Palmer Antarctica/Rothera Antarctica/Troll Antarctica/Vostok Pacific/Auckland Pacific/Port_Moresby Asia/Riyadh Asia/Singapore Antarctica/McMurdo Antarctica/DumontDUrville Antarctica/Syowa","AR|America/Argentina/Buenos_Aires America/Argentina/Cordoba America/Argentina/Salta America/Argentina/Jujuy America/Argentina/Tucuman America/Argentina/Catamarca America/Argentina/La_Rioja America/Argentina/San_Juan America/Argentina/Mendoza America/Argentina/San_Luis America/Argentina/Rio_Gallegos America/Argentina/Ushuaia","AS|Pacific/Pago_Pago","AT|Europe/Vienna","AU|Australia/Lord_Howe Antarctica/Macquarie Australia/Hobart Australia/Melbourne Australia/Sydney Australia/Broken_Hill Australia/Brisbane Australia/Lindeman Australia/Adelaide Australia/Darwin Australia/Perth Australia/Eucla Asia/Tokyo","AW|America/Puerto_Rico America/Aruba","AX|Europe/Helsinki Europe/Mariehamn","AZ|Asia/Baku","BA|Europe/Belgrade Europe/Sarajevo","BB|America/Barbados","BD|Asia/Dhaka","BE|Europe/Brussels","BF|Africa/Abidjan Africa/Ouagadougou","BG|Europe/Sofia","BH|Asia/Qatar Asia/Bahrain","BI|Africa/Maputo Africa/Bujumbura","BJ|Africa/Lagos Africa/Porto-Novo","BL|America/Puerto_Rico America/St_Barthelemy","BM|Atlantic/Bermuda","BN|Asia/Kuching Asia/Brunei","BO|America/La_Paz","BQ|America/Puerto_Rico America/Kralendijk","BR|America/Noronha America/Belem America/Fortaleza America/Recife America/Araguaina America/Maceio America/Bahia America/Sao_Paulo America/Campo_Grande America/Cuiaba America/Santarem America/Porto_Velho America/Boa_Vista America/Manaus America/Eirunepe America/Rio_Branco","BS|America/Toronto America/Nassau","BT|Asia/Thimphu","BW|Africa/Maputo Africa/Gaborone","BY|Europe/Minsk","BZ|America/Belize","CA|America/St_Johns America/Halifax America/Glace_Bay America/Moncton America/Goose_Bay America/Toronto America/Iqaluit America/Winnipeg America/Resolute America/Rankin_Inlet America/Regina America/Swift_Current America/Edmonton America/Cambridge_Bay America/Inuvik America/Dawson_Creek America/Fort_Nelson America/Whitehorse America/Dawson America/Vancouver America/Panama America/Puerto_Rico America/Phoenix America/Blanc-Sablon America/Atikokan America/Creston","CC|Asia/Yangon Indian/Cocos","CD|Africa/Maputo Africa/Lagos Africa/Kinshasa Africa/Lubumbashi","CF|Africa/Lagos Africa/Bangui","CG|Africa/Lagos Africa/Brazzaville","CH|Europe/Zurich","CI|Africa/Abidjan","CK|Pacific/Rarotonga","CL|America/Santiago America/Punta_Arenas Pacific/Easter","CM|Africa/Lagos Africa/Douala","CN|Asia/Shanghai Asia/Urumqi","CO|America/Bogota","CR|America/Costa_Rica","CU|America/Havana","CV|Atlantic/Cape_Verde","CW|America/Puerto_Rico America/Curacao","CX|Asia/Bangkok Indian/Christmas","CY|Asia/Nicosia Asia/Famagusta","CZ|Europe/Prague","DE|Europe/Zurich Europe/Berlin Europe/Busingen","DJ|Africa/Nairobi Africa/Djibouti","DK|Europe/Berlin Europe/Copenhagen","DM|America/Puerto_Rico America/Dominica","DO|America/Santo_Domingo","DZ|Africa/Algiers","EC|America/Guayaquil Pacific/Galapagos","EE|Europe/Tallinn","EG|Africa/Cairo","EH|Africa/El_Aaiun","ER|Africa/Nairobi Africa/Asmara","ES|Europe/Madrid Africa/Ceuta Atlantic/Canary","ET|Africa/Nairobi Africa/Addis_Ababa","FI|Europe/Helsinki","FJ|Pacific/Fiji","FK|Atlantic/Stanley","FM|Pacific/Kosrae Pacific/Port_Moresby Pacific/Guadalcanal Pacific/Chuuk Pacific/Pohnpei","FO|Atlantic/Faroe","FR|Europe/Paris","GA|Africa/Lagos Africa/Libreville","GB|Europe/London","GD|America/Puerto_Rico America/Grenada","GE|Asia/Tbilisi","GF|America/Cayenne","GG|Europe/London Europe/Guernsey","GH|Africa/Abidjan Africa/Accra","GI|Europe/Gibraltar","GL|America/Nuuk America/Danmarkshavn America/Scoresbysund America/Thule","GM|Africa/Abidjan Africa/Banjul","GN|Africa/Abidjan Africa/Conakry","GP|America/Puerto_Rico America/Guadeloupe","GQ|Africa/Lagos Africa/Malabo","GR|Europe/Athens","GS|Atlantic/South_Georgia","GT|America/Guatemala","GU|Pacific/Guam","GW|Africa/Bissau","GY|America/Guyana","HK|Asia/Hong_Kong","HN|America/Tegucigalpa","HR|Europe/Belgrade Europe/Zagreb","HT|America/Port-au-Prince","HU|Europe/Budapest","ID|Asia/Jakarta Asia/Pontianak Asia/Makassar Asia/Jayapura","IE|Europe/Dublin","IL|Asia/Jerusalem","IM|Europe/London Europe/Isle_of_Man","IN|Asia/Kolkata","IO|Indian/Chagos","IQ|Asia/Baghdad","IR|Asia/Tehran","IS|Africa/Abidjan Atlantic/Reykjavik","IT|Europe/Rome","JE|Europe/London Europe/Jersey","JM|America/Jamaica","JO|Asia/Amman","JP|Asia/Tokyo","KE|Africa/Nairobi","KG|Asia/Bishkek","KH|Asia/Bangkok Asia/Phnom_Penh","KI|Pacific/Tarawa Pacific/Kanton Pacific/Kiritimati","KM|Africa/Nairobi Indian/Comoro","KN|America/Puerto_Rico America/St_Kitts","KP|Asia/Pyongyang","KR|Asia/Seoul","KW|Asia/Riyadh Asia/Kuwait","KY|America/Panama America/Cayman","KZ|Asia/Almaty Asia/Qyzylorda Asia/Qostanay Asia/Aqtobe Asia/Aqtau Asia/Atyrau Asia/Oral","LA|Asia/Bangkok Asia/Vientiane","LB|Asia/Beirut","LC|America/Puerto_Rico America/St_Lucia","LI|Europe/Zurich Europe/Vaduz","LK|Asia/Colombo","LR|Africa/Monrovia","LS|Africa/Johannesburg Africa/Maseru","LT|Europe/Vilnius","LU|Europe/Brussels Europe/Luxembourg","LV|Europe/Riga","LY|Africa/Tripoli","MA|Africa/Casablanca","MC|Europe/Paris Europe/Monaco","MD|Europe/Chisinau","ME|Europe/Belgrade Europe/Podgorica","MF|America/Puerto_Rico America/Marigot","MG|Africa/Nairobi Indian/Antananarivo","MH|Pacific/Tarawa Pacific/Kwajalein Pacific/Majuro","MK|Europe/Belgrade Europe/Skopje","ML|Africa/Abidjan Africa/Bamako","MM|Asia/Yangon","MN|Asia/Ulaanbaatar Asia/Hovd","MO|Asia/Macau","MP|Pacific/Guam Pacific/Saipan","MQ|America/Martinique","MR|Africa/Abidjan Africa/Nouakchott","MS|America/Puerto_Rico America/Montserrat","MT|Europe/Malta","MU|Indian/Mauritius","MV|Indian/Maldives","MW|Africa/Maputo Africa/Blantyre","MX|America/Mexico_City America/Cancun America/Merida America/Monterrey America/Matamoros America/Chihuahua America/Ciudad_Juarez America/Ojinaga America/Mazatlan America/Bahia_Banderas America/Hermosillo America/Tijuana","MY|Asia/Kuching Asia/Singapore Asia/Kuala_Lumpur","MZ|Africa/Maputo","NA|Africa/Windhoek","NC|Pacific/Noumea","NE|Africa/Lagos Africa/Niamey","NF|Pacific/Norfolk","NG|Africa/Lagos","NI|America/Managua","NL|Europe/Brussels Europe/Amsterdam","NO|Europe/Berlin Europe/Oslo","NP|Asia/Kathmandu","NR|Pacific/Nauru","NU|Pacific/Niue","NZ|Pacific/Auckland Pacific/Chatham","OM|Asia/Dubai Asia/Muscat","PA|America/Panama","PE|America/Lima","PF|Pacific/Tahiti Pacific/Marquesas Pacific/Gambier","PG|Pacific/Port_Moresby Pacific/Bougainville","PH|Asia/Manila","PK|Asia/Karachi","PL|Europe/Warsaw","PM|America/Miquelon","PN|Pacific/Pitcairn","PR|America/Puerto_Rico","PS|Asia/Gaza Asia/Hebron","PT|Europe/Lisbon Atlantic/Madeira Atlantic/Azores","PW|Pacific/Palau","PY|America/Asuncion","QA|Asia/Qatar","RE|Asia/Dubai Indian/Reunion","RO|Europe/Bucharest","RS|Europe/Belgrade","RU|Europe/Kaliningrad Europe/Moscow Europe/Simferopol Europe/Kirov Europe/Volgograd Europe/Astrakhan Europe/Saratov Europe/Ulyanovsk Europe/Samara Asia/Yekaterinburg Asia/Omsk Asia/Novosibirsk Asia/Barnaul Asia/Tomsk Asia/Novokuznetsk Asia/Krasnoyarsk Asia/Irkutsk Asia/Chita Asia/Yakutsk Asia/Khandyga Asia/Vladivostok Asia/Ust-Nera Asia/Magadan Asia/Sakhalin Asia/Srednekolymsk Asia/Kamchatka Asia/Anadyr","RW|Africa/Maputo Africa/Kigali","SA|Asia/Riyadh","SB|Pacific/Guadalcanal","SC|Asia/Dubai Indian/Mahe","SD|Africa/Khartoum","SE|Europe/Berlin Europe/Stockholm","SG|Asia/Singapore","SH|Africa/Abidjan Atlantic/St_Helena","SI|Europe/Belgrade Europe/Ljubljana","SJ|Europe/Berlin Arctic/Longyearbyen","SK|Europe/Prague Europe/Bratislava","SL|Africa/Abidjan Africa/Freetown","SM|Europe/Rome Europe/San_Marino","SN|Africa/Abidjan Africa/Dakar","SO|Africa/Nairobi Africa/Mogadishu","SR|America/Paramaribo","SS|Africa/Juba","ST|Africa/Sao_Tome","SV|America/El_Salvador","SX|America/Puerto_Rico America/Lower_Princes","SY|Asia/Damascus","SZ|Africa/Johannesburg Africa/Mbabane","TC|America/Grand_Turk","TD|Africa/Ndjamena","TF|Asia/Dubai Indian/Maldives Indian/Kerguelen","TG|Africa/Abidjan Africa/Lome","TH|Asia/Bangkok","TJ|Asia/Dushanbe","TK|Pacific/Fakaofo","TL|Asia/Dili","TM|Asia/Ashgabat","TN|Africa/Tunis","TO|Pacific/Tongatapu","TR|Europe/Istanbul","TT|America/Puerto_Rico America/Port_of_Spain","TV|Pacific/Tarawa Pacific/Funafuti","TW|Asia/Taipei","TZ|Africa/Nairobi Africa/Dar_es_Salaam","UA|Europe/Simferopol Europe/Kyiv","UG|Africa/Nairobi Africa/Kampala","UM|Pacific/Pago_Pago Pacific/Tarawa Pacific/Midway Pacific/Wake","US|America/New_York America/Detroit America/Kentucky/Louisville America/Kentucky/Monticello America/Indiana/Indianapolis America/Indiana/Vincennes America/Indiana/Winamac America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Vevay America/Chicago America/Indiana/Tell_City America/Indiana/Knox America/Menominee America/North_Dakota/Center America/North_Dakota/New_Salem America/North_Dakota/Beulah America/Denver America/Boise America/Phoenix America/Los_Angeles America/Anchorage America/Juneau America/Sitka America/Metlakatla America/Yakutat America/Nome America/Adak Pacific/Honolulu","UY|America/Montevideo","UZ|Asia/Samarkand Asia/Tashkent","VA|Europe/Rome Europe/Vatican","VC|America/Puerto_Rico America/St_Vincent","VE|America/Caracas","VG|America/Puerto_Rico America/Tortola","VI|America/Puerto_Rico America/St_Thomas","VN|Asia/Bangkok Asia/Ho_Chi_Minh","VU|Pacific/Efate","WF|Pacific/Tarawa Pacific/Wallis","WS|Pacific/Apia","YE|Asia/Riyadh Asia/Aden","YT|Africa/Nairobi Indian/Mayotte","ZA|Africa/Johannesburg","ZM|Africa/Maputo Africa/Lusaka","ZW|Africa/Maputo Africa/Harare"],kpt={version:vpt,zones:xpt,links:wpt,countries:_pt};var lZ;function Spt(){if(lZ)return QC.exports;lZ=1;var e=QC.exports=$be();return e.tz.load(kpt),QC.exports}var Cpt=u4.exports,uZ;function qpt(){return uZ||(uZ=1,function(e){//! moment-timezone-utils.js //! version : 0.5.47 //! Copyright (c) JS Foundation and other contributors //! license : MIT //! github.com/moment/moment-timezone -(function(t,n){e.exports?e.exports=n(Cpt()):n(t.moment)})(qpt,function(t){if(!t.tz)throw new Error("moment-timezone-utils.js must be loaded after moment-timezone.js");var n="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX",o=1e-6;function r(v,M){for(var y=".",k="",S;M>0;)M-=1,v*=60,S=Math.floor(v+o),y+=n[S],v-=S,S&&(k+=y,y="");return k}function s(v,M){for(var y="",k=Math.abs(v),S=Math.floor(k),C=r(k-S,Math.min(~~M,10));S>0;)y=n[S%60]+y,S=Math.floor(S/60);return v<0&&(y="-"+y),y&&C?y+C:!C&&y==="-"?"0":y||C||"0"}function i(v){var M=[],y=0,k;for(k=0;k<v.length-1;k++)M[k]=s(Math.round((v[k]-y)/1e3)/60,1),y=v[k];return M.join(" ")}function c(v){var M=0,y=[],k=[],S=[],C={},R,T;for(R=0;R<v.abbrs.length;R++)T=v.abbrs[R]+"|"+v.offsets[R],C[T]===void 0&&(C[T]=M,y[M]=v.abbrs[R],k[M]=s(Math.round(v.offsets[R]*60)/60,1),M++),S[R]=s(C[T],0);return y.join(" ")+"|"+k.join(" ")+"|"+S.join("")}function l(v){if(!v)return"";if(v<1e3)return v;var M=String(v|0).length-2,y=Math.round(v/Math.pow(10,M));return y+"e"+M}function u(v){if(!v.name)throw new Error("Missing name");if(!v.abbrs)throw new Error("Missing abbrs");if(!v.untils)throw new Error("Missing untils");if(!v.offsets)throw new Error("Missing offsets");if(v.offsets.length!==v.untils.length||v.offsets.length!==v.abbrs.length)throw new Error("Mismatched array lengths")}function d(v){return u(v),[v.name,c(v),i(v.untils),l(v.population)].join("|")}function p(v){return[v.name,v.zones.join(" ")].join("|")}function f(v,M){var y;if(v.length!==M.length)return!1;for(y=0;y<v.length;y++)if(v[y]!==M[y])return!1;return!0}function b(v,M){return f(v.offsets,M.offsets)&&f(v.abbrs,M.abbrs)&&f(v.untils,M.untils)}function h(v,M,y,k){var S,C,R,T,E,B,N=[];for(S=0;S<v.length;S++){for(B=!1,R=v[S],C=0;C<N.length;C++)E=N[C],T=E[0],b(R,T)&&(R.population>T.population||R.population===T.population&&k&&k[R.name]?E.unshift(R):E.push(R),B=!0);B||N.push([R])}for(S=0;S<N.length;S++)for(E=N[S],M.push(E[0]),C=1;C<E.length;C++)y.push(E[0].name+"|"+E[C].name)}function g(v,M){var y=[],k=[];return v.links&&(k=v.links.slice()),h(v.zones,y,k,M),{version:v.version,zones:y,links:k.sort()}}function z(v,M,y){var k=0,S=v.length+1,C,R;for(y||(y=M),M>y&&(R=M,M=y,y=R),R=0;R<v.length;R++)v[R]!=null&&(C=new Date(v[R]).getUTCFullYear(),C<M&&(k=R+1),C>y&&(S=Math.min(S,R+1)));return[k,S]}function A(v,M,y){var k=Array.prototype.slice,S=z(v.untils,M,y),C=k.apply(v.untils,S);return C[C.length-1]=null,{name:v.name,abbrs:k.apply(v.abbrs,S),untils:C,offsets:k.apply(v.offsets,S),population:v.population,countries:v.countries}}function _(v,M,y,k){var S,C=v.zones,R=[],T;for(S=0;S<C.length;S++)R[S]=A(C[S],M,y);for(T=g({zones:R,links:v.links.slice(),version:v.version},k),S=0;S<T.zones.length;S++)T.zones[S]=d(T.zones[S]);return T.countries=v.countries?v.countries.map(function(E){return p(E)}):[],T}return t.tz.pack=d,t.tz.packBase60=s,t.tz.createLinks=g,t.tz.filterYears=A,t.tz.filterLinkPack=_,t.tz.packCountry=p,t})}(d4)),d4.exports}Rpt();const Rl="WP",Tpt=/^[+-][0-1][0-9](:?[0-9][0-9])?$/;let ud={l10n:{locale:"en",months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],weekdays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],weekdaysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],meridiem:{am:"am",pm:"pm",AM:"AM",PM:"PM"},relative:{future:"%s from now",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},startOfWeek:0},formats:{time:"g: i a",date:"F j, Y",datetime:"F j, Y g: i a",datetimeAbbreviated:"M j, Y g: i a"},timezone:{offset:"0",offsetFormatted:"0",string:"",abbr:""}};function Sa(){return ud}function Ept(){const e=gt.tz.zone(ud.timezone.string);e?gt.tz.add(gt.tz.pack({name:Rl,abbrs:e.abbrs,untils:e.untils,offsets:e.offsets})):gt.tz.add(gt.tz.pack({name:Rl,abbrs:[Rl],untils:[null],offsets:[-ud.timezone.offset*60||0]}))}const sW=60,Wpt=60,Npt=60*sW,dZ={d:"DD",D:"ddd",j:"D",l:"dddd",N:"E",S(e){const t=e.format("D");return e.format("Do").replace(t,"")},w:"d",z(e){return(parseInt(e.format("DDD"),10)-1).toString()},W:"W",F:"MMMM",m:"MM",M:"MMM",n:"M",t(e){return e.daysInMonth()},L(e){return e.isLeapYear()?"1":"0"},o:"GGGG",Y:"YYYY",y:"YY",a:"a",A:"A",B(e){const t=gt(e).utcOffset(60),n=parseInt(t.format("s"),10),o=parseInt(t.format("m"),10),r=parseInt(t.format("H"),10);return parseInt(((n+o*sW+r*Npt)/86.4).toString(),10)},g:"h",G:"H",h:"hh",H:"HH",i:"mm",s:"ss",u:"SSSSSS",v:"SSS",e:"zz",I(e){return e.isDST()?"1":"0"},O:"ZZ",P:"Z",T:"z",Z(e){const t=e.format("Z"),n=t[0]==="-"?-1:1,o=t.substring(1).split(":").map(r=>parseInt(r,10));return n*(o[0]*Wpt+o[1])*sW},c:"YYYY-MM-DDTHH:mm:ssZ",r(e){return e.locale("en").format("ddd, DD MMM YYYY HH:mm:ss ZZ")},U:"X"};function Lj(e,t=new Date){let n,o;const r=[],s=gt(t);for(n=0;n<e.length;n++){if(o=e[n],o==="\\"){n++,r.push("["+e[n]+"]");continue}if(o in dZ){const i=dZ[o];typeof i!="string"?r.push("["+i(s)+"]"):r.push(i)}else r.push("["+o+"]")}return s.format(r.join("[]"))}function r0(e,t=new Date,n){if(n===!0)return Bpt(e,t);n===!1&&(n=void 0);const o=Lpt(t,n);return o.locale(ud.l10n.locale),Lj(e,o)}function Bpt(e,t=new Date){const n=gt(t).utc();return n.locale(ud.l10n.locale),Lj(e,n)}function Vbe(e){const t=gt.tz(Rl);return gt.tz(e,Rl).isAfter(t)}function _f(e){return e?gt.tz(e,Rl).toDate():gt.tz(Rl).toDate()}function c_(e,t){const n=gt.tz(e,Rl),o=gt.tz(Rl);return n.from(o)}function Lpt(e,t=""){const n=gt(e);return t&&!pZ(t)?n.tz(t):t&&pZ(t)?n.utcOffset(t):ud.timezone.string?n.tz(ud.timezone.string):n.utcOffset(+ud.timezone.offset)}function pZ(e){return typeof e=="number"?!0:Tpt.test(e)}Ept();let Ppt=function(e){return e[e.SUNDAY=0]="SUNDAY",e[e.MONDAY=1]="MONDAY",e[e.TUESDAY=2]="TUESDAY",e[e.WEDNESDAY=3]="WEDNESDAY",e[e.THURSDAY=4]="THURSDAY",e[e.FRIDAY=5]="FRIDAY",e[e.SATURDAY=6]="SATURDAY",e}({});const jpt=(e,t,n)=>(kz(e,t)||Jat(e,t))&&(kz(e,n)||ect(e,n)),fZ=e=>Z8(e,{hours:0,minutes:0,seconds:0,milliseconds:0}),Ipt=({weekStartsOn:e=Ppt.SUNDAY,viewing:t=new Date,selected:n=[],numberOfMonths:o=1}={})=>{const[r,s]=x.useState(t),i=x.useCallback(()=>s(Mct()),[s]),c=x.useCallback(S=>s(C=>bj(C,S)),[]),l=x.useCallback(()=>s(S=>i4(S,1)),[]),u=x.useCallback(()=>s(S=>rf(S,1)),[]),d=x.useCallback(S=>s(C=>gct(C,S)),[]),p=x.useCallback(()=>s(S=>Oct(S,1)),[]),f=x.useCallback(()=>s(S=>Xfe(S,1)),[]),[b,h]=x.useState(n.map(fZ)),g=()=>h([]),z=x.useCallback(S=>b.findIndex(C=>kz(C,S))>-1,[b]),A=x.useCallback((S,C)=>{h(C?Array.isArray(S)?S:[S]:R=>R.concat(Array.isArray(S)?S:[S]))},[]),_=x.useCallback(S=>h(C=>Array.isArray(S)?C.filter(R=>!S.map(T=>T.getTime()).includes(R.getTime())):C.filter(R=>!kz(R,S))),[]),v=x.useCallback((S,C)=>z(S)?_(S):A(S,C),[_,z,A]),M=x.useCallback((S,C,R)=>{h(R?LA({start:S,end:C}):T=>T.concat(LA({start:S,end:C})))},[]),y=x.useCallback((S,C)=>{h(R=>R.filter(T=>!LA({start:S,end:C}).map(E=>E.getTime()).includes(T.getTime())))},[]),k=x.useMemo(()=>Zit({start:vx(r),end:Y8(rf(r,o-1))}).map(S=>Qit({start:vx(S),end:Y8(S)},{weekStartsOn:e}).map(C=>LA({start:sa(C,{weekStartsOn:e}),end:Gfe(C,{weekStartsOn:e})}))),[r,e,o]);return{clearTime:fZ,inRange:jpt,viewing:r,setViewing:s,viewToday:i,viewMonth:c,viewPreviousMonth:l,viewNextMonth:u,viewYear:d,viewPreviousYear:p,viewNextYear:f,selected:b,setSelected:h,clearSelected:g,isSelected:z,select:A,deselect:_,toggle:v,selectRange:M,deselectRange:y,calendar:k}},Dpt=He("div",{target:"e105ri6r5"})(P3,";"),Fpt=He(Ot,{target:"e105ri6r4"})("margin-bottom:",Je(4),";"),$pt=He(_a,{target:"e105ri6r3"})("font-size:",Ye.fontSize,";font-weight:",Ye.fontWeight,";strong{font-weight:",Ye.fontWeightHeading,";}"),Vpt=He("div",{target:"e105ri6r2"})("column-gap:",Je(2),";display:grid;grid-template-columns:0.5fr repeat( 5, 1fr ) 0.5fr;justify-items:center;row-gap:",Je(2),";"),Hpt=He("div",{target:"e105ri6r1"})("color:",Ze.theme.gray[700],";font-size:",Ye.fontSize,";line-height:",Ye.fontLineHeightBase,";&:nth-of-type( 1 ){justify-self:start;}&:nth-of-type( 7 ){justify-self:end;}"),Upt=He(Ce,{shouldForwardProp:e=>!["column","isSelected","isToday","hasEvents"].includes(e),target:"e105ri6r0"})("grid-column:",e=>e.column,";position:relative;justify-content:center;",e=>e.column===1&&` +(function(t,n){e.exports?e.exports=n(Spt()):n(t.moment)})(Cpt,function(t){if(!t.tz)throw new Error("moment-timezone-utils.js must be loaded after moment-timezone.js");var n="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX",o=1e-6;function r(v,M){for(var y=".",k="",S;M>0;)M-=1,v*=60,S=Math.floor(v+o),y+=n[S],v-=S,S&&(k+=y,y="");return k}function s(v,M){for(var y="",k=Math.abs(v),S=Math.floor(k),C=r(k-S,Math.min(~~M,10));S>0;)y=n[S%60]+y,S=Math.floor(S/60);return v<0&&(y="-"+y),y&&C?y+C:!C&&y==="-"?"0":y||C||"0"}function i(v){var M=[],y=0,k;for(k=0;k<v.length-1;k++)M[k]=s(Math.round((v[k]-y)/1e3)/60,1),y=v[k];return M.join(" ")}function c(v){var M=0,y=[],k=[],S=[],C={},R,T;for(R=0;R<v.abbrs.length;R++)T=v.abbrs[R]+"|"+v.offsets[R],C[T]===void 0&&(C[T]=M,y[M]=v.abbrs[R],k[M]=s(Math.round(v.offsets[R]*60)/60,1),M++),S[R]=s(C[T],0);return y.join(" ")+"|"+k.join(" ")+"|"+S.join("")}function l(v){if(!v)return"";if(v<1e3)return v;var M=String(v|0).length-2,y=Math.round(v/Math.pow(10,M));return y+"e"+M}function u(v){if(!v.name)throw new Error("Missing name");if(!v.abbrs)throw new Error("Missing abbrs");if(!v.untils)throw new Error("Missing untils");if(!v.offsets)throw new Error("Missing offsets");if(v.offsets.length!==v.untils.length||v.offsets.length!==v.abbrs.length)throw new Error("Mismatched array lengths")}function d(v){return u(v),[v.name,c(v),i(v.untils),l(v.population)].join("|")}function p(v){return[v.name,v.zones.join(" ")].join("|")}function f(v,M){var y;if(v.length!==M.length)return!1;for(y=0;y<v.length;y++)if(v[y]!==M[y])return!1;return!0}function b(v,M){return f(v.offsets,M.offsets)&&f(v.abbrs,M.abbrs)&&f(v.untils,M.untils)}function h(v,M,y,k){var S,C,R,T,E,B,N=[];for(S=0;S<v.length;S++){for(B=!1,R=v[S],C=0;C<N.length;C++)E=N[C],T=E[0],b(R,T)&&(R.population>T.population||R.population===T.population&&k&&k[R.name]?E.unshift(R):E.push(R),B=!0);B||N.push([R])}for(S=0;S<N.length;S++)for(E=N[S],M.push(E[0]),C=1;C<E.length;C++)y.push(E[0].name+"|"+E[C].name)}function g(v,M){var y=[],k=[];return v.links&&(k=v.links.slice()),h(v.zones,y,k,M),{version:v.version,zones:y,links:k.sort()}}function z(v,M,y){var k=0,S=v.length+1,C,R;for(y||(y=M),M>y&&(R=M,M=y,y=R),R=0;R<v.length;R++)v[R]!=null&&(C=new Date(v[R]).getUTCFullYear(),C<M&&(k=R+1),C>y&&(S=Math.min(S,R+1)));return[k,S]}function A(v,M,y){var k=Array.prototype.slice,S=z(v.untils,M,y),C=k.apply(v.untils,S);return C[C.length-1]=null,{name:v.name,abbrs:k.apply(v.abbrs,S),untils:C,offsets:k.apply(v.offsets,S),population:v.population,countries:v.countries}}function _(v,M,y,k){var S,C=v.zones,R=[],T;for(S=0;S<C.length;S++)R[S]=A(C[S],M,y);for(T=g({zones:R,links:v.links.slice(),version:v.version},k),S=0;S<T.zones.length;S++)T.zones[S]=d(T.zones[S]);return T.countries=v.countries?v.countries.map(function(E){return p(E)}):[],T}return t.tz.pack=d,t.tz.packBase60=s,t.tz.createLinks=g,t.tz.filterYears=A,t.tz.filterLinkPack=_,t.tz.packCountry=p,t})}(u4)),u4.exports}qpt();const ql="WP",Rpt=/^[+-][0-1][0-9](:?[0-9][0-9])?$/;let ud={l10n:{locale:"en",months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],weekdays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],weekdaysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],meridiem:{am:"am",pm:"pm",AM:"AM",PM:"PM"},relative:{future:"%s from now",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},startOfWeek:0},formats:{time:"g: i a",date:"F j, Y",datetime:"F j, Y g: i a",datetimeAbbreviated:"M j, Y g: i a"},timezone:{offset:"0",offsetFormatted:"0",string:"",abbr:""}};function Sa(){return ud}function Tpt(){const e=gt.tz.zone(ud.timezone.string);e?gt.tz.add(gt.tz.pack({name:ql,abbrs:e.abbrs,untils:e.untils,offsets:e.offsets})):gt.tz.add(gt.tz.pack({name:ql,abbrs:[ql],untils:[null],offsets:[-ud.timezone.offset*60||0]}))}const rW=60,Ept=60,Wpt=60*rW,dZ={d:"DD",D:"ddd",j:"D",l:"dddd",N:"E",S(e){const t=e.format("D");return e.format("Do").replace(t,"")},w:"d",z(e){return(parseInt(e.format("DDD"),10)-1).toString()},W:"W",F:"MMMM",m:"MM",M:"MMM",n:"M",t(e){return e.daysInMonth()},L(e){return e.isLeapYear()?"1":"0"},o:"GGGG",Y:"YYYY",y:"YY",a:"a",A:"A",B(e){const t=gt(e).utcOffset(60),n=parseInt(t.format("s"),10),o=parseInt(t.format("m"),10),r=parseInt(t.format("H"),10);return parseInt(((n+o*rW+r*Wpt)/86.4).toString(),10)},g:"h",G:"H",h:"hh",H:"HH",i:"mm",s:"ss",u:"SSSSSS",v:"SSS",e:"zz",I(e){return e.isDST()?"1":"0"},O:"ZZ",P:"Z",T:"z",Z(e){const t=e.format("Z"),n=t[0]==="-"?-1:1,o=t.substring(1).split(":").map(r=>parseInt(r,10));return n*(o[0]*Ept+o[1])*rW},c:"YYYY-MM-DDTHH:mm:ssZ",r(e){return e.locale("en").format("ddd, DD MMM YYYY HH:mm:ss ZZ")},U:"X"};function Bj(e,t=new Date){let n,o;const r=[],s=gt(t);for(n=0;n<e.length;n++){if(o=e[n],o==="\\"){n++,r.push("["+e[n]+"]");continue}if(o in dZ){const i=dZ[o];typeof i!="string"?r.push("["+i(s)+"]"):r.push(i)}else r.push("["+o+"]")}return s.format(r.join("[]"))}function r0(e,t=new Date,n){if(n===!0)return Npt(e,t);n===!1&&(n=void 0);const o=Bpt(t,n);return o.locale(ud.l10n.locale),Bj(e,o)}function Npt(e,t=new Date){const n=gt(t).utc();return n.locale(ud.l10n.locale),Bj(e,n)}function Vbe(e){const t=gt.tz(ql);return gt.tz(e,ql).isAfter(t)}function _f(e){return e?gt.tz(e,ql).toDate():gt.tz(ql).toDate()}function a_(e,t){const n=gt.tz(e,ql),o=gt.tz(ql);return n.from(o)}function Bpt(e,t=""){const n=gt(e);return t&&!pZ(t)?n.tz(t):t&&pZ(t)?n.utcOffset(t):ud.timezone.string?n.tz(ud.timezone.string):n.utcOffset(+ud.timezone.offset)}function pZ(e){return typeof e=="number"?!0:Rpt.test(e)}Tpt();let Lpt=function(e){return e[e.SUNDAY=0]="SUNDAY",e[e.MONDAY=1]="MONDAY",e[e.TUESDAY=2]="TUESDAY",e[e.WEDNESDAY=3]="WEDNESDAY",e[e.THURSDAY=4]="THURSDAY",e[e.FRIDAY=5]="FRIDAY",e[e.SATURDAY=6]="SATURDAY",e}({});const Ppt=(e,t,n)=>(kz(e,t)||Qat(e,t))&&(kz(e,n)||Jat(e,n)),fZ=e=>Y8(e,{hours:0,minutes:0,seconds:0,milliseconds:0}),jpt=({weekStartsOn:e=Lpt.SUNDAY,viewing:t=new Date,selected:n=[],numberOfMonths:o=1}={})=>{const[r,s]=x.useState(t),i=x.useCallback(()=>s(gct()),[s]),c=x.useCallback(S=>s(C=>fj(C,S)),[]),l=x.useCallback(()=>s(S=>s4(S,1)),[]),u=x.useCallback(()=>s(S=>rf(S,1)),[]),d=x.useCallback(S=>s(C=>mct(C,S)),[]),p=x.useCallback(()=>s(S=>zct(S,1)),[]),f=x.useCallback(()=>s(S=>Xfe(S,1)),[]),[b,h]=x.useState(n.map(fZ)),g=()=>h([]),z=x.useCallback(S=>b.findIndex(C=>kz(C,S))>-1,[b]),A=x.useCallback((S,C)=>{h(C?Array.isArray(S)?S:[S]:R=>R.concat(Array.isArray(S)?S:[S]))},[]),_=x.useCallback(S=>h(C=>Array.isArray(S)?C.filter(R=>!S.map(T=>T.getTime()).includes(R.getTime())):C.filter(R=>!kz(R,S))),[]),v=x.useCallback((S,C)=>z(S)?_(S):A(S,C),[_,z,A]),M=x.useCallback((S,C,R)=>{h(R?BA({start:S,end:C}):T=>T.concat(BA({start:S,end:C})))},[]),y=x.useCallback((S,C)=>{h(R=>R.filter(T=>!BA({start:S,end:C}).map(E=>E.getTime()).includes(T.getTime())))},[]),k=x.useMemo(()=>Yit({start:Ax(r),end:K8(rf(r,o-1))}).map(S=>Zit({start:Ax(S),end:K8(S)},{weekStartsOn:e}).map(C=>BA({start:ra(C,{weekStartsOn:e}),end:Gfe(C,{weekStartsOn:e})}))),[r,e,o]);return{clearTime:fZ,inRange:Ppt,viewing:r,setViewing:s,viewToday:i,viewMonth:c,viewPreviousMonth:l,viewNextMonth:u,viewYear:d,viewPreviousYear:p,viewNextYear:f,selected:b,setSelected:h,clearSelected:g,isSelected:z,select:A,deselect:_,toggle:v,selectRange:M,deselectRange:y,calendar:k}},Ipt=He("div",{target:"e105ri6r5"})(P3,";"),Dpt=He(Ot,{target:"e105ri6r4"})("margin-bottom:",Je(4),";"),Fpt=He(_a,{target:"e105ri6r3"})("font-size:",Ye.fontSize,";font-weight:",Ye.fontWeight,";strong{font-weight:",Ye.fontWeightHeading,";}"),$pt=He("div",{target:"e105ri6r2"})("column-gap:",Je(2),";display:grid;grid-template-columns:0.5fr repeat( 5, 1fr ) 0.5fr;justify-items:center;row-gap:",Je(2),";"),Vpt=He("div",{target:"e105ri6r1"})("color:",Ze.theme.gray[700],";font-size:",Ye.fontSize,";line-height:",Ye.fontLineHeightBase,";&:nth-of-type( 1 ){justify-self:start;}&:nth-of-type( 7 ){justify-self:end;}"),Hpt=He(Ce,{shouldForwardProp:e=>!["column","isSelected","isToday","hasEvents"].includes(e),target:"e105ri6r0"})("grid-column:",e=>e.column,";position:relative;justify-content:center;",e=>e.column===1&&` justify-self: start; `," ",e=>e.column===7&&` justify-self: end; @@ -392,14 +392,14 @@ gt.version="2.30.1";yct(lr);gt.fn=pt;gt.min=lut;gt.max=uut;gt.now=dut;gt.utc=Nc; position: absolute; transform: translate(-50%, 9px); } - `,";");function iW(e){return typeof e=="string"?new Date(e):In(e)}function bZ(e,t){return t?(e%12+12)%24:e%12}function Xpt(e){return e%12||12}function aW(e){return(t,n)=>{const o={...t};return(n.type===Uw||n.type===Az||n.type===Xw)&&o.value!==void 0&&(o.value=o.value.toString().padStart(e,"0")),o}}function Hbe(e){var t;const n=(t=e.target?.ownerDocument.defaultView?.HTMLInputElement)!==null&&t!==void 0?t:HTMLInputElement;return e.target instanceof n?e.target.validity.valid:!1}const Zp="yyyy-MM-dd'T'HH:mm:ss";function Gpt({currentDate:e,onChange:t,events:n=[],isInvalidDate:o,onMonthPreviewed:r,startOfWeek:s=0}){const i=e?iW(e):new Date,{calendar:c,viewing:l,setSelected:u,setViewing:d,isSelected:p,viewPreviousMonth:f,viewNextMonth:b}=Ipt({selected:[hi(i)],viewing:hi(i),weekStartsOn:s}),[h,g]=x.useState(hi(i)),[z,A]=x.useState(!1),[_,v]=x.useState(e);return e!==_&&(v(e),u([hi(i)]),d(hi(i)),g(hi(i))),a.jsxs(Dpt,{className:"components-datetime__date",role:"application","aria-label":m("Calendar"),children:[a.jsxs(Fpt,{children:[a.jsx(Ce,{icon:jt()?B8:GK,variant:"tertiary","aria-label":m("View previous month"),onClick:()=>{f(),g(i4(h,1)),r?.(Rs(i4(l,1),Zp))},size:"compact"}),a.jsxs($pt,{level:3,children:[a.jsx("strong",{children:r0("F",l,-l.getTimezoneOffset())})," ",r0("Y",l,-l.getTimezoneOffset())]}),a.jsx(Ce,{icon:jt()?GK:B8,variant:"tertiary","aria-label":m("View next month"),onClick:()=>{b(),g(rf(h,1)),r?.(Rs(rf(l,1),Zp))},size:"compact"})]}),a.jsxs(Vpt,{onFocus:()=>A(!0),onBlur:()=>A(!1),children:[c[0][0].map(M=>a.jsx(Hpt,{children:r0("D",M,-M.getTimezoneOffset())},M.toString())),c[0].map(M=>M.map((y,k)=>tZ(y,l)?a.jsx(Kpt,{day:y,column:k+1,isSelected:p(y),isFocusable:kz(y,h),isFocusAllowed:z,isToday:KY(y,new Date),isInvalid:o?o(y):!1,numEvents:n.filter(S=>KY(S.date,y)).length,onClick:()=>{u([y]),g(y),t?.(Rs(new Date(y.getFullYear(),y.getMonth(),y.getDate(),i.getHours(),i.getMinutes(),i.getSeconds(),i.getMilliseconds()),Zp))},onKeyDown:S=>{let C;S.key==="ArrowLeft"&&(C=K8(y,jt()?1:-1)),S.key==="ArrowRight"&&(C=K8(y,jt()?-1:1)),S.key==="ArrowUp"&&(C=zct(y,1)),S.key==="ArrowDown"&&(C=fj(y,1)),S.key==="PageUp"&&(C=i4(y,1)),S.key==="PageDown"&&(C=rf(y,1)),S.key==="Home"&&(C=sa(y)),S.key==="End"&&(C=hi(Gfe(y))),C&&(S.preventDefault(),g(C),tZ(C,l)||(d(C),r?.(Rs(C,Zp))))}},y.toString()):null))]})]})}function Kpt({day:e,column:t,isSelected:n,isFocusable:o,isFocusAllowed:r,isToday:s,isInvalid:i,numEvents:c,onClick:l,onKeyDown:u}){const d=x.useRef();return x.useEffect(()=>{d.current&&o&&r&&d.current.focus()},[o]),a.jsx(Upt,{__next40pxDefaultSize:!0,ref:d,className:"components-datetime__date__day",disabled:i,tabIndex:o?0:-1,"aria-label":Ypt(e,n,c),column:t,isSelected:n,isToday:s,hasEvents:c>0,onClick:l,onKeyDown:u,children:r0("j",e,-e.getTimezoneOffset())})}function Ypt(e,t,n){const{formats:o}=Sa(),r=r0(o.date,e,-e.getTimezoneOffset());return t&&n>0?xe(Dn("%1$s. Selected. There is %2$d event","%1$s. Selected. There are %2$d events",n),r,n):t?xe(m("%1$s. Selected"),r):n>0?xe(Dn("%1$s. There is %2$d event","%1$s. There are %2$d events",n),r,n):r}const Zpt=He("div",{target:"evcr2319"})("box-sizing:border-box;font-size:",Ye.fontSize,";"),cW=He("fieldset",{target:"evcr2318"})("border:0;margin:0 0 ",Je(2*2)," 0;padding:0;&:last-child{margin-bottom:0;}"),Qpt=He("div",{target:"evcr2317"})({name:"pd0mhc",styles:"direction:ltr;display:flex"}),l_=Xe("&&& ",Vw,"{padding-left:",Je(2),";padding-right:",Je(2),";text-align:center;}",""),Jpt=He(g0,{target:"evcr2316"})(l_," width:",Je(9),";&&& ",Vw,"{padding-right:0;}&&& ",Y3,"{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0;}"),eft=He("span",{target:"evcr2315"})("border-top:",Ye.borderWidth," solid ",Ze.gray[700],";border-bottom:",Ye.borderWidth," solid ",Ze.gray[700],";font-size:",Ye.fontSize,`;line-height:calc( + `,";");function sW(e){return typeof e=="string"?new Date(e):In(e)}function bZ(e,t){return t?(e%12+12)%24:e%12}function Upt(e){return e%12||12}function iW(e){return(t,n)=>{const o={...t};return(n.type===Hw||n.type===Az||n.type===Uw)&&o.value!==void 0&&(o.value=o.value.toString().padStart(e,"0")),o}}function Hbe(e){var t;const n=(t=e.target?.ownerDocument.defaultView?.HTMLInputElement)!==null&&t!==void 0?t:HTMLInputElement;return e.target instanceof n?e.target.validity.valid:!1}const Zp="yyyy-MM-dd'T'HH:mm:ss";function Xpt({currentDate:e,onChange:t,events:n=[],isInvalidDate:o,onMonthPreviewed:r,startOfWeek:s=0}){const i=e?sW(e):new Date,{calendar:c,viewing:l,setSelected:u,setViewing:d,isSelected:p,viewPreviousMonth:f,viewNextMonth:b}=jpt({selected:[hi(i)],viewing:hi(i),weekStartsOn:s}),[h,g]=x.useState(hi(i)),[z,A]=x.useState(!1),[_,v]=x.useState(e);return e!==_&&(v(e),u([hi(i)]),d(hi(i)),g(hi(i))),a.jsxs(Ipt,{className:"components-datetime__date",role:"application","aria-label":m("Calendar"),children:[a.jsxs(Dpt,{children:[a.jsx(Ce,{icon:jt()?N8:GK,variant:"tertiary","aria-label":m("View previous month"),onClick:()=>{f(),g(s4(h,1)),r?.(Rs(s4(l,1),Zp))},size:"compact"}),a.jsxs(Fpt,{level:3,children:[a.jsx("strong",{children:r0("F",l,-l.getTimezoneOffset())})," ",r0("Y",l,-l.getTimezoneOffset())]}),a.jsx(Ce,{icon:jt()?GK:N8,variant:"tertiary","aria-label":m("View next month"),onClick:()=>{b(),g(rf(h,1)),r?.(Rs(rf(l,1),Zp))},size:"compact"})]}),a.jsxs($pt,{onFocus:()=>A(!0),onBlur:()=>A(!1),children:[c[0][0].map(M=>a.jsx(Vpt,{children:r0("D",M,-M.getTimezoneOffset())},M.toString())),c[0].map(M=>M.map((y,k)=>tZ(y,l)?a.jsx(Gpt,{day:y,column:k+1,isSelected:p(y),isFocusable:kz(y,h),isFocusAllowed:z,isToday:KY(y,new Date),isInvalid:o?o(y):!1,numEvents:n.filter(S=>KY(S.date,y)).length,onClick:()=>{u([y]),g(y),t?.(Rs(new Date(y.getFullYear(),y.getMonth(),y.getDate(),i.getHours(),i.getMinutes(),i.getSeconds(),i.getMilliseconds()),Zp))},onKeyDown:S=>{let C;S.key==="ArrowLeft"&&(C=G8(y,jt()?1:-1)),S.key==="ArrowRight"&&(C=G8(y,jt()?-1:1)),S.key==="ArrowUp"&&(C=Mct(y,1)),S.key==="ArrowDown"&&(C=pj(y,1)),S.key==="PageUp"&&(C=s4(y,1)),S.key==="PageDown"&&(C=rf(y,1)),S.key==="Home"&&(C=ra(y)),S.key==="End"&&(C=hi(Gfe(y))),C&&(S.preventDefault(),g(C),tZ(C,l)||(d(C),r?.(Rs(C,Zp))))}},y.toString()):null))]})]})}function Gpt({day:e,column:t,isSelected:n,isFocusable:o,isFocusAllowed:r,isToday:s,isInvalid:i,numEvents:c,onClick:l,onKeyDown:u}){const d=x.useRef();return x.useEffect(()=>{d.current&&o&&r&&d.current.focus()},[o]),a.jsx(Hpt,{__next40pxDefaultSize:!0,ref:d,className:"components-datetime__date__day",disabled:i,tabIndex:o?0:-1,"aria-label":Kpt(e,n,c),column:t,isSelected:n,isToday:s,hasEvents:c>0,onClick:l,onKeyDown:u,children:r0("j",e,-e.getTimezoneOffset())})}function Kpt(e,t,n){const{formats:o}=Sa(),r=r0(o.date,e,-e.getTimezoneOffset());return t&&n>0?xe(Dn("%1$s. Selected. There is %2$d event","%1$s. Selected. There are %2$d events",n),r,n):t?xe(m("%1$s. Selected"),r):n>0?xe(Dn("%1$s. There is %2$d event","%1$s. There are %2$d events",n),r,n):r}const Ypt=He("div",{target:"evcr2319"})("box-sizing:border-box;font-size:",Ye.fontSize,";"),aW=He("fieldset",{target:"evcr2318"})("border:0;margin:0 0 ",Je(2*2)," 0;padding:0;&:last-child{margin-bottom:0;}"),Zpt=He("div",{target:"evcr2317"})({name:"pd0mhc",styles:"direction:ltr;display:flex"}),c_=Xe("&&& ",$w,"{padding-left:",Je(2),";padding-right:",Je(2),";text-align:center;}",""),Qpt=He(g0,{target:"evcr2316"})(c_," width:",Je(9),";&&& ",$w,"{padding-right:0;}&&& ",Y3,"{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0;}"),Jpt=He("span",{target:"evcr2315"})("border-top:",Ye.borderWidth," solid ",Ze.gray[700],";border-bottom:",Ye.borderWidth," solid ",Ze.gray[700],";font-size:",Ye.fontSize,`;line-height:calc( `,Ye.controlHeight," - ",Ye.borderWidth,` * 2 - );display:inline-block;`),tft=He(g0,{target:"evcr2314"})(l_," width:",Je(9),";&&& ",Vw,"{padding-left:0;}&&& ",Y3,"{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0;}"),nft=He("div",{target:"evcr2313"})({name:"1ff36h2",styles:"flex-grow:1"}),oft=He(g0,{target:"evcr2312"})(l_," width:",Je(9),";"),rft=He(g0,{target:"evcr2311"})(l_," width:",Je(14),";"),hZ=He("div",{target:"evcr2310"})({name:"ebu3jh",styles:"text-decoration:underline dotted"}),sft=()=>{const{timezone:e}=Sa(),t=-1*(new Date().getTimezoneOffset()/60);if(Number(e.offset)===t)return null;const n=Number(e.offset)>=0?"+":"",o=e.abbr!==""&&isNaN(Number(e.abbr))?e.abbr:`UTC${n}${e.offsetFormatted}`,r=e.string.replace("_"," "),s=e.string==="UTC"?m("Coordinated Universal Time"):`(${o}) ${r}`;return r.trim().length===0?a.jsx(hZ,{className:"components-datetime__timezone",children:o}):a.jsx(B0,{placement:"top",text:s,children:a.jsx(hZ,{className:"components-datetime__timezone",children:o})})};function Ube({value:e,defaultValue:t,is12Hour:n,label:o,minutesProps:r,onChange:s}){const[i={hours:new Date().getHours(),minutes:new Date().getMinutes()},c]=B3({value:e,onChange:s,defaultValue:t}),l=f(i.hours),u=Xpt(i.hours),d=h=>(g,{event:z})=>{if(!Hbe(z))return;const A=Number(g);c({...i,[h]:h==="hours"&&n?bZ(A,l==="PM"):A})},p=h=>()=>{l!==h&&c({...i,hours:bZ(u,h==="PM")})};function f(h){return h<12?"AM":"PM"}const b=o?cW:x.Fragment;return a.jsxs(b,{children:[o&&a.jsx(no.VisualLabel,{as:"legend",children:o}),a.jsxs(Ot,{alignment:"left",expanded:!1,children:[a.jsxs(Qpt,{className:"components-datetime__time-field components-datetime__time-field-time",children:[a.jsx(Jpt,{className:"components-datetime__time-field-hours-input",label:m("Hours"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:String(n?u:i.hours).padStart(2,"0"),step:1,min:n?1:0,max:n?12:23,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:d("hours"),__unstableStateReducer:aW(2)}),a.jsx(eft,{className:"components-datetime__time-separator","aria-hidden":"true",children:":"}),a.jsx(tft,{className:oe("components-datetime__time-field-minutes-input",r?.className),label:m("Minutes"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:String(i.minutes).padStart(2,"0"),step:1,min:0,max:59,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:(...h)=>{d("minutes")(...h),r?.onChange?.(...h)},__unstableStateReducer:aW(2),...r})]}),n&&a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,isBlock:!0,label:m("Select AM or PM"),hideLabelFromVision:!0,value:l,onChange:h=>{p(h)()},children:[a.jsx(Kn,{value:"AM",label:m("AM")}),a.jsx(Kn,{value:"PM",label:m("PM")})]})]})]})}const ift=["dmy","mdy","ymd"];function lO({is12Hour:e,currentTime:t,onChange:n,dateOrder:o,hideLabelFromVision:r=!1}){const[s,i]=x.useState(()=>t?YY(iW(t)):new Date);x.useEffect(()=>{i(t?YY(iW(t)):new Date)},[t]);const c=[{value:"01",label:m("January")},{value:"02",label:m("February")},{value:"03",label:m("March")},{value:"04",label:m("April")},{value:"05",label:m("May")},{value:"06",label:m("June")},{value:"07",label:m("July")},{value:"08",label:m("August")},{value:"09",label:m("September")},{value:"10",label:m("October")},{value:"11",label:m("November")},{value:"12",label:m("December")}],{day:l,month:u,year:d,minutes:p,hours:f}=x.useMemo(()=>({day:Rs(s,"dd"),month:Rs(s,"MM"),year:Rs(s,"yyyy"),minutes:Rs(s,"mm"),hours:Rs(s,"HH"),am:Rs(s,"a")}),[s]),b=y=>(S,{event:C})=>{if(!Hbe(C))return;const R=Number(S),T=Z8(s,{[y]:R});i(T),n?.(Rs(T,Zp))},h=({hours:y,minutes:k})=>{const S=Z8(s,{hours:y,minutes:k});i(S),n?.(Rs(S,Zp))},g=a.jsx(oft,{className:"components-datetime__time-field components-datetime__time-field-day",label:m("Day"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:l,step:1,min:1,max:31,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:b("date")},"day"),z=a.jsx(nft,{children:a.jsx(jn,{className:"components-datetime__time-field components-datetime__time-field-month",label:m("Month"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:u,options:c,onChange:y=>{const k=bj(s,Number(y)-1);i(k),n?.(Rs(k,Zp))}})},"month"),A=a.jsx(rft,{className:"components-datetime__time-field components-datetime__time-field-year",label:m("Year"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:d,step:1,min:1,max:9999,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:b("year"),__unstableStateReducer:aW(4)},"year"),_=e?"mdy":"dmy",M=(o&&ift.includes(o)?o:_).split("").map(y=>{switch(y){case"d":return g;case"m":return z;case"y":return A;default:return null}});return a.jsxs(Zpt,{className:"components-datetime__time",children:[a.jsxs(cW,{children:[r?a.jsx(qn,{as:"legend",children:m("Time")}):a.jsx(no.VisualLabel,{as:"legend",className:"components-datetime__time-legend",children:m("Time")}),a.jsxs(Ot,{className:"components-datetime__time-wrapper",children:[a.jsx(Ube,{value:{hours:Number(f),minutes:Number(p)},is12Hour:e,onChange:h}),a.jsx(t1,{}),a.jsx(sft,{})]})]}),a.jsxs(cW,{children:[r?a.jsx(qn,{as:"legend",children:m("Date")}):a.jsx(no.VisualLabel,{as:"legend",className:"components-datetime__time-legend",children:m("Date")}),a.jsx(Ot,{className:"components-datetime__time-wrapper",children:M})]})]})}lO.TimeInput=Ube;Object.assign(lO.TimeInput,{displayName:"TimePicker.TimeInput"});const aft=He(dt,{target:"e1p5onf00"})({name:"1khn195",styles:"box-sizing:border-box"}),cft=()=>{};function lft({currentDate:e,is12Hour:t,dateOrder:n,isInvalidDate:o,onMonthPreviewed:r=cft,onChange:s,events:i,startOfWeek:c},l){return a.jsx(aft,{ref:l,className:"components-datetime",spacing:4,children:a.jsxs(a.Fragment,{children:[a.jsx(lO,{currentTime:e,onChange:s,is12Hour:t,dateOrder:n}),a.jsx(Gpt,{currentDate:e,onChange:s,isInvalidDate:o,events:i,onMonthPreviewed:r,startOfWeek:c})]})})}const uft=x.forwardRef(lft),dft={name:"u2jump",styles:"position:relative;pointer-events:none;&::after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;}*{pointer-events:none;}"},Xbe=x.createContext(!1),{Consumer:pft,Provider:fft}=Xbe;function I1({className:e,children:t,isDisabled:n=!0,...o}){const r=ro();return a.jsx(fft,{value:n,children:a.jsx("div",{inert:n?"true":void 0,className:n?r(dft,e,"components-disabled"):void 0,...o,children:t})})}I1.Context=Xbe;I1.Consumer=pft;const bft="components-draggable__invisible-drag-image",hft="components-draggable__clone",eq=0,mZ="is-dragging-components-draggable";function Gbe({children:e,onDragStart:t,onDragOver:n,onDragEnd:o,appendToOwnerDocument:r=!1,cloneClassname:s,elementId:i,transferData:c,__experimentalTransferDataType:l="text",__experimentalDragComponent:u}){const d=x.useRef(null),p=x.useRef(()=>{});function f(h){h.preventDefault(),p.current(),o&&o(h)}function b(h){const{ownerDocument:g}=h.target;h.dataTransfer.setData(l,JSON.stringify(c));const z=g.createElement("div");z.style.top="0",z.style.left="0";const A=g.createElement("div");typeof h.dataTransfer.setDragImage=="function"&&(A.classList.add(bft),g.body.appendChild(A),h.dataTransfer.setDragImage(A,0,0)),z.classList.add(hft),s&&z.classList.add(s);let _=0,v=0;if(d.current){_=h.clientX,v=h.clientY,z.style.transform=`translate( ${_}px, ${v}px )`;const C=g.createElement("div");C.innerHTML=d.current.innerHTML,z.appendChild(C),g.body.appendChild(z)}else{const C=g.getElementById(i),R=C.getBoundingClientRect(),T=C.parentNode,E=R.top,B=R.left;z.style.width=`${R.width+eq*2}px`;const N=C.cloneNode(!0);N.id=`clone-${i}`,_=B-eq,v=E-eq,z.style.transform=`translate( ${_}px, ${v}px )`,Array.from(N.querySelectorAll("iframe")).forEach(j=>j.parentNode?.removeChild(j)),z.appendChild(N),r?g.body.appendChild(z):T?.appendChild(z)}let M=h.clientX,y=h.clientY;function k(C){if(M===C.clientX&&y===C.clientY)return;const R=_+C.clientX-M,T=v+C.clientY-y;z.style.transform=`translate( ${R}px, ${T}px )`,M=C.clientX,y=C.clientY,_=R,v=T,n&&n(C)}const S=jN(k,16);g.addEventListener("dragover",S),g.body.classList.add(mZ),t&&t(h),p.current=()=>{z&&z.parentNode&&z.parentNode.removeChild(z),A&&A.parentNode&&A.parentNode.removeChild(A),g.body.classList.remove(mZ),g.removeEventListener("dragover",S)}}return x.useEffect(()=>()=>{p.current()},[]),a.jsxs(a.Fragment,{children:[e({onDraggableStart:b,onDraggableEnd:f}),u&&a.jsx("div",{className:"components-draggable-drag-component-root",style:{display:"none"},ref:d,children:u})]})}function Tz({className:e,label:t,onFilesDrop:n,onHTMLDrop:o,onDrop:r,isEligible:s=()=>!0,...i}){const[c,l]=x.useState(),[u,d]=x.useState(),[p,f]=x.useState(),b=W5({onDrop(g){if(!g.dataTransfer)return;const z=E4(g.dataTransfer),A=g.dataTransfer.getData("text/html");A&&o?o(A):z.length&&n?n(z):r&&r(g)},onDragStart(g){l(!0),g.dataTransfer&&(g.dataTransfer.types.includes("text/html")?f(!!o):g.dataTransfer.types.includes("Files")||E4(g.dataTransfer).length>0?f(!!n):f(!!r&&s(g.dataTransfer)))},onDragEnd(){d(!1),l(!1),f(void 0)},onDragEnter(){d(!0)},onDragLeave(){d(!1)}}),h=oe("components-drop-zone",e,{"is-active":p,"is-dragging-over-document":c,"is-dragging-over-element":u});return a.jsx("div",{...i,ref:b,className:h,children:a.jsx("div",{className:"components-drop-zone__content",children:a.jsxs("div",{className:"components-drop-zone__content-inner",children:[a.jsx(wn,{icon:cm,className:"components-drop-zone__content-icon"}),a.jsx("span",{className:"components-drop-zone__content-text",children:t||m("Drop files to upload")})]})})})}function Kbe({label:e,value:t,colors:n,disableCustomColors:o,enableAlpha:r,onChange:s}){const[i,c]=x.useState(!1),l=vt(Kbe,"color-list-picker-option"),u=`${l}__label`,d=`${l}__content`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"components-color-list-picker__swatch-button",id:u,onClick:()=>c(p=>!p),"aria-expanded":i,"aria-controls":d,icon:t?a.jsx(eb,{colorValue:t,className:"components-color-list-picker__swatch-color"}):a.jsx(qo,{icon:$de}),text:e}),a.jsx("div",{role:"group",id:d,"aria-labelledby":u,"aria-hidden":!i,children:i&&a.jsx(Kw,{"aria-label":m("Color options"),className:"components-color-list-picker__color-picker",colors:n,value:t,clearable:!1,onChange:s,disableCustomColors:o,enableAlpha:r})})]})}function mft({colors:e,labels:t,value:n=[],disableCustomColors:o,enableAlpha:r,onChange:s}){return a.jsx("div",{className:"components-color-list-picker",children:t.map((i,c)=>a.jsx(Kbe,{label:i,value:n[c],colors:e,disableCustomColors:o,enableAlpha:r,onChange:l=>{const u=n.slice();u[c]=l,s(u)}},c))})}Xs([Gs]);function gft(e){return!e||e.length<2?["#000","#fff"]:e.map(({color:t})=>({color:t,brightness:an(t).brightness()})).reduce(([t,n],o)=>[o.brightness<=t.brightness?o:t,o.brightness>=n.brightness?o:n],[{brightness:1,color:""},{brightness:0,color:""}]).map(({color:t})=>t)}function Pj(e=[],t="90deg"){const n=100/e.length,o=e.map((r,s)=>`${r} ${s*n}%, ${r} ${(s+1)*n}%`).join(", ");return`linear-gradient( ${t}, ${o} )`}function Mft(e){return e.map((t,n)=>({position:n*100/(e.length-1),color:t}))}function zft(e=[]){return e.map(({color:t})=>t)}const Oft=["#333","#CCC"];function yft({value:e,onChange:t}){const n=!!e,o=n?e:Oft,r=Pj(o),s=Mft(o);return a.jsx(qfe,{disableInserter:!0,background:r,hasGradient:n,value:s,onChange:i=>{const c=zft(i);t(c)}})}function Ybe({asButtons:e,loop:t,clearable:n=!0,unsetable:o=!0,colorPalette:r,duotonePalette:s,disableCustomColors:i,disableCustomDuotone:c,value:l,onChange:u,"aria-label":d,"aria-labelledby":p,...f}){const[b,h]=x.useMemo(()=>gft(r),[r]),g=l==="unset",z=m("Unset"),A=a.jsx(G0.Option,{value:"unset",isSelected:g,tooltipText:z,"aria-label":z,className:"components-duotone-picker__color-indicator",onClick:()=>{u(g?void 0:"unset")}},"unset"),_=s.map(({colors:y,slug:k,name:S})=>{const C={background:Pj(y,"135deg"),color:"transparent"},R=S??xe(m("Duotone code: %s"),k),T=S?xe(m("Duotone: %s"),S):R,E=N0(y,l);return a.jsx(G0.Option,{value:y,isSelected:E,"aria-label":T,tooltipText:R,style:C,onClick:()=>{u(E?void 0:y)}},k)});let v;if(e)v={asButtons:!0};else{const y={asButtons:!1,loop:t};d?v={...y,"aria-label":d}:p?v={...y,"aria-labelledby":p}:v={...y,"aria-label":m("Custom color picker.")}}const M=o?[A,..._]:_;return a.jsx(G0,{...f,...v,options:M,actions:!!n&&a.jsx(G0.ButtonAction,{onClick:()=>u(void 0),accessibleWhenDisabled:!0,disabled:!l,children:m("Clear")}),children:a.jsx(t1,{paddingTop:M.length===0?0:4,children:a.jsxs(dt,{spacing:3,children:[!i&&!c&&a.jsx(yft,{value:g?void 0:l,onChange:u}),!c&&a.jsx(mft,{labels:[m("Shadows"),m("Highlights")],colors:r,value:g?void 0:l,disableCustomColors:i,enableAlpha:!0,onChange:y=>{y[0]||(y[0]=b),y[1]||(y[1]=h);const k=y.length>=2?y:void 0;u(k)}})]})})})}function Zbe({values:e}){return e?a.jsx(eb,{colorValue:Pj(e,"135deg")}):a.jsx(qo,{icon:$de})}function Aft(e,t){const{href:n,children:o,className:r,rel:s="",...i}=e,c=[...new Set([...s.split(" "),"external","noreferrer","noopener"].filter(Boolean))].join(" "),l=oe("components-external-link",r),u=!!n?.startsWith("#"),d=p=>{u&&p.preventDefault(),e.onClick&&e.onClick(p)};return a.jsxs("a",{...i,className:l,href:n,onClick:d,target:"_blank",rel:c,ref:t,children:[a.jsx("span",{className:"components-external-link__contents",children:o}),a.jsx("span",{className:"components-external-link__icon","aria-label":m("(opens in a new tab)"),children:"↗"})]})}const hr=x.forwardRef(Aft),Cx={width:200,height:170},vft=["avi","mpg","mpeg","mov","mp4","m4v","ogg","ogv","webm","wmv"];function xft(e=""){const t=e.split(".");return t[t.length-1]}function wft(e=""){return e?e.startsWith("data:video/")||vft.includes(xft(e)):!1}function gZ(e){return Math.round(e*100)}const _ft=He("div",{target:"eeew7dm8"})({name:"jqnsxy",styles:"background-color:transparent;display:flex;text-align:center;width:100%"}),kft=He("div",{target:"eeew7dm7"})("align-items:center;border-radius:",Ye.radiusSmall,";cursor:pointer;display:inline-flex;justify-content:center;margin:auto;position:relative;height:100%;&:after{border-radius:inherit;bottom:0;box-shadow:inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );content:'';left:0;pointer-events:none;position:absolute;right:0;top:0;}img,video{border-radius:inherit;box-sizing:border-box;display:block;height:auto;margin:0;max-height:100%;max-width:100%;pointer-events:none;user-select:none;width:auto;}"),Sft=He("div",{target:"eeew7dm6"})("background:",Ze.gray[100],";border-radius:inherit;box-sizing:border-box;height:",Cx.height,"px;max-width:280px;min-width:",Cx.width,"px;width:100%;"),Cft=He(Ro,{target:"eeew7dm5"})({name:"1d3w5wq",styles:"width:100%"});var qft={name:"1mn7kwb",styles:"padding-bottom:1em"};const Rft=({__nextHasNoMarginBottom:e})=>e?void 0:qft;var Tft={name:"1mn7kwb",styles:"padding-bottom:1em"};const Eft=({hasHelpText:e=!1})=>e?Tft:void 0,Wft=He(Yo,{target:"eeew7dm4"})("max-width:320px;padding-top:1em;",Eft," ",Rft,";"),Nft=He("div",{target:"eeew7dm3"})("left:50%;overflow:hidden;pointer-events:none;position:absolute;top:50%;transform:translate3d( -50%, -50%, 0 );z-index:1;@media not ( prefers-reduced-motion ){transition:opacity 100ms linear;}opacity:",({showOverlay:e})=>e?1:0,";"),Qbe=He("div",{target:"eeew7dm2"})({name:"1yzbo24",styles:"background:rgba( 255, 255, 255, 0.4 );backdrop-filter:blur( 16px ) saturate( 180% );position:absolute;transform:translateZ( 0 )"}),MZ=He(Qbe,{target:"eeew7dm1"})({name:"1sw8ur",styles:"height:1px;left:1px;right:1px"}),zZ=He(Qbe,{target:"eeew7dm0"})({name:"188vg4t",styles:"width:1px;top:1px;bottom:1px"}),Bft=0,Lft=100,Pft=()=>{};function jft({__nextHasNoMarginBottom:e,hasHelpText:t,onChange:n=Pft,point:o={x:.5,y:.5}}){const r=gZ(o.x),s=gZ(o.y),i=(c,l)=>{if(c===void 0)return;const u=parseInt(c,10);isNaN(u)||n({...o,[l]:u/100})};return a.jsxs(Wft,{className:"focal-point-picker__controls",__nextHasNoMarginBottom:e,hasHelpText:t,gap:4,children:[a.jsx(OZ,{label:m("Left"),"aria-label":m("Focal point left position"),value:[r,"%"].join(""),onChange:c=>i(c,"x"),dragDirection:"e"}),a.jsx(OZ,{label:m("Top"),"aria-label":m("Focal point top position"),value:[s,"%"].join(""),onChange:c=>i(c,"y"),dragDirection:"s"})]})}function OZ(e){return a.jsx(Cft,{__next40pxDefaultSize:!0,className:"focal-point-picker__controls-position-unit-control",labelPosition:"top",max:Lft,min:Bft,units:[{value:"%",label:"%"}],...e})}const Ift=He("div",{target:"e19snlhg0"})("background-color:transparent;cursor:grab;height:40px;margin:-20px 0 0 -20px;position:absolute;user-select:none;width:40px;will-change:transform;z-index:10000;background:rgba( 255, 255, 255, 0.4 );border:1px solid rgba( 255, 255, 255, 0.4 );border-radius:",Ye.radiusRound,";backdrop-filter:blur( 16px ) saturate( 180% );box-shadow:rgb( 0 0 0 / 10% ) 0px 0px 8px;@media not ( prefers-reduced-motion ){transition:transform 100ms linear;}",({isDragging:e})=>e&&` + );display:inline-block;`),eft=He(g0,{target:"evcr2314"})(c_," width:",Je(9),";&&& ",$w,"{padding-left:0;}&&& ",Y3,"{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0;}"),tft=He("div",{target:"evcr2313"})({name:"1ff36h2",styles:"flex-grow:1"}),nft=He(g0,{target:"evcr2312"})(c_," width:",Je(9),";"),oft=He(g0,{target:"evcr2311"})(c_," width:",Je(14),";"),hZ=He("div",{target:"evcr2310"})({name:"ebu3jh",styles:"text-decoration:underline dotted"}),rft=()=>{const{timezone:e}=Sa(),t=-1*(new Date().getTimezoneOffset()/60);if(Number(e.offset)===t)return null;const n=Number(e.offset)>=0?"+":"",o=e.abbr!==""&&isNaN(Number(e.abbr))?e.abbr:`UTC${n}${e.offsetFormatted}`,r=e.string.replace("_"," "),s=e.string==="UTC"?m("Coordinated Universal Time"):`(${o}) ${r}`;return r.trim().length===0?a.jsx(hZ,{className:"components-datetime__timezone",children:o}):a.jsx(B0,{placement:"top",text:s,children:a.jsx(hZ,{className:"components-datetime__timezone",children:o})})};function Ube({value:e,defaultValue:t,is12Hour:n,label:o,minutesProps:r,onChange:s}){const[i={hours:new Date().getHours(),minutes:new Date().getMinutes()},c]=B3({value:e,onChange:s,defaultValue:t}),l=f(i.hours),u=Upt(i.hours),d=h=>(g,{event:z})=>{if(!Hbe(z))return;const A=Number(g);c({...i,[h]:h==="hours"&&n?bZ(A,l==="PM"):A})},p=h=>()=>{l!==h&&c({...i,hours:bZ(u,h==="PM")})};function f(h){return h<12?"AM":"PM"}const b=o?aW:x.Fragment;return a.jsxs(b,{children:[o&&a.jsx(no.VisualLabel,{as:"legend",children:o}),a.jsxs(Ot,{alignment:"left",expanded:!1,children:[a.jsxs(Zpt,{className:"components-datetime__time-field components-datetime__time-field-time",children:[a.jsx(Qpt,{className:"components-datetime__time-field-hours-input",label:m("Hours"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:String(n?u:i.hours).padStart(2,"0"),step:1,min:n?1:0,max:n?12:23,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:d("hours"),__unstableStateReducer:iW(2)}),a.jsx(Jpt,{className:"components-datetime__time-separator","aria-hidden":"true",children:":"}),a.jsx(eft,{className:oe("components-datetime__time-field-minutes-input",r?.className),label:m("Minutes"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:String(i.minutes).padStart(2,"0"),step:1,min:0,max:59,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:(...h)=>{d("minutes")(...h),r?.onChange?.(...h)},__unstableStateReducer:iW(2),...r})]}),n&&a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,isBlock:!0,label:m("Select AM or PM"),hideLabelFromVision:!0,value:l,onChange:h=>{p(h)()},children:[a.jsx(Kn,{value:"AM",label:m("AM")}),a.jsx(Kn,{value:"PM",label:m("PM")})]})]})]})}const sft=["dmy","mdy","ymd"];function lO({is12Hour:e,currentTime:t,onChange:n,dateOrder:o,hideLabelFromVision:r=!1}){const[s,i]=x.useState(()=>t?YY(sW(t)):new Date);x.useEffect(()=>{i(t?YY(sW(t)):new Date)},[t]);const c=[{value:"01",label:m("January")},{value:"02",label:m("February")},{value:"03",label:m("March")},{value:"04",label:m("April")},{value:"05",label:m("May")},{value:"06",label:m("June")},{value:"07",label:m("July")},{value:"08",label:m("August")},{value:"09",label:m("September")},{value:"10",label:m("October")},{value:"11",label:m("November")},{value:"12",label:m("December")}],{day:l,month:u,year:d,minutes:p,hours:f}=x.useMemo(()=>({day:Rs(s,"dd"),month:Rs(s,"MM"),year:Rs(s,"yyyy"),minutes:Rs(s,"mm"),hours:Rs(s,"HH"),am:Rs(s,"a")}),[s]),b=y=>(S,{event:C})=>{if(!Hbe(C))return;const R=Number(S),T=Y8(s,{[y]:R});i(T),n?.(Rs(T,Zp))},h=({hours:y,minutes:k})=>{const S=Y8(s,{hours:y,minutes:k});i(S),n?.(Rs(S,Zp))},g=a.jsx(nft,{className:"components-datetime__time-field components-datetime__time-field-day",label:m("Day"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:l,step:1,min:1,max:31,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:b("date")},"day"),z=a.jsx(tft,{children:a.jsx(Pn,{className:"components-datetime__time-field components-datetime__time-field-month",label:m("Month"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:u,options:c,onChange:y=>{const k=fj(s,Number(y)-1);i(k),n?.(Rs(k,Zp))}})},"month"),A=a.jsx(oft,{className:"components-datetime__time-field components-datetime__time-field-year",label:m("Year"),hideLabelFromVision:!0,__next40pxDefaultSize:!0,value:d,step:1,min:1,max:9999,required:!0,spinControls:"none",isPressEnterToChange:!0,isDragEnabled:!1,isShiftStepEnabled:!1,onChange:b("year"),__unstableStateReducer:iW(4)},"year"),_=e?"mdy":"dmy",M=(o&&sft.includes(o)?o:_).split("").map(y=>{switch(y){case"d":return g;case"m":return z;case"y":return A;default:return null}});return a.jsxs(Ypt,{className:"components-datetime__time",children:[a.jsxs(aW,{children:[r?a.jsx(qn,{as:"legend",children:m("Time")}):a.jsx(no.VisualLabel,{as:"legend",className:"components-datetime__time-legend",children:m("Time")}),a.jsxs(Ot,{className:"components-datetime__time-wrapper",children:[a.jsx(Ube,{value:{hours:Number(f),minutes:Number(p)},is12Hour:e,onChange:h}),a.jsx(t1,{}),a.jsx(rft,{})]})]}),a.jsxs(aW,{children:[r?a.jsx(qn,{as:"legend",children:m("Date")}):a.jsx(no.VisualLabel,{as:"legend",className:"components-datetime__time-legend",children:m("Date")}),a.jsx(Ot,{className:"components-datetime__time-wrapper",children:M})]})]})}lO.TimeInput=Ube;Object.assign(lO.TimeInput,{displayName:"TimePicker.TimeInput"});const ift=He(dt,{target:"e1p5onf00"})({name:"1khn195",styles:"box-sizing:border-box"}),aft=()=>{};function cft({currentDate:e,is12Hour:t,dateOrder:n,isInvalidDate:o,onMonthPreviewed:r=aft,onChange:s,events:i,startOfWeek:c},l){return a.jsx(ift,{ref:l,className:"components-datetime",spacing:4,children:a.jsxs(a.Fragment,{children:[a.jsx(lO,{currentTime:e,onChange:s,is12Hour:t,dateOrder:n}),a.jsx(Xpt,{currentDate:e,onChange:s,isInvalidDate:o,events:i,onMonthPreviewed:r,startOfWeek:c})]})})}const lft=x.forwardRef(cft),uft={name:"u2jump",styles:"position:relative;pointer-events:none;&::after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;}*{pointer-events:none;}"},Xbe=x.createContext(!1),{Consumer:dft,Provider:pft}=Xbe;function I1({className:e,children:t,isDisabled:n=!0,...o}){const r=ro();return a.jsx(pft,{value:n,children:a.jsx("div",{inert:n?"true":void 0,className:n?r(uft,e,"components-disabled"):void 0,...o,children:t})})}I1.Context=Xbe;I1.Consumer=dft;const fft="components-draggable__invisible-drag-image",bft="components-draggable__clone",JC=0,mZ="is-dragging-components-draggable";function Gbe({children:e,onDragStart:t,onDragOver:n,onDragEnd:o,appendToOwnerDocument:r=!1,cloneClassname:s,elementId:i,transferData:c,__experimentalTransferDataType:l="text",__experimentalDragComponent:u}){const d=x.useRef(null),p=x.useRef(()=>{});function f(h){h.preventDefault(),p.current(),o&&o(h)}function b(h){const{ownerDocument:g}=h.target;h.dataTransfer.setData(l,JSON.stringify(c));const z=g.createElement("div");z.style.top="0",z.style.left="0";const A=g.createElement("div");typeof h.dataTransfer.setDragImage=="function"&&(A.classList.add(fft),g.body.appendChild(A),h.dataTransfer.setDragImage(A,0,0)),z.classList.add(bft),s&&z.classList.add(s);let _=0,v=0;if(d.current){_=h.clientX,v=h.clientY,z.style.transform=`translate( ${_}px, ${v}px )`;const C=g.createElement("div");C.innerHTML=d.current.innerHTML,z.appendChild(C),g.body.appendChild(z)}else{const C=g.getElementById(i),R=C.getBoundingClientRect(),T=C.parentNode,E=R.top,B=R.left;z.style.width=`${R.width+JC*2}px`;const N=C.cloneNode(!0);N.id=`clone-${i}`,_=B-JC,v=E-JC,z.style.transform=`translate( ${_}px, ${v}px )`,Array.from(N.querySelectorAll("iframe")).forEach(j=>j.parentNode?.removeChild(j)),z.appendChild(N),r?g.body.appendChild(z):T?.appendChild(z)}let M=h.clientX,y=h.clientY;function k(C){if(M===C.clientX&&y===C.clientY)return;const R=_+C.clientX-M,T=v+C.clientY-y;z.style.transform=`translate( ${R}px, ${T}px )`,M=C.clientX,y=C.clientY,_=R,v=T,n&&n(C)}const S=PN(k,16);g.addEventListener("dragover",S),g.body.classList.add(mZ),t&&t(h),p.current=()=>{z&&z.parentNode&&z.parentNode.removeChild(z),A&&A.parentNode&&A.parentNode.removeChild(A),g.body.classList.remove(mZ),g.removeEventListener("dragover",S)}}return x.useEffect(()=>()=>{p.current()},[]),a.jsxs(a.Fragment,{children:[e({onDraggableStart:b,onDraggableEnd:f}),u&&a.jsx("div",{className:"components-draggable-drag-component-root",style:{display:"none"},ref:d,children:u})]})}function Tz({className:e,label:t,onFilesDrop:n,onHTMLDrop:o,onDrop:r,isEligible:s=()=>!0,...i}){const[c,l]=x.useState(),[u,d]=x.useState(),[p,f]=x.useState(),b=E5({onDrop(g){if(!g.dataTransfer)return;const z=T4(g.dataTransfer),A=g.dataTransfer.getData("text/html");A&&o?o(A):z.length&&n?n(z):r&&r(g)},onDragStart(g){l(!0),g.dataTransfer&&(g.dataTransfer.types.includes("text/html")?f(!!o):g.dataTransfer.types.includes("Files")||T4(g.dataTransfer).length>0?f(!!n):f(!!r&&s(g.dataTransfer)))},onDragEnd(){d(!1),l(!1),f(void 0)},onDragEnter(){d(!0)},onDragLeave(){d(!1)}}),h=oe("components-drop-zone",e,{"is-active":p,"is-dragging-over-document":c,"is-dragging-over-element":u});return a.jsx("div",{...i,ref:b,className:h,children:a.jsx("div",{className:"components-drop-zone__content",children:a.jsxs("div",{className:"components-drop-zone__content-inner",children:[a.jsx(wn,{icon:cm,className:"components-drop-zone__content-icon"}),a.jsx("span",{className:"components-drop-zone__content-text",children:t||m("Drop files to upload")})]})})})}function Kbe({label:e,value:t,colors:n,disableCustomColors:o,enableAlpha:r,onChange:s}){const[i,c]=x.useState(!1),l=vt(Kbe,"color-list-picker-option"),u=`${l}__label`,d=`${l}__content`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"components-color-list-picker__swatch-button",id:u,onClick:()=>c(p=>!p),"aria-expanded":i,"aria-controls":d,icon:t?a.jsx(eb,{colorValue:t,className:"components-color-list-picker__swatch-color"}):a.jsx(qo,{icon:$de}),text:e}),a.jsx("div",{role:"group",id:d,"aria-labelledby":u,"aria-hidden":!i,children:i&&a.jsx(Gw,{"aria-label":m("Color options"),className:"components-color-list-picker__color-picker",colors:n,value:t,clearable:!1,onChange:s,disableCustomColors:o,enableAlpha:r})})]})}function hft({colors:e,labels:t,value:n=[],disableCustomColors:o,enableAlpha:r,onChange:s}){return a.jsx("div",{className:"components-color-list-picker",children:t.map((i,c)=>a.jsx(Kbe,{label:i,value:n[c],colors:e,disableCustomColors:o,enableAlpha:r,onChange:l=>{const u=n.slice();u[c]=l,s(u)}},c))})}Xs([Gs]);function mft(e){return!e||e.length<2?["#000","#fff"]:e.map(({color:t})=>({color:t,brightness:an(t).brightness()})).reduce(([t,n],o)=>[o.brightness<=t.brightness?o:t,o.brightness>=n.brightness?o:n],[{brightness:1,color:""},{brightness:0,color:""}]).map(({color:t})=>t)}function Lj(e=[],t="90deg"){const n=100/e.length,o=e.map((r,s)=>`${r} ${s*n}%, ${r} ${(s+1)*n}%`).join(", ");return`linear-gradient( ${t}, ${o} )`}function gft(e){return e.map((t,n)=>({position:n*100/(e.length-1),color:t}))}function Mft(e=[]){return e.map(({color:t})=>t)}const zft=["#333","#CCC"];function Oft({value:e,onChange:t}){const n=!!e,o=n?e:zft,r=Lj(o),s=gft(o);return a.jsx(qfe,{disableInserter:!0,background:r,hasGradient:n,value:s,onChange:i=>{const c=Mft(i);t(c)}})}function Ybe({asButtons:e,loop:t,clearable:n=!0,unsetable:o=!0,colorPalette:r,duotonePalette:s,disableCustomColors:i,disableCustomDuotone:c,value:l,onChange:u,"aria-label":d,"aria-labelledby":p,...f}){const[b,h]=x.useMemo(()=>mft(r),[r]),g=l==="unset",z=m("Unset"),A=a.jsx(G0.Option,{value:"unset",isSelected:g,tooltipText:z,"aria-label":z,className:"components-duotone-picker__color-indicator",onClick:()=>{u(g?void 0:"unset")}},"unset"),_=s.map(({colors:y,slug:k,name:S})=>{const C={background:Lj(y,"135deg"),color:"transparent"},R=S??xe(m("Duotone code: %s"),k),T=S?xe(m("Duotone: %s"),S):R,E=N0(y,l);return a.jsx(G0.Option,{value:y,isSelected:E,"aria-label":T,tooltipText:R,style:C,onClick:()=>{u(E?void 0:y)}},k)});let v;if(e)v={asButtons:!0};else{const y={asButtons:!1,loop:t};d?v={...y,"aria-label":d}:p?v={...y,"aria-labelledby":p}:v={...y,"aria-label":m("Custom color picker.")}}const M=o?[A,..._]:_;return a.jsx(G0,{...f,...v,options:M,actions:!!n&&a.jsx(G0.ButtonAction,{onClick:()=>u(void 0),accessibleWhenDisabled:!0,disabled:!l,children:m("Clear")}),children:a.jsx(t1,{paddingTop:M.length===0?0:4,children:a.jsxs(dt,{spacing:3,children:[!i&&!c&&a.jsx(Oft,{value:g?void 0:l,onChange:u}),!c&&a.jsx(hft,{labels:[m("Shadows"),m("Highlights")],colors:r,value:g?void 0:l,disableCustomColors:i,enableAlpha:!0,onChange:y=>{y[0]||(y[0]=b),y[1]||(y[1]=h);const k=y.length>=2?y:void 0;u(k)}})]})})})}function Zbe({values:e}){return e?a.jsx(eb,{colorValue:Lj(e,"135deg")}):a.jsx(qo,{icon:$de})}function yft(e,t){const{href:n,children:o,className:r,rel:s="",...i}=e,c=[...new Set([...s.split(" "),"external","noreferrer","noopener"].filter(Boolean))].join(" "),l=oe("components-external-link",r),u=!!n?.startsWith("#"),d=p=>{u&&p.preventDefault(),e.onClick&&e.onClick(p)};return a.jsxs("a",{...i,className:l,href:n,onClick:d,target:"_blank",rel:c,ref:t,children:[a.jsx("span",{className:"components-external-link__contents",children:o}),a.jsx("span",{className:"components-external-link__icon","aria-label":m("(opens in a new tab)"),children:"↗"})]})}const hr=x.forwardRef(yft),Sx={width:200,height:170},Aft=["avi","mpg","mpeg","mov","mp4","m4v","ogg","ogv","webm","wmv"];function vft(e=""){const t=e.split(".");return t[t.length-1]}function xft(e=""){return e?e.startsWith("data:video/")||Aft.includes(vft(e)):!1}function gZ(e){return Math.round(e*100)}const wft=He("div",{target:"eeew7dm8"})({name:"jqnsxy",styles:"background-color:transparent;display:flex;text-align:center;width:100%"}),_ft=He("div",{target:"eeew7dm7"})("align-items:center;border-radius:",Ye.radiusSmall,";cursor:pointer;display:inline-flex;justify-content:center;margin:auto;position:relative;height:100%;&:after{border-radius:inherit;bottom:0;box-shadow:inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );content:'';left:0;pointer-events:none;position:absolute;right:0;top:0;}img,video{border-radius:inherit;box-sizing:border-box;display:block;height:auto;margin:0;max-height:100%;max-width:100%;pointer-events:none;user-select:none;width:auto;}"),kft=He("div",{target:"eeew7dm6"})("background:",Ze.gray[100],";border-radius:inherit;box-sizing:border-box;height:",Sx.height,"px;max-width:280px;min-width:",Sx.width,"px;width:100%;"),Sft=He(Ro,{target:"eeew7dm5"})({name:"1d3w5wq",styles:"width:100%"});var Cft={name:"1mn7kwb",styles:"padding-bottom:1em"};const qft=({__nextHasNoMarginBottom:e})=>e?void 0:Cft;var Rft={name:"1mn7kwb",styles:"padding-bottom:1em"};const Tft=({hasHelpText:e=!1})=>e?Rft:void 0,Eft=He(Yo,{target:"eeew7dm4"})("max-width:320px;padding-top:1em;",Tft," ",qft,";"),Wft=He("div",{target:"eeew7dm3"})("left:50%;overflow:hidden;pointer-events:none;position:absolute;top:50%;transform:translate3d( -50%, -50%, 0 );z-index:1;@media not ( prefers-reduced-motion ){transition:opacity 100ms linear;}opacity:",({showOverlay:e})=>e?1:0,";"),Qbe=He("div",{target:"eeew7dm2"})({name:"1yzbo24",styles:"background:rgba( 255, 255, 255, 0.4 );backdrop-filter:blur( 16px ) saturate( 180% );position:absolute;transform:translateZ( 0 )"}),MZ=He(Qbe,{target:"eeew7dm1"})({name:"1sw8ur",styles:"height:1px;left:1px;right:1px"}),zZ=He(Qbe,{target:"eeew7dm0"})({name:"188vg4t",styles:"width:1px;top:1px;bottom:1px"}),Nft=0,Bft=100,Lft=()=>{};function Pft({__nextHasNoMarginBottom:e,hasHelpText:t,onChange:n=Lft,point:o={x:.5,y:.5}}){const r=gZ(o.x),s=gZ(o.y),i=(c,l)=>{if(c===void 0)return;const u=parseInt(c,10);isNaN(u)||n({...o,[l]:u/100})};return a.jsxs(Eft,{className:"focal-point-picker__controls",__nextHasNoMarginBottom:e,hasHelpText:t,gap:4,children:[a.jsx(OZ,{label:m("Left"),"aria-label":m("Focal point left position"),value:[r,"%"].join(""),onChange:c=>i(c,"x"),dragDirection:"e"}),a.jsx(OZ,{label:m("Top"),"aria-label":m("Focal point top position"),value:[s,"%"].join(""),onChange:c=>i(c,"y"),dragDirection:"s"})]})}function OZ(e){return a.jsx(Sft,{__next40pxDefaultSize:!0,className:"focal-point-picker__controls-position-unit-control",labelPosition:"top",max:Bft,min:Nft,units:[{value:"%",label:"%"}],...e})}const jft=He("div",{target:"e19snlhg0"})("background-color:transparent;cursor:grab;height:40px;margin:-20px 0 0 -20px;position:absolute;user-select:none;width:40px;will-change:transform;z-index:10000;background:rgba( 255, 255, 255, 0.4 );border:1px solid rgba( 255, 255, 255, 0.4 );border-radius:",Ye.radiusRound,";backdrop-filter:blur( 16px ) saturate( 180% );box-shadow:rgb( 0 0 0 / 10% ) 0px 0px 8px;@media not ( prefers-reduced-motion ){transition:transform 100ms linear;}",({isDragging:e})=>e&&` box-shadow: rgb( 0 0 0 / 12% ) 0px 0px 10px; transform: scale( 1.1 ); cursor: grabbing; - `,";");function Dft({left:e="50%",top:t="50%",...n}){const o={left:e,top:t};return a.jsx(Ift,{...n,className:"components-focal-point-picker__icon_container",style:o})}function Fft({bounds:e,...t}){return a.jsxs(Nft,{...t,className:"components-focal-point-picker__grid",style:{width:e.width,height:e.height},children:[a.jsx(MZ,{style:{top:"33%"}}),a.jsx(MZ,{style:{top:"66%"}}),a.jsx(zZ,{style:{left:"33%"}}),a.jsx(zZ,{style:{left:"66%"}})]})}function $ft({alt:e,autoPlay:t,src:n,onLoad:o,mediaRef:r,muted:s=!0,...i}){return n?wft(n)?a.jsx("video",{...i,autoPlay:t,className:"components-focal-point-picker__media components-focal-point-picker__media--video",loop:!0,muted:s,onLoadedData:o,ref:r,src:n}):a.jsx("img",{...i,alt:e,className:"components-focal-point-picker__media components-focal-point-picker__media--image",onLoad:o,ref:r,src:n}):a.jsx(Sft,{className:"components-focal-point-picker__media components-focal-point-picker__media--placeholder",ref:r,...i})}const Vft=600;function u_({__nextHasNoMarginBottom:e,autoPlay:t=!0,className:n,help:o,label:r,onChange:s,onDrag:i,onDragEnd:c,onDragStart:l,resolvePoint:u,url:d,value:p={x:.5,y:.5},...f}){const[b,h]=x.useState(p),[g,z]=x.useState(!1),{startDrag:A,endDrag:_,isDragging:v}=x0e({onDragStart:$=>{k.current?.focus();const F=T($);F&&(l?.(F,$),h(F))},onDragMove:$=>{$.preventDefault();const F=T($);F&&(i?.(F,$),h(F))},onDragEnd:()=>{c?.(),s?.(b)}}),{x:M,y}=v?b:p,k=x.useRef(null),[S,C]=x.useState(Cx),R=x.useRef(()=>{if(!k.current)return;const{clientWidth:$,clientHeight:F}=k.current;C($>0&&F>0?{width:$,height:F}:{...Cx})});x.useEffect(()=>{const $=R.current;if(!k.current)return;const{defaultView:F}=k.current.ownerDocument;return F?.addEventListener("resize",$),()=>F?.removeEventListener("resize",$)},[]),XN(()=>void R.current(),[]);const T=({clientX:$,clientY:F,shiftKey:X})=>{if(!k.current)return;const{top:Z,left:V}=k.current.getBoundingClientRect();let ee=($-V)/S.width,te=(F-Z)/S.height;return X&&(ee=Math.round(ee/.1)*.1,te=Math.round(te/.1)*.1),E({x:ee,y:te})},E=$=>{var F;const X=(F=u?.($))!==null&&F!==void 0?F:$;X.x=Math.max(0,Math.min(X.x,1)),X.y=Math.max(0,Math.min(X.y,1));const Z=V=>Math.round(V*100)/100;return{x:Z(X.x),y:Z(X.y)}},B=$=>{const{code:F,shiftKey:X}=$;if(!["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"].includes(F))return;$.preventDefault();const Z={x:M,y},V=X?.1:.01,ee=F==="ArrowUp"||F==="ArrowLeft"?-1*V:V,te=F==="ArrowUp"||F==="ArrowDown"?"y":"x";Z[te]=Z[te]+ee,s?.(E(Z))},N={left:M!==void 0?M*S.width:.5*S.width,top:y!==void 0?y*S.height:.5*S.height},j=oe("components-focal-point-picker-control",n),P=`inspector-focal-point-picker-control-${vt(u_)}`;return FL(()=>{z(!0);const $=window.setTimeout(()=>{z(!1)},Vft);return()=>window.clearTimeout($)},[M,y]),a.jsxs(no,{...f,__nextHasNoMarginBottom:e,__associatedWPComponentName:"FocalPointPicker",label:r,id:P,help:o,className:j,children:[a.jsx(_ft,{className:"components-focal-point-picker-wrapper",children:a.jsxs(kft,{className:"components-focal-point-picker",onKeyDown:B,onMouseDown:A,onBlur:()=>{v&&_()},ref:k,role:"button",tabIndex:-1,children:[a.jsx(Fft,{bounds:S,showOverlay:g}),a.jsx($ft,{alt:m("Media preview"),autoPlay:t,onLoad:R.current,src:d}),a.jsx(Dft,{...N,isDragging:v})]})}),a.jsx(jft,{__nextHasNoMarginBottom:e,hasHelpText:!!o,point:{x:M,y},onChange:$=>{s?.(E($))}})]})}function Hft(e){return/^[\d\.]+(px|em|rem|vw|vh|%|svw|lvw|dvw|svh|lvh|dvh|vi|svi|lvi|dvi|vb|svb|lvb|dvb|vmin|svmin|lvmin|dvmin|vmax|svmax|lvmax|dvmax)?$/i.test(String(e))}function Jbe(e){const[t,...n]=e;if(!t)return null;const[,o]=yo(t.size);return n.every(s=>{const[,i]=yo(s.size);return i===o})?o:null}const Uft=He("fieldset",{target:"e8tqeku4"})({name:"k2q51s",styles:"border:0;margin:0;padding:0;display:contents"}),Xft=He(Ot,{target:"e8tqeku3"})("height:",Je(4),";"),Gft=He(Ce,{target:"e8tqeku2"})("margin-top:",Je(-1),";"),Kft=He(no.VisualLabel,{target:"e8tqeku1"})("display:flex;gap:",Je(1),";justify-content:flex-start;margin-bottom:0;"),Yft=He("span",{target:"e8tqeku0"})("color:",Ze.gray[700],";"),yZ={key:"default",name:m("Default"),value:void 0},Zft=e=>{var t;const{__next40pxDefaultSize:n,fontSizes:o,value:r,size:s,onChange:i}=e,c=!!Jbe(o),l=[yZ,...o.map(d=>{let p;if(c){const[f]=yo(d.size);f!==void 0&&(p=String(f))}else Hft(d.size)&&(p=String(d.size));return{key:d.slug,name:d.name||d.slug,value:d.size,hint:p}})],u=(t=l.find(d=>d.value===r))!==null&&t!==void 0?t:yZ;return a.jsx(ob,{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,className:"components-font-size-picker__select",label:m("Font size"),hideLabelFromVision:!0,describedBy:xe(m("Currently selected font size: %s"),u.name),options:l,value:u,showSelectedHint:!0,onChange:({selectedItem:d})=>{i(d.value)},size:s})},Qft=[m("S"),m("M"),m("L"),m("XL"),m("XXL")],e2e=[m("Small"),m("Medium"),m("Large"),m("Extra Large"),m("Extra Extra Large")],Jft=e=>{const{fontSizes:t,value:n,__next40pxDefaultSize:o,size:r,onChange:s}=e;return a.jsx(Do,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:o,__shouldNotWarnDeprecated36pxSize:!0,label:m("Font size"),hideLabelFromVision:!0,value:n,onChange:s,isBlock:!0,size:r,children:t.map((i,c)=>a.jsx(Kn,{value:i.size,label:Qft[c],"aria-label":i.name||e2e[c],showTooltip:!0},i.slug))})},ebt=["px","em","rem","vw","vh"],tbt=5,nbt=(e,t)=>{const{__next40pxDefaultSize:n=!1,fallbackFontSize:o,fontSizes:r=[],disableCustomFontSizes:s=!1,onChange:i,size:c="default",units:l=ebt,value:u,withSlider:d=!1,withReset:p=!0}=e,f=U1({availableUnits:l}),b=r.find(C=>C.size===u),h=!!u&&!b,[g,z]=x.useState(h);let A;!s&&g?A="custom":A=r.length>tbt?"select":"togglegroup";const _=x.useMemo(()=>{switch(A){case"custom":return m("Custom");case"togglegroup":if(b)return b.name||e2e[r.indexOf(b)];break;case"select":const C=Jbe(r);if(C)return`(${C})`;break}return""},[A,b,r]);if(r.length===0&&s)return null;const v=typeof u=="string"||typeof r[0]?.size=="string",[M,y]=yo(u,f),k=!!y&&["em","rem","vw","vh"].includes(y),S=u===void 0;return q1({componentName:"FontSizePicker",__next40pxDefaultSize:n,size:c}),a.jsxs(Uft,{ref:t,className:"components-font-size-picker",children:[a.jsx(qn,{as:"legend",children:m("Font size")}),a.jsx(t1,{children:a.jsxs(Xft,{className:"components-font-size-picker__header",children:[a.jsxs(Kft,{"aria-label":`${m("Size")} ${_||""}`,children:[m("Size"),_&&a.jsx(Yft,{className:"components-font-size-picker__header__hint",children:_})]}),!s&&a.jsx(Gft,{label:m(A==="custom"?"Use size preset":"Set custom size"),icon:UP,onClick:()=>z(!g),isPressed:A==="custom",size:"small"})]})}),a.jsxs("div",{children:[A==="select"&&a.jsx(Zft,{__next40pxDefaultSize:n,fontSizes:r,value:u,disableCustomFontSizes:s,size:c,onChange:C=>{C===void 0?i?.(void 0):i?.(v?C:Number(C),r.find(R=>R.size===C))},onSelectCustom:()=>z(!0)}),A==="togglegroup"&&a.jsx(Jft,{fontSizes:r,value:u,__next40pxDefaultSize:n,size:c,onChange:C=>{C===void 0?i?.(void 0):i?.(v?C:Number(C),r.find(R=>R.size===C))}}),A==="custom"&&a.jsxs(Yo,{className:"components-font-size-picker__custom-size-control",children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,label:m("Custom"),labelPosition:"top",hideLabelFromVision:!0,value:u,onChange:C=>{z(!0),i?.(C===void 0?void 0:v?C:parseInt(C,10))},size:c,units:v?f:[],min:0})}),d&&a.jsx(Tn,{isBlock:!0,children:a.jsx(t1,{marginX:2,marginBottom:0,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,className:"components-font-size-picker__custom-input",label:m("Custom Size"),hideLabelFromVision:!0,value:M,initialPosition:o,withInputField:!1,onChange:C=>{z(!0),i?.(C===void 0?void 0:v?C+(y??"px"):C)},min:0,max:k?10:100,step:k?.1:1})})}),p&&a.jsx(Tn,{children:a.jsx(Ce,{disabled:S,accessibleWhenDisabled:!0,onClick:()=>{i?.(void 0)},variant:"secondary",__next40pxDefaultSize:!0,size:c==="__unstable-large"||e.__next40pxDefaultSize?"default":"small",children:m("Reset")})})]})]})]})},obt=x.forwardRef(nbt);function qx({accept:e,children:t,multiple:n=!1,onChange:o,onClick:r,render:s,...i}){const c=x.useRef(null),l=()=>{c.current?.click()};s||q1({componentName:"FormFileUpload",__next40pxDefaultSize:i.__next40pxDefaultSize,size:i.size});const u=s?s({openFileDialog:l}):a.jsx(Ce,{onClick:l,...i,children:t}),p=!(globalThis.window?.navigator.userAgent.includes("Safari")&&!globalThis.window?.navigator.userAgent.includes("Chrome")&&!globalThis.window?.navigator.userAgent.includes("Chromium"))&&e?.includes("image/*")?`${e}, image/heic, image/heif`:e;return a.jsxs("div",{className:"components-form-file-upload",children:[u,a.jsx("input",{type:"file",ref:c,multiple:n,style:{display:"none"},accept:p,onChange:o,onClick:r,"data-testid":"form-file-upload-input"})]})}const rbt=()=>{};function sbt(e,t){const{className:n,checked:o,id:r,disabled:s,onChange:i=rbt,...c}=e,l=oe("components-form-toggle",n,{"is-checked":o,"is-disabled":s});return a.jsxs("span",{className:l,children:[a.jsx("input",{className:"components-form-toggle__input",id:r,type:"checkbox",checked:o,onChange:i,disabled:s,...c,ref:t}),a.jsx("span",{className:"components-form-toggle__track"}),a.jsx("span",{className:"components-form-toggle__thumb"})]})}const ibt=x.forwardRef(sbt),abt=()=>{};function t2e({value:e,status:t,title:n,displayTransform:o,isBorderless:r=!1,disabled:s=!1,onClickRemove:i=abt,onMouseEnter:c,onMouseLeave:l,messages:u,termPosition:d,termsCount:p}){const f=vt(t2e),b=oe("components-form-token-field__token",{"is-error":t==="error","is-success":t==="success","is-validating":t==="validating","is-borderless":r,"is-disabled":s}),h=()=>i({value:e}),g=o(e),z=xe(m("%1$s (%2$s of %3$s)"),g,d,p);return a.jsxs("span",{className:b,onMouseEnter:c,onMouseLeave:l,title:n,children:[a.jsxs("span",{className:"components-form-token-field__token-text",id:`components-form-token-field__token-text-${f}`,children:[a.jsx(qn,{as:"span",children:z}),a.jsx("span",{"aria-hidden":"true",children:g})]}),a.jsx(Ce,{className:"components-form-token-field__remove-token",size:"small",icon:rp,onClick:s?void 0:h,disabled:s,label:u.remove,"aria-describedby":`components-form-token-field__token-text-${f}`})]})}const cbt=({__next40pxDefaultSize:e,hasTokens:t})=>!e&&Xe("padding-top:",Je(t?1:.5),";padding-bottom:",Je(t?1:.5),";",""),lbt=He(Yo,{target:"ehq8nmi0"})("padding:7px;",P3," ",cbt,";"),ubt=e=>e;function ip(e){const{autoCapitalize:t,autoComplete:n,maxLength:o,placeholder:r,label:s=m("Add item"),className:i,suggestions:c=[],maxSuggestions:l=100,value:u=[],displayTransform:d=ubt,saveTransform:p=Qe=>Qe.trim(),onChange:f=()=>{},onInputChange:b=()=>{},onFocus:h=void 0,isBorderless:g=!1,disabled:z=!1,tokenizeOnSpace:A=!1,messages:_={added:m("Item added."),removed:m("Item removed."),remove:m("Remove item"),__experimentalInvalid:m("Invalid item")},__experimentalRenderItem:v,__experimentalExpandOnFocus:M=!1,__experimentalValidateInput:y=()=>!0,__experimentalShowHowTo:k=!0,__next40pxDefaultSize:S=!1,__experimentalAutoSelectFirstMatch:C=!1,__nextHasNoMarginBottom:R=!1,tokenizeOnBlur:T=!1}=sp(e);R||Ke("Bottom margin styles for wp.components.FormTokenField",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."}),q1({componentName:"FormTokenField",size:void 0,__next40pxDefaultSize:S});const E=vt(ip),[B,N]=x.useState(""),[j,I]=x.useState(0),[P,$]=x.useState(!1),[F,X]=x.useState(!1),[Z,V]=x.useState(-1),[ee,te]=x.useState(!1),J=Fr(c),ue=Fr(u),ce=x.useRef(null),me=x.useRef(null),de=C1(Yt,500);x.useEffect(()=>{P&&!ye()&&Ae()},[P]),x.useEffect(()=>{const Qe=!ds(c,J||[]);(Qe||u!==ue)&&Pn(Qe)},[c,J,u,ue]),x.useEffect(()=>{Pn()},[B]),x.useEffect(()=>{Pn()},[C]),z&&P&&($(!1),N(""));function Ae(){ce.current?.focus()}function ye(){return ce.current===ce.current?.ownerDocument.activeElement}function Ne(Qe){ye()||Qe.target===me.current?($(!0),X(M||F)):$(!1),typeof h=="function"&&h(Qe)}function je(Qe){if(fn()&&y(B))$(!1),T&&fn()&&Re(B);else{if(N(""),I(0),$(!1),M){const xt=Qe.relatedTarget===me.current;X(xt)}else X(!1);V(-1),te(!1)}}function ie(Qe){let xt=!1;if(!Qe.defaultPrevented){switch(Qe.key){case"Backspace":xt=L(ae);break;case"Enter":xt=Y();break;case"ArrowLeft":xt=U();break;case"ArrowUp":xt=ve();break;case"ArrowRight":xt=ne();break;case"ArrowDown":xt=qe();break;case"Delete":xt=L(H);break;case"Space":A&&(xt=Y());break;case"Escape":xt=Pe(Qe);break}xt&&Qe.preventDefault()}}function we(Qe){let xt=!1;switch(Qe.key){case",":xt=rt();break}xt&&Qe.preventDefault()}function re(Qe){Qe.target===me.current&&P&&Qe.preventDefault()}function pe(Qe){be(Qe.value),Ae()}function ke(Qe){const xt=nt().indexOf(Qe);xt>=0&&(V(xt),te(!1))}function Se(Qe){Re(Qe)}function se(Qe){const xt=Qe.value,Gt=A?/[ ,\t]+/:/[,\t]+/,On=xt.split(Gt),$n=On[On.length-1]||"";On.length>1&&fe(On.slice(0,-1)),N($n),b($n)}function L(Qe){let xt=!1;return ye()&&yt()&&(Qe(),xt=!0),xt}function U(){let Qe=!1;return yt()&&(wt(),Qe=!0),Qe}function ne(){let Qe=!1;return yt()&&(Bt(),Qe=!0),Qe}function ve(){return V(Qe=>(Qe===0?nt(B,c,u,l,p).length:Qe)-1),te(!0),!0}function qe(){return V(Qe=>(Qe+1)%nt(B,c,u,l,p).length),te(!0),!0}function Pe(Qe){return Qe.target instanceof HTMLInputElement&&(N(Qe.target.value),X(!1),V(-1),te(!1)),!0}function rt(){return fn()&&Re(B),!0}function qt(Qe){I(u.length-Math.max(Qe,-1)-1)}function wt(){I(Qe=>Math.min(Qe+1,u.length))}function Bt(){I(Qe=>Math.max(Qe-1,0))}function ae(){const Qe=Ue()-1;Qe>-1&&be(u[Qe])}function H(){const Qe=Ue();Qe<u.length&&(be(u[Qe]),qt(Qe))}function Y(){let Qe=!1;const xt=Mt();return xt?(Re(xt),Qe=!0):fn()&&(Re(B),Qe=!0),Qe}function fe(Qe){const xt=[...new Set(Qe.map(p).filter(Boolean).filter(Gt=>!ot(Gt)))];if(xt.length>0){const Gt=[...u];Gt.splice(Ue(),0,...xt),f(Gt)}}function Re(Qe){if(!y(Qe)){Yt(_.__experimentalInvalid,"assertive");return}fe([Qe]),Yt(_.added,"assertive"),N(""),V(-1),te(!1),X(!M),P&&!T&&Ae()}function be(Qe){const xt=u.filter(Gt=>ze(Gt)!==ze(Qe));f(xt),Yt(_.removed,"assertive")}function ze(Qe){return typeof Qe=="object"?Qe.value:Qe}function nt(Qe=B,xt=c,Gt=u,On=l,$n=p){let Jn=$n(Qe);const pr=[],O0=[],o1=Gt.map(yr=>typeof yr=="string"?yr:yr.value);return Jn.length===0?xt=xt.filter(yr=>!o1.includes(yr)):(Jn=Jn.toLocaleLowerCase(),xt.forEach(yr=>{const Js=yr.toLocaleLowerCase().indexOf(Jn);o1.indexOf(yr)===-1&&(Js===0?pr.push(yr):Js>0&&O0.push(yr))}),xt=pr.concat(O0)),xt.slice(0,On)}function Mt(){if(Z!==-1)return nt()[Z]}function ot(Qe){return u.some(xt=>ze(Qe)===ze(xt))}function Ue(){return u.length-j}function yt(){return B.length===0}function fn(){return p(B).length>0}function Pn(Qe=!0){const xt=B.trim().length>1,Gt=nt(B),On=Gt.length>0,$n=ye()&&M;if(X($n||xt&&On),Qe&&(C&&xt&&On?(V(0),te(!0)):(V(-1),te(!1))),xt){const Jn=On?xe(Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",Gt.length),Gt.length):m("No results.");de(Jn,"assertive")}}function Mo(){const Qe=u.map(rr);return Qe.splice(Ue(),0,Jo()),Qe}function rr(Qe,xt,Gt){const On=ze(Qe),$n=typeof Qe!="string"?Qe.status:void 0,Jn=xt+1,pr=Gt.length;return a.jsx(Tn,{children:a.jsx(t2e,{value:On,status:$n,title:typeof Qe!="string"?Qe.title:void 0,displayTransform:d,onClickRemove:pe,isBorderless:typeof Qe!="string"&&Qe.isBorderless||g,onMouseEnter:typeof Qe!="string"?Qe.onMouseEnter:void 0,onMouseLeave:typeof Qe!="string"?Qe.onMouseLeave:void 0,disabled:$n!=="error"&&z,messages:_,termsCount:pr,termPosition:Jn})},"token-"+On)}function Jo(){const Qe={instanceId:E,autoCapitalize:t,autoComplete:n,placeholder:u.length===0?r:"",disabled:z,value:B,onBlur:je,isExpanded:F,selectedSuggestionIndex:Z};return a.jsx(Nfe,{...Qe,onChange:o&&u.length>=o?void 0:se,ref:ce},"input")}const To=oe(i,"components-form-token-field__input-container",{"is-active":P,"is-disabled":z});let Br={className:"components-form-token-field",tabIndex:-1};const Rt=nt();return z||(Br=Object.assign({},Br,{onKeyDown:J3(ie),onKeyPress:we,onFocus:Ne})),a.jsxs("div",{...Br,children:[s&&a.jsx(gh,{htmlFor:`components-form-token-input-${E}`,className:"components-form-token-field__label",children:s}),a.jsxs("div",{ref:me,className:To,tabIndex:-1,onMouseDown:re,onTouchStart:re,children:[a.jsx(lbt,{justify:"flex-start",align:"center",gap:1,wrap:!0,__next40pxDefaultSize:S,hasTokens:!!u.length,children:Mo()}),F&&a.jsx(Bfe,{instanceId:E,match:p(B),displayTransform:d,suggestions:Rt,selectedIndex:Z,scrollIntoView:ee,onHover:ke,onSelect:Se,__experimentalRenderItem:v})]}),!R&&a.jsx(t1,{marginBottom:2}),k&&a.jsx(vz,{id:`components-form-token-suggestions-howto-${E}`,className:"components-form-token-field__help",__nextHasNoMarginBottom:R,children:m(A?"Separate with commas, spaces, or the Enter key.":"Separate with commas or the Enter key.")})]})}function Cn(e){const{children:t,className:n="",label:o,hideSeparator:r}=e,s=vt(Cn);if(!x.Children.count(t))return null;const i=`components-menu-group-label-${s}`,c=oe(n,"components-menu-group",{"has-hidden-separator":r});return a.jsxs("div",{className:c,children:[o&&a.jsx("div",{className:"components-menu-group__label",id:i,"aria-hidden":"true",children:o}),a.jsx("div",{role:"group","aria-labelledby":o?i:void 0,children:t})]})}function dbt(e,t){let{children:n,info:o,className:r,icon:s,iconPosition:i="right",shortcut:c,isSelected:l,role:u="menuitem",suffix:d,...p}=e;return r=oe("components-menu-item__button",r),o&&(n=a.jsxs("span",{className:"components-menu-item__info-wrapper",children:[a.jsx("span",{className:"components-menu-item__item",children:n}),a.jsx("span",{className:"components-menu-item__info",children:o})]})),s&&typeof s!="string"&&(s=x.cloneElement(s,{className:oe("components-menu-items__item-icon",{"has-icon-right":i==="right"})})),a.jsxs(Ce,{__next40pxDefaultSize:!0,ref:t,"aria-checked":u==="menuitemcheckbox"||u==="menuitemradio"?l:void 0,role:u,icon:i==="left"?s:void 0,className:r,...p,children:[a.jsx("span",{className:"components-menu-item__item",children:n}),!d&&a.jsx(ele,{className:"components-menu-item__shortcut",shortcut:c}),!d&&s&&i==="right"&&a.jsx(qo,{icon:s}),d]})}const Ct=x.forwardRef(dbt),pbt=()=>{};function kf({choices:e=[],onHover:t=pbt,onSelect:n,value:o}){return a.jsx(a.Fragment,{children:e.map(r=>{const s=o===r.value;return a.jsx(Ct,{role:"menuitemradio",disabled:r.disabled,icon:s?M0:null,info:r.info,isSelected:s,shortcut:r.shortcut,className:"components-menu-items-choice",onClick:()=>{s||n(r.value)},onMouseEnter:()=>t(r.value),onMouseLeave:()=>t(null),"aria-label":r["aria-label"],children:r.label},r.value)})})}const fbt=Or(e=>t=>a.jsx(e,{...t,speak:Yt,debouncedSpeak:C1(Yt,500)}),"withSpokenMessages"),bbt=({size:e})=>Je(e==="compact"?1:2),hbt=He("div",{target:"effl84m1"})("display:flex;padding-inline-end:",bbt,";svg{fill:currentColor;}"),mbt=He(N1,{target:"effl84m0"})("input[type='search']{&::-webkit-search-decoration,&::-webkit-search-cancel-button,&::-webkit-search-results-button,&::-webkit-search-results-decoration{-webkit-appearance:none;}}&:not( :focus-within ){--wp-components-color-background:",Ze.theme.gray[100],";}");function gbt({searchRef:e,value:t,onChange:n,onClose:o}){if(!o&&!t)return a.jsx(wn,{icon:Fw});o&&Ke("`onClose` prop in wp.components.SearchControl",{since:"6.8"});const r=()=>{n(""),e.current?.focus()};return a.jsx(Ce,{size:"small",icon:rp,label:m(o?"Close search":"Reset search"),onClick:o??r})}function Mbt({__nextHasNoMarginBottom:e=!1,className:t,onChange:n,value:o,label:r=m("Search"),placeholder:s=m("Search"),hideLabelFromVision:i=!0,onClose:c,size:l="default",...u},d){const{disabled:p,...f}=u,b=x.useRef(null),h=vt(iu,"components-search-control"),g=x.useMemo(()=>({BaseControl:{_overrides:{__nextHasNoMarginBottom:e},__associatedWPComponentName:"SearchControl"},InputBase:{isBorderless:!0}}),[e]);return a.jsx(j3,{value:g,children:a.jsx(mbt,{__next40pxDefaultSize:!0,id:h,hideLabelFromVision:i,label:r,ref:xn([b,d]),type:"search",size:l,className:oe("components-search-control",t),onChange:z=>n(z??""),autoComplete:"off",placeholder:s,value:o??"",suffix:a.jsx(hbt,{size:l,children:a.jsx(gbt,{searchRef:b,value:o,onChange:n,onClose:c})}),...f})})}const iu=x.forwardRef(Mbt);function zbt(e){for(var t=[],n=0;n<e.length;){var o=e[n];if(o==="*"||o==="+"||o==="?"){t.push({type:"MODIFIER",index:n,value:e[n++]});continue}if(o==="\\"){t.push({type:"ESCAPED_CHAR",index:n++,value:e[n++]});continue}if(o==="{"){t.push({type:"OPEN",index:n,value:e[n++]});continue}if(o==="}"){t.push({type:"CLOSE",index:n,value:e[n++]});continue}if(o===":"){for(var r="",s=n+1;s<e.length;){var i=e.charCodeAt(s);if(i>=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122||i===95){r+=e[s++];continue}break}if(!r)throw new TypeError("Missing parameter name at ".concat(n));t.push({type:"NAME",index:n,value:r}),n=s;continue}if(o==="("){var c=1,l="",s=n+1;if(e[s]==="?")throw new TypeError('Pattern cannot start with "?" at '.concat(s));for(;s<e.length;){if(e[s]==="\\"){l+=e[s++]+e[s++];continue}if(e[s]===")"){if(c--,c===0){s++;break}}else if(e[s]==="("&&(c++,e[s+1]!=="?"))throw new TypeError("Capturing groups are not allowed at ".concat(s));l+=e[s++]}if(c)throw new TypeError("Unbalanced pattern at ".concat(n));if(!l)throw new TypeError("Missing pattern at ".concat(n));t.push({type:"PATTERN",index:n,value:l}),n=s;continue}t.push({type:"CHAR",index:n,value:e[n++]})}return t.push({type:"END",index:n,value:""}),t}function Obt(e,t){t===void 0&&(t={});for(var n=zbt(e),o=t.prefixes,r=o===void 0?"./":o,s=t.delimiter,i=s===void 0?"/#?":s,c=[],l=0,u=0,d="",p=function(R){if(u<n.length&&n[u].type===R)return n[u++].value},f=function(R){var T=p(R);if(T!==void 0)return T;var E=n[u],B=E.type,N=E.index;throw new TypeError("Unexpected ".concat(B," at ").concat(N,", expected ").concat(R))},b=function(){for(var R="",T;T=p("CHAR")||p("ESCAPED_CHAR");)R+=T;return R},h=function(R){for(var T=0,E=i;T<E.length;T++){var B=E[T];if(R.indexOf(B)>-1)return!0}return!1},g=function(R){var T=c[c.length-1],E=R||(T&&typeof T=="string"?T:"");if(T&&!E)throw new TypeError('Must have text between two parameters, missing text after "'.concat(T.name,'"'));return!E||h(E)?"[^".concat(Xu(i),"]+?"):"(?:(?!".concat(Xu(E),")[^").concat(Xu(i),"])+?")};u<n.length;){var z=p("CHAR"),A=p("NAME"),_=p("PATTERN");if(A||_){var v=z||"";r.indexOf(v)===-1&&(d+=v,v=""),d&&(c.push(d),d=""),c.push({name:A||l++,prefix:v,suffix:"",pattern:_||g(v),modifier:p("MODIFIER")||""});continue}var M=z||p("ESCAPED_CHAR");if(M){d+=M;continue}d&&(c.push(d),d="");var y=p("OPEN");if(y){var v=b(),k=p("NAME")||"",S=p("PATTERN")||"",C=b();f("CLOSE"),c.push({name:k||(S?l++:""),pattern:k&&!S?g(v):S,prefix:v,suffix:C,modifier:p("MODIFIER")||""});continue}f("END")}return c}function ybt(e,t){var n=[],o=o2e(e,n,t);return Abt(o,n,t)}function Abt(e,t,n){n===void 0&&(n={});var o=n.decode,r=o===void 0?function(s){return s}:o;return function(s){var i=e.exec(s);if(!i)return!1;for(var c=i[0],l=i.index,u=Object.create(null),d=function(f){if(i[f]===void 0)return"continue";var b=t[f-1];b.modifier==="*"||b.modifier==="+"?u[b.name]=i[f].split(b.prefix+b.suffix).map(function(h){return r(h,b)}):u[b.name]=r(i[f],b)},p=1;p<i.length;p++)d(p);return{path:c,index:l,params:u}}}function Xu(e){return e.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1")}function n2e(e){return e&&e.sensitive?"":"i"}function vbt(e,t){if(!t)return e;for(var n=/\((?:\?<(.*?)>)?(?!\?)/g,o=0,r=n.exec(e.source);r;)t.push({name:r[1]||o++,prefix:"",suffix:"",modifier:"",pattern:""}),r=n.exec(e.source);return e}function xbt(e,t,n){var o=e.map(function(r){return o2e(r,t,n).source});return new RegExp("(?:".concat(o.join("|"),")"),n2e(n))}function wbt(e,t,n){return _bt(Obt(e,n),t,n)}function _bt(e,t,n){n===void 0&&(n={});for(var o=n.strict,r=o===void 0?!1:o,s=n.start,i=s===void 0?!0:s,c=n.end,l=c===void 0?!0:c,u=n.encode,d=u===void 0?function(T){return T}:u,p=n.delimiter,f=p===void 0?"/#?":p,b=n.endsWith,h=b===void 0?"":b,g="[".concat(Xu(h),"]|$"),z="[".concat(Xu(f),"]"),A=i?"^":"",_=0,v=e;_<v.length;_++){var M=v[_];if(typeof M=="string")A+=Xu(d(M));else{var y=Xu(d(M.prefix)),k=Xu(d(M.suffix));if(M.pattern)if(t&&t.push(M),y||k)if(M.modifier==="+"||M.modifier==="*"){var S=M.modifier==="*"?"?":"";A+="(?:".concat(y,"((?:").concat(M.pattern,")(?:").concat(k).concat(y,"(?:").concat(M.pattern,"))*)").concat(k,")").concat(S)}else A+="(?:".concat(y,"(").concat(M.pattern,")").concat(k,")").concat(M.modifier);else{if(M.modifier==="+"||M.modifier==="*")throw new TypeError('Can not repeat "'.concat(M.name,'" without a prefix and suffix'));A+="(".concat(M.pattern,")").concat(M.modifier)}else A+="(?:".concat(y).concat(k,")").concat(M.modifier)}}if(l)r||(A+="".concat(z,"?")),A+=n.endsWith?"(?=".concat(g,")"):"$";else{var C=e[e.length-1],R=typeof C=="string"?z.indexOf(C[C.length-1])>-1:C===void 0;r||(A+="(?:".concat(z,"(?=").concat(g,"))?")),R||(A+="(?=".concat(z,"|").concat(g,")"))}return new RegExp(A,n2e(n))}function o2e(e,t,n){return e instanceof RegExp?vbt(e,t):Array.isArray(e)?xbt(e,t,n):wbt(e,t,n)}function r2e(e,t){return ybt(t,{decode:decodeURIComponent})(e)}function kbt(e,t){for(const n of t){const o=r2e(e,n.path);if(o)return{params:o.params,id:n.id}}}function Sbt(e,t){if(!e.startsWith("/"))return;const n=e.split("/");let o;for(;n.length>1&&o===void 0;){n.pop();const r=n.join("/")===""?"/":n.join("/");t.find(s=>r2e(r,s.path)!==!1)&&(o=r)}return o}const Cbt={location:{},goTo:()=>{},goBack:()=>{},goToParent:()=>{},addScreen:()=>{},removeScreen:()=>{},params:{}},jj=x.createContext(Cbt),qbt={name:"1br0vvk",styles:"position:relative;overflow-x:clip;contain:layout;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;align-items:start"},AZ=tp({from:{opacity:0}}),vZ=tp({to:{opacity:0}}),s2e=tp({from:{transform:"translateX(100px)"}}),i2e=tp({to:{transform:"translateX(-80px)"}}),a2e=tp({from:{transform:"translateX(-100px)"}}),c2e=tp({to:{transform:"translateX(80px)"}}),u1={DURATION:70,EASING:"linear",DELAY:{IN:70,OUT:40}},Ha={DURATION:300,EASING:"cubic-bezier(0.33, 0, 0, 1)"},xZ={IN:Math.max(u1.DURATION+u1.DELAY.IN,Ha.DURATION),OUT:Math.max(u1.DURATION+u1.DELAY.OUT,Ha.DURATION)},l2e={end:{in:s2e.name,out:i2e.name},start:{in:a2e.name,out:c2e.name}},Rbt={end:{in:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.IN,"ms both ",AZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",s2e,";",""),out:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.OUT,"ms both ",vZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",i2e,";","")},start:{in:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.IN,"ms both ",AZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",a2e,";",""),out:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.OUT,"ms both ",vZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",c2e,";","")}},Tbt=Xe("z-index:1;&[data-animation-type='out']{z-index:0;}@media not ( prefers-reduced-motion ){&:not( [data-skip-animation] ){",["start","end"].map(e=>["in","out"].map(t=>Xe("&[data-animation-direction='",e,"'][data-animation-type='",t,"']{animation:",Rbt[e][t],";}",""))),";}}",""),Ebt={name:"14di7zd",styles:"overflow-x:auto;max-height:100%;box-sizing:border-box;position:relative;grid-column:1/-1;grid-row:1/-1"};function Wbt({screens:e},t){return e.some(n=>n.path===t.path)?(globalThis.SCRIPT_DEBUG===!0&&zn(`Navigator: a screen with path ${t.path} already exists. -The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screens:e},t){return e.filter(n=>n.id!==t.id)}function u2e(e,t,n={}){var o;const{focusSelectors:r}=e,s={...e.currentLocation},{isBack:i=!1,skipFocus:c=!1,replace:l,focusTargetSelector:u,...d}=n;if(s.path===t)return{currentLocation:s,focusSelectors:r};let p;function f(){var h;return p=(h=p)!==null&&h!==void 0?h:new Map(e.focusSelectors),p}u&&s.path&&f().set(s.path,u);let b;return r.get(t)&&(i&&(b=r.get(t)),f().delete(t)),{currentLocation:{...d,isInitial:!1,path:t,isBack:i,hasRestoredFocus:!1,focusTargetSelector:b,skipFocus:c},focusSelectors:(o=p)!==null&&o!==void 0?o:r}}function Bbt(e,t={}){const{screens:n,focusSelectors:o}=e,r={...e.currentLocation},s=r.path;if(s===void 0)return{currentLocation:r,focusSelectors:o};const i=Sbt(s,n);return i===void 0?{currentLocation:r,focusSelectors:o}:u2e(e,i,{...t,isBack:!0})}function Lbt(e,t){let{screens:n,currentLocation:o,matchedPath:r,focusSelectors:s,...i}=e;switch(t.type){case"add":n=Wbt(e,t.screen);break;case"remove":n=Nbt(e,t.screen);break;case"goto":({currentLocation:o,focusSelectors:s}=u2e(e,t.path,t.options));break;case"gotoparent":({currentLocation:o,focusSelectors:s}=Bbt(e,t.options));break}if(n===e.screens&&o===e.currentLocation)return e;const c=o.path;return r=c!==void 0?kbt(c,n):void 0,r&&e.matchedPath&&r.id===e.matchedPath.id&&ds(r.params,e.matchedPath.params)&&(r=e.matchedPath),{...i,screens:n,currentLocation:o,matchedPath:r,focusSelectors:s}}function Pbt(e,t){const{initialPath:n,children:o,className:r,...s}=vn(e,"Navigator"),[i,c]=x.useReducer(Lbt,n,h=>({screens:[],currentLocation:{path:h,isInitial:!0},matchedPath:void 0,focusSelectors:new Map,initialPath:n})),l=x.useMemo(()=>({goBack:h=>c({type:"gotoparent",options:h}),goTo:(h,g)=>c({type:"goto",path:h,options:g}),goToParent:h=>{Ke("wp.components.useNavigator().goToParent",{since:"6.7",alternative:"wp.components.useNavigator().goBack"}),c({type:"gotoparent",options:h})},addScreen:h=>c({type:"add",screen:h}),removeScreen:h=>c({type:"remove",screen:h})}),[]),{currentLocation:u,matchedPath:d}=i,p=x.useMemo(()=>{var h;return{location:u,params:(h=d?.params)!==null&&h!==void 0?h:{},match:d?.id,...l}},[u,d,l]),f=ro(),b=x.useMemo(()=>f(qbt,r),[r,f]);return a.jsx(mo,{ref:t,className:b,...s,children:a.jsx(jj.Provider,{value:p,children:o})})}const jbt=Rn(Pbt,"Navigator"),wZ=1.2,Ibt=(e,t,n)=>t==="ANIMATING_IN"&&n===l2e[e].in,Dbt=(e,t,n)=>t==="ANIMATING_OUT"&&n===l2e[e].out;function Fbt({isMatch:e,skipAnimation:t,isBack:n,onAnimationEnd:o}){const r=jt(),s=$1(),[i,c]=x.useState("INITIAL"),l=i!=="ANIMATING_IN"&&i!=="IN"&&e,u=i!=="ANIMATING_OUT"&&i!=="OUT"&&!e;x.useLayoutEffect(()=>{l?c(t||s?"IN":"ANIMATING_IN"):u&&c(t||s?"OUT":"ANIMATING_OUT")},[l,u,t,s]);const d=r&&n||!r&&!n?"end":"start",p=i==="ANIMATING_IN",f=i==="ANIMATING_OUT";let b;p?b="in":f&&(b="out");const h=x.useCallback(g=>{o?.(g),Dbt(d,i,g.animationName)?c("OUT"):Ibt(d,i,g.animationName)&&c("IN")},[o,i,d]);return x.useEffect(()=>{let g;return f?g=window.setTimeout(()=>{c("OUT"),g=void 0},xZ.OUT*wZ):p&&(g=window.setTimeout(()=>{c("IN"),g=void 0},xZ.IN*wZ)),()=>{g&&(window.clearTimeout(g),g=void 0)}},[f,p]),{animationStyles:Tbt,shouldRenderScreen:e||i==="IN"||i==="ANIMATING_OUT",screenProps:{onAnimationEnd:h,"data-animation-direction":d,"data-animation-type":b,"data-skip-animation":t||void 0}}}function $bt(e,t){/^\//.test(e.path)||globalThis.SCRIPT_DEBUG===!0&&zn("wp.components.Navigator.Screen: the `path` should follow a URL-like scheme; it should start with and be separated by the `/` character.");const n=x.useId(),{children:o,className:r,path:s,onAnimationEnd:i,...c}=vn(e,"Navigator.Screen"),{location:l,match:u,addScreen:d,removeScreen:p}=x.useContext(jj),{isInitial:f,isBack:b,focusTargetSelector:h,skipFocus:g}=l,z=u===n,A=x.useRef(null),_=!!f&&!b;x.useEffect(()=>{const T={id:n,path:v5(s)};return d(T),()=>p(T)},[n,s,d,p]);const{animationStyles:v,shouldRenderScreen:M,screenProps:y}=Fbt({isMatch:z,isBack:b,onAnimationEnd:i,skipAnimation:_}),k=ro(),S=x.useMemo(()=>k(Ebt,v,r),[r,k,v]),C=x.useRef(l);x.useEffect(()=>{C.current=l},[l]),x.useEffect(()=>{const T=A.current;if(_||!z||!T||C.current.hasRestoredFocus||g)return;const E=T.ownerDocument.activeElement;if(T.contains(E))return;let B=null;if(b&&h&&(B=T.querySelector(h)),!B){const[N]=Xr.tabbable.find(T);B=N??T}C.current.hasRestoredFocus=!0,B.focus()},[_,z,b,h,g]);const R=xn([t,A]);return M?a.jsx(mo,{ref:R,className:S,...y,...c,children:o}):null}const Vbt=Rn($bt,"Navigator.Screen");function d2e(){const{location:e,params:t,goTo:n,goBack:o,goToParent:r}=x.useContext(jj);return{location:e,goTo:n,goBack:o,goToParent:r,params:t}}const Hbt=(e,t)=>`[${e}="${t}"]`;function Ubt(e){const{path:t,onClick:n,as:o=Ce,attributeName:r="id",...s}=vn(e,"Navigator.Button"),i=v5(t),{goTo:c}=d2e(),l=x.useCallback(u=>{u.preventDefault(),c(i,{focusTargetSelector:Hbt(r,i)}),n?.(u)},[c,n,r,i]);return{as:o,onClick:l,...s,[r]:i}}function Xbt(e,t){const n=Ubt(e);return a.jsx(mo,{ref:t,...n})}const Gbt=Rn(Xbt,"Navigator.Button");function Kbt(e){const{onClick:t,as:n=Ce,...o}=vn(e,"Navigator.BackButton"),{goBack:r}=d2e(),s=x.useCallback(i=>{i.preventDefault(),r(),t?.(i)},[r,t]);return{as:n,onClick:s,...o}}function Ybt(e,t){const n=Kbt(e);return a.jsx(mo,{ref:t,...n})}const Zbt=Rn(Ybt,"Navigator.BackButton"),ic=Object.assign(jbt,{Screen:Object.assign(Vbt,{displayName:"Navigator.Screen"}),Button:Object.assign(Gbt,{displayName:"Navigator.Button"}),BackButton:Object.assign(Zbt,{displayName:"Navigator.BackButton"})}),_Z=()=>{};function Qbt(e,t){const n=typeof e=="string"?e:M1(e);x.useEffect(()=>{n&&Yt(n,t)},[n,t])}function Jbt(e){switch(e){case"success":case"warning":case"info":return"polite";default:return"assertive"}}function e2t(e){switch(e){case"warning":return m("Warning notice");case"info":return m("Information notice");case"error":return m("Error notice");default:return m("Notice")}}function L1({className:e,status:t="info",children:n,spokenMessage:o=n,onRemove:r=_Z,isDismissible:s=!0,actions:i=[],politeness:c=Jbt(t),__unstableHTML:l,onDismiss:u=_Z}){Qbt(o,c);const d=oe(e,"components-notice","is-"+t,{"is-dismissible":s});l&&typeof n=="string"&&(n=a.jsx(i0,{children:n}));const p=()=>{u(),r()};return a.jsxs("div",{className:d,children:[a.jsx(qn,{children:e2t(t)}),a.jsxs("div",{className:"components-notice__content",children:[n,a.jsx("div",{className:"components-notice__actions",children:i.map(({className:f,label:b,isPrimary:h,variant:g,noDefaultClasses:z=!1,onClick:A,url:_},v)=>{let M=g;return g!=="primary"&&!z&&(M=_?"link":"secondary"),typeof M>"u"&&h&&(M="primary"),a.jsx(Ce,{__next40pxDefaultSize:!0,href:_,variant:M,onClick:_?void 0:A,className:oe("components-notice__action",f),children:b},v)})})]}),s&&a.jsx(Ce,{size:"small",className:"components-notice__dismiss",icon:im,label:m("Close"),onClick:p})]})}const t2t=()=>{};function lW({notices:e,onRemove:t=t2t,className:n,children:o}){const r=s=>()=>t(s);return n=oe("components-notice-list",n),a.jsxs("div",{className:n,children:[o,[...e].reverse().map(s=>{const{content:i,...c}=s;return x.createElement(L1,{...c,key:s.id,onRemove:r(s.id)},s.content)})]})}function n2t({label:e,children:t}){return a.jsxs("div",{className:"components-panel__header",children:[e&&a.jsx("h2",{children:e}),t]})}function o2t({header:e,className:t,children:n},o){const r=oe(t,"components-panel");return a.jsxs("div",{className:r,ref:o,children:[e&&a.jsx(n2t,{label:e}),n]})}const r2t=x.forwardRef(o2t),s2t=()=>{};function i2t(e,t){const{buttonProps:n={},children:o,className:r,icon:s,initialOpen:i,onToggle:c=s2t,opened:l,title:u,scrollAfterOpen:d=!0}=e,[p,f]=Ow(l,{initial:i===void 0?!0:i,fallback:!1}),b=x.useRef(null),h=$1()?"auto":"smooth",g=_=>{_.preventDefault();const v=!p;f(v),c(v)},z=x.useRef();z.current=d,FL(()=>{p&&z.current&&b.current?.scrollIntoView&&b.current.scrollIntoView({inline:"nearest",block:"nearest",behavior:h})},[p,h]);const A=oe("components-panel__body",r,{"is-opened":p});return a.jsxs("div",{className:A,ref:xn([b,t]),children:[a.jsx(a2t,{icon:s,isOpened:!!p,onClick:g,title:u,...n}),typeof o=="function"?o({opened:!!p}):p&&o]})}const a2t=x.forwardRef(({isOpened:e,icon:t,title:n,...o},r)=>n?a.jsx("h2",{className:"components-panel__body-title",children:a.jsxs(Ce,{__next40pxDefaultSize:!0,className:"components-panel__body-toggle","aria-expanded":e,ref:r,...o,children:[a.jsx("span",{"aria-hidden":"true",children:a.jsx(qo,{className:"components-panel__arrow",icon:e?Nw:nu})}),n,t&&a.jsx(qo,{icon:t,className:"components-panel__icon",size:20})]})}):null),Qt=x.forwardRef(i2t);function c2t({className:e,children:t},n){return a.jsx("div",{className:oe("components-panel__row",e),ref:n,children:t})}const d_=x.forwardRef(c2t),l2t=a.jsx(ge,{className:"components-placeholder__illustration",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 60 60",preserveAspectRatio:"none",children:a.jsx(he,{vectorEffect:"non-scaling-stroke",d:"M60 60 0 0"})});function vo(e){const{icon:t,children:n,label:o,instructions:r,className:s,notices:i,preview:c,isColumnLayout:l,withIllustration:u,...d}=e,[p,{width:f}]=js();let b;typeof f=="number"&&(b={"is-large":f>=480,"is-medium":f>=160&&f<480,"is-small":f<160});const h=oe("components-placeholder",s,b,u?"has-illustration":null),g=oe("components-placeholder__fieldset",{"is-column-layout":l});return x.useEffect(()=>{r&&Yt(r)},[r]),a.jsxs("div",{...d,className:h,children:[u?l2t:null,p,i,c&&a.jsx("div",{className:"components-placeholder__preview",children:c}),a.jsxs("div",{className:"components-placeholder__label",children:[a.jsx(qo,{icon:t}),o]}),!!r&&a.jsx("div",{className:"components-placeholder__instructions",children:r}),a.jsx("div",{className:g,children:n})]})}const u2t=e=>e.every(t=>t.parent!==null);function p2e(e){const t=e.map(r=>({children:[],parent:null,...r,id:String(r.id)}));if(!u2t(t))return t;const n=t.reduce((r,s)=>{const{parent:i}=s;return r[i]||(r[i]=[]),r[i].push(s),r},{}),o=r=>r.map(s=>{const i=n[s.id];return{...s,children:i&&i.length?o(i):[]}});return o(n[0]||[])}const d2t={BaseControl:{_overrides:{__associatedWPComponentName:"TreeSelect"}}};function f2e(e,t=0){return e.flatMap(n=>[{value:n.id,label:" ".repeat(t*3)+Lt(n.name)},...f2e(n.children||[],t+1)])}function Ij(e){const{label:t,noOptionLabel:n,onChange:o,selectedId:r,tree:s=[],...i}=sp(e),c=x.useMemo(()=>[n&&{value:"",label:n},...f2e(s)].filter(l=>!!l),[n,s]);return q1({componentName:"TreeSelect",size:i.size,__next40pxDefaultSize:i.__next40pxDefaultSize}),a.jsx(j3,{value:d2t,children:a.jsx(jn,{__shouldNotWarnDeprecated36pxSize:!0,label:t,options:c,onChange:o,value:r,...i})})}function p2t({__next40pxDefaultSize:e,label:t,noOptionLabel:n,authorList:o,selectedAuthorId:r,onChange:s}){if(!o)return null;const i=p2e(o);return a.jsx(Ij,{label:t,noOptionLabel:n,onChange:s,tree:i,selectedId:r!==void 0?String(r):void 0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:e})}function f2t({__next40pxDefaultSize:e,label:t,noOptionLabel:n,categoriesList:o,selectedCategoryId:r,onChange:s,...i}){const c=x.useMemo(()=>p2e(o),[o]);return a.jsx(Ij,{label:t,noOptionLabel:n,onChange:s,tree:c,selectedId:r!==void 0?String(r):void 0,...i,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:e})}const b2t=1,h2t=100,m2t=20;function g2t(e){return"categoriesList"in e}function M2t(e){return"categorySuggestions"in e}function z2t({authorList:e,selectedAuthorId:t,numberOfItems:n,order:o,orderBy:r,maxItems:s=h2t,minItems:i=b2t,onAuthorChange:c,onNumberOfItemsChange:l,onOrderChange:u,onOrderByChange:d,...p}){return a.jsx(dt,{spacing:"4",className:"components-query-controls",children:[u&&d&&a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Order by"),value:r===void 0||o===void 0?void 0:`${r}/${o}`,options:[{label:m("Newest to oldest"),value:"date/desc"},{label:m("Oldest to newest"),value:"date/asc"},{label:m("A → Z"),value:"title/asc"},{label:m("Z → A"),value:"title/desc"}],onChange:f=>{if(typeof f!="string")return;const[b,h]=f.split("/");h!==o&&u(h),b!==r&&d(b)}},"query-controls-order-select"),g2t(p)&&p.categoriesList&&p.onCategoryChange&&a.jsx(f2t,{__next40pxDefaultSize:!0,categoriesList:p.categoriesList,label:m("Category"),noOptionLabel:We("All","categories"),selectedCategoryId:p.selectedCategoryId,onChange:p.onCategoryChange},"query-controls-category-select"),M2t(p)&&p.categorySuggestions&&p.onCategoryChange&&a.jsx(ip,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Categories"),value:p.selectedCategories&&p.selectedCategories.map(f=>({id:f.id,value:f.name||f.value})),suggestions:Object.keys(p.categorySuggestions),onChange:p.onCategoryChange,maxSuggestions:m2t},"query-controls-categories-select"),c&&a.jsx(p2t,{__next40pxDefaultSize:!0,authorList:e,label:m("Author"),noOptionLabel:We("All","authors"),selectedAuthorId:t,onChange:c},"query-controls-author-select"),l&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of items"),value:n,onChange:l,min:i,max:s,required:!0},"query-controls-range-control")]})}function kZ(e,t){return`${e}-${t}-option-description`}function tq(e,t){return`${e}-${t}`}function SZ(e){return`${e}__help`}function sb(e){const{label:t,className:n,selected:o,help:r,onChange:s,hideLabelFromVision:i,options:c=[],id:l,...u}=e,d=vt(sb,"inspector-radio-control",l),p=f=>s(f.target.value);return c?.length?a.jsxs("fieldset",{id:d,className:oe(n,"components-radio-control"),"aria-describedby":r?SZ(d):void 0,children:[i?a.jsx(qn,{as:"legend",children:t}):a.jsx(no.VisualLabel,{as:"legend",children:t}),a.jsx(dt,{spacing:3,className:oe("components-radio-control__group-wrapper",{"has-help":!!r}),children:c.map((f,b)=>a.jsxs("div",{className:"components-radio-control__option",children:[a.jsx("input",{id:tq(d,b),className:"components-radio-control__input",type:"radio",name:d,value:f.value,onChange:p,checked:f.value===o,"aria-describedby":f.description?kZ(d,b):void 0,...u}),a.jsx("label",{className:"components-radio-control__label",htmlFor:tq(d,b),children:f.label}),f.description?a.jsx(vz,{__nextHasNoMarginBottom:!0,id:kZ(d,b),className:"components-radio-control__option-description",children:f.description}):null]},tq(d,b)))}),!!r&&a.jsx(vz,{__nextHasNoMarginBottom:!0,id:SZ(d),className:"components-base-control__help",children:r})]}):null}var O2t=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,r){o.__proto__=r}||function(o,r){for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&(o[s]=r[s])},e(t,n)};return function(t,n){e(t,n);function o(){this.constructor=t}t.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}(),n0=function(){return n0=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++){t=arguments[n];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},n0.apply(this,arguments)},CZ={width:"100%",height:"10px",top:"0px",left:"0px",cursor:"row-resize"},qZ={width:"10px",height:"100%",top:"0px",left:"0px",cursor:"col-resize"},DA={width:"20px",height:"20px",position:"absolute"},y2t={top:n0(n0({},CZ),{top:"-5px"}),right:n0(n0({},qZ),{left:void 0,right:"-5px"}),bottom:n0(n0({},CZ),{top:void 0,bottom:"-5px"}),left:n0(n0({},qZ),{left:"-5px"}),topRight:n0(n0({},DA),{right:"-10px",top:"-10px",cursor:"ne-resize"}),bottomRight:n0(n0({},DA),{right:"-10px",bottom:"-10px",cursor:"se-resize"}),bottomLeft:n0(n0({},DA),{left:"-10px",bottom:"-10px",cursor:"sw-resize"}),topLeft:n0(n0({},DA),{left:"-10px",top:"-10px",cursor:"nw-resize"})},A2t=function(e){O2t(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.onMouseDown=function(o){n.props.onResizeStart(o,n.props.direction)},n.onTouchStart=function(o){n.props.onResizeStart(o,n.props.direction)},n}return t.prototype.render=function(){return x.createElement("div",{className:this.props.className||"",style:n0(n0({position:"absolute",userSelect:"none"},y2t[this.props.direction]),this.props.replaceStyles||{}),onMouseDown:this.onMouseDown,onTouchStart:this.onTouchStart},this.props.children)},t}(x.PureComponent),v2t=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,r){o.__proto__=r}||function(o,r){for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&(o[s]=r[s])},e(t,n)};return function(t,n){e(t,n);function o(){this.constructor=t}t.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}(),Ua=function(){return Ua=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++){t=arguments[n];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},Ua.apply(this,arguments)},x2t={width:"auto",height:"auto"},FA=function(e,t,n){return Math.max(Math.min(e,n),t)},RZ=function(e,t,n){var o=Math.round(e/t);return o*t+n*(o-1)},Gb=function(e,t){return new RegExp(e,"i").test(t)},$A=function(e){return!!(e.touches&&e.touches.length)},w2t=function(e){return!!((e.clientX||e.clientX===0)&&(e.clientY||e.clientY===0))},TZ=function(e,t,n){n===void 0&&(n=0);var o=t.reduce(function(s,i,c){return Math.abs(i-e)<Math.abs(t[s]-e)?c:s},0),r=Math.abs(t[o]-e);return n===0||r<n?t[o]:e},nq=function(e){return e=e.toString(),e==="auto"||e.endsWith("px")||e.endsWith("%")||e.endsWith("vh")||e.endsWith("vw")||e.endsWith("vmax")||e.endsWith("vmin")?e:e+"px"},VA=function(e,t,n,o){if(e&&typeof e=="string"){if(e.endsWith("px"))return Number(e.replace("px",""));if(e.endsWith("%")){var r=Number(e.replace("%",""))/100;return t*r}if(e.endsWith("vw")){var r=Number(e.replace("vw",""))/100;return n*r}if(e.endsWith("vh")){var r=Number(e.replace("vh",""))/100;return o*r}}return e},_2t=function(e,t,n,o,r,s,i){return o=VA(o,e.width,t,n),r=VA(r,e.height,t,n),s=VA(s,e.width,t,n),i=VA(i,e.height,t,n),{maxWidth:typeof o>"u"?void 0:Number(o),maxHeight:typeof r>"u"?void 0:Number(r),minWidth:typeof s>"u"?void 0:Number(s),minHeight:typeof i>"u"?void 0:Number(i)}},k2t=function(e){return Array.isArray(e)?e:[e,e]},S2t=["as","ref","style","className","grid","gridGap","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"],EZ="__resizable_base__",C2t=function(e){v2t(t,e);function t(n){var o,r,s,i,c=e.call(this,n)||this;return c.ratio=1,c.resizable=null,c.parentLeft=0,c.parentTop=0,c.resizableLeft=0,c.resizableRight=0,c.resizableTop=0,c.resizableBottom=0,c.targetLeft=0,c.targetTop=0,c.appendBase=function(){if(!c.resizable||!c.window)return null;var l=c.parentNode;if(!l)return null;var u=c.window.document.createElement("div");return u.style.width="100%",u.style.height="100%",u.style.position="absolute",u.style.transform="scale(0, 0)",u.style.left="0",u.style.flex="0 0 100%",u.classList?u.classList.add(EZ):u.className+=EZ,l.appendChild(u),u},c.removeBase=function(l){var u=c.parentNode;u&&u.removeChild(l)},c.state={isResizing:!1,width:(r=(o=c.propsSize)===null||o===void 0?void 0:o.width)!==null&&r!==void 0?r:"auto",height:(i=(s=c.propsSize)===null||s===void 0?void 0:s.height)!==null&&i!==void 0?i:"auto",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},c.onResizeStart=c.onResizeStart.bind(c),c.onMouseMove=c.onMouseMove.bind(c),c.onMouseUp=c.onMouseUp.bind(c),c}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||x2t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,o=0;if(this.resizable&&this.window){var r=this.resizable.offsetWidth,s=this.resizable.offsetHeight,i=this.resizable.style.position;i!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:r,o=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:s,this.resizable.style.position=i}return{width:n,height:o}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,o=this.props.size,r=function(c){var l;if(typeof n.state[c]>"u"||n.state[c]==="auto")return"auto";if(n.propsSize&&n.propsSize[c]&&(!((l=n.propsSize[c])===null||l===void 0)&&l.toString().endsWith("%"))){if(n.state[c].toString().endsWith("%"))return n.state[c].toString();var u=n.getParentSize(),d=Number(n.state[c].toString().replace("px","")),p=d/u[c]*100;return p+"%"}return nq(n.state[c])},s=o&&typeof o.width<"u"&&!this.state.isResizing?nq(o.width):r("width"),i=o&&typeof o.height<"u"&&!this.state.isResizing?nq(o.height):r("height");return{width:s,height:i}},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 o=!1,r=this.parentNode.style.flexWrap;r!=="wrap"&&(o=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var s={width:n.offsetWidth,height:n.offsetHeight};return o&&(this.parentNode.style.flexWrap=r),this.removeBase(n),s},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,o){var r=this.propsSize&&this.propsSize[o];return this.state[o]==="auto"&&this.state.original[o]===n&&(typeof r>"u"||r==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,o){var r=this.props.boundsByDirection,s=this.state.direction,i=r&&Gb("left",s),c=r&&Gb("top",s),l,u;if(this.props.bounds==="parent"){var d=this.parentNode;d&&(l=i?this.resizableRight-this.parentLeft:d.offsetWidth+(this.parentLeft-this.resizableLeft),u=c?this.resizableBottom-this.parentTop:d.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(l=i?this.resizableRight:this.window.innerWidth-this.resizableLeft,u=c?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(l=i?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),u=c?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return l&&Number.isFinite(l)&&(n=n&&n<l?n:l),u&&Number.isFinite(u)&&(o=o&&o<u?o:u),{maxWidth:n,maxHeight:o}},t.prototype.calculateNewSizeFromDirection=function(n,o){var r=this.props.scale||1,s=k2t(this.props.resizeRatio||1),i=s[0],c=s[1],l=this.state,u=l.direction,d=l.original,p=this.props,f=p.lockAspectRatio,b=p.lockAspectRatioExtraHeight,h=p.lockAspectRatioExtraWidth,g=d.width,z=d.height,A=b||0,_=h||0;return Gb("right",u)&&(g=d.width+(n-d.x)*i/r,f&&(z=(g-_)/this.ratio+A)),Gb("left",u)&&(g=d.width-(n-d.x)*i/r,f&&(z=(g-_)/this.ratio+A)),Gb("bottom",u)&&(z=d.height+(o-d.y)*c/r,f&&(g=(z-A)*this.ratio+_)),Gb("top",u)&&(z=d.height-(o-d.y)*c/r,f&&(g=(z-A)*this.ratio+_)),{newWidth:g,newHeight:z}},t.prototype.calculateNewSizeFromAspectRatio=function(n,o,r,s){var i=this.props,c=i.lockAspectRatio,l=i.lockAspectRatioExtraHeight,u=i.lockAspectRatioExtraWidth,d=typeof s.width>"u"?10:s.width,p=typeof r.width>"u"||r.width<0?n:r.width,f=typeof s.height>"u"?10:s.height,b=typeof r.height>"u"||r.height<0?o:r.height,h=l||0,g=u||0;if(c){var z=(f-h)*this.ratio+g,A=(b-h)*this.ratio+g,_=(d-g)/this.ratio+h,v=(p-g)/this.ratio+h,M=Math.max(d,z),y=Math.min(p,A),k=Math.max(f,_),S=Math.min(b,v);n=FA(n,M,y),o=FA(o,k,S)}else n=FA(n,d,p),o=FA(o,f,b);return{newWidth:n,newHeight:o}},t.prototype.setBoundingClientRect=function(){var n=1/(this.props.scale||1);if(this.props.bounds==="parent"){var o=this.parentNode;if(o){var r=o.getBoundingClientRect();this.parentLeft=r.left*n,this.parentTop=r.top*n}}if(this.props.bounds&&typeof this.props.bounds!="string"){var s=this.props.bounds.getBoundingClientRect();this.targetLeft=s.left*n,this.targetTop=s.top*n}if(this.resizable){var i=this.resizable.getBoundingClientRect(),c=i.left,l=i.top,u=i.right,d=i.bottom;this.resizableLeft=c*n,this.resizableRight=u*n,this.resizableTop=l*n,this.resizableBottom=d*n}},t.prototype.onResizeStart=function(n,o){if(!(!this.resizable||!this.window)){var r=0,s=0;if(n.nativeEvent&&w2t(n.nativeEvent)?(r=n.nativeEvent.clientX,s=n.nativeEvent.clientY):n.nativeEvent&&$A(n.nativeEvent)&&(r=n.nativeEvent.touches[0].clientX,s=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var i=this.props.onResizeStart(n,o,this.resizable);if(i===!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 c,l=this.window.getComputedStyle(this.resizable);if(l.flexBasis!=="auto"){var u=this.parentNode;if(u){var d=this.window.getComputedStyle(u).flexDirection;this.flexDir=d.startsWith("row")?"row":"column",c=l.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var p={original:{x:r,y:s,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:Ua(Ua({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:o,flexBasis:c};this.setState(p)}},t.prototype.onMouseMove=function(n){var o=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&$A(n))try{n.preventDefault(),n.stopPropagation()}catch{}var r=this.props,s=r.maxWidth,i=r.maxHeight,c=r.minWidth,l=r.minHeight,u=$A(n)?n.touches[0].clientX:n.clientX,d=$A(n)?n.touches[0].clientY:n.clientY,p=this.state,f=p.direction,b=p.original,h=p.width,g=p.height,z=this.getParentSize(),A=_2t(z,this.window.innerWidth,this.window.innerHeight,s,i,c,l);s=A.maxWidth,i=A.maxHeight,c=A.minWidth,l=A.minHeight;var _=this.calculateNewSizeFromDirection(u,d),v=_.newHeight,M=_.newWidth,y=this.calculateNewMaxFromBoundary(s,i);this.props.snap&&this.props.snap.x&&(M=TZ(M,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(v=TZ(v,this.props.snap.y,this.props.snapGap));var k=this.calculateNewSizeFromAspectRatio(M,v,{width:y.maxWidth,height:y.maxHeight},{width:c,height:l});if(M=k.newWidth,v=k.newHeight,this.props.grid){var S=RZ(M,this.props.grid[0],this.props.gridGap?this.props.gridGap[0]:0),C=RZ(v,this.props.grid[1],this.props.gridGap?this.props.gridGap[1]:0),R=this.props.snapGap||0,T=R===0||Math.abs(S-M)<=R?S:M,E=R===0||Math.abs(C-v)<=R?C:v;M=T,v=E}var B={width:M-b.width,height:v-b.height};if(h&&typeof h=="string"){if(h.endsWith("%")){var N=M/z.width*100;M=N+"%"}else if(h.endsWith("vw")){var j=M/this.window.innerWidth*100;M=j+"vw"}else if(h.endsWith("vh")){var I=M/this.window.innerHeight*100;M=I+"vh"}}if(g&&typeof g=="string"){if(g.endsWith("%")){var N=v/z.height*100;v=N+"%"}else if(g.endsWith("vw")){var j=v/this.window.innerWidth*100;v=j+"vw"}else if(g.endsWith("vh")){var I=v/this.window.innerHeight*100;v=I+"vh"}}var P={width:this.createSizeForCssProperty(M,"width"),height:this.createSizeForCssProperty(v,"height")};this.flexDir==="row"?P.flexBasis=P.width:this.flexDir==="column"&&(P.flexBasis=P.height);var $=this.state.width!==P.width,F=this.state.height!==P.height,X=this.state.flexBasis!==P.flexBasis,Z=$||F||X;Z&&hs.flushSync(function(){o.setState(P)}),this.props.onResize&&Z&&this.props.onResize(n,f,this.resizable,B)}},t.prototype.onMouseUp=function(n){var o,r,s=this.state,i=s.isResizing,c=s.direction,l=s.original;if(!(!i||!this.resizable)){var u={width:this.size.width-l.width,height:this.size.height-l.height};this.props.onResizeStop&&this.props.onResizeStop(n,c,this.resizable,u),this.props.size&&this.setState({width:(o=this.props.size.width)!==null&&o!==void 0?o:"auto",height:(r=this.props.size.height)!==null&&r!==void 0?r:"auto"}),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:Ua(Ua({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){var o,r;this.setState({width:(o=n.width)!==null&&o!==void 0?o:"auto",height:(r=n.height)!==null&&r!==void 0?r:"auto"})},t.prototype.renderResizer=function(n){var o=this,r=this.props,s=r.enable,i=r.handleStyles,c=r.handleClasses,l=r.handleWrapperStyle,u=r.handleWrapperClass,d=r.handleComponent;if(!s)return null;var p=n.filter(function(f){return s[f]!==!1}).map(function(f){return s[f]!==!1?x.createElement(A2t,{key:f,direction:f,onResizeStart:o.onResizeStart,replaceStyles:i&&i[f],className:c&&c[f]},d&&d[f]?d[f]:null):null});return x.createElement("div",{className:u,style:l},p)},t.prototype.render=function(){var n=this,o=Object.keys(this.props).reduce(function(i,c){return S2t.indexOf(c)!==-1||(i[c]=n.props[c]),i},{}),r=Ua(Ua(Ua({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&&(r.flexBasis=this.state.flexBasis);var s=this.props.as||"div";return x.createElement(s,Ua({style:r,className:this.props.className},o,{ref:function(i){i&&(n.resizable=i)}}),this.state.isResizing&&x.createElement("div",{style:this.state.backgroundStyle}),this.renderResizer(["topLeft","top","topRight","left"]),this.props.children,this.renderResizer(["right","bottomLeft","bottom","bottomRight"]))},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],gridGap:[0,0],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(x.PureComponent);const q2t=()=>{},af={bottom:"bottom",corner:"corner"};function R2t({axis:e,fadeTimeout:t=180,onResize:n=q2t,position:o=af.bottom,showPx:r=!1}){const[s,i]=js(),c=!!e,[l,u]=x.useState(!1),[d,p]=x.useState(!1),{width:f,height:b}=i,h=x.useRef(b),g=x.useRef(f),z=x.useRef(),A=x.useCallback(()=>{const v=()=>{c||(u(!1),p(!1))};z.current&&window.clearTimeout(z.current),z.current=window.setTimeout(v,t)},[t,c]);return x.useEffect(()=>{if(!(f!==null||b!==null))return;const M=f!==g.current,y=b!==h.current;if(!(!M&&!y)){if(f&&!g.current&&b&&!h.current){g.current=f,h.current=b;return}M&&(u(!0),g.current=f),y&&(p(!0),h.current=b),n({width:f,height:b}),A()}},[f,b,n,A]),{label:T2t({axis:e,height:b,moveX:l,moveY:d,position:o,showPx:r,width:f}),resizeListener:s}}function T2t({axis:e,height:t,moveX:n=!1,moveY:o=!1,position:r=af.bottom,showPx:s=!1,width:i}){if(!n&&!o)return;if(r===af.corner)return`${i} x ${t}`;const c=s?" px":"";if(e){if(e==="x"&&n)return`${i}${c}`;if(e==="y"&&o)return`${t}${c}`}if(n&&o)return`${i} x ${t}`;if(n)return`${i}${c}`;if(o)return`${t}${c}`}const E2t=He("div",{target:"e1wq7y4k3"})({name:"1cd7zoc",styles:"bottom:0;box-sizing:border-box;left:0;pointer-events:none;position:absolute;right:0;top:0"}),W2t=He("div",{target:"e1wq7y4k2"})({name:"ajymcs",styles:"align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;opacity:0;pointer-events:none;transition:opacity 120ms linear"}),N2t=He("div",{target:"e1wq7y4k1"})("background:",Ze.theme.foreground,";border-radius:",Ye.radiusSmall,";box-sizing:border-box;font-family:",ua("default.fontFamily"),";font-size:12px;color:",Ze.theme.foregroundInverted,";padding:4px 8px;position:relative;"),B2t=He(Sn,{target:"e1wq7y4k0"})("&&&{color:",Ze.theme.foregroundInverted,";display:block;font-size:13px;line-height:1.4;white-space:nowrap;}"),p4=4,L2t=p4*2.5;function P2t({label:e,position:t=af.corner,zIndex:n=1e3,...o},r){const s=!!e,i=t===af.bottom,c=t===af.corner;if(!s)return null;let l={opacity:s?1:void 0,zIndex:n},u={};return i&&(l={...l,position:"absolute",bottom:L2t*-1,left:"50%",transform:"translate(-50%, 0)"},u={transform:"translate(0, 100%)"}),c&&(l={...l,position:"absolute",top:p4,right:jt()?void 0:p4,left:jt()?p4:void 0}),a.jsx(W2t,{"aria-hidden":"true",className:"components-resizable-tooltip__tooltip-wrapper",ref:r,style:l,...o,children:a.jsx(N2t,{className:"components-resizable-tooltip__tooltip",style:u,children:a.jsx(B2t,{as:"span",children:e})})})}const j2t=x.forwardRef(P2t),I2t=()=>{};function D2t({axis:e,className:t,fadeTimeout:n=180,isVisible:o=!0,labelRef:r,onResize:s=I2t,position:i=af.bottom,showPx:c=!0,zIndex:l=1e3,...u},d){const{label:p,resizeListener:f}=R2t({axis:e,fadeTimeout:n,onResize:s,showPx:c,position:i});if(!o)return null;const b=oe("components-resize-tooltip",t);return a.jsxs(E2t,{"aria-hidden":"true",className:b,ref:d,...u,children:[f,a.jsx(j2t,{"aria-hidden":u["aria-hidden"],label:p,position:i,ref:r,zIndex:l})]})}const F2t=x.forwardRef(D2t),Eu="components-resizable-box__handle",HA="components-resizable-box__side-handle",UA="components-resizable-box__corner-handle",WZ={top:oe(Eu,HA,"components-resizable-box__handle-top"),right:oe(Eu,HA,"components-resizable-box__handle-right"),bottom:oe(Eu,HA,"components-resizable-box__handle-bottom"),left:oe(Eu,HA,"components-resizable-box__handle-left"),topLeft:oe(Eu,UA,"components-resizable-box__handle-top","components-resizable-box__handle-left"),topRight:oe(Eu,UA,"components-resizable-box__handle-top","components-resizable-box__handle-right"),bottomRight:oe(Eu,UA,"components-resizable-box__handle-bottom","components-resizable-box__handle-right"),bottomLeft:oe(Eu,UA,"components-resizable-box__handle-bottom","components-resizable-box__handle-left")},Wu={width:void 0,height:void 0,top:void 0,right:void 0,bottom:void 0,left:void 0},$2t={top:Wu,right:Wu,bottom:Wu,left:Wu,topLeft:Wu,topRight:Wu,bottomRight:Wu,bottomLeft:Wu};function V2t({className:e,children:t,showHandle:n=!0,__experimentalShowTooltip:o=!1,__experimentalTooltipProps:r={},...s},i){return a.jsxs(C2t,{className:oe("components-resizable-box__container",n&&"has-show-handle",e),handleComponent:Object.fromEntries(Object.keys(WZ).map(c=>[c,a.jsx("div",{tabIndex:-1},c)])),handleClasses:WZ,handleStyles:$2t,ref:i,...s,children:[t,o&&a.jsx(F2t,{...r})]})}const Ca=x.forwardRef(V2t),H2t=function(){const{MutationObserver:e}=window;if(!e||!document.body||!window.parent)return;function t(){const r=document.body.getBoundingClientRect();window.parent.postMessage({action:"resize",width:r.width,height:r.height},"*")}new e(t).observe(document.body,{attributes:!0,attributeOldValue:!1,characterData:!0,characterDataOldValue:!1,childList:!0,subtree:!0}),window.addEventListener("load",t,!0);function o(r){r.style&&["width","height","minHeight","maxHeight"].forEach(function(s){/^\\d+(vw|vh|svw|lvw|dvw|svh|lvh|dvh|vi|svi|lvi|dvi|vb|svb|lvb|dvb|vmin|svmin|lvmin|dvmin|vmax|svmax|lvmax|dvmax)$/.test(r.style[s])&&(r.style[s]="")})}Array.prototype.forEach.call(document.querySelectorAll("[style]"),o),Array.prototype.forEach.call(document.styleSheets,function(r){Array.prototype.forEach.call(r.cssRules||r.rules,o)}),document.body.style.position="absolute",document.body.style.width="100%",document.body.setAttribute("data-resizable-iframe-connected",""),t(),window.addEventListener("resize",t,!0)},U2t=` + `,";");function Ift({left:e="50%",top:t="50%",...n}){const o={left:e,top:t};return a.jsx(jft,{...n,className:"components-focal-point-picker__icon_container",style:o})}function Dft({bounds:e,...t}){return a.jsxs(Wft,{...t,className:"components-focal-point-picker__grid",style:{width:e.width,height:e.height},children:[a.jsx(MZ,{style:{top:"33%"}}),a.jsx(MZ,{style:{top:"66%"}}),a.jsx(zZ,{style:{left:"33%"}}),a.jsx(zZ,{style:{left:"66%"}})]})}function Fft({alt:e,autoPlay:t,src:n,onLoad:o,mediaRef:r,muted:s=!0,...i}){return n?xft(n)?a.jsx("video",{...i,autoPlay:t,className:"components-focal-point-picker__media components-focal-point-picker__media--video",loop:!0,muted:s,onLoadedData:o,ref:r,src:n}):a.jsx("img",{...i,alt:e,className:"components-focal-point-picker__media components-focal-point-picker__media--image",onLoad:o,ref:r,src:n}):a.jsx(kft,{className:"components-focal-point-picker__media components-focal-point-picker__media--placeholder",ref:r,...i})}const $ft=600;function l_({__nextHasNoMarginBottom:e,autoPlay:t=!0,className:n,help:o,label:r,onChange:s,onDrag:i,onDragEnd:c,onDragStart:l,resolvePoint:u,url:d,value:p={x:.5,y:.5},...f}){const[b,h]=x.useState(p),[g,z]=x.useState(!1),{startDrag:A,endDrag:_,isDragging:v}=x0e({onDragStart:$=>{k.current?.focus();const F=T($);F&&(l?.(F,$),h(F))},onDragMove:$=>{$.preventDefault();const F=T($);F&&(i?.(F,$),h(F))},onDragEnd:()=>{c?.(),s?.(b)}}),{x:M,y}=v?b:p,k=x.useRef(null),[S,C]=x.useState(Sx),R=x.useRef(()=>{if(!k.current)return;const{clientWidth:$,clientHeight:F}=k.current;C($>0&&F>0?{width:$,height:F}:{...Sx})});x.useEffect(()=>{const $=R.current;if(!k.current)return;const{defaultView:F}=k.current.ownerDocument;return F?.addEventListener("resize",$),()=>F?.removeEventListener("resize",$)},[]),UN(()=>void R.current(),[]);const T=({clientX:$,clientY:F,shiftKey:X})=>{if(!k.current)return;const{top:Z,left:V}=k.current.getBoundingClientRect();let ee=($-V)/S.width,te=(F-Z)/S.height;return X&&(ee=Math.round(ee/.1)*.1,te=Math.round(te/.1)*.1),E({x:ee,y:te})},E=$=>{var F;const X=(F=u?.($))!==null&&F!==void 0?F:$;X.x=Math.max(0,Math.min(X.x,1)),X.y=Math.max(0,Math.min(X.y,1));const Z=V=>Math.round(V*100)/100;return{x:Z(X.x),y:Z(X.y)}},B=$=>{const{code:F,shiftKey:X}=$;if(!["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"].includes(F))return;$.preventDefault();const Z={x:M,y},V=X?.1:.01,ee=F==="ArrowUp"||F==="ArrowLeft"?-1*V:V,te=F==="ArrowUp"||F==="ArrowDown"?"y":"x";Z[te]=Z[te]+ee,s?.(E(Z))},N={left:M!==void 0?M*S.width:.5*S.width,top:y!==void 0?y*S.height:.5*S.height},j=oe("components-focal-point-picker-control",n),P=`inspector-focal-point-picker-control-${vt(l_)}`;return DL(()=>{z(!0);const $=window.setTimeout(()=>{z(!1)},$ft);return()=>window.clearTimeout($)},[M,y]),a.jsxs(no,{...f,__nextHasNoMarginBottom:e,__associatedWPComponentName:"FocalPointPicker",label:r,id:P,help:o,className:j,children:[a.jsx(wft,{className:"components-focal-point-picker-wrapper",children:a.jsxs(_ft,{className:"components-focal-point-picker",onKeyDown:B,onMouseDown:A,onBlur:()=>{v&&_()},ref:k,role:"button",tabIndex:-1,children:[a.jsx(Dft,{bounds:S,showOverlay:g}),a.jsx(Fft,{alt:m("Media preview"),autoPlay:t,onLoad:R.current,src:d}),a.jsx(Ift,{...N,isDragging:v})]})}),a.jsx(Pft,{__nextHasNoMarginBottom:e,hasHelpText:!!o,point:{x:M,y},onChange:$=>{s?.(E($))}})]})}function Vft(e){return/^[\d\.]+(px|em|rem|vw|vh|%|svw|lvw|dvw|svh|lvh|dvh|vi|svi|lvi|dvi|vb|svb|lvb|dvb|vmin|svmin|lvmin|dvmin|vmax|svmax|lvmax|dvmax)?$/i.test(String(e))}function Jbe(e){const[t,...n]=e;if(!t)return null;const[,o]=yo(t.size);return n.every(s=>{const[,i]=yo(s.size);return i===o})?o:null}const Hft=He("fieldset",{target:"e8tqeku4"})({name:"k2q51s",styles:"border:0;margin:0;padding:0;display:contents"}),Uft=He(Ot,{target:"e8tqeku3"})("height:",Je(4),";"),Xft=He(Ce,{target:"e8tqeku2"})("margin-top:",Je(-1),";"),Gft=He(no.VisualLabel,{target:"e8tqeku1"})("display:flex;gap:",Je(1),";justify-content:flex-start;margin-bottom:0;"),Kft=He("span",{target:"e8tqeku0"})("color:",Ze.gray[700],";"),yZ={key:"default",name:m("Default"),value:void 0},Yft=e=>{var t;const{__next40pxDefaultSize:n,fontSizes:o,value:r,size:s,onChange:i}=e,c=!!Jbe(o),l=[yZ,...o.map(d=>{let p;if(c){const[f]=yo(d.size);f!==void 0&&(p=String(f))}else Vft(d.size)&&(p=String(d.size));return{key:d.slug,name:d.name||d.slug,value:d.size,hint:p}})],u=(t=l.find(d=>d.value===r))!==null&&t!==void 0?t:yZ;return a.jsx(ob,{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,className:"components-font-size-picker__select",label:m("Font size"),hideLabelFromVision:!0,describedBy:xe(m("Currently selected font size: %s"),u.name),options:l,value:u,showSelectedHint:!0,onChange:({selectedItem:d})=>{i(d.value)},size:s})},Zft=[m("S"),m("M"),m("L"),m("XL"),m("XXL")],e2e=[m("Small"),m("Medium"),m("Large"),m("Extra Large"),m("Extra Extra Large")],Qft=e=>{const{fontSizes:t,value:n,__next40pxDefaultSize:o,size:r,onChange:s}=e;return a.jsx(Do,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:o,__shouldNotWarnDeprecated36pxSize:!0,label:m("Font size"),hideLabelFromVision:!0,value:n,onChange:s,isBlock:!0,size:r,children:t.map((i,c)=>a.jsx(Kn,{value:i.size,label:Zft[c],"aria-label":i.name||e2e[c],showTooltip:!0},i.slug))})},Jft=["px","em","rem","vw","vh"],ebt=5,tbt=(e,t)=>{const{__next40pxDefaultSize:n=!1,fallbackFontSize:o,fontSizes:r=[],disableCustomFontSizes:s=!1,onChange:i,size:c="default",units:l=Jft,value:u,withSlider:d=!1,withReset:p=!0}=e,f=U1({availableUnits:l}),b=r.find(C=>C.size===u),h=!!u&&!b,[g,z]=x.useState(h);let A;!s&&g?A="custom":A=r.length>ebt?"select":"togglegroup";const _=x.useMemo(()=>{switch(A){case"custom":return m("Custom");case"togglegroup":if(b)return b.name||e2e[r.indexOf(b)];break;case"select":const C=Jbe(r);if(C)return`(${C})`;break}return""},[A,b,r]);if(r.length===0&&s)return null;const v=typeof u=="string"||typeof r[0]?.size=="string",[M,y]=yo(u,f),k=!!y&&["em","rem","vw","vh"].includes(y),S=u===void 0;return q1({componentName:"FontSizePicker",__next40pxDefaultSize:n,size:c}),a.jsxs(Hft,{ref:t,className:"components-font-size-picker",children:[a.jsx(qn,{as:"legend",children:m("Font size")}),a.jsx(t1,{children:a.jsxs(Uft,{className:"components-font-size-picker__header",children:[a.jsxs(Gft,{"aria-label":`${m("Size")} ${_||""}`,children:[m("Size"),_&&a.jsx(Kft,{className:"components-font-size-picker__header__hint",children:_})]}),!s&&a.jsx(Xft,{label:m(A==="custom"?"Use size preset":"Set custom size"),icon:HP,onClick:()=>z(!g),isPressed:A==="custom",size:"small"})]})}),a.jsxs("div",{children:[A==="select"&&a.jsx(Yft,{__next40pxDefaultSize:n,fontSizes:r,value:u,disableCustomFontSizes:s,size:c,onChange:C=>{C===void 0?i?.(void 0):i?.(v?C:Number(C),r.find(R=>R.size===C))},onSelectCustom:()=>z(!0)}),A==="togglegroup"&&a.jsx(Qft,{fontSizes:r,value:u,__next40pxDefaultSize:n,size:c,onChange:C=>{C===void 0?i?.(void 0):i?.(v?C:Number(C),r.find(R=>R.size===C))}}),A==="custom"&&a.jsxs(Yo,{className:"components-font-size-picker__custom-size-control",children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,label:m("Custom"),labelPosition:"top",hideLabelFromVision:!0,value:u,onChange:C=>{z(!0),i?.(C===void 0?void 0:v?C:parseInt(C,10))},size:c,units:v?f:[],min:0})}),d&&a.jsx(Tn,{isBlock:!0,children:a.jsx(t1,{marginX:2,marginBottom:0,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:n,__shouldNotWarnDeprecated36pxSize:!0,className:"components-font-size-picker__custom-input",label:m("Custom Size"),hideLabelFromVision:!0,value:M,initialPosition:o,withInputField:!1,onChange:C=>{z(!0),i?.(C===void 0?void 0:v?C+(y??"px"):C)},min:0,max:k?10:100,step:k?.1:1})})}),p&&a.jsx(Tn,{children:a.jsx(Ce,{disabled:S,accessibleWhenDisabled:!0,onClick:()=>{i?.(void 0)},variant:"secondary",__next40pxDefaultSize:!0,size:c==="__unstable-large"||e.__next40pxDefaultSize?"default":"small",children:m("Reset")})})]})]})]})},nbt=x.forwardRef(tbt);function Cx({accept:e,children:t,multiple:n=!1,onChange:o,onClick:r,render:s,...i}){const c=x.useRef(null),l=()=>{c.current?.click()};s||q1({componentName:"FormFileUpload",__next40pxDefaultSize:i.__next40pxDefaultSize,size:i.size});const u=s?s({openFileDialog:l}):a.jsx(Ce,{onClick:l,...i,children:t}),p=!(globalThis.window?.navigator.userAgent.includes("Safari")&&!globalThis.window?.navigator.userAgent.includes("Chrome")&&!globalThis.window?.navigator.userAgent.includes("Chromium"))&&e?.includes("image/*")?`${e}, image/heic, image/heif`:e;return a.jsxs("div",{className:"components-form-file-upload",children:[u,a.jsx("input",{type:"file",ref:c,multiple:n,style:{display:"none"},accept:p,onChange:o,onClick:r,"data-testid":"form-file-upload-input"})]})}const obt=()=>{};function rbt(e,t){const{className:n,checked:o,id:r,disabled:s,onChange:i=obt,...c}=e,l=oe("components-form-toggle",n,{"is-checked":o,"is-disabled":s});return a.jsxs("span",{className:l,children:[a.jsx("input",{className:"components-form-toggle__input",id:r,type:"checkbox",checked:o,onChange:i,disabled:s,...c,ref:t}),a.jsx("span",{className:"components-form-toggle__track"}),a.jsx("span",{className:"components-form-toggle__thumb"})]})}const sbt=x.forwardRef(rbt),ibt=()=>{};function t2e({value:e,status:t,title:n,displayTransform:o,isBorderless:r=!1,disabled:s=!1,onClickRemove:i=ibt,onMouseEnter:c,onMouseLeave:l,messages:u,termPosition:d,termsCount:p}){const f=vt(t2e),b=oe("components-form-token-field__token",{"is-error":t==="error","is-success":t==="success","is-validating":t==="validating","is-borderless":r,"is-disabled":s}),h=()=>i({value:e}),g=o(e),z=xe(m("%1$s (%2$s of %3$s)"),g,d,p);return a.jsxs("span",{className:b,onMouseEnter:c,onMouseLeave:l,title:n,children:[a.jsxs("span",{className:"components-form-token-field__token-text",id:`components-form-token-field__token-text-${f}`,children:[a.jsx(qn,{as:"span",children:z}),a.jsx("span",{"aria-hidden":"true",children:g})]}),a.jsx(Ce,{className:"components-form-token-field__remove-token",size:"small",icon:rp,onClick:s?void 0:h,disabled:s,label:u.remove,"aria-describedby":`components-form-token-field__token-text-${f}`})]})}const abt=({__next40pxDefaultSize:e,hasTokens:t})=>!e&&Xe("padding-top:",Je(t?1:.5),";padding-bottom:",Je(t?1:.5),";",""),cbt=He(Yo,{target:"ehq8nmi0"})("padding:7px;",P3," ",abt,";"),lbt=e=>e;function ip(e){const{autoCapitalize:t,autoComplete:n,maxLength:o,placeholder:r,label:s=m("Add item"),className:i,suggestions:c=[],maxSuggestions:l=100,value:u=[],displayTransform:d=lbt,saveTransform:p=Qe=>Qe.trim(),onChange:f=()=>{},onInputChange:b=()=>{},onFocus:h=void 0,isBorderless:g=!1,disabled:z=!1,tokenizeOnSpace:A=!1,messages:_={added:m("Item added."),removed:m("Item removed."),remove:m("Remove item"),__experimentalInvalid:m("Invalid item")},__experimentalRenderItem:v,__experimentalExpandOnFocus:M=!1,__experimentalValidateInput:y=()=>!0,__experimentalShowHowTo:k=!0,__next40pxDefaultSize:S=!1,__experimentalAutoSelectFirstMatch:C=!1,__nextHasNoMarginBottom:R=!1,tokenizeOnBlur:T=!1}=sp(e);R||Ke("Bottom margin styles for wp.components.FormTokenField",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."}),q1({componentName:"FormTokenField",size:void 0,__next40pxDefaultSize:S});const E=vt(ip),[B,N]=x.useState(""),[j,I]=x.useState(0),[P,$]=x.useState(!1),[F,X]=x.useState(!1),[Z,V]=x.useState(-1),[ee,te]=x.useState(!1),J=Fr(c),ue=Fr(u),ce=x.useRef(null),me=x.useRef(null),de=C1(Yt,500);x.useEffect(()=>{P&&!ye()&&Ae()},[P]),x.useEffect(()=>{const Qe=!ds(c,J||[]);(Qe||u!==ue)&&Ln(Qe)},[c,J,u,ue]),x.useEffect(()=>{Ln()},[B]),x.useEffect(()=>{Ln()},[C]),z&&P&&($(!1),N(""));function Ae(){ce.current?.focus()}function ye(){return ce.current===ce.current?.ownerDocument.activeElement}function Ne(Qe){ye()||Qe.target===me.current?($(!0),X(M||F)):$(!1),typeof h=="function"&&h(Qe)}function je(Qe){if(fn()&&y(B))$(!1),T&&fn()&&Re(B);else{if(N(""),I(0),$(!1),M){const xt=Qe.relatedTarget===me.current;X(xt)}else X(!1);V(-1),te(!1)}}function ie(Qe){let xt=!1;if(!Qe.defaultPrevented){switch(Qe.key){case"Backspace":xt=L(ae);break;case"Enter":xt=Y();break;case"ArrowLeft":xt=U();break;case"ArrowUp":xt=ve();break;case"ArrowRight":xt=ne();break;case"ArrowDown":xt=qe();break;case"Delete":xt=L(H);break;case"Space":A&&(xt=Y());break;case"Escape":xt=Pe(Qe);break}xt&&Qe.preventDefault()}}function we(Qe){let xt=!1;switch(Qe.key){case",":xt=rt();break}xt&&Qe.preventDefault()}function re(Qe){Qe.target===me.current&&P&&Qe.preventDefault()}function pe(Qe){be(Qe.value),Ae()}function ke(Qe){const xt=nt().indexOf(Qe);xt>=0&&(V(xt),te(!1))}function Se(Qe){Re(Qe)}function se(Qe){const xt=Qe.value,Gt=A?/[ ,\t]+/:/[,\t]+/,On=xt.split(Gt),$n=On[On.length-1]||"";On.length>1&&fe(On.slice(0,-1)),N($n),b($n)}function L(Qe){let xt=!1;return ye()&&yt()&&(Qe(),xt=!0),xt}function U(){let Qe=!1;return yt()&&(wt(),Qe=!0),Qe}function ne(){let Qe=!1;return yt()&&(Bt(),Qe=!0),Qe}function ve(){return V(Qe=>(Qe===0?nt(B,c,u,l,p).length:Qe)-1),te(!0),!0}function qe(){return V(Qe=>(Qe+1)%nt(B,c,u,l,p).length),te(!0),!0}function Pe(Qe){return Qe.target instanceof HTMLInputElement&&(N(Qe.target.value),X(!1),V(-1),te(!1)),!0}function rt(){return fn()&&Re(B),!0}function qt(Qe){I(u.length-Math.max(Qe,-1)-1)}function wt(){I(Qe=>Math.min(Qe+1,u.length))}function Bt(){I(Qe=>Math.max(Qe-1,0))}function ae(){const Qe=Ue()-1;Qe>-1&&be(u[Qe])}function H(){const Qe=Ue();Qe<u.length&&(be(u[Qe]),qt(Qe))}function Y(){let Qe=!1;const xt=Mt();return xt?(Re(xt),Qe=!0):fn()&&(Re(B),Qe=!0),Qe}function fe(Qe){const xt=[...new Set(Qe.map(p).filter(Boolean).filter(Gt=>!ot(Gt)))];if(xt.length>0){const Gt=[...u];Gt.splice(Ue(),0,...xt),f(Gt)}}function Re(Qe){if(!y(Qe)){Yt(_.__experimentalInvalid,"assertive");return}fe([Qe]),Yt(_.added,"assertive"),N(""),V(-1),te(!1),X(!M),P&&!T&&Ae()}function be(Qe){const xt=u.filter(Gt=>ze(Gt)!==ze(Qe));f(xt),Yt(_.removed,"assertive")}function ze(Qe){return typeof Qe=="object"?Qe.value:Qe}function nt(Qe=B,xt=c,Gt=u,On=l,$n=p){let Jn=$n(Qe);const pr=[],O0=[],o1=Gt.map(yr=>typeof yr=="string"?yr:yr.value);return Jn.length===0?xt=xt.filter(yr=>!o1.includes(yr)):(Jn=Jn.toLocaleLowerCase(),xt.forEach(yr=>{const Js=yr.toLocaleLowerCase().indexOf(Jn);o1.indexOf(yr)===-1&&(Js===0?pr.push(yr):Js>0&&O0.push(yr))}),xt=pr.concat(O0)),xt.slice(0,On)}function Mt(){if(Z!==-1)return nt()[Z]}function ot(Qe){return u.some(xt=>ze(Qe)===ze(xt))}function Ue(){return u.length-j}function yt(){return B.length===0}function fn(){return p(B).length>0}function Ln(Qe=!0){const xt=B.trim().length>1,Gt=nt(B),On=Gt.length>0,$n=ye()&&M;if(X($n||xt&&On),Qe&&(C&&xt&&On?(V(0),te(!0)):(V(-1),te(!1))),xt){const Jn=On?xe(Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",Gt.length),Gt.length):m("No results.");de(Jn,"assertive")}}function Mo(){const Qe=u.map(rr);return Qe.splice(Ue(),0,Jo()),Qe}function rr(Qe,xt,Gt){const On=ze(Qe),$n=typeof Qe!="string"?Qe.status:void 0,Jn=xt+1,pr=Gt.length;return a.jsx(Tn,{children:a.jsx(t2e,{value:On,status:$n,title:typeof Qe!="string"?Qe.title:void 0,displayTransform:d,onClickRemove:pe,isBorderless:typeof Qe!="string"&&Qe.isBorderless||g,onMouseEnter:typeof Qe!="string"?Qe.onMouseEnter:void 0,onMouseLeave:typeof Qe!="string"?Qe.onMouseLeave:void 0,disabled:$n!=="error"&&z,messages:_,termsCount:pr,termPosition:Jn})},"token-"+On)}function Jo(){const Qe={instanceId:E,autoCapitalize:t,autoComplete:n,placeholder:u.length===0?r:"",disabled:z,value:B,onBlur:je,isExpanded:F,selectedSuggestionIndex:Z};return a.jsx(Nfe,{...Qe,onChange:o&&u.length>=o?void 0:se,ref:ce},"input")}const To=oe(i,"components-form-token-field__input-container",{"is-active":P,"is-disabled":z});let Br={className:"components-form-token-field",tabIndex:-1};const Rt=nt();return z||(Br=Object.assign({},Br,{onKeyDown:J3(ie),onKeyPress:we,onFocus:Ne})),a.jsxs("div",{...Br,children:[s&&a.jsx(gh,{htmlFor:`components-form-token-input-${E}`,className:"components-form-token-field__label",children:s}),a.jsxs("div",{ref:me,className:To,tabIndex:-1,onMouseDown:re,onTouchStart:re,children:[a.jsx(cbt,{justify:"flex-start",align:"center",gap:1,wrap:!0,__next40pxDefaultSize:S,hasTokens:!!u.length,children:Mo()}),F&&a.jsx(Bfe,{instanceId:E,match:p(B),displayTransform:d,suggestions:Rt,selectedIndex:Z,scrollIntoView:ee,onHover:ke,onSelect:Se,__experimentalRenderItem:v})]}),!R&&a.jsx(t1,{marginBottom:2}),k&&a.jsx(vz,{id:`components-form-token-suggestions-howto-${E}`,className:"components-form-token-field__help",__nextHasNoMarginBottom:R,children:m(A?"Separate with commas, spaces, or the Enter key.":"Separate with commas or the Enter key.")})]})}function Cn(e){const{children:t,className:n="",label:o,hideSeparator:r}=e,s=vt(Cn);if(!x.Children.count(t))return null;const i=`components-menu-group-label-${s}`,c=oe(n,"components-menu-group",{"has-hidden-separator":r});return a.jsxs("div",{className:c,children:[o&&a.jsx("div",{className:"components-menu-group__label",id:i,"aria-hidden":"true",children:o}),a.jsx("div",{role:"group","aria-labelledby":o?i:void 0,children:t})]})}function ubt(e,t){let{children:n,info:o,className:r,icon:s,iconPosition:i="right",shortcut:c,isSelected:l,role:u="menuitem",suffix:d,...p}=e;return r=oe("components-menu-item__button",r),o&&(n=a.jsxs("span",{className:"components-menu-item__info-wrapper",children:[a.jsx("span",{className:"components-menu-item__item",children:n}),a.jsx("span",{className:"components-menu-item__info",children:o})]})),s&&typeof s!="string"&&(s=x.cloneElement(s,{className:oe("components-menu-items__item-icon",{"has-icon-right":i==="right"})})),a.jsxs(Ce,{__next40pxDefaultSize:!0,ref:t,"aria-checked":u==="menuitemcheckbox"||u==="menuitemradio"?l:void 0,role:u,icon:i==="left"?s:void 0,className:r,...p,children:[a.jsx("span",{className:"components-menu-item__item",children:n}),!d&&a.jsx(ele,{className:"components-menu-item__shortcut",shortcut:c}),!d&&s&&i==="right"&&a.jsx(qo,{icon:s}),d]})}const Ct=x.forwardRef(ubt),dbt=()=>{};function kf({choices:e=[],onHover:t=dbt,onSelect:n,value:o}){return a.jsx(a.Fragment,{children:e.map(r=>{const s=o===r.value;return a.jsx(Ct,{role:"menuitemradio",disabled:r.disabled,icon:s?M0:null,info:r.info,isSelected:s,shortcut:r.shortcut,className:"components-menu-items-choice",onClick:()=>{s||n(r.value)},onMouseEnter:()=>t(r.value),onMouseLeave:()=>t(null),"aria-label":r["aria-label"],children:r.label},r.value)})})}const pbt=Or(e=>t=>a.jsx(e,{...t,speak:Yt,debouncedSpeak:C1(Yt,500)}),"withSpokenMessages"),fbt=({size:e})=>Je(e==="compact"?1:2),bbt=He("div",{target:"effl84m1"})("display:flex;padding-inline-end:",fbt,";svg{fill:currentColor;}"),hbt=He(N1,{target:"effl84m0"})("input[type='search']{&::-webkit-search-decoration,&::-webkit-search-cancel-button,&::-webkit-search-results-button,&::-webkit-search-results-decoration{-webkit-appearance:none;}}&:not( :focus-within ){--wp-components-color-background:",Ze.theme.gray[100],";}");function mbt({searchRef:e,value:t,onChange:n,onClose:o}){if(!o&&!t)return a.jsx(wn,{icon:Dw});o&&Ke("`onClose` prop in wp.components.SearchControl",{since:"6.8"});const r=()=>{n(""),e.current?.focus()};return a.jsx(Ce,{size:"small",icon:rp,label:m(o?"Close search":"Reset search"),onClick:o??r})}function gbt({__nextHasNoMarginBottom:e=!1,className:t,onChange:n,value:o,label:r=m("Search"),placeholder:s=m("Search"),hideLabelFromVision:i=!0,onClose:c,size:l="default",...u},d){const{disabled:p,...f}=u,b=x.useRef(null),h=vt(su,"components-search-control"),g=x.useMemo(()=>({BaseControl:{_overrides:{__nextHasNoMarginBottom:e},__associatedWPComponentName:"SearchControl"},InputBase:{isBorderless:!0}}),[e]);return a.jsx(j3,{value:g,children:a.jsx(hbt,{__next40pxDefaultSize:!0,id:h,hideLabelFromVision:i,label:r,ref:xn([b,d]),type:"search",size:l,className:oe("components-search-control",t),onChange:z=>n(z??""),autoComplete:"off",placeholder:s,value:o??"",suffix:a.jsx(bbt,{size:l,children:a.jsx(mbt,{searchRef:b,value:o,onChange:n,onClose:c})}),...f})})}const su=x.forwardRef(gbt);function Mbt(e){for(var t=[],n=0;n<e.length;){var o=e[n];if(o==="*"||o==="+"||o==="?"){t.push({type:"MODIFIER",index:n,value:e[n++]});continue}if(o==="\\"){t.push({type:"ESCAPED_CHAR",index:n++,value:e[n++]});continue}if(o==="{"){t.push({type:"OPEN",index:n,value:e[n++]});continue}if(o==="}"){t.push({type:"CLOSE",index:n,value:e[n++]});continue}if(o===":"){for(var r="",s=n+1;s<e.length;){var i=e.charCodeAt(s);if(i>=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122||i===95){r+=e[s++];continue}break}if(!r)throw new TypeError("Missing parameter name at ".concat(n));t.push({type:"NAME",index:n,value:r}),n=s;continue}if(o==="("){var c=1,l="",s=n+1;if(e[s]==="?")throw new TypeError('Pattern cannot start with "?" at '.concat(s));for(;s<e.length;){if(e[s]==="\\"){l+=e[s++]+e[s++];continue}if(e[s]===")"){if(c--,c===0){s++;break}}else if(e[s]==="("&&(c++,e[s+1]!=="?"))throw new TypeError("Capturing groups are not allowed at ".concat(s));l+=e[s++]}if(c)throw new TypeError("Unbalanced pattern at ".concat(n));if(!l)throw new TypeError("Missing pattern at ".concat(n));t.push({type:"PATTERN",index:n,value:l}),n=s;continue}t.push({type:"CHAR",index:n,value:e[n++]})}return t.push({type:"END",index:n,value:""}),t}function zbt(e,t){t===void 0&&(t={});for(var n=Mbt(e),o=t.prefixes,r=o===void 0?"./":o,s=t.delimiter,i=s===void 0?"/#?":s,c=[],l=0,u=0,d="",p=function(R){if(u<n.length&&n[u].type===R)return n[u++].value},f=function(R){var T=p(R);if(T!==void 0)return T;var E=n[u],B=E.type,N=E.index;throw new TypeError("Unexpected ".concat(B," at ").concat(N,", expected ").concat(R))},b=function(){for(var R="",T;T=p("CHAR")||p("ESCAPED_CHAR");)R+=T;return R},h=function(R){for(var T=0,E=i;T<E.length;T++){var B=E[T];if(R.indexOf(B)>-1)return!0}return!1},g=function(R){var T=c[c.length-1],E=R||(T&&typeof T=="string"?T:"");if(T&&!E)throw new TypeError('Must have text between two parameters, missing text after "'.concat(T.name,'"'));return!E||h(E)?"[^".concat(Xu(i),"]+?"):"(?:(?!".concat(Xu(E),")[^").concat(Xu(i),"])+?")};u<n.length;){var z=p("CHAR"),A=p("NAME"),_=p("PATTERN");if(A||_){var v=z||"";r.indexOf(v)===-1&&(d+=v,v=""),d&&(c.push(d),d=""),c.push({name:A||l++,prefix:v,suffix:"",pattern:_||g(v),modifier:p("MODIFIER")||""});continue}var M=z||p("ESCAPED_CHAR");if(M){d+=M;continue}d&&(c.push(d),d="");var y=p("OPEN");if(y){var v=b(),k=p("NAME")||"",S=p("PATTERN")||"",C=b();f("CLOSE"),c.push({name:k||(S?l++:""),pattern:k&&!S?g(v):S,prefix:v,suffix:C,modifier:p("MODIFIER")||""});continue}f("END")}return c}function Obt(e,t){var n=[],o=o2e(e,n,t);return ybt(o,n,t)}function ybt(e,t,n){n===void 0&&(n={});var o=n.decode,r=o===void 0?function(s){return s}:o;return function(s){var i=e.exec(s);if(!i)return!1;for(var c=i[0],l=i.index,u=Object.create(null),d=function(f){if(i[f]===void 0)return"continue";var b=t[f-1];b.modifier==="*"||b.modifier==="+"?u[b.name]=i[f].split(b.prefix+b.suffix).map(function(h){return r(h,b)}):u[b.name]=r(i[f],b)},p=1;p<i.length;p++)d(p);return{path:c,index:l,params:u}}}function Xu(e){return e.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1")}function n2e(e){return e&&e.sensitive?"":"i"}function Abt(e,t){if(!t)return e;for(var n=/\((?:\?<(.*?)>)?(?!\?)/g,o=0,r=n.exec(e.source);r;)t.push({name:r[1]||o++,prefix:"",suffix:"",modifier:"",pattern:""}),r=n.exec(e.source);return e}function vbt(e,t,n){var o=e.map(function(r){return o2e(r,t,n).source});return new RegExp("(?:".concat(o.join("|"),")"),n2e(n))}function xbt(e,t,n){return wbt(zbt(e,n),t,n)}function wbt(e,t,n){n===void 0&&(n={});for(var o=n.strict,r=o===void 0?!1:o,s=n.start,i=s===void 0?!0:s,c=n.end,l=c===void 0?!0:c,u=n.encode,d=u===void 0?function(T){return T}:u,p=n.delimiter,f=p===void 0?"/#?":p,b=n.endsWith,h=b===void 0?"":b,g="[".concat(Xu(h),"]|$"),z="[".concat(Xu(f),"]"),A=i?"^":"",_=0,v=e;_<v.length;_++){var M=v[_];if(typeof M=="string")A+=Xu(d(M));else{var y=Xu(d(M.prefix)),k=Xu(d(M.suffix));if(M.pattern)if(t&&t.push(M),y||k)if(M.modifier==="+"||M.modifier==="*"){var S=M.modifier==="*"?"?":"";A+="(?:".concat(y,"((?:").concat(M.pattern,")(?:").concat(k).concat(y,"(?:").concat(M.pattern,"))*)").concat(k,")").concat(S)}else A+="(?:".concat(y,"(").concat(M.pattern,")").concat(k,")").concat(M.modifier);else{if(M.modifier==="+"||M.modifier==="*")throw new TypeError('Can not repeat "'.concat(M.name,'" without a prefix and suffix'));A+="(".concat(M.pattern,")").concat(M.modifier)}else A+="(?:".concat(y).concat(k,")").concat(M.modifier)}}if(l)r||(A+="".concat(z,"?")),A+=n.endsWith?"(?=".concat(g,")"):"$";else{var C=e[e.length-1],R=typeof C=="string"?z.indexOf(C[C.length-1])>-1:C===void 0;r||(A+="(?:".concat(z,"(?=").concat(g,"))?")),R||(A+="(?=".concat(z,"|").concat(g,")"))}return new RegExp(A,n2e(n))}function o2e(e,t,n){return e instanceof RegExp?Abt(e,t):Array.isArray(e)?vbt(e,t,n):xbt(e,t,n)}function r2e(e,t){return Obt(t,{decode:decodeURIComponent})(e)}function _bt(e,t){for(const n of t){const o=r2e(e,n.path);if(o)return{params:o.params,id:n.id}}}function kbt(e,t){if(!e.startsWith("/"))return;const n=e.split("/");let o;for(;n.length>1&&o===void 0;){n.pop();const r=n.join("/")===""?"/":n.join("/");t.find(s=>r2e(r,s.path)!==!1)&&(o=r)}return o}const Sbt={location:{},goTo:()=>{},goBack:()=>{},goToParent:()=>{},addScreen:()=>{},removeScreen:()=>{},params:{}},Pj=x.createContext(Sbt),Cbt={name:"1br0vvk",styles:"position:relative;overflow-x:clip;contain:layout;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;align-items:start"},AZ=tp({from:{opacity:0}}),vZ=tp({to:{opacity:0}}),s2e=tp({from:{transform:"translateX(100px)"}}),i2e=tp({to:{transform:"translateX(-80px)"}}),a2e=tp({from:{transform:"translateX(-100px)"}}),c2e=tp({to:{transform:"translateX(80px)"}}),u1={DURATION:70,EASING:"linear",DELAY:{IN:70,OUT:40}},Ha={DURATION:300,EASING:"cubic-bezier(0.33, 0, 0, 1)"},xZ={IN:Math.max(u1.DURATION+u1.DELAY.IN,Ha.DURATION),OUT:Math.max(u1.DURATION+u1.DELAY.OUT,Ha.DURATION)},l2e={end:{in:s2e.name,out:i2e.name},start:{in:a2e.name,out:c2e.name}},qbt={end:{in:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.IN,"ms both ",AZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",s2e,";",""),out:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.OUT,"ms both ",vZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",i2e,";","")},start:{in:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.IN,"ms both ",AZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",a2e,";",""),out:Xe(u1.DURATION,"ms ",u1.EASING," ",u1.DELAY.OUT,"ms both ",vZ,",",Ha.DURATION,"ms ",Ha.EASING," both ",c2e,";","")}},Rbt=Xe("z-index:1;&[data-animation-type='out']{z-index:0;}@media not ( prefers-reduced-motion ){&:not( [data-skip-animation] ){",["start","end"].map(e=>["in","out"].map(t=>Xe("&[data-animation-direction='",e,"'][data-animation-type='",t,"']{animation:",qbt[e][t],";}",""))),";}}",""),Tbt={name:"14di7zd",styles:"overflow-x:auto;max-height:100%;box-sizing:border-box;position:relative;grid-column:1/-1;grid-row:1/-1"};function Ebt({screens:e},t){return e.some(n=>n.path===t.path)?(globalThis.SCRIPT_DEBUG===!0&&zn(`Navigator: a screen with path ${t.path} already exists. +The screen with id ${t.id} will not be added.`),e):[...e,t]}function Wbt({screens:e},t){return e.filter(n=>n.id!==t.id)}function u2e(e,t,n={}){var o;const{focusSelectors:r}=e,s={...e.currentLocation},{isBack:i=!1,skipFocus:c=!1,replace:l,focusTargetSelector:u,...d}=n;if(s.path===t)return{currentLocation:s,focusSelectors:r};let p;function f(){var h;return p=(h=p)!==null&&h!==void 0?h:new Map(e.focusSelectors),p}u&&s.path&&f().set(s.path,u);let b;return r.get(t)&&(i&&(b=r.get(t)),f().delete(t)),{currentLocation:{...d,isInitial:!1,path:t,isBack:i,hasRestoredFocus:!1,focusTargetSelector:b,skipFocus:c},focusSelectors:(o=p)!==null&&o!==void 0?o:r}}function Nbt(e,t={}){const{screens:n,focusSelectors:o}=e,r={...e.currentLocation},s=r.path;if(s===void 0)return{currentLocation:r,focusSelectors:o};const i=kbt(s,n);return i===void 0?{currentLocation:r,focusSelectors:o}:u2e(e,i,{...t,isBack:!0})}function Bbt(e,t){let{screens:n,currentLocation:o,matchedPath:r,focusSelectors:s,...i}=e;switch(t.type){case"add":n=Ebt(e,t.screen);break;case"remove":n=Wbt(e,t.screen);break;case"goto":({currentLocation:o,focusSelectors:s}=u2e(e,t.path,t.options));break;case"gotoparent":({currentLocation:o,focusSelectors:s}=Nbt(e,t.options));break}if(n===e.screens&&o===e.currentLocation)return e;const c=o.path;return r=c!==void 0?_bt(c,n):void 0,r&&e.matchedPath&&r.id===e.matchedPath.id&&ds(r.params,e.matchedPath.params)&&(r=e.matchedPath),{...i,screens:n,currentLocation:o,matchedPath:r,focusSelectors:s}}function Lbt(e,t){const{initialPath:n,children:o,className:r,...s}=vn(e,"Navigator"),[i,c]=x.useReducer(Bbt,n,h=>({screens:[],currentLocation:{path:h,isInitial:!0},matchedPath:void 0,focusSelectors:new Map,initialPath:n})),l=x.useMemo(()=>({goBack:h=>c({type:"gotoparent",options:h}),goTo:(h,g)=>c({type:"goto",path:h,options:g}),goToParent:h=>{Ke("wp.components.useNavigator().goToParent",{since:"6.7",alternative:"wp.components.useNavigator().goBack"}),c({type:"gotoparent",options:h})},addScreen:h=>c({type:"add",screen:h}),removeScreen:h=>c({type:"remove",screen:h})}),[]),{currentLocation:u,matchedPath:d}=i,p=x.useMemo(()=>{var h;return{location:u,params:(h=d?.params)!==null&&h!==void 0?h:{},match:d?.id,...l}},[u,d,l]),f=ro(),b=x.useMemo(()=>f(Cbt,r),[r,f]);return a.jsx(mo,{ref:t,className:b,...s,children:a.jsx(Pj.Provider,{value:p,children:o})})}const Pbt=Rn(Lbt,"Navigator"),wZ=1.2,jbt=(e,t,n)=>t==="ANIMATING_IN"&&n===l2e[e].in,Ibt=(e,t,n)=>t==="ANIMATING_OUT"&&n===l2e[e].out;function Dbt({isMatch:e,skipAnimation:t,isBack:n,onAnimationEnd:o}){const r=jt(),s=$1(),[i,c]=x.useState("INITIAL"),l=i!=="ANIMATING_IN"&&i!=="IN"&&e,u=i!=="ANIMATING_OUT"&&i!=="OUT"&&!e;x.useLayoutEffect(()=>{l?c(t||s?"IN":"ANIMATING_IN"):u&&c(t||s?"OUT":"ANIMATING_OUT")},[l,u,t,s]);const d=r&&n||!r&&!n?"end":"start",p=i==="ANIMATING_IN",f=i==="ANIMATING_OUT";let b;p?b="in":f&&(b="out");const h=x.useCallback(g=>{o?.(g),Ibt(d,i,g.animationName)?c("OUT"):jbt(d,i,g.animationName)&&c("IN")},[o,i,d]);return x.useEffect(()=>{let g;return f?g=window.setTimeout(()=>{c("OUT"),g=void 0},xZ.OUT*wZ):p&&(g=window.setTimeout(()=>{c("IN"),g=void 0},xZ.IN*wZ)),()=>{g&&(window.clearTimeout(g),g=void 0)}},[f,p]),{animationStyles:Rbt,shouldRenderScreen:e||i==="IN"||i==="ANIMATING_OUT",screenProps:{onAnimationEnd:h,"data-animation-direction":d,"data-animation-type":b,"data-skip-animation":t||void 0}}}function Fbt(e,t){/^\//.test(e.path)||globalThis.SCRIPT_DEBUG===!0&&zn("wp.components.Navigator.Screen: the `path` should follow a URL-like scheme; it should start with and be separated by the `/` character.");const n=x.useId(),{children:o,className:r,path:s,onAnimationEnd:i,...c}=vn(e,"Navigator.Screen"),{location:l,match:u,addScreen:d,removeScreen:p}=x.useContext(Pj),{isInitial:f,isBack:b,focusTargetSelector:h,skipFocus:g}=l,z=u===n,A=x.useRef(null),_=!!f&&!b;x.useEffect(()=>{const T={id:n,path:A5(s)};return d(T),()=>p(T)},[n,s,d,p]);const{animationStyles:v,shouldRenderScreen:M,screenProps:y}=Dbt({isMatch:z,isBack:b,onAnimationEnd:i,skipAnimation:_}),k=ro(),S=x.useMemo(()=>k(Tbt,v,r),[r,k,v]),C=x.useRef(l);x.useEffect(()=>{C.current=l},[l]),x.useEffect(()=>{const T=A.current;if(_||!z||!T||C.current.hasRestoredFocus||g)return;const E=T.ownerDocument.activeElement;if(T.contains(E))return;let B=null;if(b&&h&&(B=T.querySelector(h)),!B){const[N]=Xr.tabbable.find(T);B=N??T}C.current.hasRestoredFocus=!0,B.focus()},[_,z,b,h,g]);const R=xn([t,A]);return M?a.jsx(mo,{ref:R,className:S,...y,...c,children:o}):null}const $bt=Rn(Fbt,"Navigator.Screen");function d2e(){const{location:e,params:t,goTo:n,goBack:o,goToParent:r}=x.useContext(Pj);return{location:e,goTo:n,goBack:o,goToParent:r,params:t}}const Vbt=(e,t)=>`[${e}="${t}"]`;function Hbt(e){const{path:t,onClick:n,as:o=Ce,attributeName:r="id",...s}=vn(e,"Navigator.Button"),i=A5(t),{goTo:c}=d2e(),l=x.useCallback(u=>{u.preventDefault(),c(i,{focusTargetSelector:Vbt(r,i)}),n?.(u)},[c,n,r,i]);return{as:o,onClick:l,...s,[r]:i}}function Ubt(e,t){const n=Hbt(e);return a.jsx(mo,{ref:t,...n})}const Xbt=Rn(Ubt,"Navigator.Button");function Gbt(e){const{onClick:t,as:n=Ce,...o}=vn(e,"Navigator.BackButton"),{goBack:r}=d2e(),s=x.useCallback(i=>{i.preventDefault(),r(),t?.(i)},[r,t]);return{as:n,onClick:s,...o}}function Kbt(e,t){const n=Gbt(e);return a.jsx(mo,{ref:t,...n})}const Ybt=Rn(Kbt,"Navigator.BackButton"),ic=Object.assign(Pbt,{Screen:Object.assign($bt,{displayName:"Navigator.Screen"}),Button:Object.assign(Xbt,{displayName:"Navigator.Button"}),BackButton:Object.assign(Ybt,{displayName:"Navigator.BackButton"})}),_Z=()=>{};function Zbt(e,t){const n=typeof e=="string"?e:M1(e);x.useEffect(()=>{n&&Yt(n,t)},[n,t])}function Qbt(e){switch(e){case"success":case"warning":case"info":return"polite";default:return"assertive"}}function Jbt(e){switch(e){case"warning":return m("Warning notice");case"info":return m("Information notice");case"error":return m("Error notice");default:return m("Notice")}}function L1({className:e,status:t="info",children:n,spokenMessage:o=n,onRemove:r=_Z,isDismissible:s=!0,actions:i=[],politeness:c=Qbt(t),__unstableHTML:l,onDismiss:u=_Z}){Zbt(o,c);const d=oe(e,"components-notice","is-"+t,{"is-dismissible":s});l&&typeof n=="string"&&(n=a.jsx(i0,{children:n}));const p=()=>{u(),r()};return a.jsxs("div",{className:d,children:[a.jsx(qn,{children:Jbt(t)}),a.jsxs("div",{className:"components-notice__content",children:[n,a.jsx("div",{className:"components-notice__actions",children:i.map(({className:f,label:b,isPrimary:h,variant:g,noDefaultClasses:z=!1,onClick:A,url:_},v)=>{let M=g;return g!=="primary"&&!z&&(M=_?"link":"secondary"),typeof M>"u"&&h&&(M="primary"),a.jsx(Ce,{__next40pxDefaultSize:!0,href:_,variant:M,onClick:_?void 0:A,className:oe("components-notice__action",f),children:b},v)})})]}),s&&a.jsx(Ce,{size:"small",className:"components-notice__dismiss",icon:im,label:m("Close"),onClick:p})]})}const e2t=()=>{};function cW({notices:e,onRemove:t=e2t,className:n,children:o}){const r=s=>()=>t(s);return n=oe("components-notice-list",n),a.jsxs("div",{className:n,children:[o,[...e].reverse().map(s=>{const{content:i,...c}=s;return x.createElement(L1,{...c,key:s.id,onRemove:r(s.id)},s.content)})]})}function t2t({label:e,children:t}){return a.jsxs("div",{className:"components-panel__header",children:[e&&a.jsx("h2",{children:e}),t]})}function n2t({header:e,className:t,children:n},o){const r=oe(t,"components-panel");return a.jsxs("div",{className:r,ref:o,children:[e&&a.jsx(t2t,{label:e}),n]})}const o2t=x.forwardRef(n2t),r2t=()=>{};function s2t(e,t){const{buttonProps:n={},children:o,className:r,icon:s,initialOpen:i,onToggle:c=r2t,opened:l,title:u,scrollAfterOpen:d=!0}=e,[p,f]=zw(l,{initial:i===void 0?!0:i,fallback:!1}),b=x.useRef(null),h=$1()?"auto":"smooth",g=_=>{_.preventDefault();const v=!p;f(v),c(v)},z=x.useRef();z.current=d,DL(()=>{p&&z.current&&b.current?.scrollIntoView&&b.current.scrollIntoView({inline:"nearest",block:"nearest",behavior:h})},[p,h]);const A=oe("components-panel__body",r,{"is-opened":p});return a.jsxs("div",{className:A,ref:xn([b,t]),children:[a.jsx(i2t,{icon:s,isOpened:!!p,onClick:g,title:u,...n}),typeof o=="function"?o({opened:!!p}):p&&o]})}const i2t=x.forwardRef(({isOpened:e,icon:t,title:n,...o},r)=>n?a.jsx("h2",{className:"components-panel__body-title",children:a.jsxs(Ce,{__next40pxDefaultSize:!0,className:"components-panel__body-toggle","aria-expanded":e,ref:r,...o,children:[a.jsx("span",{"aria-hidden":"true",children:a.jsx(qo,{className:"components-panel__arrow",icon:e?Ww:tu})}),n,t&&a.jsx(qo,{icon:t,className:"components-panel__icon",size:20})]})}):null),Qt=x.forwardRef(s2t);function a2t({className:e,children:t},n){return a.jsx("div",{className:oe("components-panel__row",e),ref:n,children:t})}const u_=x.forwardRef(a2t),c2t=a.jsx(ge,{className:"components-placeholder__illustration",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 60 60",preserveAspectRatio:"none",children:a.jsx(he,{vectorEffect:"non-scaling-stroke",d:"M60 60 0 0"})});function vo(e){const{icon:t,children:n,label:o,instructions:r,className:s,notices:i,preview:c,isColumnLayout:l,withIllustration:u,...d}=e,[p,{width:f}]=js();let b;typeof f=="number"&&(b={"is-large":f>=480,"is-medium":f>=160&&f<480,"is-small":f<160});const h=oe("components-placeholder",s,b,u?"has-illustration":null),g=oe("components-placeholder__fieldset",{"is-column-layout":l});return x.useEffect(()=>{r&&Yt(r)},[r]),a.jsxs("div",{...d,className:h,children:[u?c2t:null,p,i,c&&a.jsx("div",{className:"components-placeholder__preview",children:c}),a.jsxs("div",{className:"components-placeholder__label",children:[a.jsx(qo,{icon:t}),o]}),!!r&&a.jsx("div",{className:"components-placeholder__instructions",children:r}),a.jsx("div",{className:g,children:n})]})}const l2t=e=>e.every(t=>t.parent!==null);function p2e(e){const t=e.map(r=>({children:[],parent:null,...r,id:String(r.id)}));if(!l2t(t))return t;const n=t.reduce((r,s)=>{const{parent:i}=s;return r[i]||(r[i]=[]),r[i].push(s),r},{}),o=r=>r.map(s=>{const i=n[s.id];return{...s,children:i&&i.length?o(i):[]}});return o(n[0]||[])}const u2t={BaseControl:{_overrides:{__associatedWPComponentName:"TreeSelect"}}};function f2e(e,t=0){return e.flatMap(n=>[{value:n.id,label:" ".repeat(t*3)+Lt(n.name)},...f2e(n.children||[],t+1)])}function jj(e){const{label:t,noOptionLabel:n,onChange:o,selectedId:r,tree:s=[],...i}=sp(e),c=x.useMemo(()=>[n&&{value:"",label:n},...f2e(s)].filter(l=>!!l),[n,s]);return q1({componentName:"TreeSelect",size:i.size,__next40pxDefaultSize:i.__next40pxDefaultSize}),a.jsx(j3,{value:u2t,children:a.jsx(Pn,{__shouldNotWarnDeprecated36pxSize:!0,label:t,options:c,onChange:o,value:r,...i})})}function d2t({__next40pxDefaultSize:e,label:t,noOptionLabel:n,authorList:o,selectedAuthorId:r,onChange:s}){if(!o)return null;const i=p2e(o);return a.jsx(jj,{label:t,noOptionLabel:n,onChange:s,tree:i,selectedId:r!==void 0?String(r):void 0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:e})}function p2t({__next40pxDefaultSize:e,label:t,noOptionLabel:n,categoriesList:o,selectedCategoryId:r,onChange:s,...i}){const c=x.useMemo(()=>p2e(o),[o]);return a.jsx(jj,{label:t,noOptionLabel:n,onChange:s,tree:c,selectedId:r!==void 0?String(r):void 0,...i,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:e})}const f2t=1,b2t=100,h2t=20;function m2t(e){return"categoriesList"in e}function g2t(e){return"categorySuggestions"in e}function M2t({authorList:e,selectedAuthorId:t,numberOfItems:n,order:o,orderBy:r,maxItems:s=b2t,minItems:i=f2t,onAuthorChange:c,onNumberOfItemsChange:l,onOrderChange:u,onOrderByChange:d,...p}){return a.jsx(dt,{spacing:"4",className:"components-query-controls",children:[u&&d&&a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Order by"),value:r===void 0||o===void 0?void 0:`${r}/${o}`,options:[{label:m("Newest to oldest"),value:"date/desc"},{label:m("Oldest to newest"),value:"date/asc"},{label:m("A → Z"),value:"title/asc"},{label:m("Z → A"),value:"title/desc"}],onChange:f=>{if(typeof f!="string")return;const[b,h]=f.split("/");h!==o&&u(h),b!==r&&d(b)}},"query-controls-order-select"),m2t(p)&&p.categoriesList&&p.onCategoryChange&&a.jsx(p2t,{__next40pxDefaultSize:!0,categoriesList:p.categoriesList,label:m("Category"),noOptionLabel:We("All","categories"),selectedCategoryId:p.selectedCategoryId,onChange:p.onCategoryChange},"query-controls-category-select"),g2t(p)&&p.categorySuggestions&&p.onCategoryChange&&a.jsx(ip,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Categories"),value:p.selectedCategories&&p.selectedCategories.map(f=>({id:f.id,value:f.name||f.value})),suggestions:Object.keys(p.categorySuggestions),onChange:p.onCategoryChange,maxSuggestions:h2t},"query-controls-categories-select"),c&&a.jsx(d2t,{__next40pxDefaultSize:!0,authorList:e,label:m("Author"),noOptionLabel:We("All","authors"),selectedAuthorId:t,onChange:c},"query-controls-author-select"),l&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of items"),value:n,onChange:l,min:i,max:s,required:!0},"query-controls-range-control")]})}function kZ(e,t){return`${e}-${t}-option-description`}function eq(e,t){return`${e}-${t}`}function SZ(e){return`${e}__help`}function sb(e){const{label:t,className:n,selected:o,help:r,onChange:s,hideLabelFromVision:i,options:c=[],id:l,...u}=e,d=vt(sb,"inspector-radio-control",l),p=f=>s(f.target.value);return c?.length?a.jsxs("fieldset",{id:d,className:oe(n,"components-radio-control"),"aria-describedby":r?SZ(d):void 0,children:[i?a.jsx(qn,{as:"legend",children:t}):a.jsx(no.VisualLabel,{as:"legend",children:t}),a.jsx(dt,{spacing:3,className:oe("components-radio-control__group-wrapper",{"has-help":!!r}),children:c.map((f,b)=>a.jsxs("div",{className:"components-radio-control__option",children:[a.jsx("input",{id:eq(d,b),className:"components-radio-control__input",type:"radio",name:d,value:f.value,onChange:p,checked:f.value===o,"aria-describedby":f.description?kZ(d,b):void 0,...u}),a.jsx("label",{className:"components-radio-control__label",htmlFor:eq(d,b),children:f.label}),f.description?a.jsx(vz,{__nextHasNoMarginBottom:!0,id:kZ(d,b),className:"components-radio-control__option-description",children:f.description}):null]},eq(d,b)))}),!!r&&a.jsx(vz,{__nextHasNoMarginBottom:!0,id:SZ(d),className:"components-base-control__help",children:r})]}):null}var z2t=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,r){o.__proto__=r}||function(o,r){for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&(o[s]=r[s])},e(t,n)};return function(t,n){e(t,n);function o(){this.constructor=t}t.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}(),n0=function(){return n0=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++){t=arguments[n];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},n0.apply(this,arguments)},CZ={width:"100%",height:"10px",top:"0px",left:"0px",cursor:"row-resize"},qZ={width:"10px",height:"100%",top:"0px",left:"0px",cursor:"col-resize"},IA={width:"20px",height:"20px",position:"absolute"},O2t={top:n0(n0({},CZ),{top:"-5px"}),right:n0(n0({},qZ),{left:void 0,right:"-5px"}),bottom:n0(n0({},CZ),{top:void 0,bottom:"-5px"}),left:n0(n0({},qZ),{left:"-5px"}),topRight:n0(n0({},IA),{right:"-10px",top:"-10px",cursor:"ne-resize"}),bottomRight:n0(n0({},IA),{right:"-10px",bottom:"-10px",cursor:"se-resize"}),bottomLeft:n0(n0({},IA),{left:"-10px",bottom:"-10px",cursor:"sw-resize"}),topLeft:n0(n0({},IA),{left:"-10px",top:"-10px",cursor:"nw-resize"})},y2t=function(e){z2t(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.onMouseDown=function(o){n.props.onResizeStart(o,n.props.direction)},n.onTouchStart=function(o){n.props.onResizeStart(o,n.props.direction)},n}return t.prototype.render=function(){return x.createElement("div",{className:this.props.className||"",style:n0(n0({position:"absolute",userSelect:"none"},O2t[this.props.direction]),this.props.replaceStyles||{}),onMouseDown:this.onMouseDown,onTouchStart:this.onTouchStart},this.props.children)},t}(x.PureComponent),A2t=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,r){o.__proto__=r}||function(o,r){for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&(o[s]=r[s])},e(t,n)};return function(t,n){e(t,n);function o(){this.constructor=t}t.prototype=n===null?Object.create(n):(o.prototype=n.prototype,new o)}}(),Ua=function(){return Ua=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++){t=arguments[n];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},Ua.apply(this,arguments)},v2t={width:"auto",height:"auto"},DA=function(e,t,n){return Math.max(Math.min(e,n),t)},RZ=function(e,t,n){var o=Math.round(e/t);return o*t+n*(o-1)},Gb=function(e,t){return new RegExp(e,"i").test(t)},FA=function(e){return!!(e.touches&&e.touches.length)},x2t=function(e){return!!((e.clientX||e.clientX===0)&&(e.clientY||e.clientY===0))},TZ=function(e,t,n){n===void 0&&(n=0);var o=t.reduce(function(s,i,c){return Math.abs(i-e)<Math.abs(t[s]-e)?c:s},0),r=Math.abs(t[o]-e);return n===0||r<n?t[o]:e},tq=function(e){return e=e.toString(),e==="auto"||e.endsWith("px")||e.endsWith("%")||e.endsWith("vh")||e.endsWith("vw")||e.endsWith("vmax")||e.endsWith("vmin")?e:e+"px"},$A=function(e,t,n,o){if(e&&typeof e=="string"){if(e.endsWith("px"))return Number(e.replace("px",""));if(e.endsWith("%")){var r=Number(e.replace("%",""))/100;return t*r}if(e.endsWith("vw")){var r=Number(e.replace("vw",""))/100;return n*r}if(e.endsWith("vh")){var r=Number(e.replace("vh",""))/100;return o*r}}return e},w2t=function(e,t,n,o,r,s,i){return o=$A(o,e.width,t,n),r=$A(r,e.height,t,n),s=$A(s,e.width,t,n),i=$A(i,e.height,t,n),{maxWidth:typeof o>"u"?void 0:Number(o),maxHeight:typeof r>"u"?void 0:Number(r),minWidth:typeof s>"u"?void 0:Number(s),minHeight:typeof i>"u"?void 0:Number(i)}},_2t=function(e){return Array.isArray(e)?e:[e,e]},k2t=["as","ref","style","className","grid","gridGap","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"],EZ="__resizable_base__",S2t=function(e){A2t(t,e);function t(n){var o,r,s,i,c=e.call(this,n)||this;return c.ratio=1,c.resizable=null,c.parentLeft=0,c.parentTop=0,c.resizableLeft=0,c.resizableRight=0,c.resizableTop=0,c.resizableBottom=0,c.targetLeft=0,c.targetTop=0,c.appendBase=function(){if(!c.resizable||!c.window)return null;var l=c.parentNode;if(!l)return null;var u=c.window.document.createElement("div");return u.style.width="100%",u.style.height="100%",u.style.position="absolute",u.style.transform="scale(0, 0)",u.style.left="0",u.style.flex="0 0 100%",u.classList?u.classList.add(EZ):u.className+=EZ,l.appendChild(u),u},c.removeBase=function(l){var u=c.parentNode;u&&u.removeChild(l)},c.state={isResizing:!1,width:(r=(o=c.propsSize)===null||o===void 0?void 0:o.width)!==null&&r!==void 0?r:"auto",height:(i=(s=c.propsSize)===null||s===void 0?void 0:s.height)!==null&&i!==void 0?i:"auto",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},c.onResizeStart=c.onResizeStart.bind(c),c.onMouseMove=c.onMouseMove.bind(c),c.onMouseUp=c.onMouseUp.bind(c),c}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||v2t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var n=0,o=0;if(this.resizable&&this.window){var r=this.resizable.offsetWidth,s=this.resizable.offsetHeight,i=this.resizable.style.position;i!=="relative"&&(this.resizable.style.position="relative"),n=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:r,o=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:s,this.resizable.style.position=i}return{width:n,height:o}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var n=this,o=this.props.size,r=function(c){var l;if(typeof n.state[c]>"u"||n.state[c]==="auto")return"auto";if(n.propsSize&&n.propsSize[c]&&(!((l=n.propsSize[c])===null||l===void 0)&&l.toString().endsWith("%"))){if(n.state[c].toString().endsWith("%"))return n.state[c].toString();var u=n.getParentSize(),d=Number(n.state[c].toString().replace("px","")),p=d/u[c]*100;return p+"%"}return tq(n.state[c])},s=o&&typeof o.width<"u"&&!this.state.isResizing?tq(o.width):r("width"),i=o&&typeof o.height<"u"&&!this.state.isResizing?tq(o.height):r("height");return{width:s,height:i}},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 o=!1,r=this.parentNode.style.flexWrap;r!=="wrap"&&(o=!0,this.parentNode.style.flexWrap="wrap"),n.style.position="relative",n.style.minWidth="100%",n.style.minHeight="100%";var s={width:n.offsetWidth,height:n.offsetHeight};return o&&(this.parentNode.style.flexWrap=r),this.removeBase(n),s},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,o){var r=this.propsSize&&this.propsSize[o];return this.state[o]==="auto"&&this.state.original[o]===n&&(typeof r>"u"||r==="auto")?"auto":n},t.prototype.calculateNewMaxFromBoundary=function(n,o){var r=this.props.boundsByDirection,s=this.state.direction,i=r&&Gb("left",s),c=r&&Gb("top",s),l,u;if(this.props.bounds==="parent"){var d=this.parentNode;d&&(l=i?this.resizableRight-this.parentLeft:d.offsetWidth+(this.parentLeft-this.resizableLeft),u=c?this.resizableBottom-this.parentTop:d.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(l=i?this.resizableRight:this.window.innerWidth-this.resizableLeft,u=c?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(l=i?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),u=c?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return l&&Number.isFinite(l)&&(n=n&&n<l?n:l),u&&Number.isFinite(u)&&(o=o&&o<u?o:u),{maxWidth:n,maxHeight:o}},t.prototype.calculateNewSizeFromDirection=function(n,o){var r=this.props.scale||1,s=_2t(this.props.resizeRatio||1),i=s[0],c=s[1],l=this.state,u=l.direction,d=l.original,p=this.props,f=p.lockAspectRatio,b=p.lockAspectRatioExtraHeight,h=p.lockAspectRatioExtraWidth,g=d.width,z=d.height,A=b||0,_=h||0;return Gb("right",u)&&(g=d.width+(n-d.x)*i/r,f&&(z=(g-_)/this.ratio+A)),Gb("left",u)&&(g=d.width-(n-d.x)*i/r,f&&(z=(g-_)/this.ratio+A)),Gb("bottom",u)&&(z=d.height+(o-d.y)*c/r,f&&(g=(z-A)*this.ratio+_)),Gb("top",u)&&(z=d.height-(o-d.y)*c/r,f&&(g=(z-A)*this.ratio+_)),{newWidth:g,newHeight:z}},t.prototype.calculateNewSizeFromAspectRatio=function(n,o,r,s){var i=this.props,c=i.lockAspectRatio,l=i.lockAspectRatioExtraHeight,u=i.lockAspectRatioExtraWidth,d=typeof s.width>"u"?10:s.width,p=typeof r.width>"u"||r.width<0?n:r.width,f=typeof s.height>"u"?10:s.height,b=typeof r.height>"u"||r.height<0?o:r.height,h=l||0,g=u||0;if(c){var z=(f-h)*this.ratio+g,A=(b-h)*this.ratio+g,_=(d-g)/this.ratio+h,v=(p-g)/this.ratio+h,M=Math.max(d,z),y=Math.min(p,A),k=Math.max(f,_),S=Math.min(b,v);n=DA(n,M,y),o=DA(o,k,S)}else n=DA(n,d,p),o=DA(o,f,b);return{newWidth:n,newHeight:o}},t.prototype.setBoundingClientRect=function(){var n=1/(this.props.scale||1);if(this.props.bounds==="parent"){var o=this.parentNode;if(o){var r=o.getBoundingClientRect();this.parentLeft=r.left*n,this.parentTop=r.top*n}}if(this.props.bounds&&typeof this.props.bounds!="string"){var s=this.props.bounds.getBoundingClientRect();this.targetLeft=s.left*n,this.targetTop=s.top*n}if(this.resizable){var i=this.resizable.getBoundingClientRect(),c=i.left,l=i.top,u=i.right,d=i.bottom;this.resizableLeft=c*n,this.resizableRight=u*n,this.resizableTop=l*n,this.resizableBottom=d*n}},t.prototype.onResizeStart=function(n,o){if(!(!this.resizable||!this.window)){var r=0,s=0;if(n.nativeEvent&&x2t(n.nativeEvent)?(r=n.nativeEvent.clientX,s=n.nativeEvent.clientY):n.nativeEvent&&FA(n.nativeEvent)&&(r=n.nativeEvent.touches[0].clientX,s=n.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var i=this.props.onResizeStart(n,o,this.resizable);if(i===!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 c,l=this.window.getComputedStyle(this.resizable);if(l.flexBasis!=="auto"){var u=this.parentNode;if(u){var d=this.window.getComputedStyle(u).flexDirection;this.flexDir=d.startsWith("row")?"row":"column",c=l.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var p={original:{x:r,y:s,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:Ua(Ua({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(n.target).cursor||"auto"}),direction:o,flexBasis:c};this.setState(p)}},t.prototype.onMouseMove=function(n){var o=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&FA(n))try{n.preventDefault(),n.stopPropagation()}catch{}var r=this.props,s=r.maxWidth,i=r.maxHeight,c=r.minWidth,l=r.minHeight,u=FA(n)?n.touches[0].clientX:n.clientX,d=FA(n)?n.touches[0].clientY:n.clientY,p=this.state,f=p.direction,b=p.original,h=p.width,g=p.height,z=this.getParentSize(),A=w2t(z,this.window.innerWidth,this.window.innerHeight,s,i,c,l);s=A.maxWidth,i=A.maxHeight,c=A.minWidth,l=A.minHeight;var _=this.calculateNewSizeFromDirection(u,d),v=_.newHeight,M=_.newWidth,y=this.calculateNewMaxFromBoundary(s,i);this.props.snap&&this.props.snap.x&&(M=TZ(M,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(v=TZ(v,this.props.snap.y,this.props.snapGap));var k=this.calculateNewSizeFromAspectRatio(M,v,{width:y.maxWidth,height:y.maxHeight},{width:c,height:l});if(M=k.newWidth,v=k.newHeight,this.props.grid){var S=RZ(M,this.props.grid[0],this.props.gridGap?this.props.gridGap[0]:0),C=RZ(v,this.props.grid[1],this.props.gridGap?this.props.gridGap[1]:0),R=this.props.snapGap||0,T=R===0||Math.abs(S-M)<=R?S:M,E=R===0||Math.abs(C-v)<=R?C:v;M=T,v=E}var B={width:M-b.width,height:v-b.height};if(h&&typeof h=="string"){if(h.endsWith("%")){var N=M/z.width*100;M=N+"%"}else if(h.endsWith("vw")){var j=M/this.window.innerWidth*100;M=j+"vw"}else if(h.endsWith("vh")){var I=M/this.window.innerHeight*100;M=I+"vh"}}if(g&&typeof g=="string"){if(g.endsWith("%")){var N=v/z.height*100;v=N+"%"}else if(g.endsWith("vw")){var j=v/this.window.innerWidth*100;v=j+"vw"}else if(g.endsWith("vh")){var I=v/this.window.innerHeight*100;v=I+"vh"}}var P={width:this.createSizeForCssProperty(M,"width"),height:this.createSizeForCssProperty(v,"height")};this.flexDir==="row"?P.flexBasis=P.width:this.flexDir==="column"&&(P.flexBasis=P.height);var $=this.state.width!==P.width,F=this.state.height!==P.height,X=this.state.flexBasis!==P.flexBasis,Z=$||F||X;Z&&hs.flushSync(function(){o.setState(P)}),this.props.onResize&&Z&&this.props.onResize(n,f,this.resizable,B)}},t.prototype.onMouseUp=function(n){var o,r,s=this.state,i=s.isResizing,c=s.direction,l=s.original;if(!(!i||!this.resizable)){var u={width:this.size.width-l.width,height:this.size.height-l.height};this.props.onResizeStop&&this.props.onResizeStop(n,c,this.resizable,u),this.props.size&&this.setState({width:(o=this.props.size.width)!==null&&o!==void 0?o:"auto",height:(r=this.props.size.height)!==null&&r!==void 0?r:"auto"}),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:Ua(Ua({},this.state.backgroundStyle),{cursor:"auto"})})}},t.prototype.updateSize=function(n){var o,r;this.setState({width:(o=n.width)!==null&&o!==void 0?o:"auto",height:(r=n.height)!==null&&r!==void 0?r:"auto"})},t.prototype.renderResizer=function(n){var o=this,r=this.props,s=r.enable,i=r.handleStyles,c=r.handleClasses,l=r.handleWrapperStyle,u=r.handleWrapperClass,d=r.handleComponent;if(!s)return null;var p=n.filter(function(f){return s[f]!==!1}).map(function(f){return s[f]!==!1?x.createElement(y2t,{key:f,direction:f,onResizeStart:o.onResizeStart,replaceStyles:i&&i[f],className:c&&c[f]},d&&d[f]?d[f]:null):null});return x.createElement("div",{className:u,style:l},p)},t.prototype.render=function(){var n=this,o=Object.keys(this.props).reduce(function(i,c){return k2t.indexOf(c)!==-1||(i[c]=n.props[c]),i},{}),r=Ua(Ua(Ua({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&&(r.flexBasis=this.state.flexBasis);var s=this.props.as||"div";return x.createElement(s,Ua({style:r,className:this.props.className},o,{ref:function(i){i&&(n.resizable=i)}}),this.state.isResizing&&x.createElement("div",{style:this.state.backgroundStyle}),this.renderResizer(["topLeft","top","topRight","left"]),this.props.children,this.renderResizer(["right","bottomLeft","bottom","bottomRight"]))},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],gridGap:[0,0],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(x.PureComponent);const C2t=()=>{},af={bottom:"bottom",corner:"corner"};function q2t({axis:e,fadeTimeout:t=180,onResize:n=C2t,position:o=af.bottom,showPx:r=!1}){const[s,i]=js(),c=!!e,[l,u]=x.useState(!1),[d,p]=x.useState(!1),{width:f,height:b}=i,h=x.useRef(b),g=x.useRef(f),z=x.useRef(),A=x.useCallback(()=>{const v=()=>{c||(u(!1),p(!1))};z.current&&window.clearTimeout(z.current),z.current=window.setTimeout(v,t)},[t,c]);return x.useEffect(()=>{if(!(f!==null||b!==null))return;const M=f!==g.current,y=b!==h.current;if(!(!M&&!y)){if(f&&!g.current&&b&&!h.current){g.current=f,h.current=b;return}M&&(u(!0),g.current=f),y&&(p(!0),h.current=b),n({width:f,height:b}),A()}},[f,b,n,A]),{label:R2t({axis:e,height:b,moveX:l,moveY:d,position:o,showPx:r,width:f}),resizeListener:s}}function R2t({axis:e,height:t,moveX:n=!1,moveY:o=!1,position:r=af.bottom,showPx:s=!1,width:i}){if(!n&&!o)return;if(r===af.corner)return`${i} x ${t}`;const c=s?" px":"";if(e){if(e==="x"&&n)return`${i}${c}`;if(e==="y"&&o)return`${t}${c}`}if(n&&o)return`${i} x ${t}`;if(n)return`${i}${c}`;if(o)return`${t}${c}`}const T2t=He("div",{target:"e1wq7y4k3"})({name:"1cd7zoc",styles:"bottom:0;box-sizing:border-box;left:0;pointer-events:none;position:absolute;right:0;top:0"}),E2t=He("div",{target:"e1wq7y4k2"})({name:"ajymcs",styles:"align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;opacity:0;pointer-events:none;transition:opacity 120ms linear"}),W2t=He("div",{target:"e1wq7y4k1"})("background:",Ze.theme.foreground,";border-radius:",Ye.radiusSmall,";box-sizing:border-box;font-family:",la("default.fontFamily"),";font-size:12px;color:",Ze.theme.foregroundInverted,";padding:4px 8px;position:relative;"),N2t=He(Sn,{target:"e1wq7y4k0"})("&&&{color:",Ze.theme.foregroundInverted,";display:block;font-size:13px;line-height:1.4;white-space:nowrap;}"),d4=4,B2t=d4*2.5;function L2t({label:e,position:t=af.corner,zIndex:n=1e3,...o},r){const s=!!e,i=t===af.bottom,c=t===af.corner;if(!s)return null;let l={opacity:s?1:void 0,zIndex:n},u={};return i&&(l={...l,position:"absolute",bottom:B2t*-1,left:"50%",transform:"translate(-50%, 0)"},u={transform:"translate(0, 100%)"}),c&&(l={...l,position:"absolute",top:d4,right:jt()?void 0:d4,left:jt()?d4:void 0}),a.jsx(E2t,{"aria-hidden":"true",className:"components-resizable-tooltip__tooltip-wrapper",ref:r,style:l,...o,children:a.jsx(W2t,{className:"components-resizable-tooltip__tooltip",style:u,children:a.jsx(N2t,{as:"span",children:e})})})}const P2t=x.forwardRef(L2t),j2t=()=>{};function I2t({axis:e,className:t,fadeTimeout:n=180,isVisible:o=!0,labelRef:r,onResize:s=j2t,position:i=af.bottom,showPx:c=!0,zIndex:l=1e3,...u},d){const{label:p,resizeListener:f}=q2t({axis:e,fadeTimeout:n,onResize:s,showPx:c,position:i});if(!o)return null;const b=oe("components-resize-tooltip",t);return a.jsxs(T2t,{"aria-hidden":"true",className:b,ref:d,...u,children:[f,a.jsx(P2t,{"aria-hidden":u["aria-hidden"],label:p,position:i,ref:r,zIndex:l})]})}const D2t=x.forwardRef(I2t),Eu="components-resizable-box__handle",VA="components-resizable-box__side-handle",HA="components-resizable-box__corner-handle",WZ={top:oe(Eu,VA,"components-resizable-box__handle-top"),right:oe(Eu,VA,"components-resizable-box__handle-right"),bottom:oe(Eu,VA,"components-resizable-box__handle-bottom"),left:oe(Eu,VA,"components-resizable-box__handle-left"),topLeft:oe(Eu,HA,"components-resizable-box__handle-top","components-resizable-box__handle-left"),topRight:oe(Eu,HA,"components-resizable-box__handle-top","components-resizable-box__handle-right"),bottomRight:oe(Eu,HA,"components-resizable-box__handle-bottom","components-resizable-box__handle-right"),bottomLeft:oe(Eu,HA,"components-resizable-box__handle-bottom","components-resizable-box__handle-left")},Wu={width:void 0,height:void 0,top:void 0,right:void 0,bottom:void 0,left:void 0},F2t={top:Wu,right:Wu,bottom:Wu,left:Wu,topLeft:Wu,topRight:Wu,bottomRight:Wu,bottomLeft:Wu};function $2t({className:e,children:t,showHandle:n=!0,__experimentalShowTooltip:o=!1,__experimentalTooltipProps:r={},...s},i){return a.jsxs(S2t,{className:oe("components-resizable-box__container",n&&"has-show-handle",e),handleComponent:Object.fromEntries(Object.keys(WZ).map(c=>[c,a.jsx("div",{tabIndex:-1},c)])),handleClasses:WZ,handleStyles:F2t,ref:i,...s,children:[t,o&&a.jsx(D2t,{...r})]})}const Ca=x.forwardRef($2t),V2t=function(){const{MutationObserver:e}=window;if(!e||!document.body||!window.parent)return;function t(){const r=document.body.getBoundingClientRect();window.parent.postMessage({action:"resize",width:r.width,height:r.height},"*")}new e(t).observe(document.body,{attributes:!0,attributeOldValue:!1,characterData:!0,characterDataOldValue:!1,childList:!0,subtree:!0}),window.addEventListener("load",t,!0);function o(r){r.style&&["width","height","minHeight","maxHeight"].forEach(function(s){/^\\d+(vw|vh|svw|lvw|dvw|svh|lvh|dvh|vi|svi|lvi|dvi|vb|svb|lvb|dvb|vmin|svmin|lvmin|dvmin|vmax|svmax|lvmax|dvmax)$/.test(r.style[s])&&(r.style[s]="")})}Array.prototype.forEach.call(document.querySelectorAll("[style]"),o),Array.prototype.forEach.call(document.styleSheets,function(r){Array.prototype.forEach.call(r.cssRules||r.rules,o)}),document.body.style.position="absolute",document.body.style.width="100%",document.body.setAttribute("data-resizable-iframe-connected",""),t(),window.addEventListener("resize",t,!0)},H2t=` body { margin: 0; } @@ -420,14 +420,14 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen margin-top: 0 !important; /* Has to have !important to override inline styles. */ margin-bottom: 0 !important; } -`;function b2e({html:e="",title:t="",type:n,styles:o=[],scripts:r=[],onFocus:s,tabIndex:i}){const c=x.useRef(),[l,u]=x.useState(0),[d,p]=x.useState(0);function f(){try{return!!c.current?.contentDocument?.body}catch{return!1}}function b(h=!1){if(!f())return;const{contentDocument:g,ownerDocument:z}=c.current;if(!h&&g?.body.getAttribute("data-resizable-iframe-connected")!==null)return;const A=a.jsxs("html",{lang:z.documentElement.lang,className:n,children:[a.jsxs("head",{children:[a.jsx("title",{children:t}),a.jsx("style",{dangerouslySetInnerHTML:{__html:U2t}}),o.map((_,v)=>a.jsx("style",{dangerouslySetInnerHTML:{__html:_}},v))]}),a.jsxs("body",{"data-resizable-iframe-connected":"data-resizable-iframe-connected",className:n,children:[a.jsx("div",{dangerouslySetInnerHTML:{__html:e}}),a.jsx("script",{type:"text/javascript",dangerouslySetInnerHTML:{__html:`(${H2t.toString()})();`}}),r.map(_=>a.jsx("script",{src:_},_))]})]});g.open(),g.write("<!DOCTYPE html>"+M1(A)),g.close()}return x.useEffect(()=>{b();function h(){b(!1)}function g(_){const v=c.current;if(!v||v.contentWindow!==_.source)return;let M=_.data||{};if(typeof M=="string")try{M=JSON.parse(M)}catch{}M.action==="resize"&&(u(M.width),p(M.height))}const z=c.current,A=z?.ownerDocument?.defaultView;return z?.addEventListener("load",h,!1),A?.addEventListener("message",g),()=>{z?.removeEventListener("load",h,!1),A?.removeEventListener("message",g)}},[]),x.useEffect(()=>{b()},[t,o,r]),x.useEffect(()=>{b(!0)},[e,n]),a.jsx("iframe",{ref:xn([c,C0e()]),title:t,tabIndex:i,className:"components-sandbox",sandbox:"allow-scripts allow-same-origin allow-presentation",onFocus:s,width:Math.ceil(l),height:Math.ceil(d)})}const X2t=1e4;function G2t(e,t){const n=typeof e=="string"?e:M1(e);x.useEffect(()=>{n&&Yt(n,t)},[n,t])}function K2t({className:e,children:t,spokenMessage:n=t,politeness:o="polite",actions:r=[],onRemove:s,icon:i=null,explicitDismiss:c=!1,onDismiss:l,listRef:u},d){function p(z){z&&z.preventDefault&&z.preventDefault(),u?.current?.focus(),l?.(),s?.()}function f(z,A){z.stopPropagation(),s?.(),A&&A(z)}G2t(n,o);const b=x.useRef({onDismiss:l,onRemove:s});x.useLayoutEffect(()=>{b.current={onDismiss:l,onRemove:s}}),x.useEffect(()=>{const z=setTimeout(()=>{c||(b.current.onDismiss?.(),b.current.onRemove?.())},X2t);return()=>clearTimeout(z)},[c]);const h=oe(e,"components-snackbar",{"components-snackbar-explicit-dismiss":!!c});r&&r.length>1&&(globalThis.SCRIPT_DEBUG===!0&&zn("Snackbar can only have one action. Use Notice if your message requires many actions."),r=[r[0]]);const g=oe("components-snackbar__content",{"components-snackbar__content-with-icon":!!i});return a.jsx("div",{ref:d,className:h,onClick:c?void 0:p,tabIndex:0,role:c?void 0:"button",onKeyPress:c?void 0:p,"aria-label":c?void 0:m("Dismiss this notice"),"data-testid":"snackbar",children:a.jsxs("div",{className:g,children:[i&&a.jsx("div",{className:"components-snackbar__icon",children:i}),t,r.map(({label:z,onClick:A,url:_},v)=>a.jsx(Ce,{__next40pxDefaultSize:!0,href:_,variant:"link",onClick:M=>f(M,A),className:"components-snackbar__action",children:z},v)),c&&a.jsx("span",{role:"button","aria-label":m("Dismiss this notice"),tabIndex:0,className:"components-snackbar__dismiss-button",onClick:p,onKeyPress:p,children:"✕"})]})})}const Y2t=x.forwardRef(K2t),Z2t={init:{height:0,opacity:0},open:{height:"auto",opacity:1,transition:{height:{type:"tween",duration:.3,ease:[0,0,.2,1]},opacity:{type:"tween",duration:.25,delay:.05,ease:[0,0,.2,1]}}},exit:{opacity:0,transition:{type:"tween",duration:.1,ease:[0,0,.2,1]}}};function Q2t({notices:e,className:t,children:n,onRemove:o}){const r=x.useRef(null),s=$1();t=oe("components-snackbar-list",t);const i=c=>()=>o?.(c.id);return a.jsxs("div",{className:t,tabIndex:-1,ref:r,"data-testid":"snackbar-list",children:[n,a.jsx(Wd,{children:e.map(c=>{const{content:l,...u}=c;return a.jsx(Rr.div,{layout:!s,initial:"init",animate:"open",exit:"exit",variants:s?void 0:Z2t,children:a.jsx("div",{className:"components-snackbar-list__notice-container",children:a.jsx(Y2t,{...u,onRemove:i(c),listRef:r,children:c.content})})},c.id)})})]})}function J2t(e,t){const{__nextHasNoMarginBottom:n,__next40pxDefaultSize:o=!1,label:r,hideLabelFromVision:s,value:i,help:c,id:l,className:u,onChange:d,type:p="text",...f}=e,b=vt(dn,"inspector-text-control",l),h=g=>d(g.target.value);return q1({componentName:"TextControl",size:void 0,__next40pxDefaultSize:o}),a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"TextControl",label:r,hideLabelFromVision:s,id:b,help:c,className:u,children:a.jsx("input",{className:oe("components-text-control__input",{"is-next-40px-default-size":o}),type:p,id:b,value:i,onChange:h,"aria-describedby":c?b+"__help":void 0,ref:t,...f})})}const dn=x.forwardRef(J2t),eht=Xe("box-shadow:0 0 0 transparent;border-radius:",Ye.radiusSmall,";border:",Ye.borderWidth," solid ",Ze.ui.border,";@media not ( prefers-reduced-motion ){transition:box-shadow 0.1s linear;}",""),tht=Xe("border-color:",Ze.theme.accent,";box-shadow:0 0 0 calc( ",Ye.borderWidthFocus," - ",Ye.borderWidth," ) ",Ze.theme.accent,";outline:2px solid transparent;",""),nht=He("textarea",{target:"e1w5nnrk0"})("width:100%;display:block;font-family:",ua("default.fontFamily"),";line-height:20px;padding:9px 11px;",eht,";font-size:",ua("mobileTextMinFontSize"),";",XHe("small"),"{font-size:",ua("default.fontSize"),";}&:focus{",tht,";}&::-webkit-input-placeholder{color:",Ze.ui.darkGrayPlaceholder,";}&::-moz-placeholder{opacity:1;color:",Ze.ui.darkGrayPlaceholder,";}&:-ms-input-placeholder{color:",Ze.ui.darkGrayPlaceholder,";}.is-dark-theme &{&::-webkit-input-placeholder{color:",Ze.ui.lightGrayPlaceholder,";}&::-moz-placeholder{opacity:1;color:",Ze.ui.lightGrayPlaceholder,";}&:-ms-input-placeholder{color:",Ze.ui.lightGrayPlaceholder,";}}");function oht(e,t){const{__nextHasNoMarginBottom:n,label:o,hideLabelFromVision:r,value:s,help:i,onChange:c,rows:l=4,className:u,...d}=e,f=`inspector-textarea-control-${vt(Pi)}`,b=h=>c(h.target.value);return a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"TextareaControl",label:o,hideLabelFromVision:r,id:f,help:i,className:u,children:a.jsx(nht,{className:"components-textarea-control__input",id:f,rows:l,onChange:b,"aria-describedby":i?f+"__help":void 0,value:s,ref:t,...d})})}const Pi=x.forwardRef(oht),rht=e=>{const{text:t="",highlight:n=""}=e,o=n.trim();if(!o)return a.jsx(a.Fragment,{children:t});const r=new RegExp(`(${xz(o)})`,"gi");return cr(t.replace(r,"<mark>$&</mark>"),{mark:a.jsx("mark",{})})};function sht(e){const{children:t}=e;return a.jsxs("div",{className:"components-tip",children:[a.jsx(wn,{icon:cJe}),a.jsx("p",{children:t})]})}function iht({__nextHasNoMarginBottom:e,label:t,checked:n,help:o,className:r,onChange:s,disabled:i},c){function l(g){s(g.target.checked)}const d=`inspector-toggle-control-${vt(lt)}`,f=ro()("components-toggle-control",r,!e&&Xe({marginBottom:Je(3)},"",""));e||Ke("Bottom margin styles for wp.components.ToggleControl",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."});let b,h;return o&&(typeof o=="function"?n!==void 0&&(h=o(n)):h=o,h&&(b=d+"__help")),a.jsx(no,{id:d,help:h&&a.jsx("span",{className:"components-toggle-control__help",children:h}),className:f,__nextHasNoMarginBottom:!0,children:a.jsxs(Ot,{justify:"flex-start",spacing:2,children:[a.jsx(ibt,{id:d,checked:n,onChange:l,"aria-describedby":b,disabled:i,ref:c}),a.jsx(tu,{as:"label",htmlFor:d,className:oe("components-toggle-control__label",{"is-disabled":i}),children:t})]})})}const lt=x.forwardRef(iht),jd=x.createContext(void 0);function aht({children:e,as:t,...n},o){const r=x.useContext(jd),s=typeof e=="function";if(!s&&!t)return globalThis.SCRIPT_DEBUG===!0&&zn("`ToolbarItem` is a generic headless component. You must pass either a `children` prop as a function or an `as` prop as a component. See https://developer.wordpress.org/block-editor/components/toolbar-item/"),null;const i={...n,ref:o,"data-toolbar-item":!0};if(!r)return t?a.jsx(t,{...i,children:e}):s?e(i):null;const c=s?e:t&&a.jsx(t,{children:e});return a.jsx(N$e,{accessibleWhenDisabled:!0,...i,store:r,render:c})}const bs=x.forwardRef(aht),cht=({children:e,className:t})=>a.jsx("div",{className:t,children:e});function lht({isDisabled:e,...t}){return{disabled:e,...t}}function uht(e,t){const{children:n,className:o,containerClassName:r,extraProps:s,isActive:i,title:c,...l}=lht(e);return x.useContext(jd)?a.jsx(bs,{className:oe("components-toolbar-button",o),...s,...l,ref:t,children:d=>a.jsx(Ce,{size:"compact",label:c,isPressed:i,...d,children:n})}):a.jsx(cht,{className:r,children:a.jsx(Ce,{ref:t,icon:l.icon,size:"compact",label:c,shortcut:l.shortcut,"data-subscript":l.subscript,onClick:d=>{d.stopPropagation(),l.onClick&&l.onClick(d)},className:oe("components-toolbar__control",o),isPressed:i,accessibleWhenDisabled:!0,"data-toolbar-item":!0,...s,...l,children:n})})}const Vt=x.forwardRef(uht),dht=({className:e,children:t,...n})=>a.jsx("div",{className:e,...n,children:t});function pht({controls:e=[],toggleProps:t,...n}){const o=x.useContext(jd),r=s=>a.jsx(c0,{controls:e,toggleProps:{...s,"data-toolbar-item":!0},...n});return o?a.jsx(bs,{...t,children:r}):r(t)}function fht(e){return Array.isArray(e)&&Array.isArray(e[0])}function Wn({controls:e=[],children:t,className:n,isCollapsed:o,title:r,...s}){const i=x.useContext(jd);if((!e||!e.length)&&!t)return null;const c=oe(i?"components-toolbar-group":"components-toolbar",n);let l;return fht(e)?l=e:l=[e],o?a.jsx(pht,{label:r,controls:l,className:c,children:t,...s}):a.jsxs(dht,{className:c,...s,children:[l?.flatMap((u,d)=>u.map((p,f)=>a.jsx(Vt,{containerClassName:d>0&&f===0?"has-left-divider":void 0,...p},[d,f].join()))),t]})}function bht({label:e,...t},n){const o=Gce({focusLoop:!0,rtl:jt()});return a.jsx(jd.Provider,{value:o,children:a.jsx(T$e,{ref:n,"aria-label":e,store:o,...t})})}const hht=x.forwardRef(bht);function mht({className:e,label:t,variant:n,...o},r){const s=n!==void 0,i=x.useMemo(()=>s?{}:{DropdownMenu:{variant:"toolbar"},Dropdown:{variant:"toolbar"},Menu:{variant:"toolbar"}},[s]);if(!t){Ke("Using Toolbar without label prop",{since:"5.6",alternative:"ToolbarGroup component",link:"https://developer.wordpress.org/block-editor/components/toolbar/"});const{title:l,...u}=o;return a.jsx(Wn,{isCollapsed:!1,...u,className:e})}const c=oe("components-accessible-toolbar",e,n&&`is-${n}`);return a.jsx(j3,{value:i,children:a.jsx(hht,{className:c,label:t,ref:r,...o})})}const h2e=x.forwardRef(mht);function ght(e,t){return x.useContext(jd)?a.jsx(bs,{ref:t,...e.toggleProps,children:o=>a.jsx(c0,{...e,popoverProps:{...e.popoverProps},toggleProps:o})}):a.jsx(c0,{...e})}const Lc=x.forwardRef(ght),cf={columns:e=>Xe("grid-template-columns:",`repeat( ${e}, minmax(0, 1fr) )`,";",""),spacing:Xe("column-gap:",Je(4),";row-gap:",Je(4),";",""),item:{fullWidth:{name:"18iuzk9",styles:"grid-column:1/-1"}}},Mht=e=>Xe(cf.columns(e)," ",cf.spacing," border-top:",Ye.borderWidth," solid ",Ze.gray[300],";margin-top:-1px;padding:",Je(4),";",""),zht=e=>Xe(">div:not( :first-of-type ){display:grid;",cf.columns(e)," ",cf.spacing," ",cf.item.fullWidth,";}",""),Oht={name:"huufmu",styles:">div:not( :first-of-type ){display:none;}"},yht=Xe(cf.item.fullWidth," gap:",Je(2),";.components-dropdown-menu{margin:",Je(-1)," 0;line-height:0;}&&&& .components-dropdown-menu__toggle{padding:0;min-width:",Je(6),";}",""),Aht={name:"1pmxm02",styles:"font-size:inherit;font-weight:500;line-height:normal;&&{margin:0;}"},vht=Xe(cf.item.fullWidth,"&>div,&>fieldset{padding-bottom:0;margin-bottom:0;max-width:100%;}&& ",Ope,"{margin-bottom:0;",ype,":last-child{margin-bottom:0;}}",vz,"{margin-bottom:0;}&& ",npe,"{label{line-height:1.4em;}}",""),xht={name:"eivff4",styles:"display:none"},wht={name:"16gsvie",styles:"min-width:200px"},m2e=He("span",{target:"ews648u0"})("color:",Ze.theme.accentDarker10,";font-size:11px;font-weight:500;line-height:1.4;",Go({marginLeft:Je(3)})," text-transform:uppercase;"),_ht=Xe("color:",Ze.gray[900],";&&[aria-disabled='true']{color:",Ze.gray[700],";opacity:1;&:hover{color:",Ze.gray[700],";}",m2e,"{opacity:0.3;}}",""),Bg=()=>{},Ez=x.createContext({menuItems:{default:{},optional:{}},hasMenuItems:!1,isResetting:!1,shouldRenderPlaceholderItems:!1,registerPanelItem:Bg,deregisterPanelItem:Bg,flagItemCustomization:Bg,registerResetAllFilter:Bg,deregisterResetAllFilter:Bg,areAllOptionalControlsHidden:!0}),g2e=()=>x.useContext(Ez);function kht(e){const{className:t,headingLevel:n=2,...o}=vn(e,"ToolsPanelHeader"),r=ro(),s=x.useMemo(()=>r(yht,t),[t,r]),i=x.useMemo(()=>r(wht),[r]),c=x.useMemo(()=>r(Aht),[r]),l=x.useMemo(()=>r(_ht),[r]),{menuItems:u,hasMenuItems:d,areAllOptionalControlsHidden:p}=g2e();return{...o,areAllOptionalControlsHidden:p,defaultControlsItemClassName:l,dropdownMenuClassName:i,hasMenuItems:d,headingClassName:c,headingLevel:n,menuItems:u,className:s}}const Sht=({itemClassName:e,items:t,toggleItem:n})=>{if(!t.length)return null;const o=a.jsx(m2e,{"aria-hidden":!0,children:m("Reset")});return a.jsx(a.Fragment,{children:t.map(([r,s])=>s?a.jsx(Ct,{className:e,role:"menuitem",label:xe(m("Reset %s"),r),onClick:()=>{n(r),Yt(xe(m("%s reset to default"),r),"assertive")},suffix:o,children:r},r):a.jsx(Ct,{icon:M0,className:e,role:"menuitemcheckbox",isSelected:!0,"aria-disabled":!0,children:r},r))})},Cht=({items:e,toggleItem:t})=>e.length?a.jsx(a.Fragment,{children:e.map(([n,o])=>{const r=xe(o?m("Hide and reset %s"):We("Show %s","input control"),n);return a.jsx(Ct,{icon:o?M0:null,isSelected:o,label:r,onClick:()=>{Yt(xe(m(o?"%s hidden and reset to default":"%s is now visible"),n),"assertive"),t(n)},role:"menuitemcheckbox",children:n},n)})}):null,qht=(e,t)=>{const{areAllOptionalControlsHidden:n,defaultControlsItemClassName:o,dropdownMenuClassName:r,hasMenuItems:s,headingClassName:i,headingLevel:c=2,label:l,menuItems:u,resetAll:d,toggleItem:p,dropdownMenuProps:f,...b}=kht(e);if(!l)return null;const h=Object.entries(u?.default||{}),g=Object.entries(u?.optional||{}),z=n?Fs:Wc,A=xe(We("%s options","Button label to reveal tool panel options"),l),_=n?m("All options are currently hidden"):void 0,v=[...h,...g].some(([,M])=>M);return a.jsxs(Ot,{...b,ref:t,children:[a.jsx(_a,{level:c,className:i,children:l}),s&&a.jsx(c0,{...f,icon:z,label:A,menuProps:{className:r},toggleProps:{size:"small",description:_},children:()=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{label:l,children:[a.jsx(Sht,{items:h,toggleItem:p,itemClassName:o}),a.jsx(Cht,{items:g,toggleItem:p})]}),a.jsx(Cn,{children:a.jsx(Ct,{"aria-disabled":!v,variant:"tertiary",onClick:()=>{v&&(d(),Yt(m("All options reset"),"assertive"))},children:m("Reset all")})})]})})]})},Rht=Rn(qht,"ToolsPanelHeader"),NZ=2;function uW(){return{default:{},optional:{}}}function Tht(){return{panelItems:[],menuItemOrder:[],menuItems:uW()}}const BZ=({panelItems:e,shouldReset:t,currentMenuItems:n,menuItemOrder:o})=>{const r=uW(),s=uW();return e.forEach(({hasValue:i,isShownByDefault:c,label:l})=>{const u=c?"default":"optional",d=n?.[u]?.[l],p=d||i();r[u][l]=t?!1:p}),o.forEach(i=>{r.default.hasOwnProperty(i)&&(s.default[i]=r.default[i]),r.optional.hasOwnProperty(i)&&(s.optional[i]=r.optional[i])}),Object.keys(r.default).forEach(i=>{s.default.hasOwnProperty(i)||(s.default[i]=r.default[i])}),Object.keys(r.optional).forEach(i=>{s.optional.hasOwnProperty(i)||(s.optional[i]=r.optional[i])}),s};function Eht(e,t){switch(t.type){case"REGISTER_PANEL":{const n=[...e],o=n.findIndex(r=>r.label===t.item.label);return o!==-1&&n.splice(o,1),n.push(t.item),n}case"UNREGISTER_PANEL":{const n=e.findIndex(o=>o.label===t.label);if(n!==-1){const o=[...e];return o.splice(n,1),o}return e}default:return e}}function Wht(e,t){switch(t.type){case"REGISTER_PANEL":return e.includes(t.item.label)?e:[...e,t.item.label];default:return e}}function Nht(e,t){switch(t.type){case"REGISTER_PANEL":case"UNREGISTER_PANEL":return BZ({currentMenuItems:e.menuItems,panelItems:e.panelItems,menuItemOrder:e.menuItemOrder,shouldReset:!1});case"RESET_ALL":return BZ({panelItems:e.panelItems,menuItemOrder:e.menuItemOrder,shouldReset:!0});case"UPDATE_VALUE":{const n=e.menuItems[t.group][t.label];return t.value===n?e.menuItems:{...e.menuItems,[t.group]:{...e.menuItems[t.group],[t.label]:t.value}}}case"TOGGLE_VALUE":{const n=e.panelItems.find(s=>s.label===t.label);if(!n)return e.menuItems;const o=n.isShownByDefault?"default":"optional";return{...e.menuItems,[o]:{...e.menuItems[o],[t.label]:!e.menuItems[o][t.label]}}}default:return e.menuItems}}function Bht(e,t){const n=Eht(e.panelItems,t),o=Wht(e.menuItemOrder,t),r=Nht({panelItems:n,menuItemOrder:o,menuItems:e.menuItems},t);return{panelItems:n,menuItemOrder:o,menuItems:r}}function Lht(e,t){switch(t.type){case"REGISTER":return[...e,t.filter];case"UNREGISTER":return e.filter(n=>n!==t.filter);default:return e}}const LZ=e=>Object.keys(e).length===0;function Pht(e){const{className:t,headingLevel:n=2,resetAll:o,panelId:r,hasInnerWrapper:s=!1,shouldRenderPlaceholderItems:i=!1,__experimentalFirstVisibleItemClass:c,__experimentalLastVisibleItemClass:l,...u}=vn(e,"ToolsPanel"),d=x.useRef(!1),p=d.current;x.useEffect(()=>{p&&(d.current=!1)},[p]);const[{panelItems:f,menuItems:b},h]=x.useReducer(Bht,void 0,Tht),[g,z]=x.useReducer(Lht,[]),A=x.useCallback(P=>{h({type:"REGISTER_PANEL",item:P})},[]),_=x.useCallback(P=>{h({type:"UNREGISTER_PANEL",label:P})},[]),v=x.useCallback(P=>{z({type:"REGISTER",filter:P})},[]),M=x.useCallback(P=>{z({type:"UNREGISTER",filter:P})},[]),y=x.useCallback((P,$,F="default")=>{h({type:"UPDATE_VALUE",group:F,label:$,value:P})},[]),k=x.useMemo(()=>LZ(b.default)&&!LZ(b.optional)&&Object.values(b.optional).every(P=>!P),[b]),S=ro(),C=x.useMemo(()=>{const P=s&&zht(NZ),$=k&&Oht;return S(Mht(NZ),P,$,t)},[k,t,S,s]),R=x.useCallback(P=>{h({type:"TOGGLE_VALUE",label:P})},[]),T=x.useCallback(()=>{typeof o=="function"&&(d.current=!0,o(g)),h({type:"RESET_ALL"})},[g,o]),E=P=>{const $=b.optional||{};return P.find(X=>X.isShownByDefault||$[X.label])?.label},B=E(f),N=E([...f].reverse()),j=f.length>0,I=x.useMemo(()=>({areAllOptionalControlsHidden:k,deregisterPanelItem:_,deregisterResetAllFilter:M,firstDisplayedItem:B,flagItemCustomization:y,hasMenuItems:j,isResetting:d.current,lastDisplayedItem:N,menuItems:b,panelId:r,registerPanelItem:A,registerResetAllFilter:v,shouldRenderPlaceholderItems:i,__experimentalFirstVisibleItemClass:c,__experimentalLastVisibleItemClass:l}),[k,_,M,B,y,N,b,r,j,v,A,i,c,l]);return{...u,headingLevel:n,panelContext:I,resetAllItems:T,toggleItem:R,className:C}}const jht=(e,t)=>{const{children:n,label:o,panelContext:r,resetAllItems:s,toggleItem:i,headingLevel:c,dropdownMenuProps:l,...u}=Pht(e);return a.jsx(nO,{...u,columns:2,ref:t,children:a.jsxs(Ez.Provider,{value:r,children:[a.jsx(Rht,{label:o,resetAll:s,toggleItem:i,headingLevel:c,dropdownMenuProps:l}),n]})})},En=Rn(jht,"ToolsPanel"),Iht=()=>{};function Dht(e){const{className:t,hasValue:n,isShownByDefault:o=!1,label:r,panelId:s,resetAllFilter:i=Iht,onDeselect:c,onSelect:l,...u}=vn(e,"ToolsPanelItem"),{panelId:d,menuItems:p,registerResetAllFilter:f,deregisterResetAllFilter:b,registerPanelItem:h,deregisterPanelItem:g,flagItemCustomization:z,isResetting:A,shouldRenderPlaceholderItems:_,firstDisplayedItem:v,lastDisplayedItem:M,__experimentalFirstVisibleItemClass:y,__experimentalLastVisibleItemClass:k}=g2e(),S=x.useCallback(n,[s]),C=x.useCallback(i,[s]),R=Fr(d),T=d===s||d===null;x.useLayoutEffect(()=>(T&&R!==null&&h({hasValue:S,isShownByDefault:o,label:r,panelId:s}),()=>{(R===null&&d||d===s)&&g(r)}),[d,T,o,r,S,s,R,h,g]),x.useEffect(()=>(T&&f(C),()=>{T&&b(C)}),[f,b,C,T]);const E=o?"default":"optional",B=p?.[E]?.[r],N=Fr(B),j=p?.[E]?.[r]!==void 0,I=n();x.useEffect(()=>{!o&&!I||z(I,r,E)},[I,E,r,z,o]),x.useEffect(()=>{!j||A||!T||(B&&!I&&!N&&l?.(),!B&&I&&N&&c?.())},[T,B,j,A,I,N,l,c]);const P=o?p?.[E]?.[r]!==void 0:B,$=ro(),F=x.useMemo(()=>{const X=_&&!P;return $(vht,X&&xht,!X&&t,v===r&&y,M===r&&k)},[P,_,t,$,v,M,y,k,r]);return{...u,isShown:P,shouldRenderPlaceholder:_,className:F}}const Fht=(e,t)=>{const{children:n,isShown:o,shouldRenderPlaceholder:r,...s}=Dht(e);return o?a.jsx(mo,{...s,ref:t,children:n}):r?a.jsx(mo,{...s,ref:t}):null},tt=Rn(Fht,"ToolsPanelItem"),M2e=x.createContext(void 0),$ht=()=>x.useContext(M2e),Vht=M2e.Provider;function Hht({children:e}){const[t,n]=x.useState(),o=x.useMemo(()=>({lastFocusedElement:t,setLastFocusedElement:n}),[t]);return a.jsx(Vht,{value:o,children:e})}function Uht({children:e,level:t,positionInSet:n,setSize:o,isExpanded:r,...s},i){return a.jsx("tr",{...s,ref:i,role:"row","aria-level":t,"aria-posinset":n,"aria-setsize":o,"aria-expanded":r,children:e})}const z2e=x.forwardRef(Uht),Xht=x.forwardRef(function({children:t,as:n,...o},r){const s=x.useRef(),i=r||s,{lastFocusedElement:c,setLastFocusedElement:l}=$ht();let u;c&&(u=c===("current"in i?i.current:void 0)?0:-1);const p={ref:i,tabIndex:u,onFocus:f=>l?.(f.target),...o};return typeof t=="function"?t(p):n?a.jsx(n,{...p,children:t}):null});function Ght({children:e,...t},n){return a.jsx(Xht,{ref:n,...t,children:e})}const dW=x.forwardRef(Ght);function Kht({children:e,withoutGridItem:t=!1,...n},o){return a.jsx("td",{...n,role:"gridcell",children:t?a.jsx(a.Fragment,{children:typeof e=="function"?e({...n,ref:o}):e}):a.jsx(dW,{ref:o,children:e})})}const f4=x.forwardRef(Kht);function Lg(e){return Xr.focusable.find(e,{sequential:!0}).filter(n=>n.closest('[role="row"]')===e)}function Yht({children:e,onExpandRow:t=()=>{},onCollapseRow:n=()=>{},onFocusRow:o=()=>{},applicationAriaLabel:r,...s},i){const c=x.useCallback(l=>{const{keyCode:u,metaKey:d,ctrlKey:p,altKey:f}=l;if(d||p||f||![cc,Ps,wi,_i,S2,FM].includes(u))return;l.stopPropagation();const{activeElement:h}=document,{currentTarget:g}=l;if(!h||!g.contains(h))return;const z=h.closest('[role="row"]');if(!z)return;const A=Lg(z),_=A.indexOf(h),v=_===0,M=v&&(z.getAttribute("data-expanded")==="false"||z.getAttribute("aria-expanded")==="false")&&u===_i;if([wi,_i].includes(u)){let k;if(u===wi?k=Math.max(0,_-1):k=Math.min(_+1,A.length-1),v){if(u===wi){var y;if(z.getAttribute("data-expanded")==="true"||z.getAttribute("aria-expanded")==="true"){n(z),l.preventDefault();return}const S=Math.max(parseInt((y=z?.getAttribute("aria-level"))!==null&&y!==void 0?y:"1",10)-1,1),C=Array.from(g.querySelectorAll('[role="row"]'));let R=z;const T=C.indexOf(z);for(let E=T;E>=0;E--){const B=C[E].getAttribute("aria-level");if(B!==null&&parseInt(B,10)===S){R=C[E];break}}Lg(R)?.[0]?.focus()}if(u===_i){if(z.getAttribute("data-expanded")==="false"||z.getAttribute("aria-expanded")==="false"){t(z),l.preventDefault();return}const S=Lg(z);S.length>0&&S[k]?.focus()}l.preventDefault();return}if(M)return;A[k].focus(),l.preventDefault()}else if([cc,Ps].includes(u)){const k=Array.from(g.querySelectorAll('[role="row"]')),S=k.indexOf(z);let C;if(u===cc?C=Math.max(0,S-1):C=Math.min(S+1,k.length-1),C===S){l.preventDefault();return}const R=Lg(k[C]);if(!R||!R.length){l.preventDefault();return}const T=Math.min(_,R.length-1);R[T].focus(),o(l,z,k[C]),l.preventDefault()}else if([S2,FM].includes(u)){const k=Array.from(g.querySelectorAll('[role="row"]')),S=k.indexOf(z);let C;if(u===S2?C=0:C=k.length-1,C===S){l.preventDefault();return}const R=Lg(k[C]);if(!R||!R.length){l.preventDefault();return}const T=Math.min(_,R.length-1);R[T].focus(),o(l,z,k[C]),l.preventDefault()}},[t,n,o]);return a.jsx(Hht,{children:a.jsx("div",{role:"application","aria-label":r,children:a.jsx("table",{...s,role:"treegrid",onKeyDown:c,ref:i,children:a.jsx("tbody",{children:e})})})})}const Zht=x.forwardRef(Yht),O2e=He("div",{target:"ebn2ljm1"})("&:not( :first-of-type ){",({offsetAmount:e})=>Xe({marginInlineStart:e},"",""),";}",({zIndex:e})=>Xe({zIndex:e},"",""),";");var Qht={name:"rs0gp6",styles:"grid-row-start:1;grid-column-start:1"};const Jht=He("div",{target:"ebn2ljm0"})("display:inline-grid;grid-auto-flow:column;position:relative;&>",O2e,"{position:relative;justify-self:start;",({isLayered:e})=>e?Qht:void 0,";}");function emt(e,t){const{children:n,className:o,isLayered:r=!0,isReversed:s=!1,offset:i=0,...c}=vn(e,"ZStack"),l=xpe(n),u=l.length-1,d=l.map((p,f)=>{const b=s?u-f:f,h=r?i*f:i,g=x.isValidElement(p)?p.key:f;return a.jsx(O2e,{offsetAmount:h,zIndex:b,children:p},g)});return a.jsx(Jht,{...c,className:o,isLayered:r,ref:t,children:d})}const y2e=Rn(emt,"ZStack"),tmt=Or(e=>function(n){const o=$N();return a.jsx("div",{ref:o,tabIndex:-1,children:a.jsx(e,{...n})})},"withConstrainedTabbing"),nmt=16;function ap(e){return Or(t=>{const n="core/with-filters/"+e;let o;function r(){o===void 0&&(o=gr(e,t))}class s extends x.Component{constructor(u){super(u),r()}componentDidMount(){s.instances.push(this),s.instances.length===1&&(C4("hookRemoved",n,c),C4("hookAdded",n,c))}componentWillUnmount(){s.instances=s.instances.filter(u=>u!==this),s.instances.length===0&&(zE("hookRemoved",n),zE("hookAdded",n))}render(){return a.jsx(o,{...this.props})}}s.instances=[];const i=F1(()=>{o=gr(e,t),s.instances.forEach(l=>{l.forceUpdate()})},nmt);function c(l){l===e&&i()}return s},"withFilters")}function omt(e){return e instanceof x.Component||typeof e=="function"}const rmt=Or(e=>{const t=({onFocusReturn:n}={})=>o=>s=>{const i=HN(n);return a.jsx("div",{ref:i,children:a.jsx(o,{...s})})};if(omt(e)){const n=e;return t()(n)}return t(e)},"withFocusReturn"),smt=Or(e=>{function t(r,s){const[i,c]=x.useState([]),l=x.useMemo(()=>{const d=p=>{const f=p.id?p:{...p,id:Is()};c(b=>[...b,f])};return{createNotice:d,createErrorNotice:p=>{d({status:"error",content:p})},removeNotice:p=>{c(f=>f.filter(b=>b.id!==p))},removeAllNotices:()=>{c([])}}},[]),u={...r,noticeList:i,noticeOperations:l,noticeUI:i.length>0&&a.jsx(lW,{className:"components-with-notices-ui",notices:i,onRemove:l.removeNotice})};return n?a.jsx(e,{...u,ref:s}):a.jsx(e,{...u})}let n;const{render:o}=e;return typeof o=="function"?(n=!0,x.forwardRef(t)):t},"withNotices"),ys=x.createContext(void 0),M2={SCALE_AMOUNT_OUTER:.82,SCALE_AMOUNT_CONTENT:.9,DURATION:{IN:"400ms",OUT:"200ms"},EASING:"cubic-bezier(0.33, 0, 0, 1)"},A2e=Je(1),imt=Je(2),Dj=Je(3),amt=Ze.theme.gray[300],cmt=Ze.theme.gray[200],Fj=Ze.theme.gray[700],lmt=Ze.theme.gray[100],v2e=Ze.theme.foreground,umt=`0 0 0 ${Ye.borderWidth} ${amt}, ${Ye.elevationMedium}`,dmt=`0 0 0 ${Ye.borderWidth} ${v2e}`,x2e="minmax( 0, max-content ) 1fr",pmt=He("div",{target:"e1wg7tti14"})("position:relative;background-color:",Ze.ui.background,";border-radius:",Ye.radiusMedium,";",e=>Xe("box-shadow:",e.variant==="toolbar"?dmt:umt,";","")," overflow:hidden;@media not ( prefers-reduced-motion ){transition-property:transform,opacity;transition-timing-function:",M2.EASING,";transition-duration:",M2.DURATION.IN,";will-change:transform,opacity;opacity:0;&:has( [data-enter] ){opacity:1;}&:has( [data-leave] ){transition-duration:",M2.DURATION.OUT,";}&:has( [data-side='bottom'] ),&:has( [data-side='top'] ){transform:scaleY( ",M2.SCALE_AMOUNT_OUTER," );}&:has( [data-side='bottom'] ){transform-origin:top;}&:has( [data-side='top'] ){transform-origin:bottom;}&:has( [data-enter][data-side='bottom'] ),&:has( [data-enter][data-side='top'] ),&:has( [data-leave][data-side='bottom'] ),&:has( [data-leave][data-side='top'] ){transform:scaleY( 1 );}}"),Ah=He("div",{target:"e1wg7tti13"})("position:relative;z-index:1000000;display:grid;grid-template-columns:",x2e,";grid-template-rows:auto;box-sizing:border-box;min-width:160px;max-width:320px;max-height:var( --popover-available-height );padding:",A2e,`;overscroll-behavior:contain;overflow:auto;outline:2px solid transparent!important;@media not ( prefers-reduced-motion ){transition:inherit;transform-origin:inherit;&[data-side='bottom'],&[data-side='top']{transform:scaleY( +`;function b2e({html:e="",title:t="",type:n,styles:o=[],scripts:r=[],onFocus:s,tabIndex:i}){const c=x.useRef(),[l,u]=x.useState(0),[d,p]=x.useState(0);function f(){try{return!!c.current?.contentDocument?.body}catch{return!1}}function b(h=!1){if(!f())return;const{contentDocument:g,ownerDocument:z}=c.current;if(!h&&g?.body.getAttribute("data-resizable-iframe-connected")!==null)return;const A=a.jsxs("html",{lang:z.documentElement.lang,className:n,children:[a.jsxs("head",{children:[a.jsx("title",{children:t}),a.jsx("style",{dangerouslySetInnerHTML:{__html:H2t}}),o.map((_,v)=>a.jsx("style",{dangerouslySetInnerHTML:{__html:_}},v))]}),a.jsxs("body",{"data-resizable-iframe-connected":"data-resizable-iframe-connected",className:n,children:[a.jsx("div",{dangerouslySetInnerHTML:{__html:e}}),a.jsx("script",{type:"text/javascript",dangerouslySetInnerHTML:{__html:`(${V2t.toString()})();`}}),r.map(_=>a.jsx("script",{src:_},_))]})]});g.open(),g.write("<!DOCTYPE html>"+M1(A)),g.close()}return x.useEffect(()=>{b();function h(){b(!1)}function g(_){const v=c.current;if(!v||v.contentWindow!==_.source)return;let M=_.data||{};if(typeof M=="string")try{M=JSON.parse(M)}catch{}M.action==="resize"&&(u(M.width),p(M.height))}const z=c.current,A=z?.ownerDocument?.defaultView;return z?.addEventListener("load",h,!1),A?.addEventListener("message",g),()=>{z?.removeEventListener("load",h,!1),A?.removeEventListener("message",g)}},[]),x.useEffect(()=>{b()},[t,o,r]),x.useEffect(()=>{b(!0)},[e,n]),a.jsx("iframe",{ref:xn([c,C0e()]),title:t,tabIndex:i,className:"components-sandbox",sandbox:"allow-scripts allow-same-origin allow-presentation",onFocus:s,width:Math.ceil(l),height:Math.ceil(d)})}const U2t=1e4;function X2t(e,t){const n=typeof e=="string"?e:M1(e);x.useEffect(()=>{n&&Yt(n,t)},[n,t])}function G2t({className:e,children:t,spokenMessage:n=t,politeness:o="polite",actions:r=[],onRemove:s,icon:i=null,explicitDismiss:c=!1,onDismiss:l,listRef:u},d){function p(z){z&&z.preventDefault&&z.preventDefault(),u?.current?.focus(),l?.(),s?.()}function f(z,A){z.stopPropagation(),s?.(),A&&A(z)}X2t(n,o);const b=x.useRef({onDismiss:l,onRemove:s});x.useLayoutEffect(()=>{b.current={onDismiss:l,onRemove:s}}),x.useEffect(()=>{const z=setTimeout(()=>{c||(b.current.onDismiss?.(),b.current.onRemove?.())},U2t);return()=>clearTimeout(z)},[c]);const h=oe(e,"components-snackbar",{"components-snackbar-explicit-dismiss":!!c});r&&r.length>1&&(globalThis.SCRIPT_DEBUG===!0&&zn("Snackbar can only have one action. Use Notice if your message requires many actions."),r=[r[0]]);const g=oe("components-snackbar__content",{"components-snackbar__content-with-icon":!!i});return a.jsx("div",{ref:d,className:h,onClick:c?void 0:p,tabIndex:0,role:c?void 0:"button",onKeyPress:c?void 0:p,"aria-label":c?void 0:m("Dismiss this notice"),"data-testid":"snackbar",children:a.jsxs("div",{className:g,children:[i&&a.jsx("div",{className:"components-snackbar__icon",children:i}),t,r.map(({label:z,onClick:A,url:_},v)=>a.jsx(Ce,{__next40pxDefaultSize:!0,href:_,variant:"link",onClick:M=>f(M,A),className:"components-snackbar__action",children:z},v)),c&&a.jsx("span",{role:"button","aria-label":m("Dismiss this notice"),tabIndex:0,className:"components-snackbar__dismiss-button",onClick:p,onKeyPress:p,children:"✕"})]})})}const K2t=x.forwardRef(G2t),Y2t={init:{height:0,opacity:0},open:{height:"auto",opacity:1,transition:{height:{type:"tween",duration:.3,ease:[0,0,.2,1]},opacity:{type:"tween",duration:.25,delay:.05,ease:[0,0,.2,1]}}},exit:{opacity:0,transition:{type:"tween",duration:.1,ease:[0,0,.2,1]}}};function Z2t({notices:e,className:t,children:n,onRemove:o}){const r=x.useRef(null),s=$1();t=oe("components-snackbar-list",t);const i=c=>()=>o?.(c.id);return a.jsxs("div",{className:t,tabIndex:-1,ref:r,"data-testid":"snackbar-list",children:[n,a.jsx(Wd,{children:e.map(c=>{const{content:l,...u}=c;return a.jsx(Rr.div,{layout:!s,initial:"init",animate:"open",exit:"exit",variants:s?void 0:Y2t,children:a.jsx("div",{className:"components-snackbar-list__notice-container",children:a.jsx(K2t,{...u,onRemove:i(c),listRef:r,children:c.content})})},c.id)})})]})}function Q2t(e,t){const{__nextHasNoMarginBottom:n,__next40pxDefaultSize:o=!1,label:r,hideLabelFromVision:s,value:i,help:c,id:l,className:u,onChange:d,type:p="text",...f}=e,b=vt(dn,"inspector-text-control",l),h=g=>d(g.target.value);return q1({componentName:"TextControl",size:void 0,__next40pxDefaultSize:o}),a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"TextControl",label:r,hideLabelFromVision:s,id:b,help:c,className:u,children:a.jsx("input",{className:oe("components-text-control__input",{"is-next-40px-default-size":o}),type:p,id:b,value:i,onChange:h,"aria-describedby":c?b+"__help":void 0,ref:t,...f})})}const dn=x.forwardRef(Q2t),J2t=Xe("box-shadow:0 0 0 transparent;border-radius:",Ye.radiusSmall,";border:",Ye.borderWidth," solid ",Ze.ui.border,";@media not ( prefers-reduced-motion ){transition:box-shadow 0.1s linear;}",""),eht=Xe("border-color:",Ze.theme.accent,";box-shadow:0 0 0 calc( ",Ye.borderWidthFocus," - ",Ye.borderWidth," ) ",Ze.theme.accent,";outline:2px solid transparent;",""),tht=He("textarea",{target:"e1w5nnrk0"})("width:100%;display:block;font-family:",la("default.fontFamily"),";line-height:20px;padding:9px 11px;",J2t,";font-size:",la("mobileTextMinFontSize"),";",UHe("small"),"{font-size:",la("default.fontSize"),";}&:focus{",eht,";}&::-webkit-input-placeholder{color:",Ze.ui.darkGrayPlaceholder,";}&::-moz-placeholder{opacity:1;color:",Ze.ui.darkGrayPlaceholder,";}&:-ms-input-placeholder{color:",Ze.ui.darkGrayPlaceholder,";}.is-dark-theme &{&::-webkit-input-placeholder{color:",Ze.ui.lightGrayPlaceholder,";}&::-moz-placeholder{opacity:1;color:",Ze.ui.lightGrayPlaceholder,";}&:-ms-input-placeholder{color:",Ze.ui.lightGrayPlaceholder,";}}");function nht(e,t){const{__nextHasNoMarginBottom:n,label:o,hideLabelFromVision:r,value:s,help:i,onChange:c,rows:l=4,className:u,...d}=e,f=`inspector-textarea-control-${vt(Li)}`,b=h=>c(h.target.value);return a.jsx(no,{__nextHasNoMarginBottom:n,__associatedWPComponentName:"TextareaControl",label:o,hideLabelFromVision:r,id:f,help:i,className:u,children:a.jsx(tht,{className:"components-textarea-control__input",id:f,rows:l,onChange:b,"aria-describedby":i?f+"__help":void 0,value:s,ref:t,...d})})}const Li=x.forwardRef(nht),oht=e=>{const{text:t="",highlight:n=""}=e,o=n.trim();if(!o)return a.jsx(a.Fragment,{children:t});const r=new RegExp(`(${xz(o)})`,"gi");return cr(t.replace(r,"<mark>$&</mark>"),{mark:a.jsx("mark",{})})};function rht(e){const{children:t}=e;return a.jsxs("div",{className:"components-tip",children:[a.jsx(wn,{icon:aJe}),a.jsx("p",{children:t})]})}function sht({__nextHasNoMarginBottom:e,label:t,checked:n,help:o,className:r,onChange:s,disabled:i},c){function l(g){s(g.target.checked)}const d=`inspector-toggle-control-${vt(lt)}`,f=ro()("components-toggle-control",r,!e&&Xe({marginBottom:Je(3)},"",""));e||Ke("Bottom margin styles for wp.components.ToggleControl",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."});let b,h;return o&&(typeof o=="function"?n!==void 0&&(h=o(n)):h=o,h&&(b=d+"__help")),a.jsx(no,{id:d,help:h&&a.jsx("span",{className:"components-toggle-control__help",children:h}),className:f,__nextHasNoMarginBottom:!0,children:a.jsxs(Ot,{justify:"flex-start",spacing:2,children:[a.jsx(sbt,{id:d,checked:n,onChange:l,"aria-describedby":b,disabled:i,ref:c}),a.jsx(eu,{as:"label",htmlFor:d,className:oe("components-toggle-control__label",{"is-disabled":i}),children:t})]})})}const lt=x.forwardRef(sht),jd=x.createContext(void 0);function iht({children:e,as:t,...n},o){const r=x.useContext(jd),s=typeof e=="function";if(!s&&!t)return globalThis.SCRIPT_DEBUG===!0&&zn("`ToolbarItem` is a generic headless component. You must pass either a `children` prop as a function or an `as` prop as a component. See https://developer.wordpress.org/block-editor/components/toolbar-item/"),null;const i={...n,ref:o,"data-toolbar-item":!0};if(!r)return t?a.jsx(t,{...i,children:e}):s?e(i):null;const c=s?e:t&&a.jsx(t,{children:e});return a.jsx(W$e,{accessibleWhenDisabled:!0,...i,store:r,render:c})}const bs=x.forwardRef(iht),aht=({children:e,className:t})=>a.jsx("div",{className:t,children:e});function cht({isDisabled:e,...t}){return{disabled:e,...t}}function lht(e,t){const{children:n,className:o,containerClassName:r,extraProps:s,isActive:i,title:c,...l}=cht(e);return x.useContext(jd)?a.jsx(bs,{className:oe("components-toolbar-button",o),...s,...l,ref:t,children:d=>a.jsx(Ce,{size:"compact",label:c,isPressed:i,...d,children:n})}):a.jsx(aht,{className:r,children:a.jsx(Ce,{ref:t,icon:l.icon,size:"compact",label:c,shortcut:l.shortcut,"data-subscript":l.subscript,onClick:d=>{d.stopPropagation(),l.onClick&&l.onClick(d)},className:oe("components-toolbar__control",o),isPressed:i,accessibleWhenDisabled:!0,"data-toolbar-item":!0,...s,...l,children:n})})}const Vt=x.forwardRef(lht),uht=({className:e,children:t,...n})=>a.jsx("div",{className:e,...n,children:t});function dht({controls:e=[],toggleProps:t,...n}){const o=x.useContext(jd),r=s=>a.jsx(c0,{controls:e,toggleProps:{...s,"data-toolbar-item":!0},...n});return o?a.jsx(bs,{...t,children:r}):r(t)}function pht(e){return Array.isArray(e)&&Array.isArray(e[0])}function Wn({controls:e=[],children:t,className:n,isCollapsed:o,title:r,...s}){const i=x.useContext(jd);if((!e||!e.length)&&!t)return null;const c=oe(i?"components-toolbar-group":"components-toolbar",n);let l;return pht(e)?l=e:l=[e],o?a.jsx(dht,{label:r,controls:l,className:c,children:t,...s}):a.jsxs(uht,{className:c,...s,children:[l?.flatMap((u,d)=>u.map((p,f)=>a.jsx(Vt,{containerClassName:d>0&&f===0?"has-left-divider":void 0,...p},[d,f].join()))),t]})}function fht({label:e,...t},n){const o=Gce({focusLoop:!0,rtl:jt()});return a.jsx(jd.Provider,{value:o,children:a.jsx(R$e,{ref:n,"aria-label":e,store:o,...t})})}const bht=x.forwardRef(fht);function hht({className:e,label:t,variant:n,...o},r){const s=n!==void 0,i=x.useMemo(()=>s?{}:{DropdownMenu:{variant:"toolbar"},Dropdown:{variant:"toolbar"},Menu:{variant:"toolbar"}},[s]);if(!t){Ke("Using Toolbar without label prop",{since:"5.6",alternative:"ToolbarGroup component",link:"https://developer.wordpress.org/block-editor/components/toolbar/"});const{title:l,...u}=o;return a.jsx(Wn,{isCollapsed:!1,...u,className:e})}const c=oe("components-accessible-toolbar",e,n&&`is-${n}`);return a.jsx(j3,{value:i,children:a.jsx(bht,{className:c,label:t,ref:r,...o})})}const h2e=x.forwardRef(hht);function mht(e,t){return x.useContext(jd)?a.jsx(bs,{ref:t,...e.toggleProps,children:o=>a.jsx(c0,{...e,popoverProps:{...e.popoverProps},toggleProps:o})}):a.jsx(c0,{...e})}const Lc=x.forwardRef(mht),cf={columns:e=>Xe("grid-template-columns:",`repeat( ${e}, minmax(0, 1fr) )`,";",""),spacing:Xe("column-gap:",Je(4),";row-gap:",Je(4),";",""),item:{fullWidth:{name:"18iuzk9",styles:"grid-column:1/-1"}}},ght=e=>Xe(cf.columns(e)," ",cf.spacing," border-top:",Ye.borderWidth," solid ",Ze.gray[300],";margin-top:-1px;padding:",Je(4),";",""),Mht=e=>Xe(">div:not( :first-of-type ){display:grid;",cf.columns(e)," ",cf.spacing," ",cf.item.fullWidth,";}",""),zht={name:"huufmu",styles:">div:not( :first-of-type ){display:none;}"},Oht=Xe(cf.item.fullWidth," gap:",Je(2),";.components-dropdown-menu{margin:",Je(-1)," 0;line-height:0;}&&&& .components-dropdown-menu__toggle{padding:0;min-width:",Je(6),";}",""),yht={name:"1pmxm02",styles:"font-size:inherit;font-weight:500;line-height:normal;&&{margin:0;}"},Aht=Xe(cf.item.fullWidth,"&>div,&>fieldset{padding-bottom:0;margin-bottom:0;max-width:100%;}&& ",Ope,"{margin-bottom:0;",ype,":last-child{margin-bottom:0;}}",vz,"{margin-bottom:0;}&& ",npe,"{label{line-height:1.4em;}}",""),vht={name:"eivff4",styles:"display:none"},xht={name:"16gsvie",styles:"min-width:200px"},m2e=He("span",{target:"ews648u0"})("color:",Ze.theme.accentDarker10,";font-size:11px;font-weight:500;line-height:1.4;",Go({marginLeft:Je(3)})," text-transform:uppercase;"),wht=Xe("color:",Ze.gray[900],";&&[aria-disabled='true']{color:",Ze.gray[700],";opacity:1;&:hover{color:",Ze.gray[700],";}",m2e,"{opacity:0.3;}}",""),Bg=()=>{},Ez=x.createContext({menuItems:{default:{},optional:{}},hasMenuItems:!1,isResetting:!1,shouldRenderPlaceholderItems:!1,registerPanelItem:Bg,deregisterPanelItem:Bg,flagItemCustomization:Bg,registerResetAllFilter:Bg,deregisterResetAllFilter:Bg,areAllOptionalControlsHidden:!0}),g2e=()=>x.useContext(Ez);function _ht(e){const{className:t,headingLevel:n=2,...o}=vn(e,"ToolsPanelHeader"),r=ro(),s=x.useMemo(()=>r(Oht,t),[t,r]),i=x.useMemo(()=>r(xht),[r]),c=x.useMemo(()=>r(yht),[r]),l=x.useMemo(()=>r(wht),[r]),{menuItems:u,hasMenuItems:d,areAllOptionalControlsHidden:p}=g2e();return{...o,areAllOptionalControlsHidden:p,defaultControlsItemClassName:l,dropdownMenuClassName:i,hasMenuItems:d,headingClassName:c,headingLevel:n,menuItems:u,className:s}}const kht=({itemClassName:e,items:t,toggleItem:n})=>{if(!t.length)return null;const o=a.jsx(m2e,{"aria-hidden":!0,children:m("Reset")});return a.jsx(a.Fragment,{children:t.map(([r,s])=>s?a.jsx(Ct,{className:e,role:"menuitem",label:xe(m("Reset %s"),r),onClick:()=>{n(r),Yt(xe(m("%s reset to default"),r),"assertive")},suffix:o,children:r},r):a.jsx(Ct,{icon:M0,className:e,role:"menuitemcheckbox",isSelected:!0,"aria-disabled":!0,children:r},r))})},Sht=({items:e,toggleItem:t})=>e.length?a.jsx(a.Fragment,{children:e.map(([n,o])=>{const r=xe(o?m("Hide and reset %s"):We("Show %s","input control"),n);return a.jsx(Ct,{icon:o?M0:null,isSelected:o,label:r,onClick:()=>{Yt(xe(m(o?"%s hidden and reset to default":"%s is now visible"),n),"assertive"),t(n)},role:"menuitemcheckbox",children:n},n)})}):null,Cht=(e,t)=>{const{areAllOptionalControlsHidden:n,defaultControlsItemClassName:o,dropdownMenuClassName:r,hasMenuItems:s,headingClassName:i,headingLevel:c=2,label:l,menuItems:u,resetAll:d,toggleItem:p,dropdownMenuProps:f,...b}=_ht(e);if(!l)return null;const h=Object.entries(u?.default||{}),g=Object.entries(u?.optional||{}),z=n?Fs:Wc,A=xe(We("%s options","Button label to reveal tool panel options"),l),_=n?m("All options are currently hidden"):void 0,v=[...h,...g].some(([,M])=>M);return a.jsxs(Ot,{...b,ref:t,children:[a.jsx(_a,{level:c,className:i,children:l}),s&&a.jsx(c0,{...f,icon:z,label:A,menuProps:{className:r},toggleProps:{size:"small",description:_},children:()=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{label:l,children:[a.jsx(kht,{items:h,toggleItem:p,itemClassName:o}),a.jsx(Sht,{items:g,toggleItem:p})]}),a.jsx(Cn,{children:a.jsx(Ct,{"aria-disabled":!v,variant:"tertiary",onClick:()=>{v&&(d(),Yt(m("All options reset"),"assertive"))},children:m("Reset all")})})]})})]})},qht=Rn(Cht,"ToolsPanelHeader"),NZ=2;function lW(){return{default:{},optional:{}}}function Rht(){return{panelItems:[],menuItemOrder:[],menuItems:lW()}}const BZ=({panelItems:e,shouldReset:t,currentMenuItems:n,menuItemOrder:o})=>{const r=lW(),s=lW();return e.forEach(({hasValue:i,isShownByDefault:c,label:l})=>{const u=c?"default":"optional",d=n?.[u]?.[l],p=d||i();r[u][l]=t?!1:p}),o.forEach(i=>{r.default.hasOwnProperty(i)&&(s.default[i]=r.default[i]),r.optional.hasOwnProperty(i)&&(s.optional[i]=r.optional[i])}),Object.keys(r.default).forEach(i=>{s.default.hasOwnProperty(i)||(s.default[i]=r.default[i])}),Object.keys(r.optional).forEach(i=>{s.optional.hasOwnProperty(i)||(s.optional[i]=r.optional[i])}),s};function Tht(e,t){switch(t.type){case"REGISTER_PANEL":{const n=[...e],o=n.findIndex(r=>r.label===t.item.label);return o!==-1&&n.splice(o,1),n.push(t.item),n}case"UNREGISTER_PANEL":{const n=e.findIndex(o=>o.label===t.label);if(n!==-1){const o=[...e];return o.splice(n,1),o}return e}default:return e}}function Eht(e,t){switch(t.type){case"REGISTER_PANEL":return e.includes(t.item.label)?e:[...e,t.item.label];default:return e}}function Wht(e,t){switch(t.type){case"REGISTER_PANEL":case"UNREGISTER_PANEL":return BZ({currentMenuItems:e.menuItems,panelItems:e.panelItems,menuItemOrder:e.menuItemOrder,shouldReset:!1});case"RESET_ALL":return BZ({panelItems:e.panelItems,menuItemOrder:e.menuItemOrder,shouldReset:!0});case"UPDATE_VALUE":{const n=e.menuItems[t.group][t.label];return t.value===n?e.menuItems:{...e.menuItems,[t.group]:{...e.menuItems[t.group],[t.label]:t.value}}}case"TOGGLE_VALUE":{const n=e.panelItems.find(s=>s.label===t.label);if(!n)return e.menuItems;const o=n.isShownByDefault?"default":"optional";return{...e.menuItems,[o]:{...e.menuItems[o],[t.label]:!e.menuItems[o][t.label]}}}default:return e.menuItems}}function Nht(e,t){const n=Tht(e.panelItems,t),o=Eht(e.menuItemOrder,t),r=Wht({panelItems:n,menuItemOrder:o,menuItems:e.menuItems},t);return{panelItems:n,menuItemOrder:o,menuItems:r}}function Bht(e,t){switch(t.type){case"REGISTER":return[...e,t.filter];case"UNREGISTER":return e.filter(n=>n!==t.filter);default:return e}}const LZ=e=>Object.keys(e).length===0;function Lht(e){const{className:t,headingLevel:n=2,resetAll:o,panelId:r,hasInnerWrapper:s=!1,shouldRenderPlaceholderItems:i=!1,__experimentalFirstVisibleItemClass:c,__experimentalLastVisibleItemClass:l,...u}=vn(e,"ToolsPanel"),d=x.useRef(!1),p=d.current;x.useEffect(()=>{p&&(d.current=!1)},[p]);const[{panelItems:f,menuItems:b},h]=x.useReducer(Nht,void 0,Rht),[g,z]=x.useReducer(Bht,[]),A=x.useCallback(P=>{h({type:"REGISTER_PANEL",item:P})},[]),_=x.useCallback(P=>{h({type:"UNREGISTER_PANEL",label:P})},[]),v=x.useCallback(P=>{z({type:"REGISTER",filter:P})},[]),M=x.useCallback(P=>{z({type:"UNREGISTER",filter:P})},[]),y=x.useCallback((P,$,F="default")=>{h({type:"UPDATE_VALUE",group:F,label:$,value:P})},[]),k=x.useMemo(()=>LZ(b.default)&&!LZ(b.optional)&&Object.values(b.optional).every(P=>!P),[b]),S=ro(),C=x.useMemo(()=>{const P=s&&Mht(NZ),$=k&&zht;return S(ght(NZ),P,$,t)},[k,t,S,s]),R=x.useCallback(P=>{h({type:"TOGGLE_VALUE",label:P})},[]),T=x.useCallback(()=>{typeof o=="function"&&(d.current=!0,o(g)),h({type:"RESET_ALL"})},[g,o]),E=P=>{const $=b.optional||{};return P.find(X=>X.isShownByDefault||$[X.label])?.label},B=E(f),N=E([...f].reverse()),j=f.length>0,I=x.useMemo(()=>({areAllOptionalControlsHidden:k,deregisterPanelItem:_,deregisterResetAllFilter:M,firstDisplayedItem:B,flagItemCustomization:y,hasMenuItems:j,isResetting:d.current,lastDisplayedItem:N,menuItems:b,panelId:r,registerPanelItem:A,registerResetAllFilter:v,shouldRenderPlaceholderItems:i,__experimentalFirstVisibleItemClass:c,__experimentalLastVisibleItemClass:l}),[k,_,M,B,y,N,b,r,j,v,A,i,c,l]);return{...u,headingLevel:n,panelContext:I,resetAllItems:T,toggleItem:R,className:C}}const Pht=(e,t)=>{const{children:n,label:o,panelContext:r,resetAllItems:s,toggleItem:i,headingLevel:c,dropdownMenuProps:l,...u}=Lht(e);return a.jsx(nO,{...u,columns:2,ref:t,children:a.jsxs(Ez.Provider,{value:r,children:[a.jsx(qht,{label:o,resetAll:s,toggleItem:i,headingLevel:c,dropdownMenuProps:l}),n]})})},En=Rn(Pht,"ToolsPanel"),jht=()=>{};function Iht(e){const{className:t,hasValue:n,isShownByDefault:o=!1,label:r,panelId:s,resetAllFilter:i=jht,onDeselect:c,onSelect:l,...u}=vn(e,"ToolsPanelItem"),{panelId:d,menuItems:p,registerResetAllFilter:f,deregisterResetAllFilter:b,registerPanelItem:h,deregisterPanelItem:g,flagItemCustomization:z,isResetting:A,shouldRenderPlaceholderItems:_,firstDisplayedItem:v,lastDisplayedItem:M,__experimentalFirstVisibleItemClass:y,__experimentalLastVisibleItemClass:k}=g2e(),S=x.useCallback(n,[s]),C=x.useCallback(i,[s]),R=Fr(d),T=d===s||d===null;x.useLayoutEffect(()=>(T&&R!==null&&h({hasValue:S,isShownByDefault:o,label:r,panelId:s}),()=>{(R===null&&d||d===s)&&g(r)}),[d,T,o,r,S,s,R,h,g]),x.useEffect(()=>(T&&f(C),()=>{T&&b(C)}),[f,b,C,T]);const E=o?"default":"optional",B=p?.[E]?.[r],N=Fr(B),j=p?.[E]?.[r]!==void 0,I=n();x.useEffect(()=>{!o&&!I||z(I,r,E)},[I,E,r,z,o]),x.useEffect(()=>{!j||A||!T||(B&&!I&&!N&&l?.(),!B&&I&&N&&c?.())},[T,B,j,A,I,N,l,c]);const P=o?p?.[E]?.[r]!==void 0:B,$=ro(),F=x.useMemo(()=>{const X=_&&!P;return $(Aht,X&&vht,!X&&t,v===r&&y,M===r&&k)},[P,_,t,$,v,M,y,k,r]);return{...u,isShown:P,shouldRenderPlaceholder:_,className:F}}const Dht=(e,t)=>{const{children:n,isShown:o,shouldRenderPlaceholder:r,...s}=Iht(e);return o?a.jsx(mo,{...s,ref:t,children:n}):r?a.jsx(mo,{...s,ref:t}):null},tt=Rn(Dht,"ToolsPanelItem"),M2e=x.createContext(void 0),Fht=()=>x.useContext(M2e),$ht=M2e.Provider;function Vht({children:e}){const[t,n]=x.useState(),o=x.useMemo(()=>({lastFocusedElement:t,setLastFocusedElement:n}),[t]);return a.jsx($ht,{value:o,children:e})}function Hht({children:e,level:t,positionInSet:n,setSize:o,isExpanded:r,...s},i){return a.jsx("tr",{...s,ref:i,role:"row","aria-level":t,"aria-posinset":n,"aria-setsize":o,"aria-expanded":r,children:e})}const z2e=x.forwardRef(Hht),Uht=x.forwardRef(function({children:t,as:n,...o},r){const s=x.useRef(),i=r||s,{lastFocusedElement:c,setLastFocusedElement:l}=Fht();let u;c&&(u=c===("current"in i?i.current:void 0)?0:-1);const p={ref:i,tabIndex:u,onFocus:f=>l?.(f.target),...o};return typeof t=="function"?t(p):n?a.jsx(n,{...p,children:t}):null});function Xht({children:e,...t},n){return a.jsx(Uht,{ref:n,...t,children:e})}const uW=x.forwardRef(Xht);function Ght({children:e,withoutGridItem:t=!1,...n},o){return a.jsx("td",{...n,role:"gridcell",children:t?a.jsx(a.Fragment,{children:typeof e=="function"?e({...n,ref:o}):e}):a.jsx(uW,{ref:o,children:e})})}const p4=x.forwardRef(Ght);function Lg(e){return Xr.focusable.find(e,{sequential:!0}).filter(n=>n.closest('[role="row"]')===e)}function Kht({children:e,onExpandRow:t=()=>{},onCollapseRow:n=()=>{},onFocusRow:o=()=>{},applicationAriaLabel:r,...s},i){const c=x.useCallback(l=>{const{keyCode:u,metaKey:d,ctrlKey:p,altKey:f}=l;if(d||p||f||![cc,Ps,wi,_i,S2,FM].includes(u))return;l.stopPropagation();const{activeElement:h}=document,{currentTarget:g}=l;if(!h||!g.contains(h))return;const z=h.closest('[role="row"]');if(!z)return;const A=Lg(z),_=A.indexOf(h),v=_===0,M=v&&(z.getAttribute("data-expanded")==="false"||z.getAttribute("aria-expanded")==="false")&&u===_i;if([wi,_i].includes(u)){let k;if(u===wi?k=Math.max(0,_-1):k=Math.min(_+1,A.length-1),v){if(u===wi){var y;if(z.getAttribute("data-expanded")==="true"||z.getAttribute("aria-expanded")==="true"){n(z),l.preventDefault();return}const S=Math.max(parseInt((y=z?.getAttribute("aria-level"))!==null&&y!==void 0?y:"1",10)-1,1),C=Array.from(g.querySelectorAll('[role="row"]'));let R=z;const T=C.indexOf(z);for(let E=T;E>=0;E--){const B=C[E].getAttribute("aria-level");if(B!==null&&parseInt(B,10)===S){R=C[E];break}}Lg(R)?.[0]?.focus()}if(u===_i){if(z.getAttribute("data-expanded")==="false"||z.getAttribute("aria-expanded")==="false"){t(z),l.preventDefault();return}const S=Lg(z);S.length>0&&S[k]?.focus()}l.preventDefault();return}if(M)return;A[k].focus(),l.preventDefault()}else if([cc,Ps].includes(u)){const k=Array.from(g.querySelectorAll('[role="row"]')),S=k.indexOf(z);let C;if(u===cc?C=Math.max(0,S-1):C=Math.min(S+1,k.length-1),C===S){l.preventDefault();return}const R=Lg(k[C]);if(!R||!R.length){l.preventDefault();return}const T=Math.min(_,R.length-1);R[T].focus(),o(l,z,k[C]),l.preventDefault()}else if([S2,FM].includes(u)){const k=Array.from(g.querySelectorAll('[role="row"]')),S=k.indexOf(z);let C;if(u===S2?C=0:C=k.length-1,C===S){l.preventDefault();return}const R=Lg(k[C]);if(!R||!R.length){l.preventDefault();return}const T=Math.min(_,R.length-1);R[T].focus(),o(l,z,k[C]),l.preventDefault()}},[t,n,o]);return a.jsx(Vht,{children:a.jsx("div",{role:"application","aria-label":r,children:a.jsx("table",{...s,role:"treegrid",onKeyDown:c,ref:i,children:a.jsx("tbody",{children:e})})})})}const Yht=x.forwardRef(Kht),O2e=He("div",{target:"ebn2ljm1"})("&:not( :first-of-type ){",({offsetAmount:e})=>Xe({marginInlineStart:e},"",""),";}",({zIndex:e})=>Xe({zIndex:e},"",""),";");var Zht={name:"rs0gp6",styles:"grid-row-start:1;grid-column-start:1"};const Qht=He("div",{target:"ebn2ljm0"})("display:inline-grid;grid-auto-flow:column;position:relative;&>",O2e,"{position:relative;justify-self:start;",({isLayered:e})=>e?Zht:void 0,";}");function Jht(e,t){const{children:n,className:o,isLayered:r=!0,isReversed:s=!1,offset:i=0,...c}=vn(e,"ZStack"),l=xpe(n),u=l.length-1,d=l.map((p,f)=>{const b=s?u-f:f,h=r?i*f:i,g=x.isValidElement(p)?p.key:f;return a.jsx(O2e,{offsetAmount:h,zIndex:b,children:p},g)});return a.jsx(Qht,{...c,className:o,isLayered:r,ref:t,children:d})}const y2e=Rn(Jht,"ZStack"),emt=Or(e=>function(n){const o=FN();return a.jsx("div",{ref:o,tabIndex:-1,children:a.jsx(e,{...n})})},"withConstrainedTabbing"),tmt=16;function ap(e){return Or(t=>{const n="core/with-filters/"+e;let o;function r(){o===void 0&&(o=gr(e,t))}class s extends x.Component{constructor(u){super(u),r()}componentDidMount(){s.instances.push(this),s.instances.length===1&&(S4("hookRemoved",n,c),S4("hookAdded",n,c))}componentWillUnmount(){s.instances=s.instances.filter(u=>u!==this),s.instances.length===0&&(ME("hookRemoved",n),ME("hookAdded",n))}render(){return a.jsx(o,{...this.props})}}s.instances=[];const i=F1(()=>{o=gr(e,t),s.instances.forEach(l=>{l.forceUpdate()})},tmt);function c(l){l===e&&i()}return s},"withFilters")}function nmt(e){return e instanceof x.Component||typeof e=="function"}const omt=Or(e=>{const t=({onFocusReturn:n}={})=>o=>s=>{const i=VN(n);return a.jsx("div",{ref:i,children:a.jsx(o,{...s})})};if(nmt(e)){const n=e;return t()(n)}return t(e)},"withFocusReturn"),rmt=Or(e=>{function t(r,s){const[i,c]=x.useState([]),l=x.useMemo(()=>{const d=p=>{const f=p.id?p:{...p,id:Is()};c(b=>[...b,f])};return{createNotice:d,createErrorNotice:p=>{d({status:"error",content:p})},removeNotice:p=>{c(f=>f.filter(b=>b.id!==p))},removeAllNotices:()=>{c([])}}},[]),u={...r,noticeList:i,noticeOperations:l,noticeUI:i.length>0&&a.jsx(cW,{className:"components-with-notices-ui",notices:i,onRemove:l.removeNotice})};return n?a.jsx(e,{...u,ref:s}):a.jsx(e,{...u})}let n;const{render:o}=e;return typeof o=="function"?(n=!0,x.forwardRef(t)):t},"withNotices"),ys=x.createContext(void 0),M2={SCALE_AMOUNT_OUTER:.82,SCALE_AMOUNT_CONTENT:.9,DURATION:{IN:"400ms",OUT:"200ms"},EASING:"cubic-bezier(0.33, 0, 0, 1)"},A2e=Je(1),smt=Je(2),Ij=Je(3),imt=Ze.theme.gray[300],amt=Ze.theme.gray[200],Dj=Ze.theme.gray[700],cmt=Ze.theme.gray[100],v2e=Ze.theme.foreground,lmt=`0 0 0 ${Ye.borderWidth} ${imt}, ${Ye.elevationMedium}`,umt=`0 0 0 ${Ye.borderWidth} ${v2e}`,x2e="minmax( 0, max-content ) 1fr",dmt=He("div",{target:"e1wg7tti14"})("position:relative;background-color:",Ze.ui.background,";border-radius:",Ye.radiusMedium,";",e=>Xe("box-shadow:",e.variant==="toolbar"?umt:lmt,";","")," overflow:hidden;@media not ( prefers-reduced-motion ){transition-property:transform,opacity;transition-timing-function:",M2.EASING,";transition-duration:",M2.DURATION.IN,";will-change:transform,opacity;opacity:0;&:has( [data-enter] ){opacity:1;}&:has( [data-leave] ){transition-duration:",M2.DURATION.OUT,";}&:has( [data-side='bottom'] ),&:has( [data-side='top'] ){transform:scaleY( ",M2.SCALE_AMOUNT_OUTER," );}&:has( [data-side='bottom'] ){transform-origin:top;}&:has( [data-side='top'] ){transform-origin:bottom;}&:has( [data-enter][data-side='bottom'] ),&:has( [data-enter][data-side='top'] ),&:has( [data-leave][data-side='bottom'] ),&:has( [data-leave][data-side='top'] ){transform:scaleY( 1 );}}"),Ah=He("div",{target:"e1wg7tti13"})("position:relative;z-index:1000000;display:grid;grid-template-columns:",x2e,";grid-template-rows:auto;box-sizing:border-box;min-width:160px;max-width:320px;max-height:var( --popover-available-height );padding:",A2e,`;overscroll-behavior:contain;overflow:auto;outline:2px solid transparent!important;@media not ( prefers-reduced-motion ){transition:inherit;transform-origin:inherit;&[data-side='bottom'],&[data-side='top']{transform:scaleY( calc( 1 / `,M2.SCALE_AMOUNT_OUTER,` * `,M2.SCALE_AMOUNT_CONTENT,` ) - );}&[data-enter][data-side='bottom'],&[data-enter][data-side='top'],&[data-leave][data-side='bottom'],&[data-leave][data-side='top']{transform:scaleY( 1 );}}`),$j=Xe("all:unset;position:relative;min-height:",Je(10),";box-sizing:border-box;grid-column:1/-1;display:grid;grid-template-columns:",x2e,";align-items:center;@supports ( grid-template-columns: subgrid ){grid-template-columns:subgrid;}font-size:",ua("default.fontSize"),";font-family:inherit;font-weight:normal;line-height:20px;color:",Ze.theme.foreground,";border-radius:",Ye.radiusSmall,";padding-block:",imt,";padding-inline:",Dj,";scroll-margin:",A2e,";user-select:none;outline:none;&[aria-disabled='true']{color:",Ze.ui.textDisabled,`;cursor:not-allowed;}&[data-active-item]:not( [data-focus-visible] ):not( + );}&[data-enter][data-side='bottom'],&[data-enter][data-side='top'],&[data-leave][data-side='bottom'],&[data-leave][data-side='top']{transform:scaleY( 1 );}}`),Fj=Xe("all:unset;position:relative;min-height:",Je(10),";box-sizing:border-box;grid-column:1/-1;display:grid;grid-template-columns:",x2e,";align-items:center;@supports ( grid-template-columns: subgrid ){grid-template-columns:subgrid;}font-size:",la("default.fontSize"),";font-family:inherit;font-weight:normal;line-height:20px;color:",Ze.theme.foreground,";border-radius:",Ye.radiusSmall,";padding-block:",smt,";padding-inline:",Ij,";scroll-margin:",A2e,";user-select:none;outline:none;&[aria-disabled='true']{color:",Ze.ui.textDisabled,`;cursor:not-allowed;}&[data-active-item]:not( [data-focus-visible] ):not( [aria-disabled='true'] - ){background-color:`,Ze.theme.accent,";color:",Ze.theme.accentInverted,";}&[data-focus-visible]{box-shadow:0 0 0 1.5px ",Ze.theme.accent,";outline:2px solid transparent;}&:active,&[data-active]{}",Ah,':not(:focus) &:not(:focus)[aria-expanded="true"]{background-color:',lmt,";color:",Ze.theme.foreground,";}svg{fill:currentColor;}",""),fmt=He(r$e,{target:"e1wg7tti12"})($j,";"),pW=He(c$e,{target:"e1wg7tti11"})($j,";"),fW=He(d$e,{target:"e1wg7tti10"})($j,";"),Vj=He("span",{target:"e1wg7tti9"})("grid-column:1;",pW,">&,",fW,">&{min-width:",Je(6),";}",pW,">&,",fW,">&,&:not( :empty ){margin-inline-end:",Je(2),";}display:flex;align-items:center;justify-content:center;color:",Fj,";[data-active-item]:not( [data-focus-visible] )>&,[aria-disabled='true']>&{color:inherit;}"),Hj=He("div",{target:"e1wg7tti8"})("grid-column:2;display:flex;align-items:center;justify-content:space-between;gap:",Je(3),";pointer-events:none;"),Uj=He("div",{target:"e1wg7tti7"})("flex:1;display:inline-flex;flex-direction:column;gap:",Je(1),";"),Xj=He("span",{target:"e1wg7tti6"})("flex:0 1 fit-content;min-width:0;width:fit-content;display:flex;align-items:center;justify-content:center;gap:",Je(3),";color:",Fj,";[data-active-item]:not( [data-focus-visible] ) *:not(",Ah,") &,[aria-disabled='true'] *:not(",Ah,") &{color:inherit;}"),bmt=He(JFe,{target:"e1wg7tti5"})({name:"49aokf",styles:"display:contents"}),hmt=He(YFe,{target:"e1wg7tti4"})("grid-column:1/-1;padding-block-start:",Je(3),";padding-block-end:",Je(2),";padding-inline:",Dj,";"),mmt=He(b$e,{target:"e1wg7tti3"})("grid-column:1/-1;border:none;height:",Ye.borderWidth,";background-color:",e=>e.variant==="toolbar"?v2e:cmt,";margin-block:",Je(2),";margin-inline:",Dj,";outline:2px solid transparent;"),gmt=He(qo,{target:"e1wg7tti2"})("width:",Je(1.5),";",Go({transform:"scaleX(1)"},{transform:"scaleX(-1)"}),";"),Mmt=He(zs,{target:"e1wg7tti1"})("font-size:",ua("default.fontSize"),";line-height:20px;color:inherit;"),zmt=He(zs,{target:"e1wg7tti0"})("font-size:",ua("helpText.fontSize"),";line-height:16px;color:",Fj,";overflow-wrap:anywhere;[data-active-item]:not( [data-focus-visible] ) *:not( ",Ah," ) &,[aria-disabled='true'] *:not( ",Ah," ) &{color:inherit;}"),w2e=x.forwardRef(function({prefix:t,suffix:n,children:o,disabled:r=!1,hideOnClick:s=!0,store:i,...c},l){const u=x.useContext(ys);if(!u?.store)throw new Error("Menu.Item can only be rendered inside a Menu component");const d=i??u.store;return a.jsxs(fmt,{ref:l,...c,accessibleWhenDisabled:!0,disabled:r,hideOnClick:s,store:d,children:[a.jsx(Vj,{children:t}),a.jsxs(Hj,{children:[a.jsx(Uj,{children:o}),n&&a.jsx(Xj,{children:n})]})]})}),Omt=x.forwardRef(function({suffix:t,children:n,disabled:o=!1,hideOnClick:r=!1,...s},i){const c=x.useContext(ys);if(!c?.store)throw new Error("Menu.CheckboxItem can only be rendered inside a Menu component");return a.jsxs(pW,{ref:i,...s,accessibleWhenDisabled:!0,disabled:o,hideOnClick:r,store:c.store,children:[a.jsx(Uce,{store:c.store,render:a.jsx(Vj,{}),style:{width:"auto",height:"auto"},children:a.jsx(wn,{icon:M0,size:24})}),a.jsxs(Hj,{children:[a.jsx(Uj,{children:n}),t&&a.jsx(Xj,{children:t})]})]})}),ymt=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(dae,{cx:12,cy:12,r:3})}),Amt=x.forwardRef(function({suffix:t,children:n,disabled:o=!1,hideOnClick:r=!1,...s},i){const c=x.useContext(ys);if(!c?.store)throw new Error("Menu.RadioItem can only be rendered inside a Menu component");return a.jsxs(fW,{ref:i,...s,accessibleWhenDisabled:!0,disabled:o,hideOnClick:r,store:c.store,children:[a.jsx(Uce,{store:c.store,render:a.jsx(Vj,{}),style:{width:"auto",height:"auto"},children:a.jsx(wn,{icon:ymt,size:24})}),a.jsxs(Hj,{children:[a.jsx(Uj,{children:n}),t&&a.jsx(Xj,{children:t})]})]})}),vmt=x.forwardRef(function(t,n){const o=x.useContext(ys);if(!o?.store)throw new Error("Menu.Group can only be rendered inside a Menu component");return a.jsx(bmt,{ref:n,...t,store:o.store})}),xmt=x.forwardRef(function(t,n){const o=x.useContext(ys);if(!o?.store)throw new Error("Menu.GroupLabel can only be rendered inside a Menu component");return a.jsx(hmt,{ref:n,render:a.jsx(Sn,{upperCase:!0,variant:"muted",size:"11px",weight:500,lineHeight:"16px"}),...t,store:o.store})}),wmt=x.forwardRef(function(t,n){const o=x.useContext(ys);if(!o?.store)throw new Error("Menu.Separator can only be rendered inside a Menu component");return a.jsx(mmt,{ref:n,...t,store:o.store,variant:o.variant})}),_mt=x.forwardRef(function(t,n){if(!x.useContext(ys)?.store)throw new Error("Menu.ItemLabel can only be rendered inside a Menu component");return a.jsx(Mmt,{numberOfLines:1,ref:n,...t})}),kmt=x.forwardRef(function(t,n){if(!x.useContext(ys)?.store)throw new Error("Menu.ItemHelpText can only be rendered inside a Menu component");return a.jsx(zmt,{numberOfLines:2,ref:n,...t})}),Smt=x.forwardRef(function({children:t,disabled:n=!1,...o},r){const s=x.useContext(ys);if(!s?.store)throw new Error("Menu.TriggerButton can only be rendered inside a Menu component");if(s.store.parent)throw new Error("Menu.TriggerButton should not be rendered inside a nested Menu component. Use Menu.SubmenuTriggerItem instead.");return a.jsx(Hce,{ref:r,...o,disabled:n,store:s.store,children:t})}),Cmt=x.forwardRef(function({suffix:t,...n},o){const r=x.useContext(ys);if(!r?.store.parent)throw new Error("Menu.SubmenuTriggerItem can only be rendered inside a nested Menu component");return a.jsx(Hce,{ref:o,accessibleWhenDisabled:!0,store:r.store,render:a.jsx(w2e,{...n,store:r.store.parent,suffix:a.jsxs(a.Fragment,{children:[t,a.jsx(gmt,{"aria-hidden":"true",icon:Af,size:24,preserveAspectRatio:"xMidYMid slice"})]})})})}),qmt=x.forwardRef(function({gutter:t,children:n,shift:o,modal:r=!0,...s},i){const c=x.useContext(ys),l=Hn(c?.store,"currentPlacement")?.split("-")[0],u=x.useCallback(f=>(f.preventDefault(),!0),[]),d=Hn(c?.store,"rtl")?"rtl":"ltr",p=x.useMemo(()=>({dir:d,style:{direction:d}}),[d]);if(!c?.store)throw new Error("Menu.Popover can only be rendered inside a Menu component");return a.jsx($Fe,{...s,ref:i,modal:r,store:c.store,gutter:t??(c.store.parent?0:8),shift:o??(c.store.parent?-4:0),hideOnHoverOutside:!1,"data-side":l,wrapperProps:p,hideOnEscape:u,unmountOnHide:!0,render:f=>a.jsx(pmt,{variant:c.variant,children:a.jsx(Ah,{...f})}),children:n})}),Rmt=e=>{const{children:t,defaultOpen:n=!1,open:o,onOpenChange:r,placement:s,variant:i}=vn(e,"Menu"),c=x.useContext(ys),l=jt();let u=s??(c?.store?"right-start":"bottom-start");l&&(/right/.test(u)?u=u.replace("right","left"):/left/.test(u)&&(u=u.replace("left","right")));const d=NFe({parent:c?.store,open:o,defaultOpen:n,placement:u,focusLoop:!0,setOpen(f){r?.(f)},rtl:l}),p=x.useMemo(()=>({store:d,variant:i}),[d,i]);return a.jsx(ys.Provider,{value:p,children:t})},Tmt=Object.assign(ZL(Rmt,"Menu"),{Context:Object.assign(ys,{displayName:"Menu.Context"}),Item:Object.assign(w2e,{displayName:"Menu.Item"}),RadioItem:Object.assign(Amt,{displayName:"Menu.RadioItem"}),CheckboxItem:Object.assign(Omt,{displayName:"Menu.CheckboxItem"}),Group:Object.assign(vmt,{displayName:"Menu.Group"}),GroupLabel:Object.assign(xmt,{displayName:"Menu.GroupLabel"}),Separator:Object.assign(wmt,{displayName:"Menu.Separator"}),ItemLabel:Object.assign(_mt,{displayName:"Menu.ItemLabel"}),ItemHelpText:Object.assign(kmt,{displayName:"Menu.ItemHelpText"}),Popover:Object.assign(qmt,{displayName:"Menu.Popover"}),TriggerButton:Object.assign(Smt,{displayName:"Menu.TriggerButton"}),SubmenuTriggerItem:Object.assign(Cmt,{displayName:"Menu.SubmenuTriggerItem"})}),Emt=({colors:e})=>{const t=Object.entries(e.gray||{}).map(([n,o])=>`--wp-components-color-gray-${n}: ${o};`).join("");return[Xe("--wp-components-color-accent:",e.accent,";--wp-components-color-accent-darker-10:",e.accentDarker10,";--wp-components-color-accent-darker-20:",e.accentDarker20,";--wp-components-color-accent-inverted:",e.accentInverted,";--wp-components-color-background:",e.background,";--wp-components-color-foreground:",e.foreground,";--wp-components-color-foreground-inverted:",e.foregroundInverted,";",t,";","")]},Wmt=He("div",{target:"e1krjpvb0"})({name:"1a3idx0",styles:"color:var( --wp-components-color-foreground, currentColor )"});Xs([Gs,Uf]);function Nmt(e){Bmt(e);const t={...jmt(e.accent),...Imt(e.background)};return Pmt(Lmt(e,t)),{colors:t}}function Bmt(e){for(const[t,n]of Object.entries(e))typeof n<"u"&&!an(n).isValid()&&globalThis.SCRIPT_DEBUG===!0&&zn(`wp.components.Theme: "${n}" is not a valid color value for the '${t}' prop.`)}function Lmt(e,t){const n=e.background||Ze.white,o=e.accent||"#3858e9",r=t.foreground||Ze.gray[900],s=t.gray||Ze.gray;return{accent:an(n).isReadable(o)?void 0:`The background color ("${n}") does not have sufficient contrast against the accent color ("${o}").`,foreground:an(n).isReadable(r)?void 0:`The background color provided ("${n}") does not have sufficient contrast against the standard foreground colors.`,grays:an(n).contrast(s[600])>=3&&an(n).contrast(s[700])>=4.5?void 0:`The background color provided ("${n}") cannot generate a set of grayscale foreground colors with sufficient contrast. Try adjusting the color to be lighter or darker.`}}function Pmt(e){for(const t of Object.values(e))t&&globalThis.SCRIPT_DEBUG===!0&&zn("wp.components.Theme: "+t)}function jmt(e){return e?{accent:e,accentDarker10:an(e).darken(.1).toHex(),accentDarker20:an(e).darken(.2).toHex(),accentInverted:bW(e)}:{}}function Imt(e){if(!e)return{};const t=bW(e);return{background:e,foreground:t,foregroundInverted:bW(t),gray:Dmt(e,t)}}function bW(e){return an(e).isDark()?Ze.white:Ze.gray[900]}function Dmt(e,t){const n={100:.06,200:.121,300:.132,400:.2,600:.42,700:.543,800:.821},o=.884,r=an(e).isDark()?"lighten":"darken",s=Math.abs(an(e).toHsl().l-an(t).toHsl().l)/100,i={};return Object.entries(n).forEach(([c,l])=>{i[parseInt(c)]=an(e)[r](l/o*s).toHex()}),i}function Fmt({accent:e,background:t,className:n,...o}){const r=ro(),s=x.useMemo(()=>r(...Emt(Nmt({accent:e,background:t})),n),[e,t,n,r]);return a.jsx(Wmt,{className:s,...o})}const hW=x.createContext(void 0),Gj=()=>x.useContext(hW),$mt=He(U$e,{target:"enfox0g4"})(`display:flex;align-items:stretch;overflow-x:auto;&[aria-orientation='vertical']{flex-direction:column;}:where( [aria-orientation='horizontal'] ){width:fit-content;}--direction-factor:1;--direction-start:left;--direction-end:right;--selected-start:var( --selected-left, 0 );&:dir( rtl ){--direction-factor:-1;--direction-start:right;--direction-end:left;--selected-start:var( --selected-right, 0 );}@media not ( prefers-reduced-motion ){&[data-indicator-animated]::before{transition-property:transform,border-radius,border-block;transition-duration:0.2s;transition-timing-function:ease-out;}}position:relative;&::before{content:'';position:absolute;pointer-events:none;transform-origin:var( --direction-start ) top;outline:2px solid transparent;outline-offset:-1px;}--antialiasing-factor:100;&[aria-orientation='horizontal']{--fade-width:4rem;--fade-gradient-base:transparent 0%,black var( --fade-width );--fade-gradient-composed:var( --fade-gradient-base ),black 60%,transparent 50%;&.is-overflowing-first{mask-image:linear-gradient( + ){background-color:`,Ze.theme.accent,";color:",Ze.theme.accentInverted,";}&[data-focus-visible]{box-shadow:0 0 0 1.5px ",Ze.theme.accent,";outline:2px solid transparent;}&:active,&[data-active]{}",Ah,':not(:focus) &:not(:focus)[aria-expanded="true"]{background-color:',cmt,";color:",Ze.theme.foreground,";}svg{fill:currentColor;}",""),pmt=He(o$e,{target:"e1wg7tti12"})(Fj,";"),dW=He(a$e,{target:"e1wg7tti11"})(Fj,";"),pW=He(u$e,{target:"e1wg7tti10"})(Fj,";"),$j=He("span",{target:"e1wg7tti9"})("grid-column:1;",dW,">&,",pW,">&{min-width:",Je(6),";}",dW,">&,",pW,">&,&:not( :empty ){margin-inline-end:",Je(2),";}display:flex;align-items:center;justify-content:center;color:",Dj,";[data-active-item]:not( [data-focus-visible] )>&,[aria-disabled='true']>&{color:inherit;}"),Vj=He("div",{target:"e1wg7tti8"})("grid-column:2;display:flex;align-items:center;justify-content:space-between;gap:",Je(3),";pointer-events:none;"),Hj=He("div",{target:"e1wg7tti7"})("flex:1;display:inline-flex;flex-direction:column;gap:",Je(1),";"),Uj=He("span",{target:"e1wg7tti6"})("flex:0 1 fit-content;min-width:0;width:fit-content;display:flex;align-items:center;justify-content:center;gap:",Je(3),";color:",Dj,";[data-active-item]:not( [data-focus-visible] ) *:not(",Ah,") &,[aria-disabled='true'] *:not(",Ah,") &{color:inherit;}"),fmt=He(QFe,{target:"e1wg7tti5"})({name:"49aokf",styles:"display:contents"}),bmt=He(KFe,{target:"e1wg7tti4"})("grid-column:1/-1;padding-block-start:",Je(3),";padding-block-end:",Je(2),";padding-inline:",Ij,";"),hmt=He(f$e,{target:"e1wg7tti3"})("grid-column:1/-1;border:none;height:",Ye.borderWidth,";background-color:",e=>e.variant==="toolbar"?v2e:amt,";margin-block:",Je(2),";margin-inline:",Ij,";outline:2px solid transparent;"),mmt=He(qo,{target:"e1wg7tti2"})("width:",Je(1.5),";",Go({transform:"scaleX(1)"},{transform:"scaleX(-1)"}),";"),gmt=He(zs,{target:"e1wg7tti1"})("font-size:",la("default.fontSize"),";line-height:20px;color:inherit;"),Mmt=He(zs,{target:"e1wg7tti0"})("font-size:",la("helpText.fontSize"),";line-height:16px;color:",Dj,";overflow-wrap:anywhere;[data-active-item]:not( [data-focus-visible] ) *:not( ",Ah," ) &,[aria-disabled='true'] *:not( ",Ah," ) &{color:inherit;}"),w2e=x.forwardRef(function({prefix:t,suffix:n,children:o,disabled:r=!1,hideOnClick:s=!0,store:i,...c},l){const u=x.useContext(ys);if(!u?.store)throw new Error("Menu.Item can only be rendered inside a Menu component");const d=i??u.store;return a.jsxs(pmt,{ref:l,...c,accessibleWhenDisabled:!0,disabled:r,hideOnClick:s,store:d,children:[a.jsx($j,{children:t}),a.jsxs(Vj,{children:[a.jsx(Hj,{children:o}),n&&a.jsx(Uj,{children:n})]})]})}),zmt=x.forwardRef(function({suffix:t,children:n,disabled:o=!1,hideOnClick:r=!1,...s},i){const c=x.useContext(ys);if(!c?.store)throw new Error("Menu.CheckboxItem can only be rendered inside a Menu component");return a.jsxs(dW,{ref:i,...s,accessibleWhenDisabled:!0,disabled:o,hideOnClick:r,store:c.store,children:[a.jsx(Uce,{store:c.store,render:a.jsx($j,{}),style:{width:"auto",height:"auto"},children:a.jsx(wn,{icon:M0,size:24})}),a.jsxs(Vj,{children:[a.jsx(Hj,{children:n}),t&&a.jsx(Uj,{children:t})]})]})}),Omt=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(dae,{cx:12,cy:12,r:3})}),ymt=x.forwardRef(function({suffix:t,children:n,disabled:o=!1,hideOnClick:r=!1,...s},i){const c=x.useContext(ys);if(!c?.store)throw new Error("Menu.RadioItem can only be rendered inside a Menu component");return a.jsxs(pW,{ref:i,...s,accessibleWhenDisabled:!0,disabled:o,hideOnClick:r,store:c.store,children:[a.jsx(Uce,{store:c.store,render:a.jsx($j,{}),style:{width:"auto",height:"auto"},children:a.jsx(wn,{icon:Omt,size:24})}),a.jsxs(Vj,{children:[a.jsx(Hj,{children:n}),t&&a.jsx(Uj,{children:t})]})]})}),Amt=x.forwardRef(function(t,n){const o=x.useContext(ys);if(!o?.store)throw new Error("Menu.Group can only be rendered inside a Menu component");return a.jsx(fmt,{ref:n,...t,store:o.store})}),vmt=x.forwardRef(function(t,n){const o=x.useContext(ys);if(!o?.store)throw new Error("Menu.GroupLabel can only be rendered inside a Menu component");return a.jsx(bmt,{ref:n,render:a.jsx(Sn,{upperCase:!0,variant:"muted",size:"11px",weight:500,lineHeight:"16px"}),...t,store:o.store})}),xmt=x.forwardRef(function(t,n){const o=x.useContext(ys);if(!o?.store)throw new Error("Menu.Separator can only be rendered inside a Menu component");return a.jsx(hmt,{ref:n,...t,store:o.store,variant:o.variant})}),wmt=x.forwardRef(function(t,n){if(!x.useContext(ys)?.store)throw new Error("Menu.ItemLabel can only be rendered inside a Menu component");return a.jsx(gmt,{numberOfLines:1,ref:n,...t})}),_mt=x.forwardRef(function(t,n){if(!x.useContext(ys)?.store)throw new Error("Menu.ItemHelpText can only be rendered inside a Menu component");return a.jsx(Mmt,{numberOfLines:2,ref:n,...t})}),kmt=x.forwardRef(function({children:t,disabled:n=!1,...o},r){const s=x.useContext(ys);if(!s?.store)throw new Error("Menu.TriggerButton can only be rendered inside a Menu component");if(s.store.parent)throw new Error("Menu.TriggerButton should not be rendered inside a nested Menu component. Use Menu.SubmenuTriggerItem instead.");return a.jsx(Hce,{ref:r,...o,disabled:n,store:s.store,children:t})}),Smt=x.forwardRef(function({suffix:t,...n},o){const r=x.useContext(ys);if(!r?.store.parent)throw new Error("Menu.SubmenuTriggerItem can only be rendered inside a nested Menu component");return a.jsx(Hce,{ref:o,accessibleWhenDisabled:!0,store:r.store,render:a.jsx(w2e,{...n,store:r.store.parent,suffix:a.jsxs(a.Fragment,{children:[t,a.jsx(mmt,{"aria-hidden":"true",icon:Af,size:24,preserveAspectRatio:"xMidYMid slice"})]})})})}),Cmt=x.forwardRef(function({gutter:t,children:n,shift:o,modal:r=!0,...s},i){const c=x.useContext(ys),l=Hn(c?.store,"currentPlacement")?.split("-")[0],u=x.useCallback(f=>(f.preventDefault(),!0),[]),d=Hn(c?.store,"rtl")?"rtl":"ltr",p=x.useMemo(()=>({dir:d,style:{direction:d}}),[d]);if(!c?.store)throw new Error("Menu.Popover can only be rendered inside a Menu component");return a.jsx(FFe,{...s,ref:i,modal:r,store:c.store,gutter:t??(c.store.parent?0:8),shift:o??(c.store.parent?-4:0),hideOnHoverOutside:!1,"data-side":l,wrapperProps:p,hideOnEscape:u,unmountOnHide:!0,render:f=>a.jsx(dmt,{variant:c.variant,children:a.jsx(Ah,{...f})}),children:n})}),qmt=e=>{const{children:t,defaultOpen:n=!1,open:o,onOpenChange:r,placement:s,variant:i}=vn(e,"Menu"),c=x.useContext(ys),l=jt();let u=s??(c?.store?"right-start":"bottom-start");l&&(/right/.test(u)?u=u.replace("right","left"):/left/.test(u)&&(u=u.replace("left","right")));const d=WFe({parent:c?.store,open:o,defaultOpen:n,placement:u,focusLoop:!0,setOpen(f){r?.(f)},rtl:l}),p=x.useMemo(()=>({store:d,variant:i}),[d,i]);return a.jsx(ys.Provider,{value:p,children:t})},Rmt=Object.assign(YL(qmt,"Menu"),{Context:Object.assign(ys,{displayName:"Menu.Context"}),Item:Object.assign(w2e,{displayName:"Menu.Item"}),RadioItem:Object.assign(ymt,{displayName:"Menu.RadioItem"}),CheckboxItem:Object.assign(zmt,{displayName:"Menu.CheckboxItem"}),Group:Object.assign(Amt,{displayName:"Menu.Group"}),GroupLabel:Object.assign(vmt,{displayName:"Menu.GroupLabel"}),Separator:Object.assign(xmt,{displayName:"Menu.Separator"}),ItemLabel:Object.assign(wmt,{displayName:"Menu.ItemLabel"}),ItemHelpText:Object.assign(_mt,{displayName:"Menu.ItemHelpText"}),Popover:Object.assign(Cmt,{displayName:"Menu.Popover"}),TriggerButton:Object.assign(kmt,{displayName:"Menu.TriggerButton"}),SubmenuTriggerItem:Object.assign(Smt,{displayName:"Menu.SubmenuTriggerItem"})}),Tmt=({colors:e})=>{const t=Object.entries(e.gray||{}).map(([n,o])=>`--wp-components-color-gray-${n}: ${o};`).join("");return[Xe("--wp-components-color-accent:",e.accent,";--wp-components-color-accent-darker-10:",e.accentDarker10,";--wp-components-color-accent-darker-20:",e.accentDarker20,";--wp-components-color-accent-inverted:",e.accentInverted,";--wp-components-color-background:",e.background,";--wp-components-color-foreground:",e.foreground,";--wp-components-color-foreground-inverted:",e.foregroundInverted,";",t,";","")]},Emt=He("div",{target:"e1krjpvb0"})({name:"1a3idx0",styles:"color:var( --wp-components-color-foreground, currentColor )"});Xs([Gs,Uf]);function Wmt(e){Nmt(e);const t={...Pmt(e.accent),...jmt(e.background)};return Lmt(Bmt(e,t)),{colors:t}}function Nmt(e){for(const[t,n]of Object.entries(e))typeof n<"u"&&!an(n).isValid()&&globalThis.SCRIPT_DEBUG===!0&&zn(`wp.components.Theme: "${n}" is not a valid color value for the '${t}' prop.`)}function Bmt(e,t){const n=e.background||Ze.white,o=e.accent||"#3858e9",r=t.foreground||Ze.gray[900],s=t.gray||Ze.gray;return{accent:an(n).isReadable(o)?void 0:`The background color ("${n}") does not have sufficient contrast against the accent color ("${o}").`,foreground:an(n).isReadable(r)?void 0:`The background color provided ("${n}") does not have sufficient contrast against the standard foreground colors.`,grays:an(n).contrast(s[600])>=3&&an(n).contrast(s[700])>=4.5?void 0:`The background color provided ("${n}") cannot generate a set of grayscale foreground colors with sufficient contrast. Try adjusting the color to be lighter or darker.`}}function Lmt(e){for(const t of Object.values(e))t&&globalThis.SCRIPT_DEBUG===!0&&zn("wp.components.Theme: "+t)}function Pmt(e){return e?{accent:e,accentDarker10:an(e).darken(.1).toHex(),accentDarker20:an(e).darken(.2).toHex(),accentInverted:fW(e)}:{}}function jmt(e){if(!e)return{};const t=fW(e);return{background:e,foreground:t,foregroundInverted:fW(t),gray:Imt(e,t)}}function fW(e){return an(e).isDark()?Ze.white:Ze.gray[900]}function Imt(e,t){const n={100:.06,200:.121,300:.132,400:.2,600:.42,700:.543,800:.821},o=.884,r=an(e).isDark()?"lighten":"darken",s=Math.abs(an(e).toHsl().l-an(t).toHsl().l)/100,i={};return Object.entries(n).forEach(([c,l])=>{i[parseInt(c)]=an(e)[r](l/o*s).toHex()}),i}function Dmt({accent:e,background:t,className:n,...o}){const r=ro(),s=x.useMemo(()=>r(...Tmt(Wmt({accent:e,background:t})),n),[e,t,n,r]);return a.jsx(Emt,{className:s,...o})}const bW=x.createContext(void 0),Xj=()=>x.useContext(bW),Fmt=He(H$e,{target:"enfox0g4"})(`display:flex;align-items:stretch;overflow-x:auto;&[aria-orientation='vertical']{flex-direction:column;}:where( [aria-orientation='horizontal'] ){width:fit-content;}--direction-factor:1;--direction-start:left;--direction-end:right;--selected-start:var( --selected-left, 0 );&:dir( rtl ){--direction-factor:-1;--direction-start:right;--direction-end:left;--selected-start:var( --selected-right, 0 );}@media not ( prefers-reduced-motion ){&[data-indicator-animated]::before{transition-property:transform,border-radius,border-block;transition-duration:0.2s;transition-timing-function:ease-out;}}position:relative;&::before{content:'';position:absolute;pointer-events:none;transform-origin:var( --direction-start ) top;outline:2px solid transparent;outline-offset:-1px;}--antialiasing-factor:100;&[aria-orientation='horizontal']{--fade-width:4rem;--fade-gradient-base:transparent 0%,black var( --fade-width );--fade-gradient-composed:var( --fade-gradient-base ),black 60%,transparent 50%;&.is-overflowing-first{mask-image:linear-gradient( to var( --direction-end ), var( --fade-gradient-base ) );}&.is-overflowing-last{mask-image:linear-gradient( @@ -469,10 +469,10 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen var( --selected-height, 0 ) / var( --antialiasing-factor ) ) - );}}`),Vmt=He($$e,{target:"enfox0g3"})("&{border-radius:0;background:transparent;border:none;box-shadow:none;flex:1 0 auto;white-space:nowrap;display:flex;align-items:center;cursor:pointer;line-height:1.2;font-weight:400;color:",Ze.theme.foreground,";position:relative;&[aria-disabled='true']{cursor:default;color:",Ze.ui.textDisabled,";}&:not( [aria-disabled='true'] ):is( :hover, [data-focus-visible] ){color:",Ze.theme.accent,";}&:focus:not( :disabled ){box-shadow:none;outline:none;}&::after{position:absolute;pointer-events:none;outline:var( --wp-admin-border-width-focus ) solid ",Ze.theme.accent,";border-radius:",Ye.radiusSmall,";opacity:0;@media not ( prefers-reduced-motion ){transition:opacity 0.1s linear;}}&[data-focus-visible]::after{opacity:1;}}[aria-orientation='horizontal'] &{padding-inline:",Je(4),";height:",Je(12),";scroll-margin:24px;&::after{content:'';inset:",Je(3),";}}[aria-orientation='vertical'] &{padding:",Je(2)," ",Je(3),";min-height:",Je(10),";&[aria-selected='true']{color:",Ze.theme.accent,";fill:currentColor;}}[aria-orientation='vertical'][data-select-on-move='false'] &::after{content:'';inset:var( --wp-admin-border-width-focus );}"),Hmt=He("span",{target:"enfox0g2"})({name:"9at4z3",styles:"flex-grow:1;display:flex;align-items:center;[aria-orientation='horizontal'] &{justify-content:center;}[aria-orientation='vertical'] &{justify-content:start;}"}),Umt=He(qo,{target:"enfox0g1"})("flex-shrink:0;margin-inline-end:",Je(-1),";[aria-orientation='horizontal'] &{display:none;}opacity:0;[role='tab']:is( [aria-selected='true'], [data-focus-visible], :hover ) &{opacity:1;}@media not ( prefers-reduced-motion ){[data-select-on-move='true'] [role='tab']:is( [aria-selected='true'], ) &{transition:opacity 0.15s 0.15s linear;}}&:dir( rtl ){rotate:180deg;}"),Xmt=He(K$e,{target:"enfox0g0"})("&:focus{box-shadow:none;outline:none;}&[data-focus-visible]{box-shadow:0 0 0 var( --wp-admin-border-width-focus ) ",Ze.theme.accent,";outline:2px solid transparent;outline-offset:0;}"),Gmt=x.forwardRef(function({children:t,tabId:n,disabled:o,render:r,...s},i){var c;const{store:l,instanceId:u}=(c=Gj())!==null&&c!==void 0?c:{};if(!l)return globalThis.SCRIPT_DEBUG===!0&&zn("`Tabs.Tab` must be wrapped in a `Tabs` component."),null;const d=`${u}-${n}`;return a.jsxs(Vmt,{ref:i,store:l,id:d,disabled:o,render:r,...s,children:[a.jsx(Hmt,{children:t}),a.jsx(Umt,{icon:ga})]})});function Kmt(e,t){const[n,o]=x.useState(!1),[r,s]=x.useState(!1),[i,c]=x.useState(),l=Ts(u=>{for(const d of u)d.target===t.first&&o(!d.isIntersecting),d.target===t.last&&s(!d.isIntersecting)});return x.useEffect(()=>{if(!e||!window.IntersectionObserver)return;const u=new IntersectionObserver(l,{root:e,threshold:.9});return c(u),()=>u.disconnect()},[l,e]),x.useEffect(()=>{if(i)return t.first&&i.observe(t.first),t.last&&i.observe(t.last),()=>{t.first&&i.unobserve(t.first),t.last&&i.unobserve(t.last)}},[t.first,t.last,i]),{first:n,last:r}}const Ymt=24;function Zmt(e,t,{margin:n=Ymt}={}){x.useLayoutEffect(()=>{if(!e||!t)return;const{scrollLeft:o}=e,r=e.getBoundingClientRect().width,{left:s,width:i}=t,c=o+r,u=s+i+n-c,d=o-(s-n);let p=null;d>0?p=o-d:u>0&&(p=o+u),p!==null&&e.scroll?.({left:p})},[n,e,t])}const Qmt=x.forwardRef(function({children:t,...n},o){var r;const{store:s}=(r=Gj())!==null&&r!==void 0?r:{},i=Hn(s,"selectedId"),c=Hn(s,"activeId"),l=Hn(s,"selectOnMove"),u=Hn(s,"items"),[d,p]=x.useState(),f=xn([o,p]),b=s?.item(i),h=Hn(s,"renderedItems"),g=h&&b?h.indexOf(b):-1,z=Wpe(b?.element,[g]),A=Kmt(d,{first:u?.at(0)?.element,last:u?.at(-1)?.element});Npe(d,z,{prefix:"selected",dataAttribute:"indicator-animated",transitionEndFilter:v=>v.pseudoElement==="::before",roundRect:!0}),Zmt(d,z);const _=()=>{l&&i!==c&&s?.setActiveId(i)};return s?a.jsx($mt,{ref:f,store:s,render:v=>{var M;return a.jsx("div",{...v,tabIndex:(M=v.tabIndex)!==null&&M!==void 0?M:-1})},onBlur:_,"data-select-on-move":l?"true":"false",...n,className:oe(A.first&&"is-overflowing-first",A.last&&"is-overflowing-last",n.className),children:t}):(globalThis.SCRIPT_DEBUG===!0&&zn("`Tabs.TabList` must be wrapped in a `Tabs` component."),null)}),Jmt=x.forwardRef(function({children:t,tabId:n,focusable:o=!0,...r},s){const i=Gj(),c=Hn(i?.store,"selectedId");if(!i)return globalThis.SCRIPT_DEBUG===!0&&zn("`Tabs.TabPanel` must be wrapped in a `Tabs` component."),null;const{store:l,instanceId:u}=i,d=`${u}-${n}`;return a.jsx(Xmt,{ref:s,store:l,id:`${d}-view`,tabId:d,focusable:o,...r,children:c===d&&t})});function XA(e,t){return e&&`${t}-${e}`}function PZ(e,t){return typeof e=="string"?e.replace(`${t}-`,""):e}const egt=Object.assign(function e({selectOnMove:t=!0,defaultTabId:n,orientation:o="horizontal",onSelect:r,children:s,selectedTabId:i,activeTabId:c,defaultActiveTabId:l,onActiveTabIdChange:u}){const d=vt(e,"tabs"),p=j$e({selectOnMove:t,orientation:o,defaultSelectedId:XA(n,d),setSelectedId:z=>{r?.(PZ(z,d))},selectedId:XA(i,d),defaultActiveId:XA(l,d),setActiveId:z=>{u?.(PZ(z,d))},activeId:XA(c,d),rtl:jt()}),{items:f,activeId:b}=Hn(p),{setActiveId:h}=p;x.useEffect(()=>{requestAnimationFrame(()=>{const z=f?.[0]?.element?.ownerDocument.activeElement;!z||!f.some(A=>z===A.element)||b!==z.id&&h(z.id)})},[b,f,h]);const g=x.useMemo(()=>({store:p,instanceId:d}),[p,d]);return a.jsx(hW.Provider,{value:g,children:s})},{Tab:Object.assign(Gmt,{displayName:"Tabs.Tab"}),TabList:Object.assign(Qmt,{displayName:"Tabs.TabList"}),TabPanel:Object.assign(Jmt,{displayName:"Tabs.TabPanel"}),Context:Object.assign(hW,{displayName:"Tabs.Context"})}),{lock:tgt,unlock:rgn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/components");function ngt(e="default"){switch(e){case"info":return pde;case"success":return Dw;case"warning":return yZe;case"error":return NZe;default:return null}}function ogt({className:e,intent:t="default",children:n,...o}){const r=ngt(t),s=!!r;return a.jsxs("span",{className:oe("components-badge",e,{[`is-${t}`]:t,"has-icon":s}),...o,children:[s&&a.jsx(qo,{icon:r,size:16,fill:"currentColor",className:"components-badge__icon"}),a.jsx("span",{className:"components-badge__content",children:n})]})}const tr={};tgt(tr,{__experimentalPopoverLegacyPositionToPlacement:zw,ComponentsContext:YL,Tabs:egt,Theme:Fmt,Menu:Tmt,kebabCase:qtt,Badge:ogt});const{lock:rgt,unlock:ct}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/block-editor");Xs([Gs,Uf]);const{kebabCase:sgt}=ct(tr),Sf=(e,t,n)=>{if(t){const o=e?.find(r=>r.slug===t);if(o)return o}return{color:n}},_2e=(e,t)=>e?.find(n=>n.color===t);function Pt(e,t){if(!(!e||!t))return`has-${sgt(t)}-${e}`}function igt(e,t){const n=an(t),o=({color:s})=>n.contrast(s),r=Math.max(...e.map(o));return e.find(s=>o(s)===r).color}const Cf=x.createContext({});function uO({value:e,children:t}){const n=x.useContext(Cf),o=x.useMemo(()=>({...n,...e}),[n,e]);return a.jsx(Cf.Provider,{value:o,children:t})}function Kj(e){if(e.includes(" "))return!1;const n=x5(e),o=NN(n),r=agt(e),s=e?.startsWith("www."),i=e?.startsWith("#")&&yE(e);return o||s||i||r}function agt(e,t=6){const n=e.split(/[?#]/)[0];return new RegExp(`(?<=\\S)\\.(?:[a-zA-Z_]{2,${t}})(?:\\/|$)`).test(n)}const cgt={insertUsage:{}},mW={alignWide:!1,supportsLayout:!0,colors:[{name:m("Black"),slug:"black",color:"#000000"},{name:m("Cyan bluish gray"),slug:"cyan-bluish-gray",color:"#abb8c3"},{name:m("White"),slug:"white",color:"#ffffff"},{name:m("Pale pink"),slug:"pale-pink",color:"#f78da7"},{name:m("Vivid red"),slug:"vivid-red",color:"#cf2e2e"},{name:m("Luminous vivid orange"),slug:"luminous-vivid-orange",color:"#ff6900"},{name:m("Luminous vivid amber"),slug:"luminous-vivid-amber",color:"#fcb900"},{name:m("Light green cyan"),slug:"light-green-cyan",color:"#7bdcb5"},{name:m("Vivid green cyan"),slug:"vivid-green-cyan",color:"#00d084"},{name:m("Pale cyan blue"),slug:"pale-cyan-blue",color:"#8ed1fc"},{name:m("Vivid cyan blue"),slug:"vivid-cyan-blue",color:"#0693e3"},{name:m("Vivid purple"),slug:"vivid-purple",color:"#9b51e0"}],fontSizes:[{name:We("Small","font size name"),size:13,slug:"small"},{name:We("Normal","font size name"),size:16,slug:"normal"},{name:We("Medium","font size name"),size:20,slug:"medium"},{name:We("Large","font size name"),size:36,slug:"large"},{name:We("Huge","font size name"),size:42,slug:"huge"}],imageDefaultSize:"large",imageSizes:[{slug:"thumbnail",name:m("Thumbnail")},{slug:"medium",name:m("Medium")},{slug:"large",name:m("Large")},{slug:"full",name:m("Full Size")}],imageEditing:!0,maxWidth:580,allowedBlockTypes:!0,maxUploadFileSize:0,allowedMimeTypes:null,canLockBlocks:!0,enableOpenverseMediaCategory:!0,clearBlockSelection:!0,__experimentalCanUserUseUnfilteredHTML:!1,__experimentalBlockDirectory:!1,__mobileEnablePageTemplates:!1,__experimentalBlockPatterns:[],__experimentalBlockPatternCategories:[],isPreviewMode:!1,blockInspectorAnimation:{animationParent:"core/navigation","core/navigation":{enterDirection:"leftToRight"},"core/navigation-submenu":{enterDirection:"rightToLeft"},"core/navigation-link":{enterDirection:"rightToLeft"},"core/search":{enterDirection:"rightToLeft"},"core/social-links":{enterDirection:"rightToLeft"},"core/page-list":{enterDirection:"rightToLeft"},"core/spacer":{enterDirection:"rightToLeft"},"core/home-link":{enterDirection:"rightToLeft"},"core/site-title":{enterDirection:"rightToLeft"},"core/site-logo":{enterDirection:"rightToLeft"}},generateAnchors:!1,gradients:[{name:m("Vivid cyan blue to vivid purple"),gradient:"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)",slug:"vivid-cyan-blue-to-vivid-purple"},{name:m("Light green cyan to vivid green cyan"),gradient:"linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)",slug:"light-green-cyan-to-vivid-green-cyan"},{name:m("Luminous vivid amber to luminous vivid orange"),gradient:"linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)",slug:"luminous-vivid-amber-to-luminous-vivid-orange"},{name:m("Luminous vivid orange to vivid red"),gradient:"linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%)",slug:"luminous-vivid-orange-to-vivid-red"},{name:m("Very light gray to cyan bluish gray"),gradient:"linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%)",slug:"very-light-gray-to-cyan-bluish-gray"},{name:m("Cool to warm spectrum"),gradient:"linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%)",slug:"cool-to-warm-spectrum"},{name:m("Blush light purple"),gradient:"linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%)",slug:"blush-light-purple"},{name:m("Blush bordeaux"),gradient:"linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)",slug:"blush-bordeaux"},{name:m("Luminous dusk"),gradient:"linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%)",slug:"luminous-dusk"},{name:m("Pale ocean"),gradient:"linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)",slug:"pale-ocean"},{name:m("Electric grass"),gradient:"linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%)",slug:"electric-grass"},{name:m("Midnight"),gradient:"linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)",slug:"midnight"}],__unstableResolvedAssets:{styles:[],scripts:[]}};function gW(e,t,n){return[...e.slice(0,n),...Array.isArray(t)?t:[t],...e.slice(n)]}function oq(e,t,n,o=1){const r=[...e];return r.splice(t,o),gW(r,e.slice(t,t+o),n)}const dO=Symbol("globalStylesDataKey"),k2e=Symbol("globalStylesLinks"),Wz=Symbol("selectBlockPatternsKey"),S2e=Symbol("reusableBlocksSelect"),Nz=Symbol("sectionRootClientIdKey"),{isContentBlock:jZ}=ct(rae),lgt=e=>e;function TM(e,t=""){const n=new Map,o=[];return n.set(t,o),e.forEach(r=>{const{clientId:s,innerBlocks:i}=r;o.push(s),TM(i,s).forEach((c,l)=>{n.set(l,c)})}),n}function b4(e,t=""){const n=[],o=[[t,e]];for(;o.length;){const[r,s]=o.shift();s.forEach(({innerBlocks:i,...c})=>{n.push([c.clientId,r]),i?.length&&o.push([c.clientId,i])})}return n}function C2e(e,t=lgt){const n=[],o=[...e];for(;o.length;){const{innerBlocks:r,...s}=o.shift();o.push(...r),n.push([s.clientId,t(s)])}return n}function ugt(e){const t={},n=[...e];for(;n.length;){const{innerBlocks:o,...r}=n.shift();n.push(...o),t[r.clientId]=!0}return t}function MW(e){return C2e(e,t=>{const{attributes:n,...o}=t;return o})}function zW(e){return C2e(e,t=>t.attributes)}function dgt(e,t){return N0(Object.keys(e),Object.keys(t))}function pgt(e,t){return e.type==="UPDATE_BLOCK_ATTRIBUTES"&&t!==void 0&&t.type==="UPDATE_BLOCK_ATTRIBUTES"&&N0(e.clientIds,t.clientIds)&&dgt(e.attributes,t.attributes)}function OW(e,t){const n=e.tree,o=[...t],r=[...t];for(;o.length;){const s=o.shift();o.push(...s.innerBlocks),r.push(...s.innerBlocks)}for(const s of r)n.set(s.clientId,{});for(const s of r)n.set(s.clientId,Object.assign(n.get(s.clientId),{...e.byClientId.get(s.clientId),attributes:e.attributes.get(s.clientId),innerBlocks:s.innerBlocks.map(i=>n.get(i.clientId))}))}function el(e,t,n=!1){const o=e.tree,r=new Set([]),s=new Set;for(const i of t){let c=n?i:e.parents.get(i);do if(e.controlledInnerBlocks[c]){s.add(c);break}else r.add(c),c=e.parents.get(c);while(c!==void 0)}for(const i of r)o.set(i,{...o.get(i)});for(const i of r)o.get(i).innerBlocks=(e.order.get(i)||[]).map(c=>o.get(c));for(const i of s)o.set("controlled||"+i,{innerBlocks:(e.order.get(i)||[]).map(c=>o.get(c))})}const fgt=e=>(t={},n)=>{const o=e(t,n);if(o===t)return t;switch(o.tree=t.tree?t.tree:new Map,n.type){case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{o.tree=new Map(o.tree),OW(o,n.blocks),el(o,n.rootClientId?[n.rootClientId]:[""],!0);break}case"UPDATE_BLOCK":o.tree=new Map(o.tree),o.tree.set(n.clientId,{...o.tree.get(n.clientId),...o.byClientId.get(n.clientId),attributes:o.attributes.get(n.clientId)}),el(o,[n.clientId],!1);break;case"SYNC_DERIVED_BLOCK_ATTRIBUTES":case"UPDATE_BLOCK_ATTRIBUTES":{o.tree=new Map(o.tree),n.clientIds.forEach(s=>{o.tree.set(s,{...o.tree.get(s),attributes:o.attributes.get(s)})}),el(o,n.clientIds,!1);break}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const s=ugt(n.blocks);o.tree=new Map(o.tree),n.replacedClientIds.forEach(c=>{o.tree.delete(c),s[c]||o.tree.delete("controlled||"+c)}),OW(o,n.blocks),el(o,n.blocks.map(c=>c.clientId),!1);const i=[];for(const c of n.clientIds){const l=t.parents.get(c);l!==void 0&&(l===""||o.byClientId.get(l))&&i.push(l)}el(o,i,!0);break}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":const r=[];for(const s of n.clientIds){const i=t.parents.get(s);i!==void 0&&(i===""||o.byClientId.get(i))&&r.push(i)}o.tree=new Map(o.tree),n.removedClientIds.forEach(s=>{o.tree.delete(s),o.tree.delete("controlled||"+s)}),el(o,r,!0);break;case"MOVE_BLOCKS_TO_POSITION":{const s=[];n.fromRootClientId?s.push(n.fromRootClientId):s.push(""),n.toRootClientId&&s.push(n.toRootClientId),o.tree=new Map(o.tree),el(o,s,!0);break}case"MOVE_BLOCKS_UP":case"MOVE_BLOCKS_DOWN":{const s=[n.rootClientId?n.rootClientId:""];o.tree=new Map(o.tree),el(o,s,!0);break}case"SAVE_REUSABLE_BLOCK_SUCCESS":{const s=[];o.attributes.forEach((i,c)=>{o.byClientId.get(c).name==="core/block"&&i.ref===n.updatedId&&s.push(c)}),o.tree=new Map(o.tree),s.forEach(i=>{o.tree.set(i,{...o.byClientId.get(i),attributes:o.attributes.get(i),innerBlocks:o.tree.get(i).innerBlocks})}),el(o,s,!1)}}return o};function bgt(e){let t,n=!1,o;return(r,s)=>{let i=e(r,s),c;if(s.type==="SET_EXPLICIT_PERSISTENT"){var l;o=s.isPersistentChange,c=(l=r.isPersistentChange)!==null&&l!==void 0?l:!0}if(o!==void 0)return c=o,c===i.isPersistentChange?i:{...i,isPersistentChange:c};const u=s.type==="MARK_LAST_CHANGE_AS_PERSISTENT"||n;if(r===i&&!u){var d;return n=s.type==="MARK_NEXT_CHANGE_AS_NOT_PERSISTENT",c=(d=r?.isPersistentChange)!==null&&d!==void 0?d:!0,r.isPersistentChange===c?r:{...i,isPersistentChange:c}}return i={...i,isPersistentChange:u?!n:!pgt(s,t)},t=s,n=s.type==="MARK_NEXT_CHANGE_AS_NOT_PERSISTENT",i}}function hgt(e){const t=new Set(["RECEIVE_BLOCKS"]);return(n,o)=>{const r=e(n,o);return r!==n&&(r.isIgnoredChange=t.has(o.type)),r}}const mgt=e=>(t,n)=>{const o=r=>{let s=r;for(let i=0;i<s.length;i++)!t.order.get(s[i])||n.keepControlledInnerBlocks&&n.keepControlledInnerBlocks[s[i]]||(s===r&&(s=[...s]),s.push(...t.order.get(s[i])));return s};if(t)switch(n.type){case"REMOVE_BLOCKS":n={...n,type:"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN",removedClientIds:o(n.clientIds)};break;case"REPLACE_BLOCKS":n={...n,type:"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN",replacedClientIds:o(n.clientIds)};break}return e(t,n)},ggt=e=>(t,n)=>{if(n.type==="RESET_BLOCKS"){const o={...t,byClientId:new Map(MW(n.blocks)),attributes:new Map(zW(n.blocks)),order:TM(n.blocks),parents:new Map(b4(n.blocks)),controlledInnerBlocks:{}};return o.tree=new Map(t?.tree),OW(o,n.blocks),o.tree.set("",{innerBlocks:n.blocks.map(r=>o.tree.get(r.clientId))}),o}return e(t,n)},Mgt=e=>(t,n)=>{if(n.type!=="REPLACE_INNER_BLOCKS")return e(t,n);const o={};if(Object.keys(t.controlledInnerBlocks).length){const i=[...n.blocks];for(;i.length;){const{innerBlocks:c,...l}=i.shift();i.push(...c),t.controlledInnerBlocks[l.clientId]&&(o[l.clientId]=!0)}}let r=t;t.order.get(n.rootClientId)&&(r=e(r,{type:"REMOVE_BLOCKS",keepControlledInnerBlocks:o,clientIds:t.order.get(n.rootClientId)}));let s=r;if(n.blocks.length){s=e(s,{...n,type:"INSERT_BLOCKS",index:0});const i=new Map(s.order);Object.keys(o).forEach(c=>{t.order.get(c)&&i.set(c,t.order.get(c))}),s.order=i,s.tree=new Map(s.tree),Object.keys(o).forEach(c=>{const l=`controlled||${c}`;t.tree.has(l)&&s.tree.set(l,t.tree.get(l))})}return s},zgt=e=>(t,n)=>{if(t&&n.type==="SAVE_REUSABLE_BLOCK_SUCCESS"){const{id:o,updatedId:r}=n;if(o===r)return t;t={...t},t.attributes=new Map(t.attributes),t.attributes.forEach((s,i)=>{const{name:c}=t.byClientId.get(i);c==="core/block"&&s.ref===o&&t.attributes.set(i,{...s,ref:r})})}return e(t,n)},Ogt=e=>(t,n)=>{if(n.type==="SET_HAS_CONTROLLED_INNER_BLOCKS"){const o=e(t,{type:"REPLACE_INNER_BLOCKS",rootClientId:n.clientId,blocks:[]});return e(o,n)}return e(t,n)},ygt=Ku(J0,zgt,fgt,mgt,Mgt,ggt,bgt,hgt,Ogt)({byClientId(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{const n=new Map(e);return MW(t.blocks).forEach(([o,r])=>{n.set(o,r)}),n}case"UPDATE_BLOCK":{if(!e.has(t.clientId))return e;const{attributes:n,...o}=t.updates;if(Object.values(o).length===0)return e;const r=new Map(e);return r.set(t.clientId,{...e.get(t.clientId),...o}),r}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{if(!t.blocks)return e;const n=new Map(e);return t.replacedClientIds.forEach(o=>{n.delete(o)}),MW(t.blocks).forEach(([o,r])=>{n.set(o,r)}),n}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const n=new Map(e);return t.removedClientIds.forEach(o=>{n.delete(o)}),n}}return e},attributes(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{const o=new Map(e);return zW(t.blocks).forEach(([r,s])=>{o.set(r,s)}),o}case"UPDATE_BLOCK":{if(!e.get(t.clientId)||!t.updates.attributes)return e;const o=new Map(e);return o.set(t.clientId,{...e.get(t.clientId),...t.updates.attributes}),o}case"SYNC_DERIVED_BLOCK_ATTRIBUTES":case"UPDATE_BLOCK_ATTRIBUTES":{if(t.clientIds.every(s=>!e.get(s)))return e;let o=!1;const r=new Map(e);for(const s of t.clientIds){var n;const i=Object.entries(t.uniqueByBlock?t.attributes[s]:(n=t.attributes)!==null&&n!==void 0?n:{});if(i.length===0)continue;let c=!1;const l=e.get(s),u={};i.forEach(([d,p])=>{l[d]!==p&&(c=!0,u[d]=p)}),o=o||c,c&&r.set(s,{...l,...u})}return o?r:e}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{if(!t.blocks)return e;const o=new Map(e);return t.replacedClientIds.forEach(r=>{o.delete(r)}),zW(t.blocks).forEach(([r,s])=>{o.set(r,s)}),o}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const o=new Map(e);return t.removedClientIds.forEach(r=>{o.delete(r)}),o}}return e},order(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":{var n;const r=TM(t.blocks),s=new Map(e);return r.forEach((i,c)=>{c!==""&&s.set(c,i)}),s.set("",((n=e.get(""))!==null&&n!==void 0?n:[]).concat(r[""])),s}case"INSERT_BLOCKS":{const{rootClientId:r=""}=t,s=e.get(r)||[],i=TM(t.blocks,r),{index:c=s.length}=t,l=new Map(e);return i.forEach((u,d)=>{l.set(d,u)}),l.set(r,gW(s,i.get(r),c)),l}case"MOVE_BLOCKS_TO_POSITION":{var o;const{fromRootClientId:r="",toRootClientId:s="",clientIds:i}=t,{index:c=e.get(s).length}=t;if(r===s){const d=e.get(s).indexOf(i[0]),p=new Map(e);return p.set(s,oq(e.get(s),d,c,i.length)),p}const l=new Map(e);return l.set(r,(o=e.get(r)?.filter(u=>!i.includes(u)))!==null&&o!==void 0?o:[]),l.set(s,gW(e.get(s),i,c)),l}case"MOVE_BLOCKS_UP":{const{clientIds:r,rootClientId:s=""}=t,i=r[0],c=e.get(s);if(!c.length||i===c[0])return e;const l=c.indexOf(i),u=new Map(e);return u.set(s,oq(c,l,l-1,r.length)),u}case"MOVE_BLOCKS_DOWN":{const{clientIds:r,rootClientId:s=""}=t,i=r[0],c=r[r.length-1],l=e.get(s);if(!l.length||c===l[l.length-1])return e;const u=l.indexOf(i),d=new Map(e);return d.set(s,oq(l,u,u+1,r.length)),d}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const{clientIds:r}=t;if(!t.blocks)return e;const s=TM(t.blocks),i=new Map(e);return t.replacedClientIds.forEach(c=>{i.delete(c)}),s.forEach((c,l)=>{l!==""&&i.set(l,c)}),i.forEach((c,l)=>{const u=Object.values(c).reduce((d,p)=>p===r[0]?[...d,...s.get("")]:(r.indexOf(p)===-1&&d.push(p),d),[]);i.set(l,u)}),i}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const r=new Map(e);return t.removedClientIds.forEach(s=>{r.delete(s)}),r.forEach((s,i)=>{var c;const l=(c=s?.filter(u=>!t.removedClientIds.includes(u)))!==null&&c!==void 0?c:[];l.length!==s.length&&r.set(i,l)}),r}}return e},parents(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":{const n=new Map(e);return b4(t.blocks).forEach(([o,r])=>{n.set(o,r)}),n}case"INSERT_BLOCKS":{const n=new Map(e);return b4(t.blocks,t.rootClientId||"").forEach(([o,r])=>{n.set(o,r)}),n}case"MOVE_BLOCKS_TO_POSITION":{const n=new Map(e);return t.clientIds.forEach(o=>{n.set(o,t.toRootClientId||"")}),n}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const n=new Map(e);return t.replacedClientIds.forEach(o=>{n.delete(o)}),b4(t.blocks,e.get(t.clientIds[0])).forEach(([o,r])=>{n.set(o,r)}),n}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const n=new Map(e);return t.removedClientIds.forEach(o=>{n.delete(o)}),n}}return e},controlledInnerBlocks(e={},{type:t,clientId:n,hasControlledInnerBlocks:o}){return t==="SET_HAS_CONTROLLED_INNER_BLOCKS"?{...e,[n]:o}:e}});function Agt(e=!1,t){switch(t.type){case"HIDE_BLOCK_INTERFACE":return!0;case"SHOW_BLOCK_INTERFACE":return!1}return e}function vgt(e=!1,t){switch(t.type){case"START_TYPING":return!0;case"STOP_TYPING":return!1}return e}function xgt(e=!1,t){switch(t.type){case"START_DRAGGING":return!0;case"STOP_DRAGGING":return!1}return e}function wgt(e=[],t){switch(t.type){case"START_DRAGGING_BLOCKS":return t.clientIds;case"STOP_DRAGGING_BLOCKS":return[]}return e}function _gt(e={},t){return t.type==="SET_BLOCK_VISIBILITY"?{...e,...t.updates}:e}function IZ(e={},t){switch(t.type){case"CLEAR_SELECTED_BLOCK":return e.clientId?{}:e;case"SELECT_BLOCK":return t.clientId===e.clientId?e:{clientId:t.clientId};case"REPLACE_INNER_BLOCKS":case"INSERT_BLOCKS":return!t.updateSelection||!t.blocks.length?e:{clientId:t.blocks[0].clientId};case"REMOVE_BLOCKS":return!t.clientIds||!t.clientIds.length||t.clientIds.indexOf(e.clientId)===-1?e:{};case"REPLACE_BLOCKS":{if(t.clientIds.indexOf(e.clientId)===-1)return e;const n=t.blocks[t.indexToSelect]||t.blocks[t.blocks.length-1];return n?n.clientId===e.clientId?e:{clientId:n.clientId}:{}}}return e}function kgt(e={},t){switch(t.type){case"SELECTION_CHANGE":return t.clientId?{selectionStart:{clientId:t.clientId,attributeKey:t.attributeKey,offset:t.startOffset},selectionEnd:{clientId:t.clientId,attributeKey:t.attributeKey,offset:t.endOffset}}:{selectionStart:t.start||e.selectionStart,selectionEnd:t.end||e.selectionEnd};case"RESET_SELECTION":const{selectionStart:r,selectionEnd:s}=t;return{selectionStart:r,selectionEnd:s};case"MULTI_SELECT":const{start:i,end:c}=t;return i===e.selectionStart?.clientId&&c===e.selectionEnd?.clientId?e:{selectionStart:{clientId:i},selectionEnd:{clientId:c}};case"RESET_BLOCKS":const l=e?.selectionStart?.clientId,u=e?.selectionEnd?.clientId;if(!l&&!u)return e;if(!t.blocks.some(d=>d.clientId===l))return{selectionStart:{},selectionEnd:{}};if(!t.blocks.some(d=>d.clientId===u))return{...e,selectionEnd:e.selectionStart}}const n=IZ(e.selectionStart,t),o=IZ(e.selectionEnd,t);return n===e.selectionStart&&o===e.selectionEnd?e:{selectionStart:n,selectionEnd:o}}function Sgt(e=!1,t){switch(t.type){case"START_MULTI_SELECT":return!0;case"STOP_MULTI_SELECT":return!1}return e}function Cgt(e=!0,t){switch(t.type){case"TOGGLE_SELECTION":return t.isSelectionEnabled}return e}function qgt(e=!1,t){switch(t.type){case"DISPLAY_BLOCK_REMOVAL_PROMPT":const{clientIds:n,selectPrevious:o,message:r}=t;return{clientIds:n,selectPrevious:o,message:r};case"CLEAR_BLOCK_REMOVAL_PROMPT":return!1}return e}function Rgt(e=!1,t){switch(t.type){case"SET_BLOCK_REMOVAL_RULES":return t.rules}return e}function Tgt(e=null,t){return t.type==="REPLACE_BLOCKS"&&t.initialPosition!==void 0||["MULTI_SELECT","SELECT_BLOCK","RESET_SELECTION","INSERT_BLOCKS","REPLACE_INNER_BLOCKS"].includes(t.type)?t.initialPosition:e}function Egt(e={},t){if(t.type==="TOGGLE_BLOCK_MODE"){const{clientId:n}=t;return{...e,[n]:e[n]&&e[n]==="html"?"visual":"html"}}return e}function Wgt(e=null,t){switch(t.type){case"SHOW_INSERTION_POINT":{const{rootClientId:n,index:o,__unstableWithInserter:r,operation:s,nearestSide:i}=t,c={rootClientId:n,index:o,__unstableWithInserter:r,operation:s,nearestSide:i};return N0(e,c)?e:c}case"HIDE_INSERTION_POINT":return null}return e}function Ngt(e={isValid:!0},t){switch(t.type){case"SET_TEMPLATE_VALIDITY":return{...e,isValid:t.isValid}}return e}function Bgt(e=mW,t){switch(t.type){case"UPDATE_SETTINGS":{const n=t.reset?{...mW,...t.settings}:{...e,...t.settings};return Object.defineProperty(n,"__unstableIsPreviewMode",{get(){return Ke("__unstableIsPreviewMode",{since:"6.8",alternative:"isPreviewMode"}),this.isPreviewMode}}),n}}return e}function Lgt(e=cgt,t){switch(t.type){case"INSERT_BLOCKS":case"REPLACE_BLOCKS":{const n=t.blocks.reduce((o,r)=>{const{attributes:s,name:i}=r;let c=i;const l=uo(kt).getActiveBlockVariation(i,s);return l?.name&&(c+="/"+l.name),i==="core/block"&&(c+="/"+s.ref),{...o,[c]:{time:t.time,count:o[c]?o[c].count+1:1}}},e.insertUsage);return{...e,insertUsage:n}}}return e}const Pgt=(e={},t)=>{switch(t.type){case"REPLACE_BLOCKS":case"REMOVE_BLOCKS":return Object.fromEntries(Object.entries(e).filter(([n])=>!t.clientIds.includes(n)));case"UPDATE_BLOCK_LIST_SETTINGS":{const n=typeof t.clientId=="string"?{[t.clientId]:t.settings}:t.clientId;for(const r in n)n[r]?N0(e[r],n[r])&&delete n[r]:e[r]||delete n[r];if(Object.keys(n).length===0)return e;const o={...e,...n};for(const r in n)n[r]||delete o[r];return o}}return e};function jgt(e=null,t){switch(t.type){case"UPDATE_BLOCK":if(!t.updates.attributes)break;return{[t.clientId]:t.updates.attributes};case"UPDATE_BLOCK_ATTRIBUTES":return t.clientIds.reduce((n,o)=>({...n,[o]:t.uniqueByBlock?t.attributes[o]:t.attributes}),{})}return e}function Igt(e,t){switch(t.type){case"TOGGLE_BLOCK_HIGHLIGHT":const{clientId:n,isHighlighted:o}=t;return o?n:e===n?null:e;case"SELECT_BLOCK":if(t.clientId!==e)return null}return e}function Dgt(e=null,t){switch(t.type){case"SET_BLOCK_EXPANDED_IN_LIST_VIEW":return t.clientId;case"SELECT_BLOCK":if(t.clientId!==e)return null}return e}function Fgt(e={},t){switch(t.type){case"INSERT_BLOCKS":case"REPLACE_BLOCKS":if(!t.blocks.length)return e;const n=t.blocks.map(r=>r.clientId),o=t.meta?.source;return{clientIds:n,source:o};case"RESET_BLOCKS":return{}}return e}function $gt(e="",t){return t.type==="SET_TEMPORARILY_EDITING_AS_BLOCKS"?t.temporarilyEditingAsBlocks:e}function Vgt(e="",t){return t.type==="SET_TEMPORARILY_EDITING_AS_BLOCKS"?t.focusModeToRevert:e}function Hgt(e=new Map,t){switch(t.type){case"SET_BLOCK_EDITING_MODE":return e.get(t.clientId)===t.mode?e:new Map(e).set(t.clientId,t.mode);case"UNSET_BLOCK_EDITING_MODE":{if(!e.has(t.clientId))return e;const n=new Map(e);return n.delete(t.clientId),n}case"RESET_BLOCKS":return e.has("")?new Map().set("",e.get("")):e}return e}function Ugt(e=null,t){if(t.type==="SET_OPENED_BLOCK_SETTINGS_MENU"){var n;return(n=t?.clientId)!==null&&n!==void 0?n:null}return e}function Xgt(e=new Map,t){switch(t.type){case"SET_STYLE_OVERRIDE":return new Map(e).set(t.id,t.style);case"DELETE_STYLE_OVERRIDE":{const n=new Map(e);return n.delete(t.id),n}}return e}function Ggt(e=[],t){switch(t.type){case"REGISTER_INSERTER_MEDIA_CATEGORY":return[...e,t.category]}return e}function Kgt(e=!1,t){switch(t.type){case"LAST_FOCUS":return t.lastFocus}return e}function Ygt(e=!1,t){switch(t.type){case"HOVER_BLOCK":return t.clientId}return e}function Zgt(e=100,t){switch(t.type){case"SET_ZOOM_LEVEL":return t.zoom;case"RESET_ZOOM_LEVEL":return 100}return e}function Qgt(e=null,t){switch(t.type){case"SET_INSERTION_POINT":return t.value;case"SELECT_BLOCK":return null}return e}const Jgt=J0({blocks:ygt,isDragging:xgt,isTyping:vgt,isBlockInterfaceHidden:Agt,draggedBlocks:wgt,selection:kgt,isMultiSelecting:Sgt,isSelectionEnabled:Cgt,initialPosition:Tgt,blocksMode:Egt,blockListSettings:Pgt,insertionPoint:Qgt,insertionCue:Wgt,template:Ngt,settings:Bgt,preferences:Lgt,lastBlockAttributesChange:jgt,lastFocus:Kgt,expandedBlock:Dgt,highlightedBlock:Igt,lastBlockInserted:Fgt,temporarilyEditingAsBlocks:$gt,temporarilyEditingFocusModeRevert:Vgt,blockVisibility:_gt,blockEditingModes:Hgt,styleOverrides:Xgt,removalPromptData:qgt,blockRemovalRules:Rgt,openedBlockSettingsMenu:Ugt,registeredInserterMediaCategories:Ggt,hoveredBlockClientId:Ygt,zoomLevel:Zgt});function q2e(e,t){if(t===""){const r=e.blocks.tree.get(t);return r?{clientId:"",...r}:void 0}if(!e.blocks.controlledInnerBlocks[t])return e.blocks.tree.get(t);const n=e.blocks.tree.get(`controlled||${t}`);return{...e.blocks.tree.get(t),innerBlocks:n?.innerBlocks}}function Rx(e,t,n){const o=q2e(e,t);if(o&&(n(o),!!o?.innerBlocks?.length))for(const r of o?.innerBlocks)Rx(e,r.clientId,n)}function Wp(e,t,n){if(!n.length)return;let o=e.blocks.parents.get(t);for(;o!==void 0;){if(n.includes(o))return o;o=e.blocks.parents.get(o)}}function DZ(e){return e?.attributes?.metadata?.bindings&&Object.keys(e?.attributes?.metadata?.bindings).length}function sM(e,t=!1,n=""){const o=e?.zoomLevel<100||e?.zoomLevel==="auto-scaled",r=new Map,s=e.settings?.[Nz],i=e.blocks.order.get(s),c=Array.from(e.blockEditingModes).some(([,d])=>d==="disabled"),l=[],u=[];return Object.keys(e.blocks.controlledInnerBlocks).forEach(d=>{const p=e.blocks.byClientId?.get(d);p?.name==="core/template-part"&&l.push(d),p?.name==="core/block"&&u.push(d)}),Rx(e,n,d=>{const{clientId:p,name:f}=d;if(!e.blockEditingModes.has(p)){if(c){let b,h=e.blocks.parents.get(p);for(;h!==void 0&&(r.has(h)?b=r.get(h):e.blockEditingModes.has(h)&&(b=e.blockEditingModes.get(h)),!b);)h=e.blocks.parents.get(h);if(b==="disabled"){r.set(p,"disabled");return}}if(o||t){if(p===s){r.set(p,"contentOnly");return}if(!i?.length){r.set(p,"disabled");return}if(i.includes(p)){r.set(p,"contentOnly");return}if(o){r.set(p,"disabled");return}if(!!!Wp(e,p,i)){if(p===""){r.set(p,"disabled");return}if(f==="core/template-part"){r.set(p,"contentOnly");return}if(!!!Wp(e,p,l)&&!jZ(f)){r.set(p,"disabled");return}}if(u.length){const h=Wp(e,p,u);if(h){if(Wp(e,h,u)){r.set(p,"disabled");return}if(DZ(d)){r.set(p,"contentOnly");return}r.set(p,"disabled");return}}if(f&&jZ(f)){r.set(p,"contentOnly");return}r.set(p,"disabled");return}if(u.length){if(u.includes(p)){if(Wp(e,p,u)){r.set(p,"disabled");return}return}const b=Wp(e,p,u);if(b){if(Wp(e,b,u)){r.set(p,"disabled");return}if(DZ(d)){r.set(p,"contentOnly");return}r.set(p,"disabled")}}}}),r}function li({prevState:e,nextState:t,addedBlocks:n,removedClientIds:o,isNavMode:r=!1}){const s=r?e.derivedNavModeBlockEditingModes:e.derivedBlockEditingModes;let i;return o?.forEach(c=>{Rx(e,c,l=>{s.has(l.clientId)&&(i||(i=new Map(s)),i.delete(l.clientId))})}),n?.forEach(c=>{Rx(t,c.clientId,l=>{const u=sM(t,r,l.clientId);u.size&&(i?i=new Map([...i?.size?i:[],...u]):i=new Map([...s?.size?s:[],...u]))})}),i}function eMt(e){return(t,n)=>{var o,r;const s=e(t,n);if(n.type!=="SET_EDITOR_MODE"&&s===t)return t;switch(n.type){case"REMOVE_BLOCKS":{const i=li({prevState:t,nextState:s,removedClientIds:n.clientIds,isNavMode:!1}),c=li({prevState:t,nextState:s,removedClientIds:n.clientIds,isNavMode:!0});if(i||c)return{...s,derivedBlockEditingModes:i??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:c??t.derivedNavModeBlockEditingModes};break}case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{const i=li({prevState:t,nextState:s,addedBlocks:n.blocks,isNavMode:!1}),c=li({prevState:t,nextState:s,addedBlocks:n.blocks,isNavMode:!0});if(i||c)return{...s,derivedBlockEditingModes:i??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:c??t.derivedNavModeBlockEditingModes};break}case"SET_BLOCK_EDITING_MODE":case"UNSET_BLOCK_EDITING_MODE":case"SET_HAS_CONTROLLED_INNER_BLOCKS":{const i=q2e(s,n.clientId);if(!i)break;const c=li({prevState:t,nextState:s,removedClientIds:[n.clientId],addedBlocks:[i],isNavMode:!1}),l=li({prevState:t,nextState:s,removedClientIds:[n.clientId],addedBlocks:[i],isNavMode:!0});if(c||l)return{...s,derivedBlockEditingModes:c??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:l??t.derivedNavModeBlockEditingModes};break}case"REPLACE_BLOCKS":{const i=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:n.clientIds,isNavMode:!1}),c=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:n.clientIds,isNavMode:!0});if(i||c)return{...s,derivedBlockEditingModes:i??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:c??t.derivedNavModeBlockEditingModes};break}case"REPLACE_INNER_BLOCKS":{const i=t.blocks.order.get(n.rootClientId),c=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:i,isNavMode:!1}),l=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:i,isNavMode:!0});if(c||l)return{...s,derivedBlockEditingModes:c??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:l??t.derivedNavModeBlockEditingModes};break}case"MOVE_BLOCKS_TO_POSITION":{const i=n.clientIds.map(u=>s.blocks.byClientId.get(u)),c=li({prevState:t,nextState:s,addedBlocks:i,removedClientIds:n.clientIds,isNavMode:!1}),l=li({prevState:t,nextState:s,addedBlocks:i,removedClientIds:n.clientIds,isNavMode:!0});if(c||l)return{...s,derivedBlockEditingModes:c??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:l??t.derivedNavModeBlockEditingModes};break}case"UPDATE_SETTINGS":{if(t?.settings?.[Nz]!==s?.settings?.[Nz])return{...s,derivedBlockEditingModes:sM(s,!1),derivedNavModeBlockEditingModes:sM(s,!0)};break}case"RESET_BLOCKS":case"SET_EDITOR_MODE":case"RESET_ZOOM_LEVEL":case"SET_ZOOM_LEVEL":return{...s,derivedBlockEditingModes:sM(s,!1),derivedNavModeBlockEditingModes:sM(s,!0)}}return s.derivedBlockEditingModes=(o=t?.derivedBlockEditingModes)!==null&&o!==void 0?o:new Map,s.derivedNavModeBlockEditingModes=(r=t?.derivedNavModeBlockEditingModes)!==null&&r!==void 0?r:new Map,s}}function tMt(e){return(t,n)=>{const o=e(t,n);return t?(o.automaticChangeStatus=t.automaticChangeStatus,n.type==="MARK_AUTOMATIC_CHANGE"?{...o,automaticChangeStatus:"pending"}:n.type==="MARK_AUTOMATIC_CHANGE_FINAL"&&t.automaticChangeStatus==="pending"?{...o,automaticChangeStatus:"final"}:o.blocks===t.blocks&&o.selection===t.selection||o.automaticChangeStatus!=="final"&&o.selection!==t.selection?o:{...o,automaticChangeStatus:void 0}):o}}const nMt=Ku(eMt,tMt)(Jgt);function oMt(e={},t){if(t.type==="SET_PREFERENCE_DEFAULTS"){const{scope:n,defaults:o}=t;return{...e,[n]:{...e[n],...o}}}return e}function rMt(e){let t;return(n,o)=>{if(o.type==="SET_PERSISTENCE_LAYER"){const{persistenceLayer:s,persistedData:i}=o;return t=s,i}const r=e(n,o);return o.type==="SET_PREFERENCE_VALUE"&&t?.set(r),r}}const sMt=rMt((e={},t)=>{if(t.type==="SET_PREFERENCE_VALUE"){const{scope:n,name:o,value:r}=t;return{...e,[n]:{...e[n],[o]:r}}}return e}),iMt=J0({defaults:oMt,preferences:sMt});function aMt(e,t){return function({select:n,dispatch:o}){const r=n.get(e,t);o.set(e,t,!r)}}function cMt(e,t,n){return{type:"SET_PREFERENCE_VALUE",scope:e,name:t,value:n}}function lMt(e,t){return{type:"SET_PREFERENCE_DEFAULTS",scope:e,defaults:t}}async function uMt(e){const t=await e.get();return{type:"SET_PERSISTENCE_LAYER",persistenceLayer:e,persistedData:t}}const dMt=Object.freeze(Object.defineProperty({__proto__:null,set:cMt,setDefaults:lMt,setPersistenceLayer:uMt,toggle:aMt},Symbol.toStringTag,{value:"Module"})),pMt=e=>(t,n,o)=>["allowRightClickOverrides","distractionFree","editorMode","fixedToolbar","focusMode","hiddenBlockTypes","inactivePanels","keepCaretInsideBlock","mostUsedBlocks","openPanels","showBlockBreadcrumbs","showIconLabels","showListViewByDefault","isPublishSidebarEnabled","isComplementaryAreaVisible","pinnedItems"].includes(o)&&["core/edit-post","core/edit-site"].includes(n)?(Ke(`wp.data.select( 'core/preferences' ).get( '${n}', '${o}' )`,{since:"6.5",alternative:`wp.data.select( 'core/preferences' ).get( 'core', '${o}' )`}),e(t,"core",o)):e(t,n,o),fMt=pMt((e,t,n)=>{const o=e.preferences[t]?.[n];return o!==void 0?o:e.defaults[t]?.[n]}),bMt=Object.freeze(Object.defineProperty({__proto__:null,get:fMt},Symbol.toStringTag,{value:"Module"})),hMt="core/preferences",ht=x1(hMt,{reducer:iMt,actions:dMt,selectors:bMt});Us(ht);function rq({scope:e,name:t,label:n,info:o,messageActivated:r,messageDeactivated:s,shortcut:i,handleToggling:c=!0,onToggle:l=()=>null,disabled:u=!1}){const d=G(b=>!!b(ht).get(e,t),[e,t]),{toggle:p}=Oe(ht),f=()=>{if(d){const b=s||xe(m("Preference deactivated - %s"),n);Yt(b)}else{const b=r||xe(m("Preference activated - %s"),n);Yt(b)}};return a.jsx(Ct,{icon:d&&M0,isSelected:d,onClick:()=>{l(),c&&p(e,t),f()},role:"menuitemcheckbox",info:o,shortcut:i,disabled:u,children:n})}function R2e({help:e,label:t,isChecked:n,onChange:o,children:r}){return a.jsxs("div",{className:"preference-base-option",children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,help:e,label:t,checked:n,onChange:o}),r]})}function mMt(e){const{scope:t,featureName:n,onToggle:o=()=>{},...r}=e,s=G(l=>!!l(ht).get(t,n),[t,n]),{toggle:i}=Oe(ht),c=()=>{o(),i(t,n)};return a.jsx(R2e,{onChange:c,isChecked:s,...r})}function gMt({closeModal:e,children:t}){return a.jsx(Zo,{className:"preferences-modal",title:m("Preferences"),onRequestClose:e,children:t})}const MMt=({description:e,title:t,children:n})=>a.jsxs("fieldset",{className:"preferences-modal__section",children:[a.jsxs("legend",{className:"preferences-modal__section-legend",children:[a.jsx("h2",{className:"preferences-modal__section-title",children:t}),e&&a.jsx("p",{className:"preferences-modal__section-description",children:e})]}),a.jsx("div",{className:"preferences-modal__section-content",children:n})]}),{lock:zMt,unlock:OMt}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/preferences"),{Tabs:GA}=OMt(tr),FZ="preferences-menu";function yMt({sections:e}){const t=Yn("medium"),[n,o]=x.useState(FZ),{tabs:r,sectionsContentMap:s}=x.useMemo(()=>{let c={tabs:[],sectionsContentMap:{}};return e.length&&(c=e.reduce((l,{name:u,tabLabel:d,content:p})=>(l.tabs.push({name:u,title:d}),l.sectionsContentMap[u]=p,l),{tabs:[],sectionsContentMap:{}})),c},[e]);let i;return t?i=a.jsx("div",{className:"preferences__tabs",children:a.jsxs(GA,{defaultTabId:n!==FZ?n:void 0,onSelect:o,orientation:"vertical",children:[a.jsx(GA.TabList,{className:"preferences__tabs-tablist",children:r.map(c=>a.jsx(GA.Tab,{tabId:c.name,className:"preferences__tabs-tab",children:c.title},c.name))}),r.map(c=>a.jsx(GA.TabPanel,{tabId:c.name,className:"preferences__tabs-tabpanel",focusable:!1,children:s[c.name]||null},c.name))]})}):i=a.jsxs(ic,{initialPath:"/",className:"preferences__provider",children:[a.jsx(ic.Screen,{path:"/",children:a.jsx(PY,{isBorderless:!0,size:"small",children:a.jsx(jY,{children:a.jsx(tb,{children:r.map(c=>a.jsx(ic.Button,{path:`/${c.name}`,as:oO,isAction:!0,children:a.jsxs(Ot,{justify:"space-between",children:[a.jsx(Tn,{children:a.jsx(zs,{children:c.title})}),a.jsx(Tn,{children:a.jsx(wn,{icon:jt()?Pl:ga})})]})},c.name))})})})}),e.length&&e.map(c=>a.jsx(ic.Screen,{path:`/${c.name}`,children:a.jsxs(PY,{isBorderless:!0,size:"large",children:[a.jsxs(ast,{isBorderless:!1,justify:"left",size:"small",gap:"6",children:[a.jsx(ic.BackButton,{icon:jt()?ga:Pl,label:m("Back")}),a.jsx(Sn,{size:"16",children:c.tabLabel})]}),a.jsx(jY,{children:c.content})]})},`${c.name}-menu`))]}),i}const cp={};zMt(cp,{PreferenceBaseOption:R2e,PreferenceToggleControl:mMt,PreferencesModal:gMt,PreferencesModalSection:MMt,PreferencesModalTabs:yMt});const $r="core/block-editor",g1={user:"user",theme:"theme",directory:"directory"},Tx={full:"fully",unsynced:"unsynced"},Ex={name:"allPatterns",label:We("All","patterns")},pO={name:"myPatterns",label:m("My patterns")},T2e={name:"core/starter-content",label:m("Starter content")};function E2e(e,t,n){const o=e.name.startsWith("core/block"),r=e.source==="core"||e.source?.startsWith("pattern-directory");return!!(t===g1.theme&&(o||r)||t===g1.directory&&(o||!r)||t===g1.user&&e.type!==g1.user||n===Tx.full&&e.syncStatus!==""||n===Tx.unsynced&&e.syncStatus!=="unsynced"&&o)}function gn(e,t,n){t=Array.isArray(t)?[...t]:[t],e=Array.isArray(e)?[...e]:{...e};const o=t.pop();let r=e;for(const s of t){const i=r[s];r=r[s]=Array.isArray(i)?[...i]:{...i}}return r[o]=n,e}const fo=(e,t,n)=>{var o;const r=Array.isArray(t)?t:t.split(".");let s=e;return r.forEach(i=>{s=s?.[i]}),(o=s)!==null&&o!==void 0?o:n},AMt=["color","border","dimensions","typography","spacing"],vMt={"color.palette":e=>e.colors,"color.gradients":e=>e.gradients,"color.custom":e=>e.disableCustomColors===void 0?void 0:!e.disableCustomColors,"color.customGradient":e=>e.disableCustomGradients===void 0?void 0:!e.disableCustomGradients,"typography.fontSizes":e=>e.fontSizes,"typography.customFontSize":e=>e.disableCustomFontSizes===void 0?void 0:!e.disableCustomFontSizes,"typography.lineHeight":e=>e.enableCustomLineHeight,"spacing.units":e=>{if(e.enableCustomUnits!==void 0)return e.enableCustomUnits===!0?["px","em","rem","vh","vw","%"]:e.enableCustomUnits},"spacing.padding":e=>e.enableCustomSpacing},xMt={"border.customColor":"border.color","border.customStyle":"border.style","border.customWidth":"border.width","typography.customFontStyle":"typography.fontStyle","typography.customFontWeight":"typography.fontWeight","typography.customLetterSpacing":"typography.letterSpacing","typography.customTextDecorations":"typography.textDecoration","typography.customTextTransforms":"typography.textTransform","border.customRadius":"border.radius","spacing.customMargin":"spacing.margin","spacing.customPadding":"spacing.padding","typography.customLineHeight":"typography.lineHeight"},wMt=e=>xMt[e]||e;function _Mt(e,t,...n){const o=As(e,t),r=[];if(t){let s=t;do{const i=As(e,s);Et(i,"__experimentalSettings",!1)&&r.push(s)}while(s=e.blocks.parents.get(s))}return n.map(s=>{if(AMt.includes(s)){console.warn("Top level useSetting paths are disabled. Please use a subpath to query the information needed.");return}let i=gr("blockEditor.useSetting.before",void 0,s,t,o);if(i!==void 0)return i;const c=wMt(s);for(const b of r){var l;const h=gm(e,b);if(i=(l=fo(h.settings?.blocks?.[o],c))!==null&&l!==void 0?l:fo(h.settings,c),i!==void 0)break}const u=ym(e);if(i===void 0&&o&&(i=fo(u.__experimentalFeatures?.blocks?.[o],c)),i===void 0&&(i=fo(u.__experimentalFeatures,c)),i!==void 0){if(aLe[c]){var d,p;return(d=(p=i.custom)!==null&&p!==void 0?p:i.theme)!==null&&d!==void 0?d:i.default}return i}const f=vMt[c]?.(u);return f!==void 0?f:c==="typography.dropCap"?!0:void 0})}function kMt(e){return e.isBlockInterfaceHidden}function SMt(e){return e?.lastBlockInserted?.clientIds}function CMt(e,t){return e.blocks.byClientId.get(t)}const qMt=(e,t)=>{const n=o=>up(e,o)==="disabled"&&vs(e,o).every(n);return vs(e,t).every(n)};function W2e(e,t){const n=vs(e,t),o=[];for(const r of n){const s=W2e(e,r);up(e,r)!=="disabled"?o.push({clientId:r,innerBlocks:s}):o.push(...s)}return o}const RMt=At(e=>It(W2e,t=>[t.blocks.order,t.derivedBlockEditingModes,t.derivedNavModeBlockEditingModes,t.blockEditingModes,t.settings.templateLock,t.blockListSettings,e($r).__unstableGetEditorMode(t)])),TMt=It((e,t,n=!1)=>Id(e,t,n).filter(o=>up(e,o)!=="disabled"),e=>[e.blocks.parents,e.blockEditingModes,e.settings.templateLock,e.blockListSettings]);function EMt(e){return e.removalPromptData}function WMt(e){return e.blockRemovalRules}function NMt(e){return e.openedBlockSettingsMenu}const BMt=It(e=>{const n=mO(e).reduce((o,r,s)=>(o[r]=s,o),{});return[...e.styleOverrides].sort((o,r)=>{var s,i;const[,{clientId:c}]=o,[,{clientId:l}]=r,u=(s=n[c])!==null&&s!==void 0?s:-1,d=(i=n[l])!==null&&i!==void 0?i:-1;return u-d})},e=>[e.blocks.order,e.styleOverrides]);function LMt(e){return e.registeredInserterMediaCategories}const PMt=It(e=>{const{settings:{inserterMediaCategories:t,allowedMimeTypes:n,enableOpenverseMediaCategory:o},registeredInserterMediaCategories:r}=e;if(!t&&!r.length||!n)return;const s=t?.map(({name:c})=>c)||[];return[...t||[],...(r||[]).filter(({name:c})=>!s.includes(c))].filter(c=>!o&&c.name==="openverse"?!1:Object.values(n).some(l=>l.startsWith(`${c.mediaType}/`)))},e=>[e.settings.inserterMediaCategories,e.settings.allowedMimeTypes,e.settings.enableOpenverseMediaCategory,e.registeredInserterMediaCategories]),jMt=At(e=>It((t,n=null)=>{const{getAllPatterns:o}=ct(e($r)),r=o(),{allowedBlockTypes:s}=ym(t);return r.some(i=>{const{inserter:c=!0}=i;if(!c)return!1;const l=Bz(i);return Zj(l,s)&&l.every(({name:u})=>Om(t,u,n))})},(t,n)=>[...Qj(e)(t),...mm(e)(t,n)]));function N2e(e,t=[]){return{name:`core/block/${e.id}`,id:e.id,type:g1.user,title:e.title.raw,categories:e.wp_pattern_category?.map(n=>{const o=t.find(({id:r})=>r===n);return o?o.slug:n}),content:e.content.raw,syncStatus:e.wp_pattern_sync_status}}const IMt=At(e=>It((t,n)=>{var o,r;if(n?.startsWith("core/block/")){const s=parseInt(n.slice(11),10),i=ct(e($r)).getReusableBlocks().find(({id:c})=>c===s);return i?N2e(i,t.settings.__experimentalUserPatternCategories):null}return[...(o=t.settings.__experimentalBlockPatterns)!==null&&o!==void 0?o:[],...(r=t.settings[Wz]?.(e))!==null&&r!==void 0?r:[]].find(({name:s})=>s===n)},(t,n)=>n?.startsWith("core/block/")?[ct(e($r)).getReusableBlocks(),t.settings.__experimentalReusableBlocks]:[t.settings.__experimentalBlockPatterns,t.settings[Wz]?.(e)])),DMt=At(e=>It(t=>{var n,o;return[...ct(e($r)).getReusableBlocks().map(r=>N2e(r,t.settings.__experimentalUserPatternCategories)),...(n=t.settings.__experimentalBlockPatterns)!==null&&n!==void 0?n:[],...(o=t.settings[Wz]?.(e))!==null&&o!==void 0?o:[]].filter((r,s,i)=>s===i.findIndex(c=>r.name===c.name))},Qj(e))),FMt=[],$Mt=At(e=>t=>{var n;const o=t.settings[S2e];return(n=o?o(e):t.settings.__experimentalReusableBlocks)!==null&&n!==void 0?n:FMt});function VMt(e){return e.lastFocus}function HMt(e){return e.isDragging}function UMt(e){return e.expandedBlock}const B2e=(e,t)=>{let n=t,o;for(;!o&&(n=e.blocks.parents.get(n));)ib(e,n)==="contentOnly"&&(o=n);return o},L2e=(e,t)=>{let n=t,o;for(;!o&&(n=e.blocks.parents.get(n));)Yj(e,n)&&(o=n);return o};function Yj(e,t){const n=As(e,t);if(n==="core/block"||ib(e,t)==="contentOnly")return!0;const o=c7(e);if(o&&n==="core/template-part")return!0;const r=fO(e),s=vs(e,r);return o&&s.includes(t)}function P2e(e){return e.temporarilyEditingAsBlocks}function j2e(e){return e.temporarilyEditingFocusModeRevert}const XMt=It((e,t)=>t.reduce((n,o)=>(n[o]=e.blocks.attributes.get(o)?.style,n),{}),(e,t)=>[...t.map(n=>e.blocks.attributes.get(n)?.style)]);function fO(e){return e.settings?.[Nz]}function I2e(e){return e.zoomLevel==="auto-scaled"||e.zoomLevel<100}function GMt(e){return e.zoomLevel}function D2e(e,t,n=""){const o=Array.isArray(t)?t:[t],r=i=>o.every(c=>Om(e,c,i));if(!n){if(r(n))return n;const i=fO(e);return i&&r(i)?i:null}let s=n;for(;s!==null&&!r(s);)s=n1(e,s);return s}function KMt(e,t,n){const{allowedBlockTypes:o}=ym(e);if(!Zj(Bz(t),o))return null;const s=Bz(t).map(({blockName:i})=>i);return D2e(e,s,n)}function YMt(e){return e.insertionPoint}const F2e=Object.freeze(Object.defineProperty({__proto__:null,getAllPatterns:DMt,getBlockRemovalRules:WMt,getBlockSettings:_Mt,getBlockStyles:XMt,getBlockWithoutAttributes:CMt,getClosestAllowedInsertionPoint:D2e,getClosestAllowedInsertionPointForPattern:KMt,getContentLockingParent:B2e,getEnabledBlockParents:TMt,getEnabledClientIdsTree:RMt,getExpandedBlock:UMt,getInserterMediaCategories:PMt,getInsertionPoint:YMt,getLastFocus:VMt,getLastInsertedBlocksClientIds:SMt,getOpenedBlockSettingsMenu:NMt,getParentSectionBlock:L2e,getPatternBySlug:IMt,getRegisteredInserterMediaCategories:LMt,getRemovalPromptData:EMt,getReusableBlocks:$Mt,getSectionRootClientId:fO,getStyleOverrides:BMt,getTemporarilyEditingAsBlocks:P2e,getTemporarilyEditingFocusModeToRevert:j2e,getZoomLevel:GMt,hasAllowedPatterns:jMt,isBlockInterfaceHidden:kMt,isBlockSubtreeDisabled:qMt,isDragging:HMt,isSectionBlock:Yj,isZoomOut:I2e},Symbol.toStringTag,{value:"Module"})),bO=Symbol("isFiltered"),$Z=new WeakMap,VZ=new WeakMap;function ZMt(e){const t=Ko(e.content,{__unstableSkipMigrationLogs:!0});return t.length===1&&(t[0].attributes={...t[0].attributes,metadata:{...t[0].attributes.metadata||{},categories:e.categories,patternName:e.name,name:t[0].attributes.metadata?.name||e.title}}),{...e,blocks:t}}function $2e(e){let t=$Z.get(e);return t||(t=ZMt(e),$Z.set(e,t)),t}function Bz(e){let t=VZ.get(e);return t||(t=xie(e.content),t=t.filter(n=>n.blockName!==null),VZ.set(e,t)),t}const z2=(e,t,n=null)=>typeof e=="boolean"?e:Array.isArray(e)?e.includes("core/post-content")&&t===null?!0:e.includes(t):n,Zj=(e,t)=>{if(typeof t=="boolean")return t;const n=[...e];for(;n.length>0;){const o=n.shift();if(!z2(t,o.name||o.blockName,!0))return!1;o.innerBlocks?.forEach(s=>{n.push(s)})}return!0},Qj=e=>t=>[t.settings.__experimentalBlockPatterns,t.settings.__experimentalUserPatternCategories,t.settings.__experimentalReusableBlocks,t.settings[Wz]?.(e),t.blockPatterns,ct(e($r)).getReusableBlocks()],mm=e=>(t,n)=>[t.blockListSettings[n],t.blocks.byClientId.get(n),t.settings.allowedBlockTypes,t.settings.templateLock,t.blockEditingModes,e($r).__unstableGetEditorMode(t),fO(t)],QMt=(e,t,n)=>(o,r)=>{let s,i;if(typeof e=="function"?(s=e(o),i=e(r)):(s=o[e],i=r[e]),s>i)return n==="asc"?1:-1;if(i>s)return n==="asc"?-1:1;const c=t.findIndex(u=>u===o),l=t.findIndex(u=>u===r);return c>l?1:l>c?-1:0};function hO(e,t,n="asc"){return e.concat().sort(QMt(t,e,n))}const JMt=3600*1e3,ezt=24*3600*1e3,tzt=7*24*3600*1e3,Z0=[],nzt=new Set,V2e={[bO]:!0};function As(e,t){const n=e.blocks.byClientId.get(t);return n?n.name:null}function ozt(e,t){const n=e.blocks.byClientId.get(t);return!!n&&n.isValid}function gm(e,t){return e.blocks.byClientId.get(t)?e.blocks.attributes.get(t):null}function Dl(e,t){return e.blocks.byClientId.has(t)?e.blocks.tree.get(t):null}const rzt=It((e,t)=>{const n=e.blocks.byClientId.get(t);return n?{...n,attributes:gm(e,t)}:null},(e,t)=>[e.blocks.byClientId.get(t),e.blocks.attributes.get(t)]);function szt(e,t){const n=!t||!f_(e,t)?t||"":"controlled||"+t;return e.blocks.tree.get(n)?.innerBlocks||Z0}const H2e=It((e,t)=>(Ke("wp.data.select( 'core/block-editor' ).__unstableGetClientIdWithClientIdsTree",{since:"6.3",version:"6.5"}),{clientId:t,innerBlocks:U2e(e,t)}),e=>[e.blocks.order]),U2e=It((e,t="")=>(Ke("wp.data.select( 'core/block-editor' ).__unstableGetClientIdsTree",{since:"6.3",version:"6.5"}),vs(e,t).map(n=>H2e(e,n))),e=>[e.blocks.order]),X2e=It((e,t)=>{t=Array.isArray(t)?[...t]:[t];const n=[];for(const r of t){const s=e.blocks.order.get(r);s&&n.push(...s)}let o=0;for(;o<n.length;){const r=n[o],s=e.blocks.order.get(r);s&&n.splice(o+1,0,...s),o++}return n},e=>[e.blocks.order]),mO=e=>X2e(e,""),izt=It((e,t)=>{const n=mO(e);if(!t)return n.length;let o=0;for(const r of n)e.blocks.byClientId.get(r).name===t&&o++;return o},e=>[e.blocks.order,e.blocks.byClientId]),G2e=It((e,t)=>{if(!t)return Z0;const n=Array.isArray(t)?t:[t],r=mO(e).filter(s=>{const i=e.blocks.byClientId.get(s);return n.includes(i.name)});return r.length>0?r:Z0},e=>[e.blocks.order,e.blocks.byClientId]);function azt(e,t){return Ke("wp.data.select( 'core/block-editor' ).__experimentalGetGlobalBlocksByName",{since:"6.5",alternative:"wp.data.select( 'core/block-editor' ).getBlocksByName"}),G2e(e,t)}const Wx=It((e,t)=>(Array.isArray(t)?t:[t]).map(n=>Dl(e,n)),(e,t)=>(Array.isArray(t)?t:[t]).map(n=>e.blocks.tree.get(n))),czt=It((e,t)=>Wx(e,t).filter(Boolean).map(n=>n.name),(e,t)=>Wx(e,t));function lzt(e,t){return vs(e,t).length}function gO(e){return e.selection.selectionStart}function MO(e){return e.selection.selectionEnd}function uzt(e){return e.selection.selectionStart.clientId}function dzt(e){return e.selection.selectionEnd.clientId}function pzt(e){const t=lp(e).length;return t||(e.selection.selectionStart.clientId?1:0)}function fzt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return!!t.clientId&&t.clientId===n.clientId}function Mm(e){const{selectionStart:t,selectionEnd:n}=e.selection,{clientId:o}=t;return!o||o!==n.clientId?null:o}function bzt(e){const t=Mm(e);return t?Dl(e,t):null}function n1(e,t){var n;return(n=e.blocks.parents.get(t))!==null&&n!==void 0?n:null}const Id=It((e,t,n=!1)=>{const o=[];let r=t;for(;r=e.blocks.parents.get(r);)o.push(r);return o.length?n?o:o.reverse():Z0},e=>[e.blocks.parents]),p_=It((e,t,n,o=!1)=>{const r=Id(e,t,o),s=Array.isArray(n)?i=>n.includes(i):i=>n===i;return r.filter(i=>s(As(e,i)))},e=>[e.blocks.parents]);function hzt(e,t){let n=t,o;do o=n,n=e.blocks.parents.get(n);while(n);return o}function mzt(e,t){const n=Mm(e),o=[...Id(e,t),t],r=[...Id(e,n),n];let s;const i=Math.min(o.length,r.length);for(let c=0;c<i&&o[c]===r[c];c++)s=o[c];return s}function Jj(e,t,n=1){if(t===void 0&&(t=Mm(e)),t===void 0&&(n<0?t=e7(e):t=K2e(e)),!t)return null;const o=n1(e,t);if(o===null)return null;const{order:r}=e.blocks,s=r.get(o),c=s.indexOf(t)+1*n;return c<0||c===s.length?null:s[c]}function gzt(e,t){return Jj(e,t,-1)}function Mzt(e,t){return Jj(e,t,1)}function zzt(e){return e.initialPosition}const zm=It(e=>{const{selectionStart:t,selectionEnd:n}=e.selection;if(!t.clientId||!n.clientId)return Z0;if(t.clientId===n.clientId)return[t.clientId];const o=n1(e,t.clientId);if(o===null)return Z0;const r=vs(e,o),s=r.indexOf(t.clientId),i=r.indexOf(n.clientId);return s>i?r.slice(i,s+1):r.slice(s,i+1)},e=>[e.blocks.order,e.selection.selectionStart.clientId,e.selection.selectionEnd.clientId]);function lp(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId===n.clientId?Z0:zm(e)}const Ozt=It(e=>{const t=lp(e);return t.length?t.map(n=>Dl(e,n)):Z0},e=>[...zm.getDependants(e),e.blocks.byClientId,e.blocks.order,e.blocks.attributes]);function e7(e){return lp(e)[0]||null}function K2e(e){const t=lp(e);return t[t.length-1]||null}function yzt(e,t){return e7(e)===t}function Y2e(e,t){return lp(e).indexOf(t)!==-1}const Azt=It((e,t)=>{let n=t,o=!1;for(;n&&!o;)n=n1(e,n),o=Y2e(e,n);return o},e=>[e.blocks.order,e.selection.selectionStart.clientId,e.selection.selectionEnd.clientId]);function vzt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId===n.clientId?null:t.clientId||null}function xzt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId===n.clientId?null:n.clientId||null}function wzt(e){const t=gO(e),n=MO(e);return!t.attributeKey&&!n.attributeKey&&typeof t.offset>"u"&&typeof n.offset>"u"}function _zt(e){const t=gO(e),n=MO(e);return!!t&&!!n&&t.clientId===n.clientId&&t.attributeKey===n.attributeKey&&t.offset===n.offset}function kzt(e){return zm(e).some(t=>{const n=As(e,t);return!on(n).merge})}function Szt(e,t){const n=gO(e),o=MO(e);if(n.clientId===o.clientId||!n.attributeKey||!o.attributeKey||typeof n.offset>"u"||typeof o.offset>"u")return!1;const r=n1(e,n.clientId),s=n1(e,o.clientId);if(r!==s)return!1;const i=vs(e,r),c=i.indexOf(n.clientId),l=i.indexOf(o.clientId);let u,d;c>l?(u=o,d=n):(u=n,d=o);const p=t?d.clientId:u.clientId,f=t?u.clientId:d.clientId,b=As(e,p);if(!on(b).merge)return!1;const g=Dl(e,f);if(g.name===b)return!0;const z=Kr(g,b);return z&&z.length}const Czt=e=>{const t=gO(e),n=MO(e);if(t.clientId===n.clientId||!t.attributeKey||!n.attributeKey||typeof t.offset>"u"||typeof n.offset>"u")return Z0;const o=n1(e,t.clientId),r=n1(e,n.clientId);if(o!==r)return Z0;const s=vs(e,o),i=s.indexOf(t.clientId),c=s.indexOf(n.clientId),[l,u]=i>c?[n,t]:[t,n],d=Dl(e,l.clientId),p=Dl(e,u.clientId),f=d.attributes[l.attributeKey],b=p.attributes[u.attributeKey];let h=eo({html:f}),g=eo({html:b});return h=fa(h,0,l.offset),g=fa(g,u.offset,g.text.length),[{...d,attributes:{...d.attributes,[l.attributeKey]:T0({value:h})}},{...p,attributes:{...p.attributes,[u.attributeKey]:T0({value:g})}}]};function vs(e,t){return e.blocks.order.get(t||"")||Z0}function Z2e(e,t){const n=n1(e,t);return vs(e,n).indexOf(t)}function Q2e(e,t){const{selectionStart:n,selectionEnd:o}=e.selection;return n.clientId!==o.clientId?!1:n.clientId===t}function J2e(e,t,n=!1){const o=zm(e);return o.length?n?o.some(r=>Id(e,r,!0).includes(t)):o.some(r=>n1(e,r)===t):!1}function ehe(e,t,n=!1){return vs(e,t).some(o=>t7(e,o)||n&&ehe(e,o,n))}function qzt(e,t){if(!t)return!1;const n=lp(e),o=n.indexOf(t);return o>-1&&o<n.length-1}function Rzt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId!==n.clientId}function Tzt(e){return e.isMultiSelecting}function Ezt(e){return e.isSelectionEnabled}function Wzt(e,t){return e.blocksMode[t]||"visual"}function Nzt(e){return e.isTyping}function the(e){return!!e.draggedBlocks.length}function Bzt(e){return e.draggedBlocks}function t7(e,t){return e.draggedBlocks.includes(t)}function Lzt(e,t){return the(e)?Id(e,t).some(o=>t7(e,o)):!1}function Pzt(){return Ke('wp.data.select( "core/block-editor" ).isCaretWithinFormattedText',{since:"6.1",version:"6.3"}),!1}const jzt=It(e=>{let t,n;const{insertionCue:o,selection:{selectionEnd:r}}=e;if(o!==null)return o;const{clientId:s}=r;return s?(t=n1(e,s)||void 0,n=Z2e(e,r.clientId)+1):n=vs(e).length,{rootClientId:t,index:n}},e=>[e.insertionCue,e.selection.selectionEnd.clientId,e.blocks.parents,e.blocks.order]);function Izt(e){return e.insertionCue!==null}function Dzt(e){return e.template.isValid}function Fzt(e){return e.settings.template}function ib(e,t){var n;if(!t){var o;return(o=e.settings.templateLock)!==null&&o!==void 0?o:!1}return(n=a7(e,t)?.templateLock)!==null&&n!==void 0?n:!1}const n7=(e,t,n=null)=>{let o,r;if(t&&typeof t=="object"?(o=t,r=t.name):(o=on(t),r=t),!o)return!1;const{allowedBlockTypes:s}=ym(e);if(!z2(s,r,!0))return!1;const c=(Array.isArray(o.parent)?o.parent:[]).concat(Array.isArray(o.ancestor)?o.ancestor:[]);if(c.length>0){const l=As(e,n);return c.includes("core/post-content")||c.includes(l)||p_(e,n,c).length>0}return!0},zO=(e,t,n=null)=>{if(!n7(e,t,n))return!1;let o;if(t&&typeof t=="object"?(o=t,t=o.name):o=on(t),!!ib(e,n)||!!Yj(e,n)||up(e,n??"")==="disabled")return!1;const i=a7(e,n);if(n&&i===void 0)return!1;const c=As(e,n),u=on(c)?.allowedBlocks;let d=z2(u,t);if(d!==!1){const z=i?.allowedBlocks,A=z2(z,t);A!==null&&(d=A)}const p=o.parent,f=z2(p,c);let b=!0;const h=o.ancestor;h&&(b=[n,...Id(e,n)].some(A=>z2(h,As(e,A))));const g=b&&(d===null&&f===null||d===!0||f===!0);return g&&gr("blockEditor.__unstableCanInsertBlockType",g,o,n,{getBlock:Dl.bind(null,e),getBlockParentsByBlockName:p_.bind(null,e)})},Om=At(e=>It(zO,(t,n,o)=>mm(e)(t,o)));function $zt(e,t,n=null){return t.every(o=>Om(e,As(e,o),n))}function o7(e,t){const n=gm(e,t);if(n===null)return!0;if(n.lock?.remove!==void 0)return!n.lock.remove;const o=n1(e,t);return ib(e,o)||!!L2e(e,t)?!1:up(e,o)!=="disabled"}function nhe(e,t){return t.every(n=>o7(e,n))}function ohe(e,t){const n=gm(e,t);if(n===null)return!0;if(n.lock?.move!==void 0)return!n.lock.move;const o=n1(e,t);return ib(e,o)==="all"?!1:up(e,o)!=="disabled"}function Vzt(e,t){return t.every(n=>ohe(e,n))}function rhe(e,t){const n=gm(e,t);if(n===null)return!0;const{lock:o}=n;return!o?.edit}function Hzt(e,t){return Et(t,"lock",!0)?!!e.settings?.canLockBlocks:!1}function r7(e,t){var n;return(n=e.preferences.insertUsage?.[t])!==null&&n!==void 0?n:null}const Lz=(e,t,n)=>Et(t,"inserter",!0)?zO(e,t.name,n):!1,Uzt=(e,t)=>n=>{const o=`${t.id}/${n.name}`,{time:r,count:s=0}=r7(e,o)||{};return{...t,id:o,icon:n.icon||t.icon,title:n.title||t.title,description:n.description||t.description,category:n.category||t.category,example:n.hasOwnProperty("example")?n.example:t.example,initialAttributes:{...t.initialAttributes,...n.attributes},innerBlocks:n.innerBlocks,keywords:n.keywords||t.keywords,frecency:s7(r,s)}},s7=(e,t)=>{if(!e)return t;const n=Date.now()-e;switch(!0){case n<JMt:return t*4;case n<ezt:return t*2;case n<tzt:return t/2;default:return t/4}},she=(e,{buildScope:t="inserter"})=>n=>{const o=n.name;let r=!1;Et(n.name,"multiple",!0)||(r=Wx(e,mO(e)).some(({name:u})=>u===n.name));const{time:s,count:i=0}=r7(e,o)||{},c={id:o,name:n.name,title:n.title,icon:n.icon,isDisabled:r,frecency:s7(s,i)};if(t==="transform")return c;const l=Q5(n.name,"inserter");return{...c,initialAttributes:{},description:n.description,category:n.category,keywords:n.keywords,parent:n.parent,ancestor:n.ancestor,variations:l,example:n.example,utility:1}},Xzt=At(e=>It((t,n=null,o=V2e)=>{const r=b=>{const h=b.wp_pattern_sync_status?Bd:{src:Bd,foreground:"var(--wp-block-synced-color)"},g=`core/block/${b.id}`,{time:z,count:A=0}=r7(t,g)||{},_=s7(z,A);return{id:g,name:"core/block",initialAttributes:{ref:b.id},title:b.title?.raw,icon:h,category:"reusable",keywords:["reusable"],isDisabled:!1,utility:1,frecency:_,content:b.content?.raw,syncStatus:b.wp_pattern_sync_status}},s=zO(t,"core/block",n)?ct(e($r)).getReusableBlocks().map(r):[],i=she(t,{buildScope:"inserter"});let c=gs().filter(b=>Et(b,"inserter",!0)).map(i);o[bO]!==!1?c=c.filter(b=>Lz(t,b,n)):c=c.filter(b=>n7(t,b,n)).map(b=>({...b,isAllowedInCurrentRoot:Lz(t,b,n)}));const l=c.reduce((b,h)=>{const{variations:g=[]}=h;if(g.some(({isDefault:z})=>z)||b.push(h),g.length){const z=Uzt(t,h);b.push(...g.map(z))}return b},[]),u=(b,h)=>{const{core:g,noncore:z}=b;return(h.name.startsWith("core/")?g:z).push(h),b},{core:d,noncore:p}=l.reduce(u,{core:[],noncore:[]});return[...[...d,...p],...s]},(t,n)=>[gs(),ct(e($r)).getReusableBlocks(),t.blocks.order,t.preferences.insertUsage,...mm(e)(t,n)])),Gzt=At(e=>It((t,n,o=null)=>{const r=Array.isArray(n)?n:[n],s=she(t,{buildScope:"transform"}),i=gs().filter(u=>Lz(t,u,o)).map(s),c=Object.fromEntries(Object.entries(i).map(([,u])=>[u.name,u])),l=Aie(r).reduce((u,d)=>(c[d?.name]&&u.push(c[d.name]),u),[]);return hO(l,u=>c[u.name].frecency,"desc")},(t,n,o)=>[gs(),t.preferences.insertUsage,...mm(e)(t,o)])),Kzt=At(e=>(t,n=null)=>gs().some(s=>Lz(t,s,n))?!0:zO(t,"core/block",n)&&ct(e($r)).getReusableBlocks().length>0),yW=At(e=>It((t,n=null)=>{if(!n)return;const o=gs().filter(s=>Lz(t,s,n));return zO(t,"core/block",n)&&ct(e($r)).getReusableBlocks().length>0&&o.push("core/block"),o},(t,n)=>[gs(),ct(e($r)).getReusableBlocks(),...mm(e)(t,n)])),Yzt=It((e,t=null)=>(Ke('wp.data.select( "core/block-editor" ).__experimentalGetAllowedBlocks',{alternative:'wp.data.select( "core/block-editor" ).getAllowedBlocks',since:"6.2",version:"6.4"}),yW(e,t)),(e,t)=>yW.getDependants(e,t));function ihe(e,t=null){var n;if(!t)return;const{defaultBlock:o,directInsert:r}=(n=e.blockListSettings[t])!==null&&n!==void 0?n:{};if(!(!o||!r))return o}function Zzt(e,t=null){return Ke('wp.data.select( "core/block-editor" ).__experimentalGetDirectInsertBlock',{alternative:'wp.data.select( "core/block-editor" ).getDirectInsertBlock',since:"6.3",version:"6.4"}),ihe(e,t)}const Qzt=At(e=>(t,n)=>{const o=ct(e($r)).getPatternBySlug(n);return o?$2e(o):null}),i7=e=>(t,n)=>[...Qj(e)(t),...mm(e)(t,n)],HZ=new WeakMap;function Jzt(e){let t=HZ.get(e);return t||(t={...e,get blocks(){return $2e(e).blocks}},HZ.set(e,t)),t}const e3t=At(e=>It((t,n=null,o=V2e)=>{const{getAllPatterns:r}=ct(e($r)),s=r(),{allowedBlockTypes:i}=ym(t);return s.filter(({inserter:d=!0})=>!!d).map(Jzt).filter(d=>Zj(Bz(d),i)).filter(d=>Bz(d).every(({blockName:p})=>o[bO]!==!1?Om(t,p,n):n7(t,p,n)))},i7(e))),t3t=At(e=>It((t,n,o=null)=>{if(!n)return Z0;const r=e($r).__experimentalGetAllowedPatterns(o),s=Array.isArray(n)?n:[n],i=r.filter(c=>c?.blockTypes?.some?.(l=>s.includes(l)));return i.length===0?Z0:i},(t,n,o)=>i7(e)(t,o))),n3t=At(e=>(Ke('wp.data.select( "core/block-editor" ).__experimentalGetPatternsByBlockTypes',{alternative:'wp.data.select( "core/block-editor" ).getPatternsByBlockTypes',since:"6.2",version:"6.4"}),e($r).getPatternsByBlockTypes)),o3t=At(e=>It((t,n,o=null)=>{if(!n||n.some(({clientId:s,innerBlocks:i})=>i.length||f_(t,s)))return Z0;const r=Array.from(new Set(n.map(({name:s})=>s)));return e($r).getPatternsByBlockTypes(r,o)},(t,n,o)=>i7(e)(t,o)));function a7(e,t){return e.blockListSettings[t]}function ym(e){return e.settings}function r3t(e){return e.blocks.isPersistentChange}const s3t=It((e,t=[])=>t.reduce((n,o)=>e.blockListSettings[o]?{...n,[o]:e.blockListSettings[o]}:n,{}),e=>[e.blockListSettings]),i3t=At(e=>It((t,n)=>{Ke("wp.data.select( 'core/block-editor' ).__experimentalGetReusableBlockTitle",{since:"6.6",version:"6.8"});const o=ct(e($r)).getReusableBlocks().find(r=>r.id===n);return o?o.title?.raw:null},()=>[ct(e($r)).getReusableBlocks()]));function a3t(e){return e.blocks.isIgnoredChange}function c3t(e){return e.lastBlockAttributesChange}function c7(e){return ahe(e)==="navigation"}const ahe=At(e=>t=>{var n;return window?.__experimentalEditorWriteMode?(n=t.settings.editorTool)!==null&&n!==void 0?n:e(ht).get("core","editorTool"):"edit"});function l3t(){return Ke('wp.data.select( "core/block-editor" ).hasBlockMovingClientId',{since:"6.7",hint:"Block moving mode feature has been removed"}),!1}function u3t(e){return!!e.automaticChangeStatus}function d3t(e,t){return e.highlightedBlock===t}function f_(e,t){return!!e.blocks.controlledInnerBlocks[t]}const p3t=It((e,t)=>{if(!t.length)return null;const n=Mm(e);if(t.includes(As(e,n)))return n;const o=lp(e),r=p_(e,n||o[0],t);return r?r[r.length-1]:null},(e,t)=>[e.selection.selectionStart.clientId,e.selection.selectionEnd.clientId,t]);function f3t(e,t,n){const{lastBlockInserted:o}=e;return o.clientIds?.includes(t)&&o.source===n}function b3t(e,t){var n;return(n=e.blockVisibility?.[t])!==null&&n!==void 0?n:!0}function h3t(e){return e.hoveredBlockClientId}const m3t=It(e=>{const t=new Set(Object.keys(e.blockVisibility).filter(n=>e.blockVisibility[n]));return t.size===0?nzt:t},e=>[e.blockVisibility]);function che(e,t){if(up(e,t)!=="default")return!1;if(!rhe(e,t))return!0;if(I2e(e)){const r=fO(e);if(r){if(vs(e,r)?.includes(t))return!0}else if(t&&!n1(e,t))return!0}return(Et(As(e,t),"__experimentalDisableBlockOverlay",!1)?!1:f_(e,t))&&!Q2e(e,t)&&!J2e(e,t,!0)}function g3t(e,t){let n=e.blocks.parents.get(t);for(;n;){if(che(e,n))return!0;n=e.blocks.parents.get(n)}return!1}const up=At(e=>(t,n="")=>{n===null&&(n="");const o=c7(t);if(!o&&t.derivedBlockEditingModes?.has(n))return t.derivedBlockEditingModes.get(n);if(o&&t.derivedNavModeBlockEditingModes?.has(n))return t.derivedNavModeBlockEditingModes.get(n);const r=t.blockEditingModes.get(n);if(r)return r;if(n==="")return"default";const s=n1(t,n);if(ib(t,s)==="contentOnly"){const c=As(t,n),{hasContentRoleAttribute:l}=ct(e(kt));return l(c)?"contentOnly":"disabled"}return"default"}),M3t=At(e=>(t,n="")=>{const o=n||Mm(t);if(!o)return!1;const{getGroupingBlockName:r}=e(kt),s=Dl(t,o),i=r();return s&&(s.name===i||on(s.name)?.transforms?.ungroup)&&!!s.innerBlocks.length&&o7(t,o)}),z3t=At(e=>(t,n=Z0)=>{const{getGroupingBlockName:o}=e(kt),r=o(),s=n?.length?n:zm(t),i=s?.length?n1(t,s[0]):void 0;return Om(t,r,i)&&s.length&&nhe(t,s)}),O3t=(e,t)=>(Ke("wp.data.select( 'core/block-editor' ).__unstableGetContentLockingParent",{since:"6.1",version:"6.7"}),B2e(e,t));function y3t(e){return Ke("wp.data.select( 'core/block-editor' ).__unstableGetTemporarilyEditingAsBlocks",{since:"6.1",version:"6.7"}),P2e(e)}function A3t(e){return Ke("wp.data.select( 'core/block-editor' ).__unstableGetTemporarilyEditingFocusModeToRevert",{since:"6.5",version:"6.7"}),j2e(e)}const v3t=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetActiveBlockIdByBlockNames:p3t,__experimentalGetAllowedBlocks:Yzt,__experimentalGetAllowedPatterns:e3t,__experimentalGetBlockListSettingsForBlocks:s3t,__experimentalGetDirectInsertBlock:Zzt,__experimentalGetGlobalBlocksByName:azt,__experimentalGetLastBlockAttributeChanges:c3t,__experimentalGetParsedPattern:Qzt,__experimentalGetPatternTransformItems:o3t,__experimentalGetPatternsByBlockTypes:n3t,__experimentalGetReusableBlockTitle:i3t,__unstableGetBlockWithoutInnerBlocks:rzt,__unstableGetClientIdWithClientIdsTree:H2e,__unstableGetClientIdsTree:U2e,__unstableGetContentLockingParent:O3t,__unstableGetEditorMode:ahe,__unstableGetSelectedBlocksWithPartialSelection:Czt,__unstableGetTemporarilyEditingAsBlocks:y3t,__unstableGetTemporarilyEditingFocusModeToRevert:A3t,__unstableGetVisibleBlocks:m3t,__unstableHasActiveBlockOverlayActive:che,__unstableIsFullySelected:wzt,__unstableIsLastBlockChangeIgnored:a3t,__unstableIsSelectionCollapsed:_zt,__unstableIsSelectionMergeable:Szt,__unstableIsWithinBlockOverlay:g3t,__unstableSelectionHasUnmergeableBlock:kzt,areInnerBlocksControlled:f_,canEditBlock:rhe,canInsertBlockType:Om,canInsertBlocks:$zt,canLockBlockType:Hzt,canMoveBlock:ohe,canMoveBlocks:Vzt,canRemoveBlock:o7,canRemoveBlocks:nhe,didAutomaticChange:u3t,getAdjacentBlockClientId:Jj,getAllowedBlocks:yW,getBlock:Dl,getBlockAttributes:gm,getBlockCount:lzt,getBlockEditingMode:up,getBlockHierarchyRootClientId:hzt,getBlockIndex:Z2e,getBlockInsertionPoint:jzt,getBlockListSettings:a7,getBlockMode:Wzt,getBlockName:As,getBlockNamesByClientId:czt,getBlockOrder:vs,getBlockParents:Id,getBlockParentsByBlockName:p_,getBlockRootClientId:n1,getBlockSelectionEnd:dzt,getBlockSelectionStart:uzt,getBlockTransformItems:Gzt,getBlocks:szt,getBlocksByClientId:Wx,getBlocksByName:G2e,getClientIdsOfDescendants:X2e,getClientIdsWithDescendants:mO,getDirectInsertBlock:ihe,getDraggedBlockClientIds:Bzt,getFirstMultiSelectedBlockClientId:e7,getGlobalBlockCount:izt,getHoveredBlockClientId:h3t,getInserterItems:Xzt,getLastMultiSelectedBlockClientId:K2e,getLowestCommonAncestorWithSelectedBlock:mzt,getMultiSelectedBlockClientIds:lp,getMultiSelectedBlocks:Ozt,getMultiSelectedBlocksEndClientId:xzt,getMultiSelectedBlocksStartClientId:vzt,getNextBlockClientId:Mzt,getPatternsByBlockTypes:t3t,getPreviousBlockClientId:gzt,getSelectedBlock:bzt,getSelectedBlockClientId:Mm,getSelectedBlockClientIds:zm,getSelectedBlockCount:pzt,getSelectedBlocksInitialCaretPosition:zzt,getSelectionEnd:MO,getSelectionStart:gO,getSettings:ym,getTemplate:Fzt,getTemplateLock:ib,hasBlockMovingClientId:l3t,hasDraggedInnerBlock:ehe,hasInserterItems:Kzt,hasMultiSelection:Rzt,hasSelectedBlock:fzt,hasSelectedInnerBlock:J2e,isAncestorBeingDragged:Lzt,isAncestorMultiSelected:Azt,isBlockBeingDragged:t7,isBlockHighlighted:d3t,isBlockInsertionPointVisible:Izt,isBlockMultiSelected:Y2e,isBlockSelected:Q2e,isBlockValid:ozt,isBlockVisible:b3t,isBlockWithinSelection:qzt,isCaretWithinFormattedText:Pzt,isDraggingBlocks:the,isFirstMultiSelectedBlock:yzt,isGroupable:z3t,isLastBlockChangePersistent:r3t,isMultiSelecting:Tzt,isNavigationMode:c7,isSelectionEnabled:Ezt,isTyping:Nzt,isUngroupable:M3t,isValidTemplate:Dzt,wasBlockJustInserted:f3t},Symbol.toStringTag,{value:"Module"})),x3t=e=>Array.isArray(e)?e:[e],w3t=["inserterMediaCategories","blockInspectorAnimation","mediaSideload"];function lhe(e,{stripExperimentalSettings:t=!1,reset:n=!1}={}){let o=e;Object.hasOwn(o,"__unstableIsPreviewMode")&&(Ke("__unstableIsPreviewMode argument in wp.data.dispatch('core/block-editor').updateSettings",{since:"6.8",alternative:"isPreviewMode"}),o={...o},o.isPreviewMode=o.__unstableIsPreviewMode,delete o.__unstableIsPreviewMode);let r=o;if(t&&f0.OS==="web"){r={};for(const s in o)w3t.includes(s)||(r[s]=o[s])}return{type:"UPDATE_SETTINGS",settings:r,reset:n}}function _3t(){return{type:"HIDE_BLOCK_INTERFACE"}}function k3t(){return{type:"SHOW_BLOCK_INTERFACE"}}const uhe=(e,t=!0,n=!1)=>({select:o,dispatch:r,registry:s})=>{if(!e||!e.length||(e=x3t(e),!o.canRemoveBlocks(e)))return;const c=!n&&o.getBlockRemovalRules();if(c){let u=function(b){const h=[],g=[...b];for(;g.length;){const{innerBlocks:z,...A}=g.shift();g.push(...z),h.push(A)}return h};var l=u;const d=e.map(o.getBlock),p=u(d);let f;for(const b of c)if(f=b.callback(p),f){r(S3t(e,t,f));return}}t&&r.selectPreviousBlock(e[0],t),s.batch(()=>{r({type:"REMOVE_BLOCKS",clientIds:e}),r(dhe())})},dhe=()=>({select:e,dispatch:t})=>{if(e.getBlockCount()>0)return;const{__unstableHasCustomAppender:o}=e.getSettings();o||t.insertDefaultBlock()};function S3t(e,t,n){return{type:"DISPLAY_BLOCK_REMOVAL_PROMPT",clientIds:e,selectPrevious:t,message:n}}function C3t(){return{type:"CLEAR_BLOCK_REMOVAL_PROMPT"}}function q3t(e=!1){return{type:"SET_BLOCK_REMOVAL_RULES",rules:e}}function R3t(e){return{type:"SET_OPENED_BLOCK_SETTINGS_MENU",clientId:e}}function T3t(e,t){return{type:"SET_STYLE_OVERRIDE",id:e,style:t}}function E3t(e){return{type:"DELETE_STYLE_OVERRIDE",id:e}}function W3t(e=null){return{type:"LAST_FOCUS",lastFocus:e}}function N3t(e){return({select:t,dispatch:n,registry:o})=>{const r=ct(o.select(Q)).getTemporarilyEditingFocusModeToRevert();n.__unstableMarkNextChangeAsNotPersistent(),n.updateBlockAttributes(e,{templateLock:"contentOnly"}),n.updateBlockListSettings(e,{...t.getBlockListSettings(e),templateLock:"contentOnly"}),n.updateSettings({focusMode:r}),n.__unstableSetTemporarilyEditingAsBlocks()}}function B3t(){return{type:"START_DRAGGING"}}function L3t(){return{type:"STOP_DRAGGING"}}function P3t(e){return{type:"SET_BLOCK_EXPANDED_IN_LIST_VIEW",clientId:e}}function j3t(e){return{type:"SET_INSERTION_POINT",value:e}}const I3t=e=>({select:t,dispatch:n})=>{n.selectBlock(e),n.__unstableMarkNextChangeAsNotPersistent(),n.updateBlockAttributes(e,{templateLock:void 0}),n.updateBlockListSettings(e,{...t.getBlockListSettings(e),templateLock:!1});const o=t.getSettings().focusMode;n.updateSettings({focusMode:!0}),n.__unstableSetTemporarilyEditingAsBlocks(e,o)},D3t=(e=100)=>({select:t,dispatch:n})=>{if(e!==100){const o=t.getBlockSelectionStart(),r=t.getSectionRootClientId();if(o){let s;if(r){const i=t.getBlockOrder(r);i?.includes(o)?s=o:s=t.getBlockParents(o).find(c=>i.includes(c))}else s=t.getBlockHierarchyRootClientId(o);s?n.selectBlock(s):n.clearSelectedBlock(),Yt(m("You are currently in zoom-out mode."))}}n({type:"SET_ZOOM_LEVEL",zoom:e})};function F3t(){return{type:"RESET_ZOOM_LEVEL"}}const phe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalUpdateSettings:lhe,clearBlockRemovalPrompt:C3t,deleteStyleOverride:E3t,ensureDefaultBlock:dhe,expandBlock:P3t,hideBlockInterface:_3t,modifyContentLockBlock:I3t,privateRemoveBlocks:uhe,resetZoomLevel:F3t,setBlockRemovalRules:q3t,setInsertionPoint:j3t,setLastFocus:W3t,setOpenedBlockSettingsMenu:R3t,setStyleOverride:T3t,setZoomLevel:D3t,showBlockInterface:k3t,startDragging:B3t,stopDragging:L3t,stopEditingAsBlocks:N3t},Symbol.toStringTag,{value:"Module"})),$3t=e=>t=>(n={},o)=>{const r=o[e];if(r===void 0)return n;const s=t(n[r],o);return s===n[r]?n:{...n,[r]:s}},V3t=$3t("context")((e=[],t)=>{switch(t.type){case"CREATE_NOTICE":return[...e.filter(({id:n})=>n!==t.notice.id),t.notice];case"REMOVE_NOTICE":return e.filter(({id:n})=>n!==t.id);case"REMOVE_NOTICES":return e.filter(({id:n})=>!t.ids.includes(n));case"REMOVE_ALL_NOTICES":return e.filter(({type:n})=>n!==t.noticeType)}return e}),OO="global",H3t="info";let U3t=0;function yO(e=H3t,t,n={}){const{speak:o=!0,isDismissible:r=!0,context:s=OO,id:i=`${s}${++U3t}`,actions:c=[],type:l="default",__unstableHTML:u,icon:d=null,explicitDismiss:p=!1,onDismiss:f}=n;return t=String(t),{type:"CREATE_NOTICE",context:s,notice:{id:i,status:e,content:t,spokenMessage:o?t:null,__unstableHTML:u,isDismissible:r,actions:c,type:l,icon:d,explicitDismiss:p,onDismiss:f}}}function X3t(e,t){return yO("success",e,t)}function G3t(e,t){return yO("info",e,t)}function K3t(e,t){return yO("error",e,t)}function Y3t(e,t){return yO("warning",e,t)}function Z3t(e,t=OO){return{type:"REMOVE_NOTICE",id:e,context:t}}function Q3t(e="default",t=OO){return{type:"REMOVE_ALL_NOTICES",noticeType:e,context:t}}function J3t(e,t=OO){return{type:"REMOVE_NOTICES",ids:e,context:t}}const eOt=Object.freeze(Object.defineProperty({__proto__:null,createErrorNotice:K3t,createInfoNotice:G3t,createNotice:yO,createSuccessNotice:X3t,createWarningNotice:Y3t,removeAllNotices:Q3t,removeNotice:Z3t,removeNotices:J3t},Symbol.toStringTag,{value:"Module"})),tOt=[];function nOt(e,t=OO){return e[t]||tOt}const oOt=Object.freeze(Object.defineProperty({__proto__:null,getNotices:nOt},Symbol.toStringTag,{value:"Module"})),mt=x1("core/notices",{reducer:V3t,actions:eOt,selectors:oOt});Us(mt);const qf="";function l7(e){if(e)return Object.keys(e).find(t=>{const n=e[t];return(typeof n=="string"||n instanceof Xo)&&n.toString().indexOf(qf)!==-1})}function UZ(e){for(const[t,n]of Object.entries(e.attributes))if(n.source==="rich-text"||n.source==="html")return t}const vh=e=>Array.isArray(e)?e:[e],rOt=e=>({dispatch:t})=>{t({type:"RESET_BLOCKS",blocks:e}),t(fhe(e))},fhe=e=>({select:t,dispatch:n})=>{const o=t.getTemplate(),r=t.getTemplateLock(),s=!o||r!=="all"||nae(e,o),i=t.isValidTemplate();if(s!==i)return n.setTemplateValidity(s),s};function sOt(e,t,n){return{type:"RESET_SELECTION",selectionStart:e,selectionEnd:t,initialPosition:n}}function iOt(e){return Ke('wp.data.dispatch( "core/block-editor" ).receiveBlocks',{since:"5.9",alternative:"resetBlocks or insertBlocks"}),{type:"RECEIVE_BLOCKS",blocks:e}}function aOt(e,t,n=!1){return{type:"UPDATE_BLOCK_ATTRIBUTES",clientIds:vh(e),attributes:t,uniqueByBlock:n}}function cOt(e,t){return{type:"UPDATE_BLOCK",clientId:e,updates:t}}function lOt(e,t=0){return{type:"SELECT_BLOCK",initialPosition:t,clientId:e}}function uOt(e){return{type:"HOVER_BLOCK",clientId:e}}const dOt=(e,t=!1)=>({select:n,dispatch:o})=>{const r=n.getPreviousBlockClientId(e);if(r)o.selectBlock(r,-1);else if(t){const s=n.getBlockRootClientId(e);s&&o.selectBlock(s,-1)}},pOt=e=>({select:t,dispatch:n})=>{const o=t.getNextBlockClientId(e);o&&n.selectBlock(o)};function fOt(){return{type:"START_MULTI_SELECT"}}function bOt(){return{type:"STOP_MULTI_SELECT"}}const hOt=(e,t,n=0)=>({select:o,dispatch:r})=>{const s=o.getBlockRootClientId(e),i=o.getBlockRootClientId(t);if(s!==i)return;r({type:"MULTI_SELECT",start:e,end:t,initialPosition:n});const c=o.getSelectedBlockCount();Yt(xe(Dn("%s block selected.","%s blocks selected.",c),c),"assertive")};function mOt(){return{type:"CLEAR_SELECTED_BLOCK"}}function gOt(e=!0){return{type:"TOGGLE_SELECTION",isSelectionEnabled:e}}const bhe=(e,t,n,o=0,r)=>({select:s,dispatch:i,registry:c})=>{e=vh(e),t=vh(t);const l=s.getBlockRootClientId(e[0]);for(let u=0;u<t.length;u++){const d=t[u];if(!s.canInsertBlockType(d.name,l))return}c.batch(()=>{i({type:"REPLACE_BLOCKS",clientIds:e,blocks:t,time:Date.now(),indexToSelect:n,initialPosition:o,meta:r}),i.ensureDefaultBlock()})};function MOt(e,t){return bhe(e,t)}const hhe=e=>(t,n)=>({select:o,dispatch:r})=>{o.canMoveBlocks(t)&&r({type:e,clientIds:vh(t),rootClientId:n})},zOt=hhe("MOVE_BLOCKS_DOWN"),OOt=hhe("MOVE_BLOCKS_UP"),mhe=(e,t="",n="",o)=>({select:r,dispatch:s})=>{r.canMoveBlocks(e)&&(t!==n&&(!r.canRemoveBlocks(e)||!r.canInsertBlocks(e,n))||s({type:"MOVE_BLOCKS_TO_POSITION",fromRootClientId:t,toRootClientId:n,clientIds:e,index:o}))};function yOt(e,t="",n="",o){return mhe([e],t,n,o)}function AOt(e,t,n,o,r){return ghe([e],t,n,o,0,r)}const ghe=(e,t,n,o=!0,r=0,s)=>({select:i,dispatch:c})=>{r!==null&&typeof r=="object"&&(s=r,r=0,Ke("meta argument in wp.data.dispatch('core/block-editor')",{since:"5.8",hint:"The meta argument is now the 6th argument of the function"})),e=vh(e);const l=[];for(const u of e)i.canInsertBlockType(u.name,n)&&l.push(u);l.length&&c({type:"INSERT_BLOCKS",blocks:l,index:t,rootClientId:n,time:Date.now(),updateSelection:o,initialPosition:o?r:null,meta:s})};function vOt(e,t,n={}){const{__unstableWithInserter:o,operation:r,nearestSide:s}=n;return{type:"SHOW_INSERTION_POINT",rootClientId:e,index:t,__unstableWithInserter:o,operation:r,nearestSide:s}}const xOt=()=>({select:e,dispatch:t})=>{e.isBlockInsertionPointVisible()&&t({type:"HIDE_INSERTION_POINT"})};function wOt(e){return{type:"SET_TEMPLATE_VALIDITY",isValid:e}}const _Ot=()=>({select:e,dispatch:t})=>{t({type:"SYNCHRONIZE_TEMPLATE"});const n=e.getBlocks(),o=e.getTemplate(),r=oz(n,o);t.resetBlocks(r)},kOt=e=>({registry:t,select:n,dispatch:o})=>{const r=n.getSelectionStart(),s=n.getSelectionEnd();if(r.clientId===s.clientId)return;if(!r.attributeKey||!s.attributeKey||typeof r.offset>"u"||typeof s.offset>"u")return!1;const i=n.getBlockRootClientId(r.clientId),c=n.getBlockRootClientId(s.clientId);if(i!==c)return;const l=n.getBlockOrder(i),u=l.indexOf(r.clientId),d=l.indexOf(s.clientId);let p,f;u>d?(p=s,f=r):(p=r,f=s);const b=e?f:p,h=n.getBlock(b.clientId),g=on(h.name);if(!g.merge)return;const z=p,A=f,_=n.getBlock(z.clientId),v=n.getBlock(A.clientId),M=_.attributes[z.attributeKey],y=v.attributes[A.attributeKey];let k=eo({html:M}),S=eo({html:y});k=fa(k,z.offset,k.text.length),S=E0(S,qf,0,A.offset);const C=jo(_,{[z.attributeKey]:T0({value:k})}),R=jo(v,{[A.attributeKey]:T0({value:S})}),T=e?C:R,E=_.name===v.name?[T]:Kr(T,g.name);if(!E||!E.length)return;let B;if(e){const V=E.pop();B=g.merge(V.attributes,R.attributes)}else{const V=E.shift();B=g.merge(C.attributes,V.attributes)}const N=l7(B),j=B[N],I=eo({html:j}),P=I.text.indexOf(qf),$=fa(I,P,P+1),F=T0({value:$});B[N]=F;const X=n.getSelectedBlockClientIds(),Z=[...e?E:[],{...h,attributes:{...h.attributes,...B}},...e?[]:E];t.batch(()=>{o.selectionChange(h.clientId,N,P,P),o.replaceBlocks(X,Z,0,n.getSelectedBlocksInitialCaretPosition())})},SOt=(e=[])=>({registry:t,select:n,dispatch:o})=>{const r=n.getSelectionStart(),s=n.getSelectionEnd(),i=n.getBlockRootClientId(r.clientId),c=n.getBlockRootClientId(s.clientId);if(i!==c)return;const l=n.getBlockOrder(i),u=l.indexOf(r.clientId),d=l.indexOf(s.clientId);let p,f;u>d?(p=s,f=r):(p=r,f=s);const b=p,h=f,g=n.getBlock(b.clientId),z=n.getBlock(h.clientId),A=on(g.name),_=on(z.name),v=typeof b.attributeKey=="string"?b.attributeKey:UZ(A),M=typeof h.attributeKey=="string"?h.attributeKey:UZ(_),y=n.getBlockAttributes(b.clientId);if(y?.metadata?.bindings?.[v]){if(e.length){const{createWarningNotice:te}=t.dispatch(mt);te(m("Blocks can't be inserted into other blocks with bindings"),{type:"snackbar"});return}o.insertAfterBlock(b.clientId);return}if(!v||!M||typeof r.offset>"u"||typeof s.offset>"u")return;if(b.clientId===h.clientId&&v===M&&b.offset===h.offset){if(e.length){if(Wl(g)){o.replaceBlocks([b.clientId],e,e.length-1,-1);return}}else if(!n.getBlockOrder(b.clientId).length){let te=function(){const ue=Mr();return n.canInsertBlockType(ue,i)?Ee(ue):Ee(n.getBlockName(b.clientId))};var ee=te;const J=y[v].length;if(b.offset===0&&J){o.insertBlocks([te()],n.getBlockIndex(b.clientId),i,!1);return}if(b.offset===J){o.insertBlocks([te()],n.getBlockIndex(b.clientId)+1,i);return}}}const S=g.attributes[v],C=z.attributes[M];let R=eo({html:S}),T=eo({html:C});R=fa(R,b.offset,R.text.length),T=fa(T,0,h.offset);let E={...g,innerBlocks:g.clientId===z.clientId?[]:g.innerBlocks,attributes:{...g.attributes,[v]:T0({value:R})}},B={...z,clientId:g.clientId===z.clientId?Ee(z.name).clientId:z.clientId,attributes:{...z.attributes,[M]:T0({value:T})}};const N=Mr();if(g.clientId===z.clientId&&N&&B.name!==N&&n.canInsertBlockType(N,i)){const te=Kr(B,N);te?.length===1&&(B=te[0])}if(!e.length){o.replaceBlocks(n.getSelectedBlockClientIds(),[E,B]);return}let j;const I=[],P=[...e],$=P.shift(),F=on(E.name),X=F.merge&&$.name===F.name?[$]:Kr($,F.name);if(X?.length){const te=X.shift();E={...E,attributes:{...E.attributes,...F.merge(E.attributes,te.attributes)}},I.push(E),j={clientId:E.clientId,attributeKey:v,offset:eo({html:E.attributes[v]}).text.length},P.unshift(...X)}else E2(E)||I.push(E),I.push($);const Z=P.pop(),V=on(B.name);if(P.length&&I.push(...P),Z){const te=V.merge&&V.name===Z.name?[Z]:Kr(Z,V.name);if(te?.length){const J=te.pop();I.push({...B,attributes:{...B.attributes,...V.merge(J.attributes,B.attributes)}}),I.push(...te),j={clientId:B.clientId,attributeKey:M,offset:eo({html:J.attributes[M]}).text.length}}else I.push(Z),E2(B)||I.push(B)}else E2(B)||I.push(B);t.batch(()=>{o.replaceBlocks(n.getSelectedBlockClientIds(),I,I.length-1,0),j&&o.selectionChange(j.clientId,j.attributeKey,j.offset,j.offset)})},COt=()=>({select:e,dispatch:t})=>{const n=e.getSelectionStart(),o=e.getSelectionEnd();t.selectionChange({start:{clientId:n.clientId},end:{clientId:o.clientId}})},qOt=(e,t)=>({registry:n,select:o,dispatch:r})=>{const s=e,i=t,c=o.getBlock(s),l=on(c.name);if(!l)return;const u=o.getBlock(i);if(!l.merge&&An(c.name,"__experimentalOnMerge")){const y=Kr(u,l.name);if(y?.length!==1){r.selectBlock(c.clientId);return}const[k]=y;if(k.innerBlocks.length<1){r.selectBlock(c.clientId);return}n.batch(()=>{r.insertBlocks(k.innerBlocks,void 0,s),r.removeBlock(i),r.selectBlock(k.innerBlocks[0].clientId);const S=o.getNextBlockClientId(s);if(S&&o.getBlockName(s)===o.getBlockName(S)){const C=o.getBlockAttributes(s),R=o.getBlockAttributes(S);Object.keys(C).every(T=>C[T]===R[T])&&(r.moveBlocksToPosition(o.getBlockOrder(S),S,s),r.removeBlock(S,!1))}});return}if(Wl(c)){r.removeBlock(s,o.isBlockSelected(s));return}if(Wl(u)){r.removeBlock(i,o.isBlockSelected(i));return}if(!l.merge){r.selectBlock(c.clientId);return}const d=on(u.name),{clientId:p,attributeKey:f,offset:b}=o.getSelectionStart(),g=(p===s?l:d).attributes[f],z=(p===s||p===i)&&f!==void 0&&b!==void 0&&!!g;g||(typeof f=="number"?window.console.error(`RichText needs an identifier prop that is the block attribute key of the attribute it controls. Its type is expected to be a string, but was ${typeof f}`):window.console.error("The RichText identifier prop does not match any attributes defined by the block."));const A=jo(c),_=jo(u);if(z){const y=p===s?A:_,k=y.attributes[f],S=E0(eo({html:k}),qf,b,b);y.attributes[f]=T0({value:S})}const v=c.name===u.name?[_]:Kr(_,c.name);if(!v||!v.length)return;const M=l.merge(A.attributes,v[0].attributes);if(z){const y=l7(M),k=M[y],S=eo({html:k}),C=S.text.indexOf(qf),R=fa(S,C,C+1),T=T0({value:R});M[y]=T,r.selectionChange(c.clientId,y,C,C)}r.replaceBlocks([c.clientId,u.clientId],[{...c,attributes:{...c.attributes,...M}},...v.slice(1)],0)},Mhe=(e,t=!0)=>uhe(e,t);function ROt(e,t){return Mhe([e],t)}function TOt(e,t,n=!1,o=0){return{type:"REPLACE_INNER_BLOCKS",rootClientId:e,blocks:t,updateSelection:n,initialPosition:n?o:null,time:Date.now()}}function EOt(e){return{type:"TOGGLE_BLOCK_MODE",clientId:e}}function WOt(){return{type:"START_TYPING"}}function NOt(){return{type:"STOP_TYPING"}}function BOt(e=[]){return{type:"START_DRAGGING_BLOCKS",clientIds:e}}function LOt(){return{type:"STOP_DRAGGING_BLOCKS"}}function POt(){return Ke('wp.data.dispatch( "core/block-editor" ).enterFormattedText',{since:"6.1",version:"6.3"}),{type:"DO_NOTHING"}}function jOt(){return Ke('wp.data.dispatch( "core/block-editor" ).exitFormattedText',{since:"6.1",version:"6.3"}),{type:"DO_NOTHING"}}function IOt(e,t,n,o){return typeof e=="string"?{type:"SELECTION_CHANGE",clientId:e,attributeKey:t,startOffset:n,endOffset:o}:{type:"SELECTION_CHANGE",...e}}const DOt=(e,t,n)=>({dispatch:o})=>{const r=Mr();if(!r)return;const s=Ee(r,e);return o.insertBlock(s,n,t)};function FOt(e,t){return{type:"UPDATE_BLOCK_LIST_SETTINGS",clientId:e,settings:t}}function $Ot(e){return lhe(e,{stripExperimentalSettings:!0})}function VOt(e,t){return{type:"SAVE_REUSABLE_BLOCK_SUCCESS",id:e,updatedId:t}}function HOt(){return{type:"MARK_LAST_CHANGE_AS_PERSISTENT"}}function UOt(){return{type:"MARK_NEXT_CHANGE_AS_NOT_PERSISTENT"}}const XOt=()=>({dispatch:e})=>{e({type:"MARK_AUTOMATIC_CHANGE"});const{requestIdleCallback:t=n=>setTimeout(n,100)}=window;t(()=>{e({type:"MARK_AUTOMATIC_CHANGE_FINAL"})})},GOt=(e=!0)=>({dispatch:t})=>{t.__unstableSetEditorMode(e?"navigation":"edit")},KOt=e=>({registry:t})=>{t.dispatch(ht).set("core","editorTool",e),e==="navigation"?Yt(m("You are currently in Write mode.")):e==="edit"&&Yt(m("You are currently in Design mode."))};function YOt(){return Ke('wp.data.dispatch( "core/block-editor" ).setBlockMovingClientId',{since:"6.7",hint:"Block moving mode feature has been removed"}),{type:"DO_NOTHING"}}const ZOt=(e,t=!0)=>({select:n,dispatch:o})=>{if(!e||!e.length)return;const r=n.getBlocksByClientId(e);if(r.some(d=>!d)||r.map(d=>d.name).some(d=>!Et(d,"multiple",!0)))return;const i=n.getBlockRootClientId(e[0]),c=vh(e),l=n.getBlockIndex(c[c.length-1]),u=r.map(d=>Oie(d));return o.insertBlocks(u,l+1,i,t),u.length>1&&t&&o.multiSelect(u[0].clientId,u[u.length-1].clientId),u.map(d=>d.clientId)},QOt=e=>({select:t,dispatch:n})=>{if(!e)return;const o=t.getBlockRootClientId(e);if(t.getTemplateLock(o))return;const s=t.getBlockIndex(e),i=o?t.getDirectInsertBlock(o):null;if(!i)return n.insertDefaultBlock({},o,s);const c={};if(i.attributesToCopy){const u=t.getBlockAttributes(e);i.attributesToCopy.forEach(d=>{u[d]&&(c[d]=u[d])})}const l=Ee(i.name,{...i.attributes,...c});return n.insertBlock(l,s,o)},JOt=e=>({select:t,dispatch:n})=>{if(!e)return;const o=t.getBlockRootClientId(e);if(t.getTemplateLock(o))return;const s=t.getBlockIndex(e),i=o?t.getDirectInsertBlock(o):null;if(!i)return n.insertDefaultBlock({},o,s+1);const c={};if(i.attributesToCopy){const u=t.getBlockAttributes(e);i.attributesToCopy.forEach(d=>{u[d]&&(c[d]=u[d])})}const l=Ee(i.name,{...i.attributes,...c});return n.insertBlock(l,s+1,o)};function AW(e,t){return{type:"TOGGLE_BLOCK_HIGHLIGHT",clientId:e,isHighlighted:t}}const eyt=e=>async({dispatch:t})=>{t(AW(e,!0)),await new Promise(n=>setTimeout(n,150)),t(AW(e,!1))};function tyt(e,t){return{type:"SET_HAS_CONTROLLED_INNER_BLOCKS",hasControlledInnerBlocks:t,clientId:e}}function nyt(e){return{type:"SET_BLOCK_VISIBILITY",updates:e}}function oyt(e,t){return{type:"SET_TEMPORARILY_EDITING_AS_BLOCKS",temporarilyEditingAsBlocks:e,focusModeToRevert:t}}const ryt=e=>({select:t,dispatch:n})=>{if(!e||typeof e!="object"){console.error("Category should be an `InserterMediaCategory` object.");return}if(!e.name){console.error("Category should have a `name` that should be unique among all media categories.");return}if(!e.labels?.name){console.error("Category should have a `labels.name`.");return}if(!["image","audio","video"].includes(e.mediaType)){console.error("Category should have `mediaType` property that is one of `image|audio|video`.");return}if(!e.fetch||typeof e.fetch!="function"){console.error("Category should have a `fetch` function defined with the following signature `(InserterMediaRequest) => Promise<InserterMediaItem[]>`.");return}const o=t.getRegisteredInserterMediaCategories();if(o.some(({name:r})=>r===e.name)){console.error(`A category is already registered with the same name: "${e.name}".`);return}if(o.some(({labels:{name:r}={}})=>r===e.labels?.name)){console.error(`A category is already registered with the same labels.name: "${e.labels.name}".`);return}n({type:"REGISTER_INSERTER_MEDIA_CATEGORY",category:{...e,isExternalResource:!0}})};function syt(e="",t){return{type:"SET_BLOCK_EDITING_MODE",clientId:e,mode:t}}function iyt(e=""){return{type:"UNSET_BLOCK_EDITING_MODE",clientId:e}}const ayt=Object.freeze(Object.defineProperty({__proto__:null,__unstableDeleteSelection:kOt,__unstableExpandSelection:COt,__unstableMarkAutomaticChange:XOt,__unstableMarkLastChangeAsPersistent:HOt,__unstableMarkNextChangeAsNotPersistent:UOt,__unstableSaveReusableBlock:VOt,__unstableSetEditorMode:KOt,__unstableSetTemporarilyEditingAsBlocks:oyt,__unstableSplitSelection:SOt,clearSelectedBlock:mOt,duplicateBlocks:ZOt,enterFormattedText:POt,exitFormattedText:jOt,flashBlock:eyt,hideInsertionPoint:xOt,hoverBlock:uOt,insertAfterBlock:JOt,insertBeforeBlock:QOt,insertBlock:AOt,insertBlocks:ghe,insertDefaultBlock:DOt,mergeBlocks:qOt,moveBlockToPosition:yOt,moveBlocksDown:zOt,moveBlocksToPosition:mhe,moveBlocksUp:OOt,multiSelect:hOt,receiveBlocks:iOt,registerInserterMediaCategory:ryt,removeBlock:ROt,removeBlocks:Mhe,replaceBlock:MOt,replaceBlocks:bhe,replaceInnerBlocks:TOt,resetBlocks:rOt,resetSelection:sOt,selectBlock:lOt,selectNextBlock:pOt,selectPreviousBlock:dOt,selectionChange:IOt,setBlockEditingMode:syt,setBlockMovingClientId:YOt,setBlockVisibility:nyt,setHasControlledInnerBlocks:tyt,setNavigationMode:GOt,setTemplateValidity:wOt,showInsertionPoint:vOt,startDraggingBlocks:BOt,startMultiSelect:fOt,startTyping:WOt,stopDraggingBlocks:LOt,stopMultiSelect:bOt,stopTyping:NOt,synchronizeTemplate:_Ot,toggleBlockHighlight:AW,toggleBlockMode:EOt,toggleSelection:gOt,unsetBlockEditingMode:iyt,updateBlock:cOt,updateBlockAttributes:aOt,updateBlockListSettings:FOt,updateSettings:$Ot,validateBlocksToTemplate:fhe},Symbol.toStringTag,{value:"Module"})),b_={reducer:nMt,selectors:v3t,actions:ayt},Q=x1($r,{...b_,persist:["preferences"]}),zhe=JCe($r,{...b_,persist:["preferences"]});ct(zhe).registerPrivateActions(phe);ct(zhe).registerPrivateSelectors(F2e);ct(Q).registerPrivateActions(phe);ct(Q).registerPrivateSelectors(F2e);const cyt="__default",Ohe="core/pattern-overrides",h_={"core/paragraph":["content"],"core/heading":["content"],"core/image":["id","url","title","alt"],"core/button":["url","text","linkTarget","rel"]};function sq(e){return!e||Object.keys(e).length===0}function u7(e){return e in h_}function vW(e,t){return u7(e)&&h_[e].includes(t)}function lyt(e){return h_[e]}function yhe(e){return e?.[cyt]?.source===Ohe}function uyt(e,t){if(yhe(t)){const n=h_[e],o={};for(const r of n){const s=t[r]?t[r]:{source:Ohe};o[r]=s}return o}return t}function m_(e){const{clientId:t}=j0(),n=t,{updateBlockAttributes:o}=Oe(Q),{getBlockAttributes:r}=Fn().select(Q);return{updateBlockBindings:c=>{const{metadata:{bindings:l,...u}={}}=r(n),d={...l};Object.entries(c).forEach(([f,b])=>{if(!b&&d[f]){delete d[f];return}d[f]=b});const p={...u,bindings:d};sq(p.bindings)&&delete p.bindings,o(n,{metadata:sq(p)?void 0:p})},removeAllBlockBindings:()=>{const{metadata:{bindings:c,...l}={}}=r(n);o(n,{metadata:sq(l)?void 0:l})}}}const dyt={},pyt=e=>{const{name:t}=e,n=on(t);if(!n)return null;const o=n.edit||n.save;return a.jsx(o,{...e})},XZ=ap("editor.BlockEdit")(pyt),fyt=e=>{const{name:t,clientId:n,attributes:o,setAttributes:r}=e,s=Fn(),i=on(t),c=x.useContext(Cf),l=G(z=>ct(z(kt)).getAllBlockBindingsSources(),[]),{blockBindings:u,context:d,hasPatternOverrides:p}=x.useMemo(()=>{const z=i?.usesContext?Object.fromEntries(Object.entries(c).filter(([A])=>i.usesContext.includes(A))):dyt;return o?.metadata?.bindings&&Object.values(o?.metadata?.bindings||{}).forEach(A=>{l[A?.source]?.usesContext?.forEach(_=>{z[_]=c[_]})}),{blockBindings:uyt(t,o?.metadata?.bindings),context:z,hasPatternOverrides:yhe(o?.metadata?.bindings)}},[t,i?.usesContext,c,o?.metadata?.bindings,l]),f=G(z=>{if(!u)return o;const A={},_=new Map;for(const[v,M]of Object.entries(u)){const{source:y,args:k}=M,S=l[y];!S||!vW(t,v)||_.set(S,{..._.get(S),[v]:{args:k}})}if(_.size)for(const[v,M]of _){let y={};v.getValues?y=v.getValues({select:z,context:d,clientId:n,bindings:M}):Object.keys(M).forEach(k=>{y[k]=v.label});for(const[k,S]of Object.entries(y))k==="url"&&(!S||!Kj(S))?A[k]=null:A[k]=S}return{...o,...A}},[o,u,n,d,t,l]),b=x.useCallback(z=>{if(!u){r(z);return}s.batch(()=>{const A={...z},_=new Map;for(const[M,y]of Object.entries(A)){if(!u[M]||!vW(t,M))continue;const k=u[M],S=l[k?.source];S?.setValues&&(_.set(S,{..._.get(S),[M]:{args:k.args,newValue:y}}),delete A[M])}if(_.size)for(const[M,y]of _)M.setValues({select:s.select,dispatch:s.dispatch,context:d,clientId:n,bindings:y});const v=!!d["pattern/overrides"];!(p&&v)&&Object.keys(A).length&&(p&&(delete A.caption,delete A.href),r(A))})},[u,n,d,p,r,l,t,s]);if(!i)return null;if(i.apiVersion>1)return a.jsx(XZ,{...e,attributes:f,context:d,setAttributes:b});const h=Et(i,"className",!0)?Z4(t):null,g=oe(h,o?.className,e.className);return a.jsx(XZ,{...e,attributes:f,className:g,context:d,setAttributes:b})};function Er({className:e,actions:t,children:n,secondaryActions:o}){return a.jsx("div",{style:{display:"contents",all:"initial"},children:a.jsx("div",{className:oe(e,"block-editor-warning"),children:a.jsxs("div",{className:"block-editor-warning__contents",children:[a.jsx("p",{className:"block-editor-warning__message",children:n}),(t?.length>0||o)&&a.jsxs("div",{className:"block-editor-warning__actions",children:[t?.length>0&&t.map((r,s)=>a.jsx("span",{className:"block-editor-warning__action",children:r},s)),o&&a.jsx(c0,{className:"block-editor-warning__secondary",icon:Wc,label:m("More options"),popoverProps:{position:"bottom left",className:"block-editor-warning__dropdown"},noIcons:!0,children:()=>a.jsx(Cn,{children:o.map((r,s)=>a.jsx(Ct,{onClick:r.onClick,children:r.title},s))})})]})]})})})}function byt({originalBlockClientId:e,name:t,onReplace:n}){const{selectBlock:o}=Oe(Q),r=on(t);return a.jsxs(Er,{actions:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>o(e),children:m("Find original")},"find-original"),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>n([]),children:m("Remove")},"remove")],children:[a.jsxs("strong",{children:[r?.title,": "]}),m("This block can only be used once.")]})}const Pz=x.createContext({});function hyt({mayDisplayControls:e,mayDisplayParentControls:t,blockEditingMode:n,isPreviewMode:o,...r}){const{name:s,isSelected:i,clientId:c,attributes:l={},__unstableLayoutClassNames:u}=r,{layout:d=null,metadata:p={}}=l,{bindings:f}=p,b=Et(s,"layout",!1)||Et(s,"__experimentalLayout",!1),{originalBlockClientId:h}=x.useContext(Pz);return a.jsxs(lae,{value:x.useMemo(()=>({name:s,isSelected:i,clientId:c,layout:b?d:null,__unstableLayoutClassNames:u,[ow]:e,[ZB]:t,[sae]:n,[QB]:f,[iae]:o}),[s,i,c,b,d,u,e,t,n,f,o]),children:[a.jsx(fyt,{...r}),h&&a.jsx(byt,{originalBlockClientId:h,name:s,onReplace:r.onReplace})]})}function Un(...e){const{clientId:t=null}=j0();return G(n=>ct(n(Q)).getBlockSettings(t,...e),[t,...e])}const{kebabCase:myt}=ct(tr),GZ=([e,...t])=>e.toUpperCase()+t.join(""),gyt=()=>Or(e=>t=>{const[n,o,r]=Un("color.palette.custom","color.palette.theme","color.palette.default"),s=x.useMemo(()=>[...n||[],...o||[],...r||[]],[n,o,r]);return a.jsx(e,{...t,colors:s})},"withEditorColorPalette");function Myt(e,t){const n=e.reduce((o,r)=>({...o,...typeof r=="string"?{[r]:myt(r)}:r}),{});return Co([t,o=>class extends x.Component{constructor(r){super(r),this.setters=this.createSetters(),this.colorUtils={getMostReadableColor:this.getMostReadableColor.bind(this)},this.state={}}getMostReadableColor(r){const{colors:s}=this.props;return igt(s,r)}createSetters(){return Object.keys(n).reduce((r,s)=>{const i=GZ(s),c=`custom${i}`;return r[`set${i}`]=this.createSetColor(s,c),r},{})}createSetColor(r,s){return i=>{const c=_2e(this.props.colors,i);this.props.setAttributes({[r]:c&&c.slug?c.slug:void 0,[s]:c&&c.slug?void 0:i})}}static getDerivedStateFromProps({attributes:r,colors:s},i){return Object.entries(n).reduce((c,[l,u])=>{const d=Sf(s,r[l],r[`custom${GZ(l)}`]),p=i[l];return p?.color===d.color&&p?c[l]=p:c[l]={...d,class:Pt(u,d.slug)},c},{})}render(){return a.jsx(o,{...this.props,colors:void 0,...this.state,...this.setters,colorUtils:this.colorUtils})}}])}function AO(...e){const t=gyt();return Or(Myt(e,t),"withColors")}function R1(e){if(e)return`has-${e}-gradient-background`}function Ahe(e,t){const n=e?.find(o=>o.slug===t);return n&&n.gradient}function zyt(e,t){return e?.find(o=>o.gradient===t)}function Oyt(e,t){const n=zyt(e,t);return n&&n.slug}function g_({gradientAttribute:e="gradient",customGradientAttribute:t="customGradient"}={}){const{clientId:n}=j0(),[o,r,s]=Un("color.gradients.custom","color.gradients.theme","color.gradients.default"),i=x.useMemo(()=>[...o||[],...r||[],...s||[]],[o,r,s]),{gradient:c,customGradient:l}=G(b=>{const{getBlockAttributes:h}=b(Q),g=h(n)||{};return{customGradient:g[t],gradient:g[e]}},[n,e,t]),{updateBlockAttributes:u}=Oe(Q),d=x.useCallback(b=>{const h=Oyt(i,b);if(h){u(n,{[e]:h,[t]:void 0});return}u(n,{[e]:void 0,[t]:b})},[i,n,u]),p=R1(c);let f;return c?f=Ahe(i,c):f=l,{gradientClass:p,gradientValue:f,setGradient:d}}const{kebabCase:yyt}=ct(tr),Ayt=(e,t,n)=>{if(t){const o=e?.find(({slug:r})=>r===t);if(o)return o}return{size:n}};function Nx(e){if(e)return`has-${yyt(e)}-font-size`}const vyt="1600px",xyt="320px",wyt=1,_yt=.25,kyt=.75,Syt="14px";function Cyt({minimumFontSize:e,maximumFontSize:t,fontSize:n,minimumViewportWidth:o=xyt,maximumViewportWidth:r=vyt,scaleFactor:s=wyt,minimumFontSizeLimit:i}){if(i=il(i)?i:Syt,n){const v=il(n);if(!v?.unit)return null;const M=il(i,{coerceTo:v.unit});if(M?.value&&!e&&!t&&v?.value<=M?.value)return null;if(t||(t=`${v.value}${v.unit}`),!e){const y=v.unit==="px"?v.value:v.value*16,k=Math.min(Math.max(1-.075*Math.log2(y),_yt),kyt),S=iM(v.value*k,3);M?.value&&S<M?.value?e=`${M.value}${M.unit}`:e=`${S}${v.unit}`}}const c=il(e),l=c?.unit||"rem",u=il(t,{coerceTo:l});if(!c||!u)return null;const d=il(e,{coerceTo:"rem"}),p=il(r,{coerceTo:l}),f=il(o,{coerceTo:l});if(!p||!f||!d)return null;const b=p.value-f.value;if(!b)return null;const h=iM(f.value/100,3),g=iM(h,3)+l,z=100*((u.value-c.value)/b),A=iM((z||1)*s,3),_=`${d.value}${d.unit} + ((1vw - ${g}) * ${A})`;return`clamp(${e}, ${_}, ${t})`}function il(e,t={}){if(typeof e!="string"&&typeof e!="number")return null;isFinite(e)&&(e=`${e}px`);const{coerceTo:n,rootSizeValue:o,acceptableUnits:r}={coerceTo:"",rootSizeValue:16,acceptableUnits:["rem","px","em"],...t},s=r?.join("|"),i=new RegExp(`^(\\d*\\.?\\d+)(${s}){1,1}$`),c=e.match(i);if(!c||c.length<3)return null;let[,l,u]=c,d=parseFloat(l);return n==="px"&&(u==="em"||u==="rem")&&(d=d*o,u=n),u==="px"&&(n==="em"||n==="rem")&&(d=d/o,u=n),(n==="em"||n==="rem")&&(u==="em"||u==="rem")&&(u=n),{value:iM(d,3),unit:u}}function iM(e,t=3){const n=Math.pow(10,t);return Number.isFinite(e)?parseFloat(Math.round(e*n)/n):void 0}const qyt=[{icon:$3,title:m("Align text left"),align:"left"},{icon:Rw,title:m("Align text center"),align:"center"},{icon:V3,title:m("Align text right"),align:"right"}],Ryt={placement:"bottom-start"};function vhe({value:e,onChange:t,alignmentControls:n=qyt,label:o=m("Align text"),description:r=m("Change text alignment"),isCollapsed:s=!0,isToolbar:i}){function c(f){return()=>t(e===f?void 0:f)}const l=n.find(f=>f.align===e);function u(){return l?l.icon:jt()?V3:$3}const d=i?Wn:Lc,p=i?{isCollapsed:s}:{toggleProps:{description:r},popoverProps:Ryt};return a.jsx(d,{icon:u(),label:o,controls:n.map(f=>{const{align:b}=f;return{...f,isActive:e===b,role:s?"menuitemradio":void 0,onClick:c(b)}}),...p})}const nr=e=>a.jsx(vhe,{...e,isToolbar:!1}),jz=e=>a.jsx(vhe,{...e,isToolbar:!0}),Tyt=e=>e.name||"",Eyt=e=>e.title,Wyt=e=>e.description||"",Nyt=e=>e.keywords||[],Byt=e=>e.category,Lyt=()=>null,Pyt=[/([\p{Ll}\p{Lo}\p{N}])([\p{Lu}\p{Lt}])/gu,/([\p{Lu}\p{Lt}])([\p{Lu}\p{Lt}][\p{Ll}\p{Lo}])/gu],jyt=/(\p{C}|\p{P}|\p{S})+/giu,iq=new Map,aq=new Map;function d7(e=""){if(iq.has(e))return iq.get(e);const t=A5(e,{splitRegexp:Pyt,stripRegexp:jyt}).split(" ").filter(Boolean);return iq.set(e,t),t}function Bx(e=""){if(aq.has(e))return aq.get(e);let t=ms(e);return t=t.replace(/^\//,""),t=t.toLowerCase(),aq.set(e,t),t}const M_=(e="")=>d7(Bx(e)),Iyt=(e,t)=>e.filter(n=>!M_(t).some(o=>o.includes(n))),xhe=(e,t,n,o)=>M_(o).length===0?e:p7(e,o,{getCategory:i=>t.find(({slug:c})=>c===i.category)?.title,getCollection:i=>n[i.name.split("/")[0]]?.title}),p7=(e=[],t="",n={})=>{if(M_(t).length===0)return e;const r=e.map(s=>[s,Dyt(s,t,n)]).filter(([,s])=>s>0);return r.sort(([,s],[,i])=>i-s),r.map(([s])=>s)};function Dyt(e,t,n={}){const{getName:o=Tyt,getTitle:r=Eyt,getDescription:s=Wyt,getKeywords:i=Nyt,getCategory:c=Byt,getCollection:l=Lyt}=n,u=o(e),d=r(e),p=s(e),f=i(e),b=c(e),h=l(e),g=Bx(t),z=Bx(d);let A=0;if(g===z)A+=30;else if(z.startsWith(g))A+=20;else{const _=[u,d,p,...f,b,h].join(" "),v=d7(g);Iyt(v,_).length===0&&(A+=10)}if(A!==0&&u.startsWith("core/")){const _=u!==e.id;A+=_?1:2}return A}const z_=(e,t,n)=>{const o=x.useMemo(()=>({[bO]:!!n}),[n]),[r]=G(d=>[d(Q).getInserterItems(e,o)],[e,o]),{getClosestAllowedInsertionPoint:s}=ct(G(Q)),{createErrorNotice:i}=Oe(mt),[c,l]=G(d=>{const{getCategories:p,getCollections:f}=d(kt);return[p(),f()]},[]),u=x.useCallback(({name:d,initialAttributes:p,innerBlocks:f,syncStatus:b,content:h},g)=>{const z=s(d,e);if(z===null){var A;const v=(A=on(d)?.title)!==null&&A!==void 0?A:d;i(xe(m(`Block "%s" can't be inserted.`),v),{type:"snackbar",id:"inserter-notice"});return}const _=b==="unsynced"?Ko(h,{__unstableSkipMigrationLogs:!0}):Ee(d,p,Ad(f));t(_,void 0,g,z)},[s,e,t,i]);return[r,c,l,u]};function Fyt({icon:e,showColors:t=!1,className:n,context:o}){e?.src==="block-default"&&(e={src:Ew});const r=a.jsx(qo,{icon:e&&e.src?e.src:e,context:o}),s=t?{backgroundColor:e&&e.background,color:e&&e.foreground}:{};return a.jsx("span",{style:s,className:oe("block-editor-block-icon",n,{"has-colors":t}),children:r})}const Zn=x.memo(Fyt),whe=(e,t)=>(t&&e.sort(({id:n},{id:o})=>{let r=t.indexOf(n),s=t.indexOf(o);return r<0&&(r=t.length),s<0&&(s=t.length),r-s}),e),$yt=()=>{},Vyt=9;function Hyt(){return{name:"blocks",className:"block-editor-autocompleters__block",triggerPrefix:"/",useItems(e){const{rootClientId:t,selectedBlockId:n,prioritizedBlocks:o}=G(u=>{const{getSelectedBlockClientId:d,getBlock:p,getBlockListSettings:f,getBlockRootClientId:b}=u(Q),{getActiveBlockVariation:h}=u(kt),g=d(),{name:z,attributes:A}=p(g),_=h(z,A),v=b(g);return{selectedBlockId:_?`${z}/${_.name}`:z,rootClientId:v,prioritizedBlocks:f(v)?.prioritizedInserterBlocks}},[]),[r,s,i]=z_(t,$yt,!0),c=x.useMemo(()=>(e.trim()?xhe(r,s,i,e):whe(hO(r,"frecency","desc"),o)).filter(d=>d.id!==n).slice(0,Vyt),[e,n,r,s,i,o]);return[x.useMemo(()=>c.map(u=>{const{title:d,icon:p,isDisabled:f}=u;return{key:`block-${u.id}`,value:u,label:a.jsxs(a.Fragment,{children:[a.jsx(Zn,{icon:p,showColors:!0},"icon"),d]}),isDisabled:f}}),[c])]},allowContext(e,t){return!(/\S/.test(e)||/\S/.test(t))},getOptionCompletion(e){const{name:t,initialAttributes:n,innerBlocks:o,syncStatus:r,content:s}=e;return{action:"replace",value:r==="unsynced"?Ko(s,{__unstableSkipMigrationLogs:!0}):Ee(t,n,Ad(o))}}}}const Uyt=Hyt(),Xyt=10;function Gyt(){return{name:"links",className:"block-editor-autocompleters__link",triggerPrefix:"[[",options:async e=>{let t=await Tt({path:tn("/wp/v2/search",{per_page:Xyt,search:e,type:"post",order_by:"menu_order"})});return t=t.filter(n=>n.title!==""),t},getOptionKeywords(e){return[...e.title.split(/\s+/)]},getOptionLabel(e){return a.jsxs(a.Fragment,{children:[a.jsx(wn,{icon:e.subtype==="page"?wa:wde},"icon"),Lt(e.title)]})},getOptionCompletion(e){return a.jsx("a",{href:e.url,children:e.title})}}}const Kyt=Gyt(),Yyt=[];function Zyt({completers:e=Yyt}){const{name:t}=j0();return x.useMemo(()=>{let n=[...e,Kyt];return(t===Mr()||An(t,"__experimentalSlashInserter",!1))&&(n=[...n,Uyt]),Xre("editor.Autocomplete.completers")&&(n===e&&(n=n.map(o=>({...o}))),n=gr("editor.Autocomplete.completers",n,t)),n},[e,t])}function Qyt(e){return pnt({...e,completers:Zyt(e)})}const Dd={default:{name:"default",slug:"flow",className:"is-layout-flow",baseStyles:[{selector:" > .alignleft",rules:{float:"left","margin-inline-start":"0","margin-inline-end":"2em"}},{selector:" > .alignright",rules:{float:"right","margin-inline-start":"2em","margin-inline-end":"0"}},{selector:" > .aligncenter",rules:{"margin-left":"auto !important","margin-right":"auto !important"}}],spacingStyles:[{selector:" > :first-child",rules:{"margin-block-start":"0"}},{selector:" > :last-child",rules:{"margin-block-end":"0"}},{selector:" > *",rules:{"margin-block-start":null,"margin-block-end":"0"}}]},constrained:{name:"constrained",slug:"constrained",className:"is-layout-constrained",baseStyles:[{selector:" > .alignleft",rules:{float:"left","margin-inline-start":"0","margin-inline-end":"2em"}},{selector:" > .alignright",rules:{float:"right","margin-inline-start":"2em","margin-inline-end":"0"}},{selector:" > .aligncenter",rules:{"margin-left":"auto !important","margin-right":"auto !important"}},{selector:" > :where(:not(.alignleft):not(.alignright):not(.alignfull))",rules:{"max-width":"var(--wp--style--global--content-size)","margin-left":"auto !important","margin-right":"auto !important"}},{selector:" > .alignwide",rules:{"max-width":"var(--wp--style--global--wide-size)"}}],spacingStyles:[{selector:" > :first-child",rules:{"margin-block-start":"0"}},{selector:" > :last-child",rules:{"margin-block-end":"0"}},{selector:" > *",rules:{"margin-block-start":null,"margin-block-end":"0"}}]},flex:{name:"flex",slug:"flex",className:"is-layout-flex",displayMode:"flex",baseStyles:[{selector:"",rules:{"flex-wrap":"wrap","align-items":"center"}},{selector:" > :is(*, div)",rules:{margin:"0"}}],spacingStyles:[{selector:"",rules:{gap:null}}]},grid:{name:"grid",slug:"grid",className:"is-layout-grid",displayMode:"grid",baseStyles:[{selector:" > :is(*, div)",rules:{margin:"0"}}],spacingStyles:[{selector:"",rules:{gap:null}}]}};function Ja(e,t=""){return e.split(",").map(n=>`${n}${t?` ${t}`:""}`).join(",")}function O_(e,t=Dd,n,o){let r="";return t?.[n]?.spacingStyles?.length&&o&&t[n].spacingStyles.forEach(s=>{r+=`${Ja(e,s.selector.trim())} { `,r+=Object.entries(s.rules).map(([i,c])=>`${i}: ${c||o}`).join("; "),r+="; }"}),r}function _he(e){const{contentSize:t,wideSize:n,type:o="default"}=e,r={},s=/^(?!0)\d+(px|em|rem|vw|vh|%|svw|lvw|dvw|svh|lvh|dvh|vi|svi|lvi|dvi|vb|svb|lvb|dvb|vmin|svmin|lvmin|dvmin|vmax|svmax|lvmax|dvmax)?$/i;return s.test(t)&&o==="constrained"&&(r.none=xe(m("Max %s wide"),t)),s.test(n)&&(r.wide=xe(m("Max %s wide"),n)),r}const khe=8,Iz=["top","right","bottom","left"],Jyt={top:void 0,right:void 0,bottom:void 0,left:void 0},She={custom:ZK,axial:ZK,horizontal:eJe,vertical:rJe,top:oJe,right:nJe,bottom:JQe,left:tJe},vO={default:m("Spacing control"),top:m("Top"),bottom:m("Bottom"),left:m("Left"),right:m("Right"),mixed:m("Mixed"),vertical:m("Vertical"),horizontal:m("Horizontal"),axial:m("Horizontal & vertical"),custom:m("Custom")},Fu={axial:"axial",top:"top",right:"right",bottom:"bottom",left:"left",custom:"custom"};function Qp(e){return e?.includes?e==="0"||e.includes("var:preset|spacing|"):!1}function aM(e,t){if(!Qp(e))return e;const n=Che(e);return t.find(r=>String(r.slug)===n)?.size}function y_(e,t){if(!e||Qp(e)||e==="0")return e;const n=t.find(o=>String(o.size)===String(e));return n?.slug?`var:preset|spacing|${n.slug}`:e}function xh(e){if(!e)return;const t=e.match(/var:preset\|spacing\|(.+)/);return t?`var(--wp--preset--spacing--${t[1]})`:e}function Che(e){if(!e)return;if(e==="0"||e==="default")return e;const t=e.match(/var:preset\|spacing\|(.+)/);return t?t[1]:void 0}function eAt(e,t){if(e===void 0)return 0;const n=parseFloat(e,10)===0?"0":Che(e),o=t.findIndex(r=>String(r.slug)===n);return o!==-1?o:NaN}function qhe(e,t){if(!e||!e.length)return!1;const n=e.includes("horizontal")||e.includes("left")&&e.includes("right"),o=e.includes("vertical")||e.includes("top")&&e.includes("bottom");return t==="horizontal"?n:t==="vertical"?o:n||o}function tAt(e=[]){const t={top:0,right:0,bottom:0,left:0};return e.forEach(n=>t[n]+=1),(t.top+t.bottom)%2===0&&(t.left+t.right)%2===0}function nAt(e={},t){const{top:n,right:o,bottom:r,left:s}=e,i=[n,o,r,s].filter(Boolean),c=n===r&&s===o&&(!!n||!!s),l=!i.length&&tAt(t),u=t?.includes("horizontal")&&t?.includes("vertical")&&t?.length===2;if(qhe(t)&&(c||l))return Fu.axial;if(u&&i.length===1){let d;return Object.entries(e).some(([p,f])=>(d=p,f!==void 0)),d}return t?.length===1&&!i.length?t[0]:Fu.custom}function oAt(e){if(!e)return null;const t=typeof e=="string";return{top:t?e:e?.top,left:t?e:e?.left}}function us(e,t="0"){const n=oAt(e);if(!n)return null;const o=xh(n?.top)||t,r=xh(n?.left)||t;return o===r?o:`${o} ${r}`}const rAt={left:"flex-start",right:"flex-end",center:"center","space-between":"space-between"},KZ={left:"flex-start",right:"flex-end",center:"center",stretch:"stretch"},xW={top:"flex-start",center:"center",bottom:"flex-end",stretch:"stretch","space-between":"space-between"},sAt=["wrap","nowrap"],iAt={name:"flex",label:m("Flex"),inspectorControls:function({layout:t={},onChange:n,layoutBlockSupport:o={}}){const{allowOrientation:r=!0,allowJustification:s=!0}=o;return a.jsxs(a.Fragment,{children:[a.jsxs(Yo,{children:[s&&a.jsx(Tn,{children:a.jsx(YZ,{layout:t,onChange:n})}),r&&a.jsx(Tn,{children:a.jsx(uAt,{layout:t,onChange:n})})]}),a.jsx(lAt,{layout:t,onChange:n})]})},toolBarControls:function({layout:t={},onChange:n,layoutBlockSupport:o}){const{allowVerticalAlignment:r=!0,allowJustification:s=!0}=o;return!s&&!r?null:a.jsxs(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:[s&&a.jsx(YZ,{layout:t,onChange:n,isToolbar:!0}),r&&a.jsx(aAt,{layout:t,onChange:n})]})},getLayoutStyle:function({selector:t,layout:n,style:o,blockName:r,hasBlockGapSupport:s,layoutDefinitions:i=Dd}){const{orientation:c="horizontal"}=n,l=o?.spacing?.blockGap&&!W0(r,"spacing","blockGap")?us(o?.spacing?.blockGap,"0.5em"):void 0,u=rAt[n.justifyContent],d=sAt.includes(n.flexWrap)?n.flexWrap:"wrap",p=xW[n.verticalAlignment],f=KZ[n.justifyContent]||KZ.left;let b="";const h=[];return d&&d!=="wrap"&&h.push(`flex-wrap: ${d}`),c==="horizontal"?(p&&h.push(`align-items: ${p}`),u&&h.push(`justify-content: ${u}`)):(p&&h.push(`justify-content: ${p}`),h.push("flex-direction: column"),h.push(`align-items: ${f}`)),h.length&&(b=`${Ja(t)} { + );}}`),$mt=He(F$e,{target:"enfox0g3"})("&{border-radius:0;background:transparent;border:none;box-shadow:none;flex:1 0 auto;white-space:nowrap;display:flex;align-items:center;cursor:pointer;line-height:1.2;font-weight:400;color:",Ze.theme.foreground,";position:relative;&[aria-disabled='true']{cursor:default;color:",Ze.ui.textDisabled,";}&:not( [aria-disabled='true'] ):is( :hover, [data-focus-visible] ){color:",Ze.theme.accent,";}&:focus:not( :disabled ){box-shadow:none;outline:none;}&::after{position:absolute;pointer-events:none;outline:var( --wp-admin-border-width-focus ) solid ",Ze.theme.accent,";border-radius:",Ye.radiusSmall,";opacity:0;@media not ( prefers-reduced-motion ){transition:opacity 0.1s linear;}}&[data-focus-visible]::after{opacity:1;}}[aria-orientation='horizontal'] &{padding-inline:",Je(4),";height:",Je(12),";scroll-margin:24px;&::after{content:'';inset:",Je(3),";}}[aria-orientation='vertical'] &{padding:",Je(2)," ",Je(3),";min-height:",Je(10),";&[aria-selected='true']{color:",Ze.theme.accent,";fill:currentColor;}}[aria-orientation='vertical'][data-select-on-move='false'] &::after{content:'';inset:var( --wp-admin-border-width-focus );}"),Vmt=He("span",{target:"enfox0g2"})({name:"9at4z3",styles:"flex-grow:1;display:flex;align-items:center;[aria-orientation='horizontal'] &{justify-content:center;}[aria-orientation='vertical'] &{justify-content:start;}"}),Hmt=He(qo,{target:"enfox0g1"})("flex-shrink:0;margin-inline-end:",Je(-1),";[aria-orientation='horizontal'] &{display:none;}opacity:0;[role='tab']:is( [aria-selected='true'], [data-focus-visible], :hover ) &{opacity:1;}@media not ( prefers-reduced-motion ){[data-select-on-move='true'] [role='tab']:is( [aria-selected='true'], ) &{transition:opacity 0.15s 0.15s linear;}}&:dir( rtl ){rotate:180deg;}"),Umt=He(G$e,{target:"enfox0g0"})("&:focus{box-shadow:none;outline:none;}&[data-focus-visible]{box-shadow:0 0 0 var( --wp-admin-border-width-focus ) ",Ze.theme.accent,";outline:2px solid transparent;outline-offset:0;}"),Xmt=x.forwardRef(function({children:t,tabId:n,disabled:o,render:r,...s},i){var c;const{store:l,instanceId:u}=(c=Xj())!==null&&c!==void 0?c:{};if(!l)return globalThis.SCRIPT_DEBUG===!0&&zn("`Tabs.Tab` must be wrapped in a `Tabs` component."),null;const d=`${u}-${n}`;return a.jsxs($mt,{ref:i,store:l,id:d,disabled:o,render:r,...s,children:[a.jsx(Vmt,{children:t}),a.jsx(Hmt,{icon:ma})]})});function Gmt(e,t){const[n,o]=x.useState(!1),[r,s]=x.useState(!1),[i,c]=x.useState(),l=Ts(u=>{for(const d of u)d.target===t.first&&o(!d.isIntersecting),d.target===t.last&&s(!d.isIntersecting)});return x.useEffect(()=>{if(!e||!window.IntersectionObserver)return;const u=new IntersectionObserver(l,{root:e,threshold:.9});return c(u),()=>u.disconnect()},[l,e]),x.useEffect(()=>{if(i)return t.first&&i.observe(t.first),t.last&&i.observe(t.last),()=>{t.first&&i.unobserve(t.first),t.last&&i.unobserve(t.last)}},[t.first,t.last,i]),{first:n,last:r}}const Kmt=24;function Ymt(e,t,{margin:n=Kmt}={}){x.useLayoutEffect(()=>{if(!e||!t)return;const{scrollLeft:o}=e,r=e.getBoundingClientRect().width,{left:s,width:i}=t,c=o+r,u=s+i+n-c,d=o-(s-n);let p=null;d>0?p=o-d:u>0&&(p=o+u),p!==null&&e.scroll?.({left:p})},[n,e,t])}const Zmt=x.forwardRef(function({children:t,...n},o){var r;const{store:s}=(r=Xj())!==null&&r!==void 0?r:{},i=Hn(s,"selectedId"),c=Hn(s,"activeId"),l=Hn(s,"selectOnMove"),u=Hn(s,"items"),[d,p]=x.useState(),f=xn([o,p]),b=s?.item(i),h=Hn(s,"renderedItems"),g=h&&b?h.indexOf(b):-1,z=Wpe(b?.element,[g]),A=Gmt(d,{first:u?.at(0)?.element,last:u?.at(-1)?.element});Npe(d,z,{prefix:"selected",dataAttribute:"indicator-animated",transitionEndFilter:v=>v.pseudoElement==="::before",roundRect:!0}),Ymt(d,z);const _=()=>{l&&i!==c&&s?.setActiveId(i)};return s?a.jsx(Fmt,{ref:f,store:s,render:v=>{var M;return a.jsx("div",{...v,tabIndex:(M=v.tabIndex)!==null&&M!==void 0?M:-1})},onBlur:_,"data-select-on-move":l?"true":"false",...n,className:oe(A.first&&"is-overflowing-first",A.last&&"is-overflowing-last",n.className),children:t}):(globalThis.SCRIPT_DEBUG===!0&&zn("`Tabs.TabList` must be wrapped in a `Tabs` component."),null)}),Qmt=x.forwardRef(function({children:t,tabId:n,focusable:o=!0,...r},s){const i=Xj(),c=Hn(i?.store,"selectedId");if(!i)return globalThis.SCRIPT_DEBUG===!0&&zn("`Tabs.TabPanel` must be wrapped in a `Tabs` component."),null;const{store:l,instanceId:u}=i,d=`${u}-${n}`;return a.jsx(Umt,{ref:s,store:l,id:`${d}-view`,tabId:d,focusable:o,...r,children:c===d&&t})});function UA(e,t){return e&&`${t}-${e}`}function PZ(e,t){return typeof e=="string"?e.replace(`${t}-`,""):e}const Jmt=Object.assign(function e({selectOnMove:t=!0,defaultTabId:n,orientation:o="horizontal",onSelect:r,children:s,selectedTabId:i,activeTabId:c,defaultActiveTabId:l,onActiveTabIdChange:u}){const d=vt(e,"tabs"),p=P$e({selectOnMove:t,orientation:o,defaultSelectedId:UA(n,d),setSelectedId:z=>{r?.(PZ(z,d))},selectedId:UA(i,d),defaultActiveId:UA(l,d),setActiveId:z=>{u?.(PZ(z,d))},activeId:UA(c,d),rtl:jt()}),{items:f,activeId:b}=Hn(p),{setActiveId:h}=p;x.useEffect(()=>{requestAnimationFrame(()=>{const z=f?.[0]?.element?.ownerDocument.activeElement;!z||!f.some(A=>z===A.element)||b!==z.id&&h(z.id)})},[b,f,h]);const g=x.useMemo(()=>({store:p,instanceId:d}),[p,d]);return a.jsx(bW.Provider,{value:g,children:s})},{Tab:Object.assign(Xmt,{displayName:"Tabs.Tab"}),TabList:Object.assign(Zmt,{displayName:"Tabs.TabList"}),TabPanel:Object.assign(Qmt,{displayName:"Tabs.TabPanel"}),Context:Object.assign(bW,{displayName:"Tabs.Context"})}),{lock:egt,unlock:ngn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/components");function tgt(e="default"){switch(e){case"info":return pde;case"success":return Iw;case"warning":return OZe;case"error":return WZe;default:return null}}function ngt({className:e,intent:t="default",children:n,...o}){const r=tgt(t),s=!!r;return a.jsxs("span",{className:oe("components-badge",e,{[`is-${t}`]:t,"has-icon":s}),...o,children:[s&&a.jsx(qo,{icon:r,size:16,fill:"currentColor",className:"components-badge__icon"}),a.jsx("span",{className:"components-badge__content",children:n})]})}const tr={};egt(tr,{__experimentalPopoverLegacyPositionToPlacement:Mw,ComponentsContext:KL,Tabs:Jmt,Theme:Dmt,Menu:Rmt,kebabCase:Ctt,Badge:ngt});const{lock:ogt,unlock:ct}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/block-editor");Xs([Gs,Uf]);const{kebabCase:rgt}=ct(tr),Sf=(e,t,n)=>{if(t){const o=e?.find(r=>r.slug===t);if(o)return o}return{color:n}},_2e=(e,t)=>e?.find(n=>n.color===t);function Pt(e,t){if(!(!e||!t))return`has-${rgt(t)}-${e}`}function sgt(e,t){const n=an(t),o=({color:s})=>n.contrast(s),r=Math.max(...e.map(o));return e.find(s=>o(s)===r).color}const Cf=x.createContext({});function uO({value:e,children:t}){const n=x.useContext(Cf),o=x.useMemo(()=>({...n,...e}),[n,e]);return a.jsx(Cf.Provider,{value:o,children:t})}function Gj(e){if(e.includes(" "))return!1;const n=v5(e),o=WN(n),r=igt(e),s=e?.startsWith("www."),i=e?.startsWith("#")&&OE(e);return o||s||i||r}function igt(e,t=6){const n=e.split(/[?#]/)[0];return new RegExp(`(?<=\\S)\\.(?:[a-zA-Z_]{2,${t}})(?:\\/|$)`).test(n)}const agt={insertUsage:{}},hW={alignWide:!1,supportsLayout:!0,colors:[{name:m("Black"),slug:"black",color:"#000000"},{name:m("Cyan bluish gray"),slug:"cyan-bluish-gray",color:"#abb8c3"},{name:m("White"),slug:"white",color:"#ffffff"},{name:m("Pale pink"),slug:"pale-pink",color:"#f78da7"},{name:m("Vivid red"),slug:"vivid-red",color:"#cf2e2e"},{name:m("Luminous vivid orange"),slug:"luminous-vivid-orange",color:"#ff6900"},{name:m("Luminous vivid amber"),slug:"luminous-vivid-amber",color:"#fcb900"},{name:m("Light green cyan"),slug:"light-green-cyan",color:"#7bdcb5"},{name:m("Vivid green cyan"),slug:"vivid-green-cyan",color:"#00d084"},{name:m("Pale cyan blue"),slug:"pale-cyan-blue",color:"#8ed1fc"},{name:m("Vivid cyan blue"),slug:"vivid-cyan-blue",color:"#0693e3"},{name:m("Vivid purple"),slug:"vivid-purple",color:"#9b51e0"}],fontSizes:[{name:We("Small","font size name"),size:13,slug:"small"},{name:We("Normal","font size name"),size:16,slug:"normal"},{name:We("Medium","font size name"),size:20,slug:"medium"},{name:We("Large","font size name"),size:36,slug:"large"},{name:We("Huge","font size name"),size:42,slug:"huge"}],imageDefaultSize:"large",imageSizes:[{slug:"thumbnail",name:m("Thumbnail")},{slug:"medium",name:m("Medium")},{slug:"large",name:m("Large")},{slug:"full",name:m("Full Size")}],imageEditing:!0,maxWidth:580,allowedBlockTypes:!0,maxUploadFileSize:0,allowedMimeTypes:null,canLockBlocks:!0,enableOpenverseMediaCategory:!0,clearBlockSelection:!0,__experimentalCanUserUseUnfilteredHTML:!1,__experimentalBlockDirectory:!1,__mobileEnablePageTemplates:!1,__experimentalBlockPatterns:[],__experimentalBlockPatternCategories:[],isPreviewMode:!1,blockInspectorAnimation:{animationParent:"core/navigation","core/navigation":{enterDirection:"leftToRight"},"core/navigation-submenu":{enterDirection:"rightToLeft"},"core/navigation-link":{enterDirection:"rightToLeft"},"core/search":{enterDirection:"rightToLeft"},"core/social-links":{enterDirection:"rightToLeft"},"core/page-list":{enterDirection:"rightToLeft"},"core/spacer":{enterDirection:"rightToLeft"},"core/home-link":{enterDirection:"rightToLeft"},"core/site-title":{enterDirection:"rightToLeft"},"core/site-logo":{enterDirection:"rightToLeft"}},generateAnchors:!1,gradients:[{name:m("Vivid cyan blue to vivid purple"),gradient:"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)",slug:"vivid-cyan-blue-to-vivid-purple"},{name:m("Light green cyan to vivid green cyan"),gradient:"linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)",slug:"light-green-cyan-to-vivid-green-cyan"},{name:m("Luminous vivid amber to luminous vivid orange"),gradient:"linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%)",slug:"luminous-vivid-amber-to-luminous-vivid-orange"},{name:m("Luminous vivid orange to vivid red"),gradient:"linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%)",slug:"luminous-vivid-orange-to-vivid-red"},{name:m("Very light gray to cyan bluish gray"),gradient:"linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%)",slug:"very-light-gray-to-cyan-bluish-gray"},{name:m("Cool to warm spectrum"),gradient:"linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%)",slug:"cool-to-warm-spectrum"},{name:m("Blush light purple"),gradient:"linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%)",slug:"blush-light-purple"},{name:m("Blush bordeaux"),gradient:"linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)",slug:"blush-bordeaux"},{name:m("Luminous dusk"),gradient:"linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%)",slug:"luminous-dusk"},{name:m("Pale ocean"),gradient:"linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)",slug:"pale-ocean"},{name:m("Electric grass"),gradient:"linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%)",slug:"electric-grass"},{name:m("Midnight"),gradient:"linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)",slug:"midnight"}],__unstableResolvedAssets:{styles:[],scripts:[]}};function mW(e,t,n){return[...e.slice(0,n),...Array.isArray(t)?t:[t],...e.slice(n)]}function nq(e,t,n,o=1){const r=[...e];return r.splice(t,o),mW(r,e.slice(t,t+o),n)}const dO=Symbol("globalStylesDataKey"),k2e=Symbol("globalStylesLinks"),Wz=Symbol("selectBlockPatternsKey"),S2e=Symbol("reusableBlocksSelect"),Nz=Symbol("sectionRootClientIdKey"),{isContentBlock:jZ}=ct(rae),cgt=e=>e;function TM(e,t=""){const n=new Map,o=[];return n.set(t,o),e.forEach(r=>{const{clientId:s,innerBlocks:i}=r;o.push(s),TM(i,s).forEach((c,l)=>{n.set(l,c)})}),n}function f4(e,t=""){const n=[],o=[[t,e]];for(;o.length;){const[r,s]=o.shift();s.forEach(({innerBlocks:i,...c})=>{n.push([c.clientId,r]),i?.length&&o.push([c.clientId,i])})}return n}function C2e(e,t=cgt){const n=[],o=[...e];for(;o.length;){const{innerBlocks:r,...s}=o.shift();o.push(...r),n.push([s.clientId,t(s)])}return n}function lgt(e){const t={},n=[...e];for(;n.length;){const{innerBlocks:o,...r}=n.shift();n.push(...o),t[r.clientId]=!0}return t}function gW(e){return C2e(e,t=>{const{attributes:n,...o}=t;return o})}function MW(e){return C2e(e,t=>t.attributes)}function ugt(e,t){return N0(Object.keys(e),Object.keys(t))}function dgt(e,t){return e.type==="UPDATE_BLOCK_ATTRIBUTES"&&t!==void 0&&t.type==="UPDATE_BLOCK_ATTRIBUTES"&&N0(e.clientIds,t.clientIds)&&ugt(e.attributes,t.attributes)}function zW(e,t){const n=e.tree,o=[...t],r=[...t];for(;o.length;){const s=o.shift();o.push(...s.innerBlocks),r.push(...s.innerBlocks)}for(const s of r)n.set(s.clientId,{});for(const s of r)n.set(s.clientId,Object.assign(n.get(s.clientId),{...e.byClientId.get(s.clientId),attributes:e.attributes.get(s.clientId),innerBlocks:s.innerBlocks.map(i=>n.get(i.clientId))}))}function Jc(e,t,n=!1){const o=e.tree,r=new Set([]),s=new Set;for(const i of t){let c=n?i:e.parents.get(i);do if(e.controlledInnerBlocks[c]){s.add(c);break}else r.add(c),c=e.parents.get(c);while(c!==void 0)}for(const i of r)o.set(i,{...o.get(i)});for(const i of r)o.get(i).innerBlocks=(e.order.get(i)||[]).map(c=>o.get(c));for(const i of s)o.set("controlled||"+i,{innerBlocks:(e.order.get(i)||[]).map(c=>o.get(c))})}const pgt=e=>(t={},n)=>{const o=e(t,n);if(o===t)return t;switch(o.tree=t.tree?t.tree:new Map,n.type){case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{o.tree=new Map(o.tree),zW(o,n.blocks),Jc(o,n.rootClientId?[n.rootClientId]:[""],!0);break}case"UPDATE_BLOCK":o.tree=new Map(o.tree),o.tree.set(n.clientId,{...o.tree.get(n.clientId),...o.byClientId.get(n.clientId),attributes:o.attributes.get(n.clientId)}),Jc(o,[n.clientId],!1);break;case"SYNC_DERIVED_BLOCK_ATTRIBUTES":case"UPDATE_BLOCK_ATTRIBUTES":{o.tree=new Map(o.tree),n.clientIds.forEach(s=>{o.tree.set(s,{...o.tree.get(s),attributes:o.attributes.get(s)})}),Jc(o,n.clientIds,!1);break}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const s=lgt(n.blocks);o.tree=new Map(o.tree),n.replacedClientIds.forEach(c=>{o.tree.delete(c),s[c]||o.tree.delete("controlled||"+c)}),zW(o,n.blocks),Jc(o,n.blocks.map(c=>c.clientId),!1);const i=[];for(const c of n.clientIds){const l=t.parents.get(c);l!==void 0&&(l===""||o.byClientId.get(l))&&i.push(l)}Jc(o,i,!0);break}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":const r=[];for(const s of n.clientIds){const i=t.parents.get(s);i!==void 0&&(i===""||o.byClientId.get(i))&&r.push(i)}o.tree=new Map(o.tree),n.removedClientIds.forEach(s=>{o.tree.delete(s),o.tree.delete("controlled||"+s)}),Jc(o,r,!0);break;case"MOVE_BLOCKS_TO_POSITION":{const s=[];n.fromRootClientId?s.push(n.fromRootClientId):s.push(""),n.toRootClientId&&s.push(n.toRootClientId),o.tree=new Map(o.tree),Jc(o,s,!0);break}case"MOVE_BLOCKS_UP":case"MOVE_BLOCKS_DOWN":{const s=[n.rootClientId?n.rootClientId:""];o.tree=new Map(o.tree),Jc(o,s,!0);break}case"SAVE_REUSABLE_BLOCK_SUCCESS":{const s=[];o.attributes.forEach((i,c)=>{o.byClientId.get(c).name==="core/block"&&i.ref===n.updatedId&&s.push(c)}),o.tree=new Map(o.tree),s.forEach(i=>{o.tree.set(i,{...o.byClientId.get(i),attributes:o.attributes.get(i),innerBlocks:o.tree.get(i).innerBlocks})}),Jc(o,s,!1)}}return o};function fgt(e){let t,n=!1,o;return(r,s)=>{let i=e(r,s),c;if(s.type==="SET_EXPLICIT_PERSISTENT"){var l;o=s.isPersistentChange,c=(l=r.isPersistentChange)!==null&&l!==void 0?l:!0}if(o!==void 0)return c=o,c===i.isPersistentChange?i:{...i,isPersistentChange:c};const u=s.type==="MARK_LAST_CHANGE_AS_PERSISTENT"||n;if(r===i&&!u){var d;return n=s.type==="MARK_NEXT_CHANGE_AS_NOT_PERSISTENT",c=(d=r?.isPersistentChange)!==null&&d!==void 0?d:!0,r.isPersistentChange===c?r:{...i,isPersistentChange:c}}return i={...i,isPersistentChange:u?!n:!dgt(s,t)},t=s,n=s.type==="MARK_NEXT_CHANGE_AS_NOT_PERSISTENT",i}}function bgt(e){const t=new Set(["RECEIVE_BLOCKS"]);return(n,o)=>{const r=e(n,o);return r!==n&&(r.isIgnoredChange=t.has(o.type)),r}}const hgt=e=>(t,n)=>{const o=r=>{let s=r;for(let i=0;i<s.length;i++)!t.order.get(s[i])||n.keepControlledInnerBlocks&&n.keepControlledInnerBlocks[s[i]]||(s===r&&(s=[...s]),s.push(...t.order.get(s[i])));return s};if(t)switch(n.type){case"REMOVE_BLOCKS":n={...n,type:"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN",removedClientIds:o(n.clientIds)};break;case"REPLACE_BLOCKS":n={...n,type:"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN",replacedClientIds:o(n.clientIds)};break}return e(t,n)},mgt=e=>(t,n)=>{if(n.type==="RESET_BLOCKS"){const o={...t,byClientId:new Map(gW(n.blocks)),attributes:new Map(MW(n.blocks)),order:TM(n.blocks),parents:new Map(f4(n.blocks)),controlledInnerBlocks:{}};return o.tree=new Map(t?.tree),zW(o,n.blocks),o.tree.set("",{innerBlocks:n.blocks.map(r=>o.tree.get(r.clientId))}),o}return e(t,n)},ggt=e=>(t,n)=>{if(n.type!=="REPLACE_INNER_BLOCKS")return e(t,n);const o={};if(Object.keys(t.controlledInnerBlocks).length){const i=[...n.blocks];for(;i.length;){const{innerBlocks:c,...l}=i.shift();i.push(...c),t.controlledInnerBlocks[l.clientId]&&(o[l.clientId]=!0)}}let r=t;t.order.get(n.rootClientId)&&(r=e(r,{type:"REMOVE_BLOCKS",keepControlledInnerBlocks:o,clientIds:t.order.get(n.rootClientId)}));let s=r;if(n.blocks.length){s=e(s,{...n,type:"INSERT_BLOCKS",index:0});const i=new Map(s.order);Object.keys(o).forEach(c=>{t.order.get(c)&&i.set(c,t.order.get(c))}),s.order=i,s.tree=new Map(s.tree),Object.keys(o).forEach(c=>{const l=`controlled||${c}`;t.tree.has(l)&&s.tree.set(l,t.tree.get(l))})}return s},Mgt=e=>(t,n)=>{if(t&&n.type==="SAVE_REUSABLE_BLOCK_SUCCESS"){const{id:o,updatedId:r}=n;if(o===r)return t;t={...t},t.attributes=new Map(t.attributes),t.attributes.forEach((s,i)=>{const{name:c}=t.byClientId.get(i);c==="core/block"&&s.ref===o&&t.attributes.set(i,{...s,ref:r})})}return e(t,n)},zgt=e=>(t,n)=>{if(n.type==="SET_HAS_CONTROLLED_INNER_BLOCKS"){const o=e(t,{type:"REPLACE_INNER_BLOCKS",rootClientId:n.clientId,blocks:[]});return e(o,n)}return e(t,n)},Ogt=Ku(J0,Mgt,pgt,hgt,ggt,mgt,fgt,bgt,zgt)({byClientId(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{const n=new Map(e);return gW(t.blocks).forEach(([o,r])=>{n.set(o,r)}),n}case"UPDATE_BLOCK":{if(!e.has(t.clientId))return e;const{attributes:n,...o}=t.updates;if(Object.values(o).length===0)return e;const r=new Map(e);return r.set(t.clientId,{...e.get(t.clientId),...o}),r}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{if(!t.blocks)return e;const n=new Map(e);return t.replacedClientIds.forEach(o=>{n.delete(o)}),gW(t.blocks).forEach(([o,r])=>{n.set(o,r)}),n}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const n=new Map(e);return t.removedClientIds.forEach(o=>{n.delete(o)}),n}}return e},attributes(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{const o=new Map(e);return MW(t.blocks).forEach(([r,s])=>{o.set(r,s)}),o}case"UPDATE_BLOCK":{if(!e.get(t.clientId)||!t.updates.attributes)return e;const o=new Map(e);return o.set(t.clientId,{...e.get(t.clientId),...t.updates.attributes}),o}case"SYNC_DERIVED_BLOCK_ATTRIBUTES":case"UPDATE_BLOCK_ATTRIBUTES":{if(t.clientIds.every(s=>!e.get(s)))return e;let o=!1;const r=new Map(e);for(const s of t.clientIds){var n;const i=Object.entries(t.uniqueByBlock?t.attributes[s]:(n=t.attributes)!==null&&n!==void 0?n:{});if(i.length===0)continue;let c=!1;const l=e.get(s),u={};i.forEach(([d,p])=>{l[d]!==p&&(c=!0,u[d]=p)}),o=o||c,c&&r.set(s,{...l,...u})}return o?r:e}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{if(!t.blocks)return e;const o=new Map(e);return t.replacedClientIds.forEach(r=>{o.delete(r)}),MW(t.blocks).forEach(([r,s])=>{o.set(r,s)}),o}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const o=new Map(e);return t.removedClientIds.forEach(r=>{o.delete(r)}),o}}return e},order(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":{var n;const r=TM(t.blocks),s=new Map(e);return r.forEach((i,c)=>{c!==""&&s.set(c,i)}),s.set("",((n=e.get(""))!==null&&n!==void 0?n:[]).concat(r[""])),s}case"INSERT_BLOCKS":{const{rootClientId:r=""}=t,s=e.get(r)||[],i=TM(t.blocks,r),{index:c=s.length}=t,l=new Map(e);return i.forEach((u,d)=>{l.set(d,u)}),l.set(r,mW(s,i.get(r),c)),l}case"MOVE_BLOCKS_TO_POSITION":{var o;const{fromRootClientId:r="",toRootClientId:s="",clientIds:i}=t,{index:c=e.get(s).length}=t;if(r===s){const d=e.get(s).indexOf(i[0]),p=new Map(e);return p.set(s,nq(e.get(s),d,c,i.length)),p}const l=new Map(e);return l.set(r,(o=e.get(r)?.filter(u=>!i.includes(u)))!==null&&o!==void 0?o:[]),l.set(s,mW(e.get(s),i,c)),l}case"MOVE_BLOCKS_UP":{const{clientIds:r,rootClientId:s=""}=t,i=r[0],c=e.get(s);if(!c.length||i===c[0])return e;const l=c.indexOf(i),u=new Map(e);return u.set(s,nq(c,l,l-1,r.length)),u}case"MOVE_BLOCKS_DOWN":{const{clientIds:r,rootClientId:s=""}=t,i=r[0],c=r[r.length-1],l=e.get(s);if(!l.length||c===l[l.length-1])return e;const u=l.indexOf(i),d=new Map(e);return d.set(s,nq(l,u,u+1,r.length)),d}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const{clientIds:r}=t;if(!t.blocks)return e;const s=TM(t.blocks),i=new Map(e);return t.replacedClientIds.forEach(c=>{i.delete(c)}),s.forEach((c,l)=>{l!==""&&i.set(l,c)}),i.forEach((c,l)=>{const u=Object.values(c).reduce((d,p)=>p===r[0]?[...d,...s.get("")]:(r.indexOf(p)===-1&&d.push(p),d),[]);i.set(l,u)}),i}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const r=new Map(e);return t.removedClientIds.forEach(s=>{r.delete(s)}),r.forEach((s,i)=>{var c;const l=(c=s?.filter(u=>!t.removedClientIds.includes(u)))!==null&&c!==void 0?c:[];l.length!==s.length&&r.set(i,l)}),r}}return e},parents(e=new Map,t){switch(t.type){case"RECEIVE_BLOCKS":{const n=new Map(e);return f4(t.blocks).forEach(([o,r])=>{n.set(o,r)}),n}case"INSERT_BLOCKS":{const n=new Map(e);return f4(t.blocks,t.rootClientId||"").forEach(([o,r])=>{n.set(o,r)}),n}case"MOVE_BLOCKS_TO_POSITION":{const n=new Map(e);return t.clientIds.forEach(o=>{n.set(o,t.toRootClientId||"")}),n}case"REPLACE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const n=new Map(e);return t.replacedClientIds.forEach(o=>{n.delete(o)}),f4(t.blocks,e.get(t.clientIds[0])).forEach(([o,r])=>{n.set(o,r)}),n}case"REMOVE_BLOCKS_AUGMENTED_WITH_CHILDREN":{const n=new Map(e);return t.removedClientIds.forEach(o=>{n.delete(o)}),n}}return e},controlledInnerBlocks(e={},{type:t,clientId:n,hasControlledInnerBlocks:o}){return t==="SET_HAS_CONTROLLED_INNER_BLOCKS"?{...e,[n]:o}:e}});function ygt(e=!1,t){switch(t.type){case"HIDE_BLOCK_INTERFACE":return!0;case"SHOW_BLOCK_INTERFACE":return!1}return e}function Agt(e=!1,t){switch(t.type){case"START_TYPING":return!0;case"STOP_TYPING":return!1}return e}function vgt(e=!1,t){switch(t.type){case"START_DRAGGING":return!0;case"STOP_DRAGGING":return!1}return e}function xgt(e=[],t){switch(t.type){case"START_DRAGGING_BLOCKS":return t.clientIds;case"STOP_DRAGGING_BLOCKS":return[]}return e}function wgt(e={},t){return t.type==="SET_BLOCK_VISIBILITY"?{...e,...t.updates}:e}function IZ(e={},t){switch(t.type){case"CLEAR_SELECTED_BLOCK":return e.clientId?{}:e;case"SELECT_BLOCK":return t.clientId===e.clientId?e:{clientId:t.clientId};case"REPLACE_INNER_BLOCKS":case"INSERT_BLOCKS":return!t.updateSelection||!t.blocks.length?e:{clientId:t.blocks[0].clientId};case"REMOVE_BLOCKS":return!t.clientIds||!t.clientIds.length||t.clientIds.indexOf(e.clientId)===-1?e:{};case"REPLACE_BLOCKS":{if(t.clientIds.indexOf(e.clientId)===-1)return e;const n=t.blocks[t.indexToSelect]||t.blocks[t.blocks.length-1];return n?n.clientId===e.clientId?e:{clientId:n.clientId}:{}}}return e}function _gt(e={},t){switch(t.type){case"SELECTION_CHANGE":return t.clientId?{selectionStart:{clientId:t.clientId,attributeKey:t.attributeKey,offset:t.startOffset},selectionEnd:{clientId:t.clientId,attributeKey:t.attributeKey,offset:t.endOffset}}:{selectionStart:t.start||e.selectionStart,selectionEnd:t.end||e.selectionEnd};case"RESET_SELECTION":const{selectionStart:r,selectionEnd:s}=t;return{selectionStart:r,selectionEnd:s};case"MULTI_SELECT":const{start:i,end:c}=t;return i===e.selectionStart?.clientId&&c===e.selectionEnd?.clientId?e:{selectionStart:{clientId:i},selectionEnd:{clientId:c}};case"RESET_BLOCKS":const l=e?.selectionStart?.clientId,u=e?.selectionEnd?.clientId;if(!l&&!u)return e;if(!t.blocks.some(d=>d.clientId===l))return{selectionStart:{},selectionEnd:{}};if(!t.blocks.some(d=>d.clientId===u))return{...e,selectionEnd:e.selectionStart}}const n=IZ(e.selectionStart,t),o=IZ(e.selectionEnd,t);return n===e.selectionStart&&o===e.selectionEnd?e:{selectionStart:n,selectionEnd:o}}function kgt(e=!1,t){switch(t.type){case"START_MULTI_SELECT":return!0;case"STOP_MULTI_SELECT":return!1}return e}function Sgt(e=!0,t){switch(t.type){case"TOGGLE_SELECTION":return t.isSelectionEnabled}return e}function Cgt(e=!1,t){switch(t.type){case"DISPLAY_BLOCK_REMOVAL_PROMPT":const{clientIds:n,selectPrevious:o,message:r}=t;return{clientIds:n,selectPrevious:o,message:r};case"CLEAR_BLOCK_REMOVAL_PROMPT":return!1}return e}function qgt(e=!1,t){switch(t.type){case"SET_BLOCK_REMOVAL_RULES":return t.rules}return e}function Rgt(e=null,t){return t.type==="REPLACE_BLOCKS"&&t.initialPosition!==void 0||["MULTI_SELECT","SELECT_BLOCK","RESET_SELECTION","INSERT_BLOCKS","REPLACE_INNER_BLOCKS"].includes(t.type)?t.initialPosition:e}function Tgt(e={},t){if(t.type==="TOGGLE_BLOCK_MODE"){const{clientId:n}=t;return{...e,[n]:e[n]&&e[n]==="html"?"visual":"html"}}return e}function Egt(e=null,t){switch(t.type){case"SHOW_INSERTION_POINT":{const{rootClientId:n,index:o,__unstableWithInserter:r,operation:s,nearestSide:i}=t,c={rootClientId:n,index:o,__unstableWithInserter:r,operation:s,nearestSide:i};return N0(e,c)?e:c}case"HIDE_INSERTION_POINT":return null}return e}function Wgt(e={isValid:!0},t){switch(t.type){case"SET_TEMPLATE_VALIDITY":return{...e,isValid:t.isValid}}return e}function Ngt(e=hW,t){switch(t.type){case"UPDATE_SETTINGS":{const n=t.reset?{...hW,...t.settings}:{...e,...t.settings};return Object.defineProperty(n,"__unstableIsPreviewMode",{get(){return Ke("__unstableIsPreviewMode",{since:"6.8",alternative:"isPreviewMode"}),this.isPreviewMode}}),n}}return e}function Bgt(e=agt,t){switch(t.type){case"INSERT_BLOCKS":case"REPLACE_BLOCKS":{const n=t.blocks.reduce((o,r)=>{const{attributes:s,name:i}=r;let c=i;const l=uo(kt).getActiveBlockVariation(i,s);return l?.name&&(c+="/"+l.name),i==="core/block"&&(c+="/"+s.ref),{...o,[c]:{time:t.time,count:o[c]?o[c].count+1:1}}},e.insertUsage);return{...e,insertUsage:n}}}return e}const Lgt=(e={},t)=>{switch(t.type){case"REPLACE_BLOCKS":case"REMOVE_BLOCKS":return Object.fromEntries(Object.entries(e).filter(([n])=>!t.clientIds.includes(n)));case"UPDATE_BLOCK_LIST_SETTINGS":{const n=typeof t.clientId=="string"?{[t.clientId]:t.settings}:t.clientId;for(const r in n)n[r]?N0(e[r],n[r])&&delete n[r]:e[r]||delete n[r];if(Object.keys(n).length===0)return e;const o={...e,...n};for(const r in n)n[r]||delete o[r];return o}}return e};function Pgt(e=null,t){switch(t.type){case"UPDATE_BLOCK":if(!t.updates.attributes)break;return{[t.clientId]:t.updates.attributes};case"UPDATE_BLOCK_ATTRIBUTES":return t.clientIds.reduce((n,o)=>({...n,[o]:t.uniqueByBlock?t.attributes[o]:t.attributes}),{})}return e}function jgt(e,t){switch(t.type){case"TOGGLE_BLOCK_HIGHLIGHT":const{clientId:n,isHighlighted:o}=t;return o?n:e===n?null:e;case"SELECT_BLOCK":if(t.clientId!==e)return null}return e}function Igt(e=null,t){switch(t.type){case"SET_BLOCK_EXPANDED_IN_LIST_VIEW":return t.clientId;case"SELECT_BLOCK":if(t.clientId!==e)return null}return e}function Dgt(e={},t){switch(t.type){case"INSERT_BLOCKS":case"REPLACE_BLOCKS":if(!t.blocks.length)return e;const n=t.blocks.map(r=>r.clientId),o=t.meta?.source;return{clientIds:n,source:o};case"RESET_BLOCKS":return{}}return e}function Fgt(e="",t){return t.type==="SET_TEMPORARILY_EDITING_AS_BLOCKS"?t.temporarilyEditingAsBlocks:e}function $gt(e="",t){return t.type==="SET_TEMPORARILY_EDITING_AS_BLOCKS"?t.focusModeToRevert:e}function Vgt(e=new Map,t){switch(t.type){case"SET_BLOCK_EDITING_MODE":return e.get(t.clientId)===t.mode?e:new Map(e).set(t.clientId,t.mode);case"UNSET_BLOCK_EDITING_MODE":{if(!e.has(t.clientId))return e;const n=new Map(e);return n.delete(t.clientId),n}case"RESET_BLOCKS":return e.has("")?new Map().set("",e.get("")):e}return e}function Hgt(e=null,t){if(t.type==="SET_OPENED_BLOCK_SETTINGS_MENU"){var n;return(n=t?.clientId)!==null&&n!==void 0?n:null}return e}function Ugt(e=new Map,t){switch(t.type){case"SET_STYLE_OVERRIDE":return new Map(e).set(t.id,t.style);case"DELETE_STYLE_OVERRIDE":{const n=new Map(e);return n.delete(t.id),n}}return e}function Xgt(e=[],t){switch(t.type){case"REGISTER_INSERTER_MEDIA_CATEGORY":return[...e,t.category]}return e}function Ggt(e=!1,t){switch(t.type){case"LAST_FOCUS":return t.lastFocus}return e}function Kgt(e=!1,t){switch(t.type){case"HOVER_BLOCK":return t.clientId}return e}function Ygt(e=100,t){switch(t.type){case"SET_ZOOM_LEVEL":return t.zoom;case"RESET_ZOOM_LEVEL":return 100}return e}function Zgt(e=null,t){switch(t.type){case"SET_INSERTION_POINT":return t.value;case"SELECT_BLOCK":return null}return e}const Qgt=J0({blocks:Ogt,isDragging:vgt,isTyping:Agt,isBlockInterfaceHidden:ygt,draggedBlocks:xgt,selection:_gt,isMultiSelecting:kgt,isSelectionEnabled:Sgt,initialPosition:Rgt,blocksMode:Tgt,blockListSettings:Lgt,insertionPoint:Zgt,insertionCue:Egt,template:Wgt,settings:Ngt,preferences:Bgt,lastBlockAttributesChange:Pgt,lastFocus:Ggt,expandedBlock:Igt,highlightedBlock:jgt,lastBlockInserted:Dgt,temporarilyEditingAsBlocks:Fgt,temporarilyEditingFocusModeRevert:$gt,blockVisibility:wgt,blockEditingModes:Vgt,styleOverrides:Ugt,removalPromptData:Cgt,blockRemovalRules:qgt,openedBlockSettingsMenu:Hgt,registeredInserterMediaCategories:Xgt,hoveredBlockClientId:Kgt,zoomLevel:Ygt});function q2e(e,t){if(t===""){const r=e.blocks.tree.get(t);return r?{clientId:"",...r}:void 0}if(!e.blocks.controlledInnerBlocks[t])return e.blocks.tree.get(t);const n=e.blocks.tree.get(`controlled||${t}`);return{...e.blocks.tree.get(t),innerBlocks:n?.innerBlocks}}function qx(e,t,n){const o=q2e(e,t);if(o&&(n(o),!!o?.innerBlocks?.length))for(const r of o?.innerBlocks)qx(e,r.clientId,n)}function Wp(e,t,n){if(!n.length)return;let o=e.blocks.parents.get(t);for(;o!==void 0;){if(n.includes(o))return o;o=e.blocks.parents.get(o)}}function DZ(e){return e?.attributes?.metadata?.bindings&&Object.keys(e?.attributes?.metadata?.bindings).length}function sM(e,t=!1,n=""){const o=e?.zoomLevel<100||e?.zoomLevel==="auto-scaled",r=new Map,s=e.settings?.[Nz],i=e.blocks.order.get(s),c=Array.from(e.blockEditingModes).some(([,d])=>d==="disabled"),l=[],u=[];return Object.keys(e.blocks.controlledInnerBlocks).forEach(d=>{const p=e.blocks.byClientId?.get(d);p?.name==="core/template-part"&&l.push(d),p?.name==="core/block"&&u.push(d)}),qx(e,n,d=>{const{clientId:p,name:f}=d;if(!e.blockEditingModes.has(p)){if(c){let b,h=e.blocks.parents.get(p);for(;h!==void 0&&(r.has(h)?b=r.get(h):e.blockEditingModes.has(h)&&(b=e.blockEditingModes.get(h)),!b);)h=e.blocks.parents.get(h);if(b==="disabled"){r.set(p,"disabled");return}}if(o||t){if(p===s){r.set(p,"contentOnly");return}if(!i?.length){r.set(p,"disabled");return}if(i.includes(p)){r.set(p,"contentOnly");return}if(o){r.set(p,"disabled");return}if(!!!Wp(e,p,i)){if(p===""){r.set(p,"disabled");return}if(f==="core/template-part"){r.set(p,"contentOnly");return}if(!!!Wp(e,p,l)&&!jZ(f)){r.set(p,"disabled");return}}if(u.length){const h=Wp(e,p,u);if(h){if(Wp(e,h,u)){r.set(p,"disabled");return}if(DZ(d)){r.set(p,"contentOnly");return}r.set(p,"disabled");return}}if(f&&jZ(f)){r.set(p,"contentOnly");return}r.set(p,"disabled");return}if(u.length){if(u.includes(p)){if(Wp(e,p,u)){r.set(p,"disabled");return}return}const b=Wp(e,p,u);if(b){if(Wp(e,b,u)){r.set(p,"disabled");return}if(DZ(d)){r.set(p,"contentOnly");return}r.set(p,"disabled")}}}}),r}function li({prevState:e,nextState:t,addedBlocks:n,removedClientIds:o,isNavMode:r=!1}){const s=r?e.derivedNavModeBlockEditingModes:e.derivedBlockEditingModes;let i;return o?.forEach(c=>{qx(e,c,l=>{s.has(l.clientId)&&(i||(i=new Map(s)),i.delete(l.clientId))})}),n?.forEach(c=>{qx(t,c.clientId,l=>{const u=sM(t,r,l.clientId);u.size&&(i?i=new Map([...i?.size?i:[],...u]):i=new Map([...s?.size?s:[],...u]))})}),i}function Jgt(e){return(t,n)=>{var o,r;const s=e(t,n);if(n.type!=="SET_EDITOR_MODE"&&s===t)return t;switch(n.type){case"REMOVE_BLOCKS":{const i=li({prevState:t,nextState:s,removedClientIds:n.clientIds,isNavMode:!1}),c=li({prevState:t,nextState:s,removedClientIds:n.clientIds,isNavMode:!0});if(i||c)return{...s,derivedBlockEditingModes:i??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:c??t.derivedNavModeBlockEditingModes};break}case"RECEIVE_BLOCKS":case"INSERT_BLOCKS":{const i=li({prevState:t,nextState:s,addedBlocks:n.blocks,isNavMode:!1}),c=li({prevState:t,nextState:s,addedBlocks:n.blocks,isNavMode:!0});if(i||c)return{...s,derivedBlockEditingModes:i??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:c??t.derivedNavModeBlockEditingModes};break}case"SET_BLOCK_EDITING_MODE":case"UNSET_BLOCK_EDITING_MODE":case"SET_HAS_CONTROLLED_INNER_BLOCKS":{const i=q2e(s,n.clientId);if(!i)break;const c=li({prevState:t,nextState:s,removedClientIds:[n.clientId],addedBlocks:[i],isNavMode:!1}),l=li({prevState:t,nextState:s,removedClientIds:[n.clientId],addedBlocks:[i],isNavMode:!0});if(c||l)return{...s,derivedBlockEditingModes:c??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:l??t.derivedNavModeBlockEditingModes};break}case"REPLACE_BLOCKS":{const i=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:n.clientIds,isNavMode:!1}),c=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:n.clientIds,isNavMode:!0});if(i||c)return{...s,derivedBlockEditingModes:i??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:c??t.derivedNavModeBlockEditingModes};break}case"REPLACE_INNER_BLOCKS":{const i=t.blocks.order.get(n.rootClientId),c=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:i,isNavMode:!1}),l=li({prevState:t,nextState:s,addedBlocks:n.blocks,removedClientIds:i,isNavMode:!0});if(c||l)return{...s,derivedBlockEditingModes:c??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:l??t.derivedNavModeBlockEditingModes};break}case"MOVE_BLOCKS_TO_POSITION":{const i=n.clientIds.map(u=>s.blocks.byClientId.get(u)),c=li({prevState:t,nextState:s,addedBlocks:i,removedClientIds:n.clientIds,isNavMode:!1}),l=li({prevState:t,nextState:s,addedBlocks:i,removedClientIds:n.clientIds,isNavMode:!0});if(c||l)return{...s,derivedBlockEditingModes:c??t.derivedBlockEditingModes,derivedNavModeBlockEditingModes:l??t.derivedNavModeBlockEditingModes};break}case"UPDATE_SETTINGS":{if(t?.settings?.[Nz]!==s?.settings?.[Nz])return{...s,derivedBlockEditingModes:sM(s,!1),derivedNavModeBlockEditingModes:sM(s,!0)};break}case"RESET_BLOCKS":case"SET_EDITOR_MODE":case"RESET_ZOOM_LEVEL":case"SET_ZOOM_LEVEL":return{...s,derivedBlockEditingModes:sM(s,!1),derivedNavModeBlockEditingModes:sM(s,!0)}}return s.derivedBlockEditingModes=(o=t?.derivedBlockEditingModes)!==null&&o!==void 0?o:new Map,s.derivedNavModeBlockEditingModes=(r=t?.derivedNavModeBlockEditingModes)!==null&&r!==void 0?r:new Map,s}}function eMt(e){return(t,n)=>{const o=e(t,n);return t?(o.automaticChangeStatus=t.automaticChangeStatus,n.type==="MARK_AUTOMATIC_CHANGE"?{...o,automaticChangeStatus:"pending"}:n.type==="MARK_AUTOMATIC_CHANGE_FINAL"&&t.automaticChangeStatus==="pending"?{...o,automaticChangeStatus:"final"}:o.blocks===t.blocks&&o.selection===t.selection||o.automaticChangeStatus!=="final"&&o.selection!==t.selection?o:{...o,automaticChangeStatus:void 0}):o}}const tMt=Ku(Jgt,eMt)(Qgt);function nMt(e={},t){if(t.type==="SET_PREFERENCE_DEFAULTS"){const{scope:n,defaults:o}=t;return{...e,[n]:{...e[n],...o}}}return e}function oMt(e){let t;return(n,o)=>{if(o.type==="SET_PERSISTENCE_LAYER"){const{persistenceLayer:s,persistedData:i}=o;return t=s,i}const r=e(n,o);return o.type==="SET_PREFERENCE_VALUE"&&t?.set(r),r}}const rMt=oMt((e={},t)=>{if(t.type==="SET_PREFERENCE_VALUE"){const{scope:n,name:o,value:r}=t;return{...e,[n]:{...e[n],[o]:r}}}return e}),sMt=J0({defaults:nMt,preferences:rMt});function iMt(e,t){return function({select:n,dispatch:o}){const r=n.get(e,t);o.set(e,t,!r)}}function aMt(e,t,n){return{type:"SET_PREFERENCE_VALUE",scope:e,name:t,value:n}}function cMt(e,t){return{type:"SET_PREFERENCE_DEFAULTS",scope:e,defaults:t}}async function lMt(e){const t=await e.get();return{type:"SET_PERSISTENCE_LAYER",persistenceLayer:e,persistedData:t}}const uMt=Object.freeze(Object.defineProperty({__proto__:null,set:aMt,setDefaults:cMt,setPersistenceLayer:lMt,toggle:iMt},Symbol.toStringTag,{value:"Module"})),dMt=e=>(t,n,o)=>["allowRightClickOverrides","distractionFree","editorMode","fixedToolbar","focusMode","hiddenBlockTypes","inactivePanels","keepCaretInsideBlock","mostUsedBlocks","openPanels","showBlockBreadcrumbs","showIconLabels","showListViewByDefault","isPublishSidebarEnabled","isComplementaryAreaVisible","pinnedItems"].includes(o)&&["core/edit-post","core/edit-site"].includes(n)?(Ke(`wp.data.select( 'core/preferences' ).get( '${n}', '${o}' )`,{since:"6.5",alternative:`wp.data.select( 'core/preferences' ).get( 'core', '${o}' )`}),e(t,"core",o)):e(t,n,o),pMt=dMt((e,t,n)=>{const o=e.preferences[t]?.[n];return o!==void 0?o:e.defaults[t]?.[n]}),fMt=Object.freeze(Object.defineProperty({__proto__:null,get:pMt},Symbol.toStringTag,{value:"Module"})),bMt="core/preferences",ht=x1(bMt,{reducer:sMt,actions:uMt,selectors:fMt});Us(ht);function oq({scope:e,name:t,label:n,info:o,messageActivated:r,messageDeactivated:s,shortcut:i,handleToggling:c=!0,onToggle:l=()=>null,disabled:u=!1}){const d=G(b=>!!b(ht).get(e,t),[e,t]),{toggle:p}=Oe(ht),f=()=>{if(d){const b=s||xe(m("Preference deactivated - %s"),n);Yt(b)}else{const b=r||xe(m("Preference activated - %s"),n);Yt(b)}};return a.jsx(Ct,{icon:d&&M0,isSelected:d,onClick:()=>{l(),c&&p(e,t),f()},role:"menuitemcheckbox",info:o,shortcut:i,disabled:u,children:n})}function R2e({help:e,label:t,isChecked:n,onChange:o,children:r}){return a.jsxs("div",{className:"preference-base-option",children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,help:e,label:t,checked:n,onChange:o}),r]})}function hMt(e){const{scope:t,featureName:n,onToggle:o=()=>{},...r}=e,s=G(l=>!!l(ht).get(t,n),[t,n]),{toggle:i}=Oe(ht),c=()=>{o(),i(t,n)};return a.jsx(R2e,{onChange:c,isChecked:s,...r})}function mMt({closeModal:e,children:t}){return a.jsx(Zo,{className:"preferences-modal",title:m("Preferences"),onRequestClose:e,children:t})}const gMt=({description:e,title:t,children:n})=>a.jsxs("fieldset",{className:"preferences-modal__section",children:[a.jsxs("legend",{className:"preferences-modal__section-legend",children:[a.jsx("h2",{className:"preferences-modal__section-title",children:t}),e&&a.jsx("p",{className:"preferences-modal__section-description",children:e})]}),a.jsx("div",{className:"preferences-modal__section-content",children:n})]}),{lock:MMt,unlock:zMt}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/preferences"),{Tabs:XA}=zMt(tr),FZ="preferences-menu";function OMt({sections:e}){const t=Yn("medium"),[n,o]=x.useState(FZ),{tabs:r,sectionsContentMap:s}=x.useMemo(()=>{let c={tabs:[],sectionsContentMap:{}};return e.length&&(c=e.reduce((l,{name:u,tabLabel:d,content:p})=>(l.tabs.push({name:u,title:d}),l.sectionsContentMap[u]=p,l),{tabs:[],sectionsContentMap:{}})),c},[e]);let i;return t?i=a.jsx("div",{className:"preferences__tabs",children:a.jsxs(XA,{defaultTabId:n!==FZ?n:void 0,onSelect:o,orientation:"vertical",children:[a.jsx(XA.TabList,{className:"preferences__tabs-tablist",children:r.map(c=>a.jsx(XA.Tab,{tabId:c.name,className:"preferences__tabs-tab",children:c.title},c.name))}),r.map(c=>a.jsx(XA.TabPanel,{tabId:c.name,className:"preferences__tabs-tabpanel",focusable:!1,children:s[c.name]||null},c.name))]})}):i=a.jsxs(ic,{initialPath:"/",className:"preferences__provider",children:[a.jsx(ic.Screen,{path:"/",children:a.jsx(PY,{isBorderless:!0,size:"small",children:a.jsx(jY,{children:a.jsx(tb,{children:r.map(c=>a.jsx(ic.Button,{path:`/${c.name}`,as:oO,isAction:!0,children:a.jsxs(Ot,{justify:"space-between",children:[a.jsx(Tn,{children:a.jsx(zs,{children:c.title})}),a.jsx(Tn,{children:a.jsx(wn,{icon:jt()?Ll:ma})})]})},c.name))})})})}),e.length&&e.map(c=>a.jsx(ic.Screen,{path:`/${c.name}`,children:a.jsxs(PY,{isBorderless:!0,size:"large",children:[a.jsxs(ist,{isBorderless:!1,justify:"left",size:"small",gap:"6",children:[a.jsx(ic.BackButton,{icon:jt()?ma:Ll,label:m("Back")}),a.jsx(Sn,{size:"16",children:c.tabLabel})]}),a.jsx(jY,{children:c.content})]})},`${c.name}-menu`))]}),i}const cp={};MMt(cp,{PreferenceBaseOption:R2e,PreferenceToggleControl:hMt,PreferencesModal:mMt,PreferencesModalSection:gMt,PreferencesModalTabs:OMt});const $r="core/block-editor",g1={user:"user",theme:"theme",directory:"directory"},Rx={full:"fully",unsynced:"unsynced"},Tx={name:"allPatterns",label:We("All","patterns")},pO={name:"myPatterns",label:m("My patterns")},T2e={name:"core/starter-content",label:m("Starter content")};function E2e(e,t,n){const o=e.name.startsWith("core/block"),r=e.source==="core"||e.source?.startsWith("pattern-directory");return!!(t===g1.theme&&(o||r)||t===g1.directory&&(o||!r)||t===g1.user&&e.type!==g1.user||n===Rx.full&&e.syncStatus!==""||n===Rx.unsynced&&e.syncStatus!=="unsynced"&&o)}function gn(e,t,n){t=Array.isArray(t)?[...t]:[t],e=Array.isArray(e)?[...e]:{...e};const o=t.pop();let r=e;for(const s of t){const i=r[s];r=r[s]=Array.isArray(i)?[...i]:{...i}}return r[o]=n,e}const fo=(e,t,n)=>{var o;const r=Array.isArray(t)?t:t.split(".");let s=e;return r.forEach(i=>{s=s?.[i]}),(o=s)!==null&&o!==void 0?o:n},yMt=["color","border","dimensions","typography","spacing"],AMt={"color.palette":e=>e.colors,"color.gradients":e=>e.gradients,"color.custom":e=>e.disableCustomColors===void 0?void 0:!e.disableCustomColors,"color.customGradient":e=>e.disableCustomGradients===void 0?void 0:!e.disableCustomGradients,"typography.fontSizes":e=>e.fontSizes,"typography.customFontSize":e=>e.disableCustomFontSizes===void 0?void 0:!e.disableCustomFontSizes,"typography.lineHeight":e=>e.enableCustomLineHeight,"spacing.units":e=>{if(e.enableCustomUnits!==void 0)return e.enableCustomUnits===!0?["px","em","rem","vh","vw","%"]:e.enableCustomUnits},"spacing.padding":e=>e.enableCustomSpacing},vMt={"border.customColor":"border.color","border.customStyle":"border.style","border.customWidth":"border.width","typography.customFontStyle":"typography.fontStyle","typography.customFontWeight":"typography.fontWeight","typography.customLetterSpacing":"typography.letterSpacing","typography.customTextDecorations":"typography.textDecoration","typography.customTextTransforms":"typography.textTransform","border.customRadius":"border.radius","spacing.customMargin":"spacing.margin","spacing.customPadding":"spacing.padding","typography.customLineHeight":"typography.lineHeight"},xMt=e=>vMt[e]||e;function wMt(e,t,...n){const o=As(e,t),r=[];if(t){let s=t;do{const i=As(e,s);Et(i,"__experimentalSettings",!1)&&r.push(s)}while(s=e.blocks.parents.get(s))}return n.map(s=>{if(yMt.includes(s)){console.warn("Top level useSetting paths are disabled. Please use a subpath to query the information needed.");return}let i=gr("blockEditor.useSetting.before",void 0,s,t,o);if(i!==void 0)return i;const c=xMt(s);for(const b of r){var l;const h=gm(e,b);if(i=(l=fo(h.settings?.blocks?.[o],c))!==null&&l!==void 0?l:fo(h.settings,c),i!==void 0)break}const u=ym(e);if(i===void 0&&o&&(i=fo(u.__experimentalFeatures?.blocks?.[o],c)),i===void 0&&(i=fo(u.__experimentalFeatures,c)),i!==void 0){if(iLe[c]){var d,p;return(d=(p=i.custom)!==null&&p!==void 0?p:i.theme)!==null&&d!==void 0?d:i.default}return i}const f=AMt[c]?.(u);return f!==void 0?f:c==="typography.dropCap"?!0:void 0})}function _Mt(e){return e.isBlockInterfaceHidden}function kMt(e){return e?.lastBlockInserted?.clientIds}function SMt(e,t){return e.blocks.byClientId.get(t)}const CMt=(e,t)=>{const n=o=>up(e,o)==="disabled"&&vs(e,o).every(n);return vs(e,t).every(n)};function W2e(e,t){const n=vs(e,t),o=[];for(const r of n){const s=W2e(e,r);up(e,r)!=="disabled"?o.push({clientId:r,innerBlocks:s}):o.push(...s)}return o}const qMt=At(e=>It(W2e,t=>[t.blocks.order,t.derivedBlockEditingModes,t.derivedNavModeBlockEditingModes,t.blockEditingModes,t.settings.templateLock,t.blockListSettings,e($r).__unstableGetEditorMode(t)])),RMt=It((e,t,n=!1)=>Id(e,t,n).filter(o=>up(e,o)!=="disabled"),e=>[e.blocks.parents,e.blockEditingModes,e.settings.templateLock,e.blockListSettings]);function TMt(e){return e.removalPromptData}function EMt(e){return e.blockRemovalRules}function WMt(e){return e.openedBlockSettingsMenu}const NMt=It(e=>{const n=mO(e).reduce((o,r,s)=>(o[r]=s,o),{});return[...e.styleOverrides].sort((o,r)=>{var s,i;const[,{clientId:c}]=o,[,{clientId:l}]=r,u=(s=n[c])!==null&&s!==void 0?s:-1,d=(i=n[l])!==null&&i!==void 0?i:-1;return u-d})},e=>[e.blocks.order,e.styleOverrides]);function BMt(e){return e.registeredInserterMediaCategories}const LMt=It(e=>{const{settings:{inserterMediaCategories:t,allowedMimeTypes:n,enableOpenverseMediaCategory:o},registeredInserterMediaCategories:r}=e;if(!t&&!r.length||!n)return;const s=t?.map(({name:c})=>c)||[];return[...t||[],...(r||[]).filter(({name:c})=>!s.includes(c))].filter(c=>!o&&c.name==="openverse"?!1:Object.values(n).some(l=>l.startsWith(`${c.mediaType}/`)))},e=>[e.settings.inserterMediaCategories,e.settings.allowedMimeTypes,e.settings.enableOpenverseMediaCategory,e.registeredInserterMediaCategories]),PMt=At(e=>It((t,n=null)=>{const{getAllPatterns:o}=ct(e($r)),r=o(),{allowedBlockTypes:s}=ym(t);return r.some(i=>{const{inserter:c=!0}=i;if(!c)return!1;const l=Bz(i);return Yj(l,s)&&l.every(({name:u})=>Om(t,u,n))})},(t,n)=>[...Zj(e)(t),...mm(e)(t,n)]));function N2e(e,t=[]){return{name:`core/block/${e.id}`,id:e.id,type:g1.user,title:e.title.raw,categories:e.wp_pattern_category?.map(n=>{const o=t.find(({id:r})=>r===n);return o?o.slug:n}),content:e.content.raw,syncStatus:e.wp_pattern_sync_status}}const jMt=At(e=>It((t,n)=>{var o,r;if(n?.startsWith("core/block/")){const s=parseInt(n.slice(11),10),i=ct(e($r)).getReusableBlocks().find(({id:c})=>c===s);return i?N2e(i,t.settings.__experimentalUserPatternCategories):null}return[...(o=t.settings.__experimentalBlockPatterns)!==null&&o!==void 0?o:[],...(r=t.settings[Wz]?.(e))!==null&&r!==void 0?r:[]].find(({name:s})=>s===n)},(t,n)=>n?.startsWith("core/block/")?[ct(e($r)).getReusableBlocks(),t.settings.__experimentalReusableBlocks]:[t.settings.__experimentalBlockPatterns,t.settings[Wz]?.(e)])),IMt=At(e=>It(t=>{var n,o;return[...ct(e($r)).getReusableBlocks().map(r=>N2e(r,t.settings.__experimentalUserPatternCategories)),...(n=t.settings.__experimentalBlockPatterns)!==null&&n!==void 0?n:[],...(o=t.settings[Wz]?.(e))!==null&&o!==void 0?o:[]].filter((r,s,i)=>s===i.findIndex(c=>r.name===c.name))},Zj(e))),DMt=[],FMt=At(e=>t=>{var n;const o=t.settings[S2e];return(n=o?o(e):t.settings.__experimentalReusableBlocks)!==null&&n!==void 0?n:DMt});function $Mt(e){return e.lastFocus}function VMt(e){return e.isDragging}function HMt(e){return e.expandedBlock}const B2e=(e,t)=>{let n=t,o;for(;!o&&(n=e.blocks.parents.get(n));)ib(e,n)==="contentOnly"&&(o=n);return o},L2e=(e,t)=>{let n=t,o;for(;!o&&(n=e.blocks.parents.get(n));)Kj(e,n)&&(o=n);return o};function Kj(e,t){const n=As(e,t);if(n==="core/block"||ib(e,t)==="contentOnly")return!0;const o=a7(e);if(o&&n==="core/template-part")return!0;const r=fO(e),s=vs(e,r);return o&&s.includes(t)}function P2e(e){return e.temporarilyEditingAsBlocks}function j2e(e){return e.temporarilyEditingFocusModeRevert}const UMt=It((e,t)=>t.reduce((n,o)=>(n[o]=e.blocks.attributes.get(o)?.style,n),{}),(e,t)=>[...t.map(n=>e.blocks.attributes.get(n)?.style)]);function fO(e){return e.settings?.[Nz]}function I2e(e){return e.zoomLevel==="auto-scaled"||e.zoomLevel<100}function XMt(e){return e.zoomLevel}function D2e(e,t,n=""){const o=Array.isArray(t)?t:[t],r=i=>o.every(c=>Om(e,c,i));if(!n){if(r(n))return n;const i=fO(e);return i&&r(i)?i:null}let s=n;for(;s!==null&&!r(s);)s=n1(e,s);return s}function GMt(e,t,n){const{allowedBlockTypes:o}=ym(e);if(!Yj(Bz(t),o))return null;const s=Bz(t).map(({blockName:i})=>i);return D2e(e,s,n)}function KMt(e){return e.insertionPoint}const F2e=Object.freeze(Object.defineProperty({__proto__:null,getAllPatterns:IMt,getBlockRemovalRules:EMt,getBlockSettings:wMt,getBlockStyles:UMt,getBlockWithoutAttributes:SMt,getClosestAllowedInsertionPoint:D2e,getClosestAllowedInsertionPointForPattern:GMt,getContentLockingParent:B2e,getEnabledBlockParents:RMt,getEnabledClientIdsTree:qMt,getExpandedBlock:HMt,getInserterMediaCategories:LMt,getInsertionPoint:KMt,getLastFocus:$Mt,getLastInsertedBlocksClientIds:kMt,getOpenedBlockSettingsMenu:WMt,getParentSectionBlock:L2e,getPatternBySlug:jMt,getRegisteredInserterMediaCategories:BMt,getRemovalPromptData:TMt,getReusableBlocks:FMt,getSectionRootClientId:fO,getStyleOverrides:NMt,getTemporarilyEditingAsBlocks:P2e,getTemporarilyEditingFocusModeToRevert:j2e,getZoomLevel:XMt,hasAllowedPatterns:PMt,isBlockInterfaceHidden:_Mt,isBlockSubtreeDisabled:CMt,isDragging:VMt,isSectionBlock:Kj,isZoomOut:I2e},Symbol.toStringTag,{value:"Module"})),bO=Symbol("isFiltered"),$Z=new WeakMap,VZ=new WeakMap;function YMt(e){const t=Ko(e.content,{__unstableSkipMigrationLogs:!0});return t.length===1&&(t[0].attributes={...t[0].attributes,metadata:{...t[0].attributes.metadata||{},categories:e.categories,patternName:e.name,name:t[0].attributes.metadata?.name||e.title}}),{...e,blocks:t}}function $2e(e){let t=$Z.get(e);return t||(t=YMt(e),$Z.set(e,t)),t}function Bz(e){let t=VZ.get(e);return t||(t=xie(e.content),t=t.filter(n=>n.blockName!==null),VZ.set(e,t)),t}const z2=(e,t,n=null)=>typeof e=="boolean"?e:Array.isArray(e)?e.includes("core/post-content")&&t===null?!0:e.includes(t):n,Yj=(e,t)=>{if(typeof t=="boolean")return t;const n=[...e];for(;n.length>0;){const o=n.shift();if(!z2(t,o.name||o.blockName,!0))return!1;o.innerBlocks?.forEach(s=>{n.push(s)})}return!0},Zj=e=>t=>[t.settings.__experimentalBlockPatterns,t.settings.__experimentalUserPatternCategories,t.settings.__experimentalReusableBlocks,t.settings[Wz]?.(e),t.blockPatterns,ct(e($r)).getReusableBlocks()],mm=e=>(t,n)=>[t.blockListSettings[n],t.blocks.byClientId.get(n),t.settings.allowedBlockTypes,t.settings.templateLock,t.blockEditingModes,e($r).__unstableGetEditorMode(t),fO(t)],ZMt=(e,t,n)=>(o,r)=>{let s,i;if(typeof e=="function"?(s=e(o),i=e(r)):(s=o[e],i=r[e]),s>i)return n==="asc"?1:-1;if(i>s)return n==="asc"?-1:1;const c=t.findIndex(u=>u===o),l=t.findIndex(u=>u===r);return c>l?1:l>c?-1:0};function hO(e,t,n="asc"){return e.concat().sort(ZMt(t,e,n))}const QMt=3600*1e3,JMt=24*3600*1e3,ezt=7*24*3600*1e3,Z0=[],tzt=new Set,V2e={[bO]:!0};function As(e,t){const n=e.blocks.byClientId.get(t);return n?n.name:null}function nzt(e,t){const n=e.blocks.byClientId.get(t);return!!n&&n.isValid}function gm(e,t){return e.blocks.byClientId.get(t)?e.blocks.attributes.get(t):null}function Il(e,t){return e.blocks.byClientId.has(t)?e.blocks.tree.get(t):null}const ozt=It((e,t)=>{const n=e.blocks.byClientId.get(t);return n?{...n,attributes:gm(e,t)}:null},(e,t)=>[e.blocks.byClientId.get(t),e.blocks.attributes.get(t)]);function rzt(e,t){const n=!t||!p_(e,t)?t||"":"controlled||"+t;return e.blocks.tree.get(n)?.innerBlocks||Z0}const H2e=It((e,t)=>(Ke("wp.data.select( 'core/block-editor' ).__unstableGetClientIdWithClientIdsTree",{since:"6.3",version:"6.5"}),{clientId:t,innerBlocks:U2e(e,t)}),e=>[e.blocks.order]),U2e=It((e,t="")=>(Ke("wp.data.select( 'core/block-editor' ).__unstableGetClientIdsTree",{since:"6.3",version:"6.5"}),vs(e,t).map(n=>H2e(e,n))),e=>[e.blocks.order]),X2e=It((e,t)=>{t=Array.isArray(t)?[...t]:[t];const n=[];for(const r of t){const s=e.blocks.order.get(r);s&&n.push(...s)}let o=0;for(;o<n.length;){const r=n[o],s=e.blocks.order.get(r);s&&n.splice(o+1,0,...s),o++}return n},e=>[e.blocks.order]),mO=e=>X2e(e,""),szt=It((e,t)=>{const n=mO(e);if(!t)return n.length;let o=0;for(const r of n)e.blocks.byClientId.get(r).name===t&&o++;return o},e=>[e.blocks.order,e.blocks.byClientId]),G2e=It((e,t)=>{if(!t)return Z0;const n=Array.isArray(t)?t:[t],r=mO(e).filter(s=>{const i=e.blocks.byClientId.get(s);return n.includes(i.name)});return r.length>0?r:Z0},e=>[e.blocks.order,e.blocks.byClientId]);function izt(e,t){return Ke("wp.data.select( 'core/block-editor' ).__experimentalGetGlobalBlocksByName",{since:"6.5",alternative:"wp.data.select( 'core/block-editor' ).getBlocksByName"}),G2e(e,t)}const Ex=It((e,t)=>(Array.isArray(t)?t:[t]).map(n=>Il(e,n)),(e,t)=>(Array.isArray(t)?t:[t]).map(n=>e.blocks.tree.get(n))),azt=It((e,t)=>Ex(e,t).filter(Boolean).map(n=>n.name),(e,t)=>Ex(e,t));function czt(e,t){return vs(e,t).length}function gO(e){return e.selection.selectionStart}function MO(e){return e.selection.selectionEnd}function lzt(e){return e.selection.selectionStart.clientId}function uzt(e){return e.selection.selectionEnd.clientId}function dzt(e){const t=lp(e).length;return t||(e.selection.selectionStart.clientId?1:0)}function pzt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return!!t.clientId&&t.clientId===n.clientId}function Mm(e){const{selectionStart:t,selectionEnd:n}=e.selection,{clientId:o}=t;return!o||o!==n.clientId?null:o}function fzt(e){const t=Mm(e);return t?Il(e,t):null}function n1(e,t){var n;return(n=e.blocks.parents.get(t))!==null&&n!==void 0?n:null}const Id=It((e,t,n=!1)=>{const o=[];let r=t;for(;r=e.blocks.parents.get(r);)o.push(r);return o.length?n?o:o.reverse():Z0},e=>[e.blocks.parents]),d_=It((e,t,n,o=!1)=>{const r=Id(e,t,o),s=Array.isArray(n)?i=>n.includes(i):i=>n===i;return r.filter(i=>s(As(e,i)))},e=>[e.blocks.parents]);function bzt(e,t){let n=t,o;do o=n,n=e.blocks.parents.get(n);while(n);return o}function hzt(e,t){const n=Mm(e),o=[...Id(e,t),t],r=[...Id(e,n),n];let s;const i=Math.min(o.length,r.length);for(let c=0;c<i&&o[c]===r[c];c++)s=o[c];return s}function Qj(e,t,n=1){if(t===void 0&&(t=Mm(e)),t===void 0&&(n<0?t=Jj(e):t=K2e(e)),!t)return null;const o=n1(e,t);if(o===null)return null;const{order:r}=e.blocks,s=r.get(o),c=s.indexOf(t)+1*n;return c<0||c===s.length?null:s[c]}function mzt(e,t){return Qj(e,t,-1)}function gzt(e,t){return Qj(e,t,1)}function Mzt(e){return e.initialPosition}const zm=It(e=>{const{selectionStart:t,selectionEnd:n}=e.selection;if(!t.clientId||!n.clientId)return Z0;if(t.clientId===n.clientId)return[t.clientId];const o=n1(e,t.clientId);if(o===null)return Z0;const r=vs(e,o),s=r.indexOf(t.clientId),i=r.indexOf(n.clientId);return s>i?r.slice(i,s+1):r.slice(s,i+1)},e=>[e.blocks.order,e.selection.selectionStart.clientId,e.selection.selectionEnd.clientId]);function lp(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId===n.clientId?Z0:zm(e)}const zzt=It(e=>{const t=lp(e);return t.length?t.map(n=>Il(e,n)):Z0},e=>[...zm.getDependants(e),e.blocks.byClientId,e.blocks.order,e.blocks.attributes]);function Jj(e){return lp(e)[0]||null}function K2e(e){const t=lp(e);return t[t.length-1]||null}function Ozt(e,t){return Jj(e)===t}function Y2e(e,t){return lp(e).indexOf(t)!==-1}const yzt=It((e,t)=>{let n=t,o=!1;for(;n&&!o;)n=n1(e,n),o=Y2e(e,n);return o},e=>[e.blocks.order,e.selection.selectionStart.clientId,e.selection.selectionEnd.clientId]);function Azt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId===n.clientId?null:t.clientId||null}function vzt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId===n.clientId?null:n.clientId||null}function xzt(e){const t=gO(e),n=MO(e);return!t.attributeKey&&!n.attributeKey&&typeof t.offset>"u"&&typeof n.offset>"u"}function wzt(e){const t=gO(e),n=MO(e);return!!t&&!!n&&t.clientId===n.clientId&&t.attributeKey===n.attributeKey&&t.offset===n.offset}function _zt(e){return zm(e).some(t=>{const n=As(e,t);return!on(n).merge})}function kzt(e,t){const n=gO(e),o=MO(e);if(n.clientId===o.clientId||!n.attributeKey||!o.attributeKey||typeof n.offset>"u"||typeof o.offset>"u")return!1;const r=n1(e,n.clientId),s=n1(e,o.clientId);if(r!==s)return!1;const i=vs(e,r),c=i.indexOf(n.clientId),l=i.indexOf(o.clientId);let u,d;c>l?(u=o,d=n):(u=n,d=o);const p=t?d.clientId:u.clientId,f=t?u.clientId:d.clientId,b=As(e,p);if(!on(b).merge)return!1;const g=Il(e,f);if(g.name===b)return!0;const z=Kr(g,b);return z&&z.length}const Szt=e=>{const t=gO(e),n=MO(e);if(t.clientId===n.clientId||!t.attributeKey||!n.attributeKey||typeof t.offset>"u"||typeof n.offset>"u")return Z0;const o=n1(e,t.clientId),r=n1(e,n.clientId);if(o!==r)return Z0;const s=vs(e,o),i=s.indexOf(t.clientId),c=s.indexOf(n.clientId),[l,u]=i>c?[n,t]:[t,n],d=Il(e,l.clientId),p=Il(e,u.clientId),f=d.attributes[l.attributeKey],b=p.attributes[u.attributeKey];let h=eo({html:f}),g=eo({html:b});return h=pa(h,0,l.offset),g=pa(g,u.offset,g.text.length),[{...d,attributes:{...d.attributes,[l.attributeKey]:T0({value:h})}},{...p,attributes:{...p.attributes,[u.attributeKey]:T0({value:g})}}]};function vs(e,t){return e.blocks.order.get(t||"")||Z0}function Z2e(e,t){const n=n1(e,t);return vs(e,n).indexOf(t)}function Q2e(e,t){const{selectionStart:n,selectionEnd:o}=e.selection;return n.clientId!==o.clientId?!1:n.clientId===t}function J2e(e,t,n=!1){const o=zm(e);return o.length?n?o.some(r=>Id(e,r,!0).includes(t)):o.some(r=>n1(e,r)===t):!1}function ehe(e,t,n=!1){return vs(e,t).some(o=>e7(e,o)||n&&ehe(e,o,n))}function Czt(e,t){if(!t)return!1;const n=lp(e),o=n.indexOf(t);return o>-1&&o<n.length-1}function qzt(e){const{selectionStart:t,selectionEnd:n}=e.selection;return t.clientId!==n.clientId}function Rzt(e){return e.isMultiSelecting}function Tzt(e){return e.isSelectionEnabled}function Ezt(e,t){return e.blocksMode[t]||"visual"}function Wzt(e){return e.isTyping}function the(e){return!!e.draggedBlocks.length}function Nzt(e){return e.draggedBlocks}function e7(e,t){return e.draggedBlocks.includes(t)}function Bzt(e,t){return the(e)?Id(e,t).some(o=>e7(e,o)):!1}function Lzt(){return Ke('wp.data.select( "core/block-editor" ).isCaretWithinFormattedText',{since:"6.1",version:"6.3"}),!1}const Pzt=It(e=>{let t,n;const{insertionCue:o,selection:{selectionEnd:r}}=e;if(o!==null)return o;const{clientId:s}=r;return s?(t=n1(e,s)||void 0,n=Z2e(e,r.clientId)+1):n=vs(e).length,{rootClientId:t,index:n}},e=>[e.insertionCue,e.selection.selectionEnd.clientId,e.blocks.parents,e.blocks.order]);function jzt(e){return e.insertionCue!==null}function Izt(e){return e.template.isValid}function Dzt(e){return e.settings.template}function ib(e,t){var n;if(!t){var o;return(o=e.settings.templateLock)!==null&&o!==void 0?o:!1}return(n=i7(e,t)?.templateLock)!==null&&n!==void 0?n:!1}const t7=(e,t,n=null)=>{let o,r;if(t&&typeof t=="object"?(o=t,r=t.name):(o=on(t),r=t),!o)return!1;const{allowedBlockTypes:s}=ym(e);if(!z2(s,r,!0))return!1;const c=(Array.isArray(o.parent)?o.parent:[]).concat(Array.isArray(o.ancestor)?o.ancestor:[]);if(c.length>0){const l=As(e,n);return c.includes("core/post-content")||c.includes(l)||d_(e,n,c).length>0}return!0},zO=(e,t,n=null)=>{if(!t7(e,t,n))return!1;let o;if(t&&typeof t=="object"?(o=t,t=o.name):o=on(t),!!ib(e,n)||!!Kj(e,n)||up(e,n??"")==="disabled")return!1;const i=i7(e,n);if(n&&i===void 0)return!1;const c=As(e,n),u=on(c)?.allowedBlocks;let d=z2(u,t);if(d!==!1){const z=i?.allowedBlocks,A=z2(z,t);A!==null&&(d=A)}const p=o.parent,f=z2(p,c);let b=!0;const h=o.ancestor;h&&(b=[n,...Id(e,n)].some(A=>z2(h,As(e,A))));const g=b&&(d===null&&f===null||d===!0||f===!0);return g&&gr("blockEditor.__unstableCanInsertBlockType",g,o,n,{getBlock:Il.bind(null,e),getBlockParentsByBlockName:d_.bind(null,e)})},Om=At(e=>It(zO,(t,n,o)=>mm(e)(t,o)));function Fzt(e,t,n=null){return t.every(o=>Om(e,As(e,o),n))}function n7(e,t){const n=gm(e,t);if(n===null)return!0;if(n.lock?.remove!==void 0)return!n.lock.remove;const o=n1(e,t);return ib(e,o)||!!L2e(e,t)?!1:up(e,o)!=="disabled"}function nhe(e,t){return t.every(n=>n7(e,n))}function ohe(e,t){const n=gm(e,t);if(n===null)return!0;if(n.lock?.move!==void 0)return!n.lock.move;const o=n1(e,t);return ib(e,o)==="all"?!1:up(e,o)!=="disabled"}function $zt(e,t){return t.every(n=>ohe(e,n))}function rhe(e,t){const n=gm(e,t);if(n===null)return!0;const{lock:o}=n;return!o?.edit}function Vzt(e,t){return Et(t,"lock",!0)?!!e.settings?.canLockBlocks:!1}function o7(e,t){var n;return(n=e.preferences.insertUsage?.[t])!==null&&n!==void 0?n:null}const Lz=(e,t,n)=>Et(t,"inserter",!0)?zO(e,t.name,n):!1,Hzt=(e,t)=>n=>{const o=`${t.id}/${n.name}`,{time:r,count:s=0}=o7(e,o)||{};return{...t,id:o,icon:n.icon||t.icon,title:n.title||t.title,description:n.description||t.description,category:n.category||t.category,example:n.hasOwnProperty("example")?n.example:t.example,initialAttributes:{...t.initialAttributes,...n.attributes},innerBlocks:n.innerBlocks,keywords:n.keywords||t.keywords,frecency:r7(r,s)}},r7=(e,t)=>{if(!e)return t;const n=Date.now()-e;switch(!0){case n<QMt:return t*4;case n<JMt:return t*2;case n<ezt:return t/2;default:return t/4}},she=(e,{buildScope:t="inserter"})=>n=>{const o=n.name;let r=!1;Et(n.name,"multiple",!0)||(r=Ex(e,mO(e)).some(({name:u})=>u===n.name));const{time:s,count:i=0}=o7(e,o)||{},c={id:o,name:n.name,title:n.title,icon:n.icon,isDisabled:r,frecency:r7(s,i)};if(t==="transform")return c;const l=Z5(n.name,"inserter");return{...c,initialAttributes:{},description:n.description,category:n.category,keywords:n.keywords,parent:n.parent,ancestor:n.ancestor,variations:l,example:n.example,utility:1}},Uzt=At(e=>It((t,n=null,o=V2e)=>{const r=b=>{const h=b.wp_pattern_sync_status?Bd:{src:Bd,foreground:"var(--wp-block-synced-color)"},g=`core/block/${b.id}`,{time:z,count:A=0}=o7(t,g)||{},_=r7(z,A);return{id:g,name:"core/block",initialAttributes:{ref:b.id},title:b.title?.raw,icon:h,category:"reusable",keywords:["reusable"],isDisabled:!1,utility:1,frecency:_,content:b.content?.raw,syncStatus:b.wp_pattern_sync_status}},s=zO(t,"core/block",n)?ct(e($r)).getReusableBlocks().map(r):[],i=she(t,{buildScope:"inserter"});let c=gs().filter(b=>Et(b,"inserter",!0)).map(i);o[bO]!==!1?c=c.filter(b=>Lz(t,b,n)):c=c.filter(b=>t7(t,b,n)).map(b=>({...b,isAllowedInCurrentRoot:Lz(t,b,n)}));const l=c.reduce((b,h)=>{const{variations:g=[]}=h;if(g.some(({isDefault:z})=>z)||b.push(h),g.length){const z=Hzt(t,h);b.push(...g.map(z))}return b},[]),u=(b,h)=>{const{core:g,noncore:z}=b;return(h.name.startsWith("core/")?g:z).push(h),b},{core:d,noncore:p}=l.reduce(u,{core:[],noncore:[]});return[...[...d,...p],...s]},(t,n)=>[gs(),ct(e($r)).getReusableBlocks(),t.blocks.order,t.preferences.insertUsage,...mm(e)(t,n)])),Xzt=At(e=>It((t,n,o=null)=>{const r=Array.isArray(n)?n:[n],s=she(t,{buildScope:"transform"}),i=gs().filter(u=>Lz(t,u,o)).map(s),c=Object.fromEntries(Object.entries(i).map(([,u])=>[u.name,u])),l=Aie(r).reduce((u,d)=>(c[d?.name]&&u.push(c[d.name]),u),[]);return hO(l,u=>c[u.name].frecency,"desc")},(t,n,o)=>[gs(),t.preferences.insertUsage,...mm(e)(t,o)])),Gzt=At(e=>(t,n=null)=>gs().some(s=>Lz(t,s,n))?!0:zO(t,"core/block",n)&&ct(e($r)).getReusableBlocks().length>0),OW=At(e=>It((t,n=null)=>{if(!n)return;const o=gs().filter(s=>Lz(t,s,n));return zO(t,"core/block",n)&&ct(e($r)).getReusableBlocks().length>0&&o.push("core/block"),o},(t,n)=>[gs(),ct(e($r)).getReusableBlocks(),...mm(e)(t,n)])),Kzt=It((e,t=null)=>(Ke('wp.data.select( "core/block-editor" ).__experimentalGetAllowedBlocks',{alternative:'wp.data.select( "core/block-editor" ).getAllowedBlocks',since:"6.2",version:"6.4"}),OW(e,t)),(e,t)=>OW.getDependants(e,t));function ihe(e,t=null){var n;if(!t)return;const{defaultBlock:o,directInsert:r}=(n=e.blockListSettings[t])!==null&&n!==void 0?n:{};if(!(!o||!r))return o}function Yzt(e,t=null){return Ke('wp.data.select( "core/block-editor" ).__experimentalGetDirectInsertBlock',{alternative:'wp.data.select( "core/block-editor" ).getDirectInsertBlock',since:"6.3",version:"6.4"}),ihe(e,t)}const Zzt=At(e=>(t,n)=>{const o=ct(e($r)).getPatternBySlug(n);return o?$2e(o):null}),s7=e=>(t,n)=>[...Zj(e)(t),...mm(e)(t,n)],HZ=new WeakMap;function Qzt(e){let t=HZ.get(e);return t||(t={...e,get blocks(){return $2e(e).blocks}},HZ.set(e,t)),t}const Jzt=At(e=>It((t,n=null,o=V2e)=>{const{getAllPatterns:r}=ct(e($r)),s=r(),{allowedBlockTypes:i}=ym(t);return s.filter(({inserter:d=!0})=>!!d).map(Qzt).filter(d=>Yj(Bz(d),i)).filter(d=>Bz(d).every(({blockName:p})=>o[bO]!==!1?Om(t,p,n):t7(t,p,n)))},s7(e))),e3t=At(e=>It((t,n,o=null)=>{if(!n)return Z0;const r=e($r).__experimentalGetAllowedPatterns(o),s=Array.isArray(n)?n:[n],i=r.filter(c=>c?.blockTypes?.some?.(l=>s.includes(l)));return i.length===0?Z0:i},(t,n,o)=>s7(e)(t,o))),t3t=At(e=>(Ke('wp.data.select( "core/block-editor" ).__experimentalGetPatternsByBlockTypes',{alternative:'wp.data.select( "core/block-editor" ).getPatternsByBlockTypes',since:"6.2",version:"6.4"}),e($r).getPatternsByBlockTypes)),n3t=At(e=>It((t,n,o=null)=>{if(!n||n.some(({clientId:s,innerBlocks:i})=>i.length||p_(t,s)))return Z0;const r=Array.from(new Set(n.map(({name:s})=>s)));return e($r).getPatternsByBlockTypes(r,o)},(t,n,o)=>s7(e)(t,o)));function i7(e,t){return e.blockListSettings[t]}function ym(e){return e.settings}function o3t(e){return e.blocks.isPersistentChange}const r3t=It((e,t=[])=>t.reduce((n,o)=>e.blockListSettings[o]?{...n,[o]:e.blockListSettings[o]}:n,{}),e=>[e.blockListSettings]),s3t=At(e=>It((t,n)=>{Ke("wp.data.select( 'core/block-editor' ).__experimentalGetReusableBlockTitle",{since:"6.6",version:"6.8"});const o=ct(e($r)).getReusableBlocks().find(r=>r.id===n);return o?o.title?.raw:null},()=>[ct(e($r)).getReusableBlocks()]));function i3t(e){return e.blocks.isIgnoredChange}function a3t(e){return e.lastBlockAttributesChange}function a7(e){return ahe(e)==="navigation"}const ahe=At(e=>t=>{var n;return window?.__experimentalEditorWriteMode?(n=t.settings.editorTool)!==null&&n!==void 0?n:e(ht).get("core","editorTool"):"edit"});function c3t(){return Ke('wp.data.select( "core/block-editor" ).hasBlockMovingClientId',{since:"6.7",hint:"Block moving mode feature has been removed"}),!1}function l3t(e){return!!e.automaticChangeStatus}function u3t(e,t){return e.highlightedBlock===t}function p_(e,t){return!!e.blocks.controlledInnerBlocks[t]}const d3t=It((e,t)=>{if(!t.length)return null;const n=Mm(e);if(t.includes(As(e,n)))return n;const o=lp(e),r=d_(e,n||o[0],t);return r?r[r.length-1]:null},(e,t)=>[e.selection.selectionStart.clientId,e.selection.selectionEnd.clientId,t]);function p3t(e,t,n){const{lastBlockInserted:o}=e;return o.clientIds?.includes(t)&&o.source===n}function f3t(e,t){var n;return(n=e.blockVisibility?.[t])!==null&&n!==void 0?n:!0}function b3t(e){return e.hoveredBlockClientId}const h3t=It(e=>{const t=new Set(Object.keys(e.blockVisibility).filter(n=>e.blockVisibility[n]));return t.size===0?tzt:t},e=>[e.blockVisibility]);function che(e,t){if(up(e,t)!=="default")return!1;if(!rhe(e,t))return!0;if(I2e(e)){const r=fO(e);if(r){if(vs(e,r)?.includes(t))return!0}else if(t&&!n1(e,t))return!0}return(Et(As(e,t),"__experimentalDisableBlockOverlay",!1)?!1:p_(e,t))&&!Q2e(e,t)&&!J2e(e,t,!0)}function m3t(e,t){let n=e.blocks.parents.get(t);for(;n;){if(che(e,n))return!0;n=e.blocks.parents.get(n)}return!1}const up=At(e=>(t,n="")=>{n===null&&(n="");const o=a7(t);if(!o&&t.derivedBlockEditingModes?.has(n))return t.derivedBlockEditingModes.get(n);if(o&&t.derivedNavModeBlockEditingModes?.has(n))return t.derivedNavModeBlockEditingModes.get(n);const r=t.blockEditingModes.get(n);if(r)return r;if(n==="")return"default";const s=n1(t,n);if(ib(t,s)==="contentOnly"){const c=As(t,n),{hasContentRoleAttribute:l}=ct(e(kt));return l(c)?"contentOnly":"disabled"}return"default"}),g3t=At(e=>(t,n="")=>{const o=n||Mm(t);if(!o)return!1;const{getGroupingBlockName:r}=e(kt),s=Il(t,o),i=r();return s&&(s.name===i||on(s.name)?.transforms?.ungroup)&&!!s.innerBlocks.length&&n7(t,o)}),M3t=At(e=>(t,n=Z0)=>{const{getGroupingBlockName:o}=e(kt),r=o(),s=n?.length?n:zm(t),i=s?.length?n1(t,s[0]):void 0;return Om(t,r,i)&&s.length&&nhe(t,s)}),z3t=(e,t)=>(Ke("wp.data.select( 'core/block-editor' ).__unstableGetContentLockingParent",{since:"6.1",version:"6.7"}),B2e(e,t));function O3t(e){return Ke("wp.data.select( 'core/block-editor' ).__unstableGetTemporarilyEditingAsBlocks",{since:"6.1",version:"6.7"}),P2e(e)}function y3t(e){return Ke("wp.data.select( 'core/block-editor' ).__unstableGetTemporarilyEditingFocusModeToRevert",{since:"6.5",version:"6.7"}),j2e(e)}const A3t=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetActiveBlockIdByBlockNames:d3t,__experimentalGetAllowedBlocks:Kzt,__experimentalGetAllowedPatterns:Jzt,__experimentalGetBlockListSettingsForBlocks:r3t,__experimentalGetDirectInsertBlock:Yzt,__experimentalGetGlobalBlocksByName:izt,__experimentalGetLastBlockAttributeChanges:a3t,__experimentalGetParsedPattern:Zzt,__experimentalGetPatternTransformItems:n3t,__experimentalGetPatternsByBlockTypes:t3t,__experimentalGetReusableBlockTitle:s3t,__unstableGetBlockWithoutInnerBlocks:ozt,__unstableGetClientIdWithClientIdsTree:H2e,__unstableGetClientIdsTree:U2e,__unstableGetContentLockingParent:z3t,__unstableGetEditorMode:ahe,__unstableGetSelectedBlocksWithPartialSelection:Szt,__unstableGetTemporarilyEditingAsBlocks:O3t,__unstableGetTemporarilyEditingFocusModeToRevert:y3t,__unstableGetVisibleBlocks:h3t,__unstableHasActiveBlockOverlayActive:che,__unstableIsFullySelected:xzt,__unstableIsLastBlockChangeIgnored:i3t,__unstableIsSelectionCollapsed:wzt,__unstableIsSelectionMergeable:kzt,__unstableIsWithinBlockOverlay:m3t,__unstableSelectionHasUnmergeableBlock:_zt,areInnerBlocksControlled:p_,canEditBlock:rhe,canInsertBlockType:Om,canInsertBlocks:Fzt,canLockBlockType:Vzt,canMoveBlock:ohe,canMoveBlocks:$zt,canRemoveBlock:n7,canRemoveBlocks:nhe,didAutomaticChange:l3t,getAdjacentBlockClientId:Qj,getAllowedBlocks:OW,getBlock:Il,getBlockAttributes:gm,getBlockCount:czt,getBlockEditingMode:up,getBlockHierarchyRootClientId:bzt,getBlockIndex:Z2e,getBlockInsertionPoint:Pzt,getBlockListSettings:i7,getBlockMode:Ezt,getBlockName:As,getBlockNamesByClientId:azt,getBlockOrder:vs,getBlockParents:Id,getBlockParentsByBlockName:d_,getBlockRootClientId:n1,getBlockSelectionEnd:uzt,getBlockSelectionStart:lzt,getBlockTransformItems:Xzt,getBlocks:rzt,getBlocksByClientId:Ex,getBlocksByName:G2e,getClientIdsOfDescendants:X2e,getClientIdsWithDescendants:mO,getDirectInsertBlock:ihe,getDraggedBlockClientIds:Nzt,getFirstMultiSelectedBlockClientId:Jj,getGlobalBlockCount:szt,getHoveredBlockClientId:b3t,getInserterItems:Uzt,getLastMultiSelectedBlockClientId:K2e,getLowestCommonAncestorWithSelectedBlock:hzt,getMultiSelectedBlockClientIds:lp,getMultiSelectedBlocks:zzt,getMultiSelectedBlocksEndClientId:vzt,getMultiSelectedBlocksStartClientId:Azt,getNextBlockClientId:gzt,getPatternsByBlockTypes:e3t,getPreviousBlockClientId:mzt,getSelectedBlock:fzt,getSelectedBlockClientId:Mm,getSelectedBlockClientIds:zm,getSelectedBlockCount:dzt,getSelectedBlocksInitialCaretPosition:Mzt,getSelectionEnd:MO,getSelectionStart:gO,getSettings:ym,getTemplate:Dzt,getTemplateLock:ib,hasBlockMovingClientId:c3t,hasDraggedInnerBlock:ehe,hasInserterItems:Gzt,hasMultiSelection:qzt,hasSelectedBlock:pzt,hasSelectedInnerBlock:J2e,isAncestorBeingDragged:Bzt,isAncestorMultiSelected:yzt,isBlockBeingDragged:e7,isBlockHighlighted:u3t,isBlockInsertionPointVisible:jzt,isBlockMultiSelected:Y2e,isBlockSelected:Q2e,isBlockValid:nzt,isBlockVisible:f3t,isBlockWithinSelection:Czt,isCaretWithinFormattedText:Lzt,isDraggingBlocks:the,isFirstMultiSelectedBlock:Ozt,isGroupable:M3t,isLastBlockChangePersistent:o3t,isMultiSelecting:Rzt,isNavigationMode:a7,isSelectionEnabled:Tzt,isTyping:Wzt,isUngroupable:g3t,isValidTemplate:Izt,wasBlockJustInserted:p3t},Symbol.toStringTag,{value:"Module"})),v3t=e=>Array.isArray(e)?e:[e],x3t=["inserterMediaCategories","blockInspectorAnimation","mediaSideload"];function lhe(e,{stripExperimentalSettings:t=!1,reset:n=!1}={}){let o=e;Object.hasOwn(o,"__unstableIsPreviewMode")&&(Ke("__unstableIsPreviewMode argument in wp.data.dispatch('core/block-editor').updateSettings",{since:"6.8",alternative:"isPreviewMode"}),o={...o},o.isPreviewMode=o.__unstableIsPreviewMode,delete o.__unstableIsPreviewMode);let r=o;if(t&&f0.OS==="web"){r={};for(const s in o)x3t.includes(s)||(r[s]=o[s])}return{type:"UPDATE_SETTINGS",settings:r,reset:n}}function w3t(){return{type:"HIDE_BLOCK_INTERFACE"}}function _3t(){return{type:"SHOW_BLOCK_INTERFACE"}}const uhe=(e,t=!0,n=!1)=>({select:o,dispatch:r,registry:s})=>{if(!e||!e.length||(e=v3t(e),!o.canRemoveBlocks(e)))return;const c=!n&&o.getBlockRemovalRules();if(c){let u=function(b){const h=[],g=[...b];for(;g.length;){const{innerBlocks:z,...A}=g.shift();g.push(...z),h.push(A)}return h};var l=u;const d=e.map(o.getBlock),p=u(d);let f;for(const b of c)if(f=b.callback(p),f){r(k3t(e,t,f));return}}t&&r.selectPreviousBlock(e[0],t),s.batch(()=>{r({type:"REMOVE_BLOCKS",clientIds:e}),r(dhe())})},dhe=()=>({select:e,dispatch:t})=>{if(e.getBlockCount()>0)return;const{__unstableHasCustomAppender:o}=e.getSettings();o||t.insertDefaultBlock()};function k3t(e,t,n){return{type:"DISPLAY_BLOCK_REMOVAL_PROMPT",clientIds:e,selectPrevious:t,message:n}}function S3t(){return{type:"CLEAR_BLOCK_REMOVAL_PROMPT"}}function C3t(e=!1){return{type:"SET_BLOCK_REMOVAL_RULES",rules:e}}function q3t(e){return{type:"SET_OPENED_BLOCK_SETTINGS_MENU",clientId:e}}function R3t(e,t){return{type:"SET_STYLE_OVERRIDE",id:e,style:t}}function T3t(e){return{type:"DELETE_STYLE_OVERRIDE",id:e}}function E3t(e=null){return{type:"LAST_FOCUS",lastFocus:e}}function W3t(e){return({select:t,dispatch:n,registry:o})=>{const r=ct(o.select(Q)).getTemporarilyEditingFocusModeToRevert();n.__unstableMarkNextChangeAsNotPersistent(),n.updateBlockAttributes(e,{templateLock:"contentOnly"}),n.updateBlockListSettings(e,{...t.getBlockListSettings(e),templateLock:"contentOnly"}),n.updateSettings({focusMode:r}),n.__unstableSetTemporarilyEditingAsBlocks()}}function N3t(){return{type:"START_DRAGGING"}}function B3t(){return{type:"STOP_DRAGGING"}}function L3t(e){return{type:"SET_BLOCK_EXPANDED_IN_LIST_VIEW",clientId:e}}function P3t(e){return{type:"SET_INSERTION_POINT",value:e}}const j3t=e=>({select:t,dispatch:n})=>{n.selectBlock(e),n.__unstableMarkNextChangeAsNotPersistent(),n.updateBlockAttributes(e,{templateLock:void 0}),n.updateBlockListSettings(e,{...t.getBlockListSettings(e),templateLock:!1});const o=t.getSettings().focusMode;n.updateSettings({focusMode:!0}),n.__unstableSetTemporarilyEditingAsBlocks(e,o)},I3t=(e=100)=>({select:t,dispatch:n})=>{if(e!==100){const o=t.getBlockSelectionStart(),r=t.getSectionRootClientId();if(o){let s;if(r){const i=t.getBlockOrder(r);i?.includes(o)?s=o:s=t.getBlockParents(o).find(c=>i.includes(c))}else s=t.getBlockHierarchyRootClientId(o);s?n.selectBlock(s):n.clearSelectedBlock(),Yt(m("You are currently in zoom-out mode."))}}n({type:"SET_ZOOM_LEVEL",zoom:e})};function D3t(){return{type:"RESET_ZOOM_LEVEL"}}const phe=Object.freeze(Object.defineProperty({__proto__:null,__experimentalUpdateSettings:lhe,clearBlockRemovalPrompt:S3t,deleteStyleOverride:T3t,ensureDefaultBlock:dhe,expandBlock:L3t,hideBlockInterface:w3t,modifyContentLockBlock:j3t,privateRemoveBlocks:uhe,resetZoomLevel:D3t,setBlockRemovalRules:C3t,setInsertionPoint:P3t,setLastFocus:E3t,setOpenedBlockSettingsMenu:q3t,setStyleOverride:R3t,setZoomLevel:I3t,showBlockInterface:_3t,startDragging:N3t,stopDragging:B3t,stopEditingAsBlocks:W3t},Symbol.toStringTag,{value:"Module"})),F3t=e=>t=>(n={},o)=>{const r=o[e];if(r===void 0)return n;const s=t(n[r],o);return s===n[r]?n:{...n,[r]:s}},$3t=F3t("context")((e=[],t)=>{switch(t.type){case"CREATE_NOTICE":return[...e.filter(({id:n})=>n!==t.notice.id),t.notice];case"REMOVE_NOTICE":return e.filter(({id:n})=>n!==t.id);case"REMOVE_NOTICES":return e.filter(({id:n})=>!t.ids.includes(n));case"REMOVE_ALL_NOTICES":return e.filter(({type:n})=>n!==t.noticeType)}return e}),OO="global",V3t="info";let H3t=0;function yO(e=V3t,t,n={}){const{speak:o=!0,isDismissible:r=!0,context:s=OO,id:i=`${s}${++H3t}`,actions:c=[],type:l="default",__unstableHTML:u,icon:d=null,explicitDismiss:p=!1,onDismiss:f}=n;return t=String(t),{type:"CREATE_NOTICE",context:s,notice:{id:i,status:e,content:t,spokenMessage:o?t:null,__unstableHTML:u,isDismissible:r,actions:c,type:l,icon:d,explicitDismiss:p,onDismiss:f}}}function U3t(e,t){return yO("success",e,t)}function X3t(e,t){return yO("info",e,t)}function G3t(e,t){return yO("error",e,t)}function K3t(e,t){return yO("warning",e,t)}function Y3t(e,t=OO){return{type:"REMOVE_NOTICE",id:e,context:t}}function Z3t(e="default",t=OO){return{type:"REMOVE_ALL_NOTICES",noticeType:e,context:t}}function Q3t(e,t=OO){return{type:"REMOVE_NOTICES",ids:e,context:t}}const J3t=Object.freeze(Object.defineProperty({__proto__:null,createErrorNotice:G3t,createInfoNotice:X3t,createNotice:yO,createSuccessNotice:U3t,createWarningNotice:K3t,removeAllNotices:Z3t,removeNotice:Y3t,removeNotices:Q3t},Symbol.toStringTag,{value:"Module"})),eOt=[];function tOt(e,t=OO){return e[t]||eOt}const nOt=Object.freeze(Object.defineProperty({__proto__:null,getNotices:tOt},Symbol.toStringTag,{value:"Module"})),mt=x1("core/notices",{reducer:$3t,actions:J3t,selectors:nOt});Us(mt);const qf="";function c7(e){if(e)return Object.keys(e).find(t=>{const n=e[t];return(typeof n=="string"||n instanceof Xo)&&n.toString().indexOf(qf)!==-1})}function UZ(e){for(const[t,n]of Object.entries(e.attributes))if(n.source==="rich-text"||n.source==="html")return t}const vh=e=>Array.isArray(e)?e:[e],oOt=e=>({dispatch:t})=>{t({type:"RESET_BLOCKS",blocks:e}),t(fhe(e))},fhe=e=>({select:t,dispatch:n})=>{const o=t.getTemplate(),r=t.getTemplateLock(),s=!o||r!=="all"||nae(e,o),i=t.isValidTemplate();if(s!==i)return n.setTemplateValidity(s),s};function rOt(e,t,n){return{type:"RESET_SELECTION",selectionStart:e,selectionEnd:t,initialPosition:n}}function sOt(e){return Ke('wp.data.dispatch( "core/block-editor" ).receiveBlocks',{since:"5.9",alternative:"resetBlocks or insertBlocks"}),{type:"RECEIVE_BLOCKS",blocks:e}}function iOt(e,t,n=!1){return{type:"UPDATE_BLOCK_ATTRIBUTES",clientIds:vh(e),attributes:t,uniqueByBlock:n}}function aOt(e,t){return{type:"UPDATE_BLOCK",clientId:e,updates:t}}function cOt(e,t=0){return{type:"SELECT_BLOCK",initialPosition:t,clientId:e}}function lOt(e){return{type:"HOVER_BLOCK",clientId:e}}const uOt=(e,t=!1)=>({select:n,dispatch:o})=>{const r=n.getPreviousBlockClientId(e);if(r)o.selectBlock(r,-1);else if(t){const s=n.getBlockRootClientId(e);s&&o.selectBlock(s,-1)}},dOt=e=>({select:t,dispatch:n})=>{const o=t.getNextBlockClientId(e);o&&n.selectBlock(o)};function pOt(){return{type:"START_MULTI_SELECT"}}function fOt(){return{type:"STOP_MULTI_SELECT"}}const bOt=(e,t,n=0)=>({select:o,dispatch:r})=>{const s=o.getBlockRootClientId(e),i=o.getBlockRootClientId(t);if(s!==i)return;r({type:"MULTI_SELECT",start:e,end:t,initialPosition:n});const c=o.getSelectedBlockCount();Yt(xe(Dn("%s block selected.","%s blocks selected.",c),c),"assertive")};function hOt(){return{type:"CLEAR_SELECTED_BLOCK"}}function mOt(e=!0){return{type:"TOGGLE_SELECTION",isSelectionEnabled:e}}const bhe=(e,t,n,o=0,r)=>({select:s,dispatch:i,registry:c})=>{e=vh(e),t=vh(t);const l=s.getBlockRootClientId(e[0]);for(let u=0;u<t.length;u++){const d=t[u];if(!s.canInsertBlockType(d.name,l))return}c.batch(()=>{i({type:"REPLACE_BLOCKS",clientIds:e,blocks:t,time:Date.now(),indexToSelect:n,initialPosition:o,meta:r}),i.ensureDefaultBlock()})};function gOt(e,t){return bhe(e,t)}const hhe=e=>(t,n)=>({select:o,dispatch:r})=>{o.canMoveBlocks(t)&&r({type:e,clientIds:vh(t),rootClientId:n})},MOt=hhe("MOVE_BLOCKS_DOWN"),zOt=hhe("MOVE_BLOCKS_UP"),mhe=(e,t="",n="",o)=>({select:r,dispatch:s})=>{r.canMoveBlocks(e)&&(t!==n&&(!r.canRemoveBlocks(e)||!r.canInsertBlocks(e,n))||s({type:"MOVE_BLOCKS_TO_POSITION",fromRootClientId:t,toRootClientId:n,clientIds:e,index:o}))};function OOt(e,t="",n="",o){return mhe([e],t,n,o)}function yOt(e,t,n,o,r){return ghe([e],t,n,o,0,r)}const ghe=(e,t,n,o=!0,r=0,s)=>({select:i,dispatch:c})=>{r!==null&&typeof r=="object"&&(s=r,r=0,Ke("meta argument in wp.data.dispatch('core/block-editor')",{since:"5.8",hint:"The meta argument is now the 6th argument of the function"})),e=vh(e);const l=[];for(const u of e)i.canInsertBlockType(u.name,n)&&l.push(u);l.length&&c({type:"INSERT_BLOCKS",blocks:l,index:t,rootClientId:n,time:Date.now(),updateSelection:o,initialPosition:o?r:null,meta:s})};function AOt(e,t,n={}){const{__unstableWithInserter:o,operation:r,nearestSide:s}=n;return{type:"SHOW_INSERTION_POINT",rootClientId:e,index:t,__unstableWithInserter:o,operation:r,nearestSide:s}}const vOt=()=>({select:e,dispatch:t})=>{e.isBlockInsertionPointVisible()&&t({type:"HIDE_INSERTION_POINT"})};function xOt(e){return{type:"SET_TEMPLATE_VALIDITY",isValid:e}}const wOt=()=>({select:e,dispatch:t})=>{t({type:"SYNCHRONIZE_TEMPLATE"});const n=e.getBlocks(),o=e.getTemplate(),r=oz(n,o);t.resetBlocks(r)},_Ot=e=>({registry:t,select:n,dispatch:o})=>{const r=n.getSelectionStart(),s=n.getSelectionEnd();if(r.clientId===s.clientId)return;if(!r.attributeKey||!s.attributeKey||typeof r.offset>"u"||typeof s.offset>"u")return!1;const i=n.getBlockRootClientId(r.clientId),c=n.getBlockRootClientId(s.clientId);if(i!==c)return;const l=n.getBlockOrder(i),u=l.indexOf(r.clientId),d=l.indexOf(s.clientId);let p,f;u>d?(p=s,f=r):(p=r,f=s);const b=e?f:p,h=n.getBlock(b.clientId),g=on(h.name);if(!g.merge)return;const z=p,A=f,_=n.getBlock(z.clientId),v=n.getBlock(A.clientId),M=_.attributes[z.attributeKey],y=v.attributes[A.attributeKey];let k=eo({html:M}),S=eo({html:y});k=pa(k,z.offset,k.text.length),S=E0(S,qf,0,A.offset);const C=jo(_,{[z.attributeKey]:T0({value:k})}),R=jo(v,{[A.attributeKey]:T0({value:S})}),T=e?C:R,E=_.name===v.name?[T]:Kr(T,g.name);if(!E||!E.length)return;let B;if(e){const V=E.pop();B=g.merge(V.attributes,R.attributes)}else{const V=E.shift();B=g.merge(C.attributes,V.attributes)}const N=c7(B),j=B[N],I=eo({html:j}),P=I.text.indexOf(qf),$=pa(I,P,P+1),F=T0({value:$});B[N]=F;const X=n.getSelectedBlockClientIds(),Z=[...e?E:[],{...h,attributes:{...h.attributes,...B}},...e?[]:E];t.batch(()=>{o.selectionChange(h.clientId,N,P,P),o.replaceBlocks(X,Z,0,n.getSelectedBlocksInitialCaretPosition())})},kOt=(e=[])=>({registry:t,select:n,dispatch:o})=>{const r=n.getSelectionStart(),s=n.getSelectionEnd(),i=n.getBlockRootClientId(r.clientId),c=n.getBlockRootClientId(s.clientId);if(i!==c)return;const l=n.getBlockOrder(i),u=l.indexOf(r.clientId),d=l.indexOf(s.clientId);let p,f;u>d?(p=s,f=r):(p=r,f=s);const b=p,h=f,g=n.getBlock(b.clientId),z=n.getBlock(h.clientId),A=on(g.name),_=on(z.name),v=typeof b.attributeKey=="string"?b.attributeKey:UZ(A),M=typeof h.attributeKey=="string"?h.attributeKey:UZ(_),y=n.getBlockAttributes(b.clientId);if(y?.metadata?.bindings?.[v]){if(e.length){const{createWarningNotice:te}=t.dispatch(mt);te(m("Blocks can't be inserted into other blocks with bindings"),{type:"snackbar"});return}o.insertAfterBlock(b.clientId);return}if(!v||!M||typeof r.offset>"u"||typeof s.offset>"u")return;if(b.clientId===h.clientId&&v===M&&b.offset===h.offset){if(e.length){if(El(g)){o.replaceBlocks([b.clientId],e,e.length-1,-1);return}}else if(!n.getBlockOrder(b.clientId).length){let te=function(){const ue=Mr();return n.canInsertBlockType(ue,i)?Ee(ue):Ee(n.getBlockName(b.clientId))};var ee=te;const J=y[v].length;if(b.offset===0&&J){o.insertBlocks([te()],n.getBlockIndex(b.clientId),i,!1);return}if(b.offset===J){o.insertBlocks([te()],n.getBlockIndex(b.clientId)+1,i);return}}}const S=g.attributes[v],C=z.attributes[M];let R=eo({html:S}),T=eo({html:C});R=pa(R,b.offset,R.text.length),T=pa(T,0,h.offset);let E={...g,innerBlocks:g.clientId===z.clientId?[]:g.innerBlocks,attributes:{...g.attributes,[v]:T0({value:R})}},B={...z,clientId:g.clientId===z.clientId?Ee(z.name).clientId:z.clientId,attributes:{...z.attributes,[M]:T0({value:T})}};const N=Mr();if(g.clientId===z.clientId&&N&&B.name!==N&&n.canInsertBlockType(N,i)){const te=Kr(B,N);te?.length===1&&(B=te[0])}if(!e.length){o.replaceBlocks(n.getSelectedBlockClientIds(),[E,B]);return}let j;const I=[],P=[...e],$=P.shift(),F=on(E.name),X=F.merge&&$.name===F.name?[$]:Kr($,F.name);if(X?.length){const te=X.shift();E={...E,attributes:{...E.attributes,...F.merge(E.attributes,te.attributes)}},I.push(E),j={clientId:E.clientId,attributeKey:v,offset:eo({html:E.attributes[v]}).text.length},P.unshift(...X)}else E2(E)||I.push(E),I.push($);const Z=P.pop(),V=on(B.name);if(P.length&&I.push(...P),Z){const te=V.merge&&V.name===Z.name?[Z]:Kr(Z,V.name);if(te?.length){const J=te.pop();I.push({...B,attributes:{...B.attributes,...V.merge(J.attributes,B.attributes)}}),I.push(...te),j={clientId:B.clientId,attributeKey:M,offset:eo({html:J.attributes[M]}).text.length}}else I.push(Z),E2(B)||I.push(B)}else E2(B)||I.push(B);t.batch(()=>{o.replaceBlocks(n.getSelectedBlockClientIds(),I,I.length-1,0),j&&o.selectionChange(j.clientId,j.attributeKey,j.offset,j.offset)})},SOt=()=>({select:e,dispatch:t})=>{const n=e.getSelectionStart(),o=e.getSelectionEnd();t.selectionChange({start:{clientId:n.clientId},end:{clientId:o.clientId}})},COt=(e,t)=>({registry:n,select:o,dispatch:r})=>{const s=e,i=t,c=o.getBlock(s),l=on(c.name);if(!l)return;const u=o.getBlock(i);if(!l.merge&&An(c.name,"__experimentalOnMerge")){const y=Kr(u,l.name);if(y?.length!==1){r.selectBlock(c.clientId);return}const[k]=y;if(k.innerBlocks.length<1){r.selectBlock(c.clientId);return}n.batch(()=>{r.insertBlocks(k.innerBlocks,void 0,s),r.removeBlock(i),r.selectBlock(k.innerBlocks[0].clientId);const S=o.getNextBlockClientId(s);if(S&&o.getBlockName(s)===o.getBlockName(S)){const C=o.getBlockAttributes(s),R=o.getBlockAttributes(S);Object.keys(C).every(T=>C[T]===R[T])&&(r.moveBlocksToPosition(o.getBlockOrder(S),S,s),r.removeBlock(S,!1))}});return}if(El(c)){r.removeBlock(s,o.isBlockSelected(s));return}if(El(u)){r.removeBlock(i,o.isBlockSelected(i));return}if(!l.merge){r.selectBlock(c.clientId);return}const d=on(u.name),{clientId:p,attributeKey:f,offset:b}=o.getSelectionStart(),g=(p===s?l:d).attributes[f],z=(p===s||p===i)&&f!==void 0&&b!==void 0&&!!g;g||(typeof f=="number"?window.console.error(`RichText needs an identifier prop that is the block attribute key of the attribute it controls. Its type is expected to be a string, but was ${typeof f}`):window.console.error("The RichText identifier prop does not match any attributes defined by the block."));const A=jo(c),_=jo(u);if(z){const y=p===s?A:_,k=y.attributes[f],S=E0(eo({html:k}),qf,b,b);y.attributes[f]=T0({value:S})}const v=c.name===u.name?[_]:Kr(_,c.name);if(!v||!v.length)return;const M=l.merge(A.attributes,v[0].attributes);if(z){const y=c7(M),k=M[y],S=eo({html:k}),C=S.text.indexOf(qf),R=pa(S,C,C+1),T=T0({value:R});M[y]=T,r.selectionChange(c.clientId,y,C,C)}r.replaceBlocks([c.clientId,u.clientId],[{...c,attributes:{...c.attributes,...M}},...v.slice(1)],0)},Mhe=(e,t=!0)=>uhe(e,t);function qOt(e,t){return Mhe([e],t)}function ROt(e,t,n=!1,o=0){return{type:"REPLACE_INNER_BLOCKS",rootClientId:e,blocks:t,updateSelection:n,initialPosition:n?o:null,time:Date.now()}}function TOt(e){return{type:"TOGGLE_BLOCK_MODE",clientId:e}}function EOt(){return{type:"START_TYPING"}}function WOt(){return{type:"STOP_TYPING"}}function NOt(e=[]){return{type:"START_DRAGGING_BLOCKS",clientIds:e}}function BOt(){return{type:"STOP_DRAGGING_BLOCKS"}}function LOt(){return Ke('wp.data.dispatch( "core/block-editor" ).enterFormattedText',{since:"6.1",version:"6.3"}),{type:"DO_NOTHING"}}function POt(){return Ke('wp.data.dispatch( "core/block-editor" ).exitFormattedText',{since:"6.1",version:"6.3"}),{type:"DO_NOTHING"}}function jOt(e,t,n,o){return typeof e=="string"?{type:"SELECTION_CHANGE",clientId:e,attributeKey:t,startOffset:n,endOffset:o}:{type:"SELECTION_CHANGE",...e}}const IOt=(e,t,n)=>({dispatch:o})=>{const r=Mr();if(!r)return;const s=Ee(r,e);return o.insertBlock(s,n,t)};function DOt(e,t){return{type:"UPDATE_BLOCK_LIST_SETTINGS",clientId:e,settings:t}}function FOt(e){return lhe(e,{stripExperimentalSettings:!0})}function $Ot(e,t){return{type:"SAVE_REUSABLE_BLOCK_SUCCESS",id:e,updatedId:t}}function VOt(){return{type:"MARK_LAST_CHANGE_AS_PERSISTENT"}}function HOt(){return{type:"MARK_NEXT_CHANGE_AS_NOT_PERSISTENT"}}const UOt=()=>({dispatch:e})=>{e({type:"MARK_AUTOMATIC_CHANGE"});const{requestIdleCallback:t=n=>setTimeout(n,100)}=window;t(()=>{e({type:"MARK_AUTOMATIC_CHANGE_FINAL"})})},XOt=(e=!0)=>({dispatch:t})=>{t.__unstableSetEditorMode(e?"navigation":"edit")},GOt=e=>({registry:t})=>{t.dispatch(ht).set("core","editorTool",e),e==="navigation"?Yt(m("You are currently in Write mode.")):e==="edit"&&Yt(m("You are currently in Design mode."))};function KOt(){return Ke('wp.data.dispatch( "core/block-editor" ).setBlockMovingClientId',{since:"6.7",hint:"Block moving mode feature has been removed"}),{type:"DO_NOTHING"}}const YOt=(e,t=!0)=>({select:n,dispatch:o})=>{if(!e||!e.length)return;const r=n.getBlocksByClientId(e);if(r.some(d=>!d)||r.map(d=>d.name).some(d=>!Et(d,"multiple",!0)))return;const i=n.getBlockRootClientId(e[0]),c=vh(e),l=n.getBlockIndex(c[c.length-1]),u=r.map(d=>Oie(d));return o.insertBlocks(u,l+1,i,t),u.length>1&&t&&o.multiSelect(u[0].clientId,u[u.length-1].clientId),u.map(d=>d.clientId)},ZOt=e=>({select:t,dispatch:n})=>{if(!e)return;const o=t.getBlockRootClientId(e);if(t.getTemplateLock(o))return;const s=t.getBlockIndex(e),i=o?t.getDirectInsertBlock(o):null;if(!i)return n.insertDefaultBlock({},o,s);const c={};if(i.attributesToCopy){const u=t.getBlockAttributes(e);i.attributesToCopy.forEach(d=>{u[d]&&(c[d]=u[d])})}const l=Ee(i.name,{...i.attributes,...c});return n.insertBlock(l,s,o)},QOt=e=>({select:t,dispatch:n})=>{if(!e)return;const o=t.getBlockRootClientId(e);if(t.getTemplateLock(o))return;const s=t.getBlockIndex(e),i=o?t.getDirectInsertBlock(o):null;if(!i)return n.insertDefaultBlock({},o,s+1);const c={};if(i.attributesToCopy){const u=t.getBlockAttributes(e);i.attributesToCopy.forEach(d=>{u[d]&&(c[d]=u[d])})}const l=Ee(i.name,{...i.attributes,...c});return n.insertBlock(l,s+1,o)};function yW(e,t){return{type:"TOGGLE_BLOCK_HIGHLIGHT",clientId:e,isHighlighted:t}}const JOt=e=>async({dispatch:t})=>{t(yW(e,!0)),await new Promise(n=>setTimeout(n,150)),t(yW(e,!1))};function eyt(e,t){return{type:"SET_HAS_CONTROLLED_INNER_BLOCKS",hasControlledInnerBlocks:t,clientId:e}}function tyt(e){return{type:"SET_BLOCK_VISIBILITY",updates:e}}function nyt(e,t){return{type:"SET_TEMPORARILY_EDITING_AS_BLOCKS",temporarilyEditingAsBlocks:e,focusModeToRevert:t}}const oyt=e=>({select:t,dispatch:n})=>{if(!e||typeof e!="object"){console.error("Category should be an `InserterMediaCategory` object.");return}if(!e.name){console.error("Category should have a `name` that should be unique among all media categories.");return}if(!e.labels?.name){console.error("Category should have a `labels.name`.");return}if(!["image","audio","video"].includes(e.mediaType)){console.error("Category should have `mediaType` property that is one of `image|audio|video`.");return}if(!e.fetch||typeof e.fetch!="function"){console.error("Category should have a `fetch` function defined with the following signature `(InserterMediaRequest) => Promise<InserterMediaItem[]>`.");return}const o=t.getRegisteredInserterMediaCategories();if(o.some(({name:r})=>r===e.name)){console.error(`A category is already registered with the same name: "${e.name}".`);return}if(o.some(({labels:{name:r}={}})=>r===e.labels?.name)){console.error(`A category is already registered with the same labels.name: "${e.labels.name}".`);return}n({type:"REGISTER_INSERTER_MEDIA_CATEGORY",category:{...e,isExternalResource:!0}})};function ryt(e="",t){return{type:"SET_BLOCK_EDITING_MODE",clientId:e,mode:t}}function syt(e=""){return{type:"UNSET_BLOCK_EDITING_MODE",clientId:e}}const iyt=Object.freeze(Object.defineProperty({__proto__:null,__unstableDeleteSelection:_Ot,__unstableExpandSelection:SOt,__unstableMarkAutomaticChange:UOt,__unstableMarkLastChangeAsPersistent:VOt,__unstableMarkNextChangeAsNotPersistent:HOt,__unstableSaveReusableBlock:$Ot,__unstableSetEditorMode:GOt,__unstableSetTemporarilyEditingAsBlocks:nyt,__unstableSplitSelection:kOt,clearSelectedBlock:hOt,duplicateBlocks:YOt,enterFormattedText:LOt,exitFormattedText:POt,flashBlock:JOt,hideInsertionPoint:vOt,hoverBlock:lOt,insertAfterBlock:QOt,insertBeforeBlock:ZOt,insertBlock:yOt,insertBlocks:ghe,insertDefaultBlock:IOt,mergeBlocks:COt,moveBlockToPosition:OOt,moveBlocksDown:MOt,moveBlocksToPosition:mhe,moveBlocksUp:zOt,multiSelect:bOt,receiveBlocks:sOt,registerInserterMediaCategory:oyt,removeBlock:qOt,removeBlocks:Mhe,replaceBlock:gOt,replaceBlocks:bhe,replaceInnerBlocks:ROt,resetBlocks:oOt,resetSelection:rOt,selectBlock:cOt,selectNextBlock:dOt,selectPreviousBlock:uOt,selectionChange:jOt,setBlockEditingMode:ryt,setBlockMovingClientId:KOt,setBlockVisibility:tyt,setHasControlledInnerBlocks:eyt,setNavigationMode:XOt,setTemplateValidity:xOt,showInsertionPoint:AOt,startDraggingBlocks:NOt,startMultiSelect:pOt,startTyping:EOt,stopDraggingBlocks:BOt,stopMultiSelect:fOt,stopTyping:WOt,synchronizeTemplate:wOt,toggleBlockHighlight:yW,toggleBlockMode:TOt,toggleSelection:mOt,unsetBlockEditingMode:syt,updateBlock:aOt,updateBlockAttributes:iOt,updateBlockListSettings:DOt,updateSettings:FOt,validateBlocksToTemplate:fhe},Symbol.toStringTag,{value:"Module"})),f_={reducer:tMt,selectors:A3t,actions:iyt},Q=x1($r,{...f_,persist:["preferences"]}),zhe=QCe($r,{...f_,persist:["preferences"]});ct(zhe).registerPrivateActions(phe);ct(zhe).registerPrivateSelectors(F2e);ct(Q).registerPrivateActions(phe);ct(Q).registerPrivateSelectors(F2e);const ayt="__default",Ohe="core/pattern-overrides",b_={"core/paragraph":["content"],"core/heading":["content"],"core/image":["id","url","title","alt"],"core/button":["url","text","linkTarget","rel"]};function rq(e){return!e||Object.keys(e).length===0}function l7(e){return e in b_}function AW(e,t){return l7(e)&&b_[e].includes(t)}function cyt(e){return b_[e]}function yhe(e){return e?.[ayt]?.source===Ohe}function lyt(e,t){if(yhe(t)){const n=b_[e],o={};for(const r of n){const s=t[r]?t[r]:{source:Ohe};o[r]=s}return o}return t}function h_(e){const{clientId:t}=j0(),n=t,{updateBlockAttributes:o}=Oe(Q),{getBlockAttributes:r}=Fn().select(Q);return{updateBlockBindings:c=>{const{metadata:{bindings:l,...u}={}}=r(n),d={...l};Object.entries(c).forEach(([f,b])=>{if(!b&&d[f]){delete d[f];return}d[f]=b});const p={...u,bindings:d};rq(p.bindings)&&delete p.bindings,o(n,{metadata:rq(p)?void 0:p})},removeAllBlockBindings:()=>{const{metadata:{bindings:c,...l}={}}=r(n);o(n,{metadata:rq(l)?void 0:l})}}}const uyt={},dyt=e=>{const{name:t}=e,n=on(t);if(!n)return null;const o=n.edit||n.save;return a.jsx(o,{...e})},XZ=ap("editor.BlockEdit")(dyt),pyt=e=>{const{name:t,clientId:n,attributes:o,setAttributes:r}=e,s=Fn(),i=on(t),c=x.useContext(Cf),l=G(z=>ct(z(kt)).getAllBlockBindingsSources(),[]),{blockBindings:u,context:d,hasPatternOverrides:p}=x.useMemo(()=>{const z=i?.usesContext?Object.fromEntries(Object.entries(c).filter(([A])=>i.usesContext.includes(A))):uyt;return o?.metadata?.bindings&&Object.values(o?.metadata?.bindings||{}).forEach(A=>{l[A?.source]?.usesContext?.forEach(_=>{z[_]=c[_]})}),{blockBindings:lyt(t,o?.metadata?.bindings),context:z,hasPatternOverrides:yhe(o?.metadata?.bindings)}},[t,i?.usesContext,c,o?.metadata?.bindings,l]),f=G(z=>{if(!u)return o;const A={},_=new Map;for(const[v,M]of Object.entries(u)){const{source:y,args:k}=M,S=l[y];!S||!AW(t,v)||_.set(S,{..._.get(S),[v]:{args:k}})}if(_.size)for(const[v,M]of _){let y={};v.getValues?y=v.getValues({select:z,context:d,clientId:n,bindings:M}):Object.keys(M).forEach(k=>{y[k]=v.label});for(const[k,S]of Object.entries(y))k==="url"&&(!S||!Gj(S))?A[k]=null:A[k]=S}return{...o,...A}},[o,u,n,d,t,l]),b=x.useCallback(z=>{if(!u){r(z);return}s.batch(()=>{const A={...z},_=new Map;for(const[M,y]of Object.entries(A)){if(!u[M]||!AW(t,M))continue;const k=u[M],S=l[k?.source];S?.setValues&&(_.set(S,{..._.get(S),[M]:{args:k.args,newValue:y}}),delete A[M])}if(_.size)for(const[M,y]of _)M.setValues({select:s.select,dispatch:s.dispatch,context:d,clientId:n,bindings:y});const v=!!d["pattern/overrides"];!(p&&v)&&Object.keys(A).length&&(p&&(delete A.caption,delete A.href),r(A))})},[u,n,d,p,r,l,t,s]);if(!i)return null;if(i.apiVersion>1)return a.jsx(XZ,{...e,attributes:f,context:d,setAttributes:b});const h=Et(i,"className",!0)?Y4(t):null,g=oe(h,o?.className,e.className);return a.jsx(XZ,{...e,attributes:f,className:g,context:d,setAttributes:b})};function Er({className:e,actions:t,children:n,secondaryActions:o}){return a.jsx("div",{style:{display:"contents",all:"initial"},children:a.jsx("div",{className:oe(e,"block-editor-warning"),children:a.jsxs("div",{className:"block-editor-warning__contents",children:[a.jsx("p",{className:"block-editor-warning__message",children:n}),(t?.length>0||o)&&a.jsxs("div",{className:"block-editor-warning__actions",children:[t?.length>0&&t.map((r,s)=>a.jsx("span",{className:"block-editor-warning__action",children:r},s)),o&&a.jsx(c0,{className:"block-editor-warning__secondary",icon:Wc,label:m("More options"),popoverProps:{position:"bottom left",className:"block-editor-warning__dropdown"},noIcons:!0,children:()=>a.jsx(Cn,{children:o.map((r,s)=>a.jsx(Ct,{onClick:r.onClick,children:r.title},s))})})]})]})})})}function fyt({originalBlockClientId:e,name:t,onReplace:n}){const{selectBlock:o}=Oe(Q),r=on(t);return a.jsxs(Er,{actions:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>o(e),children:m("Find original")},"find-original"),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>n([]),children:m("Remove")},"remove")],children:[a.jsxs("strong",{children:[r?.title,": "]}),m("This block can only be used once.")]})}const Pz=x.createContext({});function byt({mayDisplayControls:e,mayDisplayParentControls:t,blockEditingMode:n,isPreviewMode:o,...r}){const{name:s,isSelected:i,clientId:c,attributes:l={},__unstableLayoutClassNames:u}=r,{layout:d=null,metadata:p={}}=l,{bindings:f}=p,b=Et(s,"layout",!1)||Et(s,"__experimentalLayout",!1),{originalBlockClientId:h}=x.useContext(Pz);return a.jsxs(lae,{value:x.useMemo(()=>({name:s,isSelected:i,clientId:c,layout:b?d:null,__unstableLayoutClassNames:u,[nw]:e,[YB]:t,[sae]:n,[ZB]:f,[iae]:o}),[s,i,c,b,d,u,e,t,n,f,o]),children:[a.jsx(pyt,{...r}),h&&a.jsx(fyt,{originalBlockClientId:h,name:s,onReplace:r.onReplace})]})}function Un(...e){const{clientId:t=null}=j0();return G(n=>ct(n(Q)).getBlockSettings(t,...e),[t,...e])}const{kebabCase:hyt}=ct(tr),GZ=([e,...t])=>e.toUpperCase()+t.join(""),myt=()=>Or(e=>t=>{const[n,o,r]=Un("color.palette.custom","color.palette.theme","color.palette.default"),s=x.useMemo(()=>[...n||[],...o||[],...r||[]],[n,o,r]);return a.jsx(e,{...t,colors:s})},"withEditorColorPalette");function gyt(e,t){const n=e.reduce((o,r)=>({...o,...typeof r=="string"?{[r]:hyt(r)}:r}),{});return Co([t,o=>class extends x.Component{constructor(r){super(r),this.setters=this.createSetters(),this.colorUtils={getMostReadableColor:this.getMostReadableColor.bind(this)},this.state={}}getMostReadableColor(r){const{colors:s}=this.props;return sgt(s,r)}createSetters(){return Object.keys(n).reduce((r,s)=>{const i=GZ(s),c=`custom${i}`;return r[`set${i}`]=this.createSetColor(s,c),r},{})}createSetColor(r,s){return i=>{const c=_2e(this.props.colors,i);this.props.setAttributes({[r]:c&&c.slug?c.slug:void 0,[s]:c&&c.slug?void 0:i})}}static getDerivedStateFromProps({attributes:r,colors:s},i){return Object.entries(n).reduce((c,[l,u])=>{const d=Sf(s,r[l],r[`custom${GZ(l)}`]),p=i[l];return p?.color===d.color&&p?c[l]=p:c[l]={...d,class:Pt(u,d.slug)},c},{})}render(){return a.jsx(o,{...this.props,colors:void 0,...this.state,...this.setters,colorUtils:this.colorUtils})}}])}function AO(...e){const t=myt();return Or(gyt(e,t),"withColors")}function R1(e){if(e)return`has-${e}-gradient-background`}function Ahe(e,t){const n=e?.find(o=>o.slug===t);return n&&n.gradient}function Myt(e,t){return e?.find(o=>o.gradient===t)}function zyt(e,t){const n=Myt(e,t);return n&&n.slug}function m_({gradientAttribute:e="gradient",customGradientAttribute:t="customGradient"}={}){const{clientId:n}=j0(),[o,r,s]=Un("color.gradients.custom","color.gradients.theme","color.gradients.default"),i=x.useMemo(()=>[...o||[],...r||[],...s||[]],[o,r,s]),{gradient:c,customGradient:l}=G(b=>{const{getBlockAttributes:h}=b(Q),g=h(n)||{};return{customGradient:g[t],gradient:g[e]}},[n,e,t]),{updateBlockAttributes:u}=Oe(Q),d=x.useCallback(b=>{const h=zyt(i,b);if(h){u(n,{[e]:h,[t]:void 0});return}u(n,{[e]:void 0,[t]:b})},[i,n,u]),p=R1(c);let f;return c?f=Ahe(i,c):f=l,{gradientClass:p,gradientValue:f,setGradient:d}}const{kebabCase:Oyt}=ct(tr),yyt=(e,t,n)=>{if(t){const o=e?.find(({slug:r})=>r===t);if(o)return o}return{size:n}};function Wx(e){if(e)return`has-${Oyt(e)}-font-size`}const Ayt="1600px",vyt="320px",xyt=1,wyt=.25,_yt=.75,kyt="14px";function Syt({minimumFontSize:e,maximumFontSize:t,fontSize:n,minimumViewportWidth:o=vyt,maximumViewportWidth:r=Ayt,scaleFactor:s=xyt,minimumFontSizeLimit:i}){if(i=sl(i)?i:kyt,n){const v=sl(n);if(!v?.unit)return null;const M=sl(i,{coerceTo:v.unit});if(M?.value&&!e&&!t&&v?.value<=M?.value)return null;if(t||(t=`${v.value}${v.unit}`),!e){const y=v.unit==="px"?v.value:v.value*16,k=Math.min(Math.max(1-.075*Math.log2(y),wyt),_yt),S=iM(v.value*k,3);M?.value&&S<M?.value?e=`${M.value}${M.unit}`:e=`${S}${v.unit}`}}const c=sl(e),l=c?.unit||"rem",u=sl(t,{coerceTo:l});if(!c||!u)return null;const d=sl(e,{coerceTo:"rem"}),p=sl(r,{coerceTo:l}),f=sl(o,{coerceTo:l});if(!p||!f||!d)return null;const b=p.value-f.value;if(!b)return null;const h=iM(f.value/100,3),g=iM(h,3)+l,z=100*((u.value-c.value)/b),A=iM((z||1)*s,3),_=`${d.value}${d.unit} + ((1vw - ${g}) * ${A})`;return`clamp(${e}, ${_}, ${t})`}function sl(e,t={}){if(typeof e!="string"&&typeof e!="number")return null;isFinite(e)&&(e=`${e}px`);const{coerceTo:n,rootSizeValue:o,acceptableUnits:r}={coerceTo:"",rootSizeValue:16,acceptableUnits:["rem","px","em"],...t},s=r?.join("|"),i=new RegExp(`^(\\d*\\.?\\d+)(${s}){1,1}$`),c=e.match(i);if(!c||c.length<3)return null;let[,l,u]=c,d=parseFloat(l);return n==="px"&&(u==="em"||u==="rem")&&(d=d*o,u=n),u==="px"&&(n==="em"||n==="rem")&&(d=d/o,u=n),(n==="em"||n==="rem")&&(u==="em"||u==="rem")&&(u=n),{value:iM(d,3),unit:u}}function iM(e,t=3){const n=Math.pow(10,t);return Number.isFinite(e)?parseFloat(Math.round(e*n)/n):void 0}const Cyt=[{icon:$3,title:m("Align text left"),align:"left"},{icon:qw,title:m("Align text center"),align:"center"},{icon:V3,title:m("Align text right"),align:"right"}],qyt={placement:"bottom-start"};function vhe({value:e,onChange:t,alignmentControls:n=Cyt,label:o=m("Align text"),description:r=m("Change text alignment"),isCollapsed:s=!0,isToolbar:i}){function c(f){return()=>t(e===f?void 0:f)}const l=n.find(f=>f.align===e);function u(){return l?l.icon:jt()?V3:$3}const d=i?Wn:Lc,p=i?{isCollapsed:s}:{toggleProps:{description:r},popoverProps:qyt};return a.jsx(d,{icon:u(),label:o,controls:n.map(f=>{const{align:b}=f;return{...f,isActive:e===b,role:s?"menuitemradio":void 0,onClick:c(b)}}),...p})}const nr=e=>a.jsx(vhe,{...e,isToolbar:!1}),jz=e=>a.jsx(vhe,{...e,isToolbar:!0}),Ryt=e=>e.name||"",Tyt=e=>e.title,Eyt=e=>e.description||"",Wyt=e=>e.keywords||[],Nyt=e=>e.category,Byt=()=>null,Lyt=[/([\p{Ll}\p{Lo}\p{N}])([\p{Lu}\p{Lt}])/gu,/([\p{Lu}\p{Lt}])([\p{Lu}\p{Lt}][\p{Ll}\p{Lo}])/gu],Pyt=/(\p{C}|\p{P}|\p{S})+/giu,sq=new Map,iq=new Map;function u7(e=""){if(sq.has(e))return sq.get(e);const t=y5(e,{splitRegexp:Lyt,stripRegexp:Pyt}).split(" ").filter(Boolean);return sq.set(e,t),t}function Nx(e=""){if(iq.has(e))return iq.get(e);let t=ms(e);return t=t.replace(/^\//,""),t=t.toLowerCase(),iq.set(e,t),t}const g_=(e="")=>u7(Nx(e)),jyt=(e,t)=>e.filter(n=>!g_(t).some(o=>o.includes(n))),xhe=(e,t,n,o)=>g_(o).length===0?e:d7(e,o,{getCategory:i=>t.find(({slug:c})=>c===i.category)?.title,getCollection:i=>n[i.name.split("/")[0]]?.title}),d7=(e=[],t="",n={})=>{if(g_(t).length===0)return e;const r=e.map(s=>[s,Iyt(s,t,n)]).filter(([,s])=>s>0);return r.sort(([,s],[,i])=>i-s),r.map(([s])=>s)};function Iyt(e,t,n={}){const{getName:o=Ryt,getTitle:r=Tyt,getDescription:s=Eyt,getKeywords:i=Wyt,getCategory:c=Nyt,getCollection:l=Byt}=n,u=o(e),d=r(e),p=s(e),f=i(e),b=c(e),h=l(e),g=Nx(t),z=Nx(d);let A=0;if(g===z)A+=30;else if(z.startsWith(g))A+=20;else{const _=[u,d,p,...f,b,h].join(" "),v=u7(g);jyt(v,_).length===0&&(A+=10)}if(A!==0&&u.startsWith("core/")){const _=u!==e.id;A+=_?1:2}return A}const M_=(e,t,n)=>{const o=x.useMemo(()=>({[bO]:!!n}),[n]),[r]=G(d=>[d(Q).getInserterItems(e,o)],[e,o]),{getClosestAllowedInsertionPoint:s}=ct(G(Q)),{createErrorNotice:i}=Oe(mt),[c,l]=G(d=>{const{getCategories:p,getCollections:f}=d(kt);return[p(),f()]},[]),u=x.useCallback(({name:d,initialAttributes:p,innerBlocks:f,syncStatus:b,content:h},g)=>{const z=s(d,e);if(z===null){var A;const v=(A=on(d)?.title)!==null&&A!==void 0?A:d;i(xe(m(`Block "%s" can't be inserted.`),v),{type:"snackbar",id:"inserter-notice"});return}const _=b==="unsynced"?Ko(h,{__unstableSkipMigrationLogs:!0}):Ee(d,p,Ad(f));t(_,void 0,g,z)},[s,e,t,i]);return[r,c,l,u]};function Dyt({icon:e,showColors:t=!1,className:n,context:o}){e?.src==="block-default"&&(e={src:Tw});const r=a.jsx(qo,{icon:e&&e.src?e.src:e,context:o}),s=t?{backgroundColor:e&&e.background,color:e&&e.foreground}:{};return a.jsx("span",{style:s,className:oe("block-editor-block-icon",n,{"has-colors":t}),children:r})}const Zn=x.memo(Dyt),whe=(e,t)=>(t&&e.sort(({id:n},{id:o})=>{let r=t.indexOf(n),s=t.indexOf(o);return r<0&&(r=t.length),s<0&&(s=t.length),r-s}),e),Fyt=()=>{},$yt=9;function Vyt(){return{name:"blocks",className:"block-editor-autocompleters__block",triggerPrefix:"/",useItems(e){const{rootClientId:t,selectedBlockId:n,prioritizedBlocks:o}=G(u=>{const{getSelectedBlockClientId:d,getBlock:p,getBlockListSettings:f,getBlockRootClientId:b}=u(Q),{getActiveBlockVariation:h}=u(kt),g=d(),{name:z,attributes:A}=p(g),_=h(z,A),v=b(g);return{selectedBlockId:_?`${z}/${_.name}`:z,rootClientId:v,prioritizedBlocks:f(v)?.prioritizedInserterBlocks}},[]),[r,s,i]=M_(t,Fyt,!0),c=x.useMemo(()=>(e.trim()?xhe(r,s,i,e):whe(hO(r,"frecency","desc"),o)).filter(d=>d.id!==n).slice(0,$yt),[e,n,r,s,i,o]);return[x.useMemo(()=>c.map(u=>{const{title:d,icon:p,isDisabled:f}=u;return{key:`block-${u.id}`,value:u,label:a.jsxs(a.Fragment,{children:[a.jsx(Zn,{icon:p,showColors:!0},"icon"),d]}),isDisabled:f}}),[c])]},allowContext(e,t){return!(/\S/.test(e)||/\S/.test(t))},getOptionCompletion(e){const{name:t,initialAttributes:n,innerBlocks:o,syncStatus:r,content:s}=e;return{action:"replace",value:r==="unsynced"?Ko(s,{__unstableSkipMigrationLogs:!0}):Ee(t,n,Ad(o))}}}}const Hyt=Vyt(),Uyt=10;function Xyt(){return{name:"links",className:"block-editor-autocompleters__link",triggerPrefix:"[[",options:async e=>{let t=await Tt({path:tn("/wp/v2/search",{per_page:Uyt,search:e,type:"post",order_by:"menu_order"})});return t=t.filter(n=>n.title!==""),t},getOptionKeywords(e){return[...e.title.split(/\s+/)]},getOptionLabel(e){return a.jsxs(a.Fragment,{children:[a.jsx(wn,{icon:e.subtype==="page"?wa:wde},"icon"),Lt(e.title)]})},getOptionCompletion(e){return a.jsx("a",{href:e.url,children:e.title})}}}const Gyt=Xyt(),Kyt=[];function Yyt({completers:e=Kyt}){const{name:t}=j0();return x.useMemo(()=>{let n=[...e,Gyt];return(t===Mr()||An(t,"__experimentalSlashInserter",!1))&&(n=[...n,Hyt]),Xre("editor.Autocomplete.completers")&&(n===e&&(n=n.map(o=>({...o}))),n=gr("editor.Autocomplete.completers",n,t)),n},[e,t])}function Zyt(e){return dnt({...e,completers:Yyt(e)})}const Dd={default:{name:"default",slug:"flow",className:"is-layout-flow",baseStyles:[{selector:" > .alignleft",rules:{float:"left","margin-inline-start":"0","margin-inline-end":"2em"}},{selector:" > .alignright",rules:{float:"right","margin-inline-start":"2em","margin-inline-end":"0"}},{selector:" > .aligncenter",rules:{"margin-left":"auto !important","margin-right":"auto !important"}}],spacingStyles:[{selector:" > :first-child",rules:{"margin-block-start":"0"}},{selector:" > :last-child",rules:{"margin-block-end":"0"}},{selector:" > *",rules:{"margin-block-start":null,"margin-block-end":"0"}}]},constrained:{name:"constrained",slug:"constrained",className:"is-layout-constrained",baseStyles:[{selector:" > .alignleft",rules:{float:"left","margin-inline-start":"0","margin-inline-end":"2em"}},{selector:" > .alignright",rules:{float:"right","margin-inline-start":"2em","margin-inline-end":"0"}},{selector:" > .aligncenter",rules:{"margin-left":"auto !important","margin-right":"auto !important"}},{selector:" > :where(:not(.alignleft):not(.alignright):not(.alignfull))",rules:{"max-width":"var(--wp--style--global--content-size)","margin-left":"auto !important","margin-right":"auto !important"}},{selector:" > .alignwide",rules:{"max-width":"var(--wp--style--global--wide-size)"}}],spacingStyles:[{selector:" > :first-child",rules:{"margin-block-start":"0"}},{selector:" > :last-child",rules:{"margin-block-end":"0"}},{selector:" > *",rules:{"margin-block-start":null,"margin-block-end":"0"}}]},flex:{name:"flex",slug:"flex",className:"is-layout-flex",displayMode:"flex",baseStyles:[{selector:"",rules:{"flex-wrap":"wrap","align-items":"center"}},{selector:" > :is(*, div)",rules:{margin:"0"}}],spacingStyles:[{selector:"",rules:{gap:null}}]},grid:{name:"grid",slug:"grid",className:"is-layout-grid",displayMode:"grid",baseStyles:[{selector:" > :is(*, div)",rules:{margin:"0"}}],spacingStyles:[{selector:"",rules:{gap:null}}]}};function Ja(e,t=""){return e.split(",").map(n=>`${n}${t?` ${t}`:""}`).join(",")}function z_(e,t=Dd,n,o){let r="";return t?.[n]?.spacingStyles?.length&&o&&t[n].spacingStyles.forEach(s=>{r+=`${Ja(e,s.selector.trim())} { `,r+=Object.entries(s.rules).map(([i,c])=>`${i}: ${c||o}`).join("; "),r+="; }"}),r}function _he(e){const{contentSize:t,wideSize:n,type:o="default"}=e,r={},s=/^(?!0)\d+(px|em|rem|vw|vh|%|svw|lvw|dvw|svh|lvh|dvh|vi|svi|lvi|dvi|vb|svb|lvb|dvb|vmin|svmin|lvmin|dvmin|vmax|svmax|lvmax|dvmax)?$/i;return s.test(t)&&o==="constrained"&&(r.none=xe(m("Max %s wide"),t)),s.test(n)&&(r.wide=xe(m("Max %s wide"),n)),r}const khe=8,Iz=["top","right","bottom","left"],Qyt={top:void 0,right:void 0,bottom:void 0,left:void 0},She={custom:ZK,axial:ZK,horizontal:JQe,vertical:oJe,top:nJe,right:tJe,bottom:QQe,left:eJe},vO={default:m("Spacing control"),top:m("Top"),bottom:m("Bottom"),left:m("Left"),right:m("Right"),mixed:m("Mixed"),vertical:m("Vertical"),horizontal:m("Horizontal"),axial:m("Horizontal & vertical"),custom:m("Custom")},Fu={axial:"axial",top:"top",right:"right",bottom:"bottom",left:"left",custom:"custom"};function Qp(e){return e?.includes?e==="0"||e.includes("var:preset|spacing|"):!1}function aM(e,t){if(!Qp(e))return e;const n=Che(e);return t.find(r=>String(r.slug)===n)?.size}function O_(e,t){if(!e||Qp(e)||e==="0")return e;const n=t.find(o=>String(o.size)===String(e));return n?.slug?`var:preset|spacing|${n.slug}`:e}function xh(e){if(!e)return;const t=e.match(/var:preset\|spacing\|(.+)/);return t?`var(--wp--preset--spacing--${t[1]})`:e}function Che(e){if(!e)return;if(e==="0"||e==="default")return e;const t=e.match(/var:preset\|spacing\|(.+)/);return t?t[1]:void 0}function Jyt(e,t){if(e===void 0)return 0;const n=parseFloat(e,10)===0?"0":Che(e),o=t.findIndex(r=>String(r.slug)===n);return o!==-1?o:NaN}function qhe(e,t){if(!e||!e.length)return!1;const n=e.includes("horizontal")||e.includes("left")&&e.includes("right"),o=e.includes("vertical")||e.includes("top")&&e.includes("bottom");return t==="horizontal"?n:t==="vertical"?o:n||o}function eAt(e=[]){const t={top:0,right:0,bottom:0,left:0};return e.forEach(n=>t[n]+=1),(t.top+t.bottom)%2===0&&(t.left+t.right)%2===0}function tAt(e={},t){const{top:n,right:o,bottom:r,left:s}=e,i=[n,o,r,s].filter(Boolean),c=n===r&&s===o&&(!!n||!!s),l=!i.length&&eAt(t),u=t?.includes("horizontal")&&t?.includes("vertical")&&t?.length===2;if(qhe(t)&&(c||l))return Fu.axial;if(u&&i.length===1){let d;return Object.entries(e).some(([p,f])=>(d=p,f!==void 0)),d}return t?.length===1&&!i.length?t[0]:Fu.custom}function nAt(e){if(!e)return null;const t=typeof e=="string";return{top:t?e:e?.top,left:t?e:e?.left}}function us(e,t="0"){const n=nAt(e);if(!n)return null;const o=xh(n?.top)||t,r=xh(n?.left)||t;return o===r?o:`${o} ${r}`}const oAt={left:"flex-start",right:"flex-end",center:"center","space-between":"space-between"},KZ={left:"flex-start",right:"flex-end",center:"center",stretch:"stretch"},vW={top:"flex-start",center:"center",bottom:"flex-end",stretch:"stretch","space-between":"space-between"},rAt=["wrap","nowrap"],sAt={name:"flex",label:m("Flex"),inspectorControls:function({layout:t={},onChange:n,layoutBlockSupport:o={}}){const{allowOrientation:r=!0,allowJustification:s=!0}=o;return a.jsxs(a.Fragment,{children:[a.jsxs(Yo,{children:[s&&a.jsx(Tn,{children:a.jsx(YZ,{layout:t,onChange:n})}),r&&a.jsx(Tn,{children:a.jsx(lAt,{layout:t,onChange:n})})]}),a.jsx(cAt,{layout:t,onChange:n})]})},toolBarControls:function({layout:t={},onChange:n,layoutBlockSupport:o}){const{allowVerticalAlignment:r=!0,allowJustification:s=!0}=o;return!s&&!r?null:a.jsxs(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:[s&&a.jsx(YZ,{layout:t,onChange:n,isToolbar:!0}),r&&a.jsx(iAt,{layout:t,onChange:n})]})},getLayoutStyle:function({selector:t,layout:n,style:o,blockName:r,hasBlockGapSupport:s,layoutDefinitions:i=Dd}){const{orientation:c="horizontal"}=n,l=o?.spacing?.blockGap&&!W0(r,"spacing","blockGap")?us(o?.spacing?.blockGap,"0.5em"):void 0,u=oAt[n.justifyContent],d=rAt.includes(n.flexWrap)?n.flexWrap:"wrap",p=vW[n.verticalAlignment],f=KZ[n.justifyContent]||KZ.left;let b="";const h=[];return d&&d!=="wrap"&&h.push(`flex-wrap: ${d}`),c==="horizontal"?(p&&h.push(`align-items: ${p}`),u&&h.push(`justify-content: ${u}`)):(p&&h.push(`justify-content: ${p}`),h.push("flex-direction: column"),h.push(`align-items: ${f}`)),h.length&&(b=`${Ja(t)} { ${h.join("; ")}; - }`),s&&l&&(b+=O_(t,i,"flex",l)),b},getOrientation(e){const{orientation:t="horizontal"}=e;return t},getAlignments(){return[]}};function aAt({layout:e,onChange:t}){const{orientation:n="horizontal"}=e,o=n==="horizontal"?xW.center:xW.top,{verticalAlignment:r=o}=e,s=i=>{t({...e,verticalAlignment:i})};return a.jsx($ze,{onChange:s,value:r,controls:n==="horizontal"?["top","center","bottom","stretch"]:["top","center","bottom","space-between"]})}const cAt={placement:"bottom-start"};function YZ({layout:e,onChange:t,isToolbar:n=!1}){const{justifyContent:o="left",orientation:r="horizontal"}=e,s=l=>{t({...e,justifyContent:l})},i=["left","center","right"];if(r==="horizontal"?i.push("space-between"):i.push("stretch"),n)return a.jsx(Jze,{allowedControls:i,value:o,onChange:s,popoverProps:cAt});const c=[{value:"left",icon:Bw,label:m("Justify items left")},{value:"center",icon:Lw,label:m("Justify items center")},{value:"right",icon:Pw,label:m("Justify items right")}];return r==="horizontal"?c.push({value:"space-between",icon:PP,label:m("Space between items")}):c.push({value:"stretch",icon:jP,label:m("Stretch items")}),a.jsx(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Justification"),value:o,onChange:s,className:"block-editor-hooks__flex-layout-justification-controls",children:c.map(({value:l,icon:u,label:d})=>a.jsx(Ma,{value:l,icon:u,label:d},l))})}function lAt({layout:e,onChange:t}){const{flexWrap:n="wrap"}=e;return a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Allow to wrap to multiple lines"),onChange:o=>{t({...e,flexWrap:o?"wrap":"nowrap"})},checked:n==="wrap"})}function uAt({layout:e,onChange:t}){const{orientation:n="horizontal",verticalAlignment:o,justifyContent:r}=e;return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"block-editor-hooks__flex-layout-orientation-controls",label:m("Orientation"),value:n,onChange:s=>{let i=o,c=r;return s==="horizontal"?(o==="space-between"&&(i="center"),r==="stretch"&&(c="left")):(o==="stretch"&&(i="top"),r==="space-between"&&(c="left")),t({...e,orientation:s,verticalAlignment:i,justifyContent:c})},children:[a.jsx(Ma,{icon:B8,value:"horizontal",label:m("Horizontal")}),a.jsx(Ma,{icon:gZe,value:"vertical",label:m("Vertical")})]})}const dAt={name:"default",label:m("Flow"),inspectorControls:function(){return null},toolBarControls:function(){return null},getLayoutStyle:function({selector:t,style:n,blockName:o,hasBlockGapSupport:r,layoutDefinitions:s=Dd}){const i=us(n?.spacing?.blockGap);let c="";W0(o,"spacing","blockGap")||(i?.top?c=us(i?.top):typeof i=="string"&&(c=us(i)));let l="";return r&&c&&(l+=O_(t,s,"default",c)),l},getOrientation(){return"vertical"},getAlignments(e,t){const n=_he(e);if(e.alignments!==void 0)return e.alignments.includes("none")||e.alignments.unshift("none"),e.alignments.map(r=>({name:r,info:n[r]}));const o=[{name:"left"},{name:"center"},{name:"right"}];if(!t){const{contentSize:r,wideSize:s}=e;r&&o.unshift({name:"full"}),s&&o.unshift({name:"wide",info:n.wide})}return o.unshift({name:"none",info:n.none}),o}},ZZ="var:",pAt="|",fAt="--",wW=(e,t)=>{let n=e;return t.forEach(o=>{n=n?.[o]}),n};function or(e,t,n,o){const r=wW(e,n);return r?[{selector:t?.selector,key:o,value:Dz(r)}]:[]}function f7(e,t,n,o,r=["top","right","bottom","left"]){const s=wW(e,n);if(!s)return[];const i=[];if(typeof s=="string")i.push({selector:t?.selector,key:o.default,value:s});else{const c=r.reduce((l,u)=>{const d=Dz(wW(s,[u]));return d&&l.push({selector:t?.selector,key:o?.individual.replace("%s",Rhe(u)),value:d}),l},[]);i.push(...c)}return i}function Dz(e){return typeof e=="string"&&e.startsWith(ZZ)?`var(--wp--${e.slice(ZZ.length).split(pAt).map(n=>Ti(n,{splitRegexp:[/([a-z0-9])([A-Z])/g,/([0-9])([a-z])/g,/([A-Za-z])([0-9])/g,/([A-Z])([A-Z][a-z])/g]})).join(fAt)})`:e}function Rhe(e){const[t,...n]=e;return t.toUpperCase()+n.join("")}function bAt(e){const[t,...n]=e;return t.toLowerCase()+n.map(Rhe).join("")}function hAt(e){try{return decodeURI(e)}catch{return e}}function A_(e){return(t,n)=>or(t,n,e,bAt(e))}function v_(e){return(t,n)=>["color","style","width"].flatMap(o=>A_(["border",e,o])(t,n))}const mAt={name:"color",generate:A_(["border","color"])},gAt={name:"radius",generate:(e,t)=>f7(e,t,["border","radius"],{default:"borderRadius",individual:"border%sRadius"},["topLeft","topRight","bottomLeft","bottomRight"])},MAt={name:"style",generate:A_(["border","style"])},zAt={name:"width",generate:A_(["border","width"])},OAt={name:"borderTop",generate:v_("top")},yAt={name:"borderRight",generate:v_("right")},AAt={name:"borderBottom",generate:v_("bottom")},vAt={name:"borderLeft",generate:v_("left")},xAt=[mAt,MAt,zAt,gAt,OAt,yAt,AAt,vAt],wAt={name:"background",generate:(e,t)=>or(e,t,["color","background"],"backgroundColor")},_At={name:"gradient",generate:(e,t)=>or(e,t,["color","gradient"],"background")},kAt={name:"text",generate:(e,t)=>or(e,t,["color","text"],"color")},SAt=[kAt,_At,wAt],CAt={name:"minHeight",generate:(e,t)=>or(e,t,["dimensions","minHeight"],"minHeight")},qAt={name:"aspectRatio",generate:(e,t)=>or(e,t,["dimensions","aspectRatio"],"aspectRatio")},RAt=[CAt,qAt],TAt={name:"backgroundImage",generate:(e,t)=>{const n=e?.background?.backgroundImage;return typeof n=="object"&&n?.url?[{selector:t.selector,key:"backgroundImage",value:`url( '${encodeURI(hAt(n.url))}' )`}]:or(e,t,["background","backgroundImage"],"backgroundImage")}},EAt={name:"backgroundPosition",generate:(e,t)=>or(e,t,["background","backgroundPosition"],"backgroundPosition")},WAt={name:"backgroundRepeat",generate:(e,t)=>or(e,t,["background","backgroundRepeat"],"backgroundRepeat")},NAt={name:"backgroundSize",generate:(e,t)=>or(e,t,["background","backgroundSize"],"backgroundSize")},BAt={name:"backgroundAttachment",generate:(e,t)=>or(e,t,["background","backgroundAttachment"],"backgroundAttachment")},LAt=[TAt,EAt,WAt,NAt,BAt],PAt={name:"shadow",generate:(e,t)=>or(e,t,["shadow"],"boxShadow")},jAt=[PAt],IAt={name:"color",generate:(e,t,n=["outline","color"],o="outlineColor")=>or(e,t,n,o)},DAt={name:"offset",generate:(e,t,n=["outline","offset"],o="outlineOffset")=>or(e,t,n,o)},FAt={name:"style",generate:(e,t,n=["outline","style"],o="outlineStyle")=>or(e,t,n,o)},$At={name:"width",generate:(e,t,n=["outline","width"],o="outlineWidth")=>or(e,t,n,o)},VAt=[IAt,FAt,DAt,$At],HAt={name:"padding",generate:(e,t)=>f7(e,t,["spacing","padding"],{default:"padding",individual:"padding%s"})},UAt={name:"margin",generate:(e,t)=>f7(e,t,["spacing","margin"],{default:"margin",individual:"margin%s"})},XAt=[UAt,HAt],GAt={name:"fontSize",generate:(e,t)=>or(e,t,["typography","fontSize"],"fontSize")},KAt={name:"fontStyle",generate:(e,t)=>or(e,t,["typography","fontStyle"],"fontStyle")},YAt={name:"fontWeight",generate:(e,t)=>or(e,t,["typography","fontWeight"],"fontWeight")},ZAt={name:"fontFamily",generate:(e,t)=>or(e,t,["typography","fontFamily"],"fontFamily")},QAt={name:"letterSpacing",generate:(e,t)=>or(e,t,["typography","letterSpacing"],"letterSpacing")},JAt={name:"lineHeight",generate:(e,t)=>or(e,t,["typography","lineHeight"],"lineHeight")},evt={name:"textColumns",generate:(e,t)=>or(e,t,["typography","textColumns"],"columnCount")},tvt={name:"textDecoration",generate:(e,t)=>or(e,t,["typography","textDecoration"],"textDecoration")},nvt={name:"textTransform",generate:(e,t)=>or(e,t,["typography","textTransform"],"textTransform")},ovt={name:"writingMode",generate:(e,t)=>or(e,t,["typography","writingMode"],"writingMode")},rvt=[ZAt,GAt,KAt,YAt,QAt,JAt,evt,tvt,nvt,ovt],svt=[...xAt,...SAt,...RAt,...VAt,...XAt,...rvt,...jAt,...LAt];function cq(e,t={}){const n=x_(e,t);if(!t?.selector){const s=[];return n.forEach(i=>{s.push(`${Ti(i.key)}: ${i.value};`)}),s.join(" ")}const o=n.reduce((s,i)=>{const{selector:c}=i;return c&&(s[c]||(s[c]=[]),s[c].push(i)),s},{});return Object.keys(o).reduce((s,i)=>(s.push(`${i} { ${o[i].map(c=>`${Ti(c.key)}: ${c.value};`).join(" ")} }`),s),[]).join(` -`)}function x_(e,t={}){const n=[];return svt.forEach(o=>{typeof o.generate=="function"&&n.push(...o.generate(e,t))}),n}const ivt={name:"constrained",label:m("Constrained"),inspectorControls:function({layout:t,onChange:n,layoutBlockSupport:o={}}){const{wideSize:r,contentSize:s,justifyContent:i="center"}=t,{allowJustification:c=!0,allowCustomContentAndWideSize:l=!0}=o,u=b=>{n({...t,justifyContent:b})},d=[{value:"left",icon:Bw,label:m("Justify items left")},{value:"center",icon:Lw,label:m("Justify items center")},{value:"right",icon:Pw,label:m("Justify items right")}],[p]=Un("spacing.units"),f=U1({availableUnits:p||["%","px","em","rem","vw"]});return a.jsxs(dt,{spacing:4,className:"block-editor-hooks__layout-constrained",children:[l&&a.jsxs(a.Fragment,{children:[a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Content width"),labelPosition:"top",value:s||r||"",onChange:b=>{b=0>parseFloat(b)?"0":b,n({...t,contentSize:b})},units:f,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:Tw})})}),a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Wide width"),labelPosition:"top",value:r||s||"",onChange:b=>{b=0>parseFloat(b)?"0":b,n({...t,wideSize:b})},units:f,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:XP})})}),a.jsx("p",{className:"block-editor-hooks__layout-constrained-helptext",children:m("Customize the width for all elements that are assigned to the center or wide columns.")})]}),c&&a.jsx(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Justification"),value:i,onChange:u,children:d.map(({value:b,icon:h,label:g})=>a.jsx(Ma,{value:b,icon:h,label:g},b))})]})},toolBarControls:function({layout:t={},onChange:n,layoutBlockSupport:o}){const{allowJustification:r=!0}=o;return r?a.jsx(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:a.jsx(cvt,{layout:t,onChange:n})}):null},getLayoutStyle:function({selector:t,layout:n={},style:o,blockName:r,hasBlockGapSupport:s,layoutDefinitions:i=Dd}){const{contentSize:c,wideSize:l,justifyContent:u}=n,d=us(o?.spacing?.blockGap);let p="";W0(r,"spacing","blockGap")||(d?.top?p=us(d?.top):typeof d=="string"&&(p=us(d)));const f=u==="left"?"0 !important":"auto !important",b=u==="right"?"0 !important":"auto !important";let h=c||l?` + }`),s&&l&&(b+=z_(t,i,"flex",l)),b},getOrientation(e){const{orientation:t="horizontal"}=e;return t},getAlignments(){return[]}};function iAt({layout:e,onChange:t}){const{orientation:n="horizontal"}=e,o=n==="horizontal"?vW.center:vW.top,{verticalAlignment:r=o}=e,s=i=>{t({...e,verticalAlignment:i})};return a.jsx($ze,{onChange:s,value:r,controls:n==="horizontal"?["top","center","bottom","stretch"]:["top","center","bottom","space-between"]})}const aAt={placement:"bottom-start"};function YZ({layout:e,onChange:t,isToolbar:n=!1}){const{justifyContent:o="left",orientation:r="horizontal"}=e,s=l=>{t({...e,justifyContent:l})},i=["left","center","right"];if(r==="horizontal"?i.push("space-between"):i.push("stretch"),n)return a.jsx(Jze,{allowedControls:i,value:o,onChange:s,popoverProps:aAt});const c=[{value:"left",icon:Nw,label:m("Justify items left")},{value:"center",icon:Bw,label:m("Justify items center")},{value:"right",icon:Lw,label:m("Justify items right")}];return r==="horizontal"?c.push({value:"space-between",icon:LP,label:m("Space between items")}):c.push({value:"stretch",icon:PP,label:m("Stretch items")}),a.jsx(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Justification"),value:o,onChange:s,className:"block-editor-hooks__flex-layout-justification-controls",children:c.map(({value:l,icon:u,label:d})=>a.jsx(ga,{value:l,icon:u,label:d},l))})}function cAt({layout:e,onChange:t}){const{flexWrap:n="wrap"}=e;return a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Allow to wrap to multiple lines"),onChange:o=>{t({...e,flexWrap:o?"wrap":"nowrap"})},checked:n==="wrap"})}function lAt({layout:e,onChange:t}){const{orientation:n="horizontal",verticalAlignment:o,justifyContent:r}=e;return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"block-editor-hooks__flex-layout-orientation-controls",label:m("Orientation"),value:n,onChange:s=>{let i=o,c=r;return s==="horizontal"?(o==="space-between"&&(i="center"),r==="stretch"&&(c="left")):(o==="stretch"&&(i="top"),r==="space-between"&&(c="left")),t({...e,orientation:s,verticalAlignment:i,justifyContent:c})},children:[a.jsx(ga,{icon:N8,value:"horizontal",label:m("Horizontal")}),a.jsx(ga,{icon:mZe,value:"vertical",label:m("Vertical")})]})}const uAt={name:"default",label:m("Flow"),inspectorControls:function(){return null},toolBarControls:function(){return null},getLayoutStyle:function({selector:t,style:n,blockName:o,hasBlockGapSupport:r,layoutDefinitions:s=Dd}){const i=us(n?.spacing?.blockGap);let c="";W0(o,"spacing","blockGap")||(i?.top?c=us(i?.top):typeof i=="string"&&(c=us(i)));let l="";return r&&c&&(l+=z_(t,s,"default",c)),l},getOrientation(){return"vertical"},getAlignments(e,t){const n=_he(e);if(e.alignments!==void 0)return e.alignments.includes("none")||e.alignments.unshift("none"),e.alignments.map(r=>({name:r,info:n[r]}));const o=[{name:"left"},{name:"center"},{name:"right"}];if(!t){const{contentSize:r,wideSize:s}=e;r&&o.unshift({name:"full"}),s&&o.unshift({name:"wide",info:n.wide})}return o.unshift({name:"none",info:n.none}),o}},ZZ="var:",dAt="|",pAt="--",xW=(e,t)=>{let n=e;return t.forEach(o=>{n=n?.[o]}),n};function or(e,t,n,o){const r=xW(e,n);return r?[{selector:t?.selector,key:o,value:Dz(r)}]:[]}function p7(e,t,n,o,r=["top","right","bottom","left"]){const s=xW(e,n);if(!s)return[];const i=[];if(typeof s=="string")i.push({selector:t?.selector,key:o.default,value:s});else{const c=r.reduce((l,u)=>{const d=Dz(xW(s,[u]));return d&&l.push({selector:t?.selector,key:o?.individual.replace("%s",Rhe(u)),value:d}),l},[]);i.push(...c)}return i}function Dz(e){return typeof e=="string"&&e.startsWith(ZZ)?`var(--wp--${e.slice(ZZ.length).split(dAt).map(n=>Ti(n,{splitRegexp:[/([a-z0-9])([A-Z])/g,/([0-9])([a-z])/g,/([A-Za-z])([0-9])/g,/([A-Z])([A-Z][a-z])/g]})).join(pAt)})`:e}function Rhe(e){const[t,...n]=e;return t.toUpperCase()+n.join("")}function fAt(e){const[t,...n]=e;return t.toLowerCase()+n.map(Rhe).join("")}function bAt(e){try{return decodeURI(e)}catch{return e}}function y_(e){return(t,n)=>or(t,n,e,fAt(e))}function A_(e){return(t,n)=>["color","style","width"].flatMap(o=>y_(["border",e,o])(t,n))}const hAt={name:"color",generate:y_(["border","color"])},mAt={name:"radius",generate:(e,t)=>p7(e,t,["border","radius"],{default:"borderRadius",individual:"border%sRadius"},["topLeft","topRight","bottomLeft","bottomRight"])},gAt={name:"style",generate:y_(["border","style"])},MAt={name:"width",generate:y_(["border","width"])},zAt={name:"borderTop",generate:A_("top")},OAt={name:"borderRight",generate:A_("right")},yAt={name:"borderBottom",generate:A_("bottom")},AAt={name:"borderLeft",generate:A_("left")},vAt=[hAt,gAt,MAt,mAt,zAt,OAt,yAt,AAt],xAt={name:"background",generate:(e,t)=>or(e,t,["color","background"],"backgroundColor")},wAt={name:"gradient",generate:(e,t)=>or(e,t,["color","gradient"],"background")},_At={name:"text",generate:(e,t)=>or(e,t,["color","text"],"color")},kAt=[_At,wAt,xAt],SAt={name:"minHeight",generate:(e,t)=>or(e,t,["dimensions","minHeight"],"minHeight")},CAt={name:"aspectRatio",generate:(e,t)=>or(e,t,["dimensions","aspectRatio"],"aspectRatio")},qAt=[SAt,CAt],RAt={name:"backgroundImage",generate:(e,t)=>{const n=e?.background?.backgroundImage;return typeof n=="object"&&n?.url?[{selector:t.selector,key:"backgroundImage",value:`url( '${encodeURI(bAt(n.url))}' )`}]:or(e,t,["background","backgroundImage"],"backgroundImage")}},TAt={name:"backgroundPosition",generate:(e,t)=>or(e,t,["background","backgroundPosition"],"backgroundPosition")},EAt={name:"backgroundRepeat",generate:(e,t)=>or(e,t,["background","backgroundRepeat"],"backgroundRepeat")},WAt={name:"backgroundSize",generate:(e,t)=>or(e,t,["background","backgroundSize"],"backgroundSize")},NAt={name:"backgroundAttachment",generate:(e,t)=>or(e,t,["background","backgroundAttachment"],"backgroundAttachment")},BAt=[RAt,TAt,EAt,WAt,NAt],LAt={name:"shadow",generate:(e,t)=>or(e,t,["shadow"],"boxShadow")},PAt=[LAt],jAt={name:"color",generate:(e,t,n=["outline","color"],o="outlineColor")=>or(e,t,n,o)},IAt={name:"offset",generate:(e,t,n=["outline","offset"],o="outlineOffset")=>or(e,t,n,o)},DAt={name:"style",generate:(e,t,n=["outline","style"],o="outlineStyle")=>or(e,t,n,o)},FAt={name:"width",generate:(e,t,n=["outline","width"],o="outlineWidth")=>or(e,t,n,o)},$At=[jAt,DAt,IAt,FAt],VAt={name:"padding",generate:(e,t)=>p7(e,t,["spacing","padding"],{default:"padding",individual:"padding%s"})},HAt={name:"margin",generate:(e,t)=>p7(e,t,["spacing","margin"],{default:"margin",individual:"margin%s"})},UAt=[HAt,VAt],XAt={name:"fontSize",generate:(e,t)=>or(e,t,["typography","fontSize"],"fontSize")},GAt={name:"fontStyle",generate:(e,t)=>or(e,t,["typography","fontStyle"],"fontStyle")},KAt={name:"fontWeight",generate:(e,t)=>or(e,t,["typography","fontWeight"],"fontWeight")},YAt={name:"fontFamily",generate:(e,t)=>or(e,t,["typography","fontFamily"],"fontFamily")},ZAt={name:"letterSpacing",generate:(e,t)=>or(e,t,["typography","letterSpacing"],"letterSpacing")},QAt={name:"lineHeight",generate:(e,t)=>or(e,t,["typography","lineHeight"],"lineHeight")},JAt={name:"textColumns",generate:(e,t)=>or(e,t,["typography","textColumns"],"columnCount")},evt={name:"textDecoration",generate:(e,t)=>or(e,t,["typography","textDecoration"],"textDecoration")},tvt={name:"textTransform",generate:(e,t)=>or(e,t,["typography","textTransform"],"textTransform")},nvt={name:"writingMode",generate:(e,t)=>or(e,t,["typography","writingMode"],"writingMode")},ovt=[YAt,XAt,GAt,KAt,ZAt,QAt,JAt,evt,tvt,nvt],rvt=[...vAt,...kAt,...qAt,...$At,...UAt,...ovt,...PAt,...BAt];function aq(e,t={}){const n=v_(e,t);if(!t?.selector){const s=[];return n.forEach(i=>{s.push(`${Ti(i.key)}: ${i.value};`)}),s.join(" ")}const o=n.reduce((s,i)=>{const{selector:c}=i;return c&&(s[c]||(s[c]=[]),s[c].push(i)),s},{});return Object.keys(o).reduce((s,i)=>(s.push(`${i} { ${o[i].map(c=>`${Ti(c.key)}: ${c.value};`).join(" ")} }`),s),[]).join(` +`)}function v_(e,t={}){const n=[];return rvt.forEach(o=>{typeof o.generate=="function"&&n.push(...o.generate(e,t))}),n}const svt={name:"constrained",label:m("Constrained"),inspectorControls:function({layout:t,onChange:n,layoutBlockSupport:o={}}){const{wideSize:r,contentSize:s,justifyContent:i="center"}=t,{allowJustification:c=!0,allowCustomContentAndWideSize:l=!0}=o,u=b=>{n({...t,justifyContent:b})},d=[{value:"left",icon:Nw,label:m("Justify items left")},{value:"center",icon:Bw,label:m("Justify items center")},{value:"right",icon:Lw,label:m("Justify items right")}],[p]=Un("spacing.units"),f=U1({availableUnits:p||["%","px","em","rem","vw"]});return a.jsxs(dt,{spacing:4,className:"block-editor-hooks__layout-constrained",children:[l&&a.jsxs(a.Fragment,{children:[a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Content width"),labelPosition:"top",value:s||r||"",onChange:b=>{b=0>parseFloat(b)?"0":b,n({...t,contentSize:b})},units:f,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:Rw})})}),a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Wide width"),labelPosition:"top",value:r||s||"",onChange:b=>{b=0>parseFloat(b)?"0":b,n({...t,wideSize:b})},units:f,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:UP})})}),a.jsx("p",{className:"block-editor-hooks__layout-constrained-helptext",children:m("Customize the width for all elements that are assigned to the center or wide columns.")})]}),c&&a.jsx(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Justification"),value:i,onChange:u,children:d.map(({value:b,icon:h,label:g})=>a.jsx(ga,{value:b,icon:h,label:g},b))})]})},toolBarControls:function({layout:t={},onChange:n,layoutBlockSupport:o}){const{allowJustification:r=!0}=o;return r?a.jsx(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:a.jsx(avt,{layout:t,onChange:n})}):null},getLayoutStyle:function({selector:t,layout:n={},style:o,blockName:r,hasBlockGapSupport:s,layoutDefinitions:i=Dd}){const{contentSize:c,wideSize:l,justifyContent:u}=n,d=us(o?.spacing?.blockGap);let p="";W0(r,"spacing","blockGap")||(d?.top?p=us(d?.top):typeof d=="string"&&(p=us(d)));const f=u==="left"?"0 !important":"auto !important",b=u==="right"?"0 !important":"auto !important";let h=c||l?` ${Ja(t,"> :where(:not(.alignleft):not(.alignright):not(.alignfull))")} { max-width: ${c??l}; margin-left: ${f}; @@ -486,7 +486,7 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen } `:"";return u==="left"?h+=`${Ja(t,"> :where(:not(.alignleft):not(.alignright):not(.alignfull))")} { margin-left: ${f}; }`:u==="right"&&(h+=`${Ja(t,"> :where(:not(.alignleft):not(.alignright):not(.alignfull))")} - { margin-right: ${b}; }`),o?.spacing?.padding&&x_(o).forEach(z=>{if(z.key==="paddingRight"){const A=z.value==="0"?"0px":z.value;h+=` + { margin-right: ${b}; }`),o?.spacing?.padding&&v_(o).forEach(z=>{if(z.key==="paddingRight"){const A=z.value==="0"?"0px":z.value;h+=` ${Ja(t,"> .alignfull")} { margin-right: calc(${A} * -1); } @@ -494,14 +494,14 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen ${Ja(t,"> .alignfull")} { margin-left: calc(${A} * -1); } - `}}),s&&p&&(h+=O_(t,i,"constrained",p)),h},getOrientation(){return"vertical"},getAlignments(e){const t=_he(e);if(e.alignments!==void 0)return e.alignments.includes("none")||e.alignments.unshift("none"),e.alignments.map(s=>({name:s,info:t[s]}));const{contentSize:n,wideSize:o}=e,r=[{name:"left"},{name:"center"},{name:"right"}];return n&&r.unshift({name:"full"}),o&&r.unshift({name:"wide",info:t.wide}),r.unshift({name:"none",info:t.none}),r}},avt={placement:"bottom-start"};function cvt({layout:e,onChange:t}){const{justifyContent:n="center"}=e,o=s=>{t({...e,justifyContent:s})},r=["left","center","right"];return a.jsx(Jze,{allowedControls:r,value:n,onChange:o,popoverProps:avt})}const lvt={px:600,"%":100,vw:100,vh:100,em:38,rem:38,svw:100,lvw:100,dvw:100,svh:100,lvh:100,dvh:100,vi:100,svi:100,lvi:100,dvi:100,vb:100,svb:100,lvb:100,dvb:100,vmin:100,svmin:100,lvmin:100,dvmin:100,vmax:100,svmax:100,lvmax:100,dvmax:100},uvt=[{value:"px",label:"px",default:0},{value:"rem",label:"rem",default:0},{value:"em",label:"em",default:0}],dvt={name:"grid",label:m("Grid"),inspectorControls:function({layout:t={},onChange:n,layoutBlockSupport:o={}}){const{allowSizingOnChildren:r=!1}=o,s=window.__experimentalEnableGridInteractivity||!!t?.columnCount,i=window.__experimentalEnableGridInteractivity||!t?.columnCount;return a.jsxs(a.Fragment,{children:[a.jsx(bvt,{layout:t,onChange:n}),a.jsxs(dt,{spacing:4,children:[s&&a.jsx(fvt,{layout:t,onChange:n,allowSizingOnChildren:r}),i&&a.jsx(pvt,{layout:t,onChange:n})]})]})},toolBarControls:function(){return null},getLayoutStyle:function({selector:t,layout:n,style:o,blockName:r,hasBlockGapSupport:s,layoutDefinitions:i=Dd}){const{minimumColumnWidth:c=null,columnCount:l=null,rowCount:u=null}=n,d=o?.spacing?.blockGap&&!W0(r,"spacing","blockGap")?us(o?.spacing?.blockGap,"0.5em"):void 0;let p="";const f=[];if(c&&l>0){const b=`max(${c}, ( 100% - (${d||"1.2rem"}*${l-1}) ) / ${l})`;f.push(`grid-template-columns: repeat(auto-fill, minmax(${b}, 1fr))`,"container-type: inline-size"),u&&f.push(`grid-template-rows: repeat(${u}, minmax(1rem, auto))`)}else l?(f.push(`grid-template-columns: repeat(${l}, minmax(0, 1fr))`),u&&f.push(`grid-template-rows: repeat(${u}, minmax(1rem, auto))`)):f.push(`grid-template-columns: repeat(auto-fill, minmax(min(${c||"12rem"}, 100%), 1fr))`,"container-type: inline-size");return f.length&&(p=`${Ja(t)} { ${f.join("; ")}; }`),s&&d&&(p+=O_(t,i,"grid",d)),p},getOrientation(){return"horizontal"},getAlignments(){return[]}};function pvt({layout:e,onChange:t}){const{minimumColumnWidth:n,columnCount:o,isManualPlacement:r}=e,i=n||(r||o?null:"12rem"),[c,l="rem"]=yo(i),u=p=>{t({...e,minimumColumnWidth:[p,l].join("")})},d=p=>{let f;["em","rem"].includes(p)&&l==="px"?f=(c/16).toFixed(2)+p:["em","rem"].includes(l)&&p==="px"&&(f=Math.round(c*16)+p),t({...e,minimumColumnWidth:f})};return a.jsxs("fieldset",{children:[a.jsx(no.VisualLabel,{as:"legend",children:m("Minimum column width")}),a.jsxs(Yo,{gap:4,children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{size:"__unstable-large",onChange:p=>{t({...e,minimumColumnWidth:p===""?void 0:p})},onUnitChange:d,value:i,units:uvt,min:0,label:m("Minimum column width"),hideLabelFromVision:!0})}),a.jsx(Tn,{isBlock:!0,children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,onChange:u,value:c||0,min:0,max:lvt[l]||600,withInputField:!1,label:m("Minimum column width"),hideLabelFromVision:!0})})]})]})}function fvt({layout:e,onChange:t,allowSizingOnChildren:n}){const o=window.__experimentalEnableGridInteractivity?void 0:3,{columnCount:r=o,rowCount:s,isManualPlacement:i}=e;return a.jsx(a.Fragment,{children:a.jsxs("fieldset",{children:[(!window.__experimentalEnableGridInteractivity||!i)&&a.jsx(no.VisualLabel,{as:"legend",children:m("Columns")}),a.jsxs(Yo,{gap:4,children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(g0,{size:"__unstable-large",onChange:c=>{if(window.__experimentalEnableGridInteractivity){const u=c===""||c==="0"?i?1:void 0:parseInt(c,10);t({...e,columnCount:u})}else{const l=c===""||c==="0"?1:parseInt(c,10);t({...e,columnCount:l})}},value:r,min:1,label:m("Columns"),hideLabelFromVision:!window.__experimentalEnableGridInteractivity||!i})}),a.jsx(Tn,{isBlock:!0,children:window.__experimentalEnableGridInteractivity&&n&&i?a.jsx(g0,{size:"__unstable-large",onChange:c=>{const l=c===""||c==="0"?1:parseInt(c,10);t({...e,rowCount:l})},value:s,min:1,label:m("Rows")}):a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:r??1,onChange:c=>t({...e,columnCount:c===""||c==="0"?1:c}),min:1,max:16,withInputField:!1,label:m("Columns"),hideLabelFromVision:!0})})]})]})})}function bvt({layout:e,onChange:t}){const{columnCount:n,rowCount:o,minimumColumnWidth:r,isManualPlacement:s}=e,[i,c]=x.useState(n||3),[l,u]=x.useState(o),[d,p]=x.useState(r||"12rem"),f=s||n&&!window.__experimentalEnableGridInteractivity?"manual":"auto",b=g=>{g==="manual"?p(r||"12rem"):(c(n||3),u(o)),t({...e,columnCount:g==="manual"?i:null,rowCount:g==="manual"&&window.__experimentalEnableGridInteractivity?l:void 0,isManualPlacement:g==="manual"&&window.__experimentalEnableGridInteractivity?!0:void 0,minimumColumnWidth:g==="auto"?d:null})},h=m(f==="manual"?"Grid items can be manually placed in any position on the grid.":"Grid items are placed automatically depending on their order.");return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Grid item position"),value:f,onChange:b,isBlock:!0,help:window.__experimentalEnableGridInteractivity?h:void 0,children:[a.jsx(Kn,{value:"auto",label:m("Auto")},"auto"),a.jsx(Kn,{value:"manual",label:m("Manual")},"manual")]})}const The=[dAt,iAt,ivt,dvt];function Rf(e="default"){return The.find(t=>t.name===e)}function hvt(){return The}const Ehe={type:"default"},Whe=x.createContext(Ehe),mvt=Whe.Provider;function w_(){return x.useContext(Whe)}function gvt({layout:e={},css:t,...n}){const o=Rf(e.type),[r]=Un("spacing.blockGap"),s=r!==null;if(o){if(t)return a.jsx("style",{children:t});const i=o.getLayoutStyle?.({hasBlockGapSupport:s,layout:e,...n});if(i)return a.jsx("style",{children:i})}return null}const KA=[],QZ=["none","left","center","right","wide","full"],Mvt=["wide","full"];function b7(e=QZ){e.includes("none")||(e=["none",...e]);const t=e.length===1&&e[0]==="none",[n,o,r]=G(l=>{var u;if(t)return[!1,!1,!1];const d=l(Q).getSettings();return[(u=d.alignWide)!==null&&u!==void 0?u:!1,d.supportsLayout,d.__unstableIsBlockBasedTheme]},[t]),s=w_();if(t)return KA;const i=Rf(s?.type);if(o){const u=i.getAlignments(s,r).filter(d=>e.includes(d.name));return u.length===1&&u[0].name==="none"?KA:u}if(i.name!=="default"&&i.name!=="constrained")return KA;const c=e.filter(l=>s.alignments?s.alignments.includes(l):!n&&Mvt.includes(l)?!1:QZ.includes(l)).map(l=>({name:l}));return c.length===1&&c[0].name==="none"?KA:c}const YA={none:{icon:Tw,title:We("None","Alignment option")},left:{icon:Ade,title:m("Align left")},center:{icon:yde,title:m("Align center")},right:{icon:vde,title:m("Align right")},wide:{icon:XP,title:m("Wide width")},full:{icon:DQe,title:m("Full width")}},zvt="none";function Nhe({value:e,onChange:t,controls:n,isToolbar:o,isCollapsed:r=!0}){const s=b7(n);if(!!!s.length)return null;function c(b){t([e,"none"].includes(b)?void 0:b)}const l=YA[e],u=YA[zvt],d=o?Wn:Lc,p={icon:l?l.icon:u.icon,label:m("Align")},f=o?{isCollapsed:r,controls:s.map(({name:b})=>({...YA[b],isActive:e===b||!e&&b==="none",role:r?"menuitemradio":void 0,onClick:()=>c(b)}))}:{toggleProps:{description:m("Change alignment")},children:({onClose:b})=>a.jsx(a.Fragment,{children:a.jsx(Cn,{className:"block-editor-block-alignment-control__menu-group",children:s.map(({name:h,info:g})=>{const{icon:z,title:A}=YA[h],_=h===e||!e&&h==="none";return a.jsx(Ct,{icon:z,iconPosition:"left",className:oe("components-dropdown-menu__menu-item",{"is-active":_}),isSelected:_,onClick:()=>{c(h),b()},role:"menuitemradio",info:g,children:A},h)})})})};return a.jsx(d,{...p,...f})}const Ovt=e=>a.jsx(Nhe,{...e,isToolbar:!1}),yvt=e=>a.jsx(Nhe,{...e,isToolbar:!0});function Avt({isActive:e,label:t=m("Full height"),onToggle:n,isDisabled:o}){return a.jsx(Vt,{isActive:e,icon:zz,label:t,onClick:()=>n(!e),disabled:o})}const vvt=()=>{};function xvt(e){const{label:t=m("Change matrix alignment"),onChange:n=vvt,value:o="center",isDisabled:r}=e,s=a.jsx(TG.Icon,{value:o});return a.jsx(so,{popoverProps:{placement:"bottom-start"},renderToggle:({onToggle:i,isOpen:c})=>{const l=u=>{!c&&u.keyCode===Ps&&(u.preventDefault(),i())};return a.jsx(Vt,{onClick:i,"aria-haspopup":"true","aria-expanded":c,onKeyDown:l,label:t,icon:s,showTooltip:!0,disabled:r})},renderContent:()=>a.jsx(TG,{hasFocusBorder:!1,onChange:n,value:o})})}function Fd({clientId:e,maximumLength:t,context:n}){const o=G(r=>{if(!e)return null;const{getBlockName:s,getBlockAttributes:i}=r(Q),{getBlockType:c,getActiveBlockVariation:l}=r(kt),u=s(e),d=c(u);if(!d)return null;const p=i(e),f=lie(d,p,n);return f!==d.title?f:l(u,p)?.title||d.title},[e,n]);if(!o)return null;if(t&&t>0&&o.length>t){const r="...";return o.slice(0,t-r.length)+r}return o}function _W({clientId:e,maximumLength:t,context:n}){return Fd({clientId:e,maximumLength:t,context:n})}const h7=x.createContext({refsMap:gc()});function wvt({children:e}){const t=x.useMemo(()=>({refsMap:gc()}),[]);return a.jsx(h7.Provider,{value:t,children:e})}function _vt(e){const{refsMap:t}=x.useContext(h7);return Mn(n=>(t.set(e,n),()=>t.delete(e)),[e])}function lq(e,t){typeof e=="function"?e(t):e&&(e.current=t)}function m7(e,t){const{refsMap:n}=x.useContext(h7);x.useLayoutEffect(()=>{lq(t,n.get(e));const o=n.subscribe(e,()=>lq(t,n.get(e)));return()=>{o(),lq(t,null)}},[n,e,t])}function Wi(e){const[t,n]=x.useState(null);return m7(e,n),t}function kvt(e){var t,n;if(!e)return null;const o=(t=Array.from(document.querySelectorAll('iframe[name="editor-canvas"]').values()).find(r=>(r.contentDocument||r.contentWindow.document)===e.ownerDocument))!==null&&t!==void 0?t:e;return(n=o?.closest('[role="region"]'))!==null&&n!==void 0?n:o}function Svt({rootLabelText:e}){const{selectBlock:t,clearSelectedBlock:n}=Oe(Q),{clientId:o,parents:r,hasSelection:s}=G(l=>{const{getSelectionStart:u,getSelectedBlockClientId:d,getEnabledBlockParents:p}=ct(l(Q)),f=d();return{parents:p(f),clientId:f,hasSelection:!!u().clientId}},[]),i=e||m("Document"),c=x.useRef();return m7(o,c),a.jsxs("ul",{className:"block-editor-block-breadcrumb",role:"list","aria-label":m("Block breadcrumb"),children:[a.jsxs("li",{className:s?void 0:"block-editor-block-breadcrumb__current","aria-current":s?void 0:"true",children:[s&&a.jsx(Ce,{size:"small",className:"block-editor-block-breadcrumb__button",onClick:()=>{const l=c.current?.closest(".editor-styles-wrapper");n(),kvt(l)?.focus()},children:i}),!s&&i,!!o&&a.jsx(wn,{icon:Af,className:"block-editor-block-breadcrumb__separator"})]}),r.map(l=>a.jsxs("li",{children:[a.jsx(Ce,{size:"small",className:"block-editor-block-breadcrumb__button",onClick:()=>t(l),children:a.jsx(_W,{clientId:l,maximumLength:35})}),a.jsx(wn,{icon:Af,className:"block-editor-block-breadcrumb__separator"})]},l)),!!o&&a.jsx("li",{className:"block-editor-block-breadcrumb__current","aria-current":"true",children:a.jsx(_W,{clientId:o,maximumLength:35})})]})}var Kb={},ZA={},JZ;function Cvt(){if(JZ)return ZA;JZ=1,Object.defineProperty(ZA,"__esModule",{value:!0}),ZA.default=e;function e(){}e.prototype={diff:function(r,s){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},c=i.callback;typeof i=="function"&&(c=i,i={}),this.options=i;var l=this;function u(_){return c?(setTimeout(function(){c(void 0,_)},0),!0):_}r=this.castInput(r),s=this.castInput(s),r=this.removeEmpty(this.tokenize(r)),s=this.removeEmpty(this.tokenize(s));var d=s.length,p=r.length,f=1,b=d+p,h=[{newPos:-1,components:[]}],g=this.extractCommon(h[0],s,r,0);if(h[0].newPos+1>=d&&g+1>=p)return u([{value:this.join(s),count:s.length}]);function z(){for(var _=-1*f;_<=f;_+=2){var v=void 0,M=h[_-1],y=h[_+1],k=(y?y.newPos:0)-_;M&&(h[_-1]=void 0);var S=M&&M.newPos+1<d,C=y&&0<=k&&k<p;if(!S&&!C){h[_]=void 0;continue}if(!S||C&&M.newPos<y.newPos?(v=n(y),l.pushComponent(v.components,void 0,!0)):(v=M,v.newPos++,l.pushComponent(v.components,!0,void 0)),k=l.extractCommon(v,s,r,_),v.newPos+1>=d&&k+1>=p)return u(t(l,v.components,s,r,l.useLongestToken));h[_]=v}f++}if(c)(function _(){setTimeout(function(){if(f>b)return c();z()||_()},0)})();else for(;f<=b;){var A=z();if(A)return A}},pushComponent:function(r,s,i){var c=r[r.length-1];c&&c.added===s&&c.removed===i?r[r.length-1]={count:c.count+1,added:s,removed:i}:r.push({count:1,added:s,removed:i})},extractCommon:function(r,s,i,c){for(var l=s.length,u=i.length,d=r.newPos,p=d-c,f=0;d+1<l&&p+1<u&&this.equals(s[d+1],i[p+1]);)d++,p++,f++;return f&&r.components.push({count:f}),r.newPos=d,p},equals:function(r,s){return this.options.comparator?this.options.comparator(r,s):r===s||this.options.ignoreCase&&r.toLowerCase()===s.toLowerCase()},removeEmpty:function(r){for(var s=[],i=0;i<r.length;i++)r[i]&&s.push(r[i]);return s},castInput:function(r){return r},tokenize:function(r){return r.split("")},join:function(r){return r.join("")}};function t(o,r,s,i,c){for(var l=0,u=r.length,d=0,p=0;l<u;l++){var f=r[l];if(f.removed){if(f.value=o.join(i.slice(p,p+f.count)),p+=f.count,l&&r[l-1].added){var h=r[l-1];r[l-1]=r[l],r[l]=h}}else{if(!f.added&&c){var b=s.slice(d,d+f.count);b=b.map(function(z,A){var _=i[p+A];return _.length>z.length?_:z}),f.value=o.join(b)}else f.value=o.join(s.slice(d,d+f.count));d+=f.count,f.added||(p+=f.count)}}var g=r[u-1];return u>1&&typeof g.value=="string"&&(g.added||g.removed)&&o.equals("",g.value)&&(r[u-2].value+=g.value,r.pop()),r}function n(o){return{newPos:o.newPos,components:o.components.slice(0)}}return ZA}var eQ;function qvt(){if(eQ)return Kb;eQ=1,Object.defineProperty(Kb,"__esModule",{value:!0}),Kb.diffChars=o,Kb.characterDiff=void 0;var e=t(Cvt());function t(r){return r&&r.__esModule?r:{default:r}}var n=new e.default;Kb.characterDiff=n;function o(r,s,i){return n.diff(r,s,i)}return Kb}var Rvt=qvt();function tQ({title:e,rawContent:t,renderedContent:n,action:o,actionText:r,className:s}){return a.jsxs("div",{className:s,children:[a.jsxs("div",{className:"block-editor-block-compare__content",children:[a.jsx("h2",{className:"block-editor-block-compare__heading",children:e}),a.jsx("div",{className:"block-editor-block-compare__html",children:t}),a.jsx("div",{className:"block-editor-block-compare__preview edit-post-visual-editor",children:a.jsx(i0,{children:q5(n)})})]}),a.jsx("div",{className:"block-editor-block-compare__action",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",tabIndex:"0",onClick:o,children:r})})]})}function Tvt({block:e,onKeep:t,onConvert:n,convertor:o,convertButtonText:r}){function s(u,d){return Rvt.diffChars(u,d).map((f,b)=>{const h=oe({"block-editor-block-compare__added":f.added,"block-editor-block-compare__removed":f.removed});return a.jsx("span",{className:h,children:f.value},b)})}function i(u){return(Array.isArray(u)?u:[u]).map(f=>Gf(f.name,f.attributes,f.innerBlocks)).join("")}const c=i(o(e)),l=s(e.originalContent,c);return a.jsxs("div",{className:"block-editor-block-compare__wrapper",children:[a.jsx(tQ,{title:m("Current"),className:"block-editor-block-compare__current",action:t,actionText:m("Convert to HTML"),rawContent:e.originalContent,renderedContent:e.originalContent}),a.jsx(tQ,{title:m("After Conversion"),className:"block-editor-block-compare__converted",action:n,actionText:r,rawContent:l,renderedContent:c})]})}const nQ=e=>O3({HTML:e.originalContent});function Evt({clientId:e}){const{block:t,canInsertHTMLBlock:n,canInsertClassicBlock:o}=G(d=>{const{canInsertBlockType:p,getBlock:f,getBlockRootClientId:b}=d(Q),h=b(e);return{block:f(e),canInsertHTMLBlock:p("core/html",h),canInsertClassicBlock:p("core/freeform",h)}},[e]),{replaceBlock:r}=Oe(Q),[s,i]=x.useState(!1),c=x.useCallback(()=>i(!1),[]),l=x.useMemo(()=>({toClassic(){const d=Ee("core/freeform",{content:t.originalContent});return r(t.clientId,d)},toHTML(){const d=Ee("core/html",{content:t.originalContent});return r(t.clientId,d)},toBlocks(){const d=nQ(t);return r(t.clientId,d)},toRecoveredBlock(){const d=Ee(t.name,t.attributes,t.innerBlocks);return r(t.clientId,d)}}),[t,r]),u=x.useMemo(()=>[{title:We("Resolve","imperative verb"),onClick:()=>i(!0)},n&&{title:m("Convert to HTML"),onClick:l.toHTML},o&&{title:m("Convert to Classic Block"),onClick:l.toClassic}].filter(Boolean),[n,o,l]);return a.jsxs(a.Fragment,{children:[a.jsx(Er,{actions:[a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:l.toRecoveredBlock,variant:"primary",children:m("Attempt recovery")},"recover")],secondaryActions:u,children:m("Block contains unexpected or invalid content.")}),s&&a.jsx(Zo,{title:m("Resolve Block"),onRequestClose:c,className:"block-editor-block-compare",children:a.jsx(Tvt,{block:t,onKeep:l.toHTML,onConvert:l.toBlocks,convertor:nQ,convertButtonText:m("Convert to Blocks")})})]})}const Wvt=a.jsx(Er,{className:"block-editor-block-list__block-crash-warning",children:m("This block has encountered an error and cannot be previewed.")}),Nvt=()=>Wvt;class Bvt extends x.Component{constructor(){super(...arguments),this.state={hasError:!1}}componentDidCatch(){this.setState({hasError:!0})}render(){return this.state.hasError?this.props.fallback:this.props.children}}var uq={},ja={},dq={exports:{}},pq,oQ;function Lvt(){if(oQ)return pq;oQ=1;var e="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";return pq=e,pq}var fq,rQ;function Pvt(){if(rQ)return fq;rQ=1;var e=Lvt();function t(){}function n(){}return n.resetWarningCache=t,fq=function(){function o(i,c,l,u,d,p){if(p!==e){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw f.name="Invariant Violation",f}}o.isRequired=o;function r(){return o}var s={array:o,bigint:o,bool:o,func:o,number:o,object:o,string:o,symbol:o,any:o,arrayOf:r,element:o,elementType:o,instanceOf:r,node:o,objectOf:r,oneOf:r,oneOfType:r,shape:r,exact:r,checkPropTypes:n,resetWarningCache:t};return s.PropTypes=s,s},fq}var sQ;function jvt(){return sQ||(sQ=1,dq.exports=Pvt()()),dq.exports}var cM={exports:{}};/*! + `}}),s&&p&&(h+=z_(t,i,"constrained",p)),h},getOrientation(){return"vertical"},getAlignments(e){const t=_he(e);if(e.alignments!==void 0)return e.alignments.includes("none")||e.alignments.unshift("none"),e.alignments.map(s=>({name:s,info:t[s]}));const{contentSize:n,wideSize:o}=e,r=[{name:"left"},{name:"center"},{name:"right"}];return n&&r.unshift({name:"full"}),o&&r.unshift({name:"wide",info:t.wide}),r.unshift({name:"none",info:t.none}),r}},ivt={placement:"bottom-start"};function avt({layout:e,onChange:t}){const{justifyContent:n="center"}=e,o=s=>{t({...e,justifyContent:s})},r=["left","center","right"];return a.jsx(Jze,{allowedControls:r,value:n,onChange:o,popoverProps:ivt})}const cvt={px:600,"%":100,vw:100,vh:100,em:38,rem:38,svw:100,lvw:100,dvw:100,svh:100,lvh:100,dvh:100,vi:100,svi:100,lvi:100,dvi:100,vb:100,svb:100,lvb:100,dvb:100,vmin:100,svmin:100,lvmin:100,dvmin:100,vmax:100,svmax:100,lvmax:100,dvmax:100},lvt=[{value:"px",label:"px",default:0},{value:"rem",label:"rem",default:0},{value:"em",label:"em",default:0}],uvt={name:"grid",label:m("Grid"),inspectorControls:function({layout:t={},onChange:n,layoutBlockSupport:o={}}){const{allowSizingOnChildren:r=!1}=o,s=window.__experimentalEnableGridInteractivity||!!t?.columnCount,i=window.__experimentalEnableGridInteractivity||!t?.columnCount;return a.jsxs(a.Fragment,{children:[a.jsx(fvt,{layout:t,onChange:n}),a.jsxs(dt,{spacing:4,children:[s&&a.jsx(pvt,{layout:t,onChange:n,allowSizingOnChildren:r}),i&&a.jsx(dvt,{layout:t,onChange:n})]})]})},toolBarControls:function(){return null},getLayoutStyle:function({selector:t,layout:n,style:o,blockName:r,hasBlockGapSupport:s,layoutDefinitions:i=Dd}){const{minimumColumnWidth:c=null,columnCount:l=null,rowCount:u=null}=n,d=o?.spacing?.blockGap&&!W0(r,"spacing","blockGap")?us(o?.spacing?.blockGap,"0.5em"):void 0;let p="";const f=[];if(c&&l>0){const b=`max(${c}, ( 100% - (${d||"1.2rem"}*${l-1}) ) / ${l})`;f.push(`grid-template-columns: repeat(auto-fill, minmax(${b}, 1fr))`,"container-type: inline-size"),u&&f.push(`grid-template-rows: repeat(${u}, minmax(1rem, auto))`)}else l?(f.push(`grid-template-columns: repeat(${l}, minmax(0, 1fr))`),u&&f.push(`grid-template-rows: repeat(${u}, minmax(1rem, auto))`)):f.push(`grid-template-columns: repeat(auto-fill, minmax(min(${c||"12rem"}, 100%), 1fr))`,"container-type: inline-size");return f.length&&(p=`${Ja(t)} { ${f.join("; ")}; }`),s&&d&&(p+=z_(t,i,"grid",d)),p},getOrientation(){return"horizontal"},getAlignments(){return[]}};function dvt({layout:e,onChange:t}){const{minimumColumnWidth:n,columnCount:o,isManualPlacement:r}=e,i=n||(r||o?null:"12rem"),[c,l="rem"]=yo(i),u=p=>{t({...e,minimumColumnWidth:[p,l].join("")})},d=p=>{let f;["em","rem"].includes(p)&&l==="px"?f=(c/16).toFixed(2)+p:["em","rem"].includes(l)&&p==="px"&&(f=Math.round(c*16)+p),t({...e,minimumColumnWidth:f})};return a.jsxs("fieldset",{children:[a.jsx(no.VisualLabel,{as:"legend",children:m("Minimum column width")}),a.jsxs(Yo,{gap:4,children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{size:"__unstable-large",onChange:p=>{t({...e,minimumColumnWidth:p===""?void 0:p})},onUnitChange:d,value:i,units:lvt,min:0,label:m("Minimum column width"),hideLabelFromVision:!0})}),a.jsx(Tn,{isBlock:!0,children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,onChange:u,value:c||0,min:0,max:cvt[l]||600,withInputField:!1,label:m("Minimum column width"),hideLabelFromVision:!0})})]})]})}function pvt({layout:e,onChange:t,allowSizingOnChildren:n}){const o=window.__experimentalEnableGridInteractivity?void 0:3,{columnCount:r=o,rowCount:s,isManualPlacement:i}=e;return a.jsx(a.Fragment,{children:a.jsxs("fieldset",{children:[(!window.__experimentalEnableGridInteractivity||!i)&&a.jsx(no.VisualLabel,{as:"legend",children:m("Columns")}),a.jsxs(Yo,{gap:4,children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(g0,{size:"__unstable-large",onChange:c=>{if(window.__experimentalEnableGridInteractivity){const u=c===""||c==="0"?i?1:void 0:parseInt(c,10);t({...e,columnCount:u})}else{const l=c===""||c==="0"?1:parseInt(c,10);t({...e,columnCount:l})}},value:r,min:1,label:m("Columns"),hideLabelFromVision:!window.__experimentalEnableGridInteractivity||!i})}),a.jsx(Tn,{isBlock:!0,children:window.__experimentalEnableGridInteractivity&&n&&i?a.jsx(g0,{size:"__unstable-large",onChange:c=>{const l=c===""||c==="0"?1:parseInt(c,10);t({...e,rowCount:l})},value:s,min:1,label:m("Rows")}):a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:r??1,onChange:c=>t({...e,columnCount:c===""||c==="0"?1:c}),min:1,max:16,withInputField:!1,label:m("Columns"),hideLabelFromVision:!0})})]})]})})}function fvt({layout:e,onChange:t}){const{columnCount:n,rowCount:o,minimumColumnWidth:r,isManualPlacement:s}=e,[i,c]=x.useState(n||3),[l,u]=x.useState(o),[d,p]=x.useState(r||"12rem"),f=s||n&&!window.__experimentalEnableGridInteractivity?"manual":"auto",b=g=>{g==="manual"?p(r||"12rem"):(c(n||3),u(o)),t({...e,columnCount:g==="manual"?i:null,rowCount:g==="manual"&&window.__experimentalEnableGridInteractivity?l:void 0,isManualPlacement:g==="manual"&&window.__experimentalEnableGridInteractivity?!0:void 0,minimumColumnWidth:g==="auto"?d:null})},h=m(f==="manual"?"Grid items can be manually placed in any position on the grid.":"Grid items are placed automatically depending on their order.");return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Grid item position"),value:f,onChange:b,isBlock:!0,help:window.__experimentalEnableGridInteractivity?h:void 0,children:[a.jsx(Kn,{value:"auto",label:m("Auto")},"auto"),a.jsx(Kn,{value:"manual",label:m("Manual")},"manual")]})}const The=[uAt,sAt,svt,uvt];function Rf(e="default"){return The.find(t=>t.name===e)}function bvt(){return The}const Ehe={type:"default"},Whe=x.createContext(Ehe),hvt=Whe.Provider;function x_(){return x.useContext(Whe)}function mvt({layout:e={},css:t,...n}){const o=Rf(e.type),[r]=Un("spacing.blockGap"),s=r!==null;if(o){if(t)return a.jsx("style",{children:t});const i=o.getLayoutStyle?.({hasBlockGapSupport:s,layout:e,...n});if(i)return a.jsx("style",{children:i})}return null}const GA=[],QZ=["none","left","center","right","wide","full"],gvt=["wide","full"];function f7(e=QZ){e.includes("none")||(e=["none",...e]);const t=e.length===1&&e[0]==="none",[n,o,r]=G(l=>{var u;if(t)return[!1,!1,!1];const d=l(Q).getSettings();return[(u=d.alignWide)!==null&&u!==void 0?u:!1,d.supportsLayout,d.__unstableIsBlockBasedTheme]},[t]),s=x_();if(t)return GA;const i=Rf(s?.type);if(o){const u=i.getAlignments(s,r).filter(d=>e.includes(d.name));return u.length===1&&u[0].name==="none"?GA:u}if(i.name!=="default"&&i.name!=="constrained")return GA;const c=e.filter(l=>s.alignments?s.alignments.includes(l):!n&&gvt.includes(l)?!1:QZ.includes(l)).map(l=>({name:l}));return c.length===1&&c[0].name==="none"?GA:c}const KA={none:{icon:Rw,title:We("None","Alignment option")},left:{icon:Ade,title:m("Align left")},center:{icon:yde,title:m("Align center")},right:{icon:vde,title:m("Align right")},wide:{icon:UP,title:m("Wide width")},full:{icon:IQe,title:m("Full width")}},Mvt="none";function Nhe({value:e,onChange:t,controls:n,isToolbar:o,isCollapsed:r=!0}){const s=f7(n);if(!!!s.length)return null;function c(b){t([e,"none"].includes(b)?void 0:b)}const l=KA[e],u=KA[Mvt],d=o?Wn:Lc,p={icon:l?l.icon:u.icon,label:m("Align")},f=o?{isCollapsed:r,controls:s.map(({name:b})=>({...KA[b],isActive:e===b||!e&&b==="none",role:r?"menuitemradio":void 0,onClick:()=>c(b)}))}:{toggleProps:{description:m("Change alignment")},children:({onClose:b})=>a.jsx(a.Fragment,{children:a.jsx(Cn,{className:"block-editor-block-alignment-control__menu-group",children:s.map(({name:h,info:g})=>{const{icon:z,title:A}=KA[h],_=h===e||!e&&h==="none";return a.jsx(Ct,{icon:z,iconPosition:"left",className:oe("components-dropdown-menu__menu-item",{"is-active":_}),isSelected:_,onClick:()=>{c(h),b()},role:"menuitemradio",info:g,children:A},h)})})})};return a.jsx(d,{...p,...f})}const zvt=e=>a.jsx(Nhe,{...e,isToolbar:!1}),Ovt=e=>a.jsx(Nhe,{...e,isToolbar:!0});function yvt({isActive:e,label:t=m("Full height"),onToggle:n,isDisabled:o}){return a.jsx(Vt,{isActive:e,icon:zz,label:t,onClick:()=>n(!e),disabled:o})}const Avt=()=>{};function vvt(e){const{label:t=m("Change matrix alignment"),onChange:n=Avt,value:o="center",isDisabled:r}=e,s=a.jsx(TG.Icon,{value:o});return a.jsx(so,{popoverProps:{placement:"bottom-start"},renderToggle:({onToggle:i,isOpen:c})=>{const l=u=>{!c&&u.keyCode===Ps&&(u.preventDefault(),i())};return a.jsx(Vt,{onClick:i,"aria-haspopup":"true","aria-expanded":c,onKeyDown:l,label:t,icon:s,showTooltip:!0,disabled:r})},renderContent:()=>a.jsx(TG,{hasFocusBorder:!1,onChange:n,value:o})})}function Fd({clientId:e,maximumLength:t,context:n}){const o=G(r=>{if(!e)return null;const{getBlockName:s,getBlockAttributes:i}=r(Q),{getBlockType:c,getActiveBlockVariation:l}=r(kt),u=s(e),d=c(u);if(!d)return null;const p=i(e),f=lie(d,p,n);return f!==d.title?f:l(u,p)?.title||d.title},[e,n]);if(!o)return null;if(t&&t>0&&o.length>t){const r="...";return o.slice(0,t-r.length)+r}return o}function wW({clientId:e,maximumLength:t,context:n}){return Fd({clientId:e,maximumLength:t,context:n})}const b7=x.createContext({refsMap:gc()});function xvt({children:e}){const t=x.useMemo(()=>({refsMap:gc()}),[]);return a.jsx(b7.Provider,{value:t,children:e})}function wvt(e){const{refsMap:t}=x.useContext(b7);return Mn(n=>(t.set(e,n),()=>t.delete(e)),[e])}function cq(e,t){typeof e=="function"?e(t):e&&(e.current=t)}function h7(e,t){const{refsMap:n}=x.useContext(b7);x.useLayoutEffect(()=>{cq(t,n.get(e));const o=n.subscribe(e,()=>cq(t,n.get(e)));return()=>{o(),cq(t,null)}},[n,e,t])}function Wi(e){const[t,n]=x.useState(null);return h7(e,n),t}function _vt(e){var t,n;if(!e)return null;const o=(t=Array.from(document.querySelectorAll('iframe[name="editor-canvas"]').values()).find(r=>(r.contentDocument||r.contentWindow.document)===e.ownerDocument))!==null&&t!==void 0?t:e;return(n=o?.closest('[role="region"]'))!==null&&n!==void 0?n:o}function kvt({rootLabelText:e}){const{selectBlock:t,clearSelectedBlock:n}=Oe(Q),{clientId:o,parents:r,hasSelection:s}=G(l=>{const{getSelectionStart:u,getSelectedBlockClientId:d,getEnabledBlockParents:p}=ct(l(Q)),f=d();return{parents:p(f),clientId:f,hasSelection:!!u().clientId}},[]),i=e||m("Document"),c=x.useRef();return h7(o,c),a.jsxs("ul",{className:"block-editor-block-breadcrumb",role:"list","aria-label":m("Block breadcrumb"),children:[a.jsxs("li",{className:s?void 0:"block-editor-block-breadcrumb__current","aria-current":s?void 0:"true",children:[s&&a.jsx(Ce,{size:"small",className:"block-editor-block-breadcrumb__button",onClick:()=>{const l=c.current?.closest(".editor-styles-wrapper");n(),_vt(l)?.focus()},children:i}),!s&&i,!!o&&a.jsx(wn,{icon:Af,className:"block-editor-block-breadcrumb__separator"})]}),r.map(l=>a.jsxs("li",{children:[a.jsx(Ce,{size:"small",className:"block-editor-block-breadcrumb__button",onClick:()=>t(l),children:a.jsx(wW,{clientId:l,maximumLength:35})}),a.jsx(wn,{icon:Af,className:"block-editor-block-breadcrumb__separator"})]},l)),!!o&&a.jsx("li",{className:"block-editor-block-breadcrumb__current","aria-current":"true",children:a.jsx(wW,{clientId:o,maximumLength:35})})]})}var Kb={},YA={},JZ;function Svt(){if(JZ)return YA;JZ=1,Object.defineProperty(YA,"__esModule",{value:!0}),YA.default=e;function e(){}e.prototype={diff:function(r,s){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},c=i.callback;typeof i=="function"&&(c=i,i={}),this.options=i;var l=this;function u(_){return c?(setTimeout(function(){c(void 0,_)},0),!0):_}r=this.castInput(r),s=this.castInput(s),r=this.removeEmpty(this.tokenize(r)),s=this.removeEmpty(this.tokenize(s));var d=s.length,p=r.length,f=1,b=d+p,h=[{newPos:-1,components:[]}],g=this.extractCommon(h[0],s,r,0);if(h[0].newPos+1>=d&&g+1>=p)return u([{value:this.join(s),count:s.length}]);function z(){for(var _=-1*f;_<=f;_+=2){var v=void 0,M=h[_-1],y=h[_+1],k=(y?y.newPos:0)-_;M&&(h[_-1]=void 0);var S=M&&M.newPos+1<d,C=y&&0<=k&&k<p;if(!S&&!C){h[_]=void 0;continue}if(!S||C&&M.newPos<y.newPos?(v=n(y),l.pushComponent(v.components,void 0,!0)):(v=M,v.newPos++,l.pushComponent(v.components,!0,void 0)),k=l.extractCommon(v,s,r,_),v.newPos+1>=d&&k+1>=p)return u(t(l,v.components,s,r,l.useLongestToken));h[_]=v}f++}if(c)(function _(){setTimeout(function(){if(f>b)return c();z()||_()},0)})();else for(;f<=b;){var A=z();if(A)return A}},pushComponent:function(r,s,i){var c=r[r.length-1];c&&c.added===s&&c.removed===i?r[r.length-1]={count:c.count+1,added:s,removed:i}:r.push({count:1,added:s,removed:i})},extractCommon:function(r,s,i,c){for(var l=s.length,u=i.length,d=r.newPos,p=d-c,f=0;d+1<l&&p+1<u&&this.equals(s[d+1],i[p+1]);)d++,p++,f++;return f&&r.components.push({count:f}),r.newPos=d,p},equals:function(r,s){return this.options.comparator?this.options.comparator(r,s):r===s||this.options.ignoreCase&&r.toLowerCase()===s.toLowerCase()},removeEmpty:function(r){for(var s=[],i=0;i<r.length;i++)r[i]&&s.push(r[i]);return s},castInput:function(r){return r},tokenize:function(r){return r.split("")},join:function(r){return r.join("")}};function t(o,r,s,i,c){for(var l=0,u=r.length,d=0,p=0;l<u;l++){var f=r[l];if(f.removed){if(f.value=o.join(i.slice(p,p+f.count)),p+=f.count,l&&r[l-1].added){var h=r[l-1];r[l-1]=r[l],r[l]=h}}else{if(!f.added&&c){var b=s.slice(d,d+f.count);b=b.map(function(z,A){var _=i[p+A];return _.length>z.length?_:z}),f.value=o.join(b)}else f.value=o.join(s.slice(d,d+f.count));d+=f.count,f.added||(p+=f.count)}}var g=r[u-1];return u>1&&typeof g.value=="string"&&(g.added||g.removed)&&o.equals("",g.value)&&(r[u-2].value+=g.value,r.pop()),r}function n(o){return{newPos:o.newPos,components:o.components.slice(0)}}return YA}var eQ;function Cvt(){if(eQ)return Kb;eQ=1,Object.defineProperty(Kb,"__esModule",{value:!0}),Kb.diffChars=o,Kb.characterDiff=void 0;var e=t(Svt());function t(r){return r&&r.__esModule?r:{default:r}}var n=new e.default;Kb.characterDiff=n;function o(r,s,i){return n.diff(r,s,i)}return Kb}var qvt=Cvt();function tQ({title:e,rawContent:t,renderedContent:n,action:o,actionText:r,className:s}){return a.jsxs("div",{className:s,children:[a.jsxs("div",{className:"block-editor-block-compare__content",children:[a.jsx("h2",{className:"block-editor-block-compare__heading",children:e}),a.jsx("div",{className:"block-editor-block-compare__html",children:t}),a.jsx("div",{className:"block-editor-block-compare__preview edit-post-visual-editor",children:a.jsx(i0,{children:C5(n)})})]}),a.jsx("div",{className:"block-editor-block-compare__action",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",tabIndex:"0",onClick:o,children:r})})]})}function Rvt({block:e,onKeep:t,onConvert:n,convertor:o,convertButtonText:r}){function s(u,d){return qvt.diffChars(u,d).map((f,b)=>{const h=oe({"block-editor-block-compare__added":f.added,"block-editor-block-compare__removed":f.removed});return a.jsx("span",{className:h,children:f.value},b)})}function i(u){return(Array.isArray(u)?u:[u]).map(f=>Gf(f.name,f.attributes,f.innerBlocks)).join("")}const c=i(o(e)),l=s(e.originalContent,c);return a.jsxs("div",{className:"block-editor-block-compare__wrapper",children:[a.jsx(tQ,{title:m("Current"),className:"block-editor-block-compare__current",action:t,actionText:m("Convert to HTML"),rawContent:e.originalContent,renderedContent:e.originalContent}),a.jsx(tQ,{title:m("After Conversion"),className:"block-editor-block-compare__converted",action:n,actionText:r,rawContent:l,renderedContent:c})]})}const nQ=e=>O3({HTML:e.originalContent});function Tvt({clientId:e}){const{block:t,canInsertHTMLBlock:n,canInsertClassicBlock:o}=G(d=>{const{canInsertBlockType:p,getBlock:f,getBlockRootClientId:b}=d(Q),h=b(e);return{block:f(e),canInsertHTMLBlock:p("core/html",h),canInsertClassicBlock:p("core/freeform",h)}},[e]),{replaceBlock:r}=Oe(Q),[s,i]=x.useState(!1),c=x.useCallback(()=>i(!1),[]),l=x.useMemo(()=>({toClassic(){const d=Ee("core/freeform",{content:t.originalContent});return r(t.clientId,d)},toHTML(){const d=Ee("core/html",{content:t.originalContent});return r(t.clientId,d)},toBlocks(){const d=nQ(t);return r(t.clientId,d)},toRecoveredBlock(){const d=Ee(t.name,t.attributes,t.innerBlocks);return r(t.clientId,d)}}),[t,r]),u=x.useMemo(()=>[{title:We("Resolve","imperative verb"),onClick:()=>i(!0)},n&&{title:m("Convert to HTML"),onClick:l.toHTML},o&&{title:m("Convert to Classic Block"),onClick:l.toClassic}].filter(Boolean),[n,o,l]);return a.jsxs(a.Fragment,{children:[a.jsx(Er,{actions:[a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:l.toRecoveredBlock,variant:"primary",children:m("Attempt recovery")},"recover")],secondaryActions:u,children:m("Block contains unexpected or invalid content.")}),s&&a.jsx(Zo,{title:m("Resolve Block"),onRequestClose:c,className:"block-editor-block-compare",children:a.jsx(Rvt,{block:t,onKeep:l.toHTML,onConvert:l.toBlocks,convertor:nQ,convertButtonText:m("Convert to Blocks")})})]})}const Evt=a.jsx(Er,{className:"block-editor-block-list__block-crash-warning",children:m("This block has encountered an error and cannot be previewed.")}),Wvt=()=>Evt;class Nvt extends x.Component{constructor(){super(...arguments),this.state={hasError:!1}}componentDidCatch(){this.setState({hasError:!0})}render(){return this.state.hasError?this.props.fallback:this.props.children}}var lq={},ja={},uq={exports:{}},dq,oQ;function Bvt(){if(oQ)return dq;oQ=1;var e="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";return dq=e,dq}var pq,rQ;function Lvt(){if(rQ)return pq;rQ=1;var e=Bvt();function t(){}function n(){}return n.resetWarningCache=t,pq=function(){function o(i,c,l,u,d,p){if(p!==e){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw f.name="Invariant Violation",f}}o.isRequired=o;function r(){return o}var s={array:o,bigint:o,bool:o,func:o,number:o,object:o,string:o,symbol:o,any:o,arrayOf:r,element:o,elementType:o,instanceOf:r,node:o,objectOf:r,oneOf:r,oneOfType:r,shape:r,exact:r,checkPropTypes:n,resetWarningCache:t};return s.PropTypes=s,s},pq}var sQ;function Pvt(){return sQ||(sQ=1,uq.exports=Lvt()()),uq.exports}var cM={exports:{}};/*! autosize 4.0.4 license: MIT http://www.jacklmoore.com/autosize -*/var Ivt=cM.exports,iQ;function Dvt(){return iQ||(iQ=1,function(e,t){(function(n,o){o(e,t)})(Ivt,function(n,o){var r=typeof Map=="function"?new Map:function(){var d=[],p=[];return{has:function(b){return d.indexOf(b)>-1},get:function(b){return p[d.indexOf(b)]},set:function(b,h){d.indexOf(b)===-1&&(d.push(b),p.push(h))},delete:function(b){var h=d.indexOf(b);h>-1&&(d.splice(h,1),p.splice(h,1))}}}(),s=function(p){return new Event(p,{bubbles:!0})};try{new Event("test")}catch{s=function(f){var b=document.createEvent("Event");return b.initEvent(f,!0,!1),b}}function i(d){if(!d||!d.nodeName||d.nodeName!=="TEXTAREA"||r.has(d))return;var p=null,f=null,b=null;function h(){var y=window.getComputedStyle(d,null);y.resize==="vertical"?d.style.resize="none":y.resize==="both"&&(d.style.resize="horizontal"),y.boxSizing==="content-box"?p=-(parseFloat(y.paddingTop)+parseFloat(y.paddingBottom)):p=parseFloat(y.borderTopWidth)+parseFloat(y.borderBottomWidth),isNaN(p)&&(p=0),_()}function g(y){{var k=d.style.width;d.style.width="0px",d.offsetWidth,d.style.width=k}d.style.overflowY=y}function z(y){for(var k=[];y&&y.parentNode&&y.parentNode instanceof Element;)y.parentNode.scrollTop&&k.push({node:y.parentNode,scrollTop:y.parentNode.scrollTop}),y=y.parentNode;return k}function A(){if(d.scrollHeight!==0){var y=z(d),k=document.documentElement&&document.documentElement.scrollTop;d.style.height="",d.style.height=d.scrollHeight+p+"px",f=d.clientWidth,y.forEach(function(S){S.node.scrollTop=S.scrollTop}),k&&(document.documentElement.scrollTop=k)}}function _(){A();var y=Math.round(parseFloat(d.style.height)),k=window.getComputedStyle(d,null),S=k.boxSizing==="content-box"?Math.round(parseFloat(k.height)):d.offsetHeight;if(S<y?k.overflowY==="hidden"&&(g("scroll"),A(),S=k.boxSizing==="content-box"?Math.round(parseFloat(window.getComputedStyle(d,null).height)):d.offsetHeight):k.overflowY!=="hidden"&&(g("hidden"),A(),S=k.boxSizing==="content-box"?Math.round(parseFloat(window.getComputedStyle(d,null).height)):d.offsetHeight),b!==S){b=S;var C=s("autosize:resized");try{d.dispatchEvent(C)}catch{}}}var v=function(){d.clientWidth!==f&&_()},M=function(y){window.removeEventListener("resize",v,!1),d.removeEventListener("input",_,!1),d.removeEventListener("keyup",_,!1),d.removeEventListener("autosize:destroy",M,!1),d.removeEventListener("autosize:update",_,!1),Object.keys(y).forEach(function(k){d.style[k]=y[k]}),r.delete(d)}.bind(d,{height:d.style.height,resize:d.style.resize,overflowY:d.style.overflowY,overflowX:d.style.overflowX,wordWrap:d.style.wordWrap});d.addEventListener("autosize:destroy",M,!1),"onpropertychange"in d&&"oninput"in d&&d.addEventListener("keyup",_,!1),window.addEventListener("resize",v,!1),d.addEventListener("input",_,!1),d.addEventListener("autosize:update",_,!1),d.style.overflowX="hidden",d.style.wordWrap="break-word",r.set(d,{destroy:M,update:_}),h()}function c(d){var p=r.get(d);p&&p.destroy()}function l(d){var p=r.get(d);p&&p.update()}var u=null;typeof window>"u"||typeof window.getComputedStyle!="function"?(u=function(p){return p},u.destroy=function(d){return d},u.update=function(d){return d}):(u=function(p,f){return p&&Array.prototype.forEach.call(p.length?p:[p],function(b){return i(b)}),p},u.destroy=function(d){return d&&Array.prototype.forEach.call(d.length?d:[d],c),d},u.update=function(d){return d&&Array.prototype.forEach.call(d.length?d:[d],l),d}),o.default=u,n.exports=o.default})}(cM,cM.exports)),cM.exports}var bq,aQ;function Fvt(){if(aQ)return bq;aQ=1;var e=function(t,n,o){return o=window.getComputedStyle,(o?o(t):t.currentStyle)[n.replace(/-(\w)/gi,function(r,s){return s.toUpperCase()})]};return bq=e,bq}var hq,cQ;function $vt(){if(cQ)return hq;cQ=1;var e=Fvt();function t(n){var o=e(n,"line-height"),r=parseFloat(o,10);if(o===r+""){var s=n.style.lineHeight;n.style.lineHeight=o+"em",o=e(n,"line-height"),r=parseFloat(o,10),s?n.style.lineHeight=s:delete n.style.lineHeight}if(o.indexOf("pt")!==-1?(r*=4,r/=3):o.indexOf("mm")!==-1?(r*=96,r/=25.4):o.indexOf("cm")!==-1?(r*=96,r/=2.54):o.indexOf("in")!==-1?r*=96:o.indexOf("pc")!==-1&&(r*=16),r=Math.round(r),o==="normal"){var i=n.nodeName,c=document.createElement(i);c.innerHTML=" ",i.toUpperCase()==="TEXTAREA"&&c.setAttribute("rows","1");var l=e(n,"font-size");c.style.fontSize=l,c.style.padding="0px",c.style.border="0px";var u=document.body;u.appendChild(c);var d=c.offsetHeight;r=d,u.removeChild(c)}return r}return hq=t,hq}var lQ;function Vvt(){if(lQ)return ja;lQ=1;var e=ja&&ja.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var b in f)f.hasOwnProperty(b)&&(p[b]=f[b])};return function(p,f){d(p,f);function b(){this.constructor=p}p.prototype=f===null?Object.create(f):(b.prototype=f.prototype,new b)}}(),t=ja&&ja.__assign||Object.assign||function(d){for(var p,f=1,b=arguments.length;f<b;f++){p=arguments[f];for(var h in p)Object.prototype.hasOwnProperty.call(p,h)&&(d[h]=p[h])}return d},n=ja&&ja.__rest||function(d,p){var f={};for(var b in d)Object.prototype.hasOwnProperty.call(d,b)&&p.indexOf(b)<0&&(f[b]=d[b]);if(d!=null&&typeof Object.getOwnPropertySymbols=="function")for(var h=0,b=Object.getOwnPropertySymbols(d);h<b.length;h++)p.indexOf(b[h])<0&&(f[b[h]]=d[b[h]]);return f};ja.__esModule=!0;var o=i3(),r=jvt(),s=Dvt(),i=$vt(),c=i,l="autosize:resized",u=function(d){e(p,d);function p(){var f=d!==null&&d.apply(this,arguments)||this;return f.state={lineHeight:null},f.textarea=null,f.onResize=function(b){f.props.onResize&&f.props.onResize(b)},f.updateLineHeight=function(){f.textarea&&f.setState({lineHeight:c(f.textarea)})},f.onChange=function(b){var h=f.props.onChange;f.currentValue=b.currentTarget.value,h&&h(b)},f}return p.prototype.componentDidMount=function(){var f=this,b=this.props,h=b.maxRows,g=b.async;typeof h=="number"&&this.updateLineHeight(),typeof h=="number"||g?setTimeout(function(){return f.textarea&&s(f.textarea)}):this.textarea&&s(this.textarea),this.textarea&&this.textarea.addEventListener(l,this.onResize)},p.prototype.componentWillUnmount=function(){this.textarea&&(this.textarea.removeEventListener(l,this.onResize),s.destroy(this.textarea))},p.prototype.render=function(){var f=this,b=this,h=b.props;h.onResize;var g=h.maxRows;h.onChange;var z=h.style;h.innerRef;var A=h.children,_=n(h,["onResize","maxRows","onChange","style","innerRef","children"]),v=b.state.lineHeight,M=g&&v?v*g:null;return o.createElement("textarea",t({},_,{onChange:this.onChange,style:M?t({},z,{maxHeight:M}):z,ref:function(y){f.textarea=y,typeof f.props.innerRef=="function"?f.props.innerRef(y):f.props.innerRef&&(f.props.innerRef.current=y)}}),A)},p.prototype.componentDidUpdate=function(){this.textarea&&s.update(this.textarea)},p.defaultProps={rows:1,async:!1},p.propTypes={rows:r.number,maxRows:r.number,onResize:r.func,innerRef:r.any,async:r.bool},p}(o.Component);return ja.TextareaAutosize=o.forwardRef(function(d,p){return o.createElement(u,t({},d,{innerRef:p}))}),ja}var uQ;function Hvt(){return uQ||(uQ=1,function(e){e.__esModule=!0;var t=Vvt();e.default=t.TextareaAutosize}(uq)),uq}var Uvt=Hvt();const g7=Zr(Uvt);function Xvt({clientId:e}){const[t,n]=x.useState(""),o=G(i=>i(Q).getBlock(e),[e]),{updateBlock:r}=Oe(Q),s=()=>{const i=on(o.name);if(!i)return;const c=Nl(i,t,o.attributes),l=t||Gf(i,c),[u]=t?tz({...o,attributes:c,originalContent:l}):[!0];r(e,{attributes:c,originalContent:l,isValid:u}),t||n(l)};return x.useEffect(()=>{n(ew(o))},[o]),a.jsx(g7,{className:"block-editor-block-list__block-html-textarea",value:t,onBlur:s,onChange:i=>n(i.target.value)})}var M7=wO(),kn=e=>xO(e,M7),z7=wO();kn.write=e=>xO(e,z7);var __=wO();kn.onStart=e=>xO(e,__);var O7=wO();kn.onFrame=e=>xO(e,O7);var y7=wO();kn.onFinish=e=>xO(e,y7);var F2=[];kn.setTimeout=(e,t)=>{const n=kn.now()+t,o=()=>{const s=F2.findIndex(i=>i.cancel==o);~s&&F2.splice(s,1),od-=~s?1:0},r={time:n,handler:e,cancel:o};return F2.splice(Bhe(n),0,r),od+=1,Lhe(),r};var Bhe=e=>~(~F2.findIndex(t=>t.time>e)||~F2.length);kn.cancel=e=>{__.delete(e),O7.delete(e),y7.delete(e),M7.delete(e),z7.delete(e)};kn.sync=e=>{kW=!0,kn.batchedUpdates(e),kW=!1};kn.throttle=e=>{let t;function n(){try{e(...t)}finally{t=null}}function o(...r){t=r,kn.onStart(n)}return o.handler=e,o.cancel=()=>{__.delete(n),t=null},o};var A7=typeof window<"u"?window.requestAnimationFrame:()=>{};kn.use=e=>A7=e;kn.now=typeof performance<"u"?()=>performance.now():Date.now;kn.batchedUpdates=e=>e();kn.catch=console.error;kn.frameLoop="always";kn.advance=()=>{kn.frameLoop!=="demand"?console.warn("Cannot call the manual advancement of rafz whilst frameLoop is not set as demand"):jhe()};var nd=-1,od=0,kW=!1;function xO(e,t){kW?(t.delete(e),e(0)):(t.add(e),Lhe())}function Lhe(){nd<0&&(nd=0,kn.frameLoop!=="demand"&&A7(Phe))}function Gvt(){nd=-1}function Phe(){~nd&&(A7(Phe),kn.batchedUpdates(jhe))}function jhe(){const e=nd;nd=kn.now();const t=Bhe(nd);if(t&&(Ihe(F2.splice(0,t),n=>n.handler()),od-=t),!od){Gvt();return}__.flush(),M7.flush(e?Math.min(64,nd-e):16.667),O7.flush(),z7.flush(),y7.flush()}function wO(){let e=new Set,t=e;return{add(n){od+=t==e&&!e.has(n)?1:0,e.add(n)},delete(n){return od-=t==e&&e.has(n)?1:0,e.delete(n)},flush(n){t.size&&(e=new Set,od-=t.size,Ihe(t,o=>o(n)&&e.add(o)),od+=e.size,t=e)}}}function Ihe(e,t){e.forEach(n=>{try{t(n)}catch(o){kn.catch(o)}})}var Kvt=Object.defineProperty,Yvt=(e,t)=>{for(var n in t)Kvt(e,n,{get:t[n],enumerable:!0})},ya={};Yvt(ya,{assign:()=>Qvt,colors:()=>dd,createStringInterpolator:()=>x7,skipAnimation:()=>Fhe,to:()=>Dhe,willAdvance:()=>w7});function SW(){}var Zvt=(e,t,n)=>Object.defineProperty(e,t,{value:n,writable:!0,configurable:!0}),_t={arr:Array.isArray,obj:e=>!!e&&e.constructor.name==="Object",fun:e=>typeof e=="function",str:e=>typeof e=="string",num:e=>typeof e=="number",und:e=>e===void 0};function cl(e,t){if(_t.arr(e)){if(!_t.arr(t)||e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}return e===t}var qr=(e,t)=>e.forEach(t);function Fl(e,t,n){if(_t.arr(e)){for(let o=0;o<e.length;o++)t.call(n,e[o],`${o}`);return}for(const o in e)e.hasOwnProperty(o)&&t.call(n,e[o],o)}var Ci=e=>_t.und(e)?[]:_t.arr(e)?e:[e];function EM(e,t){if(e.size){const n=Array.from(e);e.clear(),qr(n,t)}}var lM=(e,...t)=>EM(e,n=>n(...t)),v7=()=>typeof window>"u"||!window.navigator||/ServerSideRendering|^Deno\//.test(window.navigator.userAgent),x7,Dhe,dd=null,Fhe=!1,w7=SW,Qvt=e=>{e.to&&(Dhe=e.to),e.now&&(kn.now=e.now),e.colors!==void 0&&(dd=e.colors),e.skipAnimation!=null&&(Fhe=e.skipAnimation),e.createStringInterpolator&&(x7=e.createStringInterpolator),e.requestAnimationFrame&&kn.use(e.requestAnimationFrame),e.batchedUpdates&&(kn.batchedUpdates=e.batchedUpdates),e.willAdvance&&(w7=e.willAdvance),e.frameLoop&&(kn.frameLoop=e.frameLoop)},WM=new Set,vi=[],mq=[],Lx=0,k_={get idle(){return!WM.size&&!vi.length},start(e){Lx>e.priority?(WM.add(e),kn.onStart(Jvt)):($he(e),kn(CW))},advance:CW,sort(e){if(Lx)kn.onFrame(()=>k_.sort(e));else{const t=vi.indexOf(e);~t&&(vi.splice(t,1),Vhe(e))}},clear(){vi=[],WM.clear()}};function Jvt(){WM.forEach($he),WM.clear(),kn(CW)}function $he(e){vi.includes(e)||Vhe(e)}function Vhe(e){vi.splice(e4t(vi,t=>t.priority>e.priority),0,e)}function CW(e){const t=mq;for(let n=0;n<vi.length;n++){const o=vi[n];Lx=o.priority,o.idle||(w7(o),o.advance(e),o.idle||t.push(o))}return Lx=0,mq=vi,mq.length=0,vi=t,vi.length>0}function e4t(e,t){const n=e.findIndex(t);return n<0?e.length:n}var t4t=(e,t,n)=>Math.min(Math.max(n,e),t),n4t={transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},aa="[-+]?\\d*\\.?\\d+",Px=aa+"%";function S_(...e){return"\\(\\s*("+e.join(")\\s*,\\s*(")+")\\s*\\)"}var o4t=new RegExp("rgb"+S_(aa,aa,aa)),r4t=new RegExp("rgba"+S_(aa,aa,aa,aa)),s4t=new RegExp("hsl"+S_(aa,Px,Px)),i4t=new RegExp("hsla"+S_(aa,Px,Px,aa)),a4t=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,c4t=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,l4t=/^#([0-9a-fA-F]{6})$/,u4t=/^#([0-9a-fA-F]{8})$/;function d4t(e){let t;return typeof e=="number"?e>>>0===e&&e>=0&&e<=4294967295?e:null:(t=l4t.exec(e))?parseInt(t[1]+"ff",16)>>>0:dd&&dd[e]!==void 0?dd[e]:(t=o4t.exec(e))?(Yb(t[1])<<24|Yb(t[2])<<16|Yb(t[3])<<8|255)>>>0:(t=r4t.exec(e))?(Yb(t[1])<<24|Yb(t[2])<<16|Yb(t[3])<<8|fQ(t[4]))>>>0:(t=a4t.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+"ff",16)>>>0:(t=u4t.exec(e))?parseInt(t[1],16)>>>0:(t=c4t.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+t[4]+t[4],16)>>>0:(t=s4t.exec(e))?(dQ(pQ(t[1]),QA(t[2]),QA(t[3]))|255)>>>0:(t=i4t.exec(e))?(dQ(pQ(t[1]),QA(t[2]),QA(t[3]))|fQ(t[4]))>>>0:null}function gq(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 dQ(e,t,n){const o=n<.5?n*(1+t):n+t-n*t,r=2*n-o,s=gq(r,o,e+1/3),i=gq(r,o,e),c=gq(r,o,e-1/3);return Math.round(s*255)<<24|Math.round(i*255)<<16|Math.round(c*255)<<8}function Yb(e){const t=parseInt(e,10);return t<0?0:t>255?255:t}function pQ(e){return(parseFloat(e)%360+360)%360/360}function fQ(e){const t=parseFloat(e);return t<0?0:t>1?255:Math.round(t*255)}function QA(e){const t=parseFloat(e);return t<0?0:t>100?1:t/100}function bQ(e){let t=d4t(e);if(t===null)return e;t=t||0;const n=(t&4278190080)>>>24,o=(t&16711680)>>>16,r=(t&65280)>>>8,s=(t&255)/255;return`rgba(${n}, ${o}, ${r}, ${s})`}var Fz=(e,t,n)=>{if(_t.fun(e))return e;if(_t.arr(e))return Fz({range:e,output:t,extrapolate:n});if(_t.str(e.output[0]))return x7(e);const o=e,r=o.output,s=o.range||[0,1],i=o.extrapolateLeft||o.extrapolate||"extend",c=o.extrapolateRight||o.extrapolate||"extend",l=o.easing||(u=>u);return u=>{const d=f4t(u,s);return p4t(u,s[d],s[d+1],r[d],r[d+1],l,i,c,o.map)}};function p4t(e,t,n,o,r,s,i,c,l){let u=l?l(e):e;if(u<t){if(i==="identity")return u;i==="clamp"&&(u=t)}if(u>n){if(c==="identity")return u;c==="clamp"&&(u=n)}return o===r?o:t===n?e<=t?o:r:(t===-1/0?u=-u:n===1/0?u=u-t:u=(u-t)/(n-t),u=s(u),o===-1/0?u=-u:r===1/0?u=u+o:u=u*(r-o)+o,u)}function f4t(e,t){for(var n=1;n<t.length-1&&!(t[n]>=e);++n);return n-1}var b4t=(e,t="end")=>n=>{n=t==="end"?Math.min(n,.999):Math.max(n,.001);const o=n*e,r=t==="end"?Math.floor(o):Math.ceil(o);return t4t(0,1,r/e)},jx=1.70158,JA=jx*1.525,hQ=jx+1,mQ=2*Math.PI/3,gQ=2*Math.PI/4.5,ev=e=>e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375,h4t={linear:e=>e,easeInQuad:e=>e*e,easeOutQuad:e=>1-(1-e)*(1-e),easeInOutQuad:e=>e<.5?2*e*e:1-Math.pow(-2*e+2,2)/2,easeInCubic:e=>e*e*e,easeOutCubic:e=>1-Math.pow(1-e,3),easeInOutCubic:e=>e<.5?4*e*e*e:1-Math.pow(-2*e+2,3)/2,easeInQuart:e=>e*e*e*e,easeOutQuart:e=>1-Math.pow(1-e,4),easeInOutQuart:e=>e<.5?8*e*e*e*e:1-Math.pow(-2*e+2,4)/2,easeInQuint:e=>e*e*e*e*e,easeOutQuint:e=>1-Math.pow(1-e,5),easeInOutQuint:e=>e<.5?16*e*e*e*e*e:1-Math.pow(-2*e+2,5)/2,easeInSine:e=>1-Math.cos(e*Math.PI/2),easeOutSine:e=>Math.sin(e*Math.PI/2),easeInOutSine:e=>-(Math.cos(Math.PI*e)-1)/2,easeInExpo:e=>e===0?0:Math.pow(2,10*e-10),easeOutExpo:e=>e===1?1:1-Math.pow(2,-10*e),easeInOutExpo:e=>e===0?0:e===1?1:e<.5?Math.pow(2,20*e-10)/2:(2-Math.pow(2,-20*e+10))/2,easeInCirc:e=>1-Math.sqrt(1-Math.pow(e,2)),easeOutCirc:e=>Math.sqrt(1-Math.pow(e-1,2)),easeInOutCirc:e=>e<.5?(1-Math.sqrt(1-Math.pow(2*e,2)))/2:(Math.sqrt(1-Math.pow(-2*e+2,2))+1)/2,easeInBack:e=>hQ*e*e*e-jx*e*e,easeOutBack:e=>1+hQ*Math.pow(e-1,3)+jx*Math.pow(e-1,2),easeInOutBack:e=>e<.5?Math.pow(2*e,2)*((JA+1)*2*e-JA)/2:(Math.pow(2*e-2,2)*((JA+1)*(e*2-2)+JA)+2)/2,easeInElastic:e=>e===0?0:e===1?1:-Math.pow(2,10*e-10)*Math.sin((e*10-10.75)*mQ),easeOutElastic:e=>e===0?0:e===1?1:Math.pow(2,-10*e)*Math.sin((e*10-.75)*mQ)+1,easeInOutElastic:e=>e===0?0:e===1?1:e<.5?-(Math.pow(2,20*e-10)*Math.sin((20*e-11.125)*gQ))/2:Math.pow(2,-20*e+10)*Math.sin((20*e-11.125)*gQ)/2+1,easeInBounce:e=>1-ev(1-e),easeOutBounce:ev,easeInOutBounce:e=>e<.5?(1-ev(1-2*e))/2:(1+ev(2*e-1))/2,steps:b4t},$z=Symbol.for("FluidValue.get"),wh=Symbol.for("FluidValue.observers"),zi=e=>!!(e&&e[$z]),as=e=>e&&e[$z]?e[$z]():e,MQ=e=>e[wh]||null;function m4t(e,t){e.eventObserved?e.eventObserved(t):e(t)}function Vz(e,t){const n=e[wh];n&&n.forEach(o=>{m4t(o,t)})}var Hhe=class{constructor(e){if(!e&&!(e=this.get))throw Error("Unknown getter");g4t(this,e)}},g4t=(e,t)=>Uhe(e,$z,t);function _O(e,t){if(e[$z]){let n=e[wh];n||Uhe(e,wh,n=new Set),n.has(t)||(n.add(t),e.observerAdded&&e.observerAdded(n.size,t))}return t}function Hz(e,t){const n=e[wh];if(n&&n.has(t)){const o=n.size-1;o?n.delete(t):e[wh]=null,e.observerRemoved&&e.observerRemoved(o,t)}}var Uhe=(e,t,n)=>Object.defineProperty(e,t,{value:n,writable:!0,configurable:!0}),h4=/[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,M4t=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi,zQ=new RegExp(`(${h4.source})(%|[a-z]+)`,"i"),z4t=/rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi,C_=/var\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\)/,Xhe=e=>{const[t,n]=O4t(e);if(!t||v7())return e;const o=window.getComputedStyle(document.documentElement).getPropertyValue(t);if(o)return o.trim();if(n&&n.startsWith("--")){const r=window.getComputedStyle(document.documentElement).getPropertyValue(n);return r||e}else{if(n&&C_.test(n))return Xhe(n);if(n)return n}return e},O4t=e=>{const t=C_.exec(e);if(!t)return[,];const[,n,o]=t;return[n,o]},Mq,y4t=(e,t,n,o,r)=>`rgba(${Math.round(t)}, ${Math.round(n)}, ${Math.round(o)}, ${r})`,Ghe=e=>{Mq||(Mq=dd?new RegExp(`(${Object.keys(dd).join("|")})(?!\\w)`,"g"):/^\b$/);const t=e.output.map(s=>as(s).replace(C_,Xhe).replace(M4t,bQ).replace(Mq,bQ)),n=t.map(s=>s.match(h4).map(Number)),r=n[0].map((s,i)=>n.map(c=>{if(!(i in c))throw Error('The arity of each "output" value must be equal');return c[i]})).map(s=>Fz({...e,output:s}));return s=>{const i=!zQ.test(t[0])&&t.find(l=>zQ.test(l))?.replace(h4,"");let c=0;return t[0].replace(h4,()=>`${r[c++](s)}${i||""}`).replace(z4t,y4t)}},Khe="react-spring: ",Yhe=e=>{const t=e;let n=!1;if(typeof t!="function")throw new TypeError(`${Khe}once requires a function parameter`);return(...o)=>{n||(t(...o),n=!0)}},A4t=Yhe(console.warn);function v4t(){A4t(`${Khe}The "interpolate" function is deprecated in v9 (use "to" instead)`)}Yhe(console.warn);function q_(e){return _t.str(e)&&(e[0]=="#"||/\d/.test(e)||!v7()&&C_.test(e)||e in(dd||{}))}var Zhe=v7()?x.useEffect:x.useLayoutEffect,x4t=()=>{const e=x.useRef(!1);return Zhe(()=>(e.current=!0,()=>{e.current=!1}),[]),e};function w4t(){const e=x.useState()[1],t=x4t();return()=>{t.current&&e(Math.random())}}function _4t(e,t){const[n]=x.useState(()=>({inputs:t,result:e()})),o=x.useRef(),r=o.current;let s=r;return s?t&&s.inputs&&k4t(t,s.inputs)||(s={inputs:t,result:e()}):s=n,x.useEffect(()=>{o.current=s,r==n&&(n.inputs=n.result=void 0)},[s]),s.result}function k4t(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}var S4t=e=>x.useEffect(e,C4t),C4t=[],Uz=Symbol.for("Animated:node"),q4t=e=>!!e&&e[Uz]===e,ec=e=>e&&e[Uz],_7=(e,t)=>Zvt(e,Uz,t),R_=e=>e&&e[Uz]&&e[Uz].getPayload(),Qhe=class{constructor(){_7(this,this)}getPayload(){return this.payload||[]}},kO=class extends Qhe{constructor(e){super(),this._value=e,this.done=!0,this.durationProgress=0,_t.num(this._value)&&(this.lastPosition=this._value)}static create(e){return new kO(e)}getPayload(){return[this]}getValue(){return this._value}setValue(e,t){return _t.num(e)&&(this.lastPosition=e,t&&(e=Math.round(e/t)*t,this.done&&(this.lastPosition=e))),this._value===e?!1:(this._value=e,!0)}reset(){const{done:e}=this;this.done=!1,_t.num(this._value)&&(this.elapsedTime=0,this.durationProgress=0,this.lastPosition=this._value,e&&(this.lastVelocity=null),this.v0=null)}},Xz=class extends kO{constructor(e){super(0),this._string=null,this._toString=Fz({output:[e,e]})}static create(e){return new Xz(e)}getValue(){const e=this._string;return e??(this._string=this._toString(this._value))}setValue(e){if(_t.str(e)){if(e==this._string)return!1;this._string=e,this._value=1}else if(super.setValue(e))this._string=null;else return!1;return!0}reset(e){e&&(this._toString=Fz({output:[this.getValue(),e]})),this._value=0,super.reset()}},Ix={dependencies:null},T_=class extends Qhe{constructor(e){super(),this.source=e,this.setValue(e)}getValue(e){const t={};return Fl(this.source,(n,o)=>{q4t(n)?t[o]=n.getValue(e):zi(n)?t[o]=as(n):e||(t[o]=n)}),t}setValue(e){this.source=e,this.payload=this._makePayload(e)}reset(){this.payload&&qr(this.payload,e=>e.reset())}_makePayload(e){if(e){const t=new Set;return Fl(e,this._addToPayload,t),Array.from(t)}}_addToPayload(e){Ix.dependencies&&zi(e)&&Ix.dependencies.add(e);const t=R_(e);t&&qr(t,n=>this.add(n))}},Jhe=class extends T_{constructor(e){super(e)}static create(e){return new Jhe(e)}getValue(){return this.source.map(e=>e.getValue())}setValue(e){const t=this.getPayload();return e.length==t.length?t.map((n,o)=>n.setValue(e[o])).some(Boolean):(super.setValue(e.map(R4t)),!0)}};function R4t(e){return(q_(e)?Xz:kO).create(e)}function qW(e){const t=ec(e);return t?t.constructor:_t.arr(e)?Jhe:q_(e)?Xz:kO}var OQ=(e,t)=>{const n=!_t.fun(e)||e.prototype&&e.prototype.isReactComponent;return x.forwardRef((o,r)=>{const s=x.useRef(null),i=n&&x.useCallback(h=>{s.current=W4t(r,h)},[r]),[c,l]=E4t(o,t),u=w4t(),d=()=>{const h=s.current;if(n&&!h)return;(h?t.applyAnimatedValues(h,c.getValue(!0)):!1)===!1&&u()},p=new T4t(d,l),f=x.useRef();Zhe(()=>(f.current=p,qr(l,h=>_O(h,p)),()=>{f.current&&(qr(f.current.deps,h=>Hz(h,f.current)),kn.cancel(f.current.update))})),x.useEffect(d,[]),S4t(()=>()=>{const h=f.current;qr(h.deps,g=>Hz(g,h))});const b=t.getComponentProps(c.getValue());return x.createElement(e,{...b,ref:i})})},T4t=class{constructor(e,t){this.update=e,this.deps=t}eventObserved(e){e.type=="change"&&kn.write(this.update)}};function E4t(e,t){const n=new Set;return Ix.dependencies=n,e.style&&(e={...e,style:t.createAnimatedStyle(e.style)}),e=new T_(e),Ix.dependencies=null,[e,n]}function W4t(e,t){return e&&(_t.fun(e)?e(t):e.current=t),t}var yQ=Symbol.for("AnimatedComponent"),N4t=(e,{applyAnimatedValues:t=()=>!1,createAnimatedStyle:n=r=>new T_(r),getComponentProps:o=r=>r}={})=>{const r={applyAnimatedValues:t,createAnimatedStyle:n,getComponentProps:o},s=i=>{const c=AQ(i)||"Anonymous";return _t.str(i)?i=s[i]||(s[i]=OQ(i,r)):i=i[yQ]||(i[yQ]=OQ(i,r)),i.displayName=`Animated(${c})`,i};return Fl(e,(i,c)=>{_t.arr(e)&&(c=AQ(i)),s[c]=s(i)}),{animated:s}},AQ=e=>_t.str(e)?e:e&&_t.str(e.displayName)?e.displayName:_t.fun(e)&&e.name||null;function Hp(e,...t){return _t.fun(e)?e(...t):e}var NM=(e,t)=>e===!0||!!(t&&e&&(_t.fun(e)?e(t):Ci(e).includes(t))),eme=(e,t)=>_t.obj(e)?t&&e[t]:e,tme=(e,t)=>e.default===!0?e[t]:e.default?e.default[t]:void 0,B4t=e=>e,nme=(e,t=B4t)=>{let n=L4t;e.default&&e.default!==!0&&(e=e.default,n=Object.keys(e));const o={};for(const r of n){const s=t(e[r],r);_t.und(s)||(o[r]=s)}return o},L4t=["config","onProps","onStart","onChange","onPause","onResume","onRest"],P4t={config:1,from:1,to:1,ref:1,loop:1,reset:1,pause:1,cancel:1,reverse:1,immediate:1,default:1,delay:1,onProps:1,onStart:1,onChange:1,onPause:1,onResume:1,onRest:1,onResolve:1,items:1,trail:1,sort:1,expires:1,initial:1,enter:1,update:1,leave:1,children:1,onDestroyed:1,keys:1,callId:1,parentId:1};function j4t(e){const t={};let n=0;if(Fl(e,(o,r)=>{P4t[r]||(t[r]=o,n++)}),n)return t}function ome(e){const t=j4t(e);if(t){const n={to:t};return Fl(e,(o,r)=>r in t||(n[r]=o)),n}return{...e}}function Gz(e){return e=as(e),_t.arr(e)?e.map(Gz):q_(e)?ya.createStringInterpolator({range:[0,1],output:[e,e]})(1):e}function RW(e){return _t.fun(e)||_t.arr(e)&&_t.obj(e[0])}var I4t={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},TW={...I4t.default,mass:1,damping:1,easing:h4t.linear,clamp:!1},D4t=class{constructor(){this.velocity=0,Object.assign(this,TW)}};function F4t(e,t,n){n&&(n={...n},vQ(n,t),t={...n,...t}),vQ(e,t),Object.assign(e,t);for(const i in TW)e[i]==null&&(e[i]=TW[i]);let{frequency:o,damping:r}=e;const{mass:s}=e;return _t.und(o)||(o<.01&&(o=.01),r<0&&(r=0),e.tension=Math.pow(2*Math.PI/o,2)*s,e.friction=4*Math.PI*r*s/o),e}function vQ(e,t){if(!_t.und(t.decay))e.duration=void 0;else{const n=!_t.und(t.tension)||!_t.und(t.friction);(n||!_t.und(t.frequency)||!_t.und(t.damping)||!_t.und(t.mass))&&(e.duration=void 0,e.decay=void 0),n&&(e.frequency=void 0)}}var xQ=[],$4t=class{constructor(){this.changed=!1,this.values=xQ,this.toValues=null,this.fromValues=xQ,this.config=new D4t,this.immediate=!1}};function rme(e,{key:t,props:n,defaultProps:o,state:r,actions:s}){return new Promise((i,c)=>{let l,u,d=NM(n.cancel??o?.cancel,t);if(d)b();else{_t.und(n.pause)||(r.paused=NM(n.pause,t));let h=o?.pause;h!==!0&&(h=r.paused||NM(h,t)),l=Hp(n.delay||0,t),h?(r.resumeQueue.add(f),s.pause()):(s.resume(),f())}function p(){r.resumeQueue.add(f),r.timeouts.delete(u),u.cancel(),l=u.time-kn.now()}function f(){l>0&&!ya.skipAnimation?(r.delayed=!0,u=kn.setTimeout(b,l),r.pauseQueue.add(p),r.timeouts.add(u)):b()}function b(){r.delayed&&(r.delayed=!1),r.pauseQueue.delete(p),r.timeouts.delete(u),e<=(r.cancelId||0)&&(d=!0);try{s.start({...n,callId:e,cancel:d},i)}catch(h){c(h)}}})}var k7=(e,t)=>t.length==1?t[0]:t.some(n=>n.cancelled)?$2(e.get()):t.every(n=>n.noop)?sme(e.get()):oa(e.get(),t.every(n=>n.finished)),sme=e=>({value:e,noop:!0,finished:!0,cancelled:!1}),oa=(e,t,n=!1)=>({value:e,finished:t,cancelled:n}),$2=e=>({value:e,cancelled:!0,finished:!1});function ime(e,t,n,o){const{callId:r,parentId:s,onRest:i}=t,{asyncTo:c,promise:l}=n;return!s&&e===c&&!t.reset?l:n.promise=(async()=>{n.asyncId=r,n.asyncTo=e;const u=nme(t,(z,A)=>A==="onRest"?void 0:z);let d,p;const f=new Promise((z,A)=>(d=z,p=A)),b=z=>{const A=r<=(n.cancelId||0)&&$2(o)||r!==n.asyncId&&oa(o,!1);if(A)throw z.result=A,p(z),z},h=(z,A)=>{const _=new wQ,v=new _Q;return(async()=>{if(ya.skipAnimation)throw Kz(n),v.result=oa(o,!1),p(v),v;b(_);const M=_t.obj(z)?{...z}:{...A,to:z};M.parentId=r,Fl(u,(k,S)=>{_t.und(M[S])&&(M[S]=k)});const y=await o.start(M);return b(_),n.paused&&await new Promise(k=>{n.resumeQueue.add(k)}),y})()};let g;if(ya.skipAnimation)return Kz(n),oa(o,!1);try{let z;_t.arr(e)?z=(async A=>{for(const _ of A)await h(_)})(e):z=Promise.resolve(e(h,o.stop.bind(o))),await Promise.all([z.then(d),f]),g=oa(o.get(),!0,!1)}catch(z){if(z instanceof wQ)g=z.result;else if(z instanceof _Q)g=z.result;else throw z}finally{r==n.asyncId&&(n.asyncId=s,n.asyncTo=s?c:void 0,n.promise=s?l:void 0)}return _t.fun(i)&&kn.batchedUpdates(()=>{i(g,o,o.item)}),g})()}function Kz(e,t){EM(e.timeouts,n=>n.cancel()),e.pauseQueue.clear(),e.resumeQueue.clear(),e.asyncId=e.asyncTo=e.promise=void 0,t&&(e.cancelId=t)}var wQ=class extends Error{constructor(){super("An async animation has been interrupted. You see this error because you forgot to use `await` or `.catch(...)` on its returned promise.")}},_Q=class extends Error{constructor(){super("SkipAnimationSignal")}},EW=e=>e instanceof S7,V4t=1,S7=class extends Hhe{constructor(){super(...arguments),this.id=V4t++,this._priority=0}get priority(){return this._priority}set priority(e){this._priority!=e&&(this._priority=e,this._onPriorityChange(e))}get(){const e=ec(this);return e&&e.getValue()}to(...e){return ya.to(this,e)}interpolate(...e){return v4t(),ya.to(this,e)}toJSON(){return this.get()}observerAdded(e){e==1&&this._attach()}observerRemoved(e){e==0&&this._detach()}_attach(){}_detach(){}_onChange(e,t=!1){Vz(this,{type:"change",parent:this,value:e,idle:t})}_onPriorityChange(e){this.idle||k_.sort(this),Vz(this,{type:"priority",parent:this,priority:e})}},Tf=Symbol.for("SpringPhase"),ame=1,WW=2,NW=4,zq=e=>(e[Tf]&ame)>0,Nu=e=>(e[Tf]&WW)>0,Pg=e=>(e[Tf]&NW)>0,kQ=(e,t)=>t?e[Tf]|=WW|ame:e[Tf]&=~WW,SQ=(e,t)=>t?e[Tf]|=NW:e[Tf]&=~NW,H4t=class extends S7{constructor(e,t){if(super(),this.animation=new $4t,this.defaultProps={},this._state={paused:!1,delayed:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._pendingCalls=new Set,this._lastCallId=0,this._lastToId=0,this._memoizedDuration=0,!_t.und(e)||!_t.und(t)){const n=_t.obj(e)?{...e}:{...t,from:e};_t.und(n.default)&&(n.default=!0),this.start(n)}}get idle(){return!(Nu(this)||this._state.asyncTo)||Pg(this)}get goal(){return as(this.animation.to)}get velocity(){const e=ec(this);return e instanceof kO?e.lastVelocity||0:e.getPayload().map(t=>t.lastVelocity||0)}get hasAnimated(){return zq(this)}get isAnimating(){return Nu(this)}get isPaused(){return Pg(this)}get isDelayed(){return this._state.delayed}advance(e){let t=!0,n=!1;const o=this.animation;let{toValues:r}=o;const{config:s}=o,i=R_(o.to);!i&&zi(o.to)&&(r=Ci(as(o.to))),o.values.forEach((u,d)=>{if(u.done)return;const p=u.constructor==Xz?1:i?i[d].lastPosition:r[d];let f=o.immediate,b=p;if(!f){if(b=u.lastPosition,s.tension<=0){u.done=!0;return}let h=u.elapsedTime+=e;const g=o.fromValues[d],z=u.v0!=null?u.v0:u.v0=_t.arr(s.velocity)?s.velocity[d]:s.velocity;let A;const _=s.precision||(g==p?.005:Math.min(1,Math.abs(p-g)*.001));if(_t.und(s.duration))if(s.decay){const v=s.decay===!0?.998:s.decay,M=Math.exp(-(1-v)*h);b=g+z/(1-v)*(1-M),f=Math.abs(u.lastPosition-b)<=_,A=z*M}else{A=u.lastVelocity==null?z:u.lastVelocity;const v=s.restVelocity||_/10,M=s.clamp?0:s.bounce,y=!_t.und(M),k=g==p?u.v0>0:g<p;let S,C=!1;const R=1,T=Math.ceil(e/R);for(let E=0;E<T&&(S=Math.abs(A)>v,!(!S&&(f=Math.abs(p-b)<=_,f)));++E){y&&(C=b==p||b>p==k,C&&(A=-A*M,b=p));const B=-s.tension*1e-6*(b-p),N=-s.friction*.001*A,j=(B+N)/s.mass;A=A+j*R,b=b+A*R}}else{let v=1;s.duration>0&&(this._memoizedDuration!==s.duration&&(this._memoizedDuration=s.duration,u.durationProgress>0&&(u.elapsedTime=s.duration*u.durationProgress,h=u.elapsedTime+=e)),v=(s.progress||0)+h/this._memoizedDuration,v=v>1?1:v<0?0:v,u.durationProgress=v),b=g+s.easing(v)*(p-g),A=(b-u.lastPosition)/e,f=v==1}u.lastVelocity=A,Number.isNaN(b)&&(console.warn("Got NaN while animating:",this),f=!0)}i&&!i[d].done&&(f=!1),f?u.done=!0:t=!1,u.setValue(b,s.round)&&(n=!0)});const c=ec(this),l=c.getValue();if(t){const u=as(o.to);(l!==u||n)&&!s.decay?(c.setValue(u),this._onChange(u)):n&&s.decay&&this._onChange(l),this._stop()}else n&&this._onChange(l)}set(e){return kn.batchedUpdates(()=>{this._stop(),this._focus(e),this._set(e)}),this}pause(){this._update({pause:!0})}resume(){this._update({pause:!1})}finish(){if(Nu(this)){const{to:e,config:t}=this.animation;kn.batchedUpdates(()=>{this._onStart(),t.decay||this._set(e,!1),this._stop()})}return this}update(e){return(this.queue||(this.queue=[])).push(e),this}start(e,t){let n;return _t.und(e)?(n=this.queue||[],this.queue=[]):n=[_t.obj(e)?e:{...t,to:e}],Promise.all(n.map(o=>this._update(o))).then(o=>k7(this,o))}stop(e){const{to:t}=this.animation;return this._focus(this.get()),Kz(this._state,e&&this._lastCallId),kn.batchedUpdates(()=>this._stop(t,e)),this}reset(){this._update({reset:!0})}eventObserved(e){e.type=="change"?this._start():e.type=="priority"&&(this.priority=e.priority+1)}_prepareNode(e){const t=this.key||"";let{to:n,from:o}=e;n=_t.obj(n)?n[t]:n,(n==null||RW(n))&&(n=void 0),o=_t.obj(o)?o[t]:o,o==null&&(o=void 0);const r={to:n,from:o};return zq(this)||(e.reverse&&([n,o]=[o,n]),o=as(o),_t.und(o)?ec(this)||this._set(n):this._set(o)),r}_update({...e},t){const{key:n,defaultProps:o}=this;e.default&&Object.assign(o,nme(e,(i,c)=>/^on/.test(c)?eme(i,n):i)),qQ(this,e,"onProps"),Ig(this,"onProps",e,this);const r=this._prepareNode(e);if(Object.isFrozen(this))throw Error("Cannot animate a `SpringValue` object that is frozen. Did you forget to pass your component to `animated(...)` before animating its props?");const s=this._state;return rme(++this._lastCallId,{key:n,props:e,defaultProps:o,state:s,actions:{pause:()=>{Pg(this)||(SQ(this,!0),lM(s.pauseQueue),Ig(this,"onPause",oa(this,jg(this,this.animation.to)),this))},resume:()=>{Pg(this)&&(SQ(this,!1),Nu(this)&&this._resume(),lM(s.resumeQueue),Ig(this,"onResume",oa(this,jg(this,this.animation.to)),this))},start:this._merge.bind(this,r)}}).then(i=>{if(e.loop&&i.finished&&!(t&&i.noop)){const c=cme(e);if(c)return this._update(c,!0)}return i})}_merge(e,t,n){if(t.cancel)return this.stop(!0),n($2(this));const o=!_t.und(e.to),r=!_t.und(e.from);if(o||r)if(t.callId>this._lastToId)this._lastToId=t.callId;else return n($2(this));const{key:s,defaultProps:i,animation:c}=this,{to:l,from:u}=c;let{to:d=l,from:p=u}=e;r&&!o&&(!t.default||_t.und(d))&&(d=p),t.reverse&&([d,p]=[p,d]);const f=!cl(p,u);f&&(c.from=p),p=as(p);const b=!cl(d,l);b&&this._focus(d);const h=RW(t.to),{config:g}=c,{decay:z,velocity:A}=g;(o||r)&&(g.velocity=0),t.config&&!h&&F4t(g,Hp(t.config,s),t.config!==i.config?Hp(i.config,s):void 0);let _=ec(this);if(!_||_t.und(d))return n(oa(this,!0));const v=_t.und(t.reset)?r&&!t.default:!_t.und(p)&&NM(t.reset,s),M=v?p:this.get(),y=Gz(d),k=_t.num(y)||_t.arr(y)||q_(y),S=!h&&(!k||NM(i.immediate||t.immediate,s));if(b){const E=qW(d);if(E!==_.constructor)if(S)_=this._set(y);else throw Error(`Cannot animate between ${_.constructor.name} and ${E.name}, as the "to" prop suggests`)}const C=_.constructor;let R=zi(d),T=!1;if(!R){const E=v||!zq(this)&&f;(b||E)&&(T=cl(Gz(M),y),R=!T),(!cl(c.immediate,S)&&!S||!cl(g.decay,z)||!cl(g.velocity,A))&&(R=!0)}if(T&&Nu(this)&&(c.changed&&!v?R=!0:R||this._stop(l)),!h&&((R||zi(l))&&(c.values=_.getPayload(),c.toValues=zi(d)?null:C==Xz?[1]:Ci(y)),c.immediate!=S&&(c.immediate=S,!S&&!v&&this._set(l)),R)){const{onRest:E}=c;qr(U4t,N=>qQ(this,t,N));const B=oa(this,jg(this,l));lM(this._pendingCalls,B),this._pendingCalls.add(n),c.changed&&kn.batchedUpdates(()=>{c.changed=!v,E?.(B,this),v?Hp(i.onRest,B):c.onStart?.(B,this)})}v&&this._set(M),h?n(ime(t.to,t,this._state,this)):R?this._start():Nu(this)&&!b?this._pendingCalls.add(n):n(sme(M))}_focus(e){const t=this.animation;e!==t.to&&(MQ(this)&&this._detach(),t.to=e,MQ(this)&&this._attach())}_attach(){let e=0;const{to:t}=this.animation;zi(t)&&(_O(t,this),EW(t)&&(e=t.priority+1)),this.priority=e}_detach(){const{to:e}=this.animation;zi(e)&&Hz(e,this)}_set(e,t=!0){const n=as(e);if(!_t.und(n)){const o=ec(this);if(!o||!cl(n,o.getValue())){const r=qW(n);!o||o.constructor!=r?_7(this,r.create(n)):o.setValue(n),o&&kn.batchedUpdates(()=>{this._onChange(n,t)})}}return ec(this)}_onStart(){const e=this.animation;e.changed||(e.changed=!0,Ig(this,"onStart",oa(this,jg(this,e.to)),this))}_onChange(e,t){t||(this._onStart(),Hp(this.animation.onChange,e,this)),Hp(this.defaultProps.onChange,e,this),super._onChange(e,t)}_start(){const e=this.animation;ec(this).reset(as(e.to)),e.immediate||(e.fromValues=e.values.map(t=>t.lastPosition)),Nu(this)||(kQ(this,!0),Pg(this)||this._resume())}_resume(){ya.skipAnimation?this.finish():k_.start(this)}_stop(e,t){if(Nu(this)){kQ(this,!1);const n=this.animation;qr(n.values,r=>{r.done=!0}),n.toValues&&(n.onChange=n.onPause=n.onResume=void 0),Vz(this,{type:"idle",parent:this});const o=t?$2(this.get()):oa(this.get(),jg(this,e??n.to));lM(this._pendingCalls,o),n.changed&&(n.changed=!1,Ig(this,"onRest",o,this))}}};function jg(e,t){const n=Gz(t),o=Gz(e.get());return cl(o,n)}function cme(e,t=e.loop,n=e.to){const o=Hp(t);if(o){const r=o!==!0&&ome(o),s=(r||e).reverse,i=!r||r.reset;return BW({...e,loop:t,default:!1,pause:void 0,to:!s||RW(n)?n:void 0,from:i?e.from:void 0,reset:i,...r})}}function BW(e){const{to:t,from:n}=e=ome(e),o=new Set;return _t.obj(t)&&CQ(t,o),_t.obj(n)&&CQ(n,o),e.keys=o.size?Array.from(o):null,e}function CQ(e,t){Fl(e,(n,o)=>n!=null&&t.add(o))}var U4t=["onStart","onRest","onChange","onPause","onResume"];function qQ(e,t,n){e.animation[n]=t[n]!==tme(t,n)?eme(t[n],e.key):void 0}function Ig(e,t,...n){e.animation[t]?.(...n),e.defaultProps[t]?.(...n)}var X4t=["onStart","onChange","onRest"],G4t=1,K4t=class{constructor(e,t){this.id=G4t++,this.springs={},this.queue=[],this._lastAsyncId=0,this._active=new Set,this._changed=new Set,this._started=!1,this._state={paused:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._events={onStart:new Map,onChange:new Map,onRest:new Map},this._onFrame=this._onFrame.bind(this),t&&(this._flush=t),e&&this.start({default:!0,...e})}get idle(){return!this._state.asyncTo&&Object.values(this.springs).every(e=>e.idle&&!e.isDelayed&&!e.isPaused)}get item(){return this._item}set item(e){this._item=e}get(){const e={};return this.each((t,n)=>e[n]=t.get()),e}set(e){for(const t in e){const n=e[t];_t.und(n)||this.springs[t].set(n)}}update(e){return e&&this.queue.push(BW(e)),this}start(e){let{queue:t}=this;return e?t=Ci(e).map(BW):this.queue=[],this._flush?this._flush(this,t):(ume(this,t),Y4t(this,t))}stop(e,t){if(e!==!!e&&(t=e),t){const n=this.springs;qr(Ci(t),o=>n[o].stop(!!e))}else Kz(this._state,this._lastAsyncId),this.each(n=>n.stop(!!e));return this}pause(e){if(_t.und(e))this.start({pause:!0});else{const t=this.springs;qr(Ci(e),n=>t[n].pause())}return this}resume(e){if(_t.und(e))this.start({pause:!1});else{const t=this.springs;qr(Ci(e),n=>t[n].resume())}return this}each(e){Fl(this.springs,e)}_onFrame(){const{onStart:e,onChange:t,onRest:n}=this._events,o=this._active.size>0,r=this._changed.size>0;(o&&!this._started||r&&!this._started)&&(this._started=!0,EM(e,([c,l])=>{l.value=this.get(),c(l,this,this._item)}));const s=!o&&this._started,i=r||s&&n.size?this.get():null;r&&t.size&&EM(t,([c,l])=>{l.value=i,c(l,this,this._item)}),s&&(this._started=!1,EM(n,([c,l])=>{l.value=i,c(l,this,this._item)}))}eventObserved(e){if(e.type=="change")this._changed.add(e.parent),e.idle||this._active.add(e.parent);else if(e.type=="idle")this._active.delete(e.parent);else return;kn.onFrame(this._onFrame)}};function Y4t(e,t){return Promise.all(t.map(n=>lme(e,n))).then(n=>k7(e,n))}async function lme(e,t,n){const{keys:o,to:r,from:s,loop:i,onRest:c,onResolve:l}=t,u=_t.obj(t.default)&&t.default;i&&(t.loop=!1),r===!1&&(t.to=null),s===!1&&(t.from=null);const d=_t.arr(r)||_t.fun(r)?r:void 0;d?(t.to=void 0,t.onRest=void 0,u&&(u.onRest=void 0)):qr(X4t,g=>{const z=t[g];if(_t.fun(z)){const A=e._events[g];t[g]=({finished:_,cancelled:v})=>{const M=A.get(z);M?(_||(M.finished=!1),v&&(M.cancelled=!0)):A.set(z,{value:null,finished:_||!1,cancelled:v||!1})},u&&(u[g]=t[g])}});const p=e._state;t.pause===!p.paused?(p.paused=t.pause,lM(t.pause?p.pauseQueue:p.resumeQueue)):p.paused&&(t.pause=!0);const f=(o||Object.keys(e.springs)).map(g=>e.springs[g].start(t)),b=t.cancel===!0||tme(t,"cancel")===!0;(d||b&&p.asyncId)&&f.push(rme(++e._lastAsyncId,{props:t,state:p,actions:{pause:SW,resume:SW,start(g,z){b?(Kz(p,e._lastAsyncId),z($2(e))):(g.onRest=c,z(ime(d,g,p,e)))}}})),p.paused&&await new Promise(g=>{p.resumeQueue.add(g)});const h=k7(e,await Promise.all(f));if(i&&h.finished&&!(n&&h.noop)){const g=cme(t,i,r);if(g)return ume(e,[g]),lme(e,g,!0)}return l&&kn.batchedUpdates(()=>l(h,e,e.item)),h}function Z4t(e,t){const n=new H4t;return n.key=e,t&&_O(n,t),n}function Q4t(e,t,n){t.keys&&qr(t.keys,o=>{(e[o]||(e[o]=n(o)))._prepareNode(t)})}function ume(e,t){qr(t,n=>{Q4t(e.springs,n,o=>Z4t(o,e))})}var C7=({children:e,...t})=>{const n=x.useContext(Dx),o=t.pause||!!n.pause,r=t.immediate||!!n.immediate;t=_4t(()=>({pause:o,immediate:r}),[o,r]);const{Provider:s}=Dx;return x.createElement(s,{value:t},e)},Dx=J4t(C7,{});C7.Provider=Dx.Provider;C7.Consumer=Dx.Consumer;function J4t(e,t){return Object.assign(e,x.createContext(t)),e.Provider._context=e,e.Consumer._context=e,e}var ext=class extends S7{constructor(e,t){super(),this.source=e,this.idle=!0,this._active=new Set,this.calc=Fz(...t);const n=this._get(),o=qW(n);_7(this,o.create(n))}advance(e){const t=this._get(),n=this.get();cl(t,n)||(ec(this).setValue(t),this._onChange(t,this.idle)),!this.idle&&RQ(this._active)&&Oq(this)}_get(){const e=_t.arr(this.source)?this.source.map(as):Ci(as(this.source));return this.calc(...e)}_start(){this.idle&&!RQ(this._active)&&(this.idle=!1,qr(R_(this),e=>{e.done=!1}),ya.skipAnimation?(kn.batchedUpdates(()=>this.advance()),Oq(this)):k_.start(this))}_attach(){let e=1;qr(Ci(this.source),t=>{zi(t)&&_O(t,this),EW(t)&&(t.idle||this._active.add(t),e=Math.max(e,t.priority+1))}),this.priority=e,this._start()}_detach(){qr(Ci(this.source),e=>{zi(e)&&Hz(e,this)}),this._active.clear(),Oq(this)}eventObserved(e){e.type=="change"?e.idle?this.advance():(this._active.add(e.parent),this._start()):e.type=="idle"?this._active.delete(e.parent):e.type=="priority"&&(this.priority=Ci(this.source).reduce((t,n)=>Math.max(t,(EW(n)?n.priority:0)+1),0))}};function txt(e){return e.idle!==!1}function RQ(e){return!e.size||Array.from(e).every(txt)}function Oq(e){e.idle||(e.idle=!0,qr(R_(e),t=>{t.done=!0}),Vz(e,{type:"idle",parent:e}))}ya.assign({createStringInterpolator:Ghe,to:(e,t)=>new ext(e,t)});var dme=/^--/;function nxt(e,t){return t==null||typeof t=="boolean"||t===""?"":typeof t=="number"&&t!==0&&!dme.test(e)&&!(BM.hasOwnProperty(e)&&BM[e])?t+"px":(""+t).trim()}var TQ={};function oxt(e,t){if(!e.nodeType||!e.setAttribute)return!1;const n=e.nodeName==="filter"||e.parentNode&&e.parentNode.nodeName==="filter",{className:o,style:r,children:s,scrollTop:i,scrollLeft:c,viewBox:l,...u}=t,d=Object.values(u),p=Object.keys(u).map(f=>n||e.hasAttribute(f)?f:TQ[f]||(TQ[f]=f.replace(/([A-Z])/g,b=>"-"+b.toLowerCase())));s!==void 0&&(e.textContent=s);for(const f in r)if(r.hasOwnProperty(f)){const b=nxt(f,r[f]);dme.test(f)?e.style.setProperty(f,b):e.style[f]=b}p.forEach((f,b)=>{e.setAttribute(f,d[b])}),o!==void 0&&(e.className=o),i!==void 0&&(e.scrollTop=i),c!==void 0&&(e.scrollLeft=c),l!==void 0&&e.setAttribute("viewBox",l)}var BM={animationIterationCount:!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,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},rxt=(e,t)=>e+t.charAt(0).toUpperCase()+t.substring(1),sxt=["Webkit","Ms","Moz","O"];BM=Object.keys(BM).reduce((e,t)=>(sxt.forEach(n=>e[rxt(n,t)]=e[t]),e),BM);var ixt=/^(matrix|translate|scale|rotate|skew)/,axt=/^(translate)/,cxt=/^(rotate|skew)/,yq=(e,t)=>_t.num(e)&&e!==0?e+t:e,m4=(e,t)=>_t.arr(e)?e.every(n=>m4(n,t)):_t.num(e)?e===t:parseFloat(e)===t,lxt=class extends T_{constructor({x:e,y:t,z:n,...o}){const r=[],s=[];(e||t||n)&&(r.push([e||0,t||0,n||0]),s.push(i=>[`translate3d(${i.map(c=>yq(c,"px")).join(",")})`,m4(i,0)])),Fl(o,(i,c)=>{if(c==="transform")r.push([i||""]),s.push(l=>[l,l===""]);else if(ixt.test(c)){if(delete o[c],_t.und(i))return;const l=axt.test(c)?"px":cxt.test(c)?"deg":"";r.push(Ci(i)),s.push(c==="rotate3d"?([u,d,p,f])=>[`rotate3d(${u},${d},${p},${yq(f,l)})`,m4(f,0)]:u=>[`${c}(${u.map(d=>yq(d,l)).join(",")})`,m4(u,c.startsWith("scale")?1:0)])}}),r.length&&(o.transform=new uxt(r,s)),super(o)}},uxt=class extends Hhe{constructor(e,t){super(),this.inputs=e,this.transforms=t,this._value=null}get(){return this._value||(this._value=this._get())}_get(){let e="",t=!0;return qr(this.inputs,(n,o)=>{const r=as(n[0]),[s,i]=this.transforms[o](_t.arr(r)?r:n.map(as));e+=" "+s,t=t&&i}),t?"none":e}observerAdded(e){e==1&&qr(this.inputs,t=>qr(t,n=>zi(n)&&_O(n,this)))}observerRemoved(e){e==0&&qr(this.inputs,t=>qr(t,n=>zi(n)&&Hz(n,this)))}eventObserved(e){e.type=="change"&&(this._value=null),Vz(this,e)}},dxt=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"];ya.assign({batchedUpdates:hs.unstable_batchedUpdates,createStringInterpolator:Ghe,colors:n4t});var pxt=N4t(dxt,{applyAnimatedValues:oxt,createAnimatedStyle:e=>new lxt(e),getComponentProps:({scrollTop:e,scrollLeft:t,...n})=>n}),fxt=pxt.animated;const bxt=200;function EQ(e){return{top:e.offsetTop,left:e.offsetLeft}}function pme({triggerAnimationOnChange:e,clientId:t}){const n=x.useRef(),{isTyping:o,getGlobalBlockCount:r,isBlockSelected:s,isFirstMultiSelectedBlock:i,isBlockMultiSelected:c,isAncestorMultiSelected:l,isDraggingBlocks:u}=G(Q),{previous:d,prevRect:p}=x.useMemo(()=>({previous:n.current&&EQ(n.current),prevRect:n.current&&n.current.getBoundingClientRect()}),[e]);return x.useLayoutEffect(()=>{if(!d||!n.current)return;const f=ps(n.current),b=s(t),h=b||i(t),g=u();function z(){if(!g&&h&&p){const R=n.current.getBoundingClientRect().top-p.top;R&&(f.scrollTop+=R)}}if(window.matchMedia("(prefers-reduced-motion: reduce)").matches||o()||r()>bxt){z();return}const _=b||c(t)||l(t);if(_&&g)return;const v=_?"1":"",M=new K4t({x:0,y:0,config:{mass:5,tension:2e3,friction:200},onChange({value:C}){if(!n.current)return;let{x:R,y:T}=C;R=Math.round(R),T=Math.round(T);const E=R===0&&T===0;n.current.style.transformOrigin="center center",n.current.style.transform=E?null:`translate3d(${R}px,${T}px,0)`,n.current.style.zIndex=v,z()}});n.current.style.transform=void 0;const y=EQ(n.current),k=Math.round(d.left-y.left),S=Math.round(d.top-y.top);return M.start({x:0,y:0,from:{x:k,y:S}}),()=>{M.stop(),M.set({x:0,y:0})}},[d,p,t,o,r,s,i,c,l,u]),n}const Fx=".block-editor-block-list__block",hxt=".block-list-appender",mxt=".block-editor-button-block-appender";function fme(e,t){return e.closest(Fx)===t.closest(Fx)}function LM(e,t){return t.closest([Fx,hxt,mxt].join(","))===e}function PM(e){for(;e&&e.nodeType!==e.ELEMENT_NODE;)e=e.parentNode;if(!e)return;const n=e.closest(Fx);if(n)return n.id.slice(6)}function bme(e,t){const n=Math.min(e.left,t.left),o=Math.max(e.right,t.right),r=Math.max(e.bottom,t.bottom),s=Math.min(e.top,t.top);return new window.DOMRectReadOnly(n,s,o-n,r-s)}function gxt(e){const t=e.ownerDocument.defaultView;if(!t||e.classList.contains("components-visually-hidden"))return!1;const n=e.getBoundingClientRect();if(n.width===0||n.height===0)return!1;if(e.checkVisibility)return e.checkVisibility?.({opacityProperty:!0,contentVisibilityAuto:!0,visibilityProperty:!0});const o=t.getComputedStyle(e);return!(o.display==="none"||o.visibility==="hidden"||o.opacity==="0")}function Mxt(e){const t=window.getComputedStyle(e);return t.overflowX==="auto"||t.overflowX==="scroll"||t.overflowY==="auto"||t.overflowY==="scroll"}const zxt=["core/navigation"];function g4(e){const t=e.ownerDocument.defaultView;if(!t)return new window.DOMRectReadOnly;let n=e.getBoundingClientRect();const o=e.getAttribute("data-type");if(o&&zxt.includes(o)){const i=[e];let c;for(;c=i.pop();)if(!Mxt(c)){for(const l of c.children)if(gxt(l)){const u=l.getBoundingClientRect();n=bme(n,u),i.push(l)}}}const r=Math.max(n.left,0),s=Math.min(n.right,t.innerWidth);return n=new window.DOMRectReadOnly(r,n.top,s-r,n.height),n}function Oxt({clientId:e,initialPosition:t}){const n=x.useRef(),{isBlockSelected:o,isMultiSelecting:r,isZoomOut:s}=ct(G(Q));return x.useEffect(()=>{if(!o(e)||r()||s()||t==null||!n.current)return;const{ownerDocument:i}=n.current;if(LM(n.current,i.activeElement))return;const c=Xr.tabbable.find(n.current).filter(d=>md(d)),l=t===-1,u=c[l?c.length-1:0]||n.current;if(!LM(n.current,u)){n.current.focus();return}if(!n.current.getAttribute("contenteditable")){const d=Xr.tabbable.findNext(n.current);if(d&&LM(n.current,d)&&u0e(d)){d.focus();return}}m0e(u,l)},[t,e]),n}function yxt({clientId:e}){const{hoverBlock:t}=Oe(Q);function n(o){if(o.defaultPrevented)return;const r=o.type==="mouseover"?"add":"remove";o.preventDefault(),o.currentTarget.classList[r]("is-hovered"),t(r==="add"?e:null)}return Mn(o=>(o.addEventListener("mouseout",n),o.addEventListener("mouseover",n),()=>{o.removeEventListener("mouseout",n),o.removeEventListener("mouseover",n),o.classList.remove("is-hovered"),t(null)}),[])}function Axt(e){const{isBlockSelected:t}=G(Q),{selectBlock:n,selectionChange:o}=Oe(Q);return Mn(r=>{function s(i){if(!r.parentElement.closest('[contenteditable="true"]')){if(t(e)){i.target.isContentEditable||o(e);return}LM(r,i.target)&&n(e)}}return r.addEventListener("focusin",s),()=>{r.removeEventListener("focusin",s)}},[t,n])}function q7({count:e,icon:t,isPattern:n,fadeWhenDisabled:o}){const r=n&&m("Pattern");return a.jsx("div",{className:"block-editor-block-draggable-chip-wrapper",children:a.jsx("div",{className:"block-editor-block-draggable-chip","data-testid":"block-draggable-chip",children:a.jsxs(Yo,{justify:"center",className:"block-editor-block-draggable-chip__content",children:[a.jsx(Tn,{children:t?a.jsx(Zn,{icon:t}):r||xe(Dn("%d block","%d blocks",e),e)}),a.jsx(Tn,{children:a.jsx(Zn,{icon:nde})}),o&&a.jsx(Tn,{className:"block-editor-block-draggable-chip__disabled",children:a.jsx("span",{className:"block-editor-block-draggable-chip__disabled-icon"})})]})})})}function vxt({clientId:e,isSelected:t}){const{getBlockType:n}=G(kt),{getBlockRootClientId:o,isZoomOut:r,hasMultiSelection:s,getBlockName:i}=ct(G(Q)),{insertAfterBlock:c,removeBlock:l,resetZoomLevel:u,startDraggingBlocks:d,stopDraggingBlocks:p}=ct(Oe(Q));return Mn(f=>{if(!t)return;function b(g){const{keyCode:z,target:A}=g;z!==Gr&&z!==Mc&&z!==Ol||A!==f||md(A)||(g.preventDefault(),z===Gr&&r()?u():z===Gr?c(e):l(e))}function h(g){if(f!==g.target||f.isContentEditable||f.ownerDocument.activeElement!==f||s()){g.preventDefault();return}const z=JSON.stringify({type:"block",srcClientIds:[e],srcRootClientId:o(e)});g.dataTransfer.effectAllowed="move",g.dataTransfer.clearData(),g.dataTransfer.setData("wp-blocks",z);const{ownerDocument:A}=f,{defaultView:_}=A;_.getSelection().removeAllRanges();const M=document.createElement("div");Nre.createRoot(M).render(a.jsx(q7,{icon:n(i(e)).icon})),document.body.appendChild(M),M.style.position="absolute",M.style.top="0",M.style.left="0",M.style.zIndex="1000",M.style.pointerEvents="none";const k=A.createElement("div");k.style.width="1px",k.style.height="1px",k.style.position="fixed",k.style.visibility="hidden",A.body.appendChild(k),g.dataTransfer.setDragImage(k,0,0);let S={x:0,y:0};if(document!==A){const T=_.frameElement;if(T){const E=T.getBoundingClientRect();S={x:E.left,y:E.top}}}S.x-=58;function C(T){M.style.transform=`translate( ${T.clientX+S.x}px, ${T.clientY+S.y}px )`}C(g);function R(){A.removeEventListener("dragover",C),A.removeEventListener("dragend",R),M.remove(),k.remove(),p(),document.body.classList.remove("is-dragging-components-draggable"),A.documentElement.classList.remove("is-dragging")}A.addEventListener("dragover",C),A.addEventListener("dragend",R),A.addEventListener("drop",R),d([e]),document.body.classList.add("is-dragging-components-draggable"),A.documentElement.classList.add("is-dragging")}return f.addEventListener("keydown",b),f.addEventListener("dragstart",h),()=>{f.removeEventListener("keydown",b),f.removeEventListener("dragstart",h)}},[e,t,o,c,l,r,u,s,d,p])}function xxt(){const e=x.useContext(Wge);return Mn(t=>{if(e)return e.observe(t),()=>{e.unobserve(t)}},[e])}function wxt({isSelected:e}){const t=$1();return Mn(n=>{if(e){const{ownerDocument:o}=n,{defaultView:r}=o;if(!r.IntersectionObserver)return;const s=new r.IntersectionObserver(i=>{i[0].isIntersecting||n.scrollIntoView({behavior:t?"instant":"smooth"}),s.disconnect()});return s.observe(n),()=>{s.disconnect()}}},[e])}function hme({clientId:e="",isEnabled:t=!0}={}){const{getEnabledClientIdsTree:n}=ct(G(Q));return Mn(o=>{if(!t)return;const r=()=>{n(e).forEach(({clientId:i})=>{const c=o.querySelector(`[data-block="${i}"]`);c&&(c.classList.remove("has-editable-outline"),c.offsetWidth,c.classList.add("has-editable-outline"))})},s=i=>{(i.target===o||i.target.classList.contains("is-root-container"))&&(i.defaultPrevented||(i.preventDefault(),r()))};return o.addEventListener("click",s),()=>o.removeEventListener("click",s)},[t])}const Yz=new Map;function _xt(e,t){let n=Yz.get(e);n||(n=new Set,Yz.set(e,n),e.addEventListener("pointerdown",gme)),n.add(t)}function kxt(e,t){const n=Yz.get(e);n&&(n.delete(t),mme(t),n.size===0&&(Yz.delete(e),e.removeEventListener("pointerdown",gme)))}function mme(e){const t=e.getAttribute("data-draggable");t&&(e.removeAttribute("data-draggable"),t==="true"&&!e.getAttribute("draggable")&&e.setAttribute("draggable","true"))}function gme(e){const{target:t}=e,{ownerDocument:n,isContentEditable:o}=t,r=Yz.get(n);if(o)for(const s of r)s.getAttribute("draggable")==="true"&&s.contains(t)&&(s.removeAttribute("draggable"),s.setAttribute("data-draggable","true"));else for(const s of r)mme(s)}function Sxt(){return Mn(e=>(_xt(e.ownerDocument,e),()=>{kxt(e.ownerDocument,e)}),[])}function Be(e={},{__unstableIsHtml:t}={}){const{clientId:n,className:o,wrapperProps:r={},isAligned:s,index:i,mode:c,name:l,blockApiVersion:u,blockTitle:d,isSelected:p,isSubtreeDisabled:f,hasOverlay:b,initialPosition:h,blockEditingMode:g,isHighlighted:z,isMultiSelected:A,isPartiallySelected:_,isReusable:v,isDragging:M,hasChildSelected:y,isEditingDisabled:k,hasEditableOutline:S,isTemporarilyEditingAsBlocks:C,defaultClassName:R,isSectionBlock:T,canMove:E}=x.useContext(Pz),B=xe(m("Block: %s"),d),N=c==="html"&&!t?"-visual":"",j=Sxt(),I=xn([e.ref,Oxt({clientId:n,initialPosition:h}),_vt(n),Axt(n),vxt({clientId:n,isSelected:p}),yxt({clientId:n}),xxt(),pme({triggerAnimationOnChange:i,clientId:n}),UN({isDisabled:!b}),hme({clientId:n,isEnabled:T}),wxt({isSelected:p}),E?j:void 0]),P=j0(),F=!!P[QB]&&u7(l)?{"--wp-admin-theme-color":"var(--wp-block-synced-color)","--wp-admin-theme-color--rgb":"var(--wp-block-synced-color--rgb)"}:{};u<2&&n===P.clientId&&globalThis.SCRIPT_DEBUG===!0&&zn(`Block type "${l}" must support API version 2 or higher to work correctly with "useBlockProps" method.`);let X=!1;return(r?.style?.marginTop?.charAt(0)==="-"||r?.style?.marginBottom?.charAt(0)==="-"||r?.style?.marginLeft?.charAt(0)==="-"||r?.style?.marginRight?.charAt(0)==="-")&&(X=!0),{tabIndex:g==="disabled"?-1:0,draggable:E&&!y?!0:void 0,...r,...e,ref:I,id:`block-${n}${N}`,role:"document","aria-label":B,"data-block":n,"data-type":l,"data-title":d,inert:f?"true":void 0,className:oe("block-editor-block-list__block",{"wp-block":!s,"has-block-overlay":b,"is-selected":p,"is-highlighted":z,"is-multi-selected":A,"is-partially-selected":_,"is-reusable":v,"is-dragging":M,"has-child-selected":y,"is-editing-disabled":k,"has-editable-outline":S,"has-negative-margin":X,"is-content-locked-temporarily-editing-as-blocks":C},o,e.className,r.className,R),style:{...r.style,...e.style,...F}}}Be.save=Q4;function Cxt(e,t){const n={...e,...t};return e?.hasOwnProperty("className")&&t?.hasOwnProperty("className")&&(n.className=oe(e.className,t.className)),e?.hasOwnProperty("style")&&t?.hasOwnProperty("style")&&(n.style={...e.style,...t.style}),n}function tv({children:e,isHtml:t,...n}){return a.jsx("div",{...Be(n,{__unstableIsHtml:t}),children:e})}function LW({block:{__unstableBlockSource:e},mode:t,isLocked:n,canRemove:o,clientId:r,isSelected:s,isSelectionEnabled:i,className:c,__unstableLayoutClassNames:l,name:u,isValid:d,attributes:p,wrapperProps:f,setAttributes:b,onReplace:h,onRemove:g,onInsertBlocksAfter:z,onMerge:A,toggleSelection:_}){var v;const{mayDisplayControls:M,mayDisplayParentControls:y,themeSupportsLayout:k,...S}=x.useContext(Pz),C=w_()||{};let R=a.jsx(hyt,{name:u,isSelected:s,attributes:p,setAttributes:b,insertBlocksAfter:n?void 0:z,onReplace:o?h:void 0,onRemove:o?g:void 0,mergeBlocks:o?A:void 0,clientId:r,isSelectionEnabled:i,toggleSelection:_,__unstableLayoutClassNames:l,__unstableParentLayout:Object.keys(C).length?C:void 0,mayDisplayControls:M,mayDisplayParentControls:y,blockEditingMode:S.blockEditingMode,isPreviewMode:S.isPreviewMode});const T=on(u);T?.getEditWrapperProps&&(f=Cxt(f,T.getEditWrapperProps(p)));const E=f&&!!f["data-align"]&&!k,B=c?.includes("is-position-sticky");E&&(R=a.jsx("div",{className:oe("wp-block",B&&c),"data-align":f["data-align"],children:R}));let N;if(d)t==="html"?N=a.jsxs(a.Fragment,{children:[a.jsx("div",{style:{display:"none"},children:R}),a.jsx(tv,{isHtml:!0,children:a.jsx(Xvt,{clientId:r})})]}):T?.apiVersion>1?N=R:N=a.jsx(tv,{children:R});else{const $=e?ez(e):Gf(T,p);N=a.jsxs(tv,{className:"has-warning",children:[a.jsx(Evt,{clientId:r}),a.jsx(i0,{children:q5($)})]})}const{"data-align":j,...I}=(v=f)!==null&&v!==void 0?v:{},P={...I,className:oe(I.className,j&&k&&`align${j}`,!(j&&B)&&c)};return a.jsx(Pz.Provider,{value:{wrapperProps:P,isAligned:E,...S},children:a.jsx(Bvt,{fallback:a.jsx(tv,{className:"has-warning",children:a.jsx(Nvt,{})}),children:N})})}const qxt=Ff((e,t,n)=>{const{updateBlockAttributes:o,insertBlocks:r,mergeBlocks:s,replaceBlocks:i,toggleSelection:c,__unstableMarkLastChangeAsPersistent:l,moveBlocksToPosition:u,removeBlock:d,selectBlock:p}=e(Q);return{setAttributes(f){const{getMultiSelectedBlockClientIds:b}=n.select(Q),h=b(),{clientId:g}=t,z=h.length?h:[g];o(z,f)},onInsertBlocks(f,b){const{rootClientId:h}=t;r(f,b,h)},onInsertBlocksAfter(f){const{clientId:b,rootClientId:h}=t,{getBlockIndex:g}=n.select(Q),z=g(b);r(f,z+1,h)},onMerge(f){const{clientId:b,rootClientId:h}=t,{getPreviousBlockClientId:g,getNextBlockClientId:z,getBlock:A,getBlockAttributes:_,getBlockName:v,getBlockOrder:M,getBlockIndex:y,getBlockRootClientId:k,canInsertBlockType:S}=n.select(Q);function C(){const T=A(b),E=Mr(),B=on(E);if(v(b)!==E){const N=Kr(T,E);N&&N.length&&i(b,N)}else if(Wl(T)){const N=z(b);N&&n.batch(()=>{d(b),p(N)})}else if(B.merge){const N=B.merge({},T.attributes);i([b],[Ee(E,N)])}}function R(T,E=!0){const B=v(T),j=on(B).category==="text",I=k(T),P=M(T),[$]=P;P.length===1&&E2(A($))?d(T):j?n.batch(()=>{if(S(v($),I))u([$],T,I,y(T));else{const F=Kr(A($),Mr());F&&F.length&&F.every(X=>S(X.name,I))?(r(F,y(T),I,E),d($,!1)):C()}!M(T).length&&E2(A(T))&&d(T,!1)}):C()}if(f){if(h){const E=z(h);if(E)if(v(h)===v(E)){const B=_(h),N=_(E);if(Object.keys(B).every(j=>B[j]===N[j])){n.batch(()=>{u(M(E),E,h),d(E,!1)});return}}else{s(h,E);return}}const T=z(b);if(!T)return;M(T).length?R(T,!1):s(b,T)}else{const T=g(b);if(T)s(T,b);else if(h){const E=g(h);if(E&&v(h)===v(E)){const B=_(h),N=_(E);if(Object.keys(B).every(j=>B[j]===N[j])){n.batch(()=>{u(M(h),h,E),d(h,!1)});return}}R(h)}else C()}},onReplace(f,b,h){f.length&&!Wl(f[f.length-1])&&l();const g=f?.length===1&&Array.isArray(f[0])?f[0]:f;i([t.clientId],g,b,h)},onRemove(){d(t.clientId)},toggleSelection(f){c(f)}}});LW=Co(qxt,ap("editor.BlockListBlock"))(LW);function Rxt(e){const{clientId:t,rootClientId:n}=e,o=G(J=>{const{isBlockSelected:ue,getBlockMode:ce,isSelectionEnabled:me,getTemplateLock:de,isSectionBlock:Ae,getBlockWithoutAttributes:ye,getBlockAttributes:Ne,canRemoveBlock:je,canMoveBlock:ie,getSettings:we,getTemporarilyEditingAsBlocks:re,getBlockEditingMode:pe,getBlockName:ke,isFirstMultiSelectedBlock:Se,getMultiSelectedBlockClientIds:se,hasSelectedInnerBlock:L,getBlocksByName:U,getBlockIndex:ne,isBlockMultiSelected:ve,isBlockSubtreeDisabled:qe,isBlockHighlighted:Pe,__unstableIsFullySelected:rt,__unstableSelectionHasUnmergeableBlock:qt,isBlockBeingDragged:wt,isDragging:Bt,__unstableHasActiveBlockOverlayActive:ae,getSelectedBlocksInitialCaretPosition:H}=ct(J(Q)),Y=ye(t);if(!Y)return;const{hasBlockSupport:fe,getActiveBlockVariation:Re}=J(kt),be=Ne(t),{name:ze,isValid:nt}=Y,Mt=on(ze),{supportsLayout:ot,isPreviewMode:Ue}=we(),yt=Mt?.apiVersion>1,fn={isPreviewMode:Ue,blockWithoutAttributes:Y,name:ze,attributes:be,isValid:nt,themeSupportsLayout:ot,index:ne(t),isReusable:Qd(Mt),className:yt?be.className:void 0,defaultClassName:yt?Z4(ze):void 0,blockTitle:Mt?.title};if(Ue)return fn;const Pn=ue(t),Mo=je(t),rr=ie(t),Jo=Re(ze,be),To=ve(t),Rt=L(t,!0),Qe=pe(t),Gt=Et(ze,"multiple",!0)?[]:U(ze),On=Gt.length&&Gt[0]!==t;return{...fn,mode:ce(t),isSelectionEnabled:me(),isLocked:!!de(n),isSectionBlock:Ae(t),canRemove:Mo,canMove:rr,isSelected:Pn,isTemporarilyEditingAsBlocks:re()===t,blockEditingMode:Qe,mayDisplayControls:Pn||Se(t)&&se().every($n=>ke($n)===ze),mayDisplayParentControls:fe(ke(t),"__experimentalExposeControlsToChildren",!1)&&L(t),blockApiVersion:Mt?.apiVersion||1,blockTitle:Jo?.title||Mt?.title,isSubtreeDisabled:Qe==="disabled"&&qe(t),hasOverlay:ae(t)&&!Bt(),initialPosition:Pn?H():void 0,isHighlighted:Pe(t),isMultiSelected:To,isPartiallySelected:To&&!rt()&&!qt(),isDragging:wt(t),hasChildSelected:Rt,isEditingDisabled:Qe==="disabled",hasEditableOutline:Qe!=="disabled"&&pe(n)==="disabled",originalBlockClientId:On?Gt[0]:!1}},[t,n]),{isPreviewMode:r,mode:s="visual",isSelectionEnabled:i=!1,isLocked:c=!1,canRemove:l=!1,canMove:u=!1,blockWithoutAttributes:d,name:p,attributes:f,isValid:b,isSelected:h=!1,themeSupportsLayout:g,isTemporarilyEditingAsBlocks:z,blockEditingMode:A,mayDisplayControls:_,mayDisplayParentControls:v,index:M,blockApiVersion:y,blockTitle:k,isSubtreeDisabled:S,hasOverlay:C,initialPosition:R,isHighlighted:T,isMultiSelected:E,isPartiallySelected:B,isReusable:N,isDragging:j,hasChildSelected:I,isSectionBlock:P,isEditingDisabled:$,hasEditableOutline:F,className:X,defaultClassName:Z,originalBlockClientId:V}=o,ee=x.useMemo(()=>({...d,attributes:f}),[d,f]);if(!o)return null;const te={isPreviewMode:r,clientId:t,className:X,index:M,mode:s,name:p,blockApiVersion:y,blockTitle:k,isSelected:h,isSubtreeDisabled:S,hasOverlay:C,initialPosition:R,blockEditingMode:A,isHighlighted:T,isMultiSelected:E,isPartiallySelected:B,isReusable:N,isDragging:j,hasChildSelected:I,isSectionBlock:P,isEditingDisabled:$,hasEditableOutline:F,isTemporarilyEditingAsBlocks:z,defaultClassName:Z,mayDisplayControls:_,mayDisplayParentControls:v,originalBlockClientId:V,themeSupportsLayout:g,canMove:u};return a.jsx(Pz.Provider,{value:te,children:a.jsx(LW,{...e,mode:s,isSelectionEnabled:i,isLocked:c,canRemove:l,canMove:u,block:ee,name:p,attributes:f,isValid:b,isSelected:h})})}const Txt=x.memo(Rxt),WQ=[cr(m("While writing, you can press <kbd>/</kbd> to quickly insert new blocks."),{kbd:a.jsx("kbd",{})}),cr(m("Indent a list by pressing <kbd>space</kbd> at the beginning of a line."),{kbd:a.jsx("kbd",{})}),cr(m("Outdent a list by pressing <kbd>backspace</kbd> at the beginning of a line."),{kbd:a.jsx("kbd",{})}),m("Drag files into the editor to automatically insert media blocks."),m("Change a block's type by pressing the block icon on the toolbar.")];function Ext(){const[e]=x.useState(Math.floor(Math.random()*WQ.length));return a.jsx(sht,{children:WQ[e]})}const{Badge:Wxt}=ct(tr);function Mme({title:e,icon:t,description:n,blockType:o,className:r,name:s}){o&&(Ke("`blockType` property in `BlockCard component`",{since:"5.7",alternative:"`title, icon and description` properties"}),{title:e,icon:t,description:n}=o);const{parentNavBlockClientId:i}=G(l=>{const{getSelectedBlockClientId:u,getBlockParentsByBlockName:d}=l(Q),p=u();return{parentNavBlockClientId:d(p,"core/navigation",!0)[0]}},[]),{selectBlock:c}=Oe(Q);return a.jsxs("div",{className:oe("block-editor-block-card",r),children:[i&&a.jsx(Ce,{onClick:()=>c(i),label:m("Go to parent Navigation block"),style:{minWidth:24,padding:0},icon:jt()?ga:Pl,size:"small"}),a.jsx(Zn,{icon:t,showColors:!0}),a.jsxs(dt,{spacing:1,children:[a.jsxs("h2",{className:"block-editor-block-card__title",children:[a.jsx("span",{className:"block-editor-block-card__name",children:s?.length?s:e}),!!s?.length&&a.jsx(Wxt,{children:e})]}),n&&a.jsx(Sn,{className:"block-editor-block-card__description",children:n})]})]})}let _r=function(e){return e.Unknown="REDUX_UNKNOWN",e.Add="ADD_ITEM",e.Prepare="PREPARE_ITEM",e.Cancel="CANCEL_ITEM",e.Remove="REMOVE_ITEM",e.PauseItem="PAUSE_ITEM",e.ResumeItem="RESUME_ITEM",e.PauseQueue="PAUSE_QUEUE",e.ResumeQueue="RESUME_QUEUE",e.OperationStart="OPERATION_START",e.OperationFinish="OPERATION_FINISH",e.AddOperations="ADD_OPERATIONS",e.CacheBlobUrl="CACHE_BLOB_URL",e.RevokeBlobUrls="REVOKE_BLOB_URLS",e.UpdateSettings="UPDATE_SETTINGS",e}({}),zme=function(e){return e.Processing="PROCESSING",e.Paused="PAUSED",e}({}),Zz=function(e){return e.Prepare="PREPARE",e.Upload="UPLOAD",e}({});const Nxt=()=>{},Bxt={queue:[],queueStatus:"active",blobUrls:{},settings:{mediaUpload:Nxt}};function Ome(e=Bxt,t={type:_r.Unknown}){switch(t.type){case _r.PauseQueue:return{...e,queueStatus:"paused"};case _r.ResumeQueue:return{...e,queueStatus:"active"};case _r.Add:return{...e,queue:[...e.queue,t.item]};case _r.Cancel:return{...e,queue:e.queue.map(n=>n.id===t.id?{...n,error:t.error}:n)};case _r.Remove:return{...e,queue:e.queue.filter(n=>n.id!==t.id)};case _r.OperationStart:return{...e,queue:e.queue.map(n=>n.id===t.id?{...n,currentOperation:t.operation}:n)};case _r.AddOperations:return{...e,queue:e.queue.map(n=>n.id!==t.id?n:{...n,operations:[...n.operations||[],...t.operations]})};case _r.OperationFinish:return{...e,queue:e.queue.map(n=>{if(n.id!==t.id)return n;const o=n.operations?n.operations.slice(1):[],r=n.attachment||t.item.attachment?{...n.attachment,...t.item.attachment}:void 0;return{...n,currentOperation:void 0,operations:o,...t.item,attachment:r,additionalData:{...n.additionalData,...t.item.additionalData}}})};case _r.CacheBlobUrl:{const n=e.blobUrls[t.id]||[];return{...e,blobUrls:{...e.blobUrls,[t.id]:[...n,t.blobUrl]}}}case _r.RevokeBlobUrls:{const n={...e.blobUrls};return delete n[t.id],{...e,blobUrls:n}}case _r.UpdateSettings:return{...e,settings:{...e.settings,...t.settings}}}return e}function Lxt(e){return e.queue}function Pxt(e){return e.queue.length>=1}function jxt(e,t){return e.queue.some(n=>n.attachment?.url===t||n.sourceUrl===t)}function Ixt(e,t){return e.queue.some(n=>n.attachment?.id===t||n.sourceAttachmentId===t)}function Dxt(e){return e.settings}const yme=Object.freeze(Object.defineProperty({__proto__:null,getItems:Lxt,getSettings:Dxt,isUploading:Pxt,isUploadingById:Ixt,isUploadingByUrl:jxt},Symbol.toStringTag,{value:"Module"}));function Fxt(e){return e.queue}function $xt(e,t){return e.queue.find(n=>n.id===t)}function Vxt(e,t){return e.queue.filter(o=>t===o.batchId).length===0}function Hxt(e,t){return e.queue.some(n=>n.currentOperation===Zz.Upload&&n.additionalData.post===t)}function Uxt(e,t){return e.queue.find(n=>n.status===zme.Paused&&n.additionalData.post===t)}function Xxt(e){return e.queueStatus==="paused"}function Gxt(e,t){return e.blobUrls[t]||[]}const Kxt=Object.freeze(Object.defineProperty({__proto__:null,getAllItems:Fxt,getBlobUrls:Gxt,getItem:$xt,getPausedUploadForPost:Uxt,isBatchUploaded:Vxt,isPaused:Xxt,isUploadingToPost:Hxt},Symbol.toStringTag,{value:"Module"}));let $x=class extends Error{constructor({code:t,message:n,file:o,cause:r}){super(n,{cause:r}),Object.setPrototypeOf(this,new.target.prototype),this.code=t,this.file=o}};function Yxt(e,t){if(!t)return;const n=t.some(o=>o.includes("/")?o===e.type:e.type.startsWith(`${o}/`));if(e.type&&!n)throw new $x({code:"MIME_TYPE_NOT_SUPPORTED",message:xe(m("%s: Sorry, this file type is not supported here."),e.name),file:e})}function Zxt(e){return e?Object.entries(e).flatMap(([t,n])=>{const[o]=n.split("/"),r=t.split("|");return[n,...r.map(s=>`${o}/${s}`)]}):null}function Qxt(e,t){const n=Zxt(t);if(!n)return;const o=n.includes(e.type);if(e.type&&!o)throw new $x({code:"MIME_TYPE_NOT_ALLOWED_FOR_USER",message:xe(m("%s: Sorry, you are not allowed to upload this file type."),e.name),file:e})}function Jxt(e,t){if(e.size<=0)throw new $x({code:"EMPTY_FILE",message:xe(m("%s: This file is empty."),e.name),file:e});if(t&&e.size>t)throw new $x({code:"SIZE_ABOVE_LIMIT",message:xe(m("%s: This file exceeds the maximum upload size for this site."),e.name),file:e})}function e5t({files:e,onChange:t,onSuccess:n,onError:o,onBatchSuccess:r,additionalData:s,allowedTypes:i}){return async({select:c,dispatch:l})=>{const u=Is();for(const d of e){try{Yxt(d,i),Qxt(d,c.getSettings().allowedMimeTypes)}catch(p){o?.(p);continue}try{Jxt(d,c.getSettings().maxUploadFileSize)}catch(p){o?.(p);continue}l.addItem({file:d,batchId:u,onChange:t,onSuccess:n,onBatchSuccess:r,onError:o,additionalData:s})}}}function t5t(e,t,n=!1){return async({select:o,dispatch:r})=>{const s=o.getItem(e);if(s){if(s.abortController?.abort(),!n){const{onError:i}=s;i?.(t??new Error("Upload cancelled")),!i&&t&&console.error("Upload cancelled",t)}r({type:_r.Cancel,id:e,error:t}),r.removeItem(e),r.revokeBlobUrls(e),s.batchId&&o.isBatchUploaded(s.batchId)&&s.onBatchSuccess?.()}}}const Ame=Object.freeze(Object.defineProperty({__proto__:null,addItems:e5t,cancelItem:t5t},Symbol.toStringTag,{value:"Module"}));function n5t(e){if(e instanceof File)return e;const t=e.type.split("/")[1],n=e.type==="application/pdf"?"document":e.type.split("/")[0];return new File([e],`${n}.${t}`,{type:e.type})}function o5t(e,t){return new File([e],t,{type:e.type,lastModified:e.lastModified})}function r5t(e){return o5t(e,e.name)}class s5t extends File{constructor(t="stub-file"){super([],t)}}function i5t({file:e,batchId:t,onChange:n,onSuccess:o,onBatchSuccess:r,onError:s,additionalData:i={},sourceUrl:c,sourceAttachmentId:l,abortController:u,operations:d}){return async({dispatch:p})=>{const f=Is(),b=n5t(e);let h;b instanceof s5t||(h=ls(b),p({type:_r.CacheBlobUrl,id:f,blobUrl:h})),p({type:_r.Add,item:{id:f,batchId:t,status:zme.Processing,sourceFile:r5t(b),file:b,attachment:{url:h},additionalData:{convert_format:!1,...i},onChange:n,onSuccess:o,onBatchSuccess:r,onError:s,sourceUrl:c,sourceAttachmentId:l,abortController:u||new AbortController,operations:Array.isArray(d)?d:[Zz.Prepare]}}),p.processItem(f)}}function a5t(e){return async({select:t,dispatch:n})=>{if(t.isPaused())return;const o=t.getItem(e),{attachment:r,onChange:s,onSuccess:i,onBatchSuccess:c,batchId:l}=o,u=Array.isArray(o.operations?.[0])?o.operations[0][0]:o.operations?.[0];if(r&&s?.([r]),!u){r&&i?.([r]),n.revokeBlobUrls(e),l&&t.isBatchUploaded(l)&&c?.();return}if(u)switch(n({type:_r.OperationStart,id:e,operation:u}),u){case Zz.Prepare:n.prepareItem(o.id);break;case Zz.Upload:n.uploadItem(e);break}}}function c5t(){return{type:_r.PauseQueue}}function l5t(){return async({select:e,dispatch:t})=>{t({type:_r.ResumeQueue});for(const n of e.getAllItems())t.processItem(n.id)}}function u5t(e){return async({select:t,dispatch:n})=>{t.getItem(e)&&n({type:_r.Remove,id:e})}}function d5t(e,t){return async({dispatch:n})=>{n({type:_r.OperationFinish,id:e,item:t}),n.processItem(e)}}function p5t(e){return async({dispatch:t})=>{const n=[Zz.Upload];t({type:_r.AddOperations,id:e,operations:n}),t.finishOperation(e,{})}}function f5t(e){return async({select:t,dispatch:n})=>{const o=t.getItem(e);t.getSettings().mediaUpload({filesList:[o.file],additionalData:o.additionalData,signal:o.abortController?.signal,onFileChange:([r])=>{Nr(r.url)||n.finishOperation(e,{attachment:r})},onSuccess:([r])=>{n.finishOperation(e,{attachment:r})},onError:r=>{n.cancelItem(e,r)}})}}function b5t(e){return async({select:t,dispatch:n})=>{const o=t.getBlobUrls(e);for(const r of o)nx(r);n({type:_r.RevokeBlobUrls,id:e})}}function h5t(e){return{type:_r.UpdateSettings,settings:e}}const m5t=Object.freeze(Object.defineProperty({__proto__:null,addItem:i5t,finishOperation:d5t,pauseQueue:c5t,prepareItem:p5t,processItem:a5t,removeItem:u5t,resumeQueue:l5t,revokeBlobUrls:b5t,updateSettings:h5t,uploadItem:f5t},Symbol.toStringTag,{value:"Module"})),{lock:ign,unlock:R7}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/upload-media"),vme="core/upload-media",g5t={reducer:Ome,selectors:yme,actions:Ame},SO=x1(vme,{reducer:Ome,selectors:yme,actions:Ame});Us(SO);R7(SO).registerPrivateActions(m5t);R7(SO).registerPrivateSelectors(Kxt);function M5t(e,t,n){if(!n)return t;let o=e.get(t);return o||(o=N5({},t),o.registerStore(vme,g5t),e.set(t,o)),o}const z5t=Or(e=>({useSubRegistry:t=!0,...n})=>{const o=Fn(),[r]=x.useState(()=>new WeakMap),s=M5t(r,o,t);return s===o?a.jsx(e,{registry:o,...n}):a.jsx(YN,{value:s,children:a.jsx(e,{registry:s,...n})})},"withRegistryProvider"),O5t=z5t(e=>{const{children:t,settings:n}=e,{updateSettings:o}=R7(Oe(SO));return x.useEffect(()=>{o(n)},[n,o]),a.jsx(a.Fragment,{children:t})});function y5t(e,t,n){if(!n)return t;let o=e.get(t);return o||(o=N5({},t),o.registerStore($r,b_),e.set(t,o)),o}const A5t=Or(e=>({useSubRegistry:t=!0,...n})=>{const o=Fn(),[r]=x.useState(()=>new WeakMap),s=y5t(r,o,t);return s===o?a.jsx(e,{registry:o,...n}):a.jsx(YN,{value:s,children:a.jsx(e,{registry:s,...n})})},"withRegistryProvider"),NQ=()=>{};function xme({clientId:e=null,value:t,selection:n,onChange:o=NQ,onInput:r=NQ}){const s=Fn(),{resetBlocks:i,resetSelection:c,replaceInnerBlocks:l,setHasControlledInnerBlocks:u,__unstableMarkNextChangeAsNotPersistent:d}=s.dispatch(Q),{getBlockName:p,getBlocks:f,getSelectionStart:b,getSelectionEnd:h}=s.select(Q),g=G(S=>!e||S(Q).areInnerBlocksControlled(e),[e]),z=x.useRef({incoming:null,outgoing:[]}),A=x.useRef(!1),_=()=>{t&&(d(),e?s.batch(()=>{u(e,!0);const S=t.map(C=>jo(C));A.current&&(z.current.incoming=S),d(),l(e,S)}):(A.current&&(z.current.incoming=t),i(t)))},v=()=>{d(),e?(u(e,!1),d(),l(e,[])):i([])},M=x.useRef(r),y=x.useRef(o);x.useEffect(()=>{M.current=r,y.current=o},[r,o]),x.useEffect(()=>{z.current.outgoing.includes(t)?z.current.outgoing[z.current.outgoing.length-1]===t&&(z.current.outgoing=[]):f(e)!==t&&(z.current.outgoing=[],_(),n&&c(n.selectionStart,n.selectionEnd,n.initialPosition))},[t,e]);const k=x.useRef(!1);x.useEffect(()=>{if(!k.current){k.current=!0;return}g||(z.current.outgoing=[],_())},[g]),x.useEffect(()=>{const{getSelectedBlocksInitialCaretPosition:S,isLastBlockChangePersistent:C,__unstableIsLastBlockChangeIgnored:R,areInnerBlocksControlled:T}=s.select(Q);let E=f(e),B=C(),N=!1;A.current=!0;const j=s.subscribe(()=>{if(e!==null&&p(e)===null||!(!e||T(e)))return;const P=C(),$=f(e),F=$!==E;if(E=$,F&&(z.current.incoming||R())){z.current.incoming=null,B=P;return}(F||N&&!F&&P&&!B)&&(B=P,z.current.outgoing.push(E),(B?y.current:M.current)(E,{selection:{selectionStart:b(),selectionEnd:h(),initialPosition:S()}})),N=F},Q);return()=>{A.current=!1,j()}},[s,e]),x.useEffect(()=>()=>{v()},[])}function v5t(e={},t){switch(t.type){case"REGISTER_SHORTCUT":return{...e,[t.name]:{category:t.category,keyCombination:t.keyCombination,aliases:t.aliases,description:t.description}};case"UNREGISTER_SHORTCUT":const{[t.name]:n,...o}=e;return o}return e}function x5t({name:e,category:t,description:n,keyCombination:o,aliases:r}){return{type:"REGISTER_SHORTCUT",name:e,category:t,keyCombination:o,aliases:r,description:n}}function w5t(e){return{type:"UNREGISTER_SHORTCUT",name:e}}const _5t=Object.freeze(Object.defineProperty({__proto__:null,registerShortcut:x5t,unregisterShortcut:w5t},Symbol.toStringTag,{value:"Module"})),k5t=[],S5t={display:j1,raw:LSe,ariaLabel:y0e};function wme(e,t){return e?e.modifier?S5t[t][e.modifier](e.character):e.character:null}function T7(e,t){return e[t]?e[t].keyCombination:null}function C5t(e,t,n="display"){const o=T7(e,t);return wme(o,n)}function q5t(e,t){return e[t]?e[t].description:null}function _me(e,t){return e[t]&&e[t].aliases?e[t].aliases:k5t}const kme=It((e,t)=>[T7(e,t),..._me(e,t)].filter(Boolean),(e,t)=>[e[t]]),R5t=It((e,t)=>kme(e,t).map(n=>wme(n,"raw")),(e,t)=>[e[t]]),T5t=It((e,t)=>Object.entries(e).filter(([,n])=>n.category===t).map(([n])=>n),e=>[e]),E5t=Object.freeze(Object.defineProperty({__proto__:null,getAllShortcutKeyCombinations:kme,getAllShortcutRawKeyCombinations:R5t,getCategoryShortcuts:T5t,getShortcutAliases:_me,getShortcutDescription:q5t,getShortcutKeyCombination:T7,getShortcutRepresentation:C5t},Symbol.toStringTag,{value:"Module"})),W5t="core/keyboard-shortcuts",ji=x1(W5t,{reducer:v5t,actions:_5t,selectors:E5t});Us(ji);function E_(){const{getAllShortcutKeyCombinations:e}=G(ji);function t(n,o){return e(n).some(({modifier:r,character:s})=>lc[r](o,s))}return t}const uM=new Set,BQ=e=>{for(const t of uM)t(e)},N5t=x.createContext({add:e=>{uM.size===0&&document.addEventListener("keydown",BQ),uM.add(e)},delete:e=>{uM.delete(e),uM.size===0&&document.removeEventListener("keydown",BQ)}});function p0(e,t,{isDisabled:n=!1}={}){const o=x.useContext(N5t),r=E_(),s=x.useRef();x.useEffect(()=>{s.current=t},[t]),x.useEffect(()=>{if(n)return;function i(c){r(e,c)&&s.current(c)}return o.add(i),()=>{o.delete(i)}},[e,n,o])}function Sme(){return null}function B5t(){const{registerShortcut:e}=Oe(ji);return x.useEffect(()=>{e({name:"core/block-editor/duplicate",category:"block",description:m("Duplicate the selected block(s)."),keyCombination:{modifier:"primaryShift",character:"d"}}),e({name:"core/block-editor/remove",category:"block",description:m("Remove the selected block(s)."),keyCombination:{modifier:"shift",character:"backspace"}}),e({name:"core/block-editor/insert-before",category:"block",description:m("Insert a new block before the selected block(s)."),keyCombination:{modifier:"primaryAlt",character:"t"}}),e({name:"core/block-editor/insert-after",category:"block",description:m("Insert a new block after the selected block(s)."),keyCombination:{modifier:"primaryAlt",character:"y"}}),e({name:"core/block-editor/delete-multi-selection",category:"block",description:m("Delete selection."),keyCombination:{character:"del"},aliases:[{character:"backspace"}]}),e({name:"core/block-editor/select-all",category:"selection",description:m("Select all text when typing. Press again to select all blocks."),keyCombination:{modifier:"primary",character:"a"}}),e({name:"core/block-editor/unselect",category:"selection",description:m("Clear selection."),keyCombination:{character:"escape"}}),e({name:"core/block-editor/multi-text-selection",category:"selection",description:m("Select text across multiple blocks."),keyCombination:{modifier:"shift",character:"arrow"}}),e({name:"core/block-editor/focus-toolbar",category:"global",description:m("Navigate to the nearest toolbar."),keyCombination:{modifier:"alt",character:"F10"}}),e({name:"core/block-editor/move-up",category:"block",description:m("Move the selected block(s) up."),keyCombination:{modifier:"secondary",character:"t"}}),e({name:"core/block-editor/move-down",category:"block",description:m("Move the selected block(s) down."),keyCombination:{modifier:"secondary",character:"y"}}),e({name:"core/block-editor/collapse-list-view",category:"list-view",description:m("Collapse all other items."),keyCombination:{modifier:"alt",character:"l"}}),e({name:"core/block-editor/group",category:"block",description:m("Create a group block from the selected multiple blocks."),keyCombination:{modifier:"primary",character:"g"}})},[e]),null}Sme.Register=B5t;function L5t(e={}){return x.useMemo(()=>({mediaUpload:e.mediaUpload,mediaSideload:e.mediaSideload,maxUploadFileSize:e.maxUploadFileSize,allowedMimeTypes:e.allowedMimeTypes}),[e])}const P5t=()=>{};function j5t(e,{allowedTypes:t,additionalData:n={},filesList:o,onError:r=P5t,onFileChange:s,onSuccess:i,onBatchSuccess:c}){e.dispatch(SO).addItems({files:o,onChange:s,onSuccess:i,onBatchSuccess:c,onError:({message:l})=>r(l),additionalData:n,allowedTypes:t})}const W_=A5t(e=>{const{settings:t,registry:n,stripExperimentalSettings:o=!1}=e,r=L5t(t);let s=t;window.__experimentalMediaProcessing&&t.mediaUpload&&(s=x.useMemo(()=>({...t,mediaUpload:j5t.bind(null,n)}),[t,n]));const{__experimentalUpdateSettings:i}=ct(Oe(Q));x.useEffect(()=>{i({...s,__internalIsInitialized:!0},{stripExperimentalSettings:o,reset:!0})},[s,o,i]),xme(e);const c=a.jsxs(Spe,{passthrough:!0,children:[!s?.isPreviewMode&&a.jsx(Sme.Register,{}),a.jsx(wvt,{children:e.children})]});return window.__experimentalMediaProcessing?a.jsx(O5t,{settings:r,useSubRegistry:!1,children:c}):c}),I5t=e=>a.jsx(W_,{...e,stripExperimentalSettings:!0,children:e.children});function E7(){const{getSettings:e,hasSelectedBlock:t,hasMultiSelection:n}=G(Q),{clearSelectedBlock:o}=Oe(Q),{clearBlockSelection:r}=e();return Mn(s=>{if(!r)return;function i(c){!t()&&!n()||c.target===s&&o()}return s.addEventListener("mousedown",i),()=>{s.removeEventListener("mousedown",i)}},[t,n,o,r])}function D5t(e){const{isMultiSelecting:t,getMultiSelectedBlockClientIds:n,hasMultiSelection:o,getSelectedBlockClientId:r,getSelectedBlocksInitialCaretPosition:s,__unstableIsFullySelected:i}=e(Q);return{isMultiSelecting:t(),multiSelectedBlockClientIds:n(),hasMultiSelection:o(),selectedBlockClientId:r(),initialPosition:s(),isFullSelection:i()}}function F5t(){const{initialPosition:e,isMultiSelecting:t,multiSelectedBlockClientIds:n,hasMultiSelection:o,selectedBlockClientId:r,isFullSelection:s}=G(D5t,[]);return Mn(i=>{const{ownerDocument:c}=i,{defaultView:l}=c;if(e==null||!o||t)return;const{length:u}=n;u<2||s&&(i.contentEditable=!0,i.focus(),l.getSelection().removeAllRanges())},[o,t,n,r,e,s])}function $5t(){const e=x.useRef(),t=x.useRef(),n=x.useRef(),{hasMultiSelection:o,getSelectedBlockClientId:r,getBlockCount:s,getBlockOrder:i,getLastFocus:c,getSectionRootClientId:l,isZoomOut:u}=ct(G(Q)),{setLastFocus:d}=ct(Oe(Q)),p=x.useRef();function f(A){const _=e.current.ownerDocument===A.target.ownerDocument?e.current:e.current.ownerDocument.defaultView.frameElement;if(p.current)p.current=null;else if(o())e.current.focus();else if(r())c()?.current?c().current.focus():e.current.querySelector(`[data-block="${r()}"]`).focus();else if(u()){const v=l(),M=i(v);M.length?e.current.querySelector(`[data-block="${M[0]}"]`).focus():v?e.current.querySelector(`[data-block="${v}"]`).focus():_.focus()}else{const v=A.target.compareDocumentPosition(_)&A.target.DOCUMENT_POSITION_FOLLOWING,M=Xr.tabbable.find(e.current);M.length&&(v?M[0]:M[M.length-1]).focus()}}const b=a.jsx("div",{ref:t,tabIndex:"0",onFocus:f}),h=a.jsx("div",{ref:n,tabIndex:"0",onFocus:f}),g=Mn(A=>{function _(S){if(S.defaultPrevented||S.keyCode!==Z2)return;const C=S.shiftKey,R=C?"findPrevious":"findNext",T=Xr.tabbable[R](S.target),E=S.target.closest("[data-block]"),B=E&&T&&(fme(E,T)||LM(E,T));if(u0e(T)&&B)return;const N=C?t:n;p.current=!0,N.current.focus({preventScroll:!0})}function v(S){d({...c(),current:S.target});const{ownerDocument:C}=A;!S.relatedTarget&&C.activeElement===C.body&&s()===0&&A.focus()}function M(S){if(S.keyCode!==Z2||S.target?.getAttribute("role")==="region"||e.current===S.target)return;const R=S.shiftKey?"findPrevious":"findNext",T=Xr.tabbable[R](S.target);(T===t.current||T===n.current)&&(S.preventDefault(),T.focus({preventScroll:!0}))}const{ownerDocument:y}=A,{defaultView:k}=y;return k.addEventListener("keydown",M),A.addEventListener("keydown",_),A.addEventListener("focusout",v),()=>{k.removeEventListener("keydown",M),A.removeEventListener("keydown",_),A.removeEventListener("focusout",v)}},[]),z=xn([e,g]);return[b,z,h]}function V5t(e,t,n){const o=t===cc||t===Ps,{tagName:r}=e,s=e.getAttribute("type");return o&&!n?r==="INPUT"?!["date","datetime-local","month","number","range","time","week"].includes(s):!0:r==="INPUT"?["button","checkbox","number","color","file","image","radio","reset","submit"].includes(s):r!=="TEXTAREA"}function Aq(e,t,n,o){let r=Xr.focusable.find(n);t&&r.reverse(),r=r.slice(r.indexOf(e)+1);let s;o&&(s=e.getBoundingClientRect());function i(c){if(!c.closest("[inert]")&&!(c.children.length===1&&fme(c,c.firstElementChild)&&c.firstElementChild.getAttribute("contenteditable")==="true")){if(!Xr.tabbable.isTabbableIndex(c)||c.isContentEditable&&c.contentEditable!=="true")return!1;if(o){const l=c.getBoundingClientRect();if(l.left>=s.right||l.right<=s.left)return!1}return!0}}return r.find(i)}function H5t(){const{getMultiSelectedBlocksStartClientId:e,getMultiSelectedBlocksEndClientId:t,getSettings:n,hasMultiSelection:o,__unstableIsFullySelected:r}=G(Q),{selectBlock:s}=Oe(Q);return Mn(i=>{let c;function l(){c=null}function u(p,f){const b=Aq(p,f,i);return b&&PM(b)}function d(p){if(p.defaultPrevented)return;const{keyCode:f,target:b,shiftKey:h,ctrlKey:g,altKey:z,metaKey:A}=p,_=f===cc,v=f===Ps,M=f===wi,y=f===_i,k=_||M,S=M||y,C=_||v,R=S||C,T=h||g||z||A,E=C?jH:yS,{ownerDocument:B}=i,{defaultView:N}=B;if(!R)return;if(o()){if(h||!r())return;p.preventDefault(),k?s(e()):s(t(),-1);return}if(!V5t(b,f,T))return;C?c||(c=wE(N)):c=null;const j=FN(b)?!k:k,{keepCaretInsideBlock:I}=n();if(h)u(b,k)&&E(b,k)&&(i.contentEditable=!0,i.focus());else if(C&&jH(b,k)&&(!z||yS(b,j))&&!I){const P=Aq(b,k,i,!0);P&&(xSe(P,z?!k:k,z?void 0:c),p.preventDefault())}else if(S&&N.getSelection().isCollapsed&&yS(b,j)&&!I){const P=Aq(b,j,i);m0e(P,k),p.preventDefault()}}return i.addEventListener("mousedown",l),i.addEventListener("keydown",d),()=>{i.removeEventListener("mousedown",l),i.removeEventListener("keydown",d)}},[])}function U5t(){const{getBlockOrder:e,getSelectedBlockClientIds:t,getBlockRootClientId:n}=G(Q),{multiSelect:o,selectBlock:r}=Oe(Q),s=E_();return Mn(i=>{function c(l){if(!s("core/block-editor/select-all",l))return;const u=t();if(u.length<2&&!OSe(l.target))return;l.preventDefault();const[d]=u,p=n(d),f=e(p);if(u.length===f.length){p&&(i.ownerDocument.defaultView.getSelection().removeAllRanges(),r(p));return}o(f[0],f[f.length-1])}return i.addEventListener("keydown",c),()=>{i.removeEventListener("keydown",c)}},[])}function LQ(e,t){e.contentEditable=t,t&&e.focus()}function X5t(){const{startMultiSelect:e,stopMultiSelect:t}=Oe(Q),{isSelectionEnabled:n,hasSelectedBlock:o,isDraggingBlocks:r,isMultiSelecting:s}=G(Q);return Mn(i=>{const{ownerDocument:c}=i,{defaultView:l}=c;let u,d;function p(){t(),l.removeEventListener("mouseup",p),d=l.requestAnimationFrame(()=>{if(!o())return;LQ(i,!1);const g=l.getSelection();if(g.rangeCount){const z=g.getRangeAt(0),{commonAncestorContainer:A}=z,_=z.cloneRange();u.contains(A)&&(u.focus(),g.removeAllRanges(),g.addRange(_))}})}let f;function b({target:g}){f=g}function h({buttons:g,target:z,relatedTarget:A}){z.contains(f)&&(z.contains(A)||r()||g===1&&(s()||i!==z&&z.getAttribute("contenteditable")==="true"&&n()&&(u=z,e(),l.addEventListener("mouseup",p),LQ(i,!0))))}return i.addEventListener("mouseout",h),i.addEventListener("mousedown",b),()=>{i.removeEventListener("mouseout",h),l.removeEventListener("mouseup",p),l.cancelAnimationFrame(d)}},[e,t,n,o])}function G5t(e){const{anchorNode:t,anchorOffset:n}=e;return t.nodeType===t.TEXT_NODE||n===0?t:t.childNodes[n-1]}function K5t(e){const{focusNode:t,focusOffset:n}=e;if(t.nodeType===t.TEXT_NODE||n===t.childNodes.length)return t;if(n===0&&d0e(e)){var o;return(o=t.previousSibling)!==null&&o!==void 0?o:t.parentElement}return t.childNodes[n]}function Y5t(e,t){let n=0;for(;e[n]===t[n];)n++;return n}function PQ(e,t){e.contentEditable!==String(t)&&(e.contentEditable=t)}function jQ(e){return(e.nodeType===e.ELEMENT_NODE?e:e.parentElement)?.closest("[data-wp-block-attribute-key]")}function Z5t(){const{multiSelect:e,selectBlock:t,selectionChange:n}=Oe(Q),{getBlockParents:o,getBlockSelectionStart:r,isMultiSelecting:s}=G(Q);return Mn(i=>{const{ownerDocument:c}=i,{defaultView:l}=c;function u(d){const p=l.getSelection();if(!p.rangeCount)return;const f=G5t(p),b=K5t(p);if(!i.contains(f)||!i.contains(b))return;const h=d.shiftKey&&d.type==="mouseup";if(p.isCollapsed&&!h){if(i.contentEditable==="true"&&!s()){PQ(i,!1);let M=f.nodeType===f.ELEMENT_NODE?f:f.parentElement;M=M?.closest("[contenteditable]"),M?.focus()}return}let g=PM(f),z=PM(b);if(h){const M=r(),y=PM(d.target),k=y!==z;(g===z&&p.isCollapsed||!z||k)&&(z=y),g!==M&&(g=M)}if(g===void 0&&z===void 0){PQ(i,!1);return}if(g===z)s()?e(g,g):t(g);else{const M=[...o(g),g],y=[...o(z),z],k=Y5t(M,y);if(M[k]!==g||y[k]!==z){e(M[k],y[k]);return}const S=jQ(f),C=jQ(b);if(S&&C){var _,v;const R=p.getRangeAt(0),T=eo({element:S,range:R,__unstableIsEditableTree:!0}),E=eo({element:C,range:R,__unstableIsEditableTree:!0}),B=(_=T.start)!==null&&_!==void 0?_:T.end,N=(v=E.start)!==null&&v!==void 0?v:E.end;n({start:{clientId:g,attributeKey:S.dataset.wpBlockAttributeKey,offset:B},end:{clientId:z,attributeKey:C.dataset.wpBlockAttributeKey,offset:N}})}else e(g,z)}}return c.addEventListener("selectionchange",u),l.addEventListener("mouseup",u),()=>{c.removeEventListener("selectionchange",u),l.removeEventListener("mouseup",u)}},[e,t,n,o])}function Q5t(){const{selectBlock:e}=Oe(Q),{isSelectionEnabled:t,getBlockSelectionStart:n,hasMultiSelection:o}=G(Q);return Mn(r=>{function s(i){if(!t()||i.button!==0)return;const c=n(),l=PM(i.target);i.shiftKey?c!==l&&(r.contentEditable=!0,r.focus()):o()&&e(l)}return r.addEventListener("mousedown",s),()=>{r.removeEventListener("mousedown",s)}},[e,t,n,o])}function J5t(){const{__unstableIsFullySelected:e,getSelectedBlockClientIds:t,getSelectedBlockClientId:n,__unstableIsSelectionMergeable:o,hasMultiSelection:r,getBlockName:s,canInsertBlockType:i,getBlockRootClientId:c,getSelectionStart:l,getSelectionEnd:u,getBlockAttributes:d}=G(Q),{replaceBlocks:p,__unstableSplitSelection:f,removeBlocks:b,__unstableDeleteSelection:h,__unstableExpandSelection:g,__unstableMarkAutomaticChange:z}=Oe(Q);return Mn(A=>{function _(y){A.contentEditable==="true"&&y.preventDefault()}function v(y){if(!y.defaultPrevented){if(!r()){if(y.keyCode===Gr){if(y.shiftKey||e())return;const k=n(),S=s(k),C=l(),R=u();if(C.attributeKey===R.attributeKey){const T=d(k)[C.attributeKey],E=Ei("from").filter(({type:N})=>N==="enter"),B=xc(E,N=>N.regExp.test(T));if(B){p(k,B.transform({content:T})),z();return}}if(!Et(S,"splitting",!1)&&!y.__deprecatedOnSplit)return;i(S,c(k))&&(f(),y.preventDefault())}return}y.keyCode===Gr?(A.contentEditable=!1,y.preventDefault(),e()?p(t(),Ee(Mr())):f()):y.keyCode===Mc||y.keyCode===Ol?(A.contentEditable=!1,y.preventDefault(),e()?b(t()):o()?h(y.keyCode===Ol):g()):y.key.length===1&&!(y.metaKey||y.ctrlKey)&&(A.contentEditable=!1,o()?h(y.keyCode===Ol):(y.preventDefault(),A.ownerDocument.defaultView.getSelection().removeAllRanges()))}}function M(y){r()&&(A.contentEditable=!1,o()?h():(y.preventDefault(),A.ownerDocument.defaultView.getSelection().removeAllRanges()))}return A.addEventListener("beforeinput",_),A.addEventListener("keydown",v),A.addEventListener("compositionstart",M),()=>{A.removeEventListener("beforeinput",_),A.removeEventListener("keydown",v),A.removeEventListener("compositionstart",M)}},[])}function W7(){const{getBlockName:e}=G(Q),{getBlockType:t}=G(kt),{createSuccessNotice:n}=Oe(mt);return x.useCallback((o,r)=>{let s="";if(o==="copyStyles")s=m("Styles copied to clipboard.");else if(r.length===1){const i=r[0],c=t(e(i))?.title;o==="copy"?s=xe(m('Copied "%s" to clipboard.'),c):s=xe(m('Moved "%s" to clipboard.'),c)}else o==="copy"?s=xe(Dn("Copied %d block to clipboard.","Copied %d blocks to clipboard.",r.length),r.length):s=xe(Dn("Moved %d block to clipboard.","Moved %d blocks to clipboard.",r.length),r.length);n(s,{type:"snackbar"})},[n,e,t])}function ewt(e){const t="<!--StartFragment-->",n=e.indexOf(t);if(n>-1)e=e.substring(n+t.length);else return e;const r=e.indexOf("<!--EndFragment-->");return r>-1&&(e=e.substring(0,r)),e}function twt(e){const t="<meta charset='utf-8'>";return e.startsWith(t)?e.slice(t.length):e}function N7({clipboardData:e}){let t="",n="";try{t=e.getData("text/plain"),n=e.getData("text/html")}catch{return}n=ewt(n),n=twt(n);const o=E4(e);return o.length&&!nwt(o,n)?{files:o}:{html:n,plainText:t,files:[]}}function nwt(e,t){if(t&&e?.length===1&&e[0].type.indexOf("image/")===0){const n=/<\s*img\b/gi;if(t.match(n)?.length!==1)return!0;const o=/<\s*img\b[^>]*\bsrc="file:\/\//i;if(t.match(o))return!0}return!1}const Cme=Symbol("requiresWrapperOnCopy");function qme(e,t,n){let o=t;const[r]=t;if(r&&n.select(kt).getBlockType(r.name)[Cme]){const{getBlockRootClientId:c,getBlockName:l,getBlockAttributes:u}=n.select(Q),d=c(r.clientId),p=l(d);p&&(o=Ee(p,u(d),o))}const s=Ks(o);e.clipboardData.setData("text/plain",rwt(s)),e.clipboardData.setData("text/html",s)}function owt(e,t){const{plainText:n,html:o,files:r}=N7(e);let s=[];if(r.length){const i=Ei("from");s=r.reduce((c,l)=>{const u=xc(i,d=>d.type==="files"&&d.isMatch([l]));return u&&c.push(u.transform([l])),c},[]).flat()}else s=Xh({HTML:o,plainText:n,mode:"BLOCKS",canUserUseUnfilteredHTML:t});return s}function rwt(e){return e=e.replace(/<br>/g,` +*/var jvt=cM.exports,iQ;function Ivt(){return iQ||(iQ=1,function(e,t){(function(n,o){o(e,t)})(jvt,function(n,o){var r=typeof Map=="function"?new Map:function(){var d=[],p=[];return{has:function(b){return d.indexOf(b)>-1},get:function(b){return p[d.indexOf(b)]},set:function(b,h){d.indexOf(b)===-1&&(d.push(b),p.push(h))},delete:function(b){var h=d.indexOf(b);h>-1&&(d.splice(h,1),p.splice(h,1))}}}(),s=function(p){return new Event(p,{bubbles:!0})};try{new Event("test")}catch{s=function(f){var b=document.createEvent("Event");return b.initEvent(f,!0,!1),b}}function i(d){if(!d||!d.nodeName||d.nodeName!=="TEXTAREA"||r.has(d))return;var p=null,f=null,b=null;function h(){var y=window.getComputedStyle(d,null);y.resize==="vertical"?d.style.resize="none":y.resize==="both"&&(d.style.resize="horizontal"),y.boxSizing==="content-box"?p=-(parseFloat(y.paddingTop)+parseFloat(y.paddingBottom)):p=parseFloat(y.borderTopWidth)+parseFloat(y.borderBottomWidth),isNaN(p)&&(p=0),_()}function g(y){{var k=d.style.width;d.style.width="0px",d.offsetWidth,d.style.width=k}d.style.overflowY=y}function z(y){for(var k=[];y&&y.parentNode&&y.parentNode instanceof Element;)y.parentNode.scrollTop&&k.push({node:y.parentNode,scrollTop:y.parentNode.scrollTop}),y=y.parentNode;return k}function A(){if(d.scrollHeight!==0){var y=z(d),k=document.documentElement&&document.documentElement.scrollTop;d.style.height="",d.style.height=d.scrollHeight+p+"px",f=d.clientWidth,y.forEach(function(S){S.node.scrollTop=S.scrollTop}),k&&(document.documentElement.scrollTop=k)}}function _(){A();var y=Math.round(parseFloat(d.style.height)),k=window.getComputedStyle(d,null),S=k.boxSizing==="content-box"?Math.round(parseFloat(k.height)):d.offsetHeight;if(S<y?k.overflowY==="hidden"&&(g("scroll"),A(),S=k.boxSizing==="content-box"?Math.round(parseFloat(window.getComputedStyle(d,null).height)):d.offsetHeight):k.overflowY!=="hidden"&&(g("hidden"),A(),S=k.boxSizing==="content-box"?Math.round(parseFloat(window.getComputedStyle(d,null).height)):d.offsetHeight),b!==S){b=S;var C=s("autosize:resized");try{d.dispatchEvent(C)}catch{}}}var v=function(){d.clientWidth!==f&&_()},M=function(y){window.removeEventListener("resize",v,!1),d.removeEventListener("input",_,!1),d.removeEventListener("keyup",_,!1),d.removeEventListener("autosize:destroy",M,!1),d.removeEventListener("autosize:update",_,!1),Object.keys(y).forEach(function(k){d.style[k]=y[k]}),r.delete(d)}.bind(d,{height:d.style.height,resize:d.style.resize,overflowY:d.style.overflowY,overflowX:d.style.overflowX,wordWrap:d.style.wordWrap});d.addEventListener("autosize:destroy",M,!1),"onpropertychange"in d&&"oninput"in d&&d.addEventListener("keyup",_,!1),window.addEventListener("resize",v,!1),d.addEventListener("input",_,!1),d.addEventListener("autosize:update",_,!1),d.style.overflowX="hidden",d.style.wordWrap="break-word",r.set(d,{destroy:M,update:_}),h()}function c(d){var p=r.get(d);p&&p.destroy()}function l(d){var p=r.get(d);p&&p.update()}var u=null;typeof window>"u"||typeof window.getComputedStyle!="function"?(u=function(p){return p},u.destroy=function(d){return d},u.update=function(d){return d}):(u=function(p,f){return p&&Array.prototype.forEach.call(p.length?p:[p],function(b){return i(b)}),p},u.destroy=function(d){return d&&Array.prototype.forEach.call(d.length?d:[d],c),d},u.update=function(d){return d&&Array.prototype.forEach.call(d.length?d:[d],l),d}),o.default=u,n.exports=o.default})}(cM,cM.exports)),cM.exports}var fq,aQ;function Dvt(){if(aQ)return fq;aQ=1;var e=function(t,n,o){return o=window.getComputedStyle,(o?o(t):t.currentStyle)[n.replace(/-(\w)/gi,function(r,s){return s.toUpperCase()})]};return fq=e,fq}var bq,cQ;function Fvt(){if(cQ)return bq;cQ=1;var e=Dvt();function t(n){var o=e(n,"line-height"),r=parseFloat(o,10);if(o===r+""){var s=n.style.lineHeight;n.style.lineHeight=o+"em",o=e(n,"line-height"),r=parseFloat(o,10),s?n.style.lineHeight=s:delete n.style.lineHeight}if(o.indexOf("pt")!==-1?(r*=4,r/=3):o.indexOf("mm")!==-1?(r*=96,r/=25.4):o.indexOf("cm")!==-1?(r*=96,r/=2.54):o.indexOf("in")!==-1?r*=96:o.indexOf("pc")!==-1&&(r*=16),r=Math.round(r),o==="normal"){var i=n.nodeName,c=document.createElement(i);c.innerHTML=" ",i.toUpperCase()==="TEXTAREA"&&c.setAttribute("rows","1");var l=e(n,"font-size");c.style.fontSize=l,c.style.padding="0px",c.style.border="0px";var u=document.body;u.appendChild(c);var d=c.offsetHeight;r=d,u.removeChild(c)}return r}return bq=t,bq}var lQ;function $vt(){if(lQ)return ja;lQ=1;var e=ja&&ja.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var b in f)f.hasOwnProperty(b)&&(p[b]=f[b])};return function(p,f){d(p,f);function b(){this.constructor=p}p.prototype=f===null?Object.create(f):(b.prototype=f.prototype,new b)}}(),t=ja&&ja.__assign||Object.assign||function(d){for(var p,f=1,b=arguments.length;f<b;f++){p=arguments[f];for(var h in p)Object.prototype.hasOwnProperty.call(p,h)&&(d[h]=p[h])}return d},n=ja&&ja.__rest||function(d,p){var f={};for(var b in d)Object.prototype.hasOwnProperty.call(d,b)&&p.indexOf(b)<0&&(f[b]=d[b]);if(d!=null&&typeof Object.getOwnPropertySymbols=="function")for(var h=0,b=Object.getOwnPropertySymbols(d);h<b.length;h++)p.indexOf(b[h])<0&&(f[b[h]]=d[b[h]]);return f};ja.__esModule=!0;var o=i3(),r=Pvt(),s=Ivt(),i=Fvt(),c=i,l="autosize:resized",u=function(d){e(p,d);function p(){var f=d!==null&&d.apply(this,arguments)||this;return f.state={lineHeight:null},f.textarea=null,f.onResize=function(b){f.props.onResize&&f.props.onResize(b)},f.updateLineHeight=function(){f.textarea&&f.setState({lineHeight:c(f.textarea)})},f.onChange=function(b){var h=f.props.onChange;f.currentValue=b.currentTarget.value,h&&h(b)},f}return p.prototype.componentDidMount=function(){var f=this,b=this.props,h=b.maxRows,g=b.async;typeof h=="number"&&this.updateLineHeight(),typeof h=="number"||g?setTimeout(function(){return f.textarea&&s(f.textarea)}):this.textarea&&s(this.textarea),this.textarea&&this.textarea.addEventListener(l,this.onResize)},p.prototype.componentWillUnmount=function(){this.textarea&&(this.textarea.removeEventListener(l,this.onResize),s.destroy(this.textarea))},p.prototype.render=function(){var f=this,b=this,h=b.props;h.onResize;var g=h.maxRows;h.onChange;var z=h.style;h.innerRef;var A=h.children,_=n(h,["onResize","maxRows","onChange","style","innerRef","children"]),v=b.state.lineHeight,M=g&&v?v*g:null;return o.createElement("textarea",t({},_,{onChange:this.onChange,style:M?t({},z,{maxHeight:M}):z,ref:function(y){f.textarea=y,typeof f.props.innerRef=="function"?f.props.innerRef(y):f.props.innerRef&&(f.props.innerRef.current=y)}}),A)},p.prototype.componentDidUpdate=function(){this.textarea&&s.update(this.textarea)},p.defaultProps={rows:1,async:!1},p.propTypes={rows:r.number,maxRows:r.number,onResize:r.func,innerRef:r.any,async:r.bool},p}(o.Component);return ja.TextareaAutosize=o.forwardRef(function(d,p){return o.createElement(u,t({},d,{innerRef:p}))}),ja}var uQ;function Vvt(){return uQ||(uQ=1,function(e){e.__esModule=!0;var t=$vt();e.default=t.TextareaAutosize}(lq)),lq}var Hvt=Vvt();const m7=Zr(Hvt);function Uvt({clientId:e}){const[t,n]=x.useState(""),o=G(i=>i(Q).getBlock(e),[e]),{updateBlock:r}=Oe(Q),s=()=>{const i=on(o.name);if(!i)return;const c=Wl(i,t,o.attributes),l=t||Gf(i,c),[u]=t?tz({...o,attributes:c,originalContent:l}):[!0];r(e,{attributes:c,originalContent:l,isValid:u}),t||n(l)};return x.useEffect(()=>{n(J5(o))},[o]),a.jsx(m7,{className:"block-editor-block-list__block-html-textarea",value:t,onBlur:s,onChange:i=>n(i.target.value)})}var g7=wO(),kn=e=>xO(e,g7),M7=wO();kn.write=e=>xO(e,M7);var w_=wO();kn.onStart=e=>xO(e,w_);var z7=wO();kn.onFrame=e=>xO(e,z7);var O7=wO();kn.onFinish=e=>xO(e,O7);var F2=[];kn.setTimeout=(e,t)=>{const n=kn.now()+t,o=()=>{const s=F2.findIndex(i=>i.cancel==o);~s&&F2.splice(s,1),od-=~s?1:0},r={time:n,handler:e,cancel:o};return F2.splice(Bhe(n),0,r),od+=1,Lhe(),r};var Bhe=e=>~(~F2.findIndex(t=>t.time>e)||~F2.length);kn.cancel=e=>{w_.delete(e),z7.delete(e),O7.delete(e),g7.delete(e),M7.delete(e)};kn.sync=e=>{_W=!0,kn.batchedUpdates(e),_W=!1};kn.throttle=e=>{let t;function n(){try{e(...t)}finally{t=null}}function o(...r){t=r,kn.onStart(n)}return o.handler=e,o.cancel=()=>{w_.delete(n),t=null},o};var y7=typeof window<"u"?window.requestAnimationFrame:()=>{};kn.use=e=>y7=e;kn.now=typeof performance<"u"?()=>performance.now():Date.now;kn.batchedUpdates=e=>e();kn.catch=console.error;kn.frameLoop="always";kn.advance=()=>{kn.frameLoop!=="demand"?console.warn("Cannot call the manual advancement of rafz whilst frameLoop is not set as demand"):jhe()};var nd=-1,od=0,_W=!1;function xO(e,t){_W?(t.delete(e),e(0)):(t.add(e),Lhe())}function Lhe(){nd<0&&(nd=0,kn.frameLoop!=="demand"&&y7(Phe))}function Xvt(){nd=-1}function Phe(){~nd&&(y7(Phe),kn.batchedUpdates(jhe))}function jhe(){const e=nd;nd=kn.now();const t=Bhe(nd);if(t&&(Ihe(F2.splice(0,t),n=>n.handler()),od-=t),!od){Xvt();return}w_.flush(),g7.flush(e?Math.min(64,nd-e):16.667),z7.flush(),M7.flush(),O7.flush()}function wO(){let e=new Set,t=e;return{add(n){od+=t==e&&!e.has(n)?1:0,e.add(n)},delete(n){return od-=t==e&&e.has(n)?1:0,e.delete(n)},flush(n){t.size&&(e=new Set,od-=t.size,Ihe(t,o=>o(n)&&e.add(o)),od+=e.size,t=e)}}}function Ihe(e,t){e.forEach(n=>{try{t(n)}catch(o){kn.catch(o)}})}var Gvt=Object.defineProperty,Kvt=(e,t)=>{for(var n in t)Gvt(e,n,{get:t[n],enumerable:!0})},Oa={};Kvt(Oa,{assign:()=>Zvt,colors:()=>dd,createStringInterpolator:()=>v7,skipAnimation:()=>Fhe,to:()=>Dhe,willAdvance:()=>x7});function kW(){}var Yvt=(e,t,n)=>Object.defineProperty(e,t,{value:n,writable:!0,configurable:!0}),_t={arr:Array.isArray,obj:e=>!!e&&e.constructor.name==="Object",fun:e=>typeof e=="function",str:e=>typeof e=="string",num:e=>typeof e=="number",und:e=>e===void 0};function al(e,t){if(_t.arr(e)){if(!_t.arr(t)||e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}return e===t}var qr=(e,t)=>e.forEach(t);function Dl(e,t,n){if(_t.arr(e)){for(let o=0;o<e.length;o++)t.call(n,e[o],`${o}`);return}for(const o in e)e.hasOwnProperty(o)&&t.call(n,e[o],o)}var Ci=e=>_t.und(e)?[]:_t.arr(e)?e:[e];function EM(e,t){if(e.size){const n=Array.from(e);e.clear(),qr(n,t)}}var lM=(e,...t)=>EM(e,n=>n(...t)),A7=()=>typeof window>"u"||!window.navigator||/ServerSideRendering|^Deno\//.test(window.navigator.userAgent),v7,Dhe,dd=null,Fhe=!1,x7=kW,Zvt=e=>{e.to&&(Dhe=e.to),e.now&&(kn.now=e.now),e.colors!==void 0&&(dd=e.colors),e.skipAnimation!=null&&(Fhe=e.skipAnimation),e.createStringInterpolator&&(v7=e.createStringInterpolator),e.requestAnimationFrame&&kn.use(e.requestAnimationFrame),e.batchedUpdates&&(kn.batchedUpdates=e.batchedUpdates),e.willAdvance&&(x7=e.willAdvance),e.frameLoop&&(kn.frameLoop=e.frameLoop)},WM=new Set,vi=[],hq=[],Bx=0,__={get idle(){return!WM.size&&!vi.length},start(e){Bx>e.priority?(WM.add(e),kn.onStart(Qvt)):($he(e),kn(SW))},advance:SW,sort(e){if(Bx)kn.onFrame(()=>__.sort(e));else{const t=vi.indexOf(e);~t&&(vi.splice(t,1),Vhe(e))}},clear(){vi=[],WM.clear()}};function Qvt(){WM.forEach($he),WM.clear(),kn(SW)}function $he(e){vi.includes(e)||Vhe(e)}function Vhe(e){vi.splice(Jvt(vi,t=>t.priority>e.priority),0,e)}function SW(e){const t=hq;for(let n=0;n<vi.length;n++){const o=vi[n];Bx=o.priority,o.idle||(x7(o),o.advance(e),o.idle||t.push(o))}return Bx=0,hq=vi,hq.length=0,vi=t,vi.length>0}function Jvt(e,t){const n=e.findIndex(t);return n<0?e.length:n}var e4t=(e,t,n)=>Math.min(Math.max(n,e),t),t4t={transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},ia="[-+]?\\d*\\.?\\d+",Lx=ia+"%";function k_(...e){return"\\(\\s*("+e.join(")\\s*,\\s*(")+")\\s*\\)"}var n4t=new RegExp("rgb"+k_(ia,ia,ia)),o4t=new RegExp("rgba"+k_(ia,ia,ia,ia)),r4t=new RegExp("hsl"+k_(ia,Lx,Lx)),s4t=new RegExp("hsla"+k_(ia,Lx,Lx,ia)),i4t=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,a4t=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,c4t=/^#([0-9a-fA-F]{6})$/,l4t=/^#([0-9a-fA-F]{8})$/;function u4t(e){let t;return typeof e=="number"?e>>>0===e&&e>=0&&e<=4294967295?e:null:(t=c4t.exec(e))?parseInt(t[1]+"ff",16)>>>0:dd&&dd[e]!==void 0?dd[e]:(t=n4t.exec(e))?(Yb(t[1])<<24|Yb(t[2])<<16|Yb(t[3])<<8|255)>>>0:(t=o4t.exec(e))?(Yb(t[1])<<24|Yb(t[2])<<16|Yb(t[3])<<8|fQ(t[4]))>>>0:(t=i4t.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+"ff",16)>>>0:(t=l4t.exec(e))?parseInt(t[1],16)>>>0:(t=a4t.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+t[4]+t[4],16)>>>0:(t=r4t.exec(e))?(dQ(pQ(t[1]),ZA(t[2]),ZA(t[3]))|255)>>>0:(t=s4t.exec(e))?(dQ(pQ(t[1]),ZA(t[2]),ZA(t[3]))|fQ(t[4]))>>>0:null}function mq(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 dQ(e,t,n){const o=n<.5?n*(1+t):n+t-n*t,r=2*n-o,s=mq(r,o,e+1/3),i=mq(r,o,e),c=mq(r,o,e-1/3);return Math.round(s*255)<<24|Math.round(i*255)<<16|Math.round(c*255)<<8}function Yb(e){const t=parseInt(e,10);return t<0?0:t>255?255:t}function pQ(e){return(parseFloat(e)%360+360)%360/360}function fQ(e){const t=parseFloat(e);return t<0?0:t>1?255:Math.round(t*255)}function ZA(e){const t=parseFloat(e);return t<0?0:t>100?1:t/100}function bQ(e){let t=u4t(e);if(t===null)return e;t=t||0;const n=(t&4278190080)>>>24,o=(t&16711680)>>>16,r=(t&65280)>>>8,s=(t&255)/255;return`rgba(${n}, ${o}, ${r}, ${s})`}var Fz=(e,t,n)=>{if(_t.fun(e))return e;if(_t.arr(e))return Fz({range:e,output:t,extrapolate:n});if(_t.str(e.output[0]))return v7(e);const o=e,r=o.output,s=o.range||[0,1],i=o.extrapolateLeft||o.extrapolate||"extend",c=o.extrapolateRight||o.extrapolate||"extend",l=o.easing||(u=>u);return u=>{const d=p4t(u,s);return d4t(u,s[d],s[d+1],r[d],r[d+1],l,i,c,o.map)}};function d4t(e,t,n,o,r,s,i,c,l){let u=l?l(e):e;if(u<t){if(i==="identity")return u;i==="clamp"&&(u=t)}if(u>n){if(c==="identity")return u;c==="clamp"&&(u=n)}return o===r?o:t===n?e<=t?o:r:(t===-1/0?u=-u:n===1/0?u=u-t:u=(u-t)/(n-t),u=s(u),o===-1/0?u=-u:r===1/0?u=u+o:u=u*(r-o)+o,u)}function p4t(e,t){for(var n=1;n<t.length-1&&!(t[n]>=e);++n);return n-1}var f4t=(e,t="end")=>n=>{n=t==="end"?Math.min(n,.999):Math.max(n,.001);const o=n*e,r=t==="end"?Math.floor(o):Math.ceil(o);return e4t(0,1,r/e)},Px=1.70158,QA=Px*1.525,hQ=Px+1,mQ=2*Math.PI/3,gQ=2*Math.PI/4.5,JA=e=>e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375,b4t={linear:e=>e,easeInQuad:e=>e*e,easeOutQuad:e=>1-(1-e)*(1-e),easeInOutQuad:e=>e<.5?2*e*e:1-Math.pow(-2*e+2,2)/2,easeInCubic:e=>e*e*e,easeOutCubic:e=>1-Math.pow(1-e,3),easeInOutCubic:e=>e<.5?4*e*e*e:1-Math.pow(-2*e+2,3)/2,easeInQuart:e=>e*e*e*e,easeOutQuart:e=>1-Math.pow(1-e,4),easeInOutQuart:e=>e<.5?8*e*e*e*e:1-Math.pow(-2*e+2,4)/2,easeInQuint:e=>e*e*e*e*e,easeOutQuint:e=>1-Math.pow(1-e,5),easeInOutQuint:e=>e<.5?16*e*e*e*e*e:1-Math.pow(-2*e+2,5)/2,easeInSine:e=>1-Math.cos(e*Math.PI/2),easeOutSine:e=>Math.sin(e*Math.PI/2),easeInOutSine:e=>-(Math.cos(Math.PI*e)-1)/2,easeInExpo:e=>e===0?0:Math.pow(2,10*e-10),easeOutExpo:e=>e===1?1:1-Math.pow(2,-10*e),easeInOutExpo:e=>e===0?0:e===1?1:e<.5?Math.pow(2,20*e-10)/2:(2-Math.pow(2,-20*e+10))/2,easeInCirc:e=>1-Math.sqrt(1-Math.pow(e,2)),easeOutCirc:e=>Math.sqrt(1-Math.pow(e-1,2)),easeInOutCirc:e=>e<.5?(1-Math.sqrt(1-Math.pow(2*e,2)))/2:(Math.sqrt(1-Math.pow(-2*e+2,2))+1)/2,easeInBack:e=>hQ*e*e*e-Px*e*e,easeOutBack:e=>1+hQ*Math.pow(e-1,3)+Px*Math.pow(e-1,2),easeInOutBack:e=>e<.5?Math.pow(2*e,2)*((QA+1)*2*e-QA)/2:(Math.pow(2*e-2,2)*((QA+1)*(e*2-2)+QA)+2)/2,easeInElastic:e=>e===0?0:e===1?1:-Math.pow(2,10*e-10)*Math.sin((e*10-10.75)*mQ),easeOutElastic:e=>e===0?0:e===1?1:Math.pow(2,-10*e)*Math.sin((e*10-.75)*mQ)+1,easeInOutElastic:e=>e===0?0:e===1?1:e<.5?-(Math.pow(2,20*e-10)*Math.sin((20*e-11.125)*gQ))/2:Math.pow(2,-20*e+10)*Math.sin((20*e-11.125)*gQ)/2+1,easeInBounce:e=>1-JA(1-e),easeOutBounce:JA,easeInOutBounce:e=>e<.5?(1-JA(1-2*e))/2:(1+JA(2*e-1))/2,steps:f4t},$z=Symbol.for("FluidValue.get"),wh=Symbol.for("FluidValue.observers"),zi=e=>!!(e&&e[$z]),as=e=>e&&e[$z]?e[$z]():e,MQ=e=>e[wh]||null;function h4t(e,t){e.eventObserved?e.eventObserved(t):e(t)}function Vz(e,t){const n=e[wh];n&&n.forEach(o=>{h4t(o,t)})}var Hhe=class{constructor(e){if(!e&&!(e=this.get))throw Error("Unknown getter");m4t(this,e)}},m4t=(e,t)=>Uhe(e,$z,t);function _O(e,t){if(e[$z]){let n=e[wh];n||Uhe(e,wh,n=new Set),n.has(t)||(n.add(t),e.observerAdded&&e.observerAdded(n.size,t))}return t}function Hz(e,t){const n=e[wh];if(n&&n.has(t)){const o=n.size-1;o?n.delete(t):e[wh]=null,e.observerRemoved&&e.observerRemoved(o,t)}}var Uhe=(e,t,n)=>Object.defineProperty(e,t,{value:n,writable:!0,configurable:!0}),b4=/[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,g4t=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi,zQ=new RegExp(`(${b4.source})(%|[a-z]+)`,"i"),M4t=/rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi,S_=/var\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\)/,Xhe=e=>{const[t,n]=z4t(e);if(!t||A7())return e;const o=window.getComputedStyle(document.documentElement).getPropertyValue(t);if(o)return o.trim();if(n&&n.startsWith("--")){const r=window.getComputedStyle(document.documentElement).getPropertyValue(n);return r||e}else{if(n&&S_.test(n))return Xhe(n);if(n)return n}return e},z4t=e=>{const t=S_.exec(e);if(!t)return[,];const[,n,o]=t;return[n,o]},gq,O4t=(e,t,n,o,r)=>`rgba(${Math.round(t)}, ${Math.round(n)}, ${Math.round(o)}, ${r})`,Ghe=e=>{gq||(gq=dd?new RegExp(`(${Object.keys(dd).join("|")})(?!\\w)`,"g"):/^\b$/);const t=e.output.map(s=>as(s).replace(S_,Xhe).replace(g4t,bQ).replace(gq,bQ)),n=t.map(s=>s.match(b4).map(Number)),r=n[0].map((s,i)=>n.map(c=>{if(!(i in c))throw Error('The arity of each "output" value must be equal');return c[i]})).map(s=>Fz({...e,output:s}));return s=>{const i=!zQ.test(t[0])&&t.find(l=>zQ.test(l))?.replace(b4,"");let c=0;return t[0].replace(b4,()=>`${r[c++](s)}${i||""}`).replace(M4t,O4t)}},Khe="react-spring: ",Yhe=e=>{const t=e;let n=!1;if(typeof t!="function")throw new TypeError(`${Khe}once requires a function parameter`);return(...o)=>{n||(t(...o),n=!0)}},y4t=Yhe(console.warn);function A4t(){y4t(`${Khe}The "interpolate" function is deprecated in v9 (use "to" instead)`)}Yhe(console.warn);function C_(e){return _t.str(e)&&(e[0]=="#"||/\d/.test(e)||!A7()&&S_.test(e)||e in(dd||{}))}var Zhe=A7()?x.useEffect:x.useLayoutEffect,v4t=()=>{const e=x.useRef(!1);return Zhe(()=>(e.current=!0,()=>{e.current=!1}),[]),e};function x4t(){const e=x.useState()[1],t=v4t();return()=>{t.current&&e(Math.random())}}function w4t(e,t){const[n]=x.useState(()=>({inputs:t,result:e()})),o=x.useRef(),r=o.current;let s=r;return s?t&&s.inputs&&_4t(t,s.inputs)||(s={inputs:t,result:e()}):s=n,x.useEffect(()=>{o.current=s,r==n&&(n.inputs=n.result=void 0)},[s]),s.result}function _4t(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}var k4t=e=>x.useEffect(e,S4t),S4t=[],Uz=Symbol.for("Animated:node"),C4t=e=>!!e&&e[Uz]===e,ec=e=>e&&e[Uz],w7=(e,t)=>Yvt(e,Uz,t),q_=e=>e&&e[Uz]&&e[Uz].getPayload(),Qhe=class{constructor(){w7(this,this)}getPayload(){return this.payload||[]}},kO=class extends Qhe{constructor(e){super(),this._value=e,this.done=!0,this.durationProgress=0,_t.num(this._value)&&(this.lastPosition=this._value)}static create(e){return new kO(e)}getPayload(){return[this]}getValue(){return this._value}setValue(e,t){return _t.num(e)&&(this.lastPosition=e,t&&(e=Math.round(e/t)*t,this.done&&(this.lastPosition=e))),this._value===e?!1:(this._value=e,!0)}reset(){const{done:e}=this;this.done=!1,_t.num(this._value)&&(this.elapsedTime=0,this.durationProgress=0,this.lastPosition=this._value,e&&(this.lastVelocity=null),this.v0=null)}},Xz=class extends kO{constructor(e){super(0),this._string=null,this._toString=Fz({output:[e,e]})}static create(e){return new Xz(e)}getValue(){const e=this._string;return e??(this._string=this._toString(this._value))}setValue(e){if(_t.str(e)){if(e==this._string)return!1;this._string=e,this._value=1}else if(super.setValue(e))this._string=null;else return!1;return!0}reset(e){e&&(this._toString=Fz({output:[this.getValue(),e]})),this._value=0,super.reset()}},jx={dependencies:null},R_=class extends Qhe{constructor(e){super(),this.source=e,this.setValue(e)}getValue(e){const t={};return Dl(this.source,(n,o)=>{C4t(n)?t[o]=n.getValue(e):zi(n)?t[o]=as(n):e||(t[o]=n)}),t}setValue(e){this.source=e,this.payload=this._makePayload(e)}reset(){this.payload&&qr(this.payload,e=>e.reset())}_makePayload(e){if(e){const t=new Set;return Dl(e,this._addToPayload,t),Array.from(t)}}_addToPayload(e){jx.dependencies&&zi(e)&&jx.dependencies.add(e);const t=q_(e);t&&qr(t,n=>this.add(n))}},Jhe=class extends R_{constructor(e){super(e)}static create(e){return new Jhe(e)}getValue(){return this.source.map(e=>e.getValue())}setValue(e){const t=this.getPayload();return e.length==t.length?t.map((n,o)=>n.setValue(e[o])).some(Boolean):(super.setValue(e.map(q4t)),!0)}};function q4t(e){return(C_(e)?Xz:kO).create(e)}function CW(e){const t=ec(e);return t?t.constructor:_t.arr(e)?Jhe:C_(e)?Xz:kO}var OQ=(e,t)=>{const n=!_t.fun(e)||e.prototype&&e.prototype.isReactComponent;return x.forwardRef((o,r)=>{const s=x.useRef(null),i=n&&x.useCallback(h=>{s.current=E4t(r,h)},[r]),[c,l]=T4t(o,t),u=x4t(),d=()=>{const h=s.current;if(n&&!h)return;(h?t.applyAnimatedValues(h,c.getValue(!0)):!1)===!1&&u()},p=new R4t(d,l),f=x.useRef();Zhe(()=>(f.current=p,qr(l,h=>_O(h,p)),()=>{f.current&&(qr(f.current.deps,h=>Hz(h,f.current)),kn.cancel(f.current.update))})),x.useEffect(d,[]),k4t(()=>()=>{const h=f.current;qr(h.deps,g=>Hz(g,h))});const b=t.getComponentProps(c.getValue());return x.createElement(e,{...b,ref:i})})},R4t=class{constructor(e,t){this.update=e,this.deps=t}eventObserved(e){e.type=="change"&&kn.write(this.update)}};function T4t(e,t){const n=new Set;return jx.dependencies=n,e.style&&(e={...e,style:t.createAnimatedStyle(e.style)}),e=new R_(e),jx.dependencies=null,[e,n]}function E4t(e,t){return e&&(_t.fun(e)?e(t):e.current=t),t}var yQ=Symbol.for("AnimatedComponent"),W4t=(e,{applyAnimatedValues:t=()=>!1,createAnimatedStyle:n=r=>new R_(r),getComponentProps:o=r=>r}={})=>{const r={applyAnimatedValues:t,createAnimatedStyle:n,getComponentProps:o},s=i=>{const c=AQ(i)||"Anonymous";return _t.str(i)?i=s[i]||(s[i]=OQ(i,r)):i=i[yQ]||(i[yQ]=OQ(i,r)),i.displayName=`Animated(${c})`,i};return Dl(e,(i,c)=>{_t.arr(e)&&(c=AQ(i)),s[c]=s(i)}),{animated:s}},AQ=e=>_t.str(e)?e:e&&_t.str(e.displayName)?e.displayName:_t.fun(e)&&e.name||null;function Hp(e,...t){return _t.fun(e)?e(...t):e}var NM=(e,t)=>e===!0||!!(t&&e&&(_t.fun(e)?e(t):Ci(e).includes(t))),eme=(e,t)=>_t.obj(e)?t&&e[t]:e,tme=(e,t)=>e.default===!0?e[t]:e.default?e.default[t]:void 0,N4t=e=>e,nme=(e,t=N4t)=>{let n=B4t;e.default&&e.default!==!0&&(e=e.default,n=Object.keys(e));const o={};for(const r of n){const s=t(e[r],r);_t.und(s)||(o[r]=s)}return o},B4t=["config","onProps","onStart","onChange","onPause","onResume","onRest"],L4t={config:1,from:1,to:1,ref:1,loop:1,reset:1,pause:1,cancel:1,reverse:1,immediate:1,default:1,delay:1,onProps:1,onStart:1,onChange:1,onPause:1,onResume:1,onRest:1,onResolve:1,items:1,trail:1,sort:1,expires:1,initial:1,enter:1,update:1,leave:1,children:1,onDestroyed:1,keys:1,callId:1,parentId:1};function P4t(e){const t={};let n=0;if(Dl(e,(o,r)=>{L4t[r]||(t[r]=o,n++)}),n)return t}function ome(e){const t=P4t(e);if(t){const n={to:t};return Dl(e,(o,r)=>r in t||(n[r]=o)),n}return{...e}}function Gz(e){return e=as(e),_t.arr(e)?e.map(Gz):C_(e)?Oa.createStringInterpolator({range:[0,1],output:[e,e]})(1):e}function qW(e){return _t.fun(e)||_t.arr(e)&&_t.obj(e[0])}var j4t={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},RW={...j4t.default,mass:1,damping:1,easing:b4t.linear,clamp:!1},I4t=class{constructor(){this.velocity=0,Object.assign(this,RW)}};function D4t(e,t,n){n&&(n={...n},vQ(n,t),t={...n,...t}),vQ(e,t),Object.assign(e,t);for(const i in RW)e[i]==null&&(e[i]=RW[i]);let{frequency:o,damping:r}=e;const{mass:s}=e;return _t.und(o)||(o<.01&&(o=.01),r<0&&(r=0),e.tension=Math.pow(2*Math.PI/o,2)*s,e.friction=4*Math.PI*r*s/o),e}function vQ(e,t){if(!_t.und(t.decay))e.duration=void 0;else{const n=!_t.und(t.tension)||!_t.und(t.friction);(n||!_t.und(t.frequency)||!_t.und(t.damping)||!_t.und(t.mass))&&(e.duration=void 0,e.decay=void 0),n&&(e.frequency=void 0)}}var xQ=[],F4t=class{constructor(){this.changed=!1,this.values=xQ,this.toValues=null,this.fromValues=xQ,this.config=new I4t,this.immediate=!1}};function rme(e,{key:t,props:n,defaultProps:o,state:r,actions:s}){return new Promise((i,c)=>{let l,u,d=NM(n.cancel??o?.cancel,t);if(d)b();else{_t.und(n.pause)||(r.paused=NM(n.pause,t));let h=o?.pause;h!==!0&&(h=r.paused||NM(h,t)),l=Hp(n.delay||0,t),h?(r.resumeQueue.add(f),s.pause()):(s.resume(),f())}function p(){r.resumeQueue.add(f),r.timeouts.delete(u),u.cancel(),l=u.time-kn.now()}function f(){l>0&&!Oa.skipAnimation?(r.delayed=!0,u=kn.setTimeout(b,l),r.pauseQueue.add(p),r.timeouts.add(u)):b()}function b(){r.delayed&&(r.delayed=!1),r.pauseQueue.delete(p),r.timeouts.delete(u),e<=(r.cancelId||0)&&(d=!0);try{s.start({...n,callId:e,cancel:d},i)}catch(h){c(h)}}})}var _7=(e,t)=>t.length==1?t[0]:t.some(n=>n.cancelled)?$2(e.get()):t.every(n=>n.noop)?sme(e.get()):na(e.get(),t.every(n=>n.finished)),sme=e=>({value:e,noop:!0,finished:!0,cancelled:!1}),na=(e,t,n=!1)=>({value:e,finished:t,cancelled:n}),$2=e=>({value:e,cancelled:!0,finished:!1});function ime(e,t,n,o){const{callId:r,parentId:s,onRest:i}=t,{asyncTo:c,promise:l}=n;return!s&&e===c&&!t.reset?l:n.promise=(async()=>{n.asyncId=r,n.asyncTo=e;const u=nme(t,(z,A)=>A==="onRest"?void 0:z);let d,p;const f=new Promise((z,A)=>(d=z,p=A)),b=z=>{const A=r<=(n.cancelId||0)&&$2(o)||r!==n.asyncId&&na(o,!1);if(A)throw z.result=A,p(z),z},h=(z,A)=>{const _=new wQ,v=new _Q;return(async()=>{if(Oa.skipAnimation)throw Kz(n),v.result=na(o,!1),p(v),v;b(_);const M=_t.obj(z)?{...z}:{...A,to:z};M.parentId=r,Dl(u,(k,S)=>{_t.und(M[S])&&(M[S]=k)});const y=await o.start(M);return b(_),n.paused&&await new Promise(k=>{n.resumeQueue.add(k)}),y})()};let g;if(Oa.skipAnimation)return Kz(n),na(o,!1);try{let z;_t.arr(e)?z=(async A=>{for(const _ of A)await h(_)})(e):z=Promise.resolve(e(h,o.stop.bind(o))),await Promise.all([z.then(d),f]),g=na(o.get(),!0,!1)}catch(z){if(z instanceof wQ)g=z.result;else if(z instanceof _Q)g=z.result;else throw z}finally{r==n.asyncId&&(n.asyncId=s,n.asyncTo=s?c:void 0,n.promise=s?l:void 0)}return _t.fun(i)&&kn.batchedUpdates(()=>{i(g,o,o.item)}),g})()}function Kz(e,t){EM(e.timeouts,n=>n.cancel()),e.pauseQueue.clear(),e.resumeQueue.clear(),e.asyncId=e.asyncTo=e.promise=void 0,t&&(e.cancelId=t)}var wQ=class extends Error{constructor(){super("An async animation has been interrupted. You see this error because you forgot to use `await` or `.catch(...)` on its returned promise.")}},_Q=class extends Error{constructor(){super("SkipAnimationSignal")}},TW=e=>e instanceof k7,$4t=1,k7=class extends Hhe{constructor(){super(...arguments),this.id=$4t++,this._priority=0}get priority(){return this._priority}set priority(e){this._priority!=e&&(this._priority=e,this._onPriorityChange(e))}get(){const e=ec(this);return e&&e.getValue()}to(...e){return Oa.to(this,e)}interpolate(...e){return A4t(),Oa.to(this,e)}toJSON(){return this.get()}observerAdded(e){e==1&&this._attach()}observerRemoved(e){e==0&&this._detach()}_attach(){}_detach(){}_onChange(e,t=!1){Vz(this,{type:"change",parent:this,value:e,idle:t})}_onPriorityChange(e){this.idle||__.sort(this),Vz(this,{type:"priority",parent:this,priority:e})}},Tf=Symbol.for("SpringPhase"),ame=1,EW=2,WW=4,Mq=e=>(e[Tf]&ame)>0,Nu=e=>(e[Tf]&EW)>0,Pg=e=>(e[Tf]&WW)>0,kQ=(e,t)=>t?e[Tf]|=EW|ame:e[Tf]&=~EW,SQ=(e,t)=>t?e[Tf]|=WW:e[Tf]&=~WW,V4t=class extends k7{constructor(e,t){if(super(),this.animation=new F4t,this.defaultProps={},this._state={paused:!1,delayed:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._pendingCalls=new Set,this._lastCallId=0,this._lastToId=0,this._memoizedDuration=0,!_t.und(e)||!_t.und(t)){const n=_t.obj(e)?{...e}:{...t,from:e};_t.und(n.default)&&(n.default=!0),this.start(n)}}get idle(){return!(Nu(this)||this._state.asyncTo)||Pg(this)}get goal(){return as(this.animation.to)}get velocity(){const e=ec(this);return e instanceof kO?e.lastVelocity||0:e.getPayload().map(t=>t.lastVelocity||0)}get hasAnimated(){return Mq(this)}get isAnimating(){return Nu(this)}get isPaused(){return Pg(this)}get isDelayed(){return this._state.delayed}advance(e){let t=!0,n=!1;const o=this.animation;let{toValues:r}=o;const{config:s}=o,i=q_(o.to);!i&&zi(o.to)&&(r=Ci(as(o.to))),o.values.forEach((u,d)=>{if(u.done)return;const p=u.constructor==Xz?1:i?i[d].lastPosition:r[d];let f=o.immediate,b=p;if(!f){if(b=u.lastPosition,s.tension<=0){u.done=!0;return}let h=u.elapsedTime+=e;const g=o.fromValues[d],z=u.v0!=null?u.v0:u.v0=_t.arr(s.velocity)?s.velocity[d]:s.velocity;let A;const _=s.precision||(g==p?.005:Math.min(1,Math.abs(p-g)*.001));if(_t.und(s.duration))if(s.decay){const v=s.decay===!0?.998:s.decay,M=Math.exp(-(1-v)*h);b=g+z/(1-v)*(1-M),f=Math.abs(u.lastPosition-b)<=_,A=z*M}else{A=u.lastVelocity==null?z:u.lastVelocity;const v=s.restVelocity||_/10,M=s.clamp?0:s.bounce,y=!_t.und(M),k=g==p?u.v0>0:g<p;let S,C=!1;const R=1,T=Math.ceil(e/R);for(let E=0;E<T&&(S=Math.abs(A)>v,!(!S&&(f=Math.abs(p-b)<=_,f)));++E){y&&(C=b==p||b>p==k,C&&(A=-A*M,b=p));const B=-s.tension*1e-6*(b-p),N=-s.friction*.001*A,j=(B+N)/s.mass;A=A+j*R,b=b+A*R}}else{let v=1;s.duration>0&&(this._memoizedDuration!==s.duration&&(this._memoizedDuration=s.duration,u.durationProgress>0&&(u.elapsedTime=s.duration*u.durationProgress,h=u.elapsedTime+=e)),v=(s.progress||0)+h/this._memoizedDuration,v=v>1?1:v<0?0:v,u.durationProgress=v),b=g+s.easing(v)*(p-g),A=(b-u.lastPosition)/e,f=v==1}u.lastVelocity=A,Number.isNaN(b)&&(console.warn("Got NaN while animating:",this),f=!0)}i&&!i[d].done&&(f=!1),f?u.done=!0:t=!1,u.setValue(b,s.round)&&(n=!0)});const c=ec(this),l=c.getValue();if(t){const u=as(o.to);(l!==u||n)&&!s.decay?(c.setValue(u),this._onChange(u)):n&&s.decay&&this._onChange(l),this._stop()}else n&&this._onChange(l)}set(e){return kn.batchedUpdates(()=>{this._stop(),this._focus(e),this._set(e)}),this}pause(){this._update({pause:!0})}resume(){this._update({pause:!1})}finish(){if(Nu(this)){const{to:e,config:t}=this.animation;kn.batchedUpdates(()=>{this._onStart(),t.decay||this._set(e,!1),this._stop()})}return this}update(e){return(this.queue||(this.queue=[])).push(e),this}start(e,t){let n;return _t.und(e)?(n=this.queue||[],this.queue=[]):n=[_t.obj(e)?e:{...t,to:e}],Promise.all(n.map(o=>this._update(o))).then(o=>_7(this,o))}stop(e){const{to:t}=this.animation;return this._focus(this.get()),Kz(this._state,e&&this._lastCallId),kn.batchedUpdates(()=>this._stop(t,e)),this}reset(){this._update({reset:!0})}eventObserved(e){e.type=="change"?this._start():e.type=="priority"&&(this.priority=e.priority+1)}_prepareNode(e){const t=this.key||"";let{to:n,from:o}=e;n=_t.obj(n)?n[t]:n,(n==null||qW(n))&&(n=void 0),o=_t.obj(o)?o[t]:o,o==null&&(o=void 0);const r={to:n,from:o};return Mq(this)||(e.reverse&&([n,o]=[o,n]),o=as(o),_t.und(o)?ec(this)||this._set(n):this._set(o)),r}_update({...e},t){const{key:n,defaultProps:o}=this;e.default&&Object.assign(o,nme(e,(i,c)=>/^on/.test(c)?eme(i,n):i)),qQ(this,e,"onProps"),Ig(this,"onProps",e,this);const r=this._prepareNode(e);if(Object.isFrozen(this))throw Error("Cannot animate a `SpringValue` object that is frozen. Did you forget to pass your component to `animated(...)` before animating its props?");const s=this._state;return rme(++this._lastCallId,{key:n,props:e,defaultProps:o,state:s,actions:{pause:()=>{Pg(this)||(SQ(this,!0),lM(s.pauseQueue),Ig(this,"onPause",na(this,jg(this,this.animation.to)),this))},resume:()=>{Pg(this)&&(SQ(this,!1),Nu(this)&&this._resume(),lM(s.resumeQueue),Ig(this,"onResume",na(this,jg(this,this.animation.to)),this))},start:this._merge.bind(this,r)}}).then(i=>{if(e.loop&&i.finished&&!(t&&i.noop)){const c=cme(e);if(c)return this._update(c,!0)}return i})}_merge(e,t,n){if(t.cancel)return this.stop(!0),n($2(this));const o=!_t.und(e.to),r=!_t.und(e.from);if(o||r)if(t.callId>this._lastToId)this._lastToId=t.callId;else return n($2(this));const{key:s,defaultProps:i,animation:c}=this,{to:l,from:u}=c;let{to:d=l,from:p=u}=e;r&&!o&&(!t.default||_t.und(d))&&(d=p),t.reverse&&([d,p]=[p,d]);const f=!al(p,u);f&&(c.from=p),p=as(p);const b=!al(d,l);b&&this._focus(d);const h=qW(t.to),{config:g}=c,{decay:z,velocity:A}=g;(o||r)&&(g.velocity=0),t.config&&!h&&D4t(g,Hp(t.config,s),t.config!==i.config?Hp(i.config,s):void 0);let _=ec(this);if(!_||_t.und(d))return n(na(this,!0));const v=_t.und(t.reset)?r&&!t.default:!_t.und(p)&&NM(t.reset,s),M=v?p:this.get(),y=Gz(d),k=_t.num(y)||_t.arr(y)||C_(y),S=!h&&(!k||NM(i.immediate||t.immediate,s));if(b){const E=CW(d);if(E!==_.constructor)if(S)_=this._set(y);else throw Error(`Cannot animate between ${_.constructor.name} and ${E.name}, as the "to" prop suggests`)}const C=_.constructor;let R=zi(d),T=!1;if(!R){const E=v||!Mq(this)&&f;(b||E)&&(T=al(Gz(M),y),R=!T),(!al(c.immediate,S)&&!S||!al(g.decay,z)||!al(g.velocity,A))&&(R=!0)}if(T&&Nu(this)&&(c.changed&&!v?R=!0:R||this._stop(l)),!h&&((R||zi(l))&&(c.values=_.getPayload(),c.toValues=zi(d)?null:C==Xz?[1]:Ci(y)),c.immediate!=S&&(c.immediate=S,!S&&!v&&this._set(l)),R)){const{onRest:E}=c;qr(H4t,N=>qQ(this,t,N));const B=na(this,jg(this,l));lM(this._pendingCalls,B),this._pendingCalls.add(n),c.changed&&kn.batchedUpdates(()=>{c.changed=!v,E?.(B,this),v?Hp(i.onRest,B):c.onStart?.(B,this)})}v&&this._set(M),h?n(ime(t.to,t,this._state,this)):R?this._start():Nu(this)&&!b?this._pendingCalls.add(n):n(sme(M))}_focus(e){const t=this.animation;e!==t.to&&(MQ(this)&&this._detach(),t.to=e,MQ(this)&&this._attach())}_attach(){let e=0;const{to:t}=this.animation;zi(t)&&(_O(t,this),TW(t)&&(e=t.priority+1)),this.priority=e}_detach(){const{to:e}=this.animation;zi(e)&&Hz(e,this)}_set(e,t=!0){const n=as(e);if(!_t.und(n)){const o=ec(this);if(!o||!al(n,o.getValue())){const r=CW(n);!o||o.constructor!=r?w7(this,r.create(n)):o.setValue(n),o&&kn.batchedUpdates(()=>{this._onChange(n,t)})}}return ec(this)}_onStart(){const e=this.animation;e.changed||(e.changed=!0,Ig(this,"onStart",na(this,jg(this,e.to)),this))}_onChange(e,t){t||(this._onStart(),Hp(this.animation.onChange,e,this)),Hp(this.defaultProps.onChange,e,this),super._onChange(e,t)}_start(){const e=this.animation;ec(this).reset(as(e.to)),e.immediate||(e.fromValues=e.values.map(t=>t.lastPosition)),Nu(this)||(kQ(this,!0),Pg(this)||this._resume())}_resume(){Oa.skipAnimation?this.finish():__.start(this)}_stop(e,t){if(Nu(this)){kQ(this,!1);const n=this.animation;qr(n.values,r=>{r.done=!0}),n.toValues&&(n.onChange=n.onPause=n.onResume=void 0),Vz(this,{type:"idle",parent:this});const o=t?$2(this.get()):na(this.get(),jg(this,e??n.to));lM(this._pendingCalls,o),n.changed&&(n.changed=!1,Ig(this,"onRest",o,this))}}};function jg(e,t){const n=Gz(t),o=Gz(e.get());return al(o,n)}function cme(e,t=e.loop,n=e.to){const o=Hp(t);if(o){const r=o!==!0&&ome(o),s=(r||e).reverse,i=!r||r.reset;return NW({...e,loop:t,default:!1,pause:void 0,to:!s||qW(n)?n:void 0,from:i?e.from:void 0,reset:i,...r})}}function NW(e){const{to:t,from:n}=e=ome(e),o=new Set;return _t.obj(t)&&CQ(t,o),_t.obj(n)&&CQ(n,o),e.keys=o.size?Array.from(o):null,e}function CQ(e,t){Dl(e,(n,o)=>n!=null&&t.add(o))}var H4t=["onStart","onRest","onChange","onPause","onResume"];function qQ(e,t,n){e.animation[n]=t[n]!==tme(t,n)?eme(t[n],e.key):void 0}function Ig(e,t,...n){e.animation[t]?.(...n),e.defaultProps[t]?.(...n)}var U4t=["onStart","onChange","onRest"],X4t=1,G4t=class{constructor(e,t){this.id=X4t++,this.springs={},this.queue=[],this._lastAsyncId=0,this._active=new Set,this._changed=new Set,this._started=!1,this._state={paused:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._events={onStart:new Map,onChange:new Map,onRest:new Map},this._onFrame=this._onFrame.bind(this),t&&(this._flush=t),e&&this.start({default:!0,...e})}get idle(){return!this._state.asyncTo&&Object.values(this.springs).every(e=>e.idle&&!e.isDelayed&&!e.isPaused)}get item(){return this._item}set item(e){this._item=e}get(){const e={};return this.each((t,n)=>e[n]=t.get()),e}set(e){for(const t in e){const n=e[t];_t.und(n)||this.springs[t].set(n)}}update(e){return e&&this.queue.push(NW(e)),this}start(e){let{queue:t}=this;return e?t=Ci(e).map(NW):this.queue=[],this._flush?this._flush(this,t):(ume(this,t),K4t(this,t))}stop(e,t){if(e!==!!e&&(t=e),t){const n=this.springs;qr(Ci(t),o=>n[o].stop(!!e))}else Kz(this._state,this._lastAsyncId),this.each(n=>n.stop(!!e));return this}pause(e){if(_t.und(e))this.start({pause:!0});else{const t=this.springs;qr(Ci(e),n=>t[n].pause())}return this}resume(e){if(_t.und(e))this.start({pause:!1});else{const t=this.springs;qr(Ci(e),n=>t[n].resume())}return this}each(e){Dl(this.springs,e)}_onFrame(){const{onStart:e,onChange:t,onRest:n}=this._events,o=this._active.size>0,r=this._changed.size>0;(o&&!this._started||r&&!this._started)&&(this._started=!0,EM(e,([c,l])=>{l.value=this.get(),c(l,this,this._item)}));const s=!o&&this._started,i=r||s&&n.size?this.get():null;r&&t.size&&EM(t,([c,l])=>{l.value=i,c(l,this,this._item)}),s&&(this._started=!1,EM(n,([c,l])=>{l.value=i,c(l,this,this._item)}))}eventObserved(e){if(e.type=="change")this._changed.add(e.parent),e.idle||this._active.add(e.parent);else if(e.type=="idle")this._active.delete(e.parent);else return;kn.onFrame(this._onFrame)}};function K4t(e,t){return Promise.all(t.map(n=>lme(e,n))).then(n=>_7(e,n))}async function lme(e,t,n){const{keys:o,to:r,from:s,loop:i,onRest:c,onResolve:l}=t,u=_t.obj(t.default)&&t.default;i&&(t.loop=!1),r===!1&&(t.to=null),s===!1&&(t.from=null);const d=_t.arr(r)||_t.fun(r)?r:void 0;d?(t.to=void 0,t.onRest=void 0,u&&(u.onRest=void 0)):qr(U4t,g=>{const z=t[g];if(_t.fun(z)){const A=e._events[g];t[g]=({finished:_,cancelled:v})=>{const M=A.get(z);M?(_||(M.finished=!1),v&&(M.cancelled=!0)):A.set(z,{value:null,finished:_||!1,cancelled:v||!1})},u&&(u[g]=t[g])}});const p=e._state;t.pause===!p.paused?(p.paused=t.pause,lM(t.pause?p.pauseQueue:p.resumeQueue)):p.paused&&(t.pause=!0);const f=(o||Object.keys(e.springs)).map(g=>e.springs[g].start(t)),b=t.cancel===!0||tme(t,"cancel")===!0;(d||b&&p.asyncId)&&f.push(rme(++e._lastAsyncId,{props:t,state:p,actions:{pause:kW,resume:kW,start(g,z){b?(Kz(p,e._lastAsyncId),z($2(e))):(g.onRest=c,z(ime(d,g,p,e)))}}})),p.paused&&await new Promise(g=>{p.resumeQueue.add(g)});const h=_7(e,await Promise.all(f));if(i&&h.finished&&!(n&&h.noop)){const g=cme(t,i,r);if(g)return ume(e,[g]),lme(e,g,!0)}return l&&kn.batchedUpdates(()=>l(h,e,e.item)),h}function Y4t(e,t){const n=new V4t;return n.key=e,t&&_O(n,t),n}function Z4t(e,t,n){t.keys&&qr(t.keys,o=>{(e[o]||(e[o]=n(o)))._prepareNode(t)})}function ume(e,t){qr(t,n=>{Z4t(e.springs,n,o=>Y4t(o,e))})}var S7=({children:e,...t})=>{const n=x.useContext(Ix),o=t.pause||!!n.pause,r=t.immediate||!!n.immediate;t=w4t(()=>({pause:o,immediate:r}),[o,r]);const{Provider:s}=Ix;return x.createElement(s,{value:t},e)},Ix=Q4t(S7,{});S7.Provider=Ix.Provider;S7.Consumer=Ix.Consumer;function Q4t(e,t){return Object.assign(e,x.createContext(t)),e.Provider._context=e,e.Consumer._context=e,e}var J4t=class extends k7{constructor(e,t){super(),this.source=e,this.idle=!0,this._active=new Set,this.calc=Fz(...t);const n=this._get(),o=CW(n);w7(this,o.create(n))}advance(e){const t=this._get(),n=this.get();al(t,n)||(ec(this).setValue(t),this._onChange(t,this.idle)),!this.idle&&RQ(this._active)&&zq(this)}_get(){const e=_t.arr(this.source)?this.source.map(as):Ci(as(this.source));return this.calc(...e)}_start(){this.idle&&!RQ(this._active)&&(this.idle=!1,qr(q_(this),e=>{e.done=!1}),Oa.skipAnimation?(kn.batchedUpdates(()=>this.advance()),zq(this)):__.start(this))}_attach(){let e=1;qr(Ci(this.source),t=>{zi(t)&&_O(t,this),TW(t)&&(t.idle||this._active.add(t),e=Math.max(e,t.priority+1))}),this.priority=e,this._start()}_detach(){qr(Ci(this.source),e=>{zi(e)&&Hz(e,this)}),this._active.clear(),zq(this)}eventObserved(e){e.type=="change"?e.idle?this.advance():(this._active.add(e.parent),this._start()):e.type=="idle"?this._active.delete(e.parent):e.type=="priority"&&(this.priority=Ci(this.source).reduce((t,n)=>Math.max(t,(TW(n)?n.priority:0)+1),0))}};function ext(e){return e.idle!==!1}function RQ(e){return!e.size||Array.from(e).every(ext)}function zq(e){e.idle||(e.idle=!0,qr(q_(e),t=>{t.done=!0}),Vz(e,{type:"idle",parent:e}))}Oa.assign({createStringInterpolator:Ghe,to:(e,t)=>new J4t(e,t)});var dme=/^--/;function txt(e,t){return t==null||typeof t=="boolean"||t===""?"":typeof t=="number"&&t!==0&&!dme.test(e)&&!(BM.hasOwnProperty(e)&&BM[e])?t+"px":(""+t).trim()}var TQ={};function nxt(e,t){if(!e.nodeType||!e.setAttribute)return!1;const n=e.nodeName==="filter"||e.parentNode&&e.parentNode.nodeName==="filter",{className:o,style:r,children:s,scrollTop:i,scrollLeft:c,viewBox:l,...u}=t,d=Object.values(u),p=Object.keys(u).map(f=>n||e.hasAttribute(f)?f:TQ[f]||(TQ[f]=f.replace(/([A-Z])/g,b=>"-"+b.toLowerCase())));s!==void 0&&(e.textContent=s);for(const f in r)if(r.hasOwnProperty(f)){const b=txt(f,r[f]);dme.test(f)?e.style.setProperty(f,b):e.style[f]=b}p.forEach((f,b)=>{e.setAttribute(f,d[b])}),o!==void 0&&(e.className=o),i!==void 0&&(e.scrollTop=i),c!==void 0&&(e.scrollLeft=c),l!==void 0&&e.setAttribute("viewBox",l)}var BM={animationIterationCount:!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,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},oxt=(e,t)=>e+t.charAt(0).toUpperCase()+t.substring(1),rxt=["Webkit","Ms","Moz","O"];BM=Object.keys(BM).reduce((e,t)=>(rxt.forEach(n=>e[oxt(n,t)]=e[t]),e),BM);var sxt=/^(matrix|translate|scale|rotate|skew)/,ixt=/^(translate)/,axt=/^(rotate|skew)/,Oq=(e,t)=>_t.num(e)&&e!==0?e+t:e,h4=(e,t)=>_t.arr(e)?e.every(n=>h4(n,t)):_t.num(e)?e===t:parseFloat(e)===t,cxt=class extends R_{constructor({x:e,y:t,z:n,...o}){const r=[],s=[];(e||t||n)&&(r.push([e||0,t||0,n||0]),s.push(i=>[`translate3d(${i.map(c=>Oq(c,"px")).join(",")})`,h4(i,0)])),Dl(o,(i,c)=>{if(c==="transform")r.push([i||""]),s.push(l=>[l,l===""]);else if(sxt.test(c)){if(delete o[c],_t.und(i))return;const l=ixt.test(c)?"px":axt.test(c)?"deg":"";r.push(Ci(i)),s.push(c==="rotate3d"?([u,d,p,f])=>[`rotate3d(${u},${d},${p},${Oq(f,l)})`,h4(f,0)]:u=>[`${c}(${u.map(d=>Oq(d,l)).join(",")})`,h4(u,c.startsWith("scale")?1:0)])}}),r.length&&(o.transform=new lxt(r,s)),super(o)}},lxt=class extends Hhe{constructor(e,t){super(),this.inputs=e,this.transforms=t,this._value=null}get(){return this._value||(this._value=this._get())}_get(){let e="",t=!0;return qr(this.inputs,(n,o)=>{const r=as(n[0]),[s,i]=this.transforms[o](_t.arr(r)?r:n.map(as));e+=" "+s,t=t&&i}),t?"none":e}observerAdded(e){e==1&&qr(this.inputs,t=>qr(t,n=>zi(n)&&_O(n,this)))}observerRemoved(e){e==0&&qr(this.inputs,t=>qr(t,n=>zi(n)&&Hz(n,this)))}eventObserved(e){e.type=="change"&&(this._value=null),Vz(this,e)}},uxt=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"];Oa.assign({batchedUpdates:hs.unstable_batchedUpdates,createStringInterpolator:Ghe,colors:t4t});var dxt=W4t(uxt,{applyAnimatedValues:nxt,createAnimatedStyle:e=>new cxt(e),getComponentProps:({scrollTop:e,scrollLeft:t,...n})=>n}),pxt=dxt.animated;const fxt=200;function EQ(e){return{top:e.offsetTop,left:e.offsetLeft}}function pme({triggerAnimationOnChange:e,clientId:t}){const n=x.useRef(),{isTyping:o,getGlobalBlockCount:r,isBlockSelected:s,isFirstMultiSelectedBlock:i,isBlockMultiSelected:c,isAncestorMultiSelected:l,isDraggingBlocks:u}=G(Q),{previous:d,prevRect:p}=x.useMemo(()=>({previous:n.current&&EQ(n.current),prevRect:n.current&&n.current.getBoundingClientRect()}),[e]);return x.useLayoutEffect(()=>{if(!d||!n.current)return;const f=ps(n.current),b=s(t),h=b||i(t),g=u();function z(){if(!g&&h&&p){const R=n.current.getBoundingClientRect().top-p.top;R&&(f.scrollTop+=R)}}if(window.matchMedia("(prefers-reduced-motion: reduce)").matches||o()||r()>fxt){z();return}const _=b||c(t)||l(t);if(_&&g)return;const v=_?"1":"",M=new G4t({x:0,y:0,config:{mass:5,tension:2e3,friction:200},onChange({value:C}){if(!n.current)return;let{x:R,y:T}=C;R=Math.round(R),T=Math.round(T);const E=R===0&&T===0;n.current.style.transformOrigin="center center",n.current.style.transform=E?null:`translate3d(${R}px,${T}px,0)`,n.current.style.zIndex=v,z()}});n.current.style.transform=void 0;const y=EQ(n.current),k=Math.round(d.left-y.left),S=Math.round(d.top-y.top);return M.start({x:0,y:0,from:{x:k,y:S}}),()=>{M.stop(),M.set({x:0,y:0})}},[d,p,t,o,r,s,i,c,l,u]),n}const Dx=".block-editor-block-list__block",bxt=".block-list-appender",hxt=".block-editor-button-block-appender";function fme(e,t){return e.closest(Dx)===t.closest(Dx)}function LM(e,t){return t.closest([Dx,bxt,hxt].join(","))===e}function PM(e){for(;e&&e.nodeType!==e.ELEMENT_NODE;)e=e.parentNode;if(!e)return;const n=e.closest(Dx);if(n)return n.id.slice(6)}function bme(e,t){const n=Math.min(e.left,t.left),o=Math.max(e.right,t.right),r=Math.max(e.bottom,t.bottom),s=Math.min(e.top,t.top);return new window.DOMRectReadOnly(n,s,o-n,r-s)}function mxt(e){const t=e.ownerDocument.defaultView;if(!t||e.classList.contains("components-visually-hidden"))return!1;const n=e.getBoundingClientRect();if(n.width===0||n.height===0)return!1;if(e.checkVisibility)return e.checkVisibility?.({opacityProperty:!0,contentVisibilityAuto:!0,visibilityProperty:!0});const o=t.getComputedStyle(e);return!(o.display==="none"||o.visibility==="hidden"||o.opacity==="0")}function gxt(e){const t=window.getComputedStyle(e);return t.overflowX==="auto"||t.overflowX==="scroll"||t.overflowY==="auto"||t.overflowY==="scroll"}const Mxt=["core/navigation"];function m4(e){const t=e.ownerDocument.defaultView;if(!t)return new window.DOMRectReadOnly;let n=e.getBoundingClientRect();const o=e.getAttribute("data-type");if(o&&Mxt.includes(o)){const i=[e];let c;for(;c=i.pop();)if(!gxt(c)){for(const l of c.children)if(mxt(l)){const u=l.getBoundingClientRect();n=bme(n,u),i.push(l)}}}const r=Math.max(n.left,0),s=Math.min(n.right,t.innerWidth);return n=new window.DOMRectReadOnly(r,n.top,s-r,n.height),n}function zxt({clientId:e,initialPosition:t}){const n=x.useRef(),{isBlockSelected:o,isMultiSelecting:r,isZoomOut:s}=ct(G(Q));return x.useEffect(()=>{if(!o(e)||r()||s()||t==null||!n.current)return;const{ownerDocument:i}=n.current;if(LM(n.current,i.activeElement))return;const c=Xr.tabbable.find(n.current).filter(d=>md(d)),l=t===-1,u=c[l?c.length-1:0]||n.current;if(!LM(n.current,u)){n.current.focus();return}if(!n.current.getAttribute("contenteditable")){const d=Xr.tabbable.findNext(n.current);if(d&&LM(n.current,d)&&u0e(d)){d.focus();return}}m0e(u,l)},[t,e]),n}function Oxt({clientId:e}){const{hoverBlock:t}=Oe(Q);function n(o){if(o.defaultPrevented)return;const r=o.type==="mouseover"?"add":"remove";o.preventDefault(),o.currentTarget.classList[r]("is-hovered"),t(r==="add"?e:null)}return Mn(o=>(o.addEventListener("mouseout",n),o.addEventListener("mouseover",n),()=>{o.removeEventListener("mouseout",n),o.removeEventListener("mouseover",n),o.classList.remove("is-hovered"),t(null)}),[])}function yxt(e){const{isBlockSelected:t}=G(Q),{selectBlock:n,selectionChange:o}=Oe(Q);return Mn(r=>{function s(i){if(!r.parentElement.closest('[contenteditable="true"]')){if(t(e)){i.target.isContentEditable||o(e);return}LM(r,i.target)&&n(e)}}return r.addEventListener("focusin",s),()=>{r.removeEventListener("focusin",s)}},[t,n])}function C7({count:e,icon:t,isPattern:n,fadeWhenDisabled:o}){const r=n&&m("Pattern");return a.jsx("div",{className:"block-editor-block-draggable-chip-wrapper",children:a.jsx("div",{className:"block-editor-block-draggable-chip","data-testid":"block-draggable-chip",children:a.jsxs(Yo,{justify:"center",className:"block-editor-block-draggable-chip__content",children:[a.jsx(Tn,{children:t?a.jsx(Zn,{icon:t}):r||xe(Dn("%d block","%d blocks",e),e)}),a.jsx(Tn,{children:a.jsx(Zn,{icon:nde})}),o&&a.jsx(Tn,{className:"block-editor-block-draggable-chip__disabled",children:a.jsx("span",{className:"block-editor-block-draggable-chip__disabled-icon"})})]})})})}function Axt({clientId:e,isSelected:t}){const{getBlockType:n}=G(kt),{getBlockRootClientId:o,isZoomOut:r,hasMultiSelection:s,getBlockName:i}=ct(G(Q)),{insertAfterBlock:c,removeBlock:l,resetZoomLevel:u,startDraggingBlocks:d,stopDraggingBlocks:p}=ct(Oe(Q));return Mn(f=>{if(!t)return;function b(g){const{keyCode:z,target:A}=g;z!==Gr&&z!==Mc&&z!==zl||A!==f||md(A)||(g.preventDefault(),z===Gr&&r()?u():z===Gr?c(e):l(e))}function h(g){if(f!==g.target||f.isContentEditable||f.ownerDocument.activeElement!==f||s()){g.preventDefault();return}const z=JSON.stringify({type:"block",srcClientIds:[e],srcRootClientId:o(e)});g.dataTransfer.effectAllowed="move",g.dataTransfer.clearData(),g.dataTransfer.setData("wp-blocks",z);const{ownerDocument:A}=f,{defaultView:_}=A;_.getSelection().removeAllRanges();const M=document.createElement("div");Nre.createRoot(M).render(a.jsx(C7,{icon:n(i(e)).icon})),document.body.appendChild(M),M.style.position="absolute",M.style.top="0",M.style.left="0",M.style.zIndex="1000",M.style.pointerEvents="none";const k=A.createElement("div");k.style.width="1px",k.style.height="1px",k.style.position="fixed",k.style.visibility="hidden",A.body.appendChild(k),g.dataTransfer.setDragImage(k,0,0);let S={x:0,y:0};if(document!==A){const T=_.frameElement;if(T){const E=T.getBoundingClientRect();S={x:E.left,y:E.top}}}S.x-=58;function C(T){M.style.transform=`translate( ${T.clientX+S.x}px, ${T.clientY+S.y}px )`}C(g);function R(){A.removeEventListener("dragover",C),A.removeEventListener("dragend",R),M.remove(),k.remove(),p(),document.body.classList.remove("is-dragging-components-draggable"),A.documentElement.classList.remove("is-dragging")}A.addEventListener("dragover",C),A.addEventListener("dragend",R),A.addEventListener("drop",R),d([e]),document.body.classList.add("is-dragging-components-draggable"),A.documentElement.classList.add("is-dragging")}return f.addEventListener("keydown",b),f.addEventListener("dragstart",h),()=>{f.removeEventListener("keydown",b),f.removeEventListener("dragstart",h)}},[e,t,o,c,l,r,u,s,d,p])}function vxt(){const e=x.useContext(Wge);return Mn(t=>{if(e)return e.observe(t),()=>{e.unobserve(t)}},[e])}function xxt({isSelected:e}){const t=$1();return Mn(n=>{if(e){const{ownerDocument:o}=n,{defaultView:r}=o;if(!r.IntersectionObserver)return;const s=new r.IntersectionObserver(i=>{i[0].isIntersecting||n.scrollIntoView({behavior:t?"instant":"smooth"}),s.disconnect()});return s.observe(n),()=>{s.disconnect()}}},[e])}function hme({clientId:e="",isEnabled:t=!0}={}){const{getEnabledClientIdsTree:n}=ct(G(Q));return Mn(o=>{if(!t)return;const r=()=>{n(e).forEach(({clientId:i})=>{const c=o.querySelector(`[data-block="${i}"]`);c&&(c.classList.remove("has-editable-outline"),c.offsetWidth,c.classList.add("has-editable-outline"))})},s=i=>{(i.target===o||i.target.classList.contains("is-root-container"))&&(i.defaultPrevented||(i.preventDefault(),r()))};return o.addEventListener("click",s),()=>o.removeEventListener("click",s)},[t])}const Yz=new Map;function wxt(e,t){let n=Yz.get(e);n||(n=new Set,Yz.set(e,n),e.addEventListener("pointerdown",gme)),n.add(t)}function _xt(e,t){const n=Yz.get(e);n&&(n.delete(t),mme(t),n.size===0&&(Yz.delete(e),e.removeEventListener("pointerdown",gme)))}function mme(e){const t=e.getAttribute("data-draggable");t&&(e.removeAttribute("data-draggable"),t==="true"&&!e.getAttribute("draggable")&&e.setAttribute("draggable","true"))}function gme(e){const{target:t}=e,{ownerDocument:n,isContentEditable:o}=t,r=Yz.get(n);if(o)for(const s of r)s.getAttribute("draggable")==="true"&&s.contains(t)&&(s.removeAttribute("draggable"),s.setAttribute("data-draggable","true"));else for(const s of r)mme(s)}function kxt(){return Mn(e=>(wxt(e.ownerDocument,e),()=>{_xt(e.ownerDocument,e)}),[])}function Be(e={},{__unstableIsHtml:t}={}){const{clientId:n,className:o,wrapperProps:r={},isAligned:s,index:i,mode:c,name:l,blockApiVersion:u,blockTitle:d,isSelected:p,isSubtreeDisabled:f,hasOverlay:b,initialPosition:h,blockEditingMode:g,isHighlighted:z,isMultiSelected:A,isPartiallySelected:_,isReusable:v,isDragging:M,hasChildSelected:y,isEditingDisabled:k,hasEditableOutline:S,isTemporarilyEditingAsBlocks:C,defaultClassName:R,isSectionBlock:T,canMove:E}=x.useContext(Pz),B=xe(m("Block: %s"),d),N=c==="html"&&!t?"-visual":"",j=kxt(),I=xn([e.ref,zxt({clientId:n,initialPosition:h}),wvt(n),yxt(n),Axt({clientId:n,isSelected:p}),Oxt({clientId:n}),vxt(),pme({triggerAnimationOnChange:i,clientId:n}),HN({isDisabled:!b}),hme({clientId:n,isEnabled:T}),xxt({isSelected:p}),E?j:void 0]),P=j0(),F=!!P[ZB]&&l7(l)?{"--wp-admin-theme-color":"var(--wp-block-synced-color)","--wp-admin-theme-color--rgb":"var(--wp-block-synced-color--rgb)"}:{};u<2&&n===P.clientId&&globalThis.SCRIPT_DEBUG===!0&&zn(`Block type "${l}" must support API version 2 or higher to work correctly with "useBlockProps" method.`);let X=!1;return(r?.style?.marginTop?.charAt(0)==="-"||r?.style?.marginBottom?.charAt(0)==="-"||r?.style?.marginLeft?.charAt(0)==="-"||r?.style?.marginRight?.charAt(0)==="-")&&(X=!0),{tabIndex:g==="disabled"?-1:0,draggable:E&&!y?!0:void 0,...r,...e,ref:I,id:`block-${n}${N}`,role:"document","aria-label":B,"data-block":n,"data-type":l,"data-title":d,inert:f?"true":void 0,className:oe("block-editor-block-list__block",{"wp-block":!s,"has-block-overlay":b,"is-selected":p,"is-highlighted":z,"is-multi-selected":A,"is-partially-selected":_,"is-reusable":v,"is-dragging":M,"has-child-selected":y,"is-editing-disabled":k,"has-editable-outline":S,"has-negative-margin":X,"is-content-locked-temporarily-editing-as-blocks":C},o,e.className,r.className,R),style:{...r.style,...e.style,...F}}}Be.save=Z4;function Sxt(e,t){const n={...e,...t};return e?.hasOwnProperty("className")&&t?.hasOwnProperty("className")&&(n.className=oe(e.className,t.className)),e?.hasOwnProperty("style")&&t?.hasOwnProperty("style")&&(n.style={...e.style,...t.style}),n}function ev({children:e,isHtml:t,...n}){return a.jsx("div",{...Be(n,{__unstableIsHtml:t}),children:e})}function BW({block:{__unstableBlockSource:e},mode:t,isLocked:n,canRemove:o,clientId:r,isSelected:s,isSelectionEnabled:i,className:c,__unstableLayoutClassNames:l,name:u,isValid:d,attributes:p,wrapperProps:f,setAttributes:b,onReplace:h,onRemove:g,onInsertBlocksAfter:z,onMerge:A,toggleSelection:_}){var v;const{mayDisplayControls:M,mayDisplayParentControls:y,themeSupportsLayout:k,...S}=x.useContext(Pz),C=x_()||{};let R=a.jsx(byt,{name:u,isSelected:s,attributes:p,setAttributes:b,insertBlocksAfter:n?void 0:z,onReplace:o?h:void 0,onRemove:o?g:void 0,mergeBlocks:o?A:void 0,clientId:r,isSelectionEnabled:i,toggleSelection:_,__unstableLayoutClassNames:l,__unstableParentLayout:Object.keys(C).length?C:void 0,mayDisplayControls:M,mayDisplayParentControls:y,blockEditingMode:S.blockEditingMode,isPreviewMode:S.isPreviewMode});const T=on(u);T?.getEditWrapperProps&&(f=Sxt(f,T.getEditWrapperProps(p)));const E=f&&!!f["data-align"]&&!k,B=c?.includes("is-position-sticky");E&&(R=a.jsx("div",{className:oe("wp-block",B&&c),"data-align":f["data-align"],children:R}));let N;if(d)t==="html"?N=a.jsxs(a.Fragment,{children:[a.jsx("div",{style:{display:"none"},children:R}),a.jsx(ev,{isHtml:!0,children:a.jsx(Uvt,{clientId:r})})]}):T?.apiVersion>1?N=R:N=a.jsx(ev,{children:R});else{const $=e?ez(e):Gf(T,p);N=a.jsxs(ev,{className:"has-warning",children:[a.jsx(Tvt,{clientId:r}),a.jsx(i0,{children:C5($)})]})}const{"data-align":j,...I}=(v=f)!==null&&v!==void 0?v:{},P={...I,className:oe(I.className,j&&k&&`align${j}`,!(j&&B)&&c)};return a.jsx(Pz.Provider,{value:{wrapperProps:P,isAligned:E,...S},children:a.jsx(Nvt,{fallback:a.jsx(ev,{className:"has-warning",children:a.jsx(Wvt,{})}),children:N})})}const Cxt=Ff((e,t,n)=>{const{updateBlockAttributes:o,insertBlocks:r,mergeBlocks:s,replaceBlocks:i,toggleSelection:c,__unstableMarkLastChangeAsPersistent:l,moveBlocksToPosition:u,removeBlock:d,selectBlock:p}=e(Q);return{setAttributes(f){const{getMultiSelectedBlockClientIds:b}=n.select(Q),h=b(),{clientId:g}=t,z=h.length?h:[g];o(z,f)},onInsertBlocks(f,b){const{rootClientId:h}=t;r(f,b,h)},onInsertBlocksAfter(f){const{clientId:b,rootClientId:h}=t,{getBlockIndex:g}=n.select(Q),z=g(b);r(f,z+1,h)},onMerge(f){const{clientId:b,rootClientId:h}=t,{getPreviousBlockClientId:g,getNextBlockClientId:z,getBlock:A,getBlockAttributes:_,getBlockName:v,getBlockOrder:M,getBlockIndex:y,getBlockRootClientId:k,canInsertBlockType:S}=n.select(Q);function C(){const T=A(b),E=Mr(),B=on(E);if(v(b)!==E){const N=Kr(T,E);N&&N.length&&i(b,N)}else if(El(T)){const N=z(b);N&&n.batch(()=>{d(b),p(N)})}else if(B.merge){const N=B.merge({},T.attributes);i([b],[Ee(E,N)])}}function R(T,E=!0){const B=v(T),j=on(B).category==="text",I=k(T),P=M(T),[$]=P;P.length===1&&E2(A($))?d(T):j?n.batch(()=>{if(S(v($),I))u([$],T,I,y(T));else{const F=Kr(A($),Mr());F&&F.length&&F.every(X=>S(X.name,I))?(r(F,y(T),I,E),d($,!1)):C()}!M(T).length&&E2(A(T))&&d(T,!1)}):C()}if(f){if(h){const E=z(h);if(E)if(v(h)===v(E)){const B=_(h),N=_(E);if(Object.keys(B).every(j=>B[j]===N[j])){n.batch(()=>{u(M(E),E,h),d(E,!1)});return}}else{s(h,E);return}}const T=z(b);if(!T)return;M(T).length?R(T,!1):s(b,T)}else{const T=g(b);if(T)s(T,b);else if(h){const E=g(h);if(E&&v(h)===v(E)){const B=_(h),N=_(E);if(Object.keys(B).every(j=>B[j]===N[j])){n.batch(()=>{u(M(h),h,E),d(h,!1)});return}}R(h)}else C()}},onReplace(f,b,h){f.length&&!El(f[f.length-1])&&l();const g=f?.length===1&&Array.isArray(f[0])?f[0]:f;i([t.clientId],g,b,h)},onRemove(){d(t.clientId)},toggleSelection(f){c(f)}}});BW=Co(Cxt,ap("editor.BlockListBlock"))(BW);function qxt(e){const{clientId:t,rootClientId:n}=e,o=G(J=>{const{isBlockSelected:ue,getBlockMode:ce,isSelectionEnabled:me,getTemplateLock:de,isSectionBlock:Ae,getBlockWithoutAttributes:ye,getBlockAttributes:Ne,canRemoveBlock:je,canMoveBlock:ie,getSettings:we,getTemporarilyEditingAsBlocks:re,getBlockEditingMode:pe,getBlockName:ke,isFirstMultiSelectedBlock:Se,getMultiSelectedBlockClientIds:se,hasSelectedInnerBlock:L,getBlocksByName:U,getBlockIndex:ne,isBlockMultiSelected:ve,isBlockSubtreeDisabled:qe,isBlockHighlighted:Pe,__unstableIsFullySelected:rt,__unstableSelectionHasUnmergeableBlock:qt,isBlockBeingDragged:wt,isDragging:Bt,__unstableHasActiveBlockOverlayActive:ae,getSelectedBlocksInitialCaretPosition:H}=ct(J(Q)),Y=ye(t);if(!Y)return;const{hasBlockSupport:fe,getActiveBlockVariation:Re}=J(kt),be=Ne(t),{name:ze,isValid:nt}=Y,Mt=on(ze),{supportsLayout:ot,isPreviewMode:Ue}=we(),yt=Mt?.apiVersion>1,fn={isPreviewMode:Ue,blockWithoutAttributes:Y,name:ze,attributes:be,isValid:nt,themeSupportsLayout:ot,index:ne(t),isReusable:Qd(Mt),className:yt?be.className:void 0,defaultClassName:yt?Y4(ze):void 0,blockTitle:Mt?.title};if(Ue)return fn;const Ln=ue(t),Mo=je(t),rr=ie(t),Jo=Re(ze,be),To=ve(t),Rt=L(t,!0),Qe=pe(t),Gt=Et(ze,"multiple",!0)?[]:U(ze),On=Gt.length&&Gt[0]!==t;return{...fn,mode:ce(t),isSelectionEnabled:me(),isLocked:!!de(n),isSectionBlock:Ae(t),canRemove:Mo,canMove:rr,isSelected:Ln,isTemporarilyEditingAsBlocks:re()===t,blockEditingMode:Qe,mayDisplayControls:Ln||Se(t)&&se().every($n=>ke($n)===ze),mayDisplayParentControls:fe(ke(t),"__experimentalExposeControlsToChildren",!1)&&L(t),blockApiVersion:Mt?.apiVersion||1,blockTitle:Jo?.title||Mt?.title,isSubtreeDisabled:Qe==="disabled"&&qe(t),hasOverlay:ae(t)&&!Bt(),initialPosition:Ln?H():void 0,isHighlighted:Pe(t),isMultiSelected:To,isPartiallySelected:To&&!rt()&&!qt(),isDragging:wt(t),hasChildSelected:Rt,isEditingDisabled:Qe==="disabled",hasEditableOutline:Qe!=="disabled"&&pe(n)==="disabled",originalBlockClientId:On?Gt[0]:!1}},[t,n]),{isPreviewMode:r,mode:s="visual",isSelectionEnabled:i=!1,isLocked:c=!1,canRemove:l=!1,canMove:u=!1,blockWithoutAttributes:d,name:p,attributes:f,isValid:b,isSelected:h=!1,themeSupportsLayout:g,isTemporarilyEditingAsBlocks:z,blockEditingMode:A,mayDisplayControls:_,mayDisplayParentControls:v,index:M,blockApiVersion:y,blockTitle:k,isSubtreeDisabled:S,hasOverlay:C,initialPosition:R,isHighlighted:T,isMultiSelected:E,isPartiallySelected:B,isReusable:N,isDragging:j,hasChildSelected:I,isSectionBlock:P,isEditingDisabled:$,hasEditableOutline:F,className:X,defaultClassName:Z,originalBlockClientId:V}=o,ee=x.useMemo(()=>({...d,attributes:f}),[d,f]);if(!o)return null;const te={isPreviewMode:r,clientId:t,className:X,index:M,mode:s,name:p,blockApiVersion:y,blockTitle:k,isSelected:h,isSubtreeDisabled:S,hasOverlay:C,initialPosition:R,blockEditingMode:A,isHighlighted:T,isMultiSelected:E,isPartiallySelected:B,isReusable:N,isDragging:j,hasChildSelected:I,isSectionBlock:P,isEditingDisabled:$,hasEditableOutline:F,isTemporarilyEditingAsBlocks:z,defaultClassName:Z,mayDisplayControls:_,mayDisplayParentControls:v,originalBlockClientId:V,themeSupportsLayout:g,canMove:u};return a.jsx(Pz.Provider,{value:te,children:a.jsx(BW,{...e,mode:s,isSelectionEnabled:i,isLocked:c,canRemove:l,canMove:u,block:ee,name:p,attributes:f,isValid:b,isSelected:h})})}const Rxt=x.memo(qxt),WQ=[cr(m("While writing, you can press <kbd>/</kbd> to quickly insert new blocks."),{kbd:a.jsx("kbd",{})}),cr(m("Indent a list by pressing <kbd>space</kbd> at the beginning of a line."),{kbd:a.jsx("kbd",{})}),cr(m("Outdent a list by pressing <kbd>backspace</kbd> at the beginning of a line."),{kbd:a.jsx("kbd",{})}),m("Drag files into the editor to automatically insert media blocks."),m("Change a block's type by pressing the block icon on the toolbar.")];function Txt(){const[e]=x.useState(Math.floor(Math.random()*WQ.length));return a.jsx(rht,{children:WQ[e]})}const{Badge:Ext}=ct(tr);function Mme({title:e,icon:t,description:n,blockType:o,className:r,name:s}){o&&(Ke("`blockType` property in `BlockCard component`",{since:"5.7",alternative:"`title, icon and description` properties"}),{title:e,icon:t,description:n}=o);const{parentNavBlockClientId:i}=G(l=>{const{getSelectedBlockClientId:u,getBlockParentsByBlockName:d}=l(Q),p=u();return{parentNavBlockClientId:d(p,"core/navigation",!0)[0]}},[]),{selectBlock:c}=Oe(Q);return a.jsxs("div",{className:oe("block-editor-block-card",r),children:[i&&a.jsx(Ce,{onClick:()=>c(i),label:m("Go to parent Navigation block"),style:{minWidth:24,padding:0},icon:jt()?ma:Ll,size:"small"}),a.jsx(Zn,{icon:t,showColors:!0}),a.jsxs(dt,{spacing:1,children:[a.jsxs("h2",{className:"block-editor-block-card__title",children:[a.jsx("span",{className:"block-editor-block-card__name",children:s?.length?s:e}),!!s?.length&&a.jsx(Ext,{children:e})]}),n&&a.jsx(Sn,{className:"block-editor-block-card__description",children:n})]})]})}let _r=function(e){return e.Unknown="REDUX_UNKNOWN",e.Add="ADD_ITEM",e.Prepare="PREPARE_ITEM",e.Cancel="CANCEL_ITEM",e.Remove="REMOVE_ITEM",e.PauseItem="PAUSE_ITEM",e.ResumeItem="RESUME_ITEM",e.PauseQueue="PAUSE_QUEUE",e.ResumeQueue="RESUME_QUEUE",e.OperationStart="OPERATION_START",e.OperationFinish="OPERATION_FINISH",e.AddOperations="ADD_OPERATIONS",e.CacheBlobUrl="CACHE_BLOB_URL",e.RevokeBlobUrls="REVOKE_BLOB_URLS",e.UpdateSettings="UPDATE_SETTINGS",e}({}),zme=function(e){return e.Processing="PROCESSING",e.Paused="PAUSED",e}({}),Zz=function(e){return e.Prepare="PREPARE",e.Upload="UPLOAD",e}({});const Wxt=()=>{},Nxt={queue:[],queueStatus:"active",blobUrls:{},settings:{mediaUpload:Wxt}};function Ome(e=Nxt,t={type:_r.Unknown}){switch(t.type){case _r.PauseQueue:return{...e,queueStatus:"paused"};case _r.ResumeQueue:return{...e,queueStatus:"active"};case _r.Add:return{...e,queue:[...e.queue,t.item]};case _r.Cancel:return{...e,queue:e.queue.map(n=>n.id===t.id?{...n,error:t.error}:n)};case _r.Remove:return{...e,queue:e.queue.filter(n=>n.id!==t.id)};case _r.OperationStart:return{...e,queue:e.queue.map(n=>n.id===t.id?{...n,currentOperation:t.operation}:n)};case _r.AddOperations:return{...e,queue:e.queue.map(n=>n.id!==t.id?n:{...n,operations:[...n.operations||[],...t.operations]})};case _r.OperationFinish:return{...e,queue:e.queue.map(n=>{if(n.id!==t.id)return n;const o=n.operations?n.operations.slice(1):[],r=n.attachment||t.item.attachment?{...n.attachment,...t.item.attachment}:void 0;return{...n,currentOperation:void 0,operations:o,...t.item,attachment:r,additionalData:{...n.additionalData,...t.item.additionalData}}})};case _r.CacheBlobUrl:{const n=e.blobUrls[t.id]||[];return{...e,blobUrls:{...e.blobUrls,[t.id]:[...n,t.blobUrl]}}}case _r.RevokeBlobUrls:{const n={...e.blobUrls};return delete n[t.id],{...e,blobUrls:n}}case _r.UpdateSettings:return{...e,settings:{...e.settings,...t.settings}}}return e}function Bxt(e){return e.queue}function Lxt(e){return e.queue.length>=1}function Pxt(e,t){return e.queue.some(n=>n.attachment?.url===t||n.sourceUrl===t)}function jxt(e,t){return e.queue.some(n=>n.attachment?.id===t||n.sourceAttachmentId===t)}function Ixt(e){return e.settings}const yme=Object.freeze(Object.defineProperty({__proto__:null,getItems:Bxt,getSettings:Ixt,isUploading:Lxt,isUploadingById:jxt,isUploadingByUrl:Pxt},Symbol.toStringTag,{value:"Module"}));function Dxt(e){return e.queue}function Fxt(e,t){return e.queue.find(n=>n.id===t)}function $xt(e,t){return e.queue.filter(o=>t===o.batchId).length===0}function Vxt(e,t){return e.queue.some(n=>n.currentOperation===Zz.Upload&&n.additionalData.post===t)}function Hxt(e,t){return e.queue.find(n=>n.status===zme.Paused&&n.additionalData.post===t)}function Uxt(e){return e.queueStatus==="paused"}function Xxt(e,t){return e.blobUrls[t]||[]}const Gxt=Object.freeze(Object.defineProperty({__proto__:null,getAllItems:Dxt,getBlobUrls:Xxt,getItem:Fxt,getPausedUploadForPost:Hxt,isBatchUploaded:$xt,isPaused:Uxt,isUploadingToPost:Vxt},Symbol.toStringTag,{value:"Module"}));let Fx=class extends Error{constructor({code:t,message:n,file:o,cause:r}){super(n,{cause:r}),Object.setPrototypeOf(this,new.target.prototype),this.code=t,this.file=o}};function Kxt(e,t){if(!t)return;const n=t.some(o=>o.includes("/")?o===e.type:e.type.startsWith(`${o}/`));if(e.type&&!n)throw new Fx({code:"MIME_TYPE_NOT_SUPPORTED",message:xe(m("%s: Sorry, this file type is not supported here."),e.name),file:e})}function Yxt(e){return e?Object.entries(e).flatMap(([t,n])=>{const[o]=n.split("/"),r=t.split("|");return[n,...r.map(s=>`${o}/${s}`)]}):null}function Zxt(e,t){const n=Yxt(t);if(!n)return;const o=n.includes(e.type);if(e.type&&!o)throw new Fx({code:"MIME_TYPE_NOT_ALLOWED_FOR_USER",message:xe(m("%s: Sorry, you are not allowed to upload this file type."),e.name),file:e})}function Qxt(e,t){if(e.size<=0)throw new Fx({code:"EMPTY_FILE",message:xe(m("%s: This file is empty."),e.name),file:e});if(t&&e.size>t)throw new Fx({code:"SIZE_ABOVE_LIMIT",message:xe(m("%s: This file exceeds the maximum upload size for this site."),e.name),file:e})}function Jxt({files:e,onChange:t,onSuccess:n,onError:o,onBatchSuccess:r,additionalData:s,allowedTypes:i}){return async({select:c,dispatch:l})=>{const u=Is();for(const d of e){try{Kxt(d,i),Zxt(d,c.getSettings().allowedMimeTypes)}catch(p){o?.(p);continue}try{Qxt(d,c.getSettings().maxUploadFileSize)}catch(p){o?.(p);continue}l.addItem({file:d,batchId:u,onChange:t,onSuccess:n,onBatchSuccess:r,onError:o,additionalData:s})}}}function e5t(e,t,n=!1){return async({select:o,dispatch:r})=>{const s=o.getItem(e);if(s){if(s.abortController?.abort(),!n){const{onError:i}=s;i?.(t??new Error("Upload cancelled")),!i&&t&&console.error("Upload cancelled",t)}r({type:_r.Cancel,id:e,error:t}),r.removeItem(e),r.revokeBlobUrls(e),s.batchId&&o.isBatchUploaded(s.batchId)&&s.onBatchSuccess?.()}}}const Ame=Object.freeze(Object.defineProperty({__proto__:null,addItems:Jxt,cancelItem:e5t},Symbol.toStringTag,{value:"Module"}));function t5t(e){if(e instanceof File)return e;const t=e.type.split("/")[1],n=e.type==="application/pdf"?"document":e.type.split("/")[0];return new File([e],`${n}.${t}`,{type:e.type})}function n5t(e,t){return new File([e],t,{type:e.type,lastModified:e.lastModified})}function o5t(e){return n5t(e,e.name)}class r5t extends File{constructor(t="stub-file"){super([],t)}}function s5t({file:e,batchId:t,onChange:n,onSuccess:o,onBatchSuccess:r,onError:s,additionalData:i={},sourceUrl:c,sourceAttachmentId:l,abortController:u,operations:d}){return async({dispatch:p})=>{const f=Is(),b=t5t(e);let h;b instanceof r5t||(h=ls(b),p({type:_r.CacheBlobUrl,id:f,blobUrl:h})),p({type:_r.Add,item:{id:f,batchId:t,status:zme.Processing,sourceFile:o5t(b),file:b,attachment:{url:h},additionalData:{convert_format:!1,...i},onChange:n,onSuccess:o,onBatchSuccess:r,onError:s,sourceUrl:c,sourceAttachmentId:l,abortController:u||new AbortController,operations:Array.isArray(d)?d:[Zz.Prepare]}}),p.processItem(f)}}function i5t(e){return async({select:t,dispatch:n})=>{if(t.isPaused())return;const o=t.getItem(e),{attachment:r,onChange:s,onSuccess:i,onBatchSuccess:c,batchId:l}=o,u=Array.isArray(o.operations?.[0])?o.operations[0][0]:o.operations?.[0];if(r&&s?.([r]),!u){r&&i?.([r]),n.revokeBlobUrls(e),l&&t.isBatchUploaded(l)&&c?.();return}if(u)switch(n({type:_r.OperationStart,id:e,operation:u}),u){case Zz.Prepare:n.prepareItem(o.id);break;case Zz.Upload:n.uploadItem(e);break}}}function a5t(){return{type:_r.PauseQueue}}function c5t(){return async({select:e,dispatch:t})=>{t({type:_r.ResumeQueue});for(const n of e.getAllItems())t.processItem(n.id)}}function l5t(e){return async({select:t,dispatch:n})=>{t.getItem(e)&&n({type:_r.Remove,id:e})}}function u5t(e,t){return async({dispatch:n})=>{n({type:_r.OperationFinish,id:e,item:t}),n.processItem(e)}}function d5t(e){return async({dispatch:t})=>{const n=[Zz.Upload];t({type:_r.AddOperations,id:e,operations:n}),t.finishOperation(e,{})}}function p5t(e){return async({select:t,dispatch:n})=>{const o=t.getItem(e);t.getSettings().mediaUpload({filesList:[o.file],additionalData:o.additionalData,signal:o.abortController?.signal,onFileChange:([r])=>{Nr(r.url)||n.finishOperation(e,{attachment:r})},onSuccess:([r])=>{n.finishOperation(e,{attachment:r})},onError:r=>{n.cancelItem(e,r)}})}}function f5t(e){return async({select:t,dispatch:n})=>{const o=t.getBlobUrls(e);for(const r of o)tx(r);n({type:_r.RevokeBlobUrls,id:e})}}function b5t(e){return{type:_r.UpdateSettings,settings:e}}const h5t=Object.freeze(Object.defineProperty({__proto__:null,addItem:s5t,finishOperation:u5t,pauseQueue:a5t,prepareItem:d5t,processItem:i5t,removeItem:l5t,resumeQueue:c5t,revokeBlobUrls:f5t,updateSettings:b5t,uploadItem:p5t},Symbol.toStringTag,{value:"Module"})),{lock:rgn,unlock:q7}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/upload-media"),vme="core/upload-media",m5t={reducer:Ome,selectors:yme,actions:Ame},SO=x1(vme,{reducer:Ome,selectors:yme,actions:Ame});Us(SO);q7(SO).registerPrivateActions(h5t);q7(SO).registerPrivateSelectors(Gxt);function g5t(e,t,n){if(!n)return t;let o=e.get(t);return o||(o=W5({},t),o.registerStore(vme,m5t),e.set(t,o)),o}const M5t=Or(e=>({useSubRegistry:t=!0,...n})=>{const o=Fn(),[r]=x.useState(()=>new WeakMap),s=g5t(r,o,t);return s===o?a.jsx(e,{registry:o,...n}):a.jsx(KN,{value:s,children:a.jsx(e,{registry:s,...n})})},"withRegistryProvider"),z5t=M5t(e=>{const{children:t,settings:n}=e,{updateSettings:o}=q7(Oe(SO));return x.useEffect(()=>{o(n)},[n,o]),a.jsx(a.Fragment,{children:t})});function O5t(e,t,n){if(!n)return t;let o=e.get(t);return o||(o=W5({},t),o.registerStore($r,f_),e.set(t,o)),o}const y5t=Or(e=>({useSubRegistry:t=!0,...n})=>{const o=Fn(),[r]=x.useState(()=>new WeakMap),s=O5t(r,o,t);return s===o?a.jsx(e,{registry:o,...n}):a.jsx(KN,{value:s,children:a.jsx(e,{registry:s,...n})})},"withRegistryProvider"),NQ=()=>{};function xme({clientId:e=null,value:t,selection:n,onChange:o=NQ,onInput:r=NQ}){const s=Fn(),{resetBlocks:i,resetSelection:c,replaceInnerBlocks:l,setHasControlledInnerBlocks:u,__unstableMarkNextChangeAsNotPersistent:d}=s.dispatch(Q),{getBlockName:p,getBlocks:f,getSelectionStart:b,getSelectionEnd:h}=s.select(Q),g=G(S=>!e||S(Q).areInnerBlocksControlled(e),[e]),z=x.useRef({incoming:null,outgoing:[]}),A=x.useRef(!1),_=()=>{t&&(d(),e?s.batch(()=>{u(e,!0);const S=t.map(C=>jo(C));A.current&&(z.current.incoming=S),d(),l(e,S)}):(A.current&&(z.current.incoming=t),i(t)))},v=()=>{d(),e?(u(e,!1),d(),l(e,[])):i([])},M=x.useRef(r),y=x.useRef(o);x.useEffect(()=>{M.current=r,y.current=o},[r,o]),x.useEffect(()=>{z.current.outgoing.includes(t)?z.current.outgoing[z.current.outgoing.length-1]===t&&(z.current.outgoing=[]):f(e)!==t&&(z.current.outgoing=[],_(),n&&c(n.selectionStart,n.selectionEnd,n.initialPosition))},[t,e]);const k=x.useRef(!1);x.useEffect(()=>{if(!k.current){k.current=!0;return}g||(z.current.outgoing=[],_())},[g]),x.useEffect(()=>{const{getSelectedBlocksInitialCaretPosition:S,isLastBlockChangePersistent:C,__unstableIsLastBlockChangeIgnored:R,areInnerBlocksControlled:T}=s.select(Q);let E=f(e),B=C(),N=!1;A.current=!0;const j=s.subscribe(()=>{if(e!==null&&p(e)===null||!(!e||T(e)))return;const P=C(),$=f(e),F=$!==E;if(E=$,F&&(z.current.incoming||R())){z.current.incoming=null,B=P;return}(F||N&&!F&&P&&!B)&&(B=P,z.current.outgoing.push(E),(B?y.current:M.current)(E,{selection:{selectionStart:b(),selectionEnd:h(),initialPosition:S()}})),N=F},Q);return()=>{A.current=!1,j()}},[s,e]),x.useEffect(()=>()=>{v()},[])}function A5t(e={},t){switch(t.type){case"REGISTER_SHORTCUT":return{...e,[t.name]:{category:t.category,keyCombination:t.keyCombination,aliases:t.aliases,description:t.description}};case"UNREGISTER_SHORTCUT":const{[t.name]:n,...o}=e;return o}return e}function v5t({name:e,category:t,description:n,keyCombination:o,aliases:r}){return{type:"REGISTER_SHORTCUT",name:e,category:t,keyCombination:o,aliases:r,description:n}}function x5t(e){return{type:"UNREGISTER_SHORTCUT",name:e}}const w5t=Object.freeze(Object.defineProperty({__proto__:null,registerShortcut:v5t,unregisterShortcut:x5t},Symbol.toStringTag,{value:"Module"})),_5t=[],k5t={display:j1,raw:BSe,ariaLabel:y0e};function wme(e,t){return e?e.modifier?k5t[t][e.modifier](e.character):e.character:null}function R7(e,t){return e[t]?e[t].keyCombination:null}function S5t(e,t,n="display"){const o=R7(e,t);return wme(o,n)}function C5t(e,t){return e[t]?e[t].description:null}function _me(e,t){return e[t]&&e[t].aliases?e[t].aliases:_5t}const kme=It((e,t)=>[R7(e,t),..._me(e,t)].filter(Boolean),(e,t)=>[e[t]]),q5t=It((e,t)=>kme(e,t).map(n=>wme(n,"raw")),(e,t)=>[e[t]]),R5t=It((e,t)=>Object.entries(e).filter(([,n])=>n.category===t).map(([n])=>n),e=>[e]),T5t=Object.freeze(Object.defineProperty({__proto__:null,getAllShortcutKeyCombinations:kme,getAllShortcutRawKeyCombinations:q5t,getCategoryShortcuts:R5t,getShortcutAliases:_me,getShortcutDescription:C5t,getShortcutKeyCombination:R7,getShortcutRepresentation:S5t},Symbol.toStringTag,{value:"Module"})),E5t="core/keyboard-shortcuts",Pi=x1(E5t,{reducer:A5t,actions:w5t,selectors:T5t});Us(Pi);function T_(){const{getAllShortcutKeyCombinations:e}=G(Pi);function t(n,o){return e(n).some(({modifier:r,character:s})=>lc[r](o,s))}return t}const uM=new Set,BQ=e=>{for(const t of uM)t(e)},W5t=x.createContext({add:e=>{uM.size===0&&document.addEventListener("keydown",BQ),uM.add(e)},delete:e=>{uM.delete(e),uM.size===0&&document.removeEventListener("keydown",BQ)}});function p0(e,t,{isDisabled:n=!1}={}){const o=x.useContext(W5t),r=T_(),s=x.useRef();x.useEffect(()=>{s.current=t},[t]),x.useEffect(()=>{if(n)return;function i(c){r(e,c)&&s.current(c)}return o.add(i),()=>{o.delete(i)}},[e,n,o])}function Sme(){return null}function N5t(){const{registerShortcut:e}=Oe(Pi);return x.useEffect(()=>{e({name:"core/block-editor/duplicate",category:"block",description:m("Duplicate the selected block(s)."),keyCombination:{modifier:"primaryShift",character:"d"}}),e({name:"core/block-editor/remove",category:"block",description:m("Remove the selected block(s)."),keyCombination:{modifier:"shift",character:"backspace"}}),e({name:"core/block-editor/insert-before",category:"block",description:m("Insert a new block before the selected block(s)."),keyCombination:{modifier:"primaryAlt",character:"t"}}),e({name:"core/block-editor/insert-after",category:"block",description:m("Insert a new block after the selected block(s)."),keyCombination:{modifier:"primaryAlt",character:"y"}}),e({name:"core/block-editor/delete-multi-selection",category:"block",description:m("Delete selection."),keyCombination:{character:"del"},aliases:[{character:"backspace"}]}),e({name:"core/block-editor/select-all",category:"selection",description:m("Select all text when typing. Press again to select all blocks."),keyCombination:{modifier:"primary",character:"a"}}),e({name:"core/block-editor/unselect",category:"selection",description:m("Clear selection."),keyCombination:{character:"escape"}}),e({name:"core/block-editor/multi-text-selection",category:"selection",description:m("Select text across multiple blocks."),keyCombination:{modifier:"shift",character:"arrow"}}),e({name:"core/block-editor/focus-toolbar",category:"global",description:m("Navigate to the nearest toolbar."),keyCombination:{modifier:"alt",character:"F10"}}),e({name:"core/block-editor/move-up",category:"block",description:m("Move the selected block(s) up."),keyCombination:{modifier:"secondary",character:"t"}}),e({name:"core/block-editor/move-down",category:"block",description:m("Move the selected block(s) down."),keyCombination:{modifier:"secondary",character:"y"}}),e({name:"core/block-editor/collapse-list-view",category:"list-view",description:m("Collapse all other items."),keyCombination:{modifier:"alt",character:"l"}}),e({name:"core/block-editor/group",category:"block",description:m("Create a group block from the selected multiple blocks."),keyCombination:{modifier:"primary",character:"g"}})},[e]),null}Sme.Register=N5t;function B5t(e={}){return x.useMemo(()=>({mediaUpload:e.mediaUpload,mediaSideload:e.mediaSideload,maxUploadFileSize:e.maxUploadFileSize,allowedMimeTypes:e.allowedMimeTypes}),[e])}const L5t=()=>{};function P5t(e,{allowedTypes:t,additionalData:n={},filesList:o,onError:r=L5t,onFileChange:s,onSuccess:i,onBatchSuccess:c}){e.dispatch(SO).addItems({files:o,onChange:s,onSuccess:i,onBatchSuccess:c,onError:({message:l})=>r(l),additionalData:n,allowedTypes:t})}const E_=y5t(e=>{const{settings:t,registry:n,stripExperimentalSettings:o=!1}=e,r=B5t(t);let s=t;window.__experimentalMediaProcessing&&t.mediaUpload&&(s=x.useMemo(()=>({...t,mediaUpload:P5t.bind(null,n)}),[t,n]));const{__experimentalUpdateSettings:i}=ct(Oe(Q));x.useEffect(()=>{i({...s,__internalIsInitialized:!0},{stripExperimentalSettings:o,reset:!0})},[s,o,i]),xme(e);const c=a.jsxs(Spe,{passthrough:!0,children:[!s?.isPreviewMode&&a.jsx(Sme.Register,{}),a.jsx(xvt,{children:e.children})]});return window.__experimentalMediaProcessing?a.jsx(z5t,{settings:r,useSubRegistry:!1,children:c}):c}),j5t=e=>a.jsx(E_,{...e,stripExperimentalSettings:!1,children:e.children});function T7(){const{getSettings:e,hasSelectedBlock:t,hasMultiSelection:n}=G(Q),{clearSelectedBlock:o}=Oe(Q),{clearBlockSelection:r}=e();return Mn(s=>{if(!r)return;function i(c){!t()&&!n()||c.target===s&&o()}return s.addEventListener("mousedown",i),()=>{s.removeEventListener("mousedown",i)}},[t,n,o,r])}function I5t(e){const{isMultiSelecting:t,getMultiSelectedBlockClientIds:n,hasMultiSelection:o,getSelectedBlockClientId:r,getSelectedBlocksInitialCaretPosition:s,__unstableIsFullySelected:i}=e(Q);return{isMultiSelecting:t(),multiSelectedBlockClientIds:n(),hasMultiSelection:o(),selectedBlockClientId:r(),initialPosition:s(),isFullSelection:i()}}function D5t(){const{initialPosition:e,isMultiSelecting:t,multiSelectedBlockClientIds:n,hasMultiSelection:o,selectedBlockClientId:r,isFullSelection:s}=G(I5t,[]);return Mn(i=>{const{ownerDocument:c}=i,{defaultView:l}=c;if(e==null||!o||t)return;const{length:u}=n;u<2||s&&(i.contentEditable=!0,i.focus(),l.getSelection().removeAllRanges())},[o,t,n,r,e,s])}function F5t(){const e=x.useRef(),t=x.useRef(),n=x.useRef(),{hasMultiSelection:o,getSelectedBlockClientId:r,getBlockCount:s,getBlockOrder:i,getLastFocus:c,getSectionRootClientId:l,isZoomOut:u}=ct(G(Q)),{setLastFocus:d}=ct(Oe(Q)),p=x.useRef();function f(A){const _=e.current.ownerDocument===A.target.ownerDocument?e.current:e.current.ownerDocument.defaultView.frameElement;if(p.current)p.current=null;else if(o())e.current.focus();else if(r())c()?.current?c().current.focus():e.current.querySelector(`[data-block="${r()}"]`).focus();else if(u()){const v=l(),M=i(v);M.length?e.current.querySelector(`[data-block="${M[0]}"]`).focus():v?e.current.querySelector(`[data-block="${v}"]`).focus():_.focus()}else{const v=A.target.compareDocumentPosition(_)&A.target.DOCUMENT_POSITION_FOLLOWING,M=Xr.tabbable.find(e.current);M.length&&(v?M[0]:M[M.length-1]).focus()}}const b=a.jsx("div",{ref:t,tabIndex:"0",onFocus:f}),h=a.jsx("div",{ref:n,tabIndex:"0",onFocus:f}),g=Mn(A=>{function _(S){if(S.defaultPrevented||S.keyCode!==Z2)return;const C=S.shiftKey,R=C?"findPrevious":"findNext",T=Xr.tabbable[R](S.target),E=S.target.closest("[data-block]"),B=E&&T&&(fme(E,T)||LM(E,T));if(u0e(T)&&B)return;const N=C?t:n;p.current=!0,N.current.focus({preventScroll:!0})}function v(S){d({...c(),current:S.target});const{ownerDocument:C}=A;!S.relatedTarget&&C.activeElement===C.body&&s()===0&&A.focus()}function M(S){if(S.keyCode!==Z2||S.target?.getAttribute("role")==="region"||e.current===S.target)return;const R=S.shiftKey?"findPrevious":"findNext",T=Xr.tabbable[R](S.target);(T===t.current||T===n.current)&&(S.preventDefault(),T.focus({preventScroll:!0}))}const{ownerDocument:y}=A,{defaultView:k}=y;return k.addEventListener("keydown",M),A.addEventListener("keydown",_),A.addEventListener("focusout",v),()=>{k.removeEventListener("keydown",M),A.removeEventListener("keydown",_),A.removeEventListener("focusout",v)}},[]),z=xn([e,g]);return[b,z,h]}function $5t(e,t,n){const o=t===cc||t===Ps,{tagName:r}=e,s=e.getAttribute("type");return o&&!n?r==="INPUT"?!["date","datetime-local","month","number","range","time","week"].includes(s):!0:r==="INPUT"?["button","checkbox","number","color","file","image","radio","reset","submit"].includes(s):r!=="TEXTAREA"}function yq(e,t,n,o){let r=Xr.focusable.find(n);t&&r.reverse(),r=r.slice(r.indexOf(e)+1);let s;o&&(s=e.getBoundingClientRect());function i(c){if(!c.closest("[inert]")&&!(c.children.length===1&&fme(c,c.firstElementChild)&&c.firstElementChild.getAttribute("contenteditable")==="true")){if(!Xr.tabbable.isTabbableIndex(c)||c.isContentEditable&&c.contentEditable!=="true")return!1;if(o){const l=c.getBoundingClientRect();if(l.left>=s.right||l.right<=s.left)return!1}return!0}}return r.find(i)}function V5t(){const{getMultiSelectedBlocksStartClientId:e,getMultiSelectedBlocksEndClientId:t,getSettings:n,hasMultiSelection:o,__unstableIsFullySelected:r}=G(Q),{selectBlock:s}=Oe(Q);return Mn(i=>{let c;function l(){c=null}function u(p,f){const b=yq(p,f,i);return b&&PM(b)}function d(p){if(p.defaultPrevented)return;const{keyCode:f,target:b,shiftKey:h,ctrlKey:g,altKey:z,metaKey:A}=p,_=f===cc,v=f===Ps,M=f===wi,y=f===_i,k=_||M,S=M||y,C=_||v,R=S||C,T=h||g||z||A,E=C?jH:OS,{ownerDocument:B}=i,{defaultView:N}=B;if(!R)return;if(o()){if(h||!r())return;p.preventDefault(),k?s(e()):s(t(),-1);return}if(!$5t(b,f,T))return;C?c||(c=xE(N)):c=null;const j=DN(b)?!k:k,{keepCaretInsideBlock:I}=n();if(h)u(b,k)&&E(b,k)&&(i.contentEditable=!0,i.focus());else if(C&&jH(b,k)&&(!z||OS(b,j))&&!I){const P=yq(b,k,i,!0);P&&(vSe(P,z?!k:k,z?void 0:c),p.preventDefault())}else if(S&&N.getSelection().isCollapsed&&OS(b,j)&&!I){const P=yq(b,j,i);m0e(P,k),p.preventDefault()}}return i.addEventListener("mousedown",l),i.addEventListener("keydown",d),()=>{i.removeEventListener("mousedown",l),i.removeEventListener("keydown",d)}},[])}function H5t(){const{getBlockOrder:e,getSelectedBlockClientIds:t,getBlockRootClientId:n}=G(Q),{multiSelect:o,selectBlock:r}=Oe(Q),s=T_();return Mn(i=>{function c(l){if(!s("core/block-editor/select-all",l))return;const u=t();if(u.length<2&&!zSe(l.target))return;l.preventDefault();const[d]=u,p=n(d),f=e(p);if(u.length===f.length){p&&(i.ownerDocument.defaultView.getSelection().removeAllRanges(),r(p));return}o(f[0],f[f.length-1])}return i.addEventListener("keydown",c),()=>{i.removeEventListener("keydown",c)}},[])}function LQ(e,t){e.contentEditable=t,t&&e.focus()}function U5t(){const{startMultiSelect:e,stopMultiSelect:t}=Oe(Q),{isSelectionEnabled:n,hasSelectedBlock:o,isDraggingBlocks:r,isMultiSelecting:s}=G(Q);return Mn(i=>{const{ownerDocument:c}=i,{defaultView:l}=c;let u,d;function p(){t(),l.removeEventListener("mouseup",p),d=l.requestAnimationFrame(()=>{if(!o())return;LQ(i,!1);const g=l.getSelection();if(g.rangeCount){const z=g.getRangeAt(0),{commonAncestorContainer:A}=z,_=z.cloneRange();u.contains(A)&&(u.focus(),g.removeAllRanges(),g.addRange(_))}})}let f;function b({target:g}){f=g}function h({buttons:g,target:z,relatedTarget:A}){z.contains(f)&&(z.contains(A)||r()||g===1&&(s()||i!==z&&z.getAttribute("contenteditable")==="true"&&n()&&(u=z,e(),l.addEventListener("mouseup",p),LQ(i,!0))))}return i.addEventListener("mouseout",h),i.addEventListener("mousedown",b),()=>{i.removeEventListener("mouseout",h),l.removeEventListener("mouseup",p),l.cancelAnimationFrame(d)}},[e,t,n,o])}function X5t(e){const{anchorNode:t,anchorOffset:n}=e;return t.nodeType===t.TEXT_NODE||n===0?t:t.childNodes[n-1]}function G5t(e){const{focusNode:t,focusOffset:n}=e;if(t.nodeType===t.TEXT_NODE||n===t.childNodes.length)return t;if(n===0&&d0e(e)){var o;return(o=t.previousSibling)!==null&&o!==void 0?o:t.parentElement}return t.childNodes[n]}function K5t(e,t){let n=0;for(;e[n]===t[n];)n++;return n}function PQ(e,t){e.contentEditable!==String(t)&&(e.contentEditable=t)}function jQ(e){return(e.nodeType===e.ELEMENT_NODE?e:e.parentElement)?.closest("[data-wp-block-attribute-key]")}function Y5t(){const{multiSelect:e,selectBlock:t,selectionChange:n}=Oe(Q),{getBlockParents:o,getBlockSelectionStart:r,isMultiSelecting:s}=G(Q);return Mn(i=>{const{ownerDocument:c}=i,{defaultView:l}=c;function u(d){const p=l.getSelection();if(!p.rangeCount)return;const f=X5t(p),b=G5t(p);if(!i.contains(f)||!i.contains(b))return;const h=d.shiftKey&&d.type==="mouseup";if(p.isCollapsed&&!h){if(i.contentEditable==="true"&&!s()){PQ(i,!1);let M=f.nodeType===f.ELEMENT_NODE?f:f.parentElement;M=M?.closest("[contenteditable]"),M?.focus()}return}let g=PM(f),z=PM(b);if(h){const M=r(),y=PM(d.target),k=y!==z;(g===z&&p.isCollapsed||!z||k)&&(z=y),g!==M&&(g=M)}if(g===void 0&&z===void 0){PQ(i,!1);return}if(g===z)s()?e(g,g):t(g);else{const M=[...o(g),g],y=[...o(z),z],k=K5t(M,y);if(M[k]!==g||y[k]!==z){e(M[k],y[k]);return}const S=jQ(f),C=jQ(b);if(S&&C){var _,v;const R=p.getRangeAt(0),T=eo({element:S,range:R,__unstableIsEditableTree:!0}),E=eo({element:C,range:R,__unstableIsEditableTree:!0}),B=(_=T.start)!==null&&_!==void 0?_:T.end,N=(v=E.start)!==null&&v!==void 0?v:E.end;n({start:{clientId:g,attributeKey:S.dataset.wpBlockAttributeKey,offset:B},end:{clientId:z,attributeKey:C.dataset.wpBlockAttributeKey,offset:N}})}else e(g,z)}}return c.addEventListener("selectionchange",u),l.addEventListener("mouseup",u),()=>{c.removeEventListener("selectionchange",u),l.removeEventListener("mouseup",u)}},[e,t,n,o])}function Z5t(){const{selectBlock:e}=Oe(Q),{isSelectionEnabled:t,getBlockSelectionStart:n,hasMultiSelection:o}=G(Q);return Mn(r=>{function s(i){if(!t()||i.button!==0)return;const c=n(),l=PM(i.target);i.shiftKey?c!==l&&(r.contentEditable=!0,r.focus()):o()&&e(l)}return r.addEventListener("mousedown",s),()=>{r.removeEventListener("mousedown",s)}},[e,t,n,o])}function Q5t(){const{__unstableIsFullySelected:e,getSelectedBlockClientIds:t,getSelectedBlockClientId:n,__unstableIsSelectionMergeable:o,hasMultiSelection:r,getBlockName:s,canInsertBlockType:i,getBlockRootClientId:c,getSelectionStart:l,getSelectionEnd:u,getBlockAttributes:d}=G(Q),{replaceBlocks:p,__unstableSplitSelection:f,removeBlocks:b,__unstableDeleteSelection:h,__unstableExpandSelection:g,__unstableMarkAutomaticChange:z}=Oe(Q);return Mn(A=>{function _(y){A.contentEditable==="true"&&y.preventDefault()}function v(y){if(!y.defaultPrevented){if(!r()){if(y.keyCode===Gr){if(y.shiftKey||e())return;const k=n(),S=s(k),C=l(),R=u();if(C.attributeKey===R.attributeKey){const T=d(k)[C.attributeKey],E=Ei("from").filter(({type:N})=>N==="enter"),B=xc(E,N=>N.regExp.test(T));if(B){p(k,B.transform({content:T})),z();return}}if(!Et(S,"splitting",!1)&&!y.__deprecatedOnSplit)return;i(S,c(k))&&(f(),y.preventDefault())}return}y.keyCode===Gr?(A.contentEditable=!1,y.preventDefault(),e()?p(t(),Ee(Mr())):f()):y.keyCode===Mc||y.keyCode===zl?(A.contentEditable=!1,y.preventDefault(),e()?b(t()):o()?h(y.keyCode===zl):g()):y.key.length===1&&!(y.metaKey||y.ctrlKey)&&(A.contentEditable=!1,o()?h(y.keyCode===zl):(y.preventDefault(),A.ownerDocument.defaultView.getSelection().removeAllRanges()))}}function M(y){r()&&(A.contentEditable=!1,o()?h():(y.preventDefault(),A.ownerDocument.defaultView.getSelection().removeAllRanges()))}return A.addEventListener("beforeinput",_),A.addEventListener("keydown",v),A.addEventListener("compositionstart",M),()=>{A.removeEventListener("beforeinput",_),A.removeEventListener("keydown",v),A.removeEventListener("compositionstart",M)}},[])}function E7(){const{getBlockName:e}=G(Q),{getBlockType:t}=G(kt),{createSuccessNotice:n}=Oe(mt);return x.useCallback((o,r)=>{let s="";if(o==="copyStyles")s=m("Styles copied to clipboard.");else if(r.length===1){const i=r[0],c=t(e(i))?.title;o==="copy"?s=xe(m('Copied "%s" to clipboard.'),c):s=xe(m('Moved "%s" to clipboard.'),c)}else o==="copy"?s=xe(Dn("Copied %d block to clipboard.","Copied %d blocks to clipboard.",r.length),r.length):s=xe(Dn("Moved %d block to clipboard.","Moved %d blocks to clipboard.",r.length),r.length);n(s,{type:"snackbar"})},[n,e,t])}function J5t(e){const t="<!--StartFragment-->",n=e.indexOf(t);if(n>-1)e=e.substring(n+t.length);else return e;const r=e.indexOf("<!--EndFragment-->");return r>-1&&(e=e.substring(0,r)),e}function ewt(e){const t="<meta charset='utf-8'>";return e.startsWith(t)?e.slice(t.length):e}function W7({clipboardData:e}){let t="",n="";try{t=e.getData("text/plain"),n=e.getData("text/html")}catch{return}n=J5t(n),n=ewt(n);const o=T4(e);return o.length&&!twt(o,n)?{files:o}:{html:n,plainText:t,files:[]}}function twt(e,t){if(t&&e?.length===1&&e[0].type.indexOf("image/")===0){const n=/<\s*img\b/gi;if(t.match(n)?.length!==1)return!0;const o=/<\s*img\b[^>]*\bsrc="file:\/\//i;if(t.match(o))return!0}return!1}const Cme=Symbol("requiresWrapperOnCopy");function qme(e,t,n){let o=t;const[r]=t;if(r&&n.select(kt).getBlockType(r.name)[Cme]){const{getBlockRootClientId:c,getBlockName:l,getBlockAttributes:u}=n.select(Q),d=c(r.clientId),p=l(d);p&&(o=Ee(p,u(d),o))}const s=Ks(o);e.clipboardData.setData("text/plain",owt(s)),e.clipboardData.setData("text/html",s)}function nwt(e,t){const{plainText:n,html:o,files:r}=W7(e);let s=[];if(r.length){const i=Ei("from");s=r.reduce((c,l)=>{const u=xc(i,d=>d.type==="files"&&d.isMatch([l]));return u&&c.push(u.transform([l])),c},[]).flat()}else s=Xh({HTML:o,plainText:n,mode:"BLOCKS",canUserUseUnfilteredHTML:t});return s}function owt(e){return e=e.replace(/<br>/g,` `),v1(e).trim().replace(/\n\n+/g,` -`)}function swt(){const e=Fn(),{getBlocksByClientId:t,getSelectedBlockClientIds:n,hasMultiSelection:o,getSettings:r,getBlockName:s,__unstableIsFullySelected:i,__unstableIsSelectionCollapsed:c,__unstableIsSelectionMergeable:l,__unstableGetSelectedBlocksWithPartialSelection:u,canInsertBlockType:d,getBlockRootClientId:p}=G(Q),{flashBlock:f,removeBlocks:b,replaceBlocks:h,__unstableDeleteSelection:g,__unstableExpandSelection:z,__unstableSplitSelection:A}=Oe(Q),_=W7();return Mn(v=>{function M(y){if(y.defaultPrevented)return;const k=n();if(k.length===0)return;if(!o()){const{target:E}=y,{ownerDocument:B}=E;if(y.type==="copy"||y.type==="cut"?MSe(B):zSe(B)&&!B.activeElement.isContentEditable)return}const{activeElement:S}=y.target.ownerDocument;if(!v.contains(S))return;const C=l(),R=c()||i(),T=!R&&!C;if(y.type==="copy"||y.type==="cut")if(y.preventDefault(),k.length===1&&f(k[0]),T)z();else{_(y.type,k);let E;if(R)E=t(k);else{const[B,N]=u(),j=t(k.slice(1,k.length-1));E=[B,...j,N]}qme(y,E,e)}if(y.type==="cut")R&&!T?b(k):(y.target.ownerDocument.activeElement.contentEditable=!1,g());else if(y.type==="paste"){const{__experimentalCanUserUseUnfilteredHTML:E}=r();if(y.clipboardData.getData("rich-text")==="true")return;const{plainText:N,html:j,files:I}=N7(y),P=i();let $=[];if(I.length){const V=Ei("from");$=I.reduce((ee,te)=>{const J=xc(V,ue=>ue.type==="files"&&ue.isMatch([te]));return J&&ee.push(J.transform([te])),ee},[]).flat()}else $=Xh({HTML:j,plainText:N,mode:P?"BLOCKS":"AUTO",canUserUseUnfilteredHTML:E});if(typeof $=="string")return;if(P){h(k,$,$.length-1,-1),y.preventDefault();return}if(!o()&&!Et(s(k[0]),"splitting",!1)&&!y.__deprecatedOnSplit)return;const[F]=k,X=p(F),Z=[];for(const V of $)if(d(V.name,X))Z.push(V);else{const ee=s(X),te=V.name!==ee?Kr(V,ee):[V];if(!te)return;for(const J of te)for(const ue of J.innerBlocks)Z.push(ue)}A(Z),y.preventDefault()}}return v.ownerDocument.addEventListener("copy",M),v.ownerDocument.addEventListener("cut",M),v.ownerDocument.addEventListener("paste",M),()=>{v.ownerDocument.removeEventListener("copy",M),v.ownerDocument.removeEventListener("cut",M),v.ownerDocument.removeEventListener("paste",M)}},[])}function Rme(){const[e,t,n]=$5t(),o=G(r=>r(Q).hasMultiSelection(),[]);return[e,xn([t,swt(),J5t(),X5t(),Z5t(),Q5t(),F5t(),U5t(),H5t(),Mn(r=>(r.tabIndex=0,r.dataset.hasMultiSelection=o,o?(r.setAttribute("aria-label",m("Multiple selected blocks")),()=>{delete r.dataset.hasMultiSelection,r.removeAttribute("aria-label")}):()=>{delete r.dataset.hasMultiSelection}),[o])]),n]}function iwt({children:e,...t},n){const[o,r,s]=Rme();return a.jsxs(a.Fragment,{children:[o,a.jsx("div",{...t,ref:xn([r,n]),className:oe(t.className,"block-editor-writing-flow"),children:e}),s]})}const awt=x.forwardRef(iwt);let nv=null;function cwt(){return nv||(nv=Array.from(document.styleSheets).reduce((e,t)=>{try{t.cssRules}catch{return e}const{ownerNode:n,cssRules:o}=t;if(n===null||!o||n.id.startsWith("wp-")||!n.id)return e;function r(s){return Array.from(s).find(({selectorText:i,conditionText:c,cssRules:l})=>c?r(l):i&&(i.includes(".editor-styles-wrapper")||i.includes(".wp-block")))}if(r(o)){const s=n.tagName==="STYLE";if(s){const i=n.id.replace("-inline-css","-css"),c=document.getElementById(i);c&&e.push(c.cloneNode(!0))}if(e.push(n.cloneNode(!0)),!s){const i=n.id.replace("-css","-inline-css"),c=document.getElementById(i);c&&e.push(c.cloneNode(!0))}}return e},[]),nv)}function IQ({frameSize:e,containerWidth:t,maxContainerWidth:n,scaleContainerWidth:o}){return(Math.min(t,n)-e*2)/o}function lwt(e,t){const{scaleValue:n,scrollHeight:o}=e,{frameSize:r,scaleValue:s}=t;return o*(s/n)+r*2}function uwt(e,t){const{containerHeight:n,frameSize:o,scaleValue:r,scrollTop:s}=e,{containerHeight:i,frameSize:c,scaleValue:l,scrollHeight:u}=t;let d=s;d=(d+n/2-o)/r-n/2,d=(d+i/2)*l+c-i/2,d=s<=o?0:d;const p=u-i;return Math.round(Math.min(Math.max(0,d),Math.max(0,p)))}function dwt(e,t){const{scaleValue:n,frameSize:o,scrollTop:r}=e,{scaleValue:s,frameSize:i,scrollTop:c}=t;return[{translate:"0 0",scale:n,paddingTop:`${o/n}px`,paddingBottom:`${o/n}px`},{translate:`0 ${r-c}px`,scale:s,paddingTop:`${i/s}px`,paddingBottom:`${i/s}px`}]}function pwt({frameSize:e,iframeDocument:t,maxContainerWidth:n=750,scale:o}){const[r,{height:s}]=js(),[i,{width:c,height:l}]=js(),u=x.useRef(0),d=o!==1,p=$1(),f=o==="auto-scaled",b=x.useRef(!1),h=x.useRef(null);x.useEffect(()=>{d||(u.current=c)},[c,d]);const g=Math.max(u.current,c),z=f?IQ({frameSize:e,containerWidth:c,maxContainerWidth:n,scaleContainerWidth:g}):o,A=x.useRef({scaleValue:z,frameSize:e,containerHeight:0,scrollTop:0,scrollHeight:0}),_=x.useRef({scaleValue:z,frameSize:e,containerHeight:0,scrollTop:0,scrollHeight:0}),v=x.useCallback(()=>{const{scrollTop:k}=A.current,{scrollTop:S}=_.current;return t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scroll-top",`${k}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scroll-top-next",`${S}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-overflow-behavior",A.current.scrollHeight===A.current.containerHeight?"auto":"scroll"),t.documentElement.classList.add("zoom-out-animation"),t.documentElement.animate(dwt(A.current,_.current),{easing:"cubic-bezier(0.46, 0.03, 0.52, 0.96)",duration:400})},[t]),M=x.useCallback(()=>{b.current=!1,h.current=null,t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scale",_.current.scaleValue),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-frame-size",`${_.current.frameSize}px`),t.documentElement.classList.remove("zoom-out-animation"),t.documentElement.scrollTop=_.current.scrollTop,t.documentElement.style.removeProperty("--wp-block-editor-iframe-zoom-out-scroll-top"),t.documentElement.style.removeProperty("--wp-block-editor-iframe-zoom-out-scroll-top-next"),t.documentElement.style.removeProperty("--wp-block-editor-iframe-zoom-out-overflow-behavior"),A.current=_.current},[t]),y=x.useRef(!1);return x.useEffect(()=>{const k=t&&y.current!==d;if(y.current=d,!!k&&(b.current=!0,!!d))return t.documentElement.classList.add("is-zoomed-out"),()=>{t.documentElement.classList.remove("is-zoomed-out")}},[t,d]),x.useEffect(()=>{if(t&&(f&&A.current.scaleValue!==1&&(A.current.scaleValue=IQ({frameSize:A.current.frameSize,containerWidth:c,maxContainerWidth:n,scaleContainerWidth:c})),z<1&&(b.current||(t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scale",z),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-frame-size",`${e}px`)),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-content-height",`${s}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-inner-height",`${l}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-container-width",`${c}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scale-container-width",`${g}px`)),b.current))if(b.current=!1,h.current){h.current.reverse();const k=A.current,S=_.current;A.current=S,_.current=k}else A.current.scrollTop=t.documentElement.scrollTop,A.current.scrollHeight=t.documentElement.scrollHeight,A.current.containerHeight=l,_.current={scaleValue:z,frameSize:e,containerHeight:t.documentElement.clientHeight},_.current.scrollHeight=lwt(A.current,_.current),_.current.scrollTop=uwt(A.current,_.current),h.current=v(),p?M():h.current.onfinish=M},[v,M,p,f,z,e,t,s,c,l,n,g]),{isZoomedOut:d,scaleContainerWidth:g,contentResizeListener:r,containerResizeListener:i}}function Tme(e,t,n){const o={};for(const i in e)o[i]=e[i];if(e instanceof n.contentDocument.defaultView.MouseEvent){const i=n.getBoundingClientRect();o.clientX+=i.left,o.clientY+=i.top}const r=new t(e.type,o);o.defaultPrevented&&r.preventDefault(),!n.dispatchEvent(r)&&e.preventDefault()}function fwt(e){return Mn(()=>{const{defaultView:t}=e;if(!t)return;const{frameElement:n}=t,o=e.documentElement,r=["dragover","mousemove"],s={};for(const i of r)s[i]=c=>{const u=Object.getPrototypeOf(c).constructor.name,d=window[u];Tme(c,d,n)},o.addEventListener(i,s[i]);return()=>{for(const i of r)o.removeEventListener(i,s[i])}})}function bwt({contentRef:e,children:t,tabIndex:n=0,scale:o=1,frameSize:r=0,readonly:s,forwardedRef:i,title:c=m("Editor canvas"),...l}){const{resolvedAssets:u,isPreviewMode:d}=G($=>{const{getSettings:F}=$(Q),X=F();return{resolvedAssets:X.__unstableResolvedAssets,isPreviewMode:X.isPreviewMode}},[]),{styles:p="",scripts:f=""}=u,[b,h]=x.useState(),[g,z]=x.useState([]),A=E7(),[_,v,M]=Rme(),y=Mn($=>{$._load=()=>{h($.contentDocument)};let F;function X(V){V.preventDefault()}function Z(){const{contentDocument:V,ownerDocument:ee}=$,{documentElement:te}=V;F=V,te.classList.add("block-editor-iframe__html"),A(te),z(Array.from(ee.body.classList).filter(J=>J.startsWith("admin-color-")||J.startsWith("post-type-")||J==="wp-embed-responsive")),V.dir=ee.dir;for(const J of cwt())V.getElementById(J.id)||(V.head.appendChild(J.cloneNode(!0)),d||console.warn(`${J.id} was added to the iframe incorrectly. Please use block.json or enqueue_block_assets to add styles to the iframe.`,J));F.addEventListener("dragover",X,!1),F.addEventListener("drop",X,!1),F.addEventListener("click",J=>{if(J.target.tagName==="A"){J.preventDefault();const ue=J.target.getAttribute("href");ue?.startsWith("#")&&(F.defaultView.location.hash=ue.slice(1))}})}return $.addEventListener("load",Z),()=>{delete $._load,$.removeEventListener("load",Z),F?.removeEventListener("dragover",X),F?.removeEventListener("drop",X)}},[]),{contentResizeListener:k,containerResizeListener:S,isZoomedOut:C,scaleContainerWidth:R}=pwt({scale:o,frameSize:parseInt(r),iframeDocument:b}),T=UN({isDisabled:!s}),E=xn([fwt(b),e,A,v,T]),B=`<!doctype html> +`)}function rwt(){const e=Fn(),{getBlocksByClientId:t,getSelectedBlockClientIds:n,hasMultiSelection:o,getSettings:r,getBlockName:s,__unstableIsFullySelected:i,__unstableIsSelectionCollapsed:c,__unstableIsSelectionMergeable:l,__unstableGetSelectedBlocksWithPartialSelection:u,canInsertBlockType:d,getBlockRootClientId:p}=G(Q),{flashBlock:f,removeBlocks:b,replaceBlocks:h,__unstableDeleteSelection:g,__unstableExpandSelection:z,__unstableSplitSelection:A}=Oe(Q),_=E7();return Mn(v=>{function M(y){if(y.defaultPrevented)return;const k=n();if(k.length===0)return;if(!o()){const{target:E}=y,{ownerDocument:B}=E;if(y.type==="copy"||y.type==="cut"?gSe(B):MSe(B)&&!B.activeElement.isContentEditable)return}const{activeElement:S}=y.target.ownerDocument;if(!v.contains(S))return;const C=l(),R=c()||i(),T=!R&&!C;if(y.type==="copy"||y.type==="cut")if(y.preventDefault(),k.length===1&&f(k[0]),T)z();else{_(y.type,k);let E;if(R)E=t(k);else{const[B,N]=u(),j=t(k.slice(1,k.length-1));E=[B,...j,N]}qme(y,E,e)}if(y.type==="cut")R&&!T?b(k):(y.target.ownerDocument.activeElement.contentEditable=!1,g());else if(y.type==="paste"){const{__experimentalCanUserUseUnfilteredHTML:E}=r();if(y.clipboardData.getData("rich-text")==="true")return;const{plainText:N,html:j,files:I}=W7(y),P=i();let $=[];if(I.length){const V=Ei("from");$=I.reduce((ee,te)=>{const J=xc(V,ue=>ue.type==="files"&&ue.isMatch([te]));return J&&ee.push(J.transform([te])),ee},[]).flat()}else $=Xh({HTML:j,plainText:N,mode:P?"BLOCKS":"AUTO",canUserUseUnfilteredHTML:E});if(typeof $=="string")return;if(P){h(k,$,$.length-1,-1),y.preventDefault();return}if(!o()&&!Et(s(k[0]),"splitting",!1)&&!y.__deprecatedOnSplit)return;const[F]=k,X=p(F),Z=[];for(const V of $)if(d(V.name,X))Z.push(V);else{const ee=s(X),te=V.name!==ee?Kr(V,ee):[V];if(!te)return;for(const J of te)for(const ue of J.innerBlocks)Z.push(ue)}A(Z),y.preventDefault()}}return v.ownerDocument.addEventListener("copy",M),v.ownerDocument.addEventListener("cut",M),v.ownerDocument.addEventListener("paste",M),()=>{v.ownerDocument.removeEventListener("copy",M),v.ownerDocument.removeEventListener("cut",M),v.ownerDocument.removeEventListener("paste",M)}},[])}function Rme(){const[e,t,n]=F5t(),o=G(r=>r(Q).hasMultiSelection(),[]);return[e,xn([t,rwt(),Q5t(),U5t(),Y5t(),Z5t(),D5t(),H5t(),V5t(),Mn(r=>(r.tabIndex=0,r.dataset.hasMultiSelection=o,o?(r.setAttribute("aria-label",m("Multiple selected blocks")),()=>{delete r.dataset.hasMultiSelection,r.removeAttribute("aria-label")}):()=>{delete r.dataset.hasMultiSelection}),[o])]),n]}function swt({children:e,...t},n){const[o,r,s]=Rme();return a.jsxs(a.Fragment,{children:[o,a.jsx("div",{...t,ref:xn([r,n]),className:oe(t.className,"block-editor-writing-flow"),children:e}),s]})}const iwt=x.forwardRef(swt);let tv=null;function awt(){return tv||(tv=Array.from(document.styleSheets).reduce((e,t)=>{try{t.cssRules}catch{return e}const{ownerNode:n,cssRules:o}=t;if(n===null||!o||n.id.startsWith("wp-")||!n.id)return e;function r(s){return Array.from(s).find(({selectorText:i,conditionText:c,cssRules:l})=>c?r(l):i&&(i.includes(".editor-styles-wrapper")||i.includes(".wp-block")))}if(r(o)){const s=n.tagName==="STYLE";if(s){const i=n.id.replace("-inline-css","-css"),c=document.getElementById(i);c&&e.push(c.cloneNode(!0))}if(e.push(n.cloneNode(!0)),!s){const i=n.id.replace("-css","-inline-css"),c=document.getElementById(i);c&&e.push(c.cloneNode(!0))}}return e},[]),tv)}function IQ({frameSize:e,containerWidth:t,maxContainerWidth:n,scaleContainerWidth:o}){return(Math.min(t,n)-e*2)/o}function cwt(e,t){const{scaleValue:n,scrollHeight:o}=e,{frameSize:r,scaleValue:s}=t;return o*(s/n)+r*2}function lwt(e,t){const{containerHeight:n,frameSize:o,scaleValue:r,scrollTop:s}=e,{containerHeight:i,frameSize:c,scaleValue:l,scrollHeight:u}=t;let d=s;d=(d+n/2-o)/r-n/2,d=(d+i/2)*l+c-i/2,d=s<=o?0:d;const p=u-i;return Math.round(Math.min(Math.max(0,d),Math.max(0,p)))}function uwt(e,t){const{scaleValue:n,frameSize:o,scrollTop:r}=e,{scaleValue:s,frameSize:i,scrollTop:c}=t;return[{translate:"0 0",scale:n,paddingTop:`${o/n}px`,paddingBottom:`${o/n}px`},{translate:`0 ${r-c}px`,scale:s,paddingTop:`${i/s}px`,paddingBottom:`${i/s}px`}]}function dwt({frameSize:e,iframeDocument:t,maxContainerWidth:n=750,scale:o}){const[r,{height:s}]=js(),[i,{width:c,height:l}]=js(),u=x.useRef(0),d=o!==1,p=$1(),f=o==="auto-scaled",b=x.useRef(!1),h=x.useRef(null);x.useEffect(()=>{d||(u.current=c)},[c,d]);const g=Math.max(u.current,c),z=f?IQ({frameSize:e,containerWidth:c,maxContainerWidth:n,scaleContainerWidth:g}):o,A=x.useRef({scaleValue:z,frameSize:e,containerHeight:0,scrollTop:0,scrollHeight:0}),_=x.useRef({scaleValue:z,frameSize:e,containerHeight:0,scrollTop:0,scrollHeight:0}),v=x.useCallback(()=>{const{scrollTop:k}=A.current,{scrollTop:S}=_.current;return t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scroll-top",`${k}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scroll-top-next",`${S}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-overflow-behavior",A.current.scrollHeight===A.current.containerHeight?"auto":"scroll"),t.documentElement.classList.add("zoom-out-animation"),t.documentElement.animate(uwt(A.current,_.current),{easing:"cubic-bezier(0.46, 0.03, 0.52, 0.96)",duration:400})},[t]),M=x.useCallback(()=>{b.current=!1,h.current=null,t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scale",_.current.scaleValue),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-frame-size",`${_.current.frameSize}px`),t.documentElement.classList.remove("zoom-out-animation"),t.documentElement.scrollTop=_.current.scrollTop,t.documentElement.style.removeProperty("--wp-block-editor-iframe-zoom-out-scroll-top"),t.documentElement.style.removeProperty("--wp-block-editor-iframe-zoom-out-scroll-top-next"),t.documentElement.style.removeProperty("--wp-block-editor-iframe-zoom-out-overflow-behavior"),A.current=_.current},[t]),y=x.useRef(!1);return x.useEffect(()=>{const k=t&&y.current!==d;if(y.current=d,!!k&&(b.current=!0,!!d))return t.documentElement.classList.add("is-zoomed-out"),()=>{t.documentElement.classList.remove("is-zoomed-out")}},[t,d]),x.useEffect(()=>{if(t&&(f&&A.current.scaleValue!==1&&(A.current.scaleValue=IQ({frameSize:A.current.frameSize,containerWidth:c,maxContainerWidth:n,scaleContainerWidth:c})),z<1&&(b.current||(t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scale",z),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-frame-size",`${e}px`)),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-content-height",`${s}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-inner-height",`${l}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-container-width",`${c}px`),t.documentElement.style.setProperty("--wp-block-editor-iframe-zoom-out-scale-container-width",`${g}px`)),b.current))if(b.current=!1,h.current){h.current.reverse();const k=A.current,S=_.current;A.current=S,_.current=k}else A.current.scrollTop=t.documentElement.scrollTop,A.current.scrollHeight=t.documentElement.scrollHeight,A.current.containerHeight=l,_.current={scaleValue:z,frameSize:e,containerHeight:t.documentElement.clientHeight},_.current.scrollHeight=cwt(A.current,_.current),_.current.scrollTop=lwt(A.current,_.current),h.current=v(),p?M():h.current.onfinish=M},[v,M,p,f,z,e,t,s,c,l,n,g]),{isZoomedOut:d,scaleContainerWidth:g,contentResizeListener:r,containerResizeListener:i}}function Tme(e,t,n){const o={};for(const i in e)o[i]=e[i];if(e instanceof n.contentDocument.defaultView.MouseEvent){const i=n.getBoundingClientRect();o.clientX+=i.left,o.clientY+=i.top}const r=new t(e.type,o);o.defaultPrevented&&r.preventDefault(),!n.dispatchEvent(r)&&e.preventDefault()}function pwt(e){return Mn(()=>{const{defaultView:t}=e;if(!t)return;const{frameElement:n}=t,o=e.documentElement,r=["dragover","mousemove"],s={};for(const i of r)s[i]=c=>{const u=Object.getPrototypeOf(c).constructor.name,d=window[u];Tme(c,d,n)},o.addEventListener(i,s[i]);return()=>{for(const i of r)o.removeEventListener(i,s[i])}})}function fwt({contentRef:e,children:t,tabIndex:n=0,scale:o=1,frameSize:r=0,readonly:s,forwardedRef:i,title:c=m("Editor canvas"),...l}){const{resolvedAssets:u,isPreviewMode:d}=G($=>{const{getSettings:F}=$(Q),X=F();return{resolvedAssets:X.__unstableResolvedAssets,isPreviewMode:X.isPreviewMode}},[]),{styles:p="",scripts:f=""}=u,[b,h]=x.useState(),[g,z]=x.useState([]),A=T7(),[_,v,M]=Rme(),y=Mn($=>{$._load=()=>{h($.contentDocument)};let F;function X(V){V.preventDefault()}function Z(){const{contentDocument:V,ownerDocument:ee}=$,{documentElement:te}=V;F=V,te.classList.add("block-editor-iframe__html"),A(te),z(Array.from(ee.body.classList).filter(J=>J.startsWith("admin-color-")||J.startsWith("post-type-")||J==="wp-embed-responsive")),V.dir=ee.dir;for(const J of awt())V.getElementById(J.id)||(V.head.appendChild(J.cloneNode(!0)),d||console.warn(`${J.id} was added to the iframe incorrectly. Please use block.json or enqueue_block_assets to add styles to the iframe.`,J));F.addEventListener("dragover",X,!1),F.addEventListener("drop",X,!1),F.addEventListener("click",J=>{if(J.target.tagName==="A"){J.preventDefault();const ue=J.target.getAttribute("href");ue?.startsWith("#")&&(F.defaultView.location.hash=ue.slice(1))}})}return $.addEventListener("load",Z),()=>{delete $._load,$.removeEventListener("load",Z),F?.removeEventListener("dragover",X),F?.removeEventListener("drop",X)}},[]),{contentResizeListener:k,containerResizeListener:S,isZoomedOut:C,scaleContainerWidth:R}=dwt({scale:o,frameSize:parseInt(r),iframeDocument:b}),T=HN({isDisabled:!s}),E=xn([pwt(b),e,A,v,T]),B=`<!doctype html> <html> <head> <meta charset="utf-8"> @@ -526,13 +526,13 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen <body> <script>document.currentScript.parentElement.remove()<\/script> </body> -</html>`,[N,j]=x.useMemo(()=>{const $=URL.createObjectURL(new window.Blob([B],{type:"text/html"}));return[$,()=>URL.revokeObjectURL($)]},[B]);x.useEffect(()=>j,[j]);const I=n>=0&&!d,P=a.jsxs(a.Fragment,{children:[I&&_,a.jsx("iframe",{...l,style:{...l.style,height:l.style?.height,border:0},ref:xn([i,y]),tabIndex:n,src:N,title:c,onKeyDown:$=>{if(l.onKeyDown&&l.onKeyDown($),$.currentTarget.ownerDocument!==$.target.ownerDocument){const{stopPropagation:F}=$.nativeEvent;$.nativeEvent.stopPropagation=()=>{},$.stopPropagation(),$.nativeEvent.stopPropagation=F,Tme($,window.KeyboardEvent,$.currentTarget)}},children:b&&hs.createPortal(a.jsxs("body",{ref:E,className:oe("block-editor-iframe__body","editor-styles-wrapper",...g),children:[k,a.jsx(Jf,{document:b,children:t})]}),b.documentElement)}),I&&M]});return a.jsxs("div",{className:"block-editor-iframe__container",children:[S,a.jsx("div",{className:oe("block-editor-iframe__scale-container",C&&"is-zoomed-out"),style:{"--wp-block-editor-iframe-zoom-out-scale-container-width":C&&`${R}px`},children:P})]})}function hwt(e,t){return G(o=>o(Q).getSettings().__internalIsInitialized,[])?a.jsx(bwt,{...e,forwardedRef:t}):null}const Eme=x.forwardRef(hwt),Vx={attribute:/\[\s*(?:(?<namespace>\*|[-\w\P{ASCII}]*)\|)?(?<name>[-\w\P{ASCII}]+)\s*(?:(?<operator>\W?=)\s*(?<value>.+?)\s*(\s(?<caseSensitive>[iIsS]))?\s*)?\]/gu,id:/#(?<name>[-\w\P{ASCII}]+)/gu,class:/\.(?<name>[-\w\P{ASCII}]+)/gu,comma:/\s*,\s*/g,combinator:/\s*[\s>+~]\s*/g,"pseudo-element":/::(?<name>[-\w\P{ASCII}]+)(?:\((?<argument>¶*)\))?/gu,"pseudo-class":/:(?<name>[-\w\P{ASCII}]+)(?:\((?<argument>¶*)\))?/gu,universal:/(?:(?<namespace>\*|[-\w\P{ASCII}]*)\|)?\*/gu,type:/(?:(?<namespace>\*|[-\w\P{ASCII}]*)\|)?(?<name>[-\w\P{ASCII}]+)/gu},mwt=new Set(["combinator","comma"]),gwt=e=>{switch(e){case"pseudo-element":case"pseudo-class":return new RegExp(Vx[e].source.replace("(?<argument>¶*)","(?<argument>.*)"),"gu");default:return Vx[e]}};function Mwt(e,t){let n=0,o="";for(;t<e.length;t++){const r=e[t];switch(r){case"(":++n;break;case")":--n;break}if(o+=r,n===0)return o}return o}function zwt(e,t=Vx){if(!e)return[];const n=[e];for(const[r,s]of Object.entries(t))for(let i=0;i<n.length;i++){const c=n[i];if(typeof c!="string")continue;s.lastIndex=0;const l=s.exec(c);if(!l)continue;const u=l.index-1,d=[],p=l[0],f=c.slice(0,u+1);f&&d.push(f),d.push({...l.groups,type:r,content:p});const b=c.slice(u+p.length+1);b&&d.push(b),n.splice(i,1,...d)}let o=0;for(const r of n)switch(typeof r){case"string":throw new Error(`Unexpected sequence ${r} found at index ${o}`);case"object":o+=r.content.length,r.pos=[o-r.content.length,o],mwt.has(r.type)&&(r.content=r.content.trim()||" ");break}return n}const Owt=/(['"])([^\\\n]+?)\1/g,ywt=/\\./g;function DQ(e,t=Vx){if(e=e.trim(),e==="")return[];const n=[];e=e.replace(ywt,(s,i)=>(n.push({value:s,offset:i}),"".repeat(s.length))),e=e.replace(Owt,(s,i,c,l)=>(n.push({value:s,offset:l}),`${i}${"".repeat(c.length)}${i}`));{let s=0,i;for(;(i=e.indexOf("(",s))>-1;){const c=Mwt(e,i);n.push({value:c,offset:i}),e=`${e.substring(0,i)}(${"¶".repeat(c.length-2)})${e.substring(i+c.length)}`,s=i+c.length}}const o=zwt(e,t),r=new Set;for(const s of n.reverse())for(const i of o){const{offset:c,value:l}=s;if(!(i.pos[0]<=c&&c+l.length<=i.pos[1]))continue;const{content:u}=i,d=c-i.pos[0];i.content=u.slice(0,d)+l+u.slice(d+l.length),i.content!==u&&r.add(i)}for(const s of r){const i=gwt(s.type);if(!i)throw new Error(`Unknown token type: ${s.type}`);i.lastIndex=0;const c=i.exec(s.content);if(!c)throw new Error(`Unable to parse content for ${s.type}: ${s.content}`);Object.assign(s,c.groups)}return o}function*M4(e,t){switch(e.type){case"list":for(let n of e.list)yield*M4(n,e);break;case"complex":yield*M4(e.left,e),yield*M4(e.right,e);break;case"compound":yield*e.list.map(n=>[n,e]);break;default:yield[e,t]}}function Awt(e){let t;return Array.isArray(e)?t=e:t=[...M4(e)].map(([n])=>n),t.map(n=>n.content).join("")}var ov={exports:{}},FQ;function vwt(){if(FQ)return ov.exports;FQ=1;var e=String,t=function(){return{isColorSupported:!1,reset:e,bold:e,dim:e,italic:e,underline:e,inverse:e,hidden:e,strikethrough:e,black:e,red:e,green:e,yellow:e,blue:e,magenta:e,cyan:e,white:e,gray:e,bgBlack:e,bgRed:e,bgGreen:e,bgYellow:e,bgBlue:e,bgMagenta:e,bgCyan:e,bgWhite:e,blackBright:e,redBright:e,greenBright:e,yellowBright:e,blueBright:e,magentaBright:e,cyanBright:e,whiteBright:e,bgBlackBright:e,bgRedBright:e,bgGreenBright:e,bgYellowBright:e,bgBlueBright:e,bgMagentaBright:e,bgCyanBright:e,bgWhiteBright:e}};return ov.exports=t(),ov.exports.createColors=t,ov.exports}const xwt={},wwt=Object.freeze(Object.defineProperty({__proto__:null,default:xwt},Symbol.toStringTag,{value:"Module"})),_h=y5(wwt);var vq,$Q;function B7(){if($Q)return vq;$Q=1;let e=vwt(),t=_h;class n extends Error{constructor(r,s,i,c,l,u){super(r),this.name="CssSyntaxError",this.reason=r,l&&(this.file=l),c&&(this.source=c),u&&(this.plugin=u),typeof s<"u"&&typeof i<"u"&&(typeof s=="number"?(this.line=s,this.column=i):(this.line=s.line,this.column=s.column,this.endLine=i.line,this.endColumn=i.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,n)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(r){if(!this.source)return"";let s=this.source;r==null&&(r=e.isColorSupported);let i=b=>b,c=b=>b,l=b=>b;if(r){let{bold:b,gray:h,red:g}=e.createColors(!0);c=z=>b(g(z)),i=z=>h(z),t&&(l=z=>t(z))}let u=s.split(/\r?\n/),d=Math.max(this.line-3,0),p=Math.min(this.line+2,u.length),f=String(p).length;return u.slice(d,p).map((b,h)=>{let g=d+1+h,z=" "+(" "+g).slice(-f)+" | ";if(g===this.line){if(b.length>160){let _=20,v=Math.max(0,this.column-_),M=Math.max(this.column+_,this.endColumn+_),y=b.slice(v,M),k=i(z.replace(/\d/g," "))+b.slice(0,Math.min(this.column-1,_-1)).replace(/[^\t]/g," ");return c(">")+i(z)+l(y)+` +</html>`,[N,j]=x.useMemo(()=>{const $=URL.createObjectURL(new window.Blob([B],{type:"text/html"}));return[$,()=>URL.revokeObjectURL($)]},[B]);x.useEffect(()=>j,[j]);const I=n>=0&&!d,P=a.jsxs(a.Fragment,{children:[I&&_,a.jsx("iframe",{...l,style:{...l.style,height:l.style?.height,border:0},ref:xn([i,y]),tabIndex:n,src:N,title:c,onKeyDown:$=>{if(l.onKeyDown&&l.onKeyDown($),$.currentTarget.ownerDocument!==$.target.ownerDocument){const{stopPropagation:F}=$.nativeEvent;$.nativeEvent.stopPropagation=()=>{},$.stopPropagation(),$.nativeEvent.stopPropagation=F,Tme($,window.KeyboardEvent,$.currentTarget)}},children:b&&hs.createPortal(a.jsxs("body",{ref:E,className:oe("block-editor-iframe__body","editor-styles-wrapper",...g),children:[k,a.jsx(Jf,{document:b,children:t})]}),b.documentElement)}),I&&M]});return a.jsxs("div",{className:"block-editor-iframe__container",children:[S,a.jsx("div",{className:oe("block-editor-iframe__scale-container",C&&"is-zoomed-out"),style:{"--wp-block-editor-iframe-zoom-out-scale-container-width":C&&`${R}px`},children:P})]})}function bwt(e,t){return G(o=>o(Q).getSettings().__internalIsInitialized,[])?a.jsx(fwt,{...e,forwardedRef:t}):null}const Eme=x.forwardRef(bwt),$x={attribute:/\[\s*(?:(?<namespace>\*|[-\w\P{ASCII}]*)\|)?(?<name>[-\w\P{ASCII}]+)\s*(?:(?<operator>\W?=)\s*(?<value>.+?)\s*(\s(?<caseSensitive>[iIsS]))?\s*)?\]/gu,id:/#(?<name>[-\w\P{ASCII}]+)/gu,class:/\.(?<name>[-\w\P{ASCII}]+)/gu,comma:/\s*,\s*/g,combinator:/\s*[\s>+~]\s*/g,"pseudo-element":/::(?<name>[-\w\P{ASCII}]+)(?:\((?<argument>¶*)\))?/gu,"pseudo-class":/:(?<name>[-\w\P{ASCII}]+)(?:\((?<argument>¶*)\))?/gu,universal:/(?:(?<namespace>\*|[-\w\P{ASCII}]*)\|)?\*/gu,type:/(?:(?<namespace>\*|[-\w\P{ASCII}]*)\|)?(?<name>[-\w\P{ASCII}]+)/gu},hwt=new Set(["combinator","comma"]),mwt=e=>{switch(e){case"pseudo-element":case"pseudo-class":return new RegExp($x[e].source.replace("(?<argument>¶*)","(?<argument>.*)"),"gu");default:return $x[e]}};function gwt(e,t){let n=0,o="";for(;t<e.length;t++){const r=e[t];switch(r){case"(":++n;break;case")":--n;break}if(o+=r,n===0)return o}return o}function Mwt(e,t=$x){if(!e)return[];const n=[e];for(const[r,s]of Object.entries(t))for(let i=0;i<n.length;i++){const c=n[i];if(typeof c!="string")continue;s.lastIndex=0;const l=s.exec(c);if(!l)continue;const u=l.index-1,d=[],p=l[0],f=c.slice(0,u+1);f&&d.push(f),d.push({...l.groups,type:r,content:p});const b=c.slice(u+p.length+1);b&&d.push(b),n.splice(i,1,...d)}let o=0;for(const r of n)switch(typeof r){case"string":throw new Error(`Unexpected sequence ${r} found at index ${o}`);case"object":o+=r.content.length,r.pos=[o-r.content.length,o],hwt.has(r.type)&&(r.content=r.content.trim()||" ");break}return n}const zwt=/(['"])([^\\\n]+?)\1/g,Owt=/\\./g;function DQ(e,t=$x){if(e=e.trim(),e==="")return[];const n=[];e=e.replace(Owt,(s,i)=>(n.push({value:s,offset:i}),"".repeat(s.length))),e=e.replace(zwt,(s,i,c,l)=>(n.push({value:s,offset:l}),`${i}${"".repeat(c.length)}${i}`));{let s=0,i;for(;(i=e.indexOf("(",s))>-1;){const c=gwt(e,i);n.push({value:c,offset:i}),e=`${e.substring(0,i)}(${"¶".repeat(c.length-2)})${e.substring(i+c.length)}`,s=i+c.length}}const o=Mwt(e,t),r=new Set;for(const s of n.reverse())for(const i of o){const{offset:c,value:l}=s;if(!(i.pos[0]<=c&&c+l.length<=i.pos[1]))continue;const{content:u}=i,d=c-i.pos[0];i.content=u.slice(0,d)+l+u.slice(d+l.length),i.content!==u&&r.add(i)}for(const s of r){const i=mwt(s.type);if(!i)throw new Error(`Unknown token type: ${s.type}`);i.lastIndex=0;const c=i.exec(s.content);if(!c)throw new Error(`Unable to parse content for ${s.type}: ${s.content}`);Object.assign(s,c.groups)}return o}function*g4(e,t){switch(e.type){case"list":for(let n of e.list)yield*g4(n,e);break;case"complex":yield*g4(e.left,e),yield*g4(e.right,e);break;case"compound":yield*e.list.map(n=>[n,e]);break;default:yield[e,t]}}function ywt(e){let t;return Array.isArray(e)?t=e:t=[...g4(e)].map(([n])=>n),t.map(n=>n.content).join("")}var nv={exports:{}},FQ;function Awt(){if(FQ)return nv.exports;FQ=1;var e=String,t=function(){return{isColorSupported:!1,reset:e,bold:e,dim:e,italic:e,underline:e,inverse:e,hidden:e,strikethrough:e,black:e,red:e,green:e,yellow:e,blue:e,magenta:e,cyan:e,white:e,gray:e,bgBlack:e,bgRed:e,bgGreen:e,bgYellow:e,bgBlue:e,bgMagenta:e,bgCyan:e,bgWhite:e,blackBright:e,redBright:e,greenBright:e,yellowBright:e,blueBright:e,magentaBright:e,cyanBright:e,whiteBright:e,bgBlackBright:e,bgRedBright:e,bgGreenBright:e,bgYellowBright:e,bgBlueBright:e,bgMagentaBright:e,bgCyanBright:e,bgWhiteBright:e}};return nv.exports=t(),nv.exports.createColors=t,nv.exports}const vwt={},xwt=Object.freeze(Object.defineProperty({__proto__:null,default:vwt},Symbol.toStringTag,{value:"Module"})),_h=O5(xwt);var Aq,$Q;function N7(){if($Q)return Aq;$Q=1;let e=Awt(),t=_h;class n extends Error{constructor(r,s,i,c,l,u){super(r),this.name="CssSyntaxError",this.reason=r,l&&(this.file=l),c&&(this.source=c),u&&(this.plugin=u),typeof s<"u"&&typeof i<"u"&&(typeof s=="number"?(this.line=s,this.column=i):(this.line=s.line,this.column=s.column,this.endLine=i.line,this.endColumn=i.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,n)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(r){if(!this.source)return"";let s=this.source;r==null&&(r=e.isColorSupported);let i=b=>b,c=b=>b,l=b=>b;if(r){let{bold:b,gray:h,red:g}=e.createColors(!0);c=z=>b(g(z)),i=z=>h(z),t&&(l=z=>t(z))}let u=s.split(/\r?\n/),d=Math.max(this.line-3,0),p=Math.min(this.line+2,u.length),f=String(p).length;return u.slice(d,p).map((b,h)=>{let g=d+1+h,z=" "+(" "+g).slice(-f)+" | ";if(g===this.line){if(b.length>160){let _=20,v=Math.max(0,this.column-_),M=Math.max(this.column+_,this.endColumn+_),y=b.slice(v,M),k=i(z.replace(/\d/g," "))+b.slice(0,Math.min(this.column-1,_-1)).replace(/[^\t]/g," ");return c(">")+i(z)+l(y)+` `+k+c("^")}let A=i(z.replace(/\d/g," "))+b.slice(0,this.column-1).replace(/[^\t]/g," ");return c(">")+i(z)+l(b)+` `+A+c("^")}return" "+i(z)+l(b)}).join(` `)}toString(){let r=this.showSourceCode();return r&&(r=` `+r+` -`),this.name+": "+this.message+r}}return vq=n,n.default=n,vq}var xq,VQ;function Wme(){if(VQ)return xq;VQ=1;const e={after:` +`),this.name+": "+this.message+r}}return Aq=n,n.default=n,Aq}var vq,VQ;function Wme(){if(VQ)return vq;VQ=1;const e={after:` `,beforeClose:` `,beforeComment:` `,beforeDecl:` @@ -543,21 +543,21 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen `)&&(i=i.replace(/[^\n]+$/,"")),!1}),typeof i>"u"?i=this.raw(s,null,"beforeDecl"):i&&(i=i.replace(/\S/g,"")),i}rawBeforeDecl(r,s){let i;return r.walkDecls(c=>{if(typeof c.raws.before<"u")return i=c.raws.before,i.includes(` `)&&(i=i.replace(/[^\n]+$/,"")),!1}),typeof i>"u"?i=this.raw(s,null,"beforeRule"):i&&(i=i.replace(/\S/g,"")),i}rawBeforeOpen(r){let s;return r.walk(i=>{if(i.type!=="decl"&&(s=i.raws.between,typeof s<"u"))return!1}),s}rawBeforeRule(r){let s;return r.walk(i=>{if(i.nodes&&(i.parent!==r||r.first!==i)&&typeof i.raws.before<"u")return s=i.raws.before,s.includes(` `)&&(s=s.replace(/[^\n]+$/,"")),!1}),s&&(s=s.replace(/\S/g,"")),s}rawColon(r){let s;return r.walkDecls(i=>{if(typeof i.raws.between<"u")return s=i.raws.between.replace(/[^\s:]/g,""),!1}),s}rawEmptyBody(r){let s;return r.walk(i=>{if(i.nodes&&i.nodes.length===0&&(s=i.raws.after,typeof s<"u"))return!1}),s}rawIndent(r){if(r.raws.indent)return r.raws.indent;let s;return r.walk(i=>{let c=i.parent;if(c&&c!==r&&c.parent&&c.parent===r&&typeof i.raws.before<"u"){let l=i.raws.before.split(` -`);return s=l[l.length-1],s=s.replace(/\S/g,""),!1}}),s}rawSemicolon(r){let s;return r.walk(i=>{if(i.nodes&&i.nodes.length&&i.last.type==="decl"&&(s=i.raws.semicolon,typeof s<"u"))return!1}),s}rawValue(r,s){let i=r[s],c=r.raws[s];return c&&c.value===i?c.raw:i}root(r){this.body(r),r.raws.after&&this.builder(r.raws.after)}rule(r){this.block(r,this.rawValue(r,"selector")),r.raws.ownSemicolon&&this.builder(r.raws.ownSemicolon,r,"end")}stringify(r,s){if(!this[r.type])throw new Error("Unknown AST node type "+r.type+". Maybe you need to change PostCSS stringifier.");this[r.type](r,s)}}return xq=n,n.default=n,xq}var wq,HQ;function L7(){if(HQ)return wq;HQ=1;let e=Wme();function t(n,o){new e(o).stringify(n)}return wq=t,t.default=t,wq}var rv={},UQ;function P7(){return UQ||(UQ=1,rv.isClean=Symbol("isClean"),rv.my=Symbol("my")),rv}var _q,XQ;function j7(){if(XQ)return _q;XQ=1;let e=B7(),t=Wme(),n=L7(),{isClean:o,my:r}=P7();function s(l,u){let d=new l.constructor;for(let p in l){if(!Object.prototype.hasOwnProperty.call(l,p)||p==="proxyCache")continue;let f=l[p],b=typeof f;p==="parent"&&b==="object"?u&&(d[p]=u):p==="source"?d[p]=f:Array.isArray(f)?d[p]=f.map(h=>s(h,d)):(b==="object"&&f!==null&&(f=s(f)),d[p]=f)}return d}function i(l,u){if(u&&typeof u.offset<"u")return u.offset;let d=1,p=1,f=0;for(let b=0;b<l.length;b++){if(p===u.line&&d===u.column){f=b;break}l[b]===` +`);return s=l[l.length-1],s=s.replace(/\S/g,""),!1}}),s}rawSemicolon(r){let s;return r.walk(i=>{if(i.nodes&&i.nodes.length&&i.last.type==="decl"&&(s=i.raws.semicolon,typeof s<"u"))return!1}),s}rawValue(r,s){let i=r[s],c=r.raws[s];return c&&c.value===i?c.raw:i}root(r){this.body(r),r.raws.after&&this.builder(r.raws.after)}rule(r){this.block(r,this.rawValue(r,"selector")),r.raws.ownSemicolon&&this.builder(r.raws.ownSemicolon,r,"end")}stringify(r,s){if(!this[r.type])throw new Error("Unknown AST node type "+r.type+". Maybe you need to change PostCSS stringifier.");this[r.type](r,s)}}return vq=n,n.default=n,vq}var xq,HQ;function B7(){if(HQ)return xq;HQ=1;let e=Wme();function t(n,o){new e(o).stringify(n)}return xq=t,t.default=t,xq}var ov={},UQ;function L7(){return UQ||(UQ=1,ov.isClean=Symbol("isClean"),ov.my=Symbol("my")),ov}var wq,XQ;function P7(){if(XQ)return wq;XQ=1;let e=N7(),t=Wme(),n=B7(),{isClean:o,my:r}=L7();function s(l,u){let d=new l.constructor;for(let p in l){if(!Object.prototype.hasOwnProperty.call(l,p)||p==="proxyCache")continue;let f=l[p],b=typeof f;p==="parent"&&b==="object"?u&&(d[p]=u):p==="source"?d[p]=f:Array.isArray(f)?d[p]=f.map(h=>s(h,d)):(b==="object"&&f!==null&&(f=s(f)),d[p]=f)}return d}function i(l,u){if(u&&typeof u.offset<"u")return u.offset;let d=1,p=1,f=0;for(let b=0;b<l.length;b++){if(p===u.line&&d===u.column){f=b;break}l[b]===` `?(d=1,p+=1):d+=1}return f}class c{constructor(u={}){this.raws={},this[o]=!1,this[r]=!0;for(let d in u)if(d==="nodes"){this.nodes=[];for(let p of u[d])typeof p.clone=="function"?this.append(p.clone()):this.append(p)}else this[d]=u[d]}addToError(u){if(u.postcssNode=this,u.stack&&this.source&&/\n\s{4}at /.test(u.stack)){let d=this.source;u.stack=u.stack.replace(/\n\s{4}at /,`$&${d.input.from}:${d.start.line}:${d.start.column}$&`)}return u}after(u){return this.parent.insertAfter(this,u),this}assign(u={}){for(let d in u)this[d]=u[d];return this}before(u){return this.parent.insertBefore(this,u),this}cleanRaws(u){delete this.raws.before,delete this.raws.after,u||delete this.raws.between}clone(u={}){let d=s(this);for(let p in u)d[p]=u[p];return d}cloneAfter(u={}){let d=this.clone(u);return this.parent.insertAfter(this,d),d}cloneBefore(u={}){let d=this.clone(u);return this.parent.insertBefore(this,d),d}error(u,d={}){if(this.source){let{end:p,start:f}=this.rangeBy(d);return this.source.input.error(u,{column:f.column,line:f.line},{column:p.column,line:p.line},d)}return new e(u)}getProxyProcessor(){return{get(u,d){return d==="proxyOf"?u:d==="root"?()=>u.root().toProxy():u[d]},set(u,d,p){return u[d]===p||(u[d]=p,(d==="prop"||d==="value"||d==="name"||d==="params"||d==="important"||d==="text")&&u.markDirty()),!0}}}markClean(){this[o]=!0}markDirty(){if(this[o]){this[o]=!1;let u=this;for(;u=u.parent;)u[o]=!1}}next(){if(!this.parent)return;let u=this.parent.index(this);return this.parent.nodes[u+1]}positionBy(u){let d=this.source.start;if(u.index)d=this.positionInside(u.index);else if(u.word){let f=this.source.input.css.slice(i(this.source.input.css,this.source.start),i(this.source.input.css,this.source.end)).indexOf(u.word);f!==-1&&(d=this.positionInside(f))}return d}positionInside(u){let d=this.source.start.column,p=this.source.start.line,f=i(this.source.input.css,this.source.start),b=f+u;for(let h=f;h<b;h++)this.source.input.css[h]===` -`?(d=1,p+=1):d+=1;return{column:d,line:p}}prev(){if(!this.parent)return;let u=this.parent.index(this);return this.parent.nodes[u-1]}rangeBy(u){let d={column:this.source.start.column,line:this.source.start.line},p=this.source.end?{column:this.source.end.column+1,line:this.source.end.line}:{column:d.column+1,line:d.line};if(u.word){let b=this.source.input.css.slice(i(this.source.input.css,this.source.start),i(this.source.input.css,this.source.end)).indexOf(u.word);b!==-1&&(d=this.positionInside(b),p=this.positionInside(b+u.word.length))}else u.start?d={column:u.start.column,line:u.start.line}:u.index&&(d=this.positionInside(u.index)),u.end?p={column:u.end.column,line:u.end.line}:typeof u.endIndex=="number"?p=this.positionInside(u.endIndex):u.index&&(p=this.positionInside(u.index+1));return(p.line<d.line||p.line===d.line&&p.column<=d.column)&&(p={column:d.column+1,line:d.line}),{end:p,start:d}}raw(u,d){return new t().raw(this,u,d)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...u){if(this.parent){let d=this,p=!1;for(let f of u)f===this?p=!0:p?(this.parent.insertAfter(d,f),d=f):this.parent.insertBefore(d,f);p||this.remove()}return this}root(){let u=this;for(;u.parent&&u.parent.type!=="document";)u=u.parent;return u}toJSON(u,d){let p={},f=d==null;d=d||new Map;let b=0;for(let h in this){if(!Object.prototype.hasOwnProperty.call(this,h)||h==="parent"||h==="proxyCache")continue;let g=this[h];if(Array.isArray(g))p[h]=g.map(z=>typeof z=="object"&&z.toJSON?z.toJSON(null,d):z);else if(typeof g=="object"&&g.toJSON)p[h]=g.toJSON(null,d);else if(h==="source"){let z=d.get(g.input);z==null&&(z=b,d.set(g.input,b),b++),p[h]={end:g.end,inputId:z,start:g.start}}else p[h]=g}return f&&(p.inputs=[...d.keys()].map(h=>h.toJSON())),p}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(u=n){u.stringify&&(u=u.stringify);let d="";return u(this,p=>{d+=p}),d}warn(u,d,p){let f={node:this};for(let b in p)f[b]=p[b];return u.warn(d,f)}get proxyOf(){return this}}return _q=c,c.default=c,_q}var kq,GQ;function Nme(){if(GQ)return kq;GQ=1;let e=j7();class t extends e{constructor(o){super(o),this.type="comment"}}return kq=t,t.default=t,kq}var Sq,KQ;function Bme(){if(KQ)return Sq;KQ=1;let e=j7();class t extends e{constructor(o){o&&typeof o.value<"u"&&typeof o.value!="string"&&(o={...o,value:String(o.value)}),super(o),this.type="decl"}get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}}return Sq=t,t.default=t,Sq}var Cq,YQ;function Am(){if(YQ)return Cq;YQ=1;let e=Nme(),t=Bme(),n=j7(),{isClean:o,my:r}=P7(),s,i,c,l;function u(f){return f.map(b=>(b.nodes&&(b.nodes=u(b.nodes)),delete b.source,b))}function d(f){if(f[o]=!1,f.proxyOf.nodes)for(let b of f.proxyOf.nodes)d(b)}class p extends n{append(...b){for(let h of b){let g=this.normalize(h,this.last);for(let z of g)this.proxyOf.nodes.push(z)}return this.markDirty(),this}cleanRaws(b){if(super.cleanRaws(b),this.nodes)for(let h of this.nodes)h.cleanRaws(b)}each(b){if(!this.proxyOf.nodes)return;let h=this.getIterator(),g,z;for(;this.indexes[h]<this.proxyOf.nodes.length&&(g=this.indexes[h],z=b(this.proxyOf.nodes[g],g),z!==!1);)this.indexes[h]+=1;return delete this.indexes[h],z}every(b){return this.nodes.every(b)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let b=this.lastEach;return this.indexes[b]=0,b}getProxyProcessor(){return{get(b,h){return h==="proxyOf"?b:b[h]?h==="each"||typeof h=="string"&&h.startsWith("walk")?(...g)=>b[h](...g.map(z=>typeof z=="function"?(A,_)=>z(A.toProxy(),_):z)):h==="every"||h==="some"?g=>b[h]((z,...A)=>g(z.toProxy(),...A)):h==="root"?()=>b.root().toProxy():h==="nodes"?b.nodes.map(g=>g.toProxy()):h==="first"||h==="last"?b[h].toProxy():b[h]:b[h]},set(b,h,g){return b[h]===g||(b[h]=g,(h==="name"||h==="params"||h==="selector")&&b.markDirty()),!0}}}index(b){return typeof b=="number"?b:(b.proxyOf&&(b=b.proxyOf),this.proxyOf.nodes.indexOf(b))}insertAfter(b,h){let g=this.index(b),z=this.normalize(h,this.proxyOf.nodes[g]).reverse();g=this.index(b);for(let _ of z)this.proxyOf.nodes.splice(g+1,0,_);let A;for(let _ in this.indexes)A=this.indexes[_],g<A&&(this.indexes[_]=A+z.length);return this.markDirty(),this}insertBefore(b,h){let g=this.index(b),z=g===0?"prepend":!1,A=this.normalize(h,this.proxyOf.nodes[g],z).reverse();g=this.index(b);for(let v of A)this.proxyOf.nodes.splice(g,0,v);let _;for(let v in this.indexes)_=this.indexes[v],g<=_&&(this.indexes[v]=_+A.length);return this.markDirty(),this}normalize(b,h){if(typeof b=="string")b=u(i(b).nodes);else if(typeof b>"u")b=[];else if(Array.isArray(b)){b=b.slice(0);for(let z of b)z.parent&&z.parent.removeChild(z,"ignore")}else if(b.type==="root"&&this.type!=="document"){b=b.nodes.slice(0);for(let z of b)z.parent&&z.parent.removeChild(z,"ignore")}else if(b.type)b=[b];else if(b.prop){if(typeof b.value>"u")throw new Error("Value field is missed in node creation");typeof b.value!="string"&&(b.value=String(b.value)),b=[new t(b)]}else if(b.selector||b.selectors)b=[new l(b)];else if(b.name)b=[new s(b)];else if(b.text)b=[new e(b)];else throw new Error("Unknown node type in node creation");return b.map(z=>(z[r]||p.rebuild(z),z=z.proxyOf,z.parent&&z.parent.removeChild(z),z[o]&&d(z),z.raws||(z.raws={}),typeof z.raws.before>"u"&&h&&typeof h.raws.before<"u"&&(z.raws.before=h.raws.before.replace(/\S/g,"")),z.parent=this.proxyOf,z))}prepend(...b){b=b.reverse();for(let h of b){let g=this.normalize(h,this.first,"prepend").reverse();for(let z of g)this.proxyOf.nodes.unshift(z);for(let z in this.indexes)this.indexes[z]=this.indexes[z]+g.length}return this.markDirty(),this}push(b){return b.parent=this,this.proxyOf.nodes.push(b),this}removeAll(){for(let b of this.proxyOf.nodes)b.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(b){b=this.index(b),this.proxyOf.nodes[b].parent=void 0,this.proxyOf.nodes.splice(b,1);let h;for(let g in this.indexes)h=this.indexes[g],h>=b&&(this.indexes[g]=h-1);return this.markDirty(),this}replaceValues(b,h,g){return g||(g=h,h={}),this.walkDecls(z=>{h.props&&!h.props.includes(z.prop)||h.fast&&!z.value.includes(h.fast)||(z.value=z.value.replace(b,g))}),this.markDirty(),this}some(b){return this.nodes.some(b)}walk(b){return this.each((h,g)=>{let z;try{z=b(h,g)}catch(A){throw h.addToError(A)}return z!==!1&&h.walk&&(z=h.walk(b)),z})}walkAtRules(b,h){return h?b instanceof RegExp?this.walk((g,z)=>{if(g.type==="atrule"&&b.test(g.name))return h(g,z)}):this.walk((g,z)=>{if(g.type==="atrule"&&g.name===b)return h(g,z)}):(h=b,this.walk((g,z)=>{if(g.type==="atrule")return h(g,z)}))}walkComments(b){return this.walk((h,g)=>{if(h.type==="comment")return b(h,g)})}walkDecls(b,h){return h?b instanceof RegExp?this.walk((g,z)=>{if(g.type==="decl"&&b.test(g.prop))return h(g,z)}):this.walk((g,z)=>{if(g.type==="decl"&&g.prop===b)return h(g,z)}):(h=b,this.walk((g,z)=>{if(g.type==="decl")return h(g,z)}))}walkRules(b,h){return h?b instanceof RegExp?this.walk((g,z)=>{if(g.type==="rule"&&b.test(g.selector))return h(g,z)}):this.walk((g,z)=>{if(g.type==="rule"&&g.selector===b)return h(g,z)}):(h=b,this.walk((g,z)=>{if(g.type==="rule")return h(g,z)}))}get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}return p.registerParse=f=>{i=f},p.registerRule=f=>{l=f},p.registerAtRule=f=>{s=f},p.registerRoot=f=>{c=f},Cq=p,p.default=p,p.rebuild=f=>{f.type==="atrule"?Object.setPrototypeOf(f,s.prototype):f.type==="rule"?Object.setPrototypeOf(f,l.prototype):f.type==="decl"?Object.setPrototypeOf(f,t.prototype):f.type==="comment"?Object.setPrototypeOf(f,e.prototype):f.type==="root"&&Object.setPrototypeOf(f,c.prototype),f[r]=!0,f.nodes&&f.nodes.forEach(b=>{p.rebuild(b)})},Cq}var qq,ZQ;function Lme(){if(ZQ)return qq;ZQ=1;let e=Am(),t,n;class o extends e{constructor(s){super({type:"document",...s}),this.nodes||(this.nodes=[])}toResult(s={}){return new t(new n,this,s).stringify()}}return o.registerLazyResult=r=>{t=r},o.registerProcessor=r=>{n=r},qq=o,o.default=o,qq}var Rq,QQ;function I7(){if(QQ)return Rq;QQ=1;function e(r){if(typeof r!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(r))}function t(r,s){for(var i="",c=0,l=-1,u=0,d,p=0;p<=r.length;++p){if(p<r.length)d=r.charCodeAt(p);else{if(d===47)break;d=47}if(d===47){if(!(l===p-1||u===1))if(l!==p-1&&u===2){if(i.length<2||c!==2||i.charCodeAt(i.length-1)!==46||i.charCodeAt(i.length-2)!==46){if(i.length>2){var f=i.lastIndexOf("/");if(f!==i.length-1){f===-1?(i="",c=0):(i=i.slice(0,f),c=i.length-1-i.lastIndexOf("/")),l=p,u=0;continue}}else if(i.length===2||i.length===1){i="",c=0,l=p,u=0;continue}}s&&(i.length>0?i+="/..":i="..",c=2)}else i.length>0?i+="/"+r.slice(l+1,p):i=r.slice(l+1,p),c=p-l-1;l=p,u=0}else d===46&&u!==-1?++u:u=-1}return i}function n(r,s){var i=s.dir||s.root,c=s.base||(s.name||"")+(s.ext||"");return i?i===s.root?i+c:i+r+c:c}var o={resolve:function(){for(var s="",i=!1,c,l=arguments.length-1;l>=-1&&!i;l--){var u;l>=0?u=arguments[l]:(c===void 0&&(c=Oi.cwd()),u=c),e(u),u.length!==0&&(s=u+"/"+s,i=u.charCodeAt(0)===47)}return s=t(s,!i),i?s.length>0?"/"+s:"/":s.length>0?s:"."},normalize:function(s){if(e(s),s.length===0)return".";var i=s.charCodeAt(0)===47,c=s.charCodeAt(s.length-1)===47;return s=t(s,!i),s.length===0&&!i&&(s="."),s.length>0&&c&&(s+="/"),i?"/"+s:s},isAbsolute:function(s){return e(s),s.length>0&&s.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var s,i=0;i<arguments.length;++i){var c=arguments[i];e(c),c.length>0&&(s===void 0?s=c:s+="/"+c)}return s===void 0?".":o.normalize(s)},relative:function(s,i){if(e(s),e(i),s===i||(s=o.resolve(s),i=o.resolve(i),s===i))return"";for(var c=1;c<s.length&&s.charCodeAt(c)===47;++c);for(var l=s.length,u=l-c,d=1;d<i.length&&i.charCodeAt(d)===47;++d);for(var p=i.length,f=p-d,b=u<f?u:f,h=-1,g=0;g<=b;++g){if(g===b){if(f>b){if(i.charCodeAt(d+g)===47)return i.slice(d+g+1);if(g===0)return i.slice(d+g)}else u>b&&(s.charCodeAt(c+g)===47?h=g:g===0&&(h=0));break}var z=s.charCodeAt(c+g),A=i.charCodeAt(d+g);if(z!==A)break;z===47&&(h=g)}var _="";for(g=c+h+1;g<=l;++g)(g===l||s.charCodeAt(g)===47)&&(_.length===0?_+="..":_+="/..");return _.length>0?_+i.slice(d+h):(d+=h,i.charCodeAt(d)===47&&++d,i.slice(d))},_makeLong:function(s){return s},dirname:function(s){if(e(s),s.length===0)return".";for(var i=s.charCodeAt(0),c=i===47,l=-1,u=!0,d=s.length-1;d>=1;--d)if(i=s.charCodeAt(d),i===47){if(!u){l=d;break}}else u=!1;return l===-1?c?"/":".":c&&l===1?"//":s.slice(0,l)},basename:function(s,i){if(i!==void 0&&typeof i!="string")throw new TypeError('"ext" argument must be a string');e(s);var c=0,l=-1,u=!0,d;if(i!==void 0&&i.length>0&&i.length<=s.length){if(i.length===s.length&&i===s)return"";var p=i.length-1,f=-1;for(d=s.length-1;d>=0;--d){var b=s.charCodeAt(d);if(b===47){if(!u){c=d+1;break}}else f===-1&&(u=!1,f=d+1),p>=0&&(b===i.charCodeAt(p)?--p===-1&&(l=d):(p=-1,l=f))}return c===l?l=f:l===-1&&(l=s.length),s.slice(c,l)}else{for(d=s.length-1;d>=0;--d)if(s.charCodeAt(d)===47){if(!u){c=d+1;break}}else l===-1&&(u=!1,l=d+1);return l===-1?"":s.slice(c,l)}},extname:function(s){e(s);for(var i=-1,c=0,l=-1,u=!0,d=0,p=s.length-1;p>=0;--p){var f=s.charCodeAt(p);if(f===47){if(!u){c=p+1;break}continue}l===-1&&(u=!1,l=p+1),f===46?i===-1?i=p:d!==1&&(d=1):i!==-1&&(d=-1)}return i===-1||l===-1||d===0||d===1&&i===l-1&&i===c+1?"":s.slice(i,l)},format:function(s){if(s===null||typeof s!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof s);return n("/",s)},parse:function(s){e(s);var i={root:"",dir:"",base:"",ext:"",name:""};if(s.length===0)return i;var c=s.charCodeAt(0),l=c===47,u;l?(i.root="/",u=1):u=0;for(var d=-1,p=0,f=-1,b=!0,h=s.length-1,g=0;h>=u;--h){if(c=s.charCodeAt(h),c===47){if(!b){p=h+1;break}continue}f===-1&&(b=!1,f=h+1),c===46?d===-1?d=h:g!==1&&(g=1):d!==-1&&(g=-1)}return d===-1||f===-1||g===0||g===1&&d===f-1&&d===p+1?f!==-1&&(p===0&&l?i.base=i.name=s.slice(1,f):i.base=i.name=s.slice(p,f)):(p===0&&l?(i.name=s.slice(1,d),i.base=s.slice(1,f)):(i.name=s.slice(p,d),i.base=s.slice(p,f)),i.ext=s.slice(d,f)),p>0?i.dir=s.slice(0,p-1):l&&(i.dir="/"),i},sep:"/",delimiter:":",win32:null,posix:null};return o.posix=o,Rq=o,Rq}var dM={exports:{}};/*! https://mths.be/punycode v1.4.1 by @mathias */var _wt=dM.exports,JQ;function kwt(){return JQ||(JQ=1,function(e,t){(function(n){var o=t&&!t.nodeType&&t,r=e&&!e.nodeType&&e,s=typeof p1=="object"&&p1;(s.global===s||s.window===s||s.self===s)&&(n=s);var i,c=2147483647,l=36,u=1,d=26,p=38,f=700,b=72,h=128,g="-",z=/^xn--/,A=/[^\x20-\x7E]/,_=/[\x2E\u3002\uFF0E\uFF61]/g,v={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},M=l-u,y=Math.floor,k=String.fromCharCode,S;function C(Z){throw new RangeError(v[Z])}function R(Z,V){for(var ee=Z.length,te=[];ee--;)te[ee]=V(Z[ee]);return te}function T(Z,V){var ee=Z.split("@"),te="";ee.length>1&&(te=ee[0]+"@",Z=ee[1]),Z=Z.replace(_,".");var J=Z.split("."),ue=R(J,V).join(".");return te+ue}function E(Z){for(var V=[],ee=0,te=Z.length,J,ue;ee<te;)J=Z.charCodeAt(ee++),J>=55296&&J<=56319&&ee<te?(ue=Z.charCodeAt(ee++),(ue&64512)==56320?V.push(((J&1023)<<10)+(ue&1023)+65536):(V.push(J),ee--)):V.push(J);return V}function B(Z){return R(Z,function(V){var ee="";return V>65535&&(V-=65536,ee+=k(V>>>10&1023|55296),V=56320|V&1023),ee+=k(V),ee}).join("")}function N(Z){return Z-48<10?Z-22:Z-65<26?Z-65:Z-97<26?Z-97:l}function j(Z,V){return Z+22+75*(Z<26)-((V!=0)<<5)}function I(Z,V,ee){var te=0;for(Z=ee?y(Z/f):Z>>1,Z+=y(Z/V);Z>M*d>>1;te+=l)Z=y(Z/M);return y(te+(M+1)*Z/(Z+p))}function P(Z){var V=[],ee=Z.length,te,J=0,ue=h,ce=b,me,de,Ae,ye,Ne,je,ie,we,re;for(me=Z.lastIndexOf(g),me<0&&(me=0),de=0;de<me;++de)Z.charCodeAt(de)>=128&&C("not-basic"),V.push(Z.charCodeAt(de));for(Ae=me>0?me+1:0;Ae<ee;){for(ye=J,Ne=1,je=l;Ae>=ee&&C("invalid-input"),ie=N(Z.charCodeAt(Ae++)),(ie>=l||ie>y((c-J)/Ne))&&C("overflow"),J+=ie*Ne,we=je<=ce?u:je>=ce+d?d:je-ce,!(ie<we);je+=l)re=l-we,Ne>y(c/re)&&C("overflow"),Ne*=re;te=V.length+1,ce=I(J-ye,te,ye==0),y(J/te)>c-ue&&C("overflow"),ue+=y(J/te),J%=te,V.splice(J++,0,ue)}return B(V)}function $(Z){var V,ee,te,J,ue,ce,me,de,Ae,ye,Ne,je=[],ie,we,re,pe;for(Z=E(Z),ie=Z.length,V=h,ee=0,ue=b,ce=0;ce<ie;++ce)Ne=Z[ce],Ne<128&&je.push(k(Ne));for(te=J=je.length,J&&je.push(g);te<ie;){for(me=c,ce=0;ce<ie;++ce)Ne=Z[ce],Ne>=V&&Ne<me&&(me=Ne);for(we=te+1,me-V>y((c-ee)/we)&&C("overflow"),ee+=(me-V)*we,V=me,ce=0;ce<ie;++ce)if(Ne=Z[ce],Ne<V&&++ee>c&&C("overflow"),Ne==V){for(de=ee,Ae=l;ye=Ae<=ue?u:Ae>=ue+d?d:Ae-ue,!(de<ye);Ae+=l)pe=de-ye,re=l-ye,je.push(k(j(ye+pe%re,0))),de=y(pe/re);je.push(k(j(de,0))),ue=I(ee,we,te==J),ee=0,++te}++ee,++V}return je.join("")}function F(Z){return T(Z,function(V){return z.test(V)?P(V.slice(4).toLowerCase()):V})}function X(Z){return T(Z,function(V){return A.test(V)?"xn--"+$(V):V})}if(i={version:"1.4.1",ucs2:{decode:E,encode:B},decode:P,encode:$,toASCII:X,toUnicode:F},o&&r)if(e.exports==o)r.exports=i;else for(S in i)i.hasOwnProperty(S)&&(o[S]=i[S]);else n.punycode=i})(_wt)}(dM,dM.exports)),dM.exports}var Swt=kwt();const Cwt=Zr(Swt);var Tq,eJ;function vm(){return eJ||(eJ=1,Tq=TypeError),Tq}var Eq,tJ;function N_(){if(tJ)return Eq;tJ=1;var e=typeof Map=="function"&&Map.prototype,t=Object.getOwnPropertyDescriptor&&e?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,n=e&&t&&typeof t.get=="function"?t.get:null,o=e&&Map.prototype.forEach,r=typeof Set=="function"&&Set.prototype,s=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,i=r&&s&&typeof s.get=="function"?s.get:null,c=r&&Set.prototype.forEach,l=typeof WeakMap=="function"&&WeakMap.prototype,u=l?WeakMap.prototype.has:null,d=typeof WeakSet=="function"&&WeakSet.prototype,p=d?WeakSet.prototype.has:null,f=typeof WeakRef=="function"&&WeakRef.prototype,b=f?WeakRef.prototype.deref:null,h=Boolean.prototype.valueOf,g=Object.prototype.toString,z=Function.prototype.toString,A=String.prototype.match,_=String.prototype.slice,v=String.prototype.replace,M=String.prototype.toUpperCase,y=String.prototype.toLowerCase,k=RegExp.prototype.test,S=Array.prototype.concat,C=Array.prototype.join,R=Array.prototype.slice,T=Math.floor,E=typeof BigInt=="function"?BigInt.prototype.valueOf:null,B=Object.getOwnPropertySymbols,N=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,j=typeof Symbol=="function"&&typeof Symbol.iterator=="object",I=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===j||!0)?Symbol.toStringTag:null,P=Object.prototype.propertyIsEnumerable,$=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(be){return be.__proto__}:null);function F(be,ze){if(be===1/0||be===-1/0||be!==be||be&&be>-1e3&&be<1e3||k.call(/e/,ze))return ze;var nt=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof be=="number"){var Mt=be<0?-T(-be):T(be);if(Mt!==be){var ot=String(Mt),Ue=_.call(ze,ot.length+1);return v.call(ot,nt,"$&_")+"."+v.call(v.call(Ue,/([0-9]{3})/g,"$&_"),/_$/,"")}}return v.call(ze,nt,"$&_")}var X=_h,Z=X.custom,V=ie(Z)?Z:null,ee={__proto__:null,double:'"',single:"'"},te={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};Eq=function be(ze,nt,Mt,ot){var Ue=nt||{};if(pe(Ue,"quoteStyle")&&!pe(ee,Ue.quoteStyle))throw new TypeError('option "quoteStyle" must be "single" or "double"');if(pe(Ue,"maxStringLength")&&(typeof Ue.maxStringLength=="number"?Ue.maxStringLength<0&&Ue.maxStringLength!==1/0:Ue.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var yt=pe(Ue,"customInspect")?Ue.customInspect:!0;if(typeof yt!="boolean"&&yt!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(pe(Ue,"indent")&&Ue.indent!==null&&Ue.indent!==" "&&!(parseInt(Ue.indent,10)===Ue.indent&&Ue.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(pe(Ue,"numericSeparator")&&typeof Ue.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var fn=Ue.numericSeparator;if(typeof ze>"u")return"undefined";if(ze===null)return"null";if(typeof ze=="boolean")return ze?"true":"false";if(typeof ze=="string")return rt(ze,Ue);if(typeof ze=="number"){if(ze===0)return 1/0/ze>0?"0":"-0";var Pn=String(ze);return fn?F(ze,Pn):Pn}if(typeof ze=="bigint"){var Mo=String(ze)+"n";return fn?F(ze,Mo):Mo}var rr=typeof Ue.depth>"u"?5:Ue.depth;if(typeof Mt>"u"&&(Mt=0),Mt>=rr&&rr>0&&typeof ze=="object")return ce(ze)?"[Array]":"[Object]";var Jo=Y(Ue,Mt);if(typeof ot>"u")ot=[];else if(se(ot,ze)>=0)return"[Circular]";function To(_s,Gi,gb){if(Gi&&(ot=R.call(ot),ot.push(Gi)),gb){var hp={depth:Ue.depth};return pe(Ue,"quoteStyle")&&(hp.quoteStyle=Ue.quoteStyle),be(_s,hp,Mt+1,ot)}return be(_s,Ue,Mt+1,ot)}if(typeof ze=="function"&&!de(ze)){var Br=Se(ze),Rt=Re(ze,To);return"[Function"+(Br?": "+Br:" (anonymous)")+"]"+(Rt.length>0?" { "+C.call(Rt,", ")+" }":"")}if(ie(ze)){var Qe=j?v.call(String(ze),/^(Symbol\(.*\))_[^)]*$/,"$1"):N.call(ze);return typeof ze=="object"&&!j?wt(Qe):Qe}if(Pe(ze)){for(var xt="<"+y.call(String(ze.nodeName)),Gt=ze.attributes||[],On=0;On<Gt.length;On++)xt+=" "+Gt[On].name+"="+J(ue(Gt[On].value),"double",Ue);return xt+=">",ze.childNodes&&ze.childNodes.length&&(xt+="..."),xt+="</"+y.call(String(ze.nodeName))+">",xt}if(ce(ze)){if(ze.length===0)return"[]";var $n=Re(ze,To);return Jo&&!H($n)?"["+fe($n,Jo)+"]":"[ "+C.call($n,", ")+" ]"}if(Ae(ze)){var Jn=Re(ze,To);return!("cause"in Error.prototype)&&"cause"in ze&&!P.call(ze,"cause")?"{ ["+String(ze)+"] "+C.call(S.call("[cause]: "+To(ze.cause),Jn),", ")+" }":Jn.length===0?"["+String(ze)+"]":"{ ["+String(ze)+"] "+C.call(Jn,", ")+" }"}if(typeof ze=="object"&&yt){if(V&&typeof ze[V]=="function"&&X)return X(ze,{depth:rr-Mt});if(yt!=="symbol"&&typeof ze.inspect=="function")return ze.inspect()}if(L(ze)){var pr=[];return o&&o.call(ze,function(_s,Gi){pr.push(To(Gi,ze,!0)+" => "+To(_s,ze))}),ae("Map",n.call(ze),pr,Jo)}if(ve(ze)){var O0=[];return c&&c.call(ze,function(_s){O0.push(To(_s,ze))}),ae("Set",i.call(ze),O0,Jo)}if(U(ze))return Bt("WeakMap");if(qe(ze))return Bt("WeakSet");if(ne(ze))return Bt("WeakRef");if(Ne(ze))return wt(To(Number(ze)));if(we(ze))return wt(To(E.call(ze)));if(je(ze))return wt(h.call(ze));if(ye(ze))return wt(To(String(ze)));if(typeof window<"u"&&ze===window)return"{ [object Window] }";if(typeof globalThis<"u"&&ze===globalThis||typeof p1<"u"&&ze===p1)return"{ [object globalThis] }";if(!me(ze)&&!de(ze)){var o1=Re(ze,To),yr=$?$(ze)===Object.prototype:ze instanceof Object||ze.constructor===Object,Js=ze instanceof Object?"":"null prototype",ao=!yr&&I&&Object(ze)===ze&&I in ze?_.call(ke(ze),8,-1):Js?"Object":"",Dc=yr||typeof ze.constructor!="function"?"":ze.constructor.name?ze.constructor.name+" ":"",Xi=Dc+(ao||Js?"["+C.call(S.call([],ao||[],Js||[]),": ")+"] ":"");return o1.length===0?Xi+"{}":Jo?Xi+"{"+fe(o1,Jo)+"}":Xi+"{ "+C.call(o1,", ")+" }"}return String(ze)};function J(be,ze,nt){var Mt=nt.quoteStyle||ze,ot=ee[Mt];return ot+be+ot}function ue(be){return v.call(String(be),/"/g,""")}function ce(be){return ke(be)==="[object Array]"&&(!I||!(typeof be=="object"&&I in be))}function me(be){return ke(be)==="[object Date]"&&(!I||!(typeof be=="object"&&I in be))}function de(be){return ke(be)==="[object RegExp]"&&(!I||!(typeof be=="object"&&I in be))}function Ae(be){return ke(be)==="[object Error]"&&(!I||!(typeof be=="object"&&I in be))}function ye(be){return ke(be)==="[object String]"&&(!I||!(typeof be=="object"&&I in be))}function Ne(be){return ke(be)==="[object Number]"&&(!I||!(typeof be=="object"&&I in be))}function je(be){return ke(be)==="[object Boolean]"&&(!I||!(typeof be=="object"&&I in be))}function ie(be){if(j)return be&&typeof be=="object"&&be instanceof Symbol;if(typeof be=="symbol")return!0;if(!be||typeof be!="object"||!N)return!1;try{return N.call(be),!0}catch{}return!1}function we(be){if(!be||typeof be!="object"||!E)return!1;try{return E.call(be),!0}catch{}return!1}var re=Object.prototype.hasOwnProperty||function(be){return be in this};function pe(be,ze){return re.call(be,ze)}function ke(be){return g.call(be)}function Se(be){if(be.name)return be.name;var ze=A.call(z.call(be),/^function\s*([\w$]+)/);return ze?ze[1]:null}function se(be,ze){if(be.indexOf)return be.indexOf(ze);for(var nt=0,Mt=be.length;nt<Mt;nt++)if(be[nt]===ze)return nt;return-1}function L(be){if(!n||!be||typeof be!="object")return!1;try{n.call(be);try{i.call(be)}catch{return!0}return be instanceof Map}catch{}return!1}function U(be){if(!u||!be||typeof be!="object")return!1;try{u.call(be,u);try{p.call(be,p)}catch{return!0}return be instanceof WeakMap}catch{}return!1}function ne(be){if(!b||!be||typeof be!="object")return!1;try{return b.call(be),!0}catch{}return!1}function ve(be){if(!i||!be||typeof be!="object")return!1;try{i.call(be);try{n.call(be)}catch{return!0}return be instanceof Set}catch{}return!1}function qe(be){if(!p||!be||typeof be!="object")return!1;try{p.call(be,p);try{u.call(be,u)}catch{return!0}return be instanceof WeakSet}catch{}return!1}function Pe(be){return!be||typeof be!="object"?!1:typeof HTMLElement<"u"&&be instanceof HTMLElement?!0:typeof be.nodeName=="string"&&typeof be.getAttribute=="function"}function rt(be,ze){if(be.length>ze.maxStringLength){var nt=be.length-ze.maxStringLength,Mt="... "+nt+" more character"+(nt>1?"s":"");return rt(_.call(be,0,ze.maxStringLength),ze)+Mt}var ot=te[ze.quoteStyle||"single"];ot.lastIndex=0;var Ue=v.call(v.call(be,ot,"\\$1"),/[\x00-\x1f]/g,qt);return J(Ue,"single",ze)}function qt(be){var ze=be.charCodeAt(0),nt={8:"b",9:"t",10:"n",12:"f",13:"r"}[ze];return nt?"\\"+nt:"\\x"+(ze<16?"0":"")+M.call(ze.toString(16))}function wt(be){return"Object("+be+")"}function Bt(be){return be+" { ? }"}function ae(be,ze,nt,Mt){var ot=Mt?fe(nt,Mt):C.call(nt,", ");return be+" ("+ze+") {"+ot+"}"}function H(be){for(var ze=0;ze<be.length;ze++)if(se(be[ze],` +`?(d=1,p+=1):d+=1;return{column:d,line:p}}prev(){if(!this.parent)return;let u=this.parent.index(this);return this.parent.nodes[u-1]}rangeBy(u){let d={column:this.source.start.column,line:this.source.start.line},p=this.source.end?{column:this.source.end.column+1,line:this.source.end.line}:{column:d.column+1,line:d.line};if(u.word){let b=this.source.input.css.slice(i(this.source.input.css,this.source.start),i(this.source.input.css,this.source.end)).indexOf(u.word);b!==-1&&(d=this.positionInside(b),p=this.positionInside(b+u.word.length))}else u.start?d={column:u.start.column,line:u.start.line}:u.index&&(d=this.positionInside(u.index)),u.end?p={column:u.end.column,line:u.end.line}:typeof u.endIndex=="number"?p=this.positionInside(u.endIndex):u.index&&(p=this.positionInside(u.index+1));return(p.line<d.line||p.line===d.line&&p.column<=d.column)&&(p={column:d.column+1,line:d.line}),{end:p,start:d}}raw(u,d){return new t().raw(this,u,d)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...u){if(this.parent){let d=this,p=!1;for(let f of u)f===this?p=!0:p?(this.parent.insertAfter(d,f),d=f):this.parent.insertBefore(d,f);p||this.remove()}return this}root(){let u=this;for(;u.parent&&u.parent.type!=="document";)u=u.parent;return u}toJSON(u,d){let p={},f=d==null;d=d||new Map;let b=0;for(let h in this){if(!Object.prototype.hasOwnProperty.call(this,h)||h==="parent"||h==="proxyCache")continue;let g=this[h];if(Array.isArray(g))p[h]=g.map(z=>typeof z=="object"&&z.toJSON?z.toJSON(null,d):z);else if(typeof g=="object"&&g.toJSON)p[h]=g.toJSON(null,d);else if(h==="source"){let z=d.get(g.input);z==null&&(z=b,d.set(g.input,b),b++),p[h]={end:g.end,inputId:z,start:g.start}}else p[h]=g}return f&&(p.inputs=[...d.keys()].map(h=>h.toJSON())),p}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(u=n){u.stringify&&(u=u.stringify);let d="";return u(this,p=>{d+=p}),d}warn(u,d,p){let f={node:this};for(let b in p)f[b]=p[b];return u.warn(d,f)}get proxyOf(){return this}}return wq=c,c.default=c,wq}var _q,GQ;function Nme(){if(GQ)return _q;GQ=1;let e=P7();class t extends e{constructor(o){super(o),this.type="comment"}}return _q=t,t.default=t,_q}var kq,KQ;function Bme(){if(KQ)return kq;KQ=1;let e=P7();class t extends e{constructor(o){o&&typeof o.value<"u"&&typeof o.value!="string"&&(o={...o,value:String(o.value)}),super(o),this.type="decl"}get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}}return kq=t,t.default=t,kq}var Sq,YQ;function Am(){if(YQ)return Sq;YQ=1;let e=Nme(),t=Bme(),n=P7(),{isClean:o,my:r}=L7(),s,i,c,l;function u(f){return f.map(b=>(b.nodes&&(b.nodes=u(b.nodes)),delete b.source,b))}function d(f){if(f[o]=!1,f.proxyOf.nodes)for(let b of f.proxyOf.nodes)d(b)}class p extends n{append(...b){for(let h of b){let g=this.normalize(h,this.last);for(let z of g)this.proxyOf.nodes.push(z)}return this.markDirty(),this}cleanRaws(b){if(super.cleanRaws(b),this.nodes)for(let h of this.nodes)h.cleanRaws(b)}each(b){if(!this.proxyOf.nodes)return;let h=this.getIterator(),g,z;for(;this.indexes[h]<this.proxyOf.nodes.length&&(g=this.indexes[h],z=b(this.proxyOf.nodes[g],g),z!==!1);)this.indexes[h]+=1;return delete this.indexes[h],z}every(b){return this.nodes.every(b)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let b=this.lastEach;return this.indexes[b]=0,b}getProxyProcessor(){return{get(b,h){return h==="proxyOf"?b:b[h]?h==="each"||typeof h=="string"&&h.startsWith("walk")?(...g)=>b[h](...g.map(z=>typeof z=="function"?(A,_)=>z(A.toProxy(),_):z)):h==="every"||h==="some"?g=>b[h]((z,...A)=>g(z.toProxy(),...A)):h==="root"?()=>b.root().toProxy():h==="nodes"?b.nodes.map(g=>g.toProxy()):h==="first"||h==="last"?b[h].toProxy():b[h]:b[h]},set(b,h,g){return b[h]===g||(b[h]=g,(h==="name"||h==="params"||h==="selector")&&b.markDirty()),!0}}}index(b){return typeof b=="number"?b:(b.proxyOf&&(b=b.proxyOf),this.proxyOf.nodes.indexOf(b))}insertAfter(b,h){let g=this.index(b),z=this.normalize(h,this.proxyOf.nodes[g]).reverse();g=this.index(b);for(let _ of z)this.proxyOf.nodes.splice(g+1,0,_);let A;for(let _ in this.indexes)A=this.indexes[_],g<A&&(this.indexes[_]=A+z.length);return this.markDirty(),this}insertBefore(b,h){let g=this.index(b),z=g===0?"prepend":!1,A=this.normalize(h,this.proxyOf.nodes[g],z).reverse();g=this.index(b);for(let v of A)this.proxyOf.nodes.splice(g,0,v);let _;for(let v in this.indexes)_=this.indexes[v],g<=_&&(this.indexes[v]=_+A.length);return this.markDirty(),this}normalize(b,h){if(typeof b=="string")b=u(i(b).nodes);else if(typeof b>"u")b=[];else if(Array.isArray(b)){b=b.slice(0);for(let z of b)z.parent&&z.parent.removeChild(z,"ignore")}else if(b.type==="root"&&this.type!=="document"){b=b.nodes.slice(0);for(let z of b)z.parent&&z.parent.removeChild(z,"ignore")}else if(b.type)b=[b];else if(b.prop){if(typeof b.value>"u")throw new Error("Value field is missed in node creation");typeof b.value!="string"&&(b.value=String(b.value)),b=[new t(b)]}else if(b.selector||b.selectors)b=[new l(b)];else if(b.name)b=[new s(b)];else if(b.text)b=[new e(b)];else throw new Error("Unknown node type in node creation");return b.map(z=>(z[r]||p.rebuild(z),z=z.proxyOf,z.parent&&z.parent.removeChild(z),z[o]&&d(z),z.raws||(z.raws={}),typeof z.raws.before>"u"&&h&&typeof h.raws.before<"u"&&(z.raws.before=h.raws.before.replace(/\S/g,"")),z.parent=this.proxyOf,z))}prepend(...b){b=b.reverse();for(let h of b){let g=this.normalize(h,this.first,"prepend").reverse();for(let z of g)this.proxyOf.nodes.unshift(z);for(let z in this.indexes)this.indexes[z]=this.indexes[z]+g.length}return this.markDirty(),this}push(b){return b.parent=this,this.proxyOf.nodes.push(b),this}removeAll(){for(let b of this.proxyOf.nodes)b.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(b){b=this.index(b),this.proxyOf.nodes[b].parent=void 0,this.proxyOf.nodes.splice(b,1);let h;for(let g in this.indexes)h=this.indexes[g],h>=b&&(this.indexes[g]=h-1);return this.markDirty(),this}replaceValues(b,h,g){return g||(g=h,h={}),this.walkDecls(z=>{h.props&&!h.props.includes(z.prop)||h.fast&&!z.value.includes(h.fast)||(z.value=z.value.replace(b,g))}),this.markDirty(),this}some(b){return this.nodes.some(b)}walk(b){return this.each((h,g)=>{let z;try{z=b(h,g)}catch(A){throw h.addToError(A)}return z!==!1&&h.walk&&(z=h.walk(b)),z})}walkAtRules(b,h){return h?b instanceof RegExp?this.walk((g,z)=>{if(g.type==="atrule"&&b.test(g.name))return h(g,z)}):this.walk((g,z)=>{if(g.type==="atrule"&&g.name===b)return h(g,z)}):(h=b,this.walk((g,z)=>{if(g.type==="atrule")return h(g,z)}))}walkComments(b){return this.walk((h,g)=>{if(h.type==="comment")return b(h,g)})}walkDecls(b,h){return h?b instanceof RegExp?this.walk((g,z)=>{if(g.type==="decl"&&b.test(g.prop))return h(g,z)}):this.walk((g,z)=>{if(g.type==="decl"&&g.prop===b)return h(g,z)}):(h=b,this.walk((g,z)=>{if(g.type==="decl")return h(g,z)}))}walkRules(b,h){return h?b instanceof RegExp?this.walk((g,z)=>{if(g.type==="rule"&&b.test(g.selector))return h(g,z)}):this.walk((g,z)=>{if(g.type==="rule"&&g.selector===b)return h(g,z)}):(h=b,this.walk((g,z)=>{if(g.type==="rule")return h(g,z)}))}get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}return p.registerParse=f=>{i=f},p.registerRule=f=>{l=f},p.registerAtRule=f=>{s=f},p.registerRoot=f=>{c=f},Sq=p,p.default=p,p.rebuild=f=>{f.type==="atrule"?Object.setPrototypeOf(f,s.prototype):f.type==="rule"?Object.setPrototypeOf(f,l.prototype):f.type==="decl"?Object.setPrototypeOf(f,t.prototype):f.type==="comment"?Object.setPrototypeOf(f,e.prototype):f.type==="root"&&Object.setPrototypeOf(f,c.prototype),f[r]=!0,f.nodes&&f.nodes.forEach(b=>{p.rebuild(b)})},Sq}var Cq,ZQ;function Lme(){if(ZQ)return Cq;ZQ=1;let e=Am(),t,n;class o extends e{constructor(s){super({type:"document",...s}),this.nodes||(this.nodes=[])}toResult(s={}){return new t(new n,this,s).stringify()}}return o.registerLazyResult=r=>{t=r},o.registerProcessor=r=>{n=r},Cq=o,o.default=o,Cq}var qq,QQ;function j7(){if(QQ)return qq;QQ=1;function e(r){if(typeof r!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(r))}function t(r,s){for(var i="",c=0,l=-1,u=0,d,p=0;p<=r.length;++p){if(p<r.length)d=r.charCodeAt(p);else{if(d===47)break;d=47}if(d===47){if(!(l===p-1||u===1))if(l!==p-1&&u===2){if(i.length<2||c!==2||i.charCodeAt(i.length-1)!==46||i.charCodeAt(i.length-2)!==46){if(i.length>2){var f=i.lastIndexOf("/");if(f!==i.length-1){f===-1?(i="",c=0):(i=i.slice(0,f),c=i.length-1-i.lastIndexOf("/")),l=p,u=0;continue}}else if(i.length===2||i.length===1){i="",c=0,l=p,u=0;continue}}s&&(i.length>0?i+="/..":i="..",c=2)}else i.length>0?i+="/"+r.slice(l+1,p):i=r.slice(l+1,p),c=p-l-1;l=p,u=0}else d===46&&u!==-1?++u:u=-1}return i}function n(r,s){var i=s.dir||s.root,c=s.base||(s.name||"")+(s.ext||"");return i?i===s.root?i+c:i+r+c:c}var o={resolve:function(){for(var s="",i=!1,c,l=arguments.length-1;l>=-1&&!i;l--){var u;l>=0?u=arguments[l]:(c===void 0&&(c=Oi.cwd()),u=c),e(u),u.length!==0&&(s=u+"/"+s,i=u.charCodeAt(0)===47)}return s=t(s,!i),i?s.length>0?"/"+s:"/":s.length>0?s:"."},normalize:function(s){if(e(s),s.length===0)return".";var i=s.charCodeAt(0)===47,c=s.charCodeAt(s.length-1)===47;return s=t(s,!i),s.length===0&&!i&&(s="."),s.length>0&&c&&(s+="/"),i?"/"+s:s},isAbsolute:function(s){return e(s),s.length>0&&s.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var s,i=0;i<arguments.length;++i){var c=arguments[i];e(c),c.length>0&&(s===void 0?s=c:s+="/"+c)}return s===void 0?".":o.normalize(s)},relative:function(s,i){if(e(s),e(i),s===i||(s=o.resolve(s),i=o.resolve(i),s===i))return"";for(var c=1;c<s.length&&s.charCodeAt(c)===47;++c);for(var l=s.length,u=l-c,d=1;d<i.length&&i.charCodeAt(d)===47;++d);for(var p=i.length,f=p-d,b=u<f?u:f,h=-1,g=0;g<=b;++g){if(g===b){if(f>b){if(i.charCodeAt(d+g)===47)return i.slice(d+g+1);if(g===0)return i.slice(d+g)}else u>b&&(s.charCodeAt(c+g)===47?h=g:g===0&&(h=0));break}var z=s.charCodeAt(c+g),A=i.charCodeAt(d+g);if(z!==A)break;z===47&&(h=g)}var _="";for(g=c+h+1;g<=l;++g)(g===l||s.charCodeAt(g)===47)&&(_.length===0?_+="..":_+="/..");return _.length>0?_+i.slice(d+h):(d+=h,i.charCodeAt(d)===47&&++d,i.slice(d))},_makeLong:function(s){return s},dirname:function(s){if(e(s),s.length===0)return".";for(var i=s.charCodeAt(0),c=i===47,l=-1,u=!0,d=s.length-1;d>=1;--d)if(i=s.charCodeAt(d),i===47){if(!u){l=d;break}}else u=!1;return l===-1?c?"/":".":c&&l===1?"//":s.slice(0,l)},basename:function(s,i){if(i!==void 0&&typeof i!="string")throw new TypeError('"ext" argument must be a string');e(s);var c=0,l=-1,u=!0,d;if(i!==void 0&&i.length>0&&i.length<=s.length){if(i.length===s.length&&i===s)return"";var p=i.length-1,f=-1;for(d=s.length-1;d>=0;--d){var b=s.charCodeAt(d);if(b===47){if(!u){c=d+1;break}}else f===-1&&(u=!1,f=d+1),p>=0&&(b===i.charCodeAt(p)?--p===-1&&(l=d):(p=-1,l=f))}return c===l?l=f:l===-1&&(l=s.length),s.slice(c,l)}else{for(d=s.length-1;d>=0;--d)if(s.charCodeAt(d)===47){if(!u){c=d+1;break}}else l===-1&&(u=!1,l=d+1);return l===-1?"":s.slice(c,l)}},extname:function(s){e(s);for(var i=-1,c=0,l=-1,u=!0,d=0,p=s.length-1;p>=0;--p){var f=s.charCodeAt(p);if(f===47){if(!u){c=p+1;break}continue}l===-1&&(u=!1,l=p+1),f===46?i===-1?i=p:d!==1&&(d=1):i!==-1&&(d=-1)}return i===-1||l===-1||d===0||d===1&&i===l-1&&i===c+1?"":s.slice(i,l)},format:function(s){if(s===null||typeof s!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof s);return n("/",s)},parse:function(s){e(s);var i={root:"",dir:"",base:"",ext:"",name:""};if(s.length===0)return i;var c=s.charCodeAt(0),l=c===47,u;l?(i.root="/",u=1):u=0;for(var d=-1,p=0,f=-1,b=!0,h=s.length-1,g=0;h>=u;--h){if(c=s.charCodeAt(h),c===47){if(!b){p=h+1;break}continue}f===-1&&(b=!1,f=h+1),c===46?d===-1?d=h:g!==1&&(g=1):d!==-1&&(g=-1)}return d===-1||f===-1||g===0||g===1&&d===f-1&&d===p+1?f!==-1&&(p===0&&l?i.base=i.name=s.slice(1,f):i.base=i.name=s.slice(p,f)):(p===0&&l?(i.name=s.slice(1,d),i.base=s.slice(1,f)):(i.name=s.slice(p,d),i.base=s.slice(p,f)),i.ext=s.slice(d,f)),p>0?i.dir=s.slice(0,p-1):l&&(i.dir="/"),i},sep:"/",delimiter:":",win32:null,posix:null};return o.posix=o,qq=o,qq}var dM={exports:{}};/*! https://mths.be/punycode v1.4.1 by @mathias */var wwt=dM.exports,JQ;function _wt(){return JQ||(JQ=1,function(e,t){(function(n){var o=t&&!t.nodeType&&t,r=e&&!e.nodeType&&e,s=typeof p1=="object"&&p1;(s.global===s||s.window===s||s.self===s)&&(n=s);var i,c=2147483647,l=36,u=1,d=26,p=38,f=700,b=72,h=128,g="-",z=/^xn--/,A=/[^\x20-\x7E]/,_=/[\x2E\u3002\uFF0E\uFF61]/g,v={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},M=l-u,y=Math.floor,k=String.fromCharCode,S;function C(Z){throw new RangeError(v[Z])}function R(Z,V){for(var ee=Z.length,te=[];ee--;)te[ee]=V(Z[ee]);return te}function T(Z,V){var ee=Z.split("@"),te="";ee.length>1&&(te=ee[0]+"@",Z=ee[1]),Z=Z.replace(_,".");var J=Z.split("."),ue=R(J,V).join(".");return te+ue}function E(Z){for(var V=[],ee=0,te=Z.length,J,ue;ee<te;)J=Z.charCodeAt(ee++),J>=55296&&J<=56319&&ee<te?(ue=Z.charCodeAt(ee++),(ue&64512)==56320?V.push(((J&1023)<<10)+(ue&1023)+65536):(V.push(J),ee--)):V.push(J);return V}function B(Z){return R(Z,function(V){var ee="";return V>65535&&(V-=65536,ee+=k(V>>>10&1023|55296),V=56320|V&1023),ee+=k(V),ee}).join("")}function N(Z){return Z-48<10?Z-22:Z-65<26?Z-65:Z-97<26?Z-97:l}function j(Z,V){return Z+22+75*(Z<26)-((V!=0)<<5)}function I(Z,V,ee){var te=0;for(Z=ee?y(Z/f):Z>>1,Z+=y(Z/V);Z>M*d>>1;te+=l)Z=y(Z/M);return y(te+(M+1)*Z/(Z+p))}function P(Z){var V=[],ee=Z.length,te,J=0,ue=h,ce=b,me,de,Ae,ye,Ne,je,ie,we,re;for(me=Z.lastIndexOf(g),me<0&&(me=0),de=0;de<me;++de)Z.charCodeAt(de)>=128&&C("not-basic"),V.push(Z.charCodeAt(de));for(Ae=me>0?me+1:0;Ae<ee;){for(ye=J,Ne=1,je=l;Ae>=ee&&C("invalid-input"),ie=N(Z.charCodeAt(Ae++)),(ie>=l||ie>y((c-J)/Ne))&&C("overflow"),J+=ie*Ne,we=je<=ce?u:je>=ce+d?d:je-ce,!(ie<we);je+=l)re=l-we,Ne>y(c/re)&&C("overflow"),Ne*=re;te=V.length+1,ce=I(J-ye,te,ye==0),y(J/te)>c-ue&&C("overflow"),ue+=y(J/te),J%=te,V.splice(J++,0,ue)}return B(V)}function $(Z){var V,ee,te,J,ue,ce,me,de,Ae,ye,Ne,je=[],ie,we,re,pe;for(Z=E(Z),ie=Z.length,V=h,ee=0,ue=b,ce=0;ce<ie;++ce)Ne=Z[ce],Ne<128&&je.push(k(Ne));for(te=J=je.length,J&&je.push(g);te<ie;){for(me=c,ce=0;ce<ie;++ce)Ne=Z[ce],Ne>=V&&Ne<me&&(me=Ne);for(we=te+1,me-V>y((c-ee)/we)&&C("overflow"),ee+=(me-V)*we,V=me,ce=0;ce<ie;++ce)if(Ne=Z[ce],Ne<V&&++ee>c&&C("overflow"),Ne==V){for(de=ee,Ae=l;ye=Ae<=ue?u:Ae>=ue+d?d:Ae-ue,!(de<ye);Ae+=l)pe=de-ye,re=l-ye,je.push(k(j(ye+pe%re,0))),de=y(pe/re);je.push(k(j(de,0))),ue=I(ee,we,te==J),ee=0,++te}++ee,++V}return je.join("")}function F(Z){return T(Z,function(V){return z.test(V)?P(V.slice(4).toLowerCase()):V})}function X(Z){return T(Z,function(V){return A.test(V)?"xn--"+$(V):V})}if(i={version:"1.4.1",ucs2:{decode:E,encode:B},decode:P,encode:$,toASCII:X,toUnicode:F},o&&r)if(e.exports==o)r.exports=i;else for(S in i)i.hasOwnProperty(S)&&(o[S]=i[S]);else n.punycode=i})(wwt)}(dM,dM.exports)),dM.exports}var kwt=_wt();const Swt=Zr(kwt);var Rq,eJ;function vm(){return eJ||(eJ=1,Rq=TypeError),Rq}var Tq,tJ;function W_(){if(tJ)return Tq;tJ=1;var e=typeof Map=="function"&&Map.prototype,t=Object.getOwnPropertyDescriptor&&e?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,n=e&&t&&typeof t.get=="function"?t.get:null,o=e&&Map.prototype.forEach,r=typeof Set=="function"&&Set.prototype,s=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,i=r&&s&&typeof s.get=="function"?s.get:null,c=r&&Set.prototype.forEach,l=typeof WeakMap=="function"&&WeakMap.prototype,u=l?WeakMap.prototype.has:null,d=typeof WeakSet=="function"&&WeakSet.prototype,p=d?WeakSet.prototype.has:null,f=typeof WeakRef=="function"&&WeakRef.prototype,b=f?WeakRef.prototype.deref:null,h=Boolean.prototype.valueOf,g=Object.prototype.toString,z=Function.prototype.toString,A=String.prototype.match,_=String.prototype.slice,v=String.prototype.replace,M=String.prototype.toUpperCase,y=String.prototype.toLowerCase,k=RegExp.prototype.test,S=Array.prototype.concat,C=Array.prototype.join,R=Array.prototype.slice,T=Math.floor,E=typeof BigInt=="function"?BigInt.prototype.valueOf:null,B=Object.getOwnPropertySymbols,N=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,j=typeof Symbol=="function"&&typeof Symbol.iterator=="object",I=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===j||!0)?Symbol.toStringTag:null,P=Object.prototype.propertyIsEnumerable,$=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(be){return be.__proto__}:null);function F(be,ze){if(be===1/0||be===-1/0||be!==be||be&&be>-1e3&&be<1e3||k.call(/e/,ze))return ze;var nt=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof be=="number"){var Mt=be<0?-T(-be):T(be);if(Mt!==be){var ot=String(Mt),Ue=_.call(ze,ot.length+1);return v.call(ot,nt,"$&_")+"."+v.call(v.call(Ue,/([0-9]{3})/g,"$&_"),/_$/,"")}}return v.call(ze,nt,"$&_")}var X=_h,Z=X.custom,V=ie(Z)?Z:null,ee={__proto__:null,double:'"',single:"'"},te={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};Tq=function be(ze,nt,Mt,ot){var Ue=nt||{};if(pe(Ue,"quoteStyle")&&!pe(ee,Ue.quoteStyle))throw new TypeError('option "quoteStyle" must be "single" or "double"');if(pe(Ue,"maxStringLength")&&(typeof Ue.maxStringLength=="number"?Ue.maxStringLength<0&&Ue.maxStringLength!==1/0:Ue.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var yt=pe(Ue,"customInspect")?Ue.customInspect:!0;if(typeof yt!="boolean"&&yt!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(pe(Ue,"indent")&&Ue.indent!==null&&Ue.indent!==" "&&!(parseInt(Ue.indent,10)===Ue.indent&&Ue.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(pe(Ue,"numericSeparator")&&typeof Ue.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var fn=Ue.numericSeparator;if(typeof ze>"u")return"undefined";if(ze===null)return"null";if(typeof ze=="boolean")return ze?"true":"false";if(typeof ze=="string")return rt(ze,Ue);if(typeof ze=="number"){if(ze===0)return 1/0/ze>0?"0":"-0";var Ln=String(ze);return fn?F(ze,Ln):Ln}if(typeof ze=="bigint"){var Mo=String(ze)+"n";return fn?F(ze,Mo):Mo}var rr=typeof Ue.depth>"u"?5:Ue.depth;if(typeof Mt>"u"&&(Mt=0),Mt>=rr&&rr>0&&typeof ze=="object")return ce(ze)?"[Array]":"[Object]";var Jo=Y(Ue,Mt);if(typeof ot>"u")ot=[];else if(se(ot,ze)>=0)return"[Circular]";function To(_s,Xi,gb){if(Xi&&(ot=R.call(ot),ot.push(Xi)),gb){var hp={depth:Ue.depth};return pe(Ue,"quoteStyle")&&(hp.quoteStyle=Ue.quoteStyle),be(_s,hp,Mt+1,ot)}return be(_s,Ue,Mt+1,ot)}if(typeof ze=="function"&&!de(ze)){var Br=Se(ze),Rt=Re(ze,To);return"[Function"+(Br?": "+Br:" (anonymous)")+"]"+(Rt.length>0?" { "+C.call(Rt,", ")+" }":"")}if(ie(ze)){var Qe=j?v.call(String(ze),/^(Symbol\(.*\))_[^)]*$/,"$1"):N.call(ze);return typeof ze=="object"&&!j?wt(Qe):Qe}if(Pe(ze)){for(var xt="<"+y.call(String(ze.nodeName)),Gt=ze.attributes||[],On=0;On<Gt.length;On++)xt+=" "+Gt[On].name+"="+J(ue(Gt[On].value),"double",Ue);return xt+=">",ze.childNodes&&ze.childNodes.length&&(xt+="..."),xt+="</"+y.call(String(ze.nodeName))+">",xt}if(ce(ze)){if(ze.length===0)return"[]";var $n=Re(ze,To);return Jo&&!H($n)?"["+fe($n,Jo)+"]":"[ "+C.call($n,", ")+" ]"}if(Ae(ze)){var Jn=Re(ze,To);return!("cause"in Error.prototype)&&"cause"in ze&&!P.call(ze,"cause")?"{ ["+String(ze)+"] "+C.call(S.call("[cause]: "+To(ze.cause),Jn),", ")+" }":Jn.length===0?"["+String(ze)+"]":"{ ["+String(ze)+"] "+C.call(Jn,", ")+" }"}if(typeof ze=="object"&&yt){if(V&&typeof ze[V]=="function"&&X)return X(ze,{depth:rr-Mt});if(yt!=="symbol"&&typeof ze.inspect=="function")return ze.inspect()}if(L(ze)){var pr=[];return o&&o.call(ze,function(_s,Xi){pr.push(To(Xi,ze,!0)+" => "+To(_s,ze))}),ae("Map",n.call(ze),pr,Jo)}if(ve(ze)){var O0=[];return c&&c.call(ze,function(_s){O0.push(To(_s,ze))}),ae("Set",i.call(ze),O0,Jo)}if(U(ze))return Bt("WeakMap");if(qe(ze))return Bt("WeakSet");if(ne(ze))return Bt("WeakRef");if(Ne(ze))return wt(To(Number(ze)));if(we(ze))return wt(To(E.call(ze)));if(je(ze))return wt(h.call(ze));if(ye(ze))return wt(To(String(ze)));if(typeof window<"u"&&ze===window)return"{ [object Window] }";if(typeof globalThis<"u"&&ze===globalThis||typeof p1<"u"&&ze===p1)return"{ [object globalThis] }";if(!me(ze)&&!de(ze)){var o1=Re(ze,To),yr=$?$(ze)===Object.prototype:ze instanceof Object||ze.constructor===Object,Js=ze instanceof Object?"":"null prototype",ao=!yr&&I&&Object(ze)===ze&&I in ze?_.call(ke(ze),8,-1):Js?"Object":"",Ic=yr||typeof ze.constructor!="function"?"":ze.constructor.name?ze.constructor.name+" ":"",Ui=Ic+(ao||Js?"["+C.call(S.call([],ao||[],Js||[]),": ")+"] ":"");return o1.length===0?Ui+"{}":Jo?Ui+"{"+fe(o1,Jo)+"}":Ui+"{ "+C.call(o1,", ")+" }"}return String(ze)};function J(be,ze,nt){var Mt=nt.quoteStyle||ze,ot=ee[Mt];return ot+be+ot}function ue(be){return v.call(String(be),/"/g,""")}function ce(be){return ke(be)==="[object Array]"&&(!I||!(typeof be=="object"&&I in be))}function me(be){return ke(be)==="[object Date]"&&(!I||!(typeof be=="object"&&I in be))}function de(be){return ke(be)==="[object RegExp]"&&(!I||!(typeof be=="object"&&I in be))}function Ae(be){return ke(be)==="[object Error]"&&(!I||!(typeof be=="object"&&I in be))}function ye(be){return ke(be)==="[object String]"&&(!I||!(typeof be=="object"&&I in be))}function Ne(be){return ke(be)==="[object Number]"&&(!I||!(typeof be=="object"&&I in be))}function je(be){return ke(be)==="[object Boolean]"&&(!I||!(typeof be=="object"&&I in be))}function ie(be){if(j)return be&&typeof be=="object"&&be instanceof Symbol;if(typeof be=="symbol")return!0;if(!be||typeof be!="object"||!N)return!1;try{return N.call(be),!0}catch{}return!1}function we(be){if(!be||typeof be!="object"||!E)return!1;try{return E.call(be),!0}catch{}return!1}var re=Object.prototype.hasOwnProperty||function(be){return be in this};function pe(be,ze){return re.call(be,ze)}function ke(be){return g.call(be)}function Se(be){if(be.name)return be.name;var ze=A.call(z.call(be),/^function\s*([\w$]+)/);return ze?ze[1]:null}function se(be,ze){if(be.indexOf)return be.indexOf(ze);for(var nt=0,Mt=be.length;nt<Mt;nt++)if(be[nt]===ze)return nt;return-1}function L(be){if(!n||!be||typeof be!="object")return!1;try{n.call(be);try{i.call(be)}catch{return!0}return be instanceof Map}catch{}return!1}function U(be){if(!u||!be||typeof be!="object")return!1;try{u.call(be,u);try{p.call(be,p)}catch{return!0}return be instanceof WeakMap}catch{}return!1}function ne(be){if(!b||!be||typeof be!="object")return!1;try{return b.call(be),!0}catch{}return!1}function ve(be){if(!i||!be||typeof be!="object")return!1;try{i.call(be);try{n.call(be)}catch{return!0}return be instanceof Set}catch{}return!1}function qe(be){if(!p||!be||typeof be!="object")return!1;try{p.call(be,p);try{u.call(be,u)}catch{return!0}return be instanceof WeakSet}catch{}return!1}function Pe(be){return!be||typeof be!="object"?!1:typeof HTMLElement<"u"&&be instanceof HTMLElement?!0:typeof be.nodeName=="string"&&typeof be.getAttribute=="function"}function rt(be,ze){if(be.length>ze.maxStringLength){var nt=be.length-ze.maxStringLength,Mt="... "+nt+" more character"+(nt>1?"s":"");return rt(_.call(be,0,ze.maxStringLength),ze)+Mt}var ot=te[ze.quoteStyle||"single"];ot.lastIndex=0;var Ue=v.call(v.call(be,ot,"\\$1"),/[\x00-\x1f]/g,qt);return J(Ue,"single",ze)}function qt(be){var ze=be.charCodeAt(0),nt={8:"b",9:"t",10:"n",12:"f",13:"r"}[ze];return nt?"\\"+nt:"\\x"+(ze<16?"0":"")+M.call(ze.toString(16))}function wt(be){return"Object("+be+")"}function Bt(be){return be+" { ? }"}function ae(be,ze,nt,Mt){var ot=Mt?fe(nt,Mt):C.call(nt,", ");return be+" ("+ze+") {"+ot+"}"}function H(be){for(var ze=0;ze<be.length;ze++)if(se(be[ze],` `)>=0)return!1;return!0}function Y(be,ze){var nt;if(be.indent===" ")nt=" ";else if(typeof be.indent=="number"&&be.indent>0)nt=C.call(Array(be.indent+1)," ");else return null;return{base:nt,prev:C.call(Array(ze+1),nt)}}function fe(be,ze){if(be.length===0)return"";var nt=` `+ze.prev+ze.base;return nt+C.call(be,","+nt)+` -`+ze.prev}function Re(be,ze){var nt=ce(be),Mt=[];if(nt){Mt.length=be.length;for(var ot=0;ot<be.length;ot++)Mt[ot]=pe(be,ot)?ze(be[ot],be):""}var Ue=typeof B=="function"?B(be):[],yt;if(j){yt={};for(var fn=0;fn<Ue.length;fn++)yt["$"+Ue[fn]]=Ue[fn]}for(var Pn in be)pe(be,Pn)&&(nt&&String(Number(Pn))===Pn&&Pn<be.length||j&&yt["$"+Pn]instanceof Symbol||(k.call(/[^\w$]/,Pn)?Mt.push(ze(Pn,be)+": "+ze(be[Pn],be)):Mt.push(Pn+": "+ze(be[Pn],be))));if(typeof B=="function")for(var Mo=0;Mo<Ue.length;Mo++)P.call(be,Ue[Mo])&&Mt.push("["+ze(Ue[Mo])+"]: "+ze(be[Ue[Mo]],be));return Mt}return Eq}var Wq,nJ;function qwt(){if(nJ)return Wq;nJ=1;var e=N_(),t=vm(),n=function(c,l,u){for(var d=c,p;(p=d.next)!=null;d=p)if(p.key===l)return d.next=p.next,u||(p.next=c.next,c.next=p),p},o=function(c,l){if(c){var u=n(c,l);return u&&u.value}},r=function(c,l,u){var d=n(c,l);d?d.value=u:c.next={key:l,next:c.next,value:u}},s=function(c,l){return c?!!n(c,l):!1},i=function(c,l){if(c)return n(c,l,!0)};return Wq=function(){var l,u={assert:function(d){if(!u.has(d))throw new t("Side channel does not contain "+e(d))},delete:function(d){var p=l&&l.next,f=i(l,d);return f&&p&&p===f&&(l=void 0),!!f},get:function(d){return o(l,d)},has:function(d){return s(l,d)},set:function(d,p){l||(l={next:void 0}),r(l,d,p)}};return u},Wq}var Nq,oJ;function Pme(){return oJ||(oJ=1,Nq=Object),Nq}var Bq,rJ;function Rwt(){return rJ||(rJ=1,Bq=Error),Bq}var Lq,sJ;function Twt(){return sJ||(sJ=1,Lq=EvalError),Lq}var Pq,iJ;function Ewt(){return iJ||(iJ=1,Pq=RangeError),Pq}var jq,aJ;function Wwt(){return aJ||(aJ=1,jq=ReferenceError),jq}var Iq,cJ;function Nwt(){return cJ||(cJ=1,Iq=SyntaxError),Iq}var Dq,lJ;function Bwt(){return lJ||(lJ=1,Dq=URIError),Dq}var Fq,uJ;function Lwt(){return uJ||(uJ=1,Fq=Math.abs),Fq}var $q,dJ;function Pwt(){return dJ||(dJ=1,$q=Math.floor),$q}var Vq,pJ;function jwt(){return pJ||(pJ=1,Vq=Math.max),Vq}var Hq,fJ;function Iwt(){return fJ||(fJ=1,Hq=Math.min),Hq}var Uq,bJ;function Dwt(){return bJ||(bJ=1,Uq=Math.pow),Uq}var Xq,hJ;function Fwt(){return hJ||(hJ=1,Xq=Math.round),Xq}var Gq,mJ;function $wt(){return mJ||(mJ=1,Gq=Number.isNaN||function(t){return t!==t}),Gq}var Kq,gJ;function Vwt(){if(gJ)return Kq;gJ=1;var e=$wt();return Kq=function(n){return e(n)||n===0?n:n<0?-1:1},Kq}var Yq,MJ;function Hwt(){return MJ||(MJ=1,Yq=Object.getOwnPropertyDescriptor),Yq}var Zq,zJ;function jme(){if(zJ)return Zq;zJ=1;var e=Hwt();if(e)try{e([],"length")}catch{e=null}return Zq=e,Zq}var Qq,OJ;function Uwt(){if(OJ)return Qq;OJ=1;var e=Object.defineProperty||!1;if(e)try{e({},"a",{value:1})}catch{e=!1}return Qq=e,Qq}var Jq,yJ;function Xwt(){return yJ||(yJ=1,Jq=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var t={},n=Symbol("test"),o=Object(n);if(typeof n=="string"||Object.prototype.toString.call(n)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var r=42;t[n]=r;for(var s in t)return!1;if(typeof Object.keys=="function"&&Object.keys(t).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(t).length!==0)return!1;var i=Object.getOwnPropertySymbols(t);if(i.length!==1||i[0]!==n||!Object.prototype.propertyIsEnumerable.call(t,n))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var c=Object.getOwnPropertyDescriptor(t,n);if(c.value!==r||c.enumerable!==!0)return!1}return!0}),Jq}var eR,AJ;function Gwt(){if(AJ)return eR;AJ=1;var e=typeof Symbol<"u"&&Symbol,t=Xwt();return eR=function(){return typeof e!="function"||typeof Symbol!="function"||typeof e("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:t()},eR}var tR,vJ;function Ime(){return vJ||(vJ=1,tR=typeof Reflect<"u"&&Reflect.getPrototypeOf||null),tR}var nR,xJ;function Dme(){if(xJ)return nR;xJ=1;var e=Pme();return nR=e.getPrototypeOf||null,nR}var oR,wJ;function Kwt(){if(wJ)return oR;wJ=1;var e="Function.prototype.bind called on incompatible ",t=Object.prototype.toString,n=Math.max,o="[object Function]",r=function(l,u){for(var d=[],p=0;p<l.length;p+=1)d[p]=l[p];for(var f=0;f<u.length;f+=1)d[f+l.length]=u[f];return d},s=function(l,u){for(var d=[],p=u,f=0;p<l.length;p+=1,f+=1)d[f]=l[p];return d},i=function(c,l){for(var u="",d=0;d<c.length;d+=1)u+=c[d],d+1<c.length&&(u+=l);return u};return oR=function(l){var u=this;if(typeof u!="function"||t.apply(u)!==o)throw new TypeError(e+u);for(var d=s(arguments,1),p,f=function(){if(this instanceof p){var A=u.apply(this,r(d,arguments));return Object(A)===A?A:this}return u.apply(l,r(d,arguments))},b=n(0,u.length-d.length),h=[],g=0;g<b;g++)h[g]="$"+g;if(p=Function("binder","return function ("+i(h,",")+"){ return binder.apply(this,arguments); }")(f),u.prototype){var z=function(){};z.prototype=u.prototype,p.prototype=new z,z.prototype=null}return p},oR}var rR,_J;function B_(){if(_J)return rR;_J=1;var e=Kwt();return rR=Function.prototype.bind||e,rR}var sR,kJ;function D7(){return kJ||(kJ=1,sR=Function.prototype.call),sR}var iR,SJ;function Fme(){return SJ||(SJ=1,iR=Function.prototype.apply),iR}var aR,CJ;function Ywt(){return CJ||(CJ=1,aR=typeof Reflect<"u"&&Reflect&&Reflect.apply),aR}var cR,qJ;function Zwt(){if(qJ)return cR;qJ=1;var e=B_(),t=Fme(),n=D7(),o=Ywt();return cR=o||e.call(n,t),cR}var lR,RJ;function $me(){if(RJ)return lR;RJ=1;var e=B_(),t=vm(),n=D7(),o=Zwt();return lR=function(s){if(s.length<1||typeof s[0]!="function")throw new t("a function is required");return o(e,n,s)},lR}var uR,TJ;function Qwt(){if(TJ)return uR;TJ=1;var e=$me(),t=jme(),n;try{n=[].__proto__===Array.prototype}catch(i){if(!i||typeof i!="object"||!("code"in i)||i.code!=="ERR_PROTO_ACCESS")throw i}var o=!!n&&t&&t(Object.prototype,"__proto__"),r=Object,s=r.getPrototypeOf;return uR=o&&typeof o.get=="function"?e([o.get]):typeof s=="function"?function(c){return s(c==null?c:r(c))}:!1,uR}var dR,EJ;function Jwt(){if(EJ)return dR;EJ=1;var e=Ime(),t=Dme(),n=Qwt();return dR=e?function(r){return e(r)}:t?function(r){if(!r||typeof r!="object"&&typeof r!="function")throw new TypeError("getProto: not an object");return t(r)}:n?function(r){return n(r)}:null,dR}var pR,WJ;function e_t(){if(WJ)return pR;WJ=1;var e=Function.prototype.call,t=Object.prototype.hasOwnProperty,n=B_();return pR=n.call(e,t),pR}var fR,NJ;function F7(){if(NJ)return fR;NJ=1;var e,t=Pme(),n=Rwt(),o=Twt(),r=Ewt(),s=Wwt(),i=Nwt(),c=vm(),l=Bwt(),u=Lwt(),d=Pwt(),p=jwt(),f=Iwt(),b=Dwt(),h=Fwt(),g=Vwt(),z=Function,A=function(Ae){try{return z('"use strict"; return ('+Ae+").constructor;")()}catch{}},_=jme(),v=Uwt(),M=function(){throw new c},y=_?function(){try{return arguments.callee,M}catch{try{return _(arguments,"callee").get}catch{return M}}}():M,k=Gwt()(),S=Jwt(),C=Dme(),R=Ime(),T=Fme(),E=D7(),B={},N=typeof Uint8Array>"u"||!S?e:S(Uint8Array),j={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?e:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?e:ArrayBuffer,"%ArrayIteratorPrototype%":k&&S?S([][Symbol.iterator]()):e,"%AsyncFromSyncIteratorPrototype%":e,"%AsyncFunction%":B,"%AsyncGenerator%":B,"%AsyncGeneratorFunction%":B,"%AsyncIteratorPrototype%":B,"%Atomics%":typeof Atomics>"u"?e:Atomics,"%BigInt%":typeof BigInt>"u"?e:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?e:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?e:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?e:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":n,"%eval%":eval,"%EvalError%":o,"%Float32Array%":typeof Float32Array>"u"?e:Float32Array,"%Float64Array%":typeof Float64Array>"u"?e:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?e:FinalizationRegistry,"%Function%":z,"%GeneratorFunction%":B,"%Int8Array%":typeof Int8Array>"u"?e:Int8Array,"%Int16Array%":typeof Int16Array>"u"?e:Int16Array,"%Int32Array%":typeof Int32Array>"u"?e:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":k&&S?S(S([][Symbol.iterator]())):e,"%JSON%":typeof JSON=="object"?JSON:e,"%Map%":typeof Map>"u"?e:Map,"%MapIteratorPrototype%":typeof Map>"u"||!k||!S?e:S(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":t,"%Object.getOwnPropertyDescriptor%":_,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?e:Promise,"%Proxy%":typeof Proxy>"u"?e:Proxy,"%RangeError%":r,"%ReferenceError%":s,"%Reflect%":typeof Reflect>"u"?e:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?e:Set,"%SetIteratorPrototype%":typeof Set>"u"||!k||!S?e:S(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?e:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":k&&S?S(""[Symbol.iterator]()):e,"%Symbol%":k?Symbol:e,"%SyntaxError%":i,"%ThrowTypeError%":y,"%TypedArray%":N,"%TypeError%":c,"%Uint8Array%":typeof Uint8Array>"u"?e:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?e:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?e:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?e:Uint32Array,"%URIError%":l,"%WeakMap%":typeof WeakMap>"u"?e:WeakMap,"%WeakRef%":typeof WeakRef>"u"?e:WeakRef,"%WeakSet%":typeof WeakSet>"u"?e:WeakSet,"%Function.prototype.call%":E,"%Function.prototype.apply%":T,"%Object.defineProperty%":v,"%Object.getPrototypeOf%":C,"%Math.abs%":u,"%Math.floor%":d,"%Math.max%":p,"%Math.min%":f,"%Math.pow%":b,"%Math.round%":h,"%Math.sign%":g,"%Reflect.getPrototypeOf%":R};if(S)try{null.error}catch(Ae){var I=S(S(Ae));j["%Error.prototype%"]=I}var P=function Ae(ye){var Ne;if(ye==="%AsyncFunction%")Ne=A("async function () {}");else if(ye==="%GeneratorFunction%")Ne=A("function* () {}");else if(ye==="%AsyncGeneratorFunction%")Ne=A("async function* () {}");else if(ye==="%AsyncGenerator%"){var je=Ae("%AsyncGeneratorFunction%");je&&(Ne=je.prototype)}else if(ye==="%AsyncIteratorPrototype%"){var ie=Ae("%AsyncGenerator%");ie&&S&&(Ne=S(ie.prototype))}return j[ye]=Ne,Ne},$={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},F=B_(),X=e_t(),Z=F.call(E,Array.prototype.concat),V=F.call(T,Array.prototype.splice),ee=F.call(E,String.prototype.replace),te=F.call(E,String.prototype.slice),J=F.call(E,RegExp.prototype.exec),ue=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,ce=/\\(\\)?/g,me=function(ye){var Ne=te(ye,0,1),je=te(ye,-1);if(Ne==="%"&&je!=="%")throw new i("invalid intrinsic syntax, expected closing `%`");if(je==="%"&&Ne!=="%")throw new i("invalid intrinsic syntax, expected opening `%`");var ie=[];return ee(ye,ue,function(we,re,pe,ke){ie[ie.length]=pe?ee(ke,ce,"$1"):re||we}),ie},de=function(ye,Ne){var je=ye,ie;if(X($,je)&&(ie=$[je],je="%"+ie[0]+"%"),X(j,je)){var we=j[je];if(we===B&&(we=P(je)),typeof we>"u"&&!Ne)throw new c("intrinsic "+ye+" exists, but is not available. Please file an issue!");return{alias:ie,name:je,value:we}}throw new i("intrinsic "+ye+" does not exist!")};return fR=function(ye,Ne){if(typeof ye!="string"||ye.length===0)throw new c("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof Ne!="boolean")throw new c('"allowMissing" argument must be a boolean');if(J(/^%?[^%]*%?$/,ye)===null)throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var je=me(ye),ie=je.length>0?je[0]:"",we=de("%"+ie+"%",Ne),re=we.name,pe=we.value,ke=!1,Se=we.alias;Se&&(ie=Se[0],V(je,Z([0,1],Se)));for(var se=1,L=!0;se<je.length;se+=1){var U=je[se],ne=te(U,0,1),ve=te(U,-1);if((ne==='"'||ne==="'"||ne==="`"||ve==='"'||ve==="'"||ve==="`")&&ne!==ve)throw new i("property names with quotes must have matching quotes");if((U==="constructor"||!L)&&(ke=!0),ie+="."+U,re="%"+ie+"%",X(j,re))pe=j[re];else if(pe!=null){if(!(U in pe)){if(!Ne)throw new c("base intrinsic for "+ye+" exists, but the property is not available.");return}if(_&&se+1>=je.length){var qe=_(pe,U);L=!!qe,L&&"get"in qe&&!("originalValue"in qe.get)?pe=qe.get:pe=pe[U]}else L=X(pe,U),pe=pe[U];L&&!ke&&(j[re]=pe)}}return pe},fR}var bR,BJ;function Vme(){if(BJ)return bR;BJ=1;var e=F7(),t=$me(),n=t([e("%String.prototype.indexOf%")]);return bR=function(r,s){var i=e(r,!!s);return typeof i=="function"&&n(r,".prototype.")>-1?t([i]):i},bR}var hR,LJ;function Hme(){if(LJ)return hR;LJ=1;var e=F7(),t=Vme(),n=N_(),o=vm(),r=e("%Map%",!0),s=t("Map.prototype.get",!0),i=t("Map.prototype.set",!0),c=t("Map.prototype.has",!0),l=t("Map.prototype.delete",!0),u=t("Map.prototype.size",!0);return hR=!!r&&function(){var p,f={assert:function(b){if(!f.has(b))throw new o("Side channel does not contain "+n(b))},delete:function(b){if(p){var h=l(p,b);return u(p)===0&&(p=void 0),h}return!1},get:function(b){if(p)return s(p,b)},has:function(b){return p?c(p,b):!1},set:function(b,h){p||(p=new r),i(p,b,h)}};return f},hR}var mR,PJ;function t_t(){if(PJ)return mR;PJ=1;var e=F7(),t=Vme(),n=N_(),o=Hme(),r=vm(),s=e("%WeakMap%",!0),i=t("WeakMap.prototype.get",!0),c=t("WeakMap.prototype.set",!0),l=t("WeakMap.prototype.has",!0),u=t("WeakMap.prototype.delete",!0);return mR=s?function(){var p,f,b={assert:function(h){if(!b.has(h))throw new r("Side channel does not contain "+n(h))},delete:function(h){if(s&&h&&(typeof h=="object"||typeof h=="function")){if(p)return u(p,h)}else if(o&&f)return f.delete(h);return!1},get:function(h){return s&&h&&(typeof h=="object"||typeof h=="function")&&p?i(p,h):f&&f.get(h)},has:function(h){return s&&h&&(typeof h=="object"||typeof h=="function")&&p?l(p,h):!!f&&f.has(h)},set:function(h,g){s&&h&&(typeof h=="object"||typeof h=="function")?(p||(p=new s),c(p,h,g)):o&&(f||(f=o()),f.set(h,g))}};return b}:o,mR}var gR,jJ;function n_t(){if(jJ)return gR;jJ=1;var e=vm(),t=N_(),n=qwt(),o=Hme(),r=t_t(),s=r||o||n;return gR=function(){var c,l={assert:function(u){if(!l.has(u))throw new e("Side channel does not contain "+t(u))},delete:function(u){return!!c&&c.delete(u)},get:function(u){return c&&c.get(u)},has:function(u){return!!c&&c.has(u)},set:function(u,d){c||(c=s()),c.set(u,d)}};return l},gR}var MR,IJ;function $7(){if(IJ)return MR;IJ=1;var e=String.prototype.replace,t=/%20/g,n={RFC1738:"RFC1738",RFC3986:"RFC3986"};return MR={default:n.RFC3986,formatters:{RFC1738:function(o){return e.call(o,t,"+")},RFC3986:function(o){return String(o)}},RFC1738:n.RFC1738,RFC3986:n.RFC3986},MR}var zR,DJ;function Ume(){if(DJ)return zR;DJ=1;var e=$7(),t=Object.prototype.hasOwnProperty,n=Array.isArray,o=function(){for(var z=[],A=0;A<256;++A)z.push("%"+((A<16?"0":"")+A.toString(16)).toUpperCase());return z}(),r=function(A){for(;A.length>1;){var _=A.pop(),v=_.obj[_.prop];if(n(v)){for(var M=[],y=0;y<v.length;++y)typeof v[y]<"u"&&M.push(v[y]);_.obj[_.prop]=M}}},s=function(A,_){for(var v=_&&_.plainObjects?{__proto__:null}:{},M=0;M<A.length;++M)typeof A[M]<"u"&&(v[M]=A[M]);return v},i=function z(A,_,v){if(!_)return A;if(typeof _!="object"&&typeof _!="function"){if(n(A))A.push(_);else if(A&&typeof A=="object")(v&&(v.plainObjects||v.allowPrototypes)||!t.call(Object.prototype,_))&&(A[_]=!0);else return[A,_];return A}if(!A||typeof A!="object")return[A].concat(_);var M=A;return n(A)&&!n(_)&&(M=s(A,v)),n(A)&&n(_)?(_.forEach(function(y,k){if(t.call(A,k)){var S=A[k];S&&typeof S=="object"&&y&&typeof y=="object"?A[k]=z(S,y,v):A.push(y)}else A[k]=y}),A):Object.keys(_).reduce(function(y,k){var S=_[k];return t.call(y,k)?y[k]=z(y[k],S,v):y[k]=S,y},M)},c=function(A,_){return Object.keys(_).reduce(function(v,M){return v[M]=_[M],v},A)},l=function(z,A,_){var v=z.replace(/\+/g," ");if(_==="iso-8859-1")return v.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(v)}catch{return v}},u=1024,d=function(A,_,v,M,y){if(A.length===0)return A;var k=A;if(typeof A=="symbol"?k=Symbol.prototype.toString.call(A):typeof A!="string"&&(k=String(A)),v==="iso-8859-1")return escape(k).replace(/%u[0-9a-f]{4}/gi,function(N){return"%26%23"+parseInt(N.slice(2),16)+"%3B"});for(var S="",C=0;C<k.length;C+=u){for(var R=k.length>=u?k.slice(C,C+u):k,T=[],E=0;E<R.length;++E){var B=R.charCodeAt(E);if(B===45||B===46||B===95||B===126||B>=48&&B<=57||B>=65&&B<=90||B>=97&&B<=122||y===e.RFC1738&&(B===40||B===41)){T[T.length]=R.charAt(E);continue}if(B<128){T[T.length]=o[B];continue}if(B<2048){T[T.length]=o[192|B>>6]+o[128|B&63];continue}if(B<55296||B>=57344){T[T.length]=o[224|B>>12]+o[128|B>>6&63]+o[128|B&63];continue}E+=1,B=65536+((B&1023)<<10|R.charCodeAt(E)&1023),T[T.length]=o[240|B>>18]+o[128|B>>12&63]+o[128|B>>6&63]+o[128|B&63]}S+=T.join("")}return S},p=function(A){for(var _=[{obj:{o:A},prop:"o"}],v=[],M=0;M<_.length;++M)for(var y=_[M],k=y.obj[y.prop],S=Object.keys(k),C=0;C<S.length;++C){var R=S[C],T=k[R];typeof T=="object"&&T!==null&&v.indexOf(T)===-1&&(_.push({obj:k,prop:R}),v.push(T))}return r(_),A},f=function(A){return Object.prototype.toString.call(A)==="[object RegExp]"},b=function(A){return!A||typeof A!="object"?!1:!!(A.constructor&&A.constructor.isBuffer&&A.constructor.isBuffer(A))},h=function(A,_){return[].concat(A,_)},g=function(A,_){if(n(A)){for(var v=[],M=0;M<A.length;M+=1)v.push(_(A[M]));return v}return _(A)};return zR={arrayToObject:s,assign:c,combine:h,compact:p,decode:l,encode:d,isBuffer:b,isRegExp:f,maybeMap:g,merge:i},zR}var OR,FJ;function o_t(){if(FJ)return OR;FJ=1;var e=n_t(),t=Ume(),n=$7(),o=Object.prototype.hasOwnProperty,r={brackets:function(z){return z+"[]"},comma:"comma",indices:function(z,A){return z+"["+A+"]"},repeat:function(z){return z}},s=Array.isArray,i=Array.prototype.push,c=function(g,z){i.apply(g,s(z)?z:[z])},l=Date.prototype.toISOString,u=n.default,d={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:"indices",charset:"utf-8",charsetSentinel:!1,commaRoundTrip:!1,delimiter:"&",encode:!0,encodeDotInKeys:!1,encoder:t.encode,encodeValuesOnly:!1,filter:void 0,format:u,formatter:n.formatters[u],indices:!1,serializeDate:function(z){return l.call(z)},skipNulls:!1,strictNullHandling:!1},p=function(z){return typeof z=="string"||typeof z=="number"||typeof z=="boolean"||typeof z=="symbol"||typeof z=="bigint"},f={},b=function g(z,A,_,v,M,y,k,S,C,R,T,E,B,N,j,I,P,$){for(var F=z,X=$,Z=0,V=!1;(X=X.get(f))!==void 0&&!V;){var ee=X.get(z);if(Z+=1,typeof ee<"u"){if(ee===Z)throw new RangeError("Cyclic object value");V=!0}typeof X.get(f)>"u"&&(Z=0)}if(typeof R=="function"?F=R(A,F):F instanceof Date?F=B(F):_==="comma"&&s(F)&&(F=t.maybeMap(F,function(re){return re instanceof Date?B(re):re})),F===null){if(y)return C&&!I?C(A,d.encoder,P,"key",N):A;F=""}if(p(F)||t.isBuffer(F)){if(C){var te=I?A:C(A,d.encoder,P,"key",N);return[j(te)+"="+j(C(F,d.encoder,P,"value",N))]}return[j(A)+"="+j(String(F))]}var J=[];if(typeof F>"u")return J;var ue;if(_==="comma"&&s(F))I&&C&&(F=t.maybeMap(F,C)),ue=[{value:F.length>0?F.join(",")||null:void 0}];else if(s(R))ue=R;else{var ce=Object.keys(F);ue=T?ce.sort(T):ce}var me=S?String(A).replace(/\./g,"%2E"):String(A),de=v&&s(F)&&F.length===1?me+"[]":me;if(M&&s(F)&&F.length===0)return de+"[]";for(var Ae=0;Ae<ue.length;++Ae){var ye=ue[Ae],Ne=typeof ye=="object"&&ye&&typeof ye.value<"u"?ye.value:F[ye];if(!(k&&Ne===null)){var je=E&&S?String(ye).replace(/\./g,"%2E"):String(ye),ie=s(F)?typeof _=="function"?_(de,je):de:de+(E?"."+je:"["+je+"]");$.set(z,Z);var we=e();we.set(f,$),c(J,g(Ne,ie,_,v,M,y,k,S,_==="comma"&&I&&s(F)?null:C,R,T,E,B,N,j,I,P,we))}}return J},h=function(z){if(!z)return d;if(typeof z.allowEmptyArrays<"u"&&typeof z.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof z.encodeDotInKeys<"u"&&typeof z.encodeDotInKeys!="boolean")throw new TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided");if(z.encoder!==null&&typeof z.encoder<"u"&&typeof z.encoder!="function")throw new TypeError("Encoder has to be a function.");var A=z.charset||d.charset;if(typeof z.charset<"u"&&z.charset!=="utf-8"&&z.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var _=n.default;if(typeof z.format<"u"){if(!o.call(n.formatters,z.format))throw new TypeError("Unknown format option provided.");_=z.format}var v=n.formatters[_],M=d.filter;(typeof z.filter=="function"||s(z.filter))&&(M=z.filter);var y;if(z.arrayFormat in r?y=z.arrayFormat:"indices"in z?y=z.indices?"indices":"repeat":y=d.arrayFormat,"commaRoundTrip"in z&&typeof z.commaRoundTrip!="boolean")throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var k=typeof z.allowDots>"u"?z.encodeDotInKeys===!0?!0:d.allowDots:!!z.allowDots;return{addQueryPrefix:typeof z.addQueryPrefix=="boolean"?z.addQueryPrefix:d.addQueryPrefix,allowDots:k,allowEmptyArrays:typeof z.allowEmptyArrays=="boolean"?!!z.allowEmptyArrays:d.allowEmptyArrays,arrayFormat:y,charset:A,charsetSentinel:typeof z.charsetSentinel=="boolean"?z.charsetSentinel:d.charsetSentinel,commaRoundTrip:!!z.commaRoundTrip,delimiter:typeof z.delimiter>"u"?d.delimiter:z.delimiter,encode:typeof z.encode=="boolean"?z.encode:d.encode,encodeDotInKeys:typeof z.encodeDotInKeys=="boolean"?z.encodeDotInKeys:d.encodeDotInKeys,encoder:typeof z.encoder=="function"?z.encoder:d.encoder,encodeValuesOnly:typeof z.encodeValuesOnly=="boolean"?z.encodeValuesOnly:d.encodeValuesOnly,filter:M,format:_,formatter:v,serializeDate:typeof z.serializeDate=="function"?z.serializeDate:d.serializeDate,skipNulls:typeof z.skipNulls=="boolean"?z.skipNulls:d.skipNulls,sort:typeof z.sort=="function"?z.sort:null,strictNullHandling:typeof z.strictNullHandling=="boolean"?z.strictNullHandling:d.strictNullHandling}};return OR=function(g,z){var A=g,_=h(z),v,M;typeof _.filter=="function"?(M=_.filter,A=M("",A)):s(_.filter)&&(M=_.filter,v=M);var y=[];if(typeof A!="object"||A===null)return"";var k=r[_.arrayFormat],S=k==="comma"&&_.commaRoundTrip;v||(v=Object.keys(A)),_.sort&&v.sort(_.sort);for(var C=e(),R=0;R<v.length;++R){var T=v[R],E=A[T];_.skipNulls&&E===null||c(y,b(E,T,k,S,_.allowEmptyArrays,_.strictNullHandling,_.skipNulls,_.encodeDotInKeys,_.encode?_.encoder:null,_.filter,_.sort,_.allowDots,_.serializeDate,_.format,_.formatter,_.encodeValuesOnly,_.charset,C))}var B=y.join(_.delimiter),N=_.addQueryPrefix===!0?"?":"";return _.charsetSentinel&&(_.charset==="iso-8859-1"?N+="utf8=%26%2310003%3B&":N+="utf8=%E2%9C%93&"),B.length>0?N+B:""},OR}var yR,$J;function r_t(){if($J)return yR;$J=1;var e=Ume(),t=Object.prototype.hasOwnProperty,n=Array.isArray,o={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:e.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictDepth:!1,strictNullHandling:!1,throwOnLimitExceeded:!1},r=function(f){return f.replace(/&#(\d+);/g,function(b,h){return String.fromCharCode(parseInt(h,10))})},s=function(f,b,h){if(f&&typeof f=="string"&&b.comma&&f.indexOf(",")>-1)return f.split(",");if(b.throwOnLimitExceeded&&h>=b.arrayLimit)throw new RangeError("Array limit exceeded. Only "+b.arrayLimit+" element"+(b.arrayLimit===1?"":"s")+" allowed in an array.");return f},i="utf8=%26%2310003%3B",c="utf8=%E2%9C%93",l=function(b,h){var g={__proto__:null},z=h.ignoreQueryPrefix?b.replace(/^\?/,""):b;z=z.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var A=h.parameterLimit===1/0?void 0:h.parameterLimit,_=z.split(h.delimiter,h.throwOnLimitExceeded?A+1:A);if(h.throwOnLimitExceeded&&_.length>A)throw new RangeError("Parameter limit exceeded. Only "+A+" parameter"+(A===1?"":"s")+" allowed.");var v=-1,M,y=h.charset;if(h.charsetSentinel)for(M=0;M<_.length;++M)_[M].indexOf("utf8=")===0&&(_[M]===c?y="utf-8":_[M]===i&&(y="iso-8859-1"),v=M,M=_.length);for(M=0;M<_.length;++M)if(M!==v){var k=_[M],S=k.indexOf("]="),C=S===-1?k.indexOf("="):S+1,R,T;C===-1?(R=h.decoder(k,o.decoder,y,"key"),T=h.strictNullHandling?null:""):(R=h.decoder(k.slice(0,C),o.decoder,y,"key"),T=e.maybeMap(s(k.slice(C+1),h,n(g[R])?g[R].length:0),function(B){return h.decoder(B,o.decoder,y,"value")})),T&&h.interpretNumericEntities&&y==="iso-8859-1"&&(T=r(String(T))),k.indexOf("[]=")>-1&&(T=n(T)?[T]:T);var E=t.call(g,R);E&&h.duplicates==="combine"?g[R]=e.combine(g[R],T):(!E||h.duplicates==="last")&&(g[R]=T)}return g},u=function(f,b,h,g){var z=0;if(f.length>0&&f[f.length-1]==="[]"){var A=f.slice(0,-1).join("");z=Array.isArray(b)&&b[A]?b[A].length:0}for(var _=g?b:s(b,h,z),v=f.length-1;v>=0;--v){var M,y=f[v];if(y==="[]"&&h.parseArrays)M=h.allowEmptyArrays&&(_===""||h.strictNullHandling&&_===null)?[]:e.combine([],_);else{M=h.plainObjects?{__proto__:null}:{};var k=y.charAt(0)==="["&&y.charAt(y.length-1)==="]"?y.slice(1,-1):y,S=h.decodeDotInKeys?k.replace(/%2E/g,"."):k,C=parseInt(S,10);!h.parseArrays&&S===""?M={0:_}:!isNaN(C)&&y!==S&&String(C)===S&&C>=0&&h.parseArrays&&C<=h.arrayLimit?(M=[],M[C]=_):S!=="__proto__"&&(M[S]=_)}_=M}return _},d=function(b,h,g,z){if(b){var A=g.allowDots?b.replace(/\.([^.[]+)/g,"[$1]"):b,_=/(\[[^[\]]*])/,v=/(\[[^[\]]*])/g,M=g.depth>0&&_.exec(A),y=M?A.slice(0,M.index):A,k=[];if(y){if(!g.plainObjects&&t.call(Object.prototype,y)&&!g.allowPrototypes)return;k.push(y)}for(var S=0;g.depth>0&&(M=v.exec(A))!==null&&S<g.depth;){if(S+=1,!g.plainObjects&&t.call(Object.prototype,M[1].slice(1,-1))&&!g.allowPrototypes)return;k.push(M[1])}if(M){if(g.strictDepth===!0)throw new RangeError("Input depth exceeded depth option of "+g.depth+" and strictDepth is true");k.push("["+A.slice(M.index)+"]")}return u(k,h,g,z)}},p=function(b){if(!b)return o;if(typeof b.allowEmptyArrays<"u"&&typeof b.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof b.decodeDotInKeys<"u"&&typeof b.decodeDotInKeys!="boolean")throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");if(b.decoder!==null&&typeof b.decoder<"u"&&typeof b.decoder!="function")throw new TypeError("Decoder has to be a function.");if(typeof b.charset<"u"&&b.charset!=="utf-8"&&b.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");if(typeof b.throwOnLimitExceeded<"u"&&typeof b.throwOnLimitExceeded!="boolean")throw new TypeError("`throwOnLimitExceeded` option must be a boolean");var h=typeof b.charset>"u"?o.charset:b.charset,g=typeof b.duplicates>"u"?o.duplicates:b.duplicates;if(g!=="combine"&&g!=="first"&&g!=="last")throw new TypeError("The duplicates option must be either combine, first, or last");var z=typeof b.allowDots>"u"?b.decodeDotInKeys===!0?!0:o.allowDots:!!b.allowDots;return{allowDots:z,allowEmptyArrays:typeof b.allowEmptyArrays=="boolean"?!!b.allowEmptyArrays:o.allowEmptyArrays,allowPrototypes:typeof b.allowPrototypes=="boolean"?b.allowPrototypes:o.allowPrototypes,allowSparse:typeof b.allowSparse=="boolean"?b.allowSparse:o.allowSparse,arrayLimit:typeof b.arrayLimit=="number"?b.arrayLimit:o.arrayLimit,charset:h,charsetSentinel:typeof b.charsetSentinel=="boolean"?b.charsetSentinel:o.charsetSentinel,comma:typeof b.comma=="boolean"?b.comma:o.comma,decodeDotInKeys:typeof b.decodeDotInKeys=="boolean"?b.decodeDotInKeys:o.decodeDotInKeys,decoder:typeof b.decoder=="function"?b.decoder:o.decoder,delimiter:typeof b.delimiter=="string"||e.isRegExp(b.delimiter)?b.delimiter:o.delimiter,depth:typeof b.depth=="number"||b.depth===!1?+b.depth:o.depth,duplicates:g,ignoreQueryPrefix:b.ignoreQueryPrefix===!0,interpretNumericEntities:typeof b.interpretNumericEntities=="boolean"?b.interpretNumericEntities:o.interpretNumericEntities,parameterLimit:typeof b.parameterLimit=="number"?b.parameterLimit:o.parameterLimit,parseArrays:b.parseArrays!==!1,plainObjects:typeof b.plainObjects=="boolean"?b.plainObjects:o.plainObjects,strictDepth:typeof b.strictDepth=="boolean"?!!b.strictDepth:o.strictDepth,strictNullHandling:typeof b.strictNullHandling=="boolean"?b.strictNullHandling:o.strictNullHandling,throwOnLimitExceeded:typeof b.throwOnLimitExceeded=="boolean"?b.throwOnLimitExceeded:!1}};return yR=function(f,b){var h=p(b);if(f===""||f===null||typeof f>"u")return h.plainObjects?{__proto__:null}:{};for(var g=typeof f=="string"?l(f,h):f,z=h.plainObjects?{__proto__:null}:{},A=Object.keys(g),_=0;_<A.length;++_){var v=A[_],M=d(v,g[v],h,typeof f=="string");z=e.merge(z,M,h)}return h.allowSparse===!0?z:e.compact(z)},yR}var AR,VJ;function s_t(){if(VJ)return AR;VJ=1;var e=o_t(),t=r_t(),n=$7();return AR={formats:n,parse:t,stringify:e},AR}var i_t=s_t();const a_t=Zr(i_t);var c_t=Cwt;function Ri(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}var l_t=/^([a-z0-9.+-]+:)/i,u_t=/:[0-9]*$/,d_t=/^(\/\/?(?!\/)[^?\s]*)(\?[^\s]*)?$/,p_t=["<",">",'"',"`"," ","\r",` -`," "],f_t=["{","}","|","\\","^","`"].concat(p_t),PW=["'"].concat(f_t),HJ=["%","/","?",";","#"].concat(PW),UJ=["/","?","#"],b_t=255,XJ=/^[+a-z0-9A-Z_-]{0,63}$/,h_t=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,m_t={javascript:!0,"javascript:":!0},jW={javascript:!0,"javascript:":!0},V2={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},IW=a_t;function CO(e,t,n){if(e&&typeof e=="object"&&e instanceof Ri)return e;var o=new Ri;return o.parse(e,t,n),o}Ri.prototype.parse=function(e,t,n){if(typeof e!="string")throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var o=e.indexOf("?"),r=o!==-1&&o<e.indexOf("#")?"?":"#",s=e.split(r),i=/\\/g;s[0]=s[0].replace(i,"/"),e=s.join(r);var c=e;if(c=c.trim(),!n&&e.split("#").length===1){var l=d_t.exec(c);if(l)return this.path=c,this.href=c,this.pathname=l[1],l[2]?(this.search=l[2],t?this.query=IW.parse(this.search.substr(1)):this.query=this.search.substr(1)):t&&(this.search="",this.query={}),this}var u=l_t.exec(c);if(u){u=u[0];var d=u.toLowerCase();this.protocol=d,c=c.substr(u.length)}if(n||u||c.match(/^\/\/[^@/]+@[^@/]+/)){var p=c.substr(0,2)==="//";p&&!(u&&jW[u])&&(c=c.substr(2),this.slashes=!0)}if(!jW[u]&&(p||u&&!V2[u])){for(var f=-1,b=0;b<UJ.length;b++){var h=c.indexOf(UJ[b]);h!==-1&&(f===-1||h<f)&&(f=h)}var g,z;f===-1?z=c.lastIndexOf("@"):z=c.lastIndexOf("@",f),z!==-1&&(g=c.slice(0,z),c=c.slice(z+1),this.auth=decodeURIComponent(g)),f=-1;for(var b=0;b<HJ.length;b++){var h=c.indexOf(HJ[b]);h!==-1&&(f===-1||h<f)&&(f=h)}f===-1&&(f=c.length),this.host=c.slice(0,f),c=c.slice(f),this.parseHost(),this.hostname=this.hostname||"";var A=this.hostname[0]==="["&&this.hostname[this.hostname.length-1]==="]";if(!A)for(var _=this.hostname.split(/\./),b=0,v=_.length;b<v;b++){var M=_[b];if(M&&!M.match(XJ)){for(var y="",k=0,S=M.length;k<S;k++)M.charCodeAt(k)>127?y+="x":y+=M[k];if(!y.match(XJ)){var C=_.slice(0,b),R=_.slice(b+1),T=M.match(h_t);T&&(C.push(T[1]),R.unshift(T[2])),R.length&&(c="/"+R.join(".")+c),this.hostname=C.join(".");break}}}this.hostname.length>b_t?this.hostname="":this.hostname=this.hostname.toLowerCase(),A||(this.hostname=c_t.toASCII(this.hostname));var E=this.port?":"+this.port:"",B=this.hostname||"";this.host=B+E,this.href+=this.host,A&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),c[0]!=="/"&&(c="/"+c))}if(!m_t[d])for(var b=0,v=PW.length;b<v;b++){var N=PW[b];if(c.indexOf(N)!==-1){var j=encodeURIComponent(N);j===N&&(j=escape(N)),c=c.split(N).join(j)}}var I=c.indexOf("#");I!==-1&&(this.hash=c.substr(I),c=c.slice(0,I));var P=c.indexOf("?");if(P!==-1?(this.search=c.substr(P),this.query=c.substr(P+1),t&&(this.query=IW.parse(this.query)),c=c.slice(0,P)):t&&(this.search="",this.query={}),c&&(this.pathname=c),V2[d]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){var E=this.pathname||"",$=this.search||"";this.path=E+$}return this.href=this.format(),this};function g_t(e){return typeof e=="string"&&(e=CO(e)),e instanceof Ri?e.format():Ri.prototype.format.call(e)}Ri.prototype.format=function(){var e=this.auth||"";e&&(e=encodeURIComponent(e),e=e.replace(/%3A/i,":"),e+="@");var t=this.protocol||"",n=this.pathname||"",o=this.hash||"",r=!1,s="";this.host?r=e+this.host:this.hostname&&(r=e+(this.hostname.indexOf(":")===-1?this.hostname:"["+this.hostname+"]"),this.port&&(r+=":"+this.port)),this.query&&typeof this.query=="object"&&Object.keys(this.query).length&&(s=IW.stringify(this.query,{arrayFormat:"repeat",addQueryPrefix:!1}));var i=this.search||s&&"?"+s||"";return t&&t.substr(-1)!==":"&&(t+=":"),this.slashes||(!t||V2[t])&&r!==!1?(r="//"+(r||""),n&&n.charAt(0)!=="/"&&(n="/"+n)):r||(r=""),o&&o.charAt(0)!=="#"&&(o="#"+o),i&&i.charAt(0)!=="?"&&(i="?"+i),n=n.replace(/[?#]/g,function(c){return encodeURIComponent(c)}),i=i.replace("#","%23"),t+r+n+i+o};function M_t(e,t){return CO(e,!1,!0).resolve(t)}Ri.prototype.resolve=function(e){return this.resolveObject(CO(e,!1,!0)).format()};function z_t(e,t){return e?CO(e,!1,!0).resolveObject(t):t}Ri.prototype.resolveObject=function(e){if(typeof e=="string"){var t=new Ri;t.parse(e,!1,!0),e=t}for(var n=new Ri,o=Object.keys(this),r=0;r<o.length;r++){var s=o[r];n[s]=this[s]}if(n.hash=e.hash,e.href==="")return n.href=n.format(),n;if(e.slashes&&!e.protocol){for(var i=Object.keys(e),c=0;c<i.length;c++){var l=i[c];l!=="protocol"&&(n[l]=e[l])}return V2[n.protocol]&&n.hostname&&!n.pathname&&(n.pathname="/",n.path=n.pathname),n.href=n.format(),n}if(e.protocol&&e.protocol!==n.protocol){if(!V2[e.protocol]){for(var u=Object.keys(e),d=0;d<u.length;d++){var p=u[d];n[p]=e[p]}return n.href=n.format(),n}if(n.protocol=e.protocol,!e.host&&!jW[e.protocol]){for(var v=(e.pathname||"").split("/");v.length&&!(e.host=v.shift()););e.host||(e.host=""),e.hostname||(e.hostname=""),v[0]!==""&&v.unshift(""),v.length<2&&v.unshift(""),n.pathname=v.join("/")}else n.pathname=e.pathname;if(n.search=e.search,n.query=e.query,n.host=e.host||"",n.auth=e.auth,n.hostname=e.hostname||e.host,n.port=e.port,n.pathname||n.search){var f=n.pathname||"",b=n.search||"";n.path=f+b}return n.slashes=n.slashes||e.slashes,n.href=n.format(),n}var h=n.pathname&&n.pathname.charAt(0)==="/",g=e.host||e.pathname&&e.pathname.charAt(0)==="/",z=g||h||n.host&&e.pathname,A=z,_=n.pathname&&n.pathname.split("/")||[],v=e.pathname&&e.pathname.split("/")||[],M=n.protocol&&!V2[n.protocol];if(M&&(n.hostname="",n.port=null,n.host&&(_[0]===""?_[0]=n.host:_.unshift(n.host)),n.host="",e.protocol&&(e.hostname=null,e.port=null,e.host&&(v[0]===""?v[0]=e.host:v.unshift(e.host)),e.host=null),z=z&&(v[0]===""||_[0]==="")),g)n.host=e.host||e.host===""?e.host:n.host,n.hostname=e.hostname||e.hostname===""?e.hostname:n.hostname,n.search=e.search,n.query=e.query,_=v;else if(v.length)_||(_=[]),_.pop(),_=_.concat(v),n.search=e.search,n.query=e.query;else if(e.search!=null){if(M){n.host=_.shift(),n.hostname=n.host;var y=n.host&&n.host.indexOf("@")>0?n.host.split("@"):!1;y&&(n.auth=y.shift(),n.hostname=y.shift(),n.host=n.hostname)}return n.search=e.search,n.query=e.query,(n.pathname!==null||n.search!==null)&&(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!_.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var k=_.slice(-1)[0],S=(n.host||e.host||_.length>1)&&(k==="."||k==="..")||k==="",C=0,R=_.length;R>=0;R--)k=_[R],k==="."?_.splice(R,1):k===".."?(_.splice(R,1),C++):C&&(_.splice(R,1),C--);if(!z&&!A)for(;C--;C)_.unshift("..");z&&_[0]!==""&&(!_[0]||_[0].charAt(0)!=="/")&&_.unshift(""),S&&_.join("/").substr(-1)!=="/"&&_.push("");var T=_[0]===""||_[0]&&_[0].charAt(0)==="/";if(M){n.hostname=T?"":_.length?_.shift():"",n.host=n.hostname;var y=n.host&&n.host.indexOf("@")>0?n.host.split("@"):!1;y&&(n.auth=y.shift(),n.hostname=y.shift(),n.host=n.hostname)}return z=z||n.host&&_.length,z&&!T&&_.unshift(""),_.length>0?n.pathname=_.join("/"):(n.pathname=null,n.path=null),(n.pathname!==null||n.search!==null)&&(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n};Ri.prototype.parseHost=function(){var e=this.host,t=u_t.exec(e);t&&(t=t[0],t!==":"&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};var O_t=CO,y_t=M_t,Xme=z_t,A_t=g_t,v_t=Ri;function x_t(e,t){for(var n=0,o=e.length-1;o>=0;o--){var r=e[o];r==="."?e.splice(o,1):r===".."?(e.splice(o,1),n++):n&&(e.splice(o,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function w_t(){for(var e="",t=!1,n=arguments.length-1;n>=-1&&!t;n--){var o=n>=0?arguments[n]:"/";if(typeof o!="string")throw new TypeError("Arguments to path.resolve must be strings");if(!o)continue;e=o+"/"+e,t=o.charAt(0)==="/"}return e=x_t(__t(e.split("/"),function(r){return!!r}),!t).join("/"),(t?"/":"")+e||"."}function __t(e,t){if(e.filter)return e.filter(t);for(var n=[],o=0;o<e.length;o++)t(e[o],o,e)&&n.push(e[o]);return n}var Gme=function(e){function t(){var o=this||self;return delete e.prototype.__magic__,o}if(typeof globalThis=="object")return globalThis;if(this)return t();e.defineProperty(e.prototype,"__magic__",{configurable:!0,get:t});var n=__magic__;return n}(Object),k_t=A_t,Kme=O_t,Yme=y_t,Zme=v_t,$d=Gme.URL,Qme=Gme.URLSearchParams,S_t=/%/g,C_t=/\\/g,q_t=/\n/g,R_t=/\r/g,T_t=/\t/g,E_t=47;function W_t(e){var t=e??null;return!!(t!==null&&t?.href&&t?.origin)}function N_t(e){if(e.hostname!=="")throw new TypeError('File URL host must be "localhost" or empty on browser');for(var t=e.pathname,n=0;n<t.length;n++)if(t[n]==="%"){var o=t.codePointAt(n+2)|32;if(t[n+1]==="2"&&o===102)throw new TypeError("File URL path must not include encoded / characters")}return decodeURIComponent(t)}function B_t(e){return e.includes("%")&&(e=e.replace(S_t,"%25")),e.includes("\\")&&(e=e.replace(C_t,"%5C")),e.includes(` -`)&&(e=e.replace(q_t,"%0A")),e.includes("\r")&&(e=e.replace(R_t,"%0D")),e.includes(" ")&&(e=e.replace(T_t,"%09")),e}var Jme=function(t){if(typeof t>"u")throw new TypeError('The "domain" argument must be specified');return new $d("http://"+t).hostname},ege=function(t){if(typeof t>"u")throw new TypeError('The "domain" argument must be specified');return new $d("http://"+t).hostname},tge=function(t){var n=new $d("file://"),o=w_t(t),r=t.charCodeAt(t.length-1);return r===E_t&&o[o.length-1]!=="/"&&(o+="/"),n.pathname=B_t(o),n},nge=function(t){if(!W_t(t)&&typeof t!="string")throw new TypeError('The "path" argument must be of type string or an instance of URL. Received type '+typeof t+" ("+t+")");var n=new $d(t);if(n.protocol!=="file:")throw new TypeError("The URL must be of scheme file");return N_t(n)},oge=function(t,n){var o,r,s,i;if(n===void 0&&(n={}),!(t instanceof $d))return k_t(t);if(typeof n!="object"||n===null)throw new TypeError('The "options" argument must be of type object.');var c=(o=n.auth)!=null?o:!0,l=(r=n.fragment)!=null?r:!0,u=(s=n.search)!=null?s:!0;(i=n.unicode)!=null;var d=new $d(t.toString());return c||(d.username="",d.password=""),l||(d.hash=""),u||(d.search=""),d.toString()},L_t={format:oge,parse:Kme,resolve:Yme,resolveObject:Xme,Url:Zme,URL:$d,URLSearchParams:Qme,domainToASCII:Jme,domainToUnicode:ege,pathToFileURL:tge,fileURLToPath:nge};const P_t=Object.freeze(Object.defineProperty({__proto__:null,URL:$d,URLSearchParams:Qme,Url:Zme,default:L_t,domainToASCII:Jme,domainToUnicode:ege,fileURLToPath:nge,format:oge,parse:Kme,pathToFileURL:tge,resolve:Yme,resolveObject:Xme},Symbol.toStringTag,{value:"Module"})),rge=y5(P_t);var vR,GJ;function j_t(){if(GJ)return vR;GJ=1;let e="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";return vR={nanoid:(o=21)=>{let r="",s=o;for(;s--;)r+=e[Math.random()*64|0];return r},customAlphabet:(o,r=21)=>(s=r)=>{let i="",c=s;for(;c--;)i+=o[Math.random()*o.length|0];return i}},vR}var I_t=null;const D_t=Object.freeze(Object.defineProperty({__proto__:null,default:I_t},Symbol.toStringTag,{value:"Module"})),F_t=y5(D_t);var xR,KJ;function $_t(){if(KJ)return xR;KJ=1;let{existsSync:e,readFileSync:t}=F_t,{dirname:n,join:o}=I7(),{SourceMapConsumer:r,SourceMapGenerator:s}=_h;function i(l){return rh?rh.from(l,"base64").toString():window.atob(l)}class c{constructor(u,d){if(d.map===!1)return;this.loadAnnotation(u),this.inline=this.startWith(this.annotation,"data:");let p=d.map?d.map.prev:void 0,f=this.loadMap(d.from,p);!this.mapFile&&d.from&&(this.mapFile=d.from),this.mapFile&&(this.root=n(this.mapFile)),f&&(this.text=f)}consumer(){return this.consumerCache||(this.consumerCache=new r(this.text)),this.consumerCache}decodeInline(u){let d=/^data:application\/json;charset=utf-?8;base64,/,p=/^data:application\/json;base64,/,f=/^data:application\/json;charset=utf-?8,/,b=/^data:application\/json,/,h=u.match(f)||u.match(b);if(h)return decodeURIComponent(u.substr(h[0].length));let g=u.match(d)||u.match(p);if(g)return i(u.substr(g[0].length));let z=u.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+z)}getAnnotationURL(u){return u.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}isMap(u){return typeof u!="object"?!1:typeof u.mappings=="string"||typeof u._mappings=="string"||Array.isArray(u.sections)}loadAnnotation(u){let d=u.match(/\/\*\s*# sourceMappingURL=/g);if(!d)return;let p=u.lastIndexOf(d.pop()),f=u.indexOf("*/",p);p>-1&&f>-1&&(this.annotation=this.getAnnotationURL(u.substring(p,f)))}loadFile(u){if(this.root=n(u),e(u))return this.mapFile=u,t(u,"utf-8").toString().trim()}loadMap(u,d){if(d===!1)return!1;if(d){if(typeof d=="string")return d;if(typeof d=="function"){let p=d(u);if(p){let f=this.loadFile(p);if(!f)throw new Error("Unable to load previous source map: "+p.toString());return f}}else{if(d instanceof r)return s.fromSourceMap(d).toString();if(d instanceof s)return d.toString();if(this.isMap(d))return JSON.stringify(d);throw new Error("Unsupported previous source map format: "+d.toString())}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let p=this.annotation;return u&&(p=o(n(u),p)),this.loadFile(p)}}}startWith(u,d){return u?u.substr(0,d.length)===d:!1}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}return xR=c,c.default=c,xR}var wR,YJ;function sge(){if(YJ)return wR;YJ=1;let{nanoid:e}=j_t(),{isAbsolute:t,resolve:n}=I7(),{SourceMapConsumer:o,SourceMapGenerator:r}=_h,{fileURLToPath:s,pathToFileURL:i}=rge,c=B7(),l=$_t(),u=_h,d=Symbol("fromOffsetCache"),p=!!(o&&r),f=!!(n&&t);class b{constructor(g,z={}){if(g===null||typeof g>"u"||typeof g=="object"&&!g.toString)throw new Error(`PostCSS received ${g} instead of CSS string`);if(this.css=g.toString(),this.css[0]==="\uFEFF"||this.css[0]===""?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,z.from&&(!f||/^\w+:\/\//.test(z.from)||t(z.from)?this.file=z.from:this.file=n(z.from)),f&&p){let A=new l(this.css,z);if(A.text){this.map=A;let _=A.consumer().file;!this.file&&_&&(this.file=this.mapResolve(_))}}this.file||(this.id="<input css "+e(6)+">"),this.map&&(this.map.file=this.from)}error(g,z,A,_={}){let v,M,y;if(z&&typeof z=="object"){let S=z,C=A;if(typeof S.offset=="number"){let R=this.fromOffset(S.offset);z=R.line,A=R.col}else z=S.line,A=S.column;if(typeof C.offset=="number"){let R=this.fromOffset(C.offset);M=R.line,v=R.col}else M=C.line,v=C.column}else if(!A){let S=this.fromOffset(z);z=S.line,A=S.col}let k=this.origin(z,A,M,v);return k?y=new c(g,k.endLine===void 0?k.line:{column:k.column,line:k.line},k.endLine===void 0?k.column:{column:k.endColumn,line:k.endLine},k.source,k.file,_.plugin):y=new c(g,M===void 0?z:{column:A,line:z},M===void 0?A:{column:v,line:M},this.css,this.file,_.plugin),y.input={column:A,endColumn:v,endLine:M,line:z,source:this.css},this.file&&(i&&(y.input.url=i(this.file).toString()),y.input.file=this.file),y}fromOffset(g){let z,A;if(this[d])A=this[d];else{let v=this.css.split(` -`);A=new Array(v.length);let M=0;for(let y=0,k=v.length;y<k;y++)A[y]=M,M+=v[y].length+1;this[d]=A}z=A[A.length-1];let _=0;if(g>=z)_=A.length-1;else{let v=A.length-2,M;for(;_<v;)if(M=_+(v-_>>1),g<A[M])v=M-1;else if(g>=A[M+1])_=M+1;else{_=M;break}}return{col:g-A[_]+1,line:_+1}}mapResolve(g){return/^\w+:\/\//.test(g)?g:n(this.map.consumer().sourceRoot||this.map.root||".",g)}origin(g,z,A,_){if(!this.map)return!1;let v=this.map.consumer(),M=v.originalPositionFor({column:z,line:g});if(!M.source)return!1;let y;typeof A=="number"&&(y=v.originalPositionFor({column:_,line:A}));let k;t(M.source)?k=i(M.source):k=new URL(M.source,this.map.consumer().sourceRoot||i(this.map.mapFile));let S={column:M.column,endColumn:y&&y.column,endLine:y&&y.line,line:M.line,url:k.toString()};if(k.protocol==="file:")if(s)S.file=s(k);else throw new Error("file: protocol is not available in this PostCSS build");let C=v.sourceContentFor(M.source);return C&&(S.source=C),S}toJSON(){let g={};for(let z of["hasBOM","css","file","id"])this[z]!=null&&(g[z]=this[z]);return this.map&&(g.map={...this.map},g.map.consumerCache&&(g.map.consumerCache=void 0)),g}get from(){return this.file||this.id}}return wR=b,b.default=b,u&&u.registerInput&&u.registerInput(b),wR}var _R,ZJ;function ige(){if(ZJ)return _R;ZJ=1;let{dirname:e,relative:t,resolve:n,sep:o}=I7(),{SourceMapConsumer:r,SourceMapGenerator:s}=_h,{pathToFileURL:i}=rge,c=sge(),l=!!(r&&s),u=!!(e&&n&&t&&o);class d{constructor(f,b,h,g){this.stringify=f,this.mapOpts=h.map||{},this.root=b,this.opts=h,this.css=g,this.originalCSS=g,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let f;this.isInline()?f="data:application/json;base64,"+this.toBase64(this.map.toString()):typeof this.mapOpts.annotation=="string"?f=this.mapOpts.annotation:typeof this.mapOpts.annotation=="function"?f=this.mapOpts.annotation(this.opts.to,this.root):f=this.outputFile()+".map";let b=` +`+ze.prev}function Re(be,ze){var nt=ce(be),Mt=[];if(nt){Mt.length=be.length;for(var ot=0;ot<be.length;ot++)Mt[ot]=pe(be,ot)?ze(be[ot],be):""}var Ue=typeof B=="function"?B(be):[],yt;if(j){yt={};for(var fn=0;fn<Ue.length;fn++)yt["$"+Ue[fn]]=Ue[fn]}for(var Ln in be)pe(be,Ln)&&(nt&&String(Number(Ln))===Ln&&Ln<be.length||j&&yt["$"+Ln]instanceof Symbol||(k.call(/[^\w$]/,Ln)?Mt.push(ze(Ln,be)+": "+ze(be[Ln],be)):Mt.push(Ln+": "+ze(be[Ln],be))));if(typeof B=="function")for(var Mo=0;Mo<Ue.length;Mo++)P.call(be,Ue[Mo])&&Mt.push("["+ze(Ue[Mo])+"]: "+ze(be[Ue[Mo]],be));return Mt}return Tq}var Eq,nJ;function Cwt(){if(nJ)return Eq;nJ=1;var e=W_(),t=vm(),n=function(c,l,u){for(var d=c,p;(p=d.next)!=null;d=p)if(p.key===l)return d.next=p.next,u||(p.next=c.next,c.next=p),p},o=function(c,l){if(c){var u=n(c,l);return u&&u.value}},r=function(c,l,u){var d=n(c,l);d?d.value=u:c.next={key:l,next:c.next,value:u}},s=function(c,l){return c?!!n(c,l):!1},i=function(c,l){if(c)return n(c,l,!0)};return Eq=function(){var l,u={assert:function(d){if(!u.has(d))throw new t("Side channel does not contain "+e(d))},delete:function(d){var p=l&&l.next,f=i(l,d);return f&&p&&p===f&&(l=void 0),!!f},get:function(d){return o(l,d)},has:function(d){return s(l,d)},set:function(d,p){l||(l={next:void 0}),r(l,d,p)}};return u},Eq}var Wq,oJ;function Pme(){return oJ||(oJ=1,Wq=Object),Wq}var Nq,rJ;function qwt(){return rJ||(rJ=1,Nq=Error),Nq}var Bq,sJ;function Rwt(){return sJ||(sJ=1,Bq=EvalError),Bq}var Lq,iJ;function Twt(){return iJ||(iJ=1,Lq=RangeError),Lq}var Pq,aJ;function Ewt(){return aJ||(aJ=1,Pq=ReferenceError),Pq}var jq,cJ;function Wwt(){return cJ||(cJ=1,jq=SyntaxError),jq}var Iq,lJ;function Nwt(){return lJ||(lJ=1,Iq=URIError),Iq}var Dq,uJ;function Bwt(){return uJ||(uJ=1,Dq=Math.abs),Dq}var Fq,dJ;function Lwt(){return dJ||(dJ=1,Fq=Math.floor),Fq}var $q,pJ;function Pwt(){return pJ||(pJ=1,$q=Math.max),$q}var Vq,fJ;function jwt(){return fJ||(fJ=1,Vq=Math.min),Vq}var Hq,bJ;function Iwt(){return bJ||(bJ=1,Hq=Math.pow),Hq}var Uq,hJ;function Dwt(){return hJ||(hJ=1,Uq=Math.round),Uq}var Xq,mJ;function Fwt(){return mJ||(mJ=1,Xq=Number.isNaN||function(t){return t!==t}),Xq}var Gq,gJ;function $wt(){if(gJ)return Gq;gJ=1;var e=Fwt();return Gq=function(n){return e(n)||n===0?n:n<0?-1:1},Gq}var Kq,MJ;function Vwt(){return MJ||(MJ=1,Kq=Object.getOwnPropertyDescriptor),Kq}var Yq,zJ;function jme(){if(zJ)return Yq;zJ=1;var e=Vwt();if(e)try{e([],"length")}catch{e=null}return Yq=e,Yq}var Zq,OJ;function Hwt(){if(OJ)return Zq;OJ=1;var e=Object.defineProperty||!1;if(e)try{e({},"a",{value:1})}catch{e=!1}return Zq=e,Zq}var Qq,yJ;function Uwt(){return yJ||(yJ=1,Qq=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var t={},n=Symbol("test"),o=Object(n);if(typeof n=="string"||Object.prototype.toString.call(n)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var r=42;t[n]=r;for(var s in t)return!1;if(typeof Object.keys=="function"&&Object.keys(t).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(t).length!==0)return!1;var i=Object.getOwnPropertySymbols(t);if(i.length!==1||i[0]!==n||!Object.prototype.propertyIsEnumerable.call(t,n))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var c=Object.getOwnPropertyDescriptor(t,n);if(c.value!==r||c.enumerable!==!0)return!1}return!0}),Qq}var Jq,AJ;function Xwt(){if(AJ)return Jq;AJ=1;var e=typeof Symbol<"u"&&Symbol,t=Uwt();return Jq=function(){return typeof e!="function"||typeof Symbol!="function"||typeof e("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:t()},Jq}var eR,vJ;function Ime(){return vJ||(vJ=1,eR=typeof Reflect<"u"&&Reflect.getPrototypeOf||null),eR}var tR,xJ;function Dme(){if(xJ)return tR;xJ=1;var e=Pme();return tR=e.getPrototypeOf||null,tR}var nR,wJ;function Gwt(){if(wJ)return nR;wJ=1;var e="Function.prototype.bind called on incompatible ",t=Object.prototype.toString,n=Math.max,o="[object Function]",r=function(l,u){for(var d=[],p=0;p<l.length;p+=1)d[p]=l[p];for(var f=0;f<u.length;f+=1)d[f+l.length]=u[f];return d},s=function(l,u){for(var d=[],p=u,f=0;p<l.length;p+=1,f+=1)d[f]=l[p];return d},i=function(c,l){for(var u="",d=0;d<c.length;d+=1)u+=c[d],d+1<c.length&&(u+=l);return u};return nR=function(l){var u=this;if(typeof u!="function"||t.apply(u)!==o)throw new TypeError(e+u);for(var d=s(arguments,1),p,f=function(){if(this instanceof p){var A=u.apply(this,r(d,arguments));return Object(A)===A?A:this}return u.apply(l,r(d,arguments))},b=n(0,u.length-d.length),h=[],g=0;g<b;g++)h[g]="$"+g;if(p=Function("binder","return function ("+i(h,",")+"){ return binder.apply(this,arguments); }")(f),u.prototype){var z=function(){};z.prototype=u.prototype,p.prototype=new z,z.prototype=null}return p},nR}var oR,_J;function N_(){if(_J)return oR;_J=1;var e=Gwt();return oR=Function.prototype.bind||e,oR}var rR,kJ;function I7(){return kJ||(kJ=1,rR=Function.prototype.call),rR}var sR,SJ;function Fme(){return SJ||(SJ=1,sR=Function.prototype.apply),sR}var iR,CJ;function Kwt(){return CJ||(CJ=1,iR=typeof Reflect<"u"&&Reflect&&Reflect.apply),iR}var aR,qJ;function Ywt(){if(qJ)return aR;qJ=1;var e=N_(),t=Fme(),n=I7(),o=Kwt();return aR=o||e.call(n,t),aR}var cR,RJ;function $me(){if(RJ)return cR;RJ=1;var e=N_(),t=vm(),n=I7(),o=Ywt();return cR=function(s){if(s.length<1||typeof s[0]!="function")throw new t("a function is required");return o(e,n,s)},cR}var lR,TJ;function Zwt(){if(TJ)return lR;TJ=1;var e=$me(),t=jme(),n;try{n=[].__proto__===Array.prototype}catch(i){if(!i||typeof i!="object"||!("code"in i)||i.code!=="ERR_PROTO_ACCESS")throw i}var o=!!n&&t&&t(Object.prototype,"__proto__"),r=Object,s=r.getPrototypeOf;return lR=o&&typeof o.get=="function"?e([o.get]):typeof s=="function"?function(c){return s(c==null?c:r(c))}:!1,lR}var uR,EJ;function Qwt(){if(EJ)return uR;EJ=1;var e=Ime(),t=Dme(),n=Zwt();return uR=e?function(r){return e(r)}:t?function(r){if(!r||typeof r!="object"&&typeof r!="function")throw new TypeError("getProto: not an object");return t(r)}:n?function(r){return n(r)}:null,uR}var dR,WJ;function Jwt(){if(WJ)return dR;WJ=1;var e=Function.prototype.call,t=Object.prototype.hasOwnProperty,n=N_();return dR=n.call(e,t),dR}var pR,NJ;function D7(){if(NJ)return pR;NJ=1;var e,t=Pme(),n=qwt(),o=Rwt(),r=Twt(),s=Ewt(),i=Wwt(),c=vm(),l=Nwt(),u=Bwt(),d=Lwt(),p=Pwt(),f=jwt(),b=Iwt(),h=Dwt(),g=$wt(),z=Function,A=function(Ae){try{return z('"use strict"; return ('+Ae+").constructor;")()}catch{}},_=jme(),v=Hwt(),M=function(){throw new c},y=_?function(){try{return arguments.callee,M}catch{try{return _(arguments,"callee").get}catch{return M}}}():M,k=Xwt()(),S=Qwt(),C=Dme(),R=Ime(),T=Fme(),E=I7(),B={},N=typeof Uint8Array>"u"||!S?e:S(Uint8Array),j={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?e:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?e:ArrayBuffer,"%ArrayIteratorPrototype%":k&&S?S([][Symbol.iterator]()):e,"%AsyncFromSyncIteratorPrototype%":e,"%AsyncFunction%":B,"%AsyncGenerator%":B,"%AsyncGeneratorFunction%":B,"%AsyncIteratorPrototype%":B,"%Atomics%":typeof Atomics>"u"?e:Atomics,"%BigInt%":typeof BigInt>"u"?e:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?e:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?e:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?e:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":n,"%eval%":eval,"%EvalError%":o,"%Float32Array%":typeof Float32Array>"u"?e:Float32Array,"%Float64Array%":typeof Float64Array>"u"?e:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?e:FinalizationRegistry,"%Function%":z,"%GeneratorFunction%":B,"%Int8Array%":typeof Int8Array>"u"?e:Int8Array,"%Int16Array%":typeof Int16Array>"u"?e:Int16Array,"%Int32Array%":typeof Int32Array>"u"?e:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":k&&S?S(S([][Symbol.iterator]())):e,"%JSON%":typeof JSON=="object"?JSON:e,"%Map%":typeof Map>"u"?e:Map,"%MapIteratorPrototype%":typeof Map>"u"||!k||!S?e:S(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":t,"%Object.getOwnPropertyDescriptor%":_,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?e:Promise,"%Proxy%":typeof Proxy>"u"?e:Proxy,"%RangeError%":r,"%ReferenceError%":s,"%Reflect%":typeof Reflect>"u"?e:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?e:Set,"%SetIteratorPrototype%":typeof Set>"u"||!k||!S?e:S(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?e:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":k&&S?S(""[Symbol.iterator]()):e,"%Symbol%":k?Symbol:e,"%SyntaxError%":i,"%ThrowTypeError%":y,"%TypedArray%":N,"%TypeError%":c,"%Uint8Array%":typeof Uint8Array>"u"?e:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?e:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?e:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?e:Uint32Array,"%URIError%":l,"%WeakMap%":typeof WeakMap>"u"?e:WeakMap,"%WeakRef%":typeof WeakRef>"u"?e:WeakRef,"%WeakSet%":typeof WeakSet>"u"?e:WeakSet,"%Function.prototype.call%":E,"%Function.prototype.apply%":T,"%Object.defineProperty%":v,"%Object.getPrototypeOf%":C,"%Math.abs%":u,"%Math.floor%":d,"%Math.max%":p,"%Math.min%":f,"%Math.pow%":b,"%Math.round%":h,"%Math.sign%":g,"%Reflect.getPrototypeOf%":R};if(S)try{null.error}catch(Ae){var I=S(S(Ae));j["%Error.prototype%"]=I}var P=function Ae(ye){var Ne;if(ye==="%AsyncFunction%")Ne=A("async function () {}");else if(ye==="%GeneratorFunction%")Ne=A("function* () {}");else if(ye==="%AsyncGeneratorFunction%")Ne=A("async function* () {}");else if(ye==="%AsyncGenerator%"){var je=Ae("%AsyncGeneratorFunction%");je&&(Ne=je.prototype)}else if(ye==="%AsyncIteratorPrototype%"){var ie=Ae("%AsyncGenerator%");ie&&S&&(Ne=S(ie.prototype))}return j[ye]=Ne,Ne},$={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},F=N_(),X=Jwt(),Z=F.call(E,Array.prototype.concat),V=F.call(T,Array.prototype.splice),ee=F.call(E,String.prototype.replace),te=F.call(E,String.prototype.slice),J=F.call(E,RegExp.prototype.exec),ue=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,ce=/\\(\\)?/g,me=function(ye){var Ne=te(ye,0,1),je=te(ye,-1);if(Ne==="%"&&je!=="%")throw new i("invalid intrinsic syntax, expected closing `%`");if(je==="%"&&Ne!=="%")throw new i("invalid intrinsic syntax, expected opening `%`");var ie=[];return ee(ye,ue,function(we,re,pe,ke){ie[ie.length]=pe?ee(ke,ce,"$1"):re||we}),ie},de=function(ye,Ne){var je=ye,ie;if(X($,je)&&(ie=$[je],je="%"+ie[0]+"%"),X(j,je)){var we=j[je];if(we===B&&(we=P(je)),typeof we>"u"&&!Ne)throw new c("intrinsic "+ye+" exists, but is not available. Please file an issue!");return{alias:ie,name:je,value:we}}throw new i("intrinsic "+ye+" does not exist!")};return pR=function(ye,Ne){if(typeof ye!="string"||ye.length===0)throw new c("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof Ne!="boolean")throw new c('"allowMissing" argument must be a boolean');if(J(/^%?[^%]*%?$/,ye)===null)throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var je=me(ye),ie=je.length>0?je[0]:"",we=de("%"+ie+"%",Ne),re=we.name,pe=we.value,ke=!1,Se=we.alias;Se&&(ie=Se[0],V(je,Z([0,1],Se)));for(var se=1,L=!0;se<je.length;se+=1){var U=je[se],ne=te(U,0,1),ve=te(U,-1);if((ne==='"'||ne==="'"||ne==="`"||ve==='"'||ve==="'"||ve==="`")&&ne!==ve)throw new i("property names with quotes must have matching quotes");if((U==="constructor"||!L)&&(ke=!0),ie+="."+U,re="%"+ie+"%",X(j,re))pe=j[re];else if(pe!=null){if(!(U in pe)){if(!Ne)throw new c("base intrinsic for "+ye+" exists, but the property is not available.");return}if(_&&se+1>=je.length){var qe=_(pe,U);L=!!qe,L&&"get"in qe&&!("originalValue"in qe.get)?pe=qe.get:pe=pe[U]}else L=X(pe,U),pe=pe[U];L&&!ke&&(j[re]=pe)}}return pe},pR}var fR,BJ;function Vme(){if(BJ)return fR;BJ=1;var e=D7(),t=$me(),n=t([e("%String.prototype.indexOf%")]);return fR=function(r,s){var i=e(r,!!s);return typeof i=="function"&&n(r,".prototype.")>-1?t([i]):i},fR}var bR,LJ;function Hme(){if(LJ)return bR;LJ=1;var e=D7(),t=Vme(),n=W_(),o=vm(),r=e("%Map%",!0),s=t("Map.prototype.get",!0),i=t("Map.prototype.set",!0),c=t("Map.prototype.has",!0),l=t("Map.prototype.delete",!0),u=t("Map.prototype.size",!0);return bR=!!r&&function(){var p,f={assert:function(b){if(!f.has(b))throw new o("Side channel does not contain "+n(b))},delete:function(b){if(p){var h=l(p,b);return u(p)===0&&(p=void 0),h}return!1},get:function(b){if(p)return s(p,b)},has:function(b){return p?c(p,b):!1},set:function(b,h){p||(p=new r),i(p,b,h)}};return f},bR}var hR,PJ;function e_t(){if(PJ)return hR;PJ=1;var e=D7(),t=Vme(),n=W_(),o=Hme(),r=vm(),s=e("%WeakMap%",!0),i=t("WeakMap.prototype.get",!0),c=t("WeakMap.prototype.set",!0),l=t("WeakMap.prototype.has",!0),u=t("WeakMap.prototype.delete",!0);return hR=s?function(){var p,f,b={assert:function(h){if(!b.has(h))throw new r("Side channel does not contain "+n(h))},delete:function(h){if(s&&h&&(typeof h=="object"||typeof h=="function")){if(p)return u(p,h)}else if(o&&f)return f.delete(h);return!1},get:function(h){return s&&h&&(typeof h=="object"||typeof h=="function")&&p?i(p,h):f&&f.get(h)},has:function(h){return s&&h&&(typeof h=="object"||typeof h=="function")&&p?l(p,h):!!f&&f.has(h)},set:function(h,g){s&&h&&(typeof h=="object"||typeof h=="function")?(p||(p=new s),c(p,h,g)):o&&(f||(f=o()),f.set(h,g))}};return b}:o,hR}var mR,jJ;function t_t(){if(jJ)return mR;jJ=1;var e=vm(),t=W_(),n=Cwt(),o=Hme(),r=e_t(),s=r||o||n;return mR=function(){var c,l={assert:function(u){if(!l.has(u))throw new e("Side channel does not contain "+t(u))},delete:function(u){return!!c&&c.delete(u)},get:function(u){return c&&c.get(u)},has:function(u){return!!c&&c.has(u)},set:function(u,d){c||(c=s()),c.set(u,d)}};return l},mR}var gR,IJ;function F7(){if(IJ)return gR;IJ=1;var e=String.prototype.replace,t=/%20/g,n={RFC1738:"RFC1738",RFC3986:"RFC3986"};return gR={default:n.RFC3986,formatters:{RFC1738:function(o){return e.call(o,t,"+")},RFC3986:function(o){return String(o)}},RFC1738:n.RFC1738,RFC3986:n.RFC3986},gR}var MR,DJ;function Ume(){if(DJ)return MR;DJ=1;var e=F7(),t=Object.prototype.hasOwnProperty,n=Array.isArray,o=function(){for(var z=[],A=0;A<256;++A)z.push("%"+((A<16?"0":"")+A.toString(16)).toUpperCase());return z}(),r=function(A){for(;A.length>1;){var _=A.pop(),v=_.obj[_.prop];if(n(v)){for(var M=[],y=0;y<v.length;++y)typeof v[y]<"u"&&M.push(v[y]);_.obj[_.prop]=M}}},s=function(A,_){for(var v=_&&_.plainObjects?{__proto__:null}:{},M=0;M<A.length;++M)typeof A[M]<"u"&&(v[M]=A[M]);return v},i=function z(A,_,v){if(!_)return A;if(typeof _!="object"&&typeof _!="function"){if(n(A))A.push(_);else if(A&&typeof A=="object")(v&&(v.plainObjects||v.allowPrototypes)||!t.call(Object.prototype,_))&&(A[_]=!0);else return[A,_];return A}if(!A||typeof A!="object")return[A].concat(_);var M=A;return n(A)&&!n(_)&&(M=s(A,v)),n(A)&&n(_)?(_.forEach(function(y,k){if(t.call(A,k)){var S=A[k];S&&typeof S=="object"&&y&&typeof y=="object"?A[k]=z(S,y,v):A.push(y)}else A[k]=y}),A):Object.keys(_).reduce(function(y,k){var S=_[k];return t.call(y,k)?y[k]=z(y[k],S,v):y[k]=S,y},M)},c=function(A,_){return Object.keys(_).reduce(function(v,M){return v[M]=_[M],v},A)},l=function(z,A,_){var v=z.replace(/\+/g," ");if(_==="iso-8859-1")return v.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(v)}catch{return v}},u=1024,d=function(A,_,v,M,y){if(A.length===0)return A;var k=A;if(typeof A=="symbol"?k=Symbol.prototype.toString.call(A):typeof A!="string"&&(k=String(A)),v==="iso-8859-1")return escape(k).replace(/%u[0-9a-f]{4}/gi,function(N){return"%26%23"+parseInt(N.slice(2),16)+"%3B"});for(var S="",C=0;C<k.length;C+=u){for(var R=k.length>=u?k.slice(C,C+u):k,T=[],E=0;E<R.length;++E){var B=R.charCodeAt(E);if(B===45||B===46||B===95||B===126||B>=48&&B<=57||B>=65&&B<=90||B>=97&&B<=122||y===e.RFC1738&&(B===40||B===41)){T[T.length]=R.charAt(E);continue}if(B<128){T[T.length]=o[B];continue}if(B<2048){T[T.length]=o[192|B>>6]+o[128|B&63];continue}if(B<55296||B>=57344){T[T.length]=o[224|B>>12]+o[128|B>>6&63]+o[128|B&63];continue}E+=1,B=65536+((B&1023)<<10|R.charCodeAt(E)&1023),T[T.length]=o[240|B>>18]+o[128|B>>12&63]+o[128|B>>6&63]+o[128|B&63]}S+=T.join("")}return S},p=function(A){for(var _=[{obj:{o:A},prop:"o"}],v=[],M=0;M<_.length;++M)for(var y=_[M],k=y.obj[y.prop],S=Object.keys(k),C=0;C<S.length;++C){var R=S[C],T=k[R];typeof T=="object"&&T!==null&&v.indexOf(T)===-1&&(_.push({obj:k,prop:R}),v.push(T))}return r(_),A},f=function(A){return Object.prototype.toString.call(A)==="[object RegExp]"},b=function(A){return!A||typeof A!="object"?!1:!!(A.constructor&&A.constructor.isBuffer&&A.constructor.isBuffer(A))},h=function(A,_){return[].concat(A,_)},g=function(A,_){if(n(A)){for(var v=[],M=0;M<A.length;M+=1)v.push(_(A[M]));return v}return _(A)};return MR={arrayToObject:s,assign:c,combine:h,compact:p,decode:l,encode:d,isBuffer:b,isRegExp:f,maybeMap:g,merge:i},MR}var zR,FJ;function n_t(){if(FJ)return zR;FJ=1;var e=t_t(),t=Ume(),n=F7(),o=Object.prototype.hasOwnProperty,r={brackets:function(z){return z+"[]"},comma:"comma",indices:function(z,A){return z+"["+A+"]"},repeat:function(z){return z}},s=Array.isArray,i=Array.prototype.push,c=function(g,z){i.apply(g,s(z)?z:[z])},l=Date.prototype.toISOString,u=n.default,d={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:"indices",charset:"utf-8",charsetSentinel:!1,commaRoundTrip:!1,delimiter:"&",encode:!0,encodeDotInKeys:!1,encoder:t.encode,encodeValuesOnly:!1,filter:void 0,format:u,formatter:n.formatters[u],indices:!1,serializeDate:function(z){return l.call(z)},skipNulls:!1,strictNullHandling:!1},p=function(z){return typeof z=="string"||typeof z=="number"||typeof z=="boolean"||typeof z=="symbol"||typeof z=="bigint"},f={},b=function g(z,A,_,v,M,y,k,S,C,R,T,E,B,N,j,I,P,$){for(var F=z,X=$,Z=0,V=!1;(X=X.get(f))!==void 0&&!V;){var ee=X.get(z);if(Z+=1,typeof ee<"u"){if(ee===Z)throw new RangeError("Cyclic object value");V=!0}typeof X.get(f)>"u"&&(Z=0)}if(typeof R=="function"?F=R(A,F):F instanceof Date?F=B(F):_==="comma"&&s(F)&&(F=t.maybeMap(F,function(re){return re instanceof Date?B(re):re})),F===null){if(y)return C&&!I?C(A,d.encoder,P,"key",N):A;F=""}if(p(F)||t.isBuffer(F)){if(C){var te=I?A:C(A,d.encoder,P,"key",N);return[j(te)+"="+j(C(F,d.encoder,P,"value",N))]}return[j(A)+"="+j(String(F))]}var J=[];if(typeof F>"u")return J;var ue;if(_==="comma"&&s(F))I&&C&&(F=t.maybeMap(F,C)),ue=[{value:F.length>0?F.join(",")||null:void 0}];else if(s(R))ue=R;else{var ce=Object.keys(F);ue=T?ce.sort(T):ce}var me=S?String(A).replace(/\./g,"%2E"):String(A),de=v&&s(F)&&F.length===1?me+"[]":me;if(M&&s(F)&&F.length===0)return de+"[]";for(var Ae=0;Ae<ue.length;++Ae){var ye=ue[Ae],Ne=typeof ye=="object"&&ye&&typeof ye.value<"u"?ye.value:F[ye];if(!(k&&Ne===null)){var je=E&&S?String(ye).replace(/\./g,"%2E"):String(ye),ie=s(F)?typeof _=="function"?_(de,je):de:de+(E?"."+je:"["+je+"]");$.set(z,Z);var we=e();we.set(f,$),c(J,g(Ne,ie,_,v,M,y,k,S,_==="comma"&&I&&s(F)?null:C,R,T,E,B,N,j,I,P,we))}}return J},h=function(z){if(!z)return d;if(typeof z.allowEmptyArrays<"u"&&typeof z.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof z.encodeDotInKeys<"u"&&typeof z.encodeDotInKeys!="boolean")throw new TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided");if(z.encoder!==null&&typeof z.encoder<"u"&&typeof z.encoder!="function")throw new TypeError("Encoder has to be a function.");var A=z.charset||d.charset;if(typeof z.charset<"u"&&z.charset!=="utf-8"&&z.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var _=n.default;if(typeof z.format<"u"){if(!o.call(n.formatters,z.format))throw new TypeError("Unknown format option provided.");_=z.format}var v=n.formatters[_],M=d.filter;(typeof z.filter=="function"||s(z.filter))&&(M=z.filter);var y;if(z.arrayFormat in r?y=z.arrayFormat:"indices"in z?y=z.indices?"indices":"repeat":y=d.arrayFormat,"commaRoundTrip"in z&&typeof z.commaRoundTrip!="boolean")throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var k=typeof z.allowDots>"u"?z.encodeDotInKeys===!0?!0:d.allowDots:!!z.allowDots;return{addQueryPrefix:typeof z.addQueryPrefix=="boolean"?z.addQueryPrefix:d.addQueryPrefix,allowDots:k,allowEmptyArrays:typeof z.allowEmptyArrays=="boolean"?!!z.allowEmptyArrays:d.allowEmptyArrays,arrayFormat:y,charset:A,charsetSentinel:typeof z.charsetSentinel=="boolean"?z.charsetSentinel:d.charsetSentinel,commaRoundTrip:!!z.commaRoundTrip,delimiter:typeof z.delimiter>"u"?d.delimiter:z.delimiter,encode:typeof z.encode=="boolean"?z.encode:d.encode,encodeDotInKeys:typeof z.encodeDotInKeys=="boolean"?z.encodeDotInKeys:d.encodeDotInKeys,encoder:typeof z.encoder=="function"?z.encoder:d.encoder,encodeValuesOnly:typeof z.encodeValuesOnly=="boolean"?z.encodeValuesOnly:d.encodeValuesOnly,filter:M,format:_,formatter:v,serializeDate:typeof z.serializeDate=="function"?z.serializeDate:d.serializeDate,skipNulls:typeof z.skipNulls=="boolean"?z.skipNulls:d.skipNulls,sort:typeof z.sort=="function"?z.sort:null,strictNullHandling:typeof z.strictNullHandling=="boolean"?z.strictNullHandling:d.strictNullHandling}};return zR=function(g,z){var A=g,_=h(z),v,M;typeof _.filter=="function"?(M=_.filter,A=M("",A)):s(_.filter)&&(M=_.filter,v=M);var y=[];if(typeof A!="object"||A===null)return"";var k=r[_.arrayFormat],S=k==="comma"&&_.commaRoundTrip;v||(v=Object.keys(A)),_.sort&&v.sort(_.sort);for(var C=e(),R=0;R<v.length;++R){var T=v[R],E=A[T];_.skipNulls&&E===null||c(y,b(E,T,k,S,_.allowEmptyArrays,_.strictNullHandling,_.skipNulls,_.encodeDotInKeys,_.encode?_.encoder:null,_.filter,_.sort,_.allowDots,_.serializeDate,_.format,_.formatter,_.encodeValuesOnly,_.charset,C))}var B=y.join(_.delimiter),N=_.addQueryPrefix===!0?"?":"";return _.charsetSentinel&&(_.charset==="iso-8859-1"?N+="utf8=%26%2310003%3B&":N+="utf8=%E2%9C%93&"),B.length>0?N+B:""},zR}var OR,$J;function o_t(){if($J)return OR;$J=1;var e=Ume(),t=Object.prototype.hasOwnProperty,n=Array.isArray,o={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:e.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictDepth:!1,strictNullHandling:!1,throwOnLimitExceeded:!1},r=function(f){return f.replace(/&#(\d+);/g,function(b,h){return String.fromCharCode(parseInt(h,10))})},s=function(f,b,h){if(f&&typeof f=="string"&&b.comma&&f.indexOf(",")>-1)return f.split(",");if(b.throwOnLimitExceeded&&h>=b.arrayLimit)throw new RangeError("Array limit exceeded. Only "+b.arrayLimit+" element"+(b.arrayLimit===1?"":"s")+" allowed in an array.");return f},i="utf8=%26%2310003%3B",c="utf8=%E2%9C%93",l=function(b,h){var g={__proto__:null},z=h.ignoreQueryPrefix?b.replace(/^\?/,""):b;z=z.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var A=h.parameterLimit===1/0?void 0:h.parameterLimit,_=z.split(h.delimiter,h.throwOnLimitExceeded?A+1:A);if(h.throwOnLimitExceeded&&_.length>A)throw new RangeError("Parameter limit exceeded. Only "+A+" parameter"+(A===1?"":"s")+" allowed.");var v=-1,M,y=h.charset;if(h.charsetSentinel)for(M=0;M<_.length;++M)_[M].indexOf("utf8=")===0&&(_[M]===c?y="utf-8":_[M]===i&&(y="iso-8859-1"),v=M,M=_.length);for(M=0;M<_.length;++M)if(M!==v){var k=_[M],S=k.indexOf("]="),C=S===-1?k.indexOf("="):S+1,R,T;C===-1?(R=h.decoder(k,o.decoder,y,"key"),T=h.strictNullHandling?null:""):(R=h.decoder(k.slice(0,C),o.decoder,y,"key"),T=e.maybeMap(s(k.slice(C+1),h,n(g[R])?g[R].length:0),function(B){return h.decoder(B,o.decoder,y,"value")})),T&&h.interpretNumericEntities&&y==="iso-8859-1"&&(T=r(String(T))),k.indexOf("[]=")>-1&&(T=n(T)?[T]:T);var E=t.call(g,R);E&&h.duplicates==="combine"?g[R]=e.combine(g[R],T):(!E||h.duplicates==="last")&&(g[R]=T)}return g},u=function(f,b,h,g){var z=0;if(f.length>0&&f[f.length-1]==="[]"){var A=f.slice(0,-1).join("");z=Array.isArray(b)&&b[A]?b[A].length:0}for(var _=g?b:s(b,h,z),v=f.length-1;v>=0;--v){var M,y=f[v];if(y==="[]"&&h.parseArrays)M=h.allowEmptyArrays&&(_===""||h.strictNullHandling&&_===null)?[]:e.combine([],_);else{M=h.plainObjects?{__proto__:null}:{};var k=y.charAt(0)==="["&&y.charAt(y.length-1)==="]"?y.slice(1,-1):y,S=h.decodeDotInKeys?k.replace(/%2E/g,"."):k,C=parseInt(S,10);!h.parseArrays&&S===""?M={0:_}:!isNaN(C)&&y!==S&&String(C)===S&&C>=0&&h.parseArrays&&C<=h.arrayLimit?(M=[],M[C]=_):S!=="__proto__"&&(M[S]=_)}_=M}return _},d=function(b,h,g,z){if(b){var A=g.allowDots?b.replace(/\.([^.[]+)/g,"[$1]"):b,_=/(\[[^[\]]*])/,v=/(\[[^[\]]*])/g,M=g.depth>0&&_.exec(A),y=M?A.slice(0,M.index):A,k=[];if(y){if(!g.plainObjects&&t.call(Object.prototype,y)&&!g.allowPrototypes)return;k.push(y)}for(var S=0;g.depth>0&&(M=v.exec(A))!==null&&S<g.depth;){if(S+=1,!g.plainObjects&&t.call(Object.prototype,M[1].slice(1,-1))&&!g.allowPrototypes)return;k.push(M[1])}if(M){if(g.strictDepth===!0)throw new RangeError("Input depth exceeded depth option of "+g.depth+" and strictDepth is true");k.push("["+A.slice(M.index)+"]")}return u(k,h,g,z)}},p=function(b){if(!b)return o;if(typeof b.allowEmptyArrays<"u"&&typeof b.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof b.decodeDotInKeys<"u"&&typeof b.decodeDotInKeys!="boolean")throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");if(b.decoder!==null&&typeof b.decoder<"u"&&typeof b.decoder!="function")throw new TypeError("Decoder has to be a function.");if(typeof b.charset<"u"&&b.charset!=="utf-8"&&b.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");if(typeof b.throwOnLimitExceeded<"u"&&typeof b.throwOnLimitExceeded!="boolean")throw new TypeError("`throwOnLimitExceeded` option must be a boolean");var h=typeof b.charset>"u"?o.charset:b.charset,g=typeof b.duplicates>"u"?o.duplicates:b.duplicates;if(g!=="combine"&&g!=="first"&&g!=="last")throw new TypeError("The duplicates option must be either combine, first, or last");var z=typeof b.allowDots>"u"?b.decodeDotInKeys===!0?!0:o.allowDots:!!b.allowDots;return{allowDots:z,allowEmptyArrays:typeof b.allowEmptyArrays=="boolean"?!!b.allowEmptyArrays:o.allowEmptyArrays,allowPrototypes:typeof b.allowPrototypes=="boolean"?b.allowPrototypes:o.allowPrototypes,allowSparse:typeof b.allowSparse=="boolean"?b.allowSparse:o.allowSparse,arrayLimit:typeof b.arrayLimit=="number"?b.arrayLimit:o.arrayLimit,charset:h,charsetSentinel:typeof b.charsetSentinel=="boolean"?b.charsetSentinel:o.charsetSentinel,comma:typeof b.comma=="boolean"?b.comma:o.comma,decodeDotInKeys:typeof b.decodeDotInKeys=="boolean"?b.decodeDotInKeys:o.decodeDotInKeys,decoder:typeof b.decoder=="function"?b.decoder:o.decoder,delimiter:typeof b.delimiter=="string"||e.isRegExp(b.delimiter)?b.delimiter:o.delimiter,depth:typeof b.depth=="number"||b.depth===!1?+b.depth:o.depth,duplicates:g,ignoreQueryPrefix:b.ignoreQueryPrefix===!0,interpretNumericEntities:typeof b.interpretNumericEntities=="boolean"?b.interpretNumericEntities:o.interpretNumericEntities,parameterLimit:typeof b.parameterLimit=="number"?b.parameterLimit:o.parameterLimit,parseArrays:b.parseArrays!==!1,plainObjects:typeof b.plainObjects=="boolean"?b.plainObjects:o.plainObjects,strictDepth:typeof b.strictDepth=="boolean"?!!b.strictDepth:o.strictDepth,strictNullHandling:typeof b.strictNullHandling=="boolean"?b.strictNullHandling:o.strictNullHandling,throwOnLimitExceeded:typeof b.throwOnLimitExceeded=="boolean"?b.throwOnLimitExceeded:!1}};return OR=function(f,b){var h=p(b);if(f===""||f===null||typeof f>"u")return h.plainObjects?{__proto__:null}:{};for(var g=typeof f=="string"?l(f,h):f,z=h.plainObjects?{__proto__:null}:{},A=Object.keys(g),_=0;_<A.length;++_){var v=A[_],M=d(v,g[v],h,typeof f=="string");z=e.merge(z,M,h)}return h.allowSparse===!0?z:e.compact(z)},OR}var yR,VJ;function r_t(){if(VJ)return yR;VJ=1;var e=n_t(),t=o_t(),n=F7();return yR={formats:n,parse:t,stringify:e},yR}var s_t=r_t();const i_t=Zr(s_t);var a_t=Swt;function Ri(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}var c_t=/^([a-z0-9.+-]+:)/i,l_t=/:[0-9]*$/,u_t=/^(\/\/?(?!\/)[^?\s]*)(\?[^\s]*)?$/,d_t=["<",">",'"',"`"," ","\r",` +`," "],p_t=["{","}","|","\\","^","`"].concat(d_t),LW=["'"].concat(p_t),HJ=["%","/","?",";","#"].concat(LW),UJ=["/","?","#"],f_t=255,XJ=/^[+a-z0-9A-Z_-]{0,63}$/,b_t=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,h_t={javascript:!0,"javascript:":!0},PW={javascript:!0,"javascript:":!0},V2={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},jW=i_t;function CO(e,t,n){if(e&&typeof e=="object"&&e instanceof Ri)return e;var o=new Ri;return o.parse(e,t,n),o}Ri.prototype.parse=function(e,t,n){if(typeof e!="string")throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var o=e.indexOf("?"),r=o!==-1&&o<e.indexOf("#")?"?":"#",s=e.split(r),i=/\\/g;s[0]=s[0].replace(i,"/"),e=s.join(r);var c=e;if(c=c.trim(),!n&&e.split("#").length===1){var l=u_t.exec(c);if(l)return this.path=c,this.href=c,this.pathname=l[1],l[2]?(this.search=l[2],t?this.query=jW.parse(this.search.substr(1)):this.query=this.search.substr(1)):t&&(this.search="",this.query={}),this}var u=c_t.exec(c);if(u){u=u[0];var d=u.toLowerCase();this.protocol=d,c=c.substr(u.length)}if(n||u||c.match(/^\/\/[^@/]+@[^@/]+/)){var p=c.substr(0,2)==="//";p&&!(u&&PW[u])&&(c=c.substr(2),this.slashes=!0)}if(!PW[u]&&(p||u&&!V2[u])){for(var f=-1,b=0;b<UJ.length;b++){var h=c.indexOf(UJ[b]);h!==-1&&(f===-1||h<f)&&(f=h)}var g,z;f===-1?z=c.lastIndexOf("@"):z=c.lastIndexOf("@",f),z!==-1&&(g=c.slice(0,z),c=c.slice(z+1),this.auth=decodeURIComponent(g)),f=-1;for(var b=0;b<HJ.length;b++){var h=c.indexOf(HJ[b]);h!==-1&&(f===-1||h<f)&&(f=h)}f===-1&&(f=c.length),this.host=c.slice(0,f),c=c.slice(f),this.parseHost(),this.hostname=this.hostname||"";var A=this.hostname[0]==="["&&this.hostname[this.hostname.length-1]==="]";if(!A)for(var _=this.hostname.split(/\./),b=0,v=_.length;b<v;b++){var M=_[b];if(M&&!M.match(XJ)){for(var y="",k=0,S=M.length;k<S;k++)M.charCodeAt(k)>127?y+="x":y+=M[k];if(!y.match(XJ)){var C=_.slice(0,b),R=_.slice(b+1),T=M.match(b_t);T&&(C.push(T[1]),R.unshift(T[2])),R.length&&(c="/"+R.join(".")+c),this.hostname=C.join(".");break}}}this.hostname.length>f_t?this.hostname="":this.hostname=this.hostname.toLowerCase(),A||(this.hostname=a_t.toASCII(this.hostname));var E=this.port?":"+this.port:"",B=this.hostname||"";this.host=B+E,this.href+=this.host,A&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),c[0]!=="/"&&(c="/"+c))}if(!h_t[d])for(var b=0,v=LW.length;b<v;b++){var N=LW[b];if(c.indexOf(N)!==-1){var j=encodeURIComponent(N);j===N&&(j=escape(N)),c=c.split(N).join(j)}}var I=c.indexOf("#");I!==-1&&(this.hash=c.substr(I),c=c.slice(0,I));var P=c.indexOf("?");if(P!==-1?(this.search=c.substr(P),this.query=c.substr(P+1),t&&(this.query=jW.parse(this.query)),c=c.slice(0,P)):t&&(this.search="",this.query={}),c&&(this.pathname=c),V2[d]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){var E=this.pathname||"",$=this.search||"";this.path=E+$}return this.href=this.format(),this};function m_t(e){return typeof e=="string"&&(e=CO(e)),e instanceof Ri?e.format():Ri.prototype.format.call(e)}Ri.prototype.format=function(){var e=this.auth||"";e&&(e=encodeURIComponent(e),e=e.replace(/%3A/i,":"),e+="@");var t=this.protocol||"",n=this.pathname||"",o=this.hash||"",r=!1,s="";this.host?r=e+this.host:this.hostname&&(r=e+(this.hostname.indexOf(":")===-1?this.hostname:"["+this.hostname+"]"),this.port&&(r+=":"+this.port)),this.query&&typeof this.query=="object"&&Object.keys(this.query).length&&(s=jW.stringify(this.query,{arrayFormat:"repeat",addQueryPrefix:!1}));var i=this.search||s&&"?"+s||"";return t&&t.substr(-1)!==":"&&(t+=":"),this.slashes||(!t||V2[t])&&r!==!1?(r="//"+(r||""),n&&n.charAt(0)!=="/"&&(n="/"+n)):r||(r=""),o&&o.charAt(0)!=="#"&&(o="#"+o),i&&i.charAt(0)!=="?"&&(i="?"+i),n=n.replace(/[?#]/g,function(c){return encodeURIComponent(c)}),i=i.replace("#","%23"),t+r+n+i+o};function g_t(e,t){return CO(e,!1,!0).resolve(t)}Ri.prototype.resolve=function(e){return this.resolveObject(CO(e,!1,!0)).format()};function M_t(e,t){return e?CO(e,!1,!0).resolveObject(t):t}Ri.prototype.resolveObject=function(e){if(typeof e=="string"){var t=new Ri;t.parse(e,!1,!0),e=t}for(var n=new Ri,o=Object.keys(this),r=0;r<o.length;r++){var s=o[r];n[s]=this[s]}if(n.hash=e.hash,e.href==="")return n.href=n.format(),n;if(e.slashes&&!e.protocol){for(var i=Object.keys(e),c=0;c<i.length;c++){var l=i[c];l!=="protocol"&&(n[l]=e[l])}return V2[n.protocol]&&n.hostname&&!n.pathname&&(n.pathname="/",n.path=n.pathname),n.href=n.format(),n}if(e.protocol&&e.protocol!==n.protocol){if(!V2[e.protocol]){for(var u=Object.keys(e),d=0;d<u.length;d++){var p=u[d];n[p]=e[p]}return n.href=n.format(),n}if(n.protocol=e.protocol,!e.host&&!PW[e.protocol]){for(var v=(e.pathname||"").split("/");v.length&&!(e.host=v.shift()););e.host||(e.host=""),e.hostname||(e.hostname=""),v[0]!==""&&v.unshift(""),v.length<2&&v.unshift(""),n.pathname=v.join("/")}else n.pathname=e.pathname;if(n.search=e.search,n.query=e.query,n.host=e.host||"",n.auth=e.auth,n.hostname=e.hostname||e.host,n.port=e.port,n.pathname||n.search){var f=n.pathname||"",b=n.search||"";n.path=f+b}return n.slashes=n.slashes||e.slashes,n.href=n.format(),n}var h=n.pathname&&n.pathname.charAt(0)==="/",g=e.host||e.pathname&&e.pathname.charAt(0)==="/",z=g||h||n.host&&e.pathname,A=z,_=n.pathname&&n.pathname.split("/")||[],v=e.pathname&&e.pathname.split("/")||[],M=n.protocol&&!V2[n.protocol];if(M&&(n.hostname="",n.port=null,n.host&&(_[0]===""?_[0]=n.host:_.unshift(n.host)),n.host="",e.protocol&&(e.hostname=null,e.port=null,e.host&&(v[0]===""?v[0]=e.host:v.unshift(e.host)),e.host=null),z=z&&(v[0]===""||_[0]==="")),g)n.host=e.host||e.host===""?e.host:n.host,n.hostname=e.hostname||e.hostname===""?e.hostname:n.hostname,n.search=e.search,n.query=e.query,_=v;else if(v.length)_||(_=[]),_.pop(),_=_.concat(v),n.search=e.search,n.query=e.query;else if(e.search!=null){if(M){n.host=_.shift(),n.hostname=n.host;var y=n.host&&n.host.indexOf("@")>0?n.host.split("@"):!1;y&&(n.auth=y.shift(),n.hostname=y.shift(),n.host=n.hostname)}return n.search=e.search,n.query=e.query,(n.pathname!==null||n.search!==null)&&(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!_.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var k=_.slice(-1)[0],S=(n.host||e.host||_.length>1)&&(k==="."||k==="..")||k==="",C=0,R=_.length;R>=0;R--)k=_[R],k==="."?_.splice(R,1):k===".."?(_.splice(R,1),C++):C&&(_.splice(R,1),C--);if(!z&&!A)for(;C--;C)_.unshift("..");z&&_[0]!==""&&(!_[0]||_[0].charAt(0)!=="/")&&_.unshift(""),S&&_.join("/").substr(-1)!=="/"&&_.push("");var T=_[0]===""||_[0]&&_[0].charAt(0)==="/";if(M){n.hostname=T?"":_.length?_.shift():"",n.host=n.hostname;var y=n.host&&n.host.indexOf("@")>0?n.host.split("@"):!1;y&&(n.auth=y.shift(),n.hostname=y.shift(),n.host=n.hostname)}return z=z||n.host&&_.length,z&&!T&&_.unshift(""),_.length>0?n.pathname=_.join("/"):(n.pathname=null,n.path=null),(n.pathname!==null||n.search!==null)&&(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n};Ri.prototype.parseHost=function(){var e=this.host,t=l_t.exec(e);t&&(t=t[0],t!==":"&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};var z_t=CO,O_t=g_t,Xme=M_t,y_t=m_t,A_t=Ri;function v_t(e,t){for(var n=0,o=e.length-1;o>=0;o--){var r=e[o];r==="."?e.splice(o,1):r===".."?(e.splice(o,1),n++):n&&(e.splice(o,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function x_t(){for(var e="",t=!1,n=arguments.length-1;n>=-1&&!t;n--){var o=n>=0?arguments[n]:"/";if(typeof o!="string")throw new TypeError("Arguments to path.resolve must be strings");if(!o)continue;e=o+"/"+e,t=o.charAt(0)==="/"}return e=v_t(w_t(e.split("/"),function(r){return!!r}),!t).join("/"),(t?"/":"")+e||"."}function w_t(e,t){if(e.filter)return e.filter(t);for(var n=[],o=0;o<e.length;o++)t(e[o],o,e)&&n.push(e[o]);return n}var Gme=function(e){function t(){var o=this||self;return delete e.prototype.__magic__,o}if(typeof globalThis=="object")return globalThis;if(this)return t();e.defineProperty(e.prototype,"__magic__",{configurable:!0,get:t});var n=__magic__;return n}(Object),__t=y_t,Kme=z_t,Yme=O_t,Zme=A_t,$d=Gme.URL,Qme=Gme.URLSearchParams,k_t=/%/g,S_t=/\\/g,C_t=/\n/g,q_t=/\r/g,R_t=/\t/g,T_t=47;function E_t(e){var t=e??null;return!!(t!==null&&t?.href&&t?.origin)}function W_t(e){if(e.hostname!=="")throw new TypeError('File URL host must be "localhost" or empty on browser');for(var t=e.pathname,n=0;n<t.length;n++)if(t[n]==="%"){var o=t.codePointAt(n+2)|32;if(t[n+1]==="2"&&o===102)throw new TypeError("File URL path must not include encoded / characters")}return decodeURIComponent(t)}function N_t(e){return e.includes("%")&&(e=e.replace(k_t,"%25")),e.includes("\\")&&(e=e.replace(S_t,"%5C")),e.includes(` +`)&&(e=e.replace(C_t,"%0A")),e.includes("\r")&&(e=e.replace(q_t,"%0D")),e.includes(" ")&&(e=e.replace(R_t,"%09")),e}var Jme=function(t){if(typeof t>"u")throw new TypeError('The "domain" argument must be specified');return new $d("http://"+t).hostname},ege=function(t){if(typeof t>"u")throw new TypeError('The "domain" argument must be specified');return new $d("http://"+t).hostname},tge=function(t){var n=new $d("file://"),o=x_t(t),r=t.charCodeAt(t.length-1);return r===T_t&&o[o.length-1]!=="/"&&(o+="/"),n.pathname=N_t(o),n},nge=function(t){if(!E_t(t)&&typeof t!="string")throw new TypeError('The "path" argument must be of type string or an instance of URL. Received type '+typeof t+" ("+t+")");var n=new $d(t);if(n.protocol!=="file:")throw new TypeError("The URL must be of scheme file");return W_t(n)},oge=function(t,n){var o,r,s,i;if(n===void 0&&(n={}),!(t instanceof $d))return __t(t);if(typeof n!="object"||n===null)throw new TypeError('The "options" argument must be of type object.');var c=(o=n.auth)!=null?o:!0,l=(r=n.fragment)!=null?r:!0,u=(s=n.search)!=null?s:!0;(i=n.unicode)!=null;var d=new $d(t.toString());return c||(d.username="",d.password=""),l||(d.hash=""),u||(d.search=""),d.toString()},B_t={format:oge,parse:Kme,resolve:Yme,resolveObject:Xme,Url:Zme,URL:$d,URLSearchParams:Qme,domainToASCII:Jme,domainToUnicode:ege,pathToFileURL:tge,fileURLToPath:nge};const L_t=Object.freeze(Object.defineProperty({__proto__:null,URL:$d,URLSearchParams:Qme,Url:Zme,default:B_t,domainToASCII:Jme,domainToUnicode:ege,fileURLToPath:nge,format:oge,parse:Kme,pathToFileURL:tge,resolve:Yme,resolveObject:Xme},Symbol.toStringTag,{value:"Module"})),rge=O5(L_t);var AR,GJ;function P_t(){if(GJ)return AR;GJ=1;let e="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";return AR={nanoid:(o=21)=>{let r="",s=o;for(;s--;)r+=e[Math.random()*64|0];return r},customAlphabet:(o,r=21)=>(s=r)=>{let i="",c=s;for(;c--;)i+=o[Math.random()*o.length|0];return i}},AR}var j_t=null;const I_t=Object.freeze(Object.defineProperty({__proto__:null,default:j_t},Symbol.toStringTag,{value:"Module"})),D_t=O5(I_t);var vR,KJ;function F_t(){if(KJ)return vR;KJ=1;let{existsSync:e,readFileSync:t}=D_t,{dirname:n,join:o}=j7(),{SourceMapConsumer:r,SourceMapGenerator:s}=_h;function i(l){return rh?rh.from(l,"base64").toString():window.atob(l)}class c{constructor(u,d){if(d.map===!1)return;this.loadAnnotation(u),this.inline=this.startWith(this.annotation,"data:");let p=d.map?d.map.prev:void 0,f=this.loadMap(d.from,p);!this.mapFile&&d.from&&(this.mapFile=d.from),this.mapFile&&(this.root=n(this.mapFile)),f&&(this.text=f)}consumer(){return this.consumerCache||(this.consumerCache=new r(this.text)),this.consumerCache}decodeInline(u){let d=/^data:application\/json;charset=utf-?8;base64,/,p=/^data:application\/json;base64,/,f=/^data:application\/json;charset=utf-?8,/,b=/^data:application\/json,/,h=u.match(f)||u.match(b);if(h)return decodeURIComponent(u.substr(h[0].length));let g=u.match(d)||u.match(p);if(g)return i(u.substr(g[0].length));let z=u.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+z)}getAnnotationURL(u){return u.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}isMap(u){return typeof u!="object"?!1:typeof u.mappings=="string"||typeof u._mappings=="string"||Array.isArray(u.sections)}loadAnnotation(u){let d=u.match(/\/\*\s*# sourceMappingURL=/g);if(!d)return;let p=u.lastIndexOf(d.pop()),f=u.indexOf("*/",p);p>-1&&f>-1&&(this.annotation=this.getAnnotationURL(u.substring(p,f)))}loadFile(u){if(this.root=n(u),e(u))return this.mapFile=u,t(u,"utf-8").toString().trim()}loadMap(u,d){if(d===!1)return!1;if(d){if(typeof d=="string")return d;if(typeof d=="function"){let p=d(u);if(p){let f=this.loadFile(p);if(!f)throw new Error("Unable to load previous source map: "+p.toString());return f}}else{if(d instanceof r)return s.fromSourceMap(d).toString();if(d instanceof s)return d.toString();if(this.isMap(d))return JSON.stringify(d);throw new Error("Unsupported previous source map format: "+d.toString())}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let p=this.annotation;return u&&(p=o(n(u),p)),this.loadFile(p)}}}startWith(u,d){return u?u.substr(0,d.length)===d:!1}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}return vR=c,c.default=c,vR}var xR,YJ;function sge(){if(YJ)return xR;YJ=1;let{nanoid:e}=P_t(),{isAbsolute:t,resolve:n}=j7(),{SourceMapConsumer:o,SourceMapGenerator:r}=_h,{fileURLToPath:s,pathToFileURL:i}=rge,c=N7(),l=F_t(),u=_h,d=Symbol("fromOffsetCache"),p=!!(o&&r),f=!!(n&&t);class b{constructor(g,z={}){if(g===null||typeof g>"u"||typeof g=="object"&&!g.toString)throw new Error(`PostCSS received ${g} instead of CSS string`);if(this.css=g.toString(),this.css[0]==="\uFEFF"||this.css[0]===""?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,z.from&&(!f||/^\w+:\/\//.test(z.from)||t(z.from)?this.file=z.from:this.file=n(z.from)),f&&p){let A=new l(this.css,z);if(A.text){this.map=A;let _=A.consumer().file;!this.file&&_&&(this.file=this.mapResolve(_))}}this.file||(this.id="<input css "+e(6)+">"),this.map&&(this.map.file=this.from)}error(g,z,A,_={}){let v,M,y;if(z&&typeof z=="object"){let S=z,C=A;if(typeof S.offset=="number"){let R=this.fromOffset(S.offset);z=R.line,A=R.col}else z=S.line,A=S.column;if(typeof C.offset=="number"){let R=this.fromOffset(C.offset);M=R.line,v=R.col}else M=C.line,v=C.column}else if(!A){let S=this.fromOffset(z);z=S.line,A=S.col}let k=this.origin(z,A,M,v);return k?y=new c(g,k.endLine===void 0?k.line:{column:k.column,line:k.line},k.endLine===void 0?k.column:{column:k.endColumn,line:k.endLine},k.source,k.file,_.plugin):y=new c(g,M===void 0?z:{column:A,line:z},M===void 0?A:{column:v,line:M},this.css,this.file,_.plugin),y.input={column:A,endColumn:v,endLine:M,line:z,source:this.css},this.file&&(i&&(y.input.url=i(this.file).toString()),y.input.file=this.file),y}fromOffset(g){let z,A;if(this[d])A=this[d];else{let v=this.css.split(` +`);A=new Array(v.length);let M=0;for(let y=0,k=v.length;y<k;y++)A[y]=M,M+=v[y].length+1;this[d]=A}z=A[A.length-1];let _=0;if(g>=z)_=A.length-1;else{let v=A.length-2,M;for(;_<v;)if(M=_+(v-_>>1),g<A[M])v=M-1;else if(g>=A[M+1])_=M+1;else{_=M;break}}return{col:g-A[_]+1,line:_+1}}mapResolve(g){return/^\w+:\/\//.test(g)?g:n(this.map.consumer().sourceRoot||this.map.root||".",g)}origin(g,z,A,_){if(!this.map)return!1;let v=this.map.consumer(),M=v.originalPositionFor({column:z,line:g});if(!M.source)return!1;let y;typeof A=="number"&&(y=v.originalPositionFor({column:_,line:A}));let k;t(M.source)?k=i(M.source):k=new URL(M.source,this.map.consumer().sourceRoot||i(this.map.mapFile));let S={column:M.column,endColumn:y&&y.column,endLine:y&&y.line,line:M.line,url:k.toString()};if(k.protocol==="file:")if(s)S.file=s(k);else throw new Error("file: protocol is not available in this PostCSS build");let C=v.sourceContentFor(M.source);return C&&(S.source=C),S}toJSON(){let g={};for(let z of["hasBOM","css","file","id"])this[z]!=null&&(g[z]=this[z]);return this.map&&(g.map={...this.map},g.map.consumerCache&&(g.map.consumerCache=void 0)),g}get from(){return this.file||this.id}}return xR=b,b.default=b,u&&u.registerInput&&u.registerInput(b),xR}var wR,ZJ;function ige(){if(ZJ)return wR;ZJ=1;let{dirname:e,relative:t,resolve:n,sep:o}=j7(),{SourceMapConsumer:r,SourceMapGenerator:s}=_h,{pathToFileURL:i}=rge,c=sge(),l=!!(r&&s),u=!!(e&&n&&t&&o);class d{constructor(f,b,h,g){this.stringify=f,this.mapOpts=h.map||{},this.root=b,this.opts=h,this.css=g,this.originalCSS=g,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let f;this.isInline()?f="data:application/json;base64,"+this.toBase64(this.map.toString()):typeof this.mapOpts.annotation=="string"?f=this.mapOpts.annotation:typeof this.mapOpts.annotation=="function"?f=this.mapOpts.annotation(this.opts.to,this.root):f=this.outputFile()+".map";let b=` `;this.css.includes(`\r `)&&(b=`\r `),this.css+=b+"/*# sourceMappingURL="+f+" */"}applyPrevMaps(){for(let f of this.previous()){let b=this.toUrl(this.path(f.file)),h=f.root||e(f.file),g;this.mapOpts.sourcesContent===!1?(g=new r(f.text),g.sourcesContent&&(g.sourcesContent=null)):g=f.consumer(),this.map.applySourceMap(g,b,this.toUrl(this.path(h)))}}clearAnnotation(){if(this.mapOpts.annotation!==!1)if(this.root){let f;for(let b=this.root.nodes.length-1;b>=0;b--)f=this.root.nodes[b],f.type==="comment"&&f.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(b)}else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}generate(){if(this.clearAnnotation(),u&&l&&this.isMap())return this.generateMap();{let f="";return this.stringify(this.root,b=>{f+=b}),[f]}}generateMap(){if(this.root)this.generateString();else if(this.previous().length===1){let f=this.previous()[0].consumer();f.file=this.outputFile(),this.map=s.fromSourceMap(f,{ignoreInvalidMapping:!0})}else this.map=new s({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>"});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}generateString(){this.css="",this.map=new s({file:this.outputFile(),ignoreInvalidMapping:!0});let f=1,b=1,h="<no source>",g={generated:{column:0,line:0},original:{column:0,line:0},source:""},z,A;this.stringify(this.root,(_,v,M)=>{if(this.css+=_,v&&M!=="end"&&(g.generated.line=f,g.generated.column=b-1,v.source&&v.source.start?(g.source=this.sourcePath(v),g.original.line=v.source.start.line,g.original.column=v.source.start.column-1,this.map.addMapping(g)):(g.source=h,g.original.line=1,g.original.column=0,this.map.addMapping(g))),A=_.match(/\n/g),A?(f+=A.length,z=_.lastIndexOf(` -`),b=_.length-z):b+=_.length,v&&M!=="start"){let y=v.parent||{raws:{}};(!(v.type==="decl"||v.type==="atrule"&&!v.nodes)||v!==y.last||y.raws.semicolon)&&(v.source&&v.source.end?(g.source=this.sourcePath(v),g.original.line=v.source.end.line,g.original.column=v.source.end.column-1,g.generated.line=f,g.generated.column=b-2,this.map.addMapping(g)):(g.source=h,g.original.line=1,g.original.column=0,g.generated.line=f,g.generated.column=b-1,this.map.addMapping(g)))}})}isAnnotation(){return this.isInline()?!0:typeof this.mapOpts.annotation<"u"?this.mapOpts.annotation:this.previous().length?this.previous().some(f=>f.annotation):!0}isInline(){if(typeof this.mapOpts.inline<"u")return this.mapOpts.inline;let f=this.mapOpts.annotation;return typeof f<"u"&&f!==!0?!1:this.previous().length?this.previous().some(b=>b.inline):!0}isMap(){return typeof this.opts.map<"u"?!!this.opts.map:this.previous().length>0}isSourcesContent(){return typeof this.mapOpts.sourcesContent<"u"?this.mapOpts.sourcesContent:this.previous().length?this.previous().some(f=>f.withContent()):!0}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(f){if(this.mapOpts.absolute||f.charCodeAt(0)===60||/^\w+:\/\//.test(f))return f;let b=this.memoizedPaths.get(f);if(b)return b;let h=this.opts.to?e(this.opts.to):".";typeof this.mapOpts.annotation=="string"&&(h=e(n(h,this.mapOpts.annotation)));let g=t(h,f);return this.memoizedPaths.set(f,g),g}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk(f=>{if(f.source&&f.source.input.map){let b=f.source.input.map;this.previousMaps.includes(b)||this.previousMaps.push(b)}});else{let f=new c(this.originalCSS,this.opts);f.map&&this.previousMaps.push(f.map)}return this.previousMaps}setSourcesContent(){let f={};if(this.root)this.root.walk(b=>{if(b.source){let h=b.source.input.from;if(h&&!f[h]){f[h]=!0;let g=this.usesFileUrls?this.toFileUrl(h):this.toUrl(this.path(h));this.map.setSourceContent(g,b.source.input.css)}}});else if(this.css){let b=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(b,this.css)}}sourcePath(f){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(f.source.input.from):this.toUrl(this.path(f.source.input.from))}toBase64(f){return rh?rh.from(f).toString("base64"):window.btoa(unescape(encodeURIComponent(f)))}toFileUrl(f){let b=this.memoizedFileURLs.get(f);if(b)return b;if(i){let h=i(f).toString();return this.memoizedFileURLs.set(f,h),h}else throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(f){let b=this.memoizedURLs.get(f);if(b)return b;o==="\\"&&(f=f.replace(/\\/g,"/"));let h=encodeURI(f).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(f,h),h}}return _R=d,_R}var kR,QJ;function V_t(){if(QJ)return kR;QJ=1;let e=Am();class t extends e{constructor(o){super(o),this.type="atrule"}append(...o){return this.proxyOf.nodes||(this.nodes=[]),super.append(...o)}prepend(...o){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...o)}}return kR=t,t.default=t,e.registerAtRule(t),kR}var SR,JJ;function V7(){if(JJ)return SR;JJ=1;let e=Am(),t,n;class o extends e{constructor(s){super(s),this.type="root",this.nodes||(this.nodes=[])}normalize(s,i,c){let l=super.normalize(s);if(i){if(c==="prepend")this.nodes.length>1?i.raws.before=this.nodes[1].raws.before:delete i.raws.before;else if(this.first!==i)for(let u of l)u.raws.before=i.raws.before}return l}removeChild(s,i){let c=this.index(s);return!i&&c===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[c].raws.before),super.removeChild(s)}toResult(s={}){return new t(new n,this,s).stringify()}}return o.registerLazyResult=r=>{t=r},o.registerProcessor=r=>{n=r},SR=o,o.default=o,e.registerRoot(o),SR}var CR,eee;function H_t(){if(eee)return CR;eee=1;let e={comma(t){return e.split(t,[","],!0)},space(t){let n=[" ",` -`," "];return e.split(t,n)},split(t,n,o){let r=[],s="",i=!1,c=0,l=!1,u="",d=!1;for(let p of t)d?d=!1:p==="\\"?d=!0:l?p===u&&(l=!1):p==='"'||p==="'"?(l=!0,u=p):p==="("?c+=1:p===")"?c>0&&(c-=1):c===0&&n.includes(p)&&(i=!0),i?(s!==""&&r.push(s.trim()),s="",i=!1):s+=p;return(o||s!=="")&&r.push(s.trim()),r}};return CR=e,e.default=e,CR}var qR,tee;function U_t(){if(tee)return qR;tee=1;let e=Am(),t=H_t();class n extends e{constructor(r){super(r),this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return t.comma(this.selector)}set selectors(r){let s=this.selector?this.selector.match(/,\s*/):null,i=s?s[0]:","+this.raw("between","beforeOpen");this.selector=r.join(i)}}return qR=n,n.default=n,e.registerRule(n),qR}var RR,nee;function X_t(){if(nee)return RR;nee=1;const e=39,t=34,n=92,o=47,r=10,s=32,i=12,c=9,l=13,u=91,d=93,p=40,f=41,b=123,h=125,g=59,z=42,A=58,_=64,v=/[\t\n\f\r "#'()/;[\\\]{}]/g,M=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,y=/.[\r\n"'(/\\]/,k=/[\da-f]/i;return RR=function(C,R={}){let T=C.css.valueOf(),E=R.ignoreErrors,B,N,j,I,P,$,F,X,Z,V,ee=T.length,te=0,J=[],ue=[];function ce(){return te}function me(Ne){throw C.error("Unclosed "+Ne,te)}function de(){return ue.length===0&&te>=ee}function Ae(Ne){if(ue.length)return ue.pop();if(te>=ee)return;let je=Ne?Ne.ignoreUnclosed:!1;switch(B=T.charCodeAt(te),B){case r:case s:case c:case l:case i:{I=te;do I+=1,B=T.charCodeAt(I);while(B===s||B===r||B===c||B===l||B===i);$=["space",T.slice(te,I)],te=I-1;break}case u:case d:case b:case h:case A:case g:case f:{let ie=String.fromCharCode(B);$=[ie,ie,te];break}case p:{if(V=J.length?J.pop()[1]:"",Z=T.charCodeAt(te+1),V==="url"&&Z!==e&&Z!==t&&Z!==s&&Z!==r&&Z!==c&&Z!==i&&Z!==l){I=te;do{if(F=!1,I=T.indexOf(")",I+1),I===-1)if(E||je){I=te;break}else me("bracket");for(X=I;T.charCodeAt(X-1)===n;)X-=1,F=!F}while(F);$=["brackets",T.slice(te,I+1),te,I],te=I}else I=T.indexOf(")",te+1),N=T.slice(te,I+1),I===-1||y.test(N)?$=["(","(",te]:($=["brackets",N,te,I],te=I);break}case e:case t:{P=B===e?"'":'"',I=te;do{if(F=!1,I=T.indexOf(P,I+1),I===-1)if(E||je){I=te+1;break}else me("string");for(X=I;T.charCodeAt(X-1)===n;)X-=1,F=!F}while(F);$=["string",T.slice(te,I+1),te,I],te=I;break}case _:{v.lastIndex=te+1,v.test(T),v.lastIndex===0?I=T.length-1:I=v.lastIndex-2,$=["at-word",T.slice(te,I+1),te,I],te=I;break}case n:{for(I=te,j=!0;T.charCodeAt(I+1)===n;)I+=1,j=!j;if(B=T.charCodeAt(I+1),j&&B!==o&&B!==s&&B!==r&&B!==c&&B!==l&&B!==i&&(I+=1,k.test(T.charAt(I)))){for(;k.test(T.charAt(I+1));)I+=1;T.charCodeAt(I+1)===s&&(I+=1)}$=["word",T.slice(te,I+1),te,I],te=I;break}default:{B===o&&T.charCodeAt(te+1)===z?(I=T.indexOf("*/",te+2)+1,I===0&&(E||je?I=T.length:me("comment")),$=["comment",T.slice(te,I+1),te,I],te=I):(M.lastIndex=te+1,M.test(T),M.lastIndex===0?I=T.length-1:I=M.lastIndex-2,$=["word",T.slice(te,I+1),te,I],J.push($),te=I);break}}return te++,$}function ye(Ne){ue.push(Ne)}return{back:ye,endOfFile:de,nextToken:Ae,position:ce}},RR}var TR,oee;function G_t(){if(oee)return TR;oee=1;let e=V_t(),t=Nme(),n=Bme(),o=V7(),r=U_t(),s=X_t();const i={empty:!0,space:!0};function c(u){for(let d=u.length-1;d>=0;d--){let p=u[d],f=p[3]||p[2];if(f)return f}}class l{constructor(d){this.input=d,this.root=new o,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:d,start:{column:1,line:1,offset:0}}}atrule(d){let p=new e;p.name=d[1].slice(1),p.name===""&&this.unnamedAtrule(p,d),this.init(p,d[2]);let f,b,h,g=!1,z=!1,A=[],_=[];for(;!this.tokenizer.endOfFile();){if(d=this.tokenizer.nextToken(),f=d[0],f==="("||f==="["?_.push(f==="("?")":"]"):f==="{"&&_.length>0?_.push("}"):f===_[_.length-1]&&_.pop(),_.length===0)if(f===";"){p.source.end=this.getPosition(d[2]),p.source.end.offset++,this.semicolon=!0;break}else if(f==="{"){z=!0;break}else if(f==="}"){if(A.length>0){for(h=A.length-1,b=A[h];b&&b[0]==="space";)b=A[--h];b&&(p.source.end=this.getPosition(b[3]||b[2]),p.source.end.offset++)}this.end(d);break}else A.push(d);else A.push(d);if(this.tokenizer.endOfFile()){g=!0;break}}p.raws.between=this.spacesAndCommentsFromEnd(A),A.length?(p.raws.afterName=this.spacesAndCommentsFromStart(A),this.raw(p,"params",A),g&&(d=A[A.length-1],p.source.end=this.getPosition(d[3]||d[2]),p.source.end.offset++,this.spaces=p.raws.between,p.raws.between="")):(p.raws.afterName="",p.params=""),z&&(p.nodes=[],this.current=p)}checkMissedSemicolon(d){let p=this.colon(d);if(p===!1)return;let f=0,b;for(let h=p-1;h>=0&&(b=d[h],!(b[0]!=="space"&&(f+=1,f===2)));h--);throw this.input.error("Missed semicolon",b[0]==="word"?b[3]+1:b[2])}colon(d){let p=0,f,b,h;for(let[g,z]of d.entries()){if(b=z,h=b[0],h==="("&&(p+=1),h===")"&&(p-=1),p===0&&h===":")if(!f)this.doubleColon(b);else{if(f[0]==="word"&&f[1]==="progid")continue;return g}f=b}return!1}comment(d){let p=new t;this.init(p,d[2]),p.source.end=this.getPosition(d[3]||d[2]),p.source.end.offset++;let f=d[1].slice(2,-2);if(/^\s*$/.test(f))p.text="",p.raws.left=f,p.raws.right="";else{let b=f.match(/^(\s*)([^]*\S)(\s*)$/);p.text=b[2],p.raws.left=b[1],p.raws.right=b[3]}}createTokenizer(){this.tokenizer=s(this.input)}decl(d,p){let f=new n;this.init(f,d[0][2]);let b=d[d.length-1];for(b[0]===";"&&(this.semicolon=!0,d.pop()),f.source.end=this.getPosition(b[3]||b[2]||c(d)),f.source.end.offset++;d[0][0]!=="word";)d.length===1&&this.unknownWord(d),f.raws.before+=d.shift()[1];for(f.source.start=this.getPosition(d[0][2]),f.prop="";d.length;){let _=d[0][0];if(_===":"||_==="space"||_==="comment")break;f.prop+=d.shift()[1]}f.raws.between="";let h;for(;d.length;)if(h=d.shift(),h[0]===":"){f.raws.between+=h[1];break}else h[0]==="word"&&/\w/.test(h[1])&&this.unknownWord([h]),f.raws.between+=h[1];(f.prop[0]==="_"||f.prop[0]==="*")&&(f.raws.before+=f.prop[0],f.prop=f.prop.slice(1));let g=[],z;for(;d.length&&(z=d[0][0],!(z!=="space"&&z!=="comment"));)g.push(d.shift());this.precheckMissedSemicolon(d);for(let _=d.length-1;_>=0;_--){if(h=d[_],h[1].toLowerCase()==="!important"){f.important=!0;let v=this.stringFrom(d,_);v=this.spacesFromEnd(d)+v,v!==" !important"&&(f.raws.important=v);break}else if(h[1].toLowerCase()==="important"){let v=d.slice(0),M="";for(let y=_;y>0;y--){let k=v[y][0];if(M.trim().startsWith("!")&&k!=="space")break;M=v.pop()[1]+M}M.trim().startsWith("!")&&(f.important=!0,f.raws.important=M,d=v)}if(h[0]!=="space"&&h[0]!=="comment")break}d.some(_=>_[0]!=="space"&&_[0]!=="comment")&&(f.raws.between+=g.map(_=>_[1]).join(""),g=[]),this.raw(f,"value",g.concat(d),p),f.value.includes(":")&&!p&&this.checkMissedSemicolon(d)}doubleColon(d){throw this.input.error("Double colon",{offset:d[2]},{offset:d[2]+d[1].length})}emptyRule(d){let p=new r;this.init(p,d[2]),p.selector="",p.raws.between="",this.current=p}end(d){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(d[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(d)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(d){if(this.spaces+=d[1],this.current.nodes){let p=this.current.nodes[this.current.nodes.length-1];p&&p.type==="rule"&&!p.raws.ownSemicolon&&(p.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(d){let p=this.input.fromOffset(d);return{column:p.col,line:p.line,offset:d}}init(d,p){this.current.push(d),d.source={input:this.input,start:this.getPosition(p)},d.raws.before=this.spaces,this.spaces="",d.type!=="comment"&&(this.semicolon=!1)}other(d){let p=!1,f=null,b=!1,h=null,g=[],z=d[1].startsWith("--"),A=[],_=d;for(;_;){if(f=_[0],A.push(_),f==="("||f==="[")h||(h=_),g.push(f==="("?")":"]");else if(z&&b&&f==="{")h||(h=_),g.push("}");else if(g.length===0)if(f===";")if(b){this.decl(A,z);return}else break;else if(f==="{"){this.rule(A);return}else if(f==="}"){this.tokenizer.back(A.pop()),p=!0;break}else f===":"&&(b=!0);else f===g[g.length-1]&&(g.pop(),g.length===0&&(h=null));_=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(p=!0),g.length>0&&this.unclosedBracket(h),p&&b){if(!z)for(;A.length&&(_=A[A.length-1][0],!(_!=="space"&&_!=="comment"));)this.tokenizer.back(A.pop());this.decl(A,z)}else this.unknownWord(A)}parse(){let d;for(;!this.tokenizer.endOfFile();)switch(d=this.tokenizer.nextToken(),d[0]){case"space":this.spaces+=d[1];break;case";":this.freeSemicolon(d);break;case"}":this.end(d);break;case"comment":this.comment(d);break;case"at-word":this.atrule(d);break;case"{":this.emptyRule(d);break;default:this.other(d);break}this.endFile()}precheckMissedSemicolon(){}raw(d,p,f,b){let h,g,z=f.length,A="",_=!0,v,M;for(let y=0;y<z;y+=1)h=f[y],g=h[0],g==="space"&&y===z-1&&!b?_=!1:g==="comment"?(M=f[y-1]?f[y-1][0]:"empty",v=f[y+1]?f[y+1][0]:"empty",!i[M]&&!i[v]?A.slice(-1)===","?_=!1:A+=h[1]:_=!1):A+=h[1];if(!_){let y=f.reduce((k,S)=>k+S[1],"");d.raws[p]={raw:y,value:A}}d[p]=A}rule(d){d.pop();let p=new r;this.init(p,d[0][2]),p.raws.between=this.spacesAndCommentsFromEnd(d),this.raw(p,"selector",d),this.current=p}spacesAndCommentsFromEnd(d){let p,f="";for(;d.length&&(p=d[d.length-1][0],!(p!=="space"&&p!=="comment"));)f=d.pop()[1]+f;return f}spacesAndCommentsFromStart(d){let p,f="";for(;d.length&&(p=d[0][0],!(p!=="space"&&p!=="comment"));)f+=d.shift()[1];return f}spacesFromEnd(d){let p,f="";for(;d.length&&(p=d[d.length-1][0],p==="space");)f=d.pop()[1]+f;return f}stringFrom(d,p){let f="";for(let b=p;b<d.length;b++)f+=d[b][1];return d.splice(p,d.length-p),f}unclosedBlock(){let d=this.current.source.start;throw this.input.error("Unclosed block",d.line,d.column)}unclosedBracket(d){throw this.input.error("Unclosed bracket",{offset:d[2]},{offset:d[2]+1})}unexpectedClose(d){throw this.input.error("Unexpected }",{offset:d[2]},{offset:d[2]+1})}unknownWord(d){throw this.input.error("Unknown word",{offset:d[0][2]},{offset:d[0][2]+d[0][1].length})}unnamedAtrule(d,p){throw this.input.error("At-rule without name",{offset:p[2]},{offset:p[2]+p[1].length})}}return TR=l,TR}var ER,ree;function age(){if(ree)return ER;ree=1;let e=Am(),t=sge(),n=G_t();function o(r,s){let i=new t(r,s),c=new n(i);try{c.parse()}catch(l){throw l}return c.root}return ER=o,o.default=o,e.registerParse(o),ER}var WR,see;function K_t(){if(see)return WR;see=1;class e{constructor(n,o={}){if(this.type="warning",this.text=n,o.node&&o.node.source){let r=o.node.rangeBy(o);this.line=r.start.line,this.column=r.start.column,this.endLine=r.end.line,this.endColumn=r.end.column}for(let r in o)this[r]=o[r]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}return WR=e,e.default=e,WR}var NR,iee;function cge(){if(iee)return NR;iee=1;let e=K_t();class t{constructor(o,r,s){this.processor=o,this.messages=[],this.root=r,this.opts=s,this.css=void 0,this.map=void 0}toString(){return this.css}warn(o,r={}){r.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(r.plugin=this.lastPlugin.postcssPlugin);let s=new e(o,r);return this.messages.push(s),s}warnings(){return this.messages.filter(o=>o.type==="warning")}get content(){return this.css}}return NR=t,t.default=t,NR}var BR,aee;function Y_t(){if(aee)return BR;aee=1;let e=Am(),t=Lme(),n=ige(),o=age(),r=cge(),s=V7(),i=L7(),{isClean:c,my:l}=P7();const u={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},d={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},p={Once:!0,postcssPlugin:!0,prepare:!0},f=0;function b(v){return typeof v=="object"&&typeof v.then=="function"}function h(v){let M=!1,y=u[v.type];return v.type==="decl"?M=v.prop.toLowerCase():v.type==="atrule"&&(M=v.name.toLowerCase()),M&&v.append?[y,y+"-"+M,f,y+"Exit",y+"Exit-"+M]:M?[y,y+"-"+M,y+"Exit",y+"Exit-"+M]:v.append?[y,f,y+"Exit"]:[y,y+"Exit"]}function g(v){let M;return v.type==="document"?M=["Document",f,"DocumentExit"]:v.type==="root"?M=["Root",f,"RootExit"]:M=h(v),{eventIndex:0,events:M,iterator:0,node:v,visitorIndex:0,visitors:[]}}function z(v){return v[c]=!1,v.nodes&&v.nodes.forEach(M=>z(M)),v}let A={};class _{constructor(M,y,k){this.stringified=!1,this.processed=!1;let S;if(typeof y=="object"&&y!==null&&(y.type==="root"||y.type==="document"))S=z(y);else if(y instanceof _||y instanceof r)S=z(y.root),y.map&&(typeof k.map>"u"&&(k.map={}),k.map.inline||(k.map.inline=!1),k.map.prev=y.map);else{let C=o;k.syntax&&(C=k.syntax.parse),k.parser&&(C=k.parser),C.parse&&(C=C.parse);try{S=C(y,k)}catch(R){this.processed=!0,this.error=R}S&&!S[l]&&e.rebuild(S)}this.result=new r(M,S,k),this.helpers={...A,postcss:A,result:this.result},this.plugins=this.processor.plugins.map(C=>typeof C=="object"&&C.prepare?{...C,...C.prepare(this.result)}:C)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(M){return this.async().catch(M)}finally(M){return this.async().then(M,M)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(M,y){let k=this.result.lastPlugin;try{y&&y.addToError(M),this.error=M,M.name==="CssSyntaxError"&&!M.plugin?(M.plugin=k.postcssPlugin,M.setMessage()):k.postcssVersion}catch(S){console&&console.error&&console.error(S)}return M}prepareVisitors(){this.listeners={};let M=(y,k,S)=>{this.listeners[k]||(this.listeners[k]=[]),this.listeners[k].push([y,S])};for(let y of this.plugins)if(typeof y=="object")for(let k in y){if(!d[k]&&/^[A-Z]/.test(k))throw new Error(`Unknown event ${k} in ${y.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!p[k])if(typeof y[k]=="object")for(let S in y[k])S==="*"?M(y,k,y[k][S]):M(y,k+"-"+S.toLowerCase(),y[k][S]);else typeof y[k]=="function"&&M(y,k,y[k])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let M=0;M<this.plugins.length;M++){let y=this.plugins[M],k=this.runOnRoot(y);if(b(k))try{await k}catch(S){throw this.handleError(S)}}if(this.prepareVisitors(),this.hasListener){let M=this.result.root;for(;!M[c];){M[c]=!0;let y=[g(M)];for(;y.length>0;){let k=this.visitTick(y);if(b(k))try{await k}catch(S){let C=y[y.length-1].node;throw this.handleError(S,C)}}}if(this.listeners.OnceExit)for(let[y,k]of this.listeners.OnceExit){this.result.lastPlugin=y;try{if(M.type==="document"){let S=M.nodes.map(C=>k(C,this.helpers));await Promise.all(S)}else await k(M,this.helpers)}catch(S){throw this.handleError(S)}}}return this.processed=!0,this.stringify()}runOnRoot(M){this.result.lastPlugin=M;try{if(typeof M=="object"&&M.Once){if(this.result.root.type==="document"){let y=this.result.root.nodes.map(k=>M.Once(k,this.helpers));return b(y[0])?Promise.all(y):y}return M.Once(this.result.root,this.helpers)}else if(typeof M=="function")return M(this.result.root,this.result)}catch(y){throw this.handleError(y)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let M=this.result.opts,y=i;M.syntax&&(y=M.syntax.stringify),M.stringifier&&(y=M.stringifier),y.stringify&&(y=y.stringify);let S=new n(y,this.result.root,this.result.opts).generate();return this.result.css=S[0],this.result.map=S[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let M of this.plugins){let y=this.runOnRoot(M);if(b(y))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let M=this.result.root;for(;!M[c];)M[c]=!0,this.walkSync(M);if(this.listeners.OnceExit)if(M.type==="document")for(let y of M.nodes)this.visitSync(this.listeners.OnceExit,y);else this.visitSync(this.listeners.OnceExit,M)}return this.result}then(M,y){return this.async().then(M,y)}toString(){return this.css}visitSync(M,y){for(let[k,S]of M){this.result.lastPlugin=k;let C;try{C=S(y,this.helpers)}catch(R){throw this.handleError(R,y.proxyOf)}if(y.type!=="root"&&y.type!=="document"&&!y.parent)return!0;if(b(C))throw this.getAsyncError()}}visitTick(M){let y=M[M.length-1],{node:k,visitors:S}=y;if(k.type!=="root"&&k.type!=="document"&&!k.parent){M.pop();return}if(S.length>0&&y.visitorIndex<S.length){let[R,T]=S[y.visitorIndex];y.visitorIndex+=1,y.visitorIndex===S.length&&(y.visitors=[],y.visitorIndex=0),this.result.lastPlugin=R;try{return T(k.toProxy(),this.helpers)}catch(E){throw this.handleError(E,k)}}if(y.iterator!==0){let R=y.iterator,T;for(;T=k.nodes[k.indexes[R]];)if(k.indexes[R]+=1,!T[c]){T[c]=!0,M.push(g(T));return}y.iterator=0,delete k.indexes[R]}let C=y.events;for(;y.eventIndex<C.length;){let R=C[y.eventIndex];if(y.eventIndex+=1,R===f){k.nodes&&k.nodes.length&&(k[c]=!0,y.iterator=k.getIterator());return}else if(this.listeners[R]){y.visitors=this.listeners[R];return}}M.pop()}walkSync(M){M[c]=!0;let y=h(M);for(let k of y)if(k===f)M.nodes&&M.each(S=>{S[c]||this.walkSync(S)});else{let S=this.listeners[k];if(S&&this.visitSync(S,M.toProxy()))return}}warnings(){return this.sync().warnings()}get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}}return _.registerPostcss=v=>{A=v},BR=_,_.default=_,s.registerLazyResult(_),t.registerLazyResult(_),BR}var LR,cee;function Z_t(){if(cee)return LR;cee=1;let e=ige(),t=age();const n=cge();let o=L7();class r{constructor(i,c,l){c=c.toString(),this.stringified=!1,this._processor=i,this._css=c,this._opts=l,this._map=void 0;let u,d=o;this.result=new n(this._processor,u,this._opts),this.result.css=c;let p=this;Object.defineProperty(this.result,"root",{get(){return p.root}});let f=new e(d,u,this._opts,c);if(f.isMap()){let[b,h]=f.generate();b&&(this.result.css=b),h&&(this.result.map=h)}else f.clearAnnotation(),this.result.css=f.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(i){return this.async().catch(i)}finally(i){return this.async().then(i,i)}sync(){if(this.error)throw this.error;return this.result}then(i,c){return this.async().then(i,c)}toString(){return this._css}warnings(){return[]}get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let i,c=t;try{i=c(this._css,this._opts)}catch(l){this.error=l}if(this.error)throw this.error;return this._root=i,i}get[Symbol.toStringTag](){return"NoWorkResult"}}return LR=r,r.default=r,LR}var PR,lee;function Q_t(){if(lee)return PR;lee=1;let e=Lme(),t=Y_t(),n=Z_t(),o=V7();class r{constructor(i=[]){this.version="8.4.49",this.plugins=this.normalize(i)}normalize(i){let c=[];for(let l of i)if(l.postcss===!0?l=l():l.postcss&&(l=l.postcss),typeof l=="object"&&Array.isArray(l.plugins))c=c.concat(l.plugins);else if(typeof l=="object"&&l.postcssPlugin)c.push(l);else if(typeof l=="function")c.push(l);else if(!(typeof l=="object"&&(l.parse||l.stringify)))throw new Error(l+" is not a PostCSS plugin");return c}process(i,c={}){return!this.plugins.length&&!c.parser&&!c.stringifier&&!c.syntax?new n(this,i,c):new t(this,i,c)}use(i){return this.plugins=this.plugins.concat(this.normalize([i])),this}}return PR=r,r.default=r,o.registerProcessor(r),e.registerProcessor(r),PR}var J_t=Q_t();const ekt=Zr(J_t);var tkt=B7();const nkt=Zr(tkt);var jR,uee;function okt(){if(uee)return jR;uee=1,jR=function(o){const r=o.prefix,s=/\s+$/.test(r)?r:`${r} `,i=o.ignoreFiles?[].concat(o.ignoreFiles):[],c=o.includeFiles?[].concat(o.includeFiles):[];return function(l){i.length&&l.source.input.file&&e(l.source.input.file,i)||c.length&&l.source.input.file&&!e(l.source.input.file,c)||l.walkRules(u=>{const d=["keyframes","-webkit-keyframes","-moz-keyframes","-o-keyframes","-ms-keyframes"];u.parent&&d.includes(u.parent.name)||(u.selectors=u.selectors.map(p=>o.exclude&&t(p,o.exclude)?p:o.transform?o.transform(r,p,s+p,l.source.input.file,u):s+p))})}};function e(n,o){return o.some(r=>r instanceof RegExp?r.test(n):n.includes(r))}function t(n,o){return o.some(r=>r instanceof RegExp?r.test(n):n===r)}return jR}var rkt=okt();const skt=Zr(rkt);var sv={exports:{}},IR,dee;function ikt(){if(dee)return IR;dee=1;var e=40,t=41,n=39,o=34,r=92,s=47,i=44,c=58,l=42,u=117,d=85,p=43,f=/^[a-f0-9?-]+$/i;return IR=function(b){for(var h=[],g=b,z,A,_,v,M,y,k,S,C=0,R=g.charCodeAt(C),T=g.length,E=[{nodes:h}],B=0,N,j="",I="",P="";C<T;)if(R<=32){z=C;do z+=1,R=g.charCodeAt(z);while(R<=32);v=g.slice(C,z),_=h[h.length-1],R===t&&B?P=v:_&&_.type==="div"?(_.after=v,_.sourceEndIndex+=v.length):R===i||R===c||R===s&&g.charCodeAt(z+1)!==l&&(!N||N&&N.type==="function"&&N.value!=="calc")?I=v:h.push({type:"space",sourceIndex:C,sourceEndIndex:z,value:v}),C=z}else if(R===n||R===o){z=C,A=R===n?"'":'"',v={type:"string",sourceIndex:C,quote:A};do if(M=!1,z=g.indexOf(A,z+1),~z)for(y=z;g.charCodeAt(y-1)===r;)y-=1,M=!M;else g+=A,z=g.length-1,v.unclosed=!0;while(M);v.value=g.slice(C+1,z),v.sourceEndIndex=v.unclosed?z:z+1,h.push(v),C=z+1,R=g.charCodeAt(C)}else if(R===s&&g.charCodeAt(C+1)===l)z=g.indexOf("*/",C),v={type:"comment",sourceIndex:C,sourceEndIndex:z+2},z===-1&&(v.unclosed=!0,z=g.length,v.sourceEndIndex=z),v.value=g.slice(C+2,z),h.push(v),C=z+2,R=g.charCodeAt(C);else if((R===s||R===l)&&N&&N.type==="function"&&N.value==="calc")v=g[C],h.push({type:"word",sourceIndex:C-I.length,sourceEndIndex:C+v.length,value:v}),C+=1,R=g.charCodeAt(C);else if(R===s||R===i||R===c)v=g[C],h.push({type:"div",sourceIndex:C-I.length,sourceEndIndex:C+v.length,value:v,before:I,after:""}),I="",C+=1,R=g.charCodeAt(C);else if(e===R){z=C;do z+=1,R=g.charCodeAt(z);while(R<=32);if(S=C,v={type:"function",sourceIndex:C-j.length,value:j,before:g.slice(S+1,z)},C=z,j==="url"&&R!==n&&R!==o){z-=1;do if(M=!1,z=g.indexOf(")",z+1),~z)for(y=z;g.charCodeAt(y-1)===r;)y-=1,M=!M;else g+=")",z=g.length-1,v.unclosed=!0;while(M);k=z;do k-=1,R=g.charCodeAt(k);while(R<=32);S<k?(C!==k+1?v.nodes=[{type:"word",sourceIndex:C,sourceEndIndex:k+1,value:g.slice(C,k+1)}]:v.nodes=[],v.unclosed&&k+1!==z?(v.after="",v.nodes.push({type:"space",sourceIndex:k+1,sourceEndIndex:z,value:g.slice(k+1,z)})):(v.after=g.slice(k+1,z),v.sourceEndIndex=z)):(v.after="",v.nodes=[]),C=z+1,v.sourceEndIndex=v.unclosed?z:C,R=g.charCodeAt(C),h.push(v)}else B+=1,v.after="",v.sourceEndIndex=C+1,h.push(v),E.push(v),h=v.nodes=[],N=v;j=""}else if(t===R&&B)C+=1,R=g.charCodeAt(C),N.after=P,N.sourceEndIndex+=P.length,P="",B-=1,E[E.length-1].sourceEndIndex=C,E.pop(),N=E[B],h=N.nodes;else{z=C;do R===r&&(z+=1),z+=1,R=g.charCodeAt(z);while(z<T&&!(R<=32||R===n||R===o||R===i||R===c||R===s||R===e||R===l&&N&&N.type==="function"&&N.value==="calc"||R===s&&N.type==="function"&&N.value==="calc"||R===t&&B));v=g.slice(C,z),e===R?j=v:(u===v.charCodeAt(0)||d===v.charCodeAt(0))&&p===v.charCodeAt(1)&&f.test(v.slice(2))?h.push({type:"unicode-range",sourceIndex:C,sourceEndIndex:z,value:v}):h.push({type:"word",sourceIndex:C,sourceEndIndex:z,value:v}),C=z}for(C=E.length-1;C;C-=1)E[C].unclosed=!0,E[C].sourceEndIndex=g.length;return E[0].nodes},IR}var DR,pee;function akt(){return pee||(pee=1,DR=function e(t,n,o){var r,s,i,c;for(r=0,s=t.length;r<s;r+=1)i=t[r],o||(c=n(i,r,t)),c!==!1&&i.type==="function"&&Array.isArray(i.nodes)&&e(i.nodes,n,o),o&&n(i,r,t)}),DR}var FR,fee;function ckt(){if(fee)return FR;fee=1;function e(n,o){var r=n.type,s=n.value,i,c;return o&&(c=o(n))!==void 0?c:r==="word"||r==="space"?s:r==="string"?(i=n.quote||"",i+s+(n.unclosed?"":i)):r==="comment"?"/*"+s+(n.unclosed?"":"*/"):r==="div"?(n.before||"")+s+(n.after||""):Array.isArray(n.nodes)?(i=t(n.nodes,o),r!=="function"?i:s+"("+(n.before||"")+i+(n.after||"")+(n.unclosed?"":")")):s}function t(n,o){var r,s;if(Array.isArray(n)){for(r="",s=n.length-1;~s;s-=1)r=e(n[s],o)+r;return r}return e(n,o)}return FR=t,FR}var $R,bee;function lkt(){if(bee)return $R;bee=1;var e=45,t=43,n=46,o=101,r=69;function s(i){var c=i.charCodeAt(0),l;if(c===t||c===e){if(l=i.charCodeAt(1),l>=48&&l<=57)return!0;var u=i.charCodeAt(2);return l===n&&u>=48&&u<=57}return c===n?(l=i.charCodeAt(1),l>=48&&l<=57):c>=48&&c<=57}return $R=function(i){var c=0,l=i.length,u,d,p;if(l===0||!s(i))return!1;for(u=i.charCodeAt(c),(u===t||u===e)&&c++;c<l&&(u=i.charCodeAt(c),!(u<48||u>57));)c+=1;if(u=i.charCodeAt(c),d=i.charCodeAt(c+1),u===n&&d>=48&&d<=57)for(c+=2;c<l&&(u=i.charCodeAt(c),!(u<48||u>57));)c+=1;if(u=i.charCodeAt(c),d=i.charCodeAt(c+1),p=i.charCodeAt(c+2),(u===o||u===r)&&(d>=48&&d<=57||(d===t||d===e)&&p>=48&&p<=57))for(c+=d===t||d===e?3:2;c<l&&(u=i.charCodeAt(c),!(u<48||u>57));)c+=1;return{number:i.slice(0,c),unit:i.slice(c)}},$R}var VR,hee;function ukt(){if(hee)return VR;hee=1;var e=ikt(),t=akt(),n=ckt();function o(r){return this instanceof o?(this.nodes=e(r),this):new o(r)}return o.prototype.toString=function(){return Array.isArray(this.nodes)?n(this.nodes):""},o.prototype.walk=function(r,s){return t(this.nodes,r,s),this},o.unit=lkt(),o.walk=t,o.stringify=n,VR=o,VR}var mee;function dkt(){if(mee)return sv.exports;mee=1;const e=ukt();return sv.exports=t=>{const o=Object.assign({skipHostRelativeUrls:!0},t);return{postcssPlugin:"rebaseUrl",Declaration(r){const s=e(r.value);let i=!1;s.walk(c=>{if(c.type!=="function"||c.value!=="url")return;const l=c.nodes[0].value,u=new URL(l,t.rootUrl);return u.pathname===l&&o.skipHostRelativeUrls||(c.nodes[0].value=u.toString(),i=!0),!1}),i&&(r.value=e.stringify(s))}}},sv.exports.postcss=!0,sv.exports}var pkt=dkt();const fkt=Zr(pkt),gee=new Map,lge=[{type:"type",content:"body"},{type:"type",content:"html"},{type:"pseudo-class",content:":root"},{type:"pseudo-class",content:":where(body)"},{type:"pseudo-class",content:":where(:root)"},{type:"pseudo-class",content:":where(html)"}];function bkt(e,t){const n=DQ(t),o=n.findLastIndex(({content:i,type:c})=>lge.some(l=>i===l.content&&c===l.type));let r=-1;for(let i=o+1;i<n.length;i++)if(n[i].type==="combinator"){r=i;break}const s=DQ(e);return n.splice(r===-1?n.length:r,0,{type:"combinator",content:" "},...s),Awt(n)}function hkt({css:e,ignoredSelectors:t=[],baseURL:n},o="",r){if(!o&&!n)return e;try{var s;const i=[...t,...(s=r?.ignoredSelectors)!==null&&s!==void 0?s:[],o];return new ekt([o&&skt({prefix:o,transform(c,l,u){return i.some(p=>p instanceof RegExp?l.match(p):l.includes(p))?l:lge.some(p=>l.startsWith(p.content))?bkt(c,l):u}}),n&&fkt({rootUrl:n})].filter(Boolean)).process(e,{}).css}catch(i){return i instanceof nkt?console.warn("wp.blockEditor.transformStyles Failed to transform CSS.",i.message+` -`+i.showSourceCode(!1)):console.warn("wp.blockEditor.transformStyles Failed to transform CSS.",i),null}}const Hx=(e,t="",n)=>{let o=gee.get(t);return o||(o=new WeakMap,gee.set(t,o)),e.map(r=>{let s=o.get(r);return s||(s=hkt(r,t,n),o.set(r,s)),s})};Xs([Gs,Uf]);function mkt(e,t){return x.useCallback(n=>{if(!n)return;const{ownerDocument:o}=n,{defaultView:r,body:s}=o,i=t?o.querySelector(t):s;let c;if(i)c=r?.getComputedStyle(i,null).getPropertyValue("background-color");else{const u=o.createElement("div");u.classList.add("editor-styles-wrapper"),s.appendChild(u),c=r?.getComputedStyle(u,null).getPropertyValue("background-color"),s.removeChild(u)}const l=an(c);l.luminance()>.5||l.alpha()===0?s.classList.remove("is-dark-theme"):s.classList.add("is-dark-theme")},[e,t])}function gkt({styles:e,scope:t,transformOptions:n}){const o=G(i=>ct(i(Q)).getStyleOverrides(),[]),[r,s]=x.useMemo(()=>{const i=Object.values(e??[]);for(const[c,l]of o){const u=i.findIndex(({id:p})=>c===p),d={...l,id:c};u===-1?i.push(d):i[u]=d}return[Hx(i.filter(c=>c?.css),t,n),i.filter(c=>c.__unstableType==="svgs").map(c=>c.assets).join("")]},[e,o,t,n]);return a.jsxs(a.Fragment,{children:[a.jsx("style",{ref:mkt(r,t)}),r.map((i,c)=>a.jsx("style",{children:i},c)),a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 0 0",width:"0",height:"0",role:"none",style:{visibility:"hidden",position:"absolute",left:"-9999px",overflow:"hidden"},dangerouslySetInnerHTML:{__html:s}})]})}const Ux=x.memo(gkt),Mkt=x.memo(I_),HR=2e3,zkt=[];function Okt({viewportWidth:e,containerWidth:t,minHeight:n,additionalStyles:o=zkt}){e||(e=t);const[r,{height:s}]=js(),{styles:i}=G(d=>({styles:d(Q).getSettings().styles}),[]),c=x.useMemo(()=>i&&[...i,{css:"body{height:auto;overflow:hidden;border:none;padding:0;}",__unstableType:"presets"},...o],[i,o]),l=t/e,u=s?t/(s*l):0;return a.jsx(I1,{className:"block-editor-block-preview__content",style:{transform:`scale(${l})`,aspectRatio:u,maxHeight:s>HR?HR*l:void 0,minHeight:n},children:a.jsxs(Eme,{contentRef:Mn(d=>{const{ownerDocument:{documentElement:p}}=d;p.classList.add("block-editor-block-preview__content-iframe"),p.style.position="absolute",p.style.width="100%",d.style.boxSizing="border-box",d.style.position="absolute",d.style.width="100%"},[]),"aria-hidden":!0,tabIndex:-1,style:{position:"absolute",width:e,height:s,pointerEvents:"none",maxHeight:HR,minHeight:l!==0&&l<1&&n?n/l:n},children:[a.jsx(Ux,{styles:c}),r,a.jsx(Mkt,{renderAppender:!1})]})})}function ykt(e){const[t,{width:n}]=js();return a.jsxs(a.Fragment,{children:[a.jsx("div",{style:{position:"relative",width:"100%",height:0},children:t}),a.jsx("div",{className:"block-editor-block-preview__container",children:!!n&&a.jsx(Okt,{...e,containerWidth:n})})]})}const Mee=KN();function Akt({children:e,placeholder:t}){const[n,o]=x.useState(!1);return x.useEffect(()=>{const r={};return Mee.add(r,()=>{hs.flushSync(()=>{o(!0)})}),()=>{Mee.cancel(r)}},[]),n?e:t}const vkt=[];function xkt({blocks:e,viewportWidth:t=1200,minHeight:n,additionalStyles:o=vkt,__experimentalMinHeight:r,__experimentalPadding:s}){r&&(n=r,Ke("The __experimentalMinHeight prop",{since:"6.2",version:"6.4",alternative:"minHeight"})),s&&(o=[...o,{css:`body { padding: ${s}px; }`}],Ke("The __experimentalPadding prop of BlockPreview",{since:"6.2",version:"6.4",alternative:"additionalStyles"}));const i=G(u=>u(Q).getSettings(),[]),c=x.useMemo(()=>({...i,focusMode:!1,isPreviewMode:!0}),[i]),l=x.useMemo(()=>Array.isArray(e)?e:[e],[e]);return!e||e.length===0?null:a.jsx(W_,{value:l,settings:c,children:a.jsx(ykt,{viewportWidth:t,minHeight:n,additionalStyles:o})})}const Vd=x.memo(xkt);Vd.Async=Akt;function H7({blocks:e,props:t={},layout:n}){const o=G(u=>u(Q).getSettings(),[]),r=x.useMemo(()=>({...o,styles:void 0,focusMode:!1,isPreviewMode:!0}),[o]),s=UN(),i=xn([t.ref,s]),c=x.useMemo(()=>Array.isArray(e)?e:[e],[e]),l=a.jsxs(W_,{value:c,settings:r,children:[a.jsx(Ux,{}),a.jsx(Z7,{renderAppender:!1,layout:n})]});return{...t,ref:i,className:oe(t.className,"block-editor-block-preview__live-content","components-disabled"),children:e?.length?l:null}}function uge({item:e}){var t;const{name:n,title:o,icon:r,description:s,initialAttributes:i,example:c}=e,l=Qd(e),u=x.useMemo(()=>c?IB(n,{attributes:{...c.attributes,...i},innerBlocks:c.innerBlocks}):Ee(n,i),[n,c,i]),d=144,p=280,f=(t=c?.viewportWidth)!==null&&t!==void 0?t:500,b=p/f,h=b!==0&&b<1&&d?d/b:d;return a.jsxs("div",{className:"block-editor-inserter__preview-container",children:[a.jsx("div",{className:"block-editor-inserter__preview",children:l||c?a.jsx("div",{className:"block-editor-inserter__preview-content",children:a.jsx(Vd,{blocks:u,viewportWidth:f,minHeight:d,additionalStyles:[{css:` +`),b=_.length-z):b+=_.length,v&&M!=="start"){let y=v.parent||{raws:{}};(!(v.type==="decl"||v.type==="atrule"&&!v.nodes)||v!==y.last||y.raws.semicolon)&&(v.source&&v.source.end?(g.source=this.sourcePath(v),g.original.line=v.source.end.line,g.original.column=v.source.end.column-1,g.generated.line=f,g.generated.column=b-2,this.map.addMapping(g)):(g.source=h,g.original.line=1,g.original.column=0,g.generated.line=f,g.generated.column=b-1,this.map.addMapping(g)))}})}isAnnotation(){return this.isInline()?!0:typeof this.mapOpts.annotation<"u"?this.mapOpts.annotation:this.previous().length?this.previous().some(f=>f.annotation):!0}isInline(){if(typeof this.mapOpts.inline<"u")return this.mapOpts.inline;let f=this.mapOpts.annotation;return typeof f<"u"&&f!==!0?!1:this.previous().length?this.previous().some(b=>b.inline):!0}isMap(){return typeof this.opts.map<"u"?!!this.opts.map:this.previous().length>0}isSourcesContent(){return typeof this.mapOpts.sourcesContent<"u"?this.mapOpts.sourcesContent:this.previous().length?this.previous().some(f=>f.withContent()):!0}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(f){if(this.mapOpts.absolute||f.charCodeAt(0)===60||/^\w+:\/\//.test(f))return f;let b=this.memoizedPaths.get(f);if(b)return b;let h=this.opts.to?e(this.opts.to):".";typeof this.mapOpts.annotation=="string"&&(h=e(n(h,this.mapOpts.annotation)));let g=t(h,f);return this.memoizedPaths.set(f,g),g}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk(f=>{if(f.source&&f.source.input.map){let b=f.source.input.map;this.previousMaps.includes(b)||this.previousMaps.push(b)}});else{let f=new c(this.originalCSS,this.opts);f.map&&this.previousMaps.push(f.map)}return this.previousMaps}setSourcesContent(){let f={};if(this.root)this.root.walk(b=>{if(b.source){let h=b.source.input.from;if(h&&!f[h]){f[h]=!0;let g=this.usesFileUrls?this.toFileUrl(h):this.toUrl(this.path(h));this.map.setSourceContent(g,b.source.input.css)}}});else if(this.css){let b=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(b,this.css)}}sourcePath(f){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(f.source.input.from):this.toUrl(this.path(f.source.input.from))}toBase64(f){return rh?rh.from(f).toString("base64"):window.btoa(unescape(encodeURIComponent(f)))}toFileUrl(f){let b=this.memoizedFileURLs.get(f);if(b)return b;if(i){let h=i(f).toString();return this.memoizedFileURLs.set(f,h),h}else throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(f){let b=this.memoizedURLs.get(f);if(b)return b;o==="\\"&&(f=f.replace(/\\/g,"/"));let h=encodeURI(f).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(f,h),h}}return wR=d,wR}var _R,QJ;function $_t(){if(QJ)return _R;QJ=1;let e=Am();class t extends e{constructor(o){super(o),this.type="atrule"}append(...o){return this.proxyOf.nodes||(this.nodes=[]),super.append(...o)}prepend(...o){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...o)}}return _R=t,t.default=t,e.registerAtRule(t),_R}var kR,JJ;function $7(){if(JJ)return kR;JJ=1;let e=Am(),t,n;class o extends e{constructor(s){super(s),this.type="root",this.nodes||(this.nodes=[])}normalize(s,i,c){let l=super.normalize(s);if(i){if(c==="prepend")this.nodes.length>1?i.raws.before=this.nodes[1].raws.before:delete i.raws.before;else if(this.first!==i)for(let u of l)u.raws.before=i.raws.before}return l}removeChild(s,i){let c=this.index(s);return!i&&c===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[c].raws.before),super.removeChild(s)}toResult(s={}){return new t(new n,this,s).stringify()}}return o.registerLazyResult=r=>{t=r},o.registerProcessor=r=>{n=r},kR=o,o.default=o,e.registerRoot(o),kR}var SR,eee;function V_t(){if(eee)return SR;eee=1;let e={comma(t){return e.split(t,[","],!0)},space(t){let n=[" ",` +`," "];return e.split(t,n)},split(t,n,o){let r=[],s="",i=!1,c=0,l=!1,u="",d=!1;for(let p of t)d?d=!1:p==="\\"?d=!0:l?p===u&&(l=!1):p==='"'||p==="'"?(l=!0,u=p):p==="("?c+=1:p===")"?c>0&&(c-=1):c===0&&n.includes(p)&&(i=!0),i?(s!==""&&r.push(s.trim()),s="",i=!1):s+=p;return(o||s!=="")&&r.push(s.trim()),r}};return SR=e,e.default=e,SR}var CR,tee;function H_t(){if(tee)return CR;tee=1;let e=Am(),t=V_t();class n extends e{constructor(r){super(r),this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return t.comma(this.selector)}set selectors(r){let s=this.selector?this.selector.match(/,\s*/):null,i=s?s[0]:","+this.raw("between","beforeOpen");this.selector=r.join(i)}}return CR=n,n.default=n,e.registerRule(n),CR}var qR,nee;function U_t(){if(nee)return qR;nee=1;const e=39,t=34,n=92,o=47,r=10,s=32,i=12,c=9,l=13,u=91,d=93,p=40,f=41,b=123,h=125,g=59,z=42,A=58,_=64,v=/[\t\n\f\r "#'()/;[\\\]{}]/g,M=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,y=/.[\r\n"'(/\\]/,k=/[\da-f]/i;return qR=function(C,R={}){let T=C.css.valueOf(),E=R.ignoreErrors,B,N,j,I,P,$,F,X,Z,V,ee=T.length,te=0,J=[],ue=[];function ce(){return te}function me(Ne){throw C.error("Unclosed "+Ne,te)}function de(){return ue.length===0&&te>=ee}function Ae(Ne){if(ue.length)return ue.pop();if(te>=ee)return;let je=Ne?Ne.ignoreUnclosed:!1;switch(B=T.charCodeAt(te),B){case r:case s:case c:case l:case i:{I=te;do I+=1,B=T.charCodeAt(I);while(B===s||B===r||B===c||B===l||B===i);$=["space",T.slice(te,I)],te=I-1;break}case u:case d:case b:case h:case A:case g:case f:{let ie=String.fromCharCode(B);$=[ie,ie,te];break}case p:{if(V=J.length?J.pop()[1]:"",Z=T.charCodeAt(te+1),V==="url"&&Z!==e&&Z!==t&&Z!==s&&Z!==r&&Z!==c&&Z!==i&&Z!==l){I=te;do{if(F=!1,I=T.indexOf(")",I+1),I===-1)if(E||je){I=te;break}else me("bracket");for(X=I;T.charCodeAt(X-1)===n;)X-=1,F=!F}while(F);$=["brackets",T.slice(te,I+1),te,I],te=I}else I=T.indexOf(")",te+1),N=T.slice(te,I+1),I===-1||y.test(N)?$=["(","(",te]:($=["brackets",N,te,I],te=I);break}case e:case t:{P=B===e?"'":'"',I=te;do{if(F=!1,I=T.indexOf(P,I+1),I===-1)if(E||je){I=te+1;break}else me("string");for(X=I;T.charCodeAt(X-1)===n;)X-=1,F=!F}while(F);$=["string",T.slice(te,I+1),te,I],te=I;break}case _:{v.lastIndex=te+1,v.test(T),v.lastIndex===0?I=T.length-1:I=v.lastIndex-2,$=["at-word",T.slice(te,I+1),te,I],te=I;break}case n:{for(I=te,j=!0;T.charCodeAt(I+1)===n;)I+=1,j=!j;if(B=T.charCodeAt(I+1),j&&B!==o&&B!==s&&B!==r&&B!==c&&B!==l&&B!==i&&(I+=1,k.test(T.charAt(I)))){for(;k.test(T.charAt(I+1));)I+=1;T.charCodeAt(I+1)===s&&(I+=1)}$=["word",T.slice(te,I+1),te,I],te=I;break}default:{B===o&&T.charCodeAt(te+1)===z?(I=T.indexOf("*/",te+2)+1,I===0&&(E||je?I=T.length:me("comment")),$=["comment",T.slice(te,I+1),te,I],te=I):(M.lastIndex=te+1,M.test(T),M.lastIndex===0?I=T.length-1:I=M.lastIndex-2,$=["word",T.slice(te,I+1),te,I],J.push($),te=I);break}}return te++,$}function ye(Ne){ue.push(Ne)}return{back:ye,endOfFile:de,nextToken:Ae,position:ce}},qR}var RR,oee;function X_t(){if(oee)return RR;oee=1;let e=$_t(),t=Nme(),n=Bme(),o=$7(),r=H_t(),s=U_t();const i={empty:!0,space:!0};function c(u){for(let d=u.length-1;d>=0;d--){let p=u[d],f=p[3]||p[2];if(f)return f}}class l{constructor(d){this.input=d,this.root=new o,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:d,start:{column:1,line:1,offset:0}}}atrule(d){let p=new e;p.name=d[1].slice(1),p.name===""&&this.unnamedAtrule(p,d),this.init(p,d[2]);let f,b,h,g=!1,z=!1,A=[],_=[];for(;!this.tokenizer.endOfFile();){if(d=this.tokenizer.nextToken(),f=d[0],f==="("||f==="["?_.push(f==="("?")":"]"):f==="{"&&_.length>0?_.push("}"):f===_[_.length-1]&&_.pop(),_.length===0)if(f===";"){p.source.end=this.getPosition(d[2]),p.source.end.offset++,this.semicolon=!0;break}else if(f==="{"){z=!0;break}else if(f==="}"){if(A.length>0){for(h=A.length-1,b=A[h];b&&b[0]==="space";)b=A[--h];b&&(p.source.end=this.getPosition(b[3]||b[2]),p.source.end.offset++)}this.end(d);break}else A.push(d);else A.push(d);if(this.tokenizer.endOfFile()){g=!0;break}}p.raws.between=this.spacesAndCommentsFromEnd(A),A.length?(p.raws.afterName=this.spacesAndCommentsFromStart(A),this.raw(p,"params",A),g&&(d=A[A.length-1],p.source.end=this.getPosition(d[3]||d[2]),p.source.end.offset++,this.spaces=p.raws.between,p.raws.between="")):(p.raws.afterName="",p.params=""),z&&(p.nodes=[],this.current=p)}checkMissedSemicolon(d){let p=this.colon(d);if(p===!1)return;let f=0,b;for(let h=p-1;h>=0&&(b=d[h],!(b[0]!=="space"&&(f+=1,f===2)));h--);throw this.input.error("Missed semicolon",b[0]==="word"?b[3]+1:b[2])}colon(d){let p=0,f,b,h;for(let[g,z]of d.entries()){if(b=z,h=b[0],h==="("&&(p+=1),h===")"&&(p-=1),p===0&&h===":")if(!f)this.doubleColon(b);else{if(f[0]==="word"&&f[1]==="progid")continue;return g}f=b}return!1}comment(d){let p=new t;this.init(p,d[2]),p.source.end=this.getPosition(d[3]||d[2]),p.source.end.offset++;let f=d[1].slice(2,-2);if(/^\s*$/.test(f))p.text="",p.raws.left=f,p.raws.right="";else{let b=f.match(/^(\s*)([^]*\S)(\s*)$/);p.text=b[2],p.raws.left=b[1],p.raws.right=b[3]}}createTokenizer(){this.tokenizer=s(this.input)}decl(d,p){let f=new n;this.init(f,d[0][2]);let b=d[d.length-1];for(b[0]===";"&&(this.semicolon=!0,d.pop()),f.source.end=this.getPosition(b[3]||b[2]||c(d)),f.source.end.offset++;d[0][0]!=="word";)d.length===1&&this.unknownWord(d),f.raws.before+=d.shift()[1];for(f.source.start=this.getPosition(d[0][2]),f.prop="";d.length;){let _=d[0][0];if(_===":"||_==="space"||_==="comment")break;f.prop+=d.shift()[1]}f.raws.between="";let h;for(;d.length;)if(h=d.shift(),h[0]===":"){f.raws.between+=h[1];break}else h[0]==="word"&&/\w/.test(h[1])&&this.unknownWord([h]),f.raws.between+=h[1];(f.prop[0]==="_"||f.prop[0]==="*")&&(f.raws.before+=f.prop[0],f.prop=f.prop.slice(1));let g=[],z;for(;d.length&&(z=d[0][0],!(z!=="space"&&z!=="comment"));)g.push(d.shift());this.precheckMissedSemicolon(d);for(let _=d.length-1;_>=0;_--){if(h=d[_],h[1].toLowerCase()==="!important"){f.important=!0;let v=this.stringFrom(d,_);v=this.spacesFromEnd(d)+v,v!==" !important"&&(f.raws.important=v);break}else if(h[1].toLowerCase()==="important"){let v=d.slice(0),M="";for(let y=_;y>0;y--){let k=v[y][0];if(M.trim().startsWith("!")&&k!=="space")break;M=v.pop()[1]+M}M.trim().startsWith("!")&&(f.important=!0,f.raws.important=M,d=v)}if(h[0]!=="space"&&h[0]!=="comment")break}d.some(_=>_[0]!=="space"&&_[0]!=="comment")&&(f.raws.between+=g.map(_=>_[1]).join(""),g=[]),this.raw(f,"value",g.concat(d),p),f.value.includes(":")&&!p&&this.checkMissedSemicolon(d)}doubleColon(d){throw this.input.error("Double colon",{offset:d[2]},{offset:d[2]+d[1].length})}emptyRule(d){let p=new r;this.init(p,d[2]),p.selector="",p.raws.between="",this.current=p}end(d){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(d[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(d)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(d){if(this.spaces+=d[1],this.current.nodes){let p=this.current.nodes[this.current.nodes.length-1];p&&p.type==="rule"&&!p.raws.ownSemicolon&&(p.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(d){let p=this.input.fromOffset(d);return{column:p.col,line:p.line,offset:d}}init(d,p){this.current.push(d),d.source={input:this.input,start:this.getPosition(p)},d.raws.before=this.spaces,this.spaces="",d.type!=="comment"&&(this.semicolon=!1)}other(d){let p=!1,f=null,b=!1,h=null,g=[],z=d[1].startsWith("--"),A=[],_=d;for(;_;){if(f=_[0],A.push(_),f==="("||f==="[")h||(h=_),g.push(f==="("?")":"]");else if(z&&b&&f==="{")h||(h=_),g.push("}");else if(g.length===0)if(f===";")if(b){this.decl(A,z);return}else break;else if(f==="{"){this.rule(A);return}else if(f==="}"){this.tokenizer.back(A.pop()),p=!0;break}else f===":"&&(b=!0);else f===g[g.length-1]&&(g.pop(),g.length===0&&(h=null));_=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(p=!0),g.length>0&&this.unclosedBracket(h),p&&b){if(!z)for(;A.length&&(_=A[A.length-1][0],!(_!=="space"&&_!=="comment"));)this.tokenizer.back(A.pop());this.decl(A,z)}else this.unknownWord(A)}parse(){let d;for(;!this.tokenizer.endOfFile();)switch(d=this.tokenizer.nextToken(),d[0]){case"space":this.spaces+=d[1];break;case";":this.freeSemicolon(d);break;case"}":this.end(d);break;case"comment":this.comment(d);break;case"at-word":this.atrule(d);break;case"{":this.emptyRule(d);break;default:this.other(d);break}this.endFile()}precheckMissedSemicolon(){}raw(d,p,f,b){let h,g,z=f.length,A="",_=!0,v,M;for(let y=0;y<z;y+=1)h=f[y],g=h[0],g==="space"&&y===z-1&&!b?_=!1:g==="comment"?(M=f[y-1]?f[y-1][0]:"empty",v=f[y+1]?f[y+1][0]:"empty",!i[M]&&!i[v]?A.slice(-1)===","?_=!1:A+=h[1]:_=!1):A+=h[1];if(!_){let y=f.reduce((k,S)=>k+S[1],"");d.raws[p]={raw:y,value:A}}d[p]=A}rule(d){d.pop();let p=new r;this.init(p,d[0][2]),p.raws.between=this.spacesAndCommentsFromEnd(d),this.raw(p,"selector",d),this.current=p}spacesAndCommentsFromEnd(d){let p,f="";for(;d.length&&(p=d[d.length-1][0],!(p!=="space"&&p!=="comment"));)f=d.pop()[1]+f;return f}spacesAndCommentsFromStart(d){let p,f="";for(;d.length&&(p=d[0][0],!(p!=="space"&&p!=="comment"));)f+=d.shift()[1];return f}spacesFromEnd(d){let p,f="";for(;d.length&&(p=d[d.length-1][0],p==="space");)f=d.pop()[1]+f;return f}stringFrom(d,p){let f="";for(let b=p;b<d.length;b++)f+=d[b][1];return d.splice(p,d.length-p),f}unclosedBlock(){let d=this.current.source.start;throw this.input.error("Unclosed block",d.line,d.column)}unclosedBracket(d){throw this.input.error("Unclosed bracket",{offset:d[2]},{offset:d[2]+1})}unexpectedClose(d){throw this.input.error("Unexpected }",{offset:d[2]},{offset:d[2]+1})}unknownWord(d){throw this.input.error("Unknown word",{offset:d[0][2]},{offset:d[0][2]+d[0][1].length})}unnamedAtrule(d,p){throw this.input.error("At-rule without name",{offset:p[2]},{offset:p[2]+p[1].length})}}return RR=l,RR}var TR,ree;function age(){if(ree)return TR;ree=1;let e=Am(),t=sge(),n=X_t();function o(r,s){let i=new t(r,s),c=new n(i);try{c.parse()}catch(l){throw l}return c.root}return TR=o,o.default=o,e.registerParse(o),TR}var ER,see;function G_t(){if(see)return ER;see=1;class e{constructor(n,o={}){if(this.type="warning",this.text=n,o.node&&o.node.source){let r=o.node.rangeBy(o);this.line=r.start.line,this.column=r.start.column,this.endLine=r.end.line,this.endColumn=r.end.column}for(let r in o)this[r]=o[r]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}return ER=e,e.default=e,ER}var WR,iee;function cge(){if(iee)return WR;iee=1;let e=G_t();class t{constructor(o,r,s){this.processor=o,this.messages=[],this.root=r,this.opts=s,this.css=void 0,this.map=void 0}toString(){return this.css}warn(o,r={}){r.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(r.plugin=this.lastPlugin.postcssPlugin);let s=new e(o,r);return this.messages.push(s),s}warnings(){return this.messages.filter(o=>o.type==="warning")}get content(){return this.css}}return WR=t,t.default=t,WR}var NR,aee;function K_t(){if(aee)return NR;aee=1;let e=Am(),t=Lme(),n=ige(),o=age(),r=cge(),s=$7(),i=B7(),{isClean:c,my:l}=L7();const u={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},d={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},p={Once:!0,postcssPlugin:!0,prepare:!0},f=0;function b(v){return typeof v=="object"&&typeof v.then=="function"}function h(v){let M=!1,y=u[v.type];return v.type==="decl"?M=v.prop.toLowerCase():v.type==="atrule"&&(M=v.name.toLowerCase()),M&&v.append?[y,y+"-"+M,f,y+"Exit",y+"Exit-"+M]:M?[y,y+"-"+M,y+"Exit",y+"Exit-"+M]:v.append?[y,f,y+"Exit"]:[y,y+"Exit"]}function g(v){let M;return v.type==="document"?M=["Document",f,"DocumentExit"]:v.type==="root"?M=["Root",f,"RootExit"]:M=h(v),{eventIndex:0,events:M,iterator:0,node:v,visitorIndex:0,visitors:[]}}function z(v){return v[c]=!1,v.nodes&&v.nodes.forEach(M=>z(M)),v}let A={};class _{constructor(M,y,k){this.stringified=!1,this.processed=!1;let S;if(typeof y=="object"&&y!==null&&(y.type==="root"||y.type==="document"))S=z(y);else if(y instanceof _||y instanceof r)S=z(y.root),y.map&&(typeof k.map>"u"&&(k.map={}),k.map.inline||(k.map.inline=!1),k.map.prev=y.map);else{let C=o;k.syntax&&(C=k.syntax.parse),k.parser&&(C=k.parser),C.parse&&(C=C.parse);try{S=C(y,k)}catch(R){this.processed=!0,this.error=R}S&&!S[l]&&e.rebuild(S)}this.result=new r(M,S,k),this.helpers={...A,postcss:A,result:this.result},this.plugins=this.processor.plugins.map(C=>typeof C=="object"&&C.prepare?{...C,...C.prepare(this.result)}:C)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(M){return this.async().catch(M)}finally(M){return this.async().then(M,M)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(M,y){let k=this.result.lastPlugin;try{y&&y.addToError(M),this.error=M,M.name==="CssSyntaxError"&&!M.plugin?(M.plugin=k.postcssPlugin,M.setMessage()):k.postcssVersion}catch(S){console&&console.error&&console.error(S)}return M}prepareVisitors(){this.listeners={};let M=(y,k,S)=>{this.listeners[k]||(this.listeners[k]=[]),this.listeners[k].push([y,S])};for(let y of this.plugins)if(typeof y=="object")for(let k in y){if(!d[k]&&/^[A-Z]/.test(k))throw new Error(`Unknown event ${k} in ${y.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!p[k])if(typeof y[k]=="object")for(let S in y[k])S==="*"?M(y,k,y[k][S]):M(y,k+"-"+S.toLowerCase(),y[k][S]);else typeof y[k]=="function"&&M(y,k,y[k])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let M=0;M<this.plugins.length;M++){let y=this.plugins[M],k=this.runOnRoot(y);if(b(k))try{await k}catch(S){throw this.handleError(S)}}if(this.prepareVisitors(),this.hasListener){let M=this.result.root;for(;!M[c];){M[c]=!0;let y=[g(M)];for(;y.length>0;){let k=this.visitTick(y);if(b(k))try{await k}catch(S){let C=y[y.length-1].node;throw this.handleError(S,C)}}}if(this.listeners.OnceExit)for(let[y,k]of this.listeners.OnceExit){this.result.lastPlugin=y;try{if(M.type==="document"){let S=M.nodes.map(C=>k(C,this.helpers));await Promise.all(S)}else await k(M,this.helpers)}catch(S){throw this.handleError(S)}}}return this.processed=!0,this.stringify()}runOnRoot(M){this.result.lastPlugin=M;try{if(typeof M=="object"&&M.Once){if(this.result.root.type==="document"){let y=this.result.root.nodes.map(k=>M.Once(k,this.helpers));return b(y[0])?Promise.all(y):y}return M.Once(this.result.root,this.helpers)}else if(typeof M=="function")return M(this.result.root,this.result)}catch(y){throw this.handleError(y)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let M=this.result.opts,y=i;M.syntax&&(y=M.syntax.stringify),M.stringifier&&(y=M.stringifier),y.stringify&&(y=y.stringify);let S=new n(y,this.result.root,this.result.opts).generate();return this.result.css=S[0],this.result.map=S[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let M of this.plugins){let y=this.runOnRoot(M);if(b(y))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let M=this.result.root;for(;!M[c];)M[c]=!0,this.walkSync(M);if(this.listeners.OnceExit)if(M.type==="document")for(let y of M.nodes)this.visitSync(this.listeners.OnceExit,y);else this.visitSync(this.listeners.OnceExit,M)}return this.result}then(M,y){return this.async().then(M,y)}toString(){return this.css}visitSync(M,y){for(let[k,S]of M){this.result.lastPlugin=k;let C;try{C=S(y,this.helpers)}catch(R){throw this.handleError(R,y.proxyOf)}if(y.type!=="root"&&y.type!=="document"&&!y.parent)return!0;if(b(C))throw this.getAsyncError()}}visitTick(M){let y=M[M.length-1],{node:k,visitors:S}=y;if(k.type!=="root"&&k.type!=="document"&&!k.parent){M.pop();return}if(S.length>0&&y.visitorIndex<S.length){let[R,T]=S[y.visitorIndex];y.visitorIndex+=1,y.visitorIndex===S.length&&(y.visitors=[],y.visitorIndex=0),this.result.lastPlugin=R;try{return T(k.toProxy(),this.helpers)}catch(E){throw this.handleError(E,k)}}if(y.iterator!==0){let R=y.iterator,T;for(;T=k.nodes[k.indexes[R]];)if(k.indexes[R]+=1,!T[c]){T[c]=!0,M.push(g(T));return}y.iterator=0,delete k.indexes[R]}let C=y.events;for(;y.eventIndex<C.length;){let R=C[y.eventIndex];if(y.eventIndex+=1,R===f){k.nodes&&k.nodes.length&&(k[c]=!0,y.iterator=k.getIterator());return}else if(this.listeners[R]){y.visitors=this.listeners[R];return}}M.pop()}walkSync(M){M[c]=!0;let y=h(M);for(let k of y)if(k===f)M.nodes&&M.each(S=>{S[c]||this.walkSync(S)});else{let S=this.listeners[k];if(S&&this.visitSync(S,M.toProxy()))return}}warnings(){return this.sync().warnings()}get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}}return _.registerPostcss=v=>{A=v},NR=_,_.default=_,s.registerLazyResult(_),t.registerLazyResult(_),NR}var BR,cee;function Y_t(){if(cee)return BR;cee=1;let e=ige(),t=age();const n=cge();let o=B7();class r{constructor(i,c,l){c=c.toString(),this.stringified=!1,this._processor=i,this._css=c,this._opts=l,this._map=void 0;let u,d=o;this.result=new n(this._processor,u,this._opts),this.result.css=c;let p=this;Object.defineProperty(this.result,"root",{get(){return p.root}});let f=new e(d,u,this._opts,c);if(f.isMap()){let[b,h]=f.generate();b&&(this.result.css=b),h&&(this.result.map=h)}else f.clearAnnotation(),this.result.css=f.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(i){return this.async().catch(i)}finally(i){return this.async().then(i,i)}sync(){if(this.error)throw this.error;return this.result}then(i,c){return this.async().then(i,c)}toString(){return this._css}warnings(){return[]}get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let i,c=t;try{i=c(this._css,this._opts)}catch(l){this.error=l}if(this.error)throw this.error;return this._root=i,i}get[Symbol.toStringTag](){return"NoWorkResult"}}return BR=r,r.default=r,BR}var LR,lee;function Z_t(){if(lee)return LR;lee=1;let e=Lme(),t=K_t(),n=Y_t(),o=$7();class r{constructor(i=[]){this.version="8.4.49",this.plugins=this.normalize(i)}normalize(i){let c=[];for(let l of i)if(l.postcss===!0?l=l():l.postcss&&(l=l.postcss),typeof l=="object"&&Array.isArray(l.plugins))c=c.concat(l.plugins);else if(typeof l=="object"&&l.postcssPlugin)c.push(l);else if(typeof l=="function")c.push(l);else if(!(typeof l=="object"&&(l.parse||l.stringify)))throw new Error(l+" is not a PostCSS plugin");return c}process(i,c={}){return!this.plugins.length&&!c.parser&&!c.stringifier&&!c.syntax?new n(this,i,c):new t(this,i,c)}use(i){return this.plugins=this.plugins.concat(this.normalize([i])),this}}return LR=r,r.default=r,o.registerProcessor(r),e.registerProcessor(r),LR}var Q_t=Z_t();const J_t=Zr(Q_t);var ekt=N7();const tkt=Zr(ekt);var PR,uee;function nkt(){if(uee)return PR;uee=1,PR=function(o){const r=o.prefix,s=/\s+$/.test(r)?r:`${r} `,i=o.ignoreFiles?[].concat(o.ignoreFiles):[],c=o.includeFiles?[].concat(o.includeFiles):[];return function(l){i.length&&l.source.input.file&&e(l.source.input.file,i)||c.length&&l.source.input.file&&!e(l.source.input.file,c)||l.walkRules(u=>{const d=["keyframes","-webkit-keyframes","-moz-keyframes","-o-keyframes","-ms-keyframes"];u.parent&&d.includes(u.parent.name)||(u.selectors=u.selectors.map(p=>o.exclude&&t(p,o.exclude)?p:o.transform?o.transform(r,p,s+p,l.source.input.file,u):s+p))})}};function e(n,o){return o.some(r=>r instanceof RegExp?r.test(n):n.includes(r))}function t(n,o){return o.some(r=>r instanceof RegExp?r.test(n):n===r)}return PR}var okt=nkt();const rkt=Zr(okt);var rv={exports:{}},jR,dee;function skt(){if(dee)return jR;dee=1;var e=40,t=41,n=39,o=34,r=92,s=47,i=44,c=58,l=42,u=117,d=85,p=43,f=/^[a-f0-9?-]+$/i;return jR=function(b){for(var h=[],g=b,z,A,_,v,M,y,k,S,C=0,R=g.charCodeAt(C),T=g.length,E=[{nodes:h}],B=0,N,j="",I="",P="";C<T;)if(R<=32){z=C;do z+=1,R=g.charCodeAt(z);while(R<=32);v=g.slice(C,z),_=h[h.length-1],R===t&&B?P=v:_&&_.type==="div"?(_.after=v,_.sourceEndIndex+=v.length):R===i||R===c||R===s&&g.charCodeAt(z+1)!==l&&(!N||N&&N.type==="function"&&N.value!=="calc")?I=v:h.push({type:"space",sourceIndex:C,sourceEndIndex:z,value:v}),C=z}else if(R===n||R===o){z=C,A=R===n?"'":'"',v={type:"string",sourceIndex:C,quote:A};do if(M=!1,z=g.indexOf(A,z+1),~z)for(y=z;g.charCodeAt(y-1)===r;)y-=1,M=!M;else g+=A,z=g.length-1,v.unclosed=!0;while(M);v.value=g.slice(C+1,z),v.sourceEndIndex=v.unclosed?z:z+1,h.push(v),C=z+1,R=g.charCodeAt(C)}else if(R===s&&g.charCodeAt(C+1)===l)z=g.indexOf("*/",C),v={type:"comment",sourceIndex:C,sourceEndIndex:z+2},z===-1&&(v.unclosed=!0,z=g.length,v.sourceEndIndex=z),v.value=g.slice(C+2,z),h.push(v),C=z+2,R=g.charCodeAt(C);else if((R===s||R===l)&&N&&N.type==="function"&&N.value==="calc")v=g[C],h.push({type:"word",sourceIndex:C-I.length,sourceEndIndex:C+v.length,value:v}),C+=1,R=g.charCodeAt(C);else if(R===s||R===i||R===c)v=g[C],h.push({type:"div",sourceIndex:C-I.length,sourceEndIndex:C+v.length,value:v,before:I,after:""}),I="",C+=1,R=g.charCodeAt(C);else if(e===R){z=C;do z+=1,R=g.charCodeAt(z);while(R<=32);if(S=C,v={type:"function",sourceIndex:C-j.length,value:j,before:g.slice(S+1,z)},C=z,j==="url"&&R!==n&&R!==o){z-=1;do if(M=!1,z=g.indexOf(")",z+1),~z)for(y=z;g.charCodeAt(y-1)===r;)y-=1,M=!M;else g+=")",z=g.length-1,v.unclosed=!0;while(M);k=z;do k-=1,R=g.charCodeAt(k);while(R<=32);S<k?(C!==k+1?v.nodes=[{type:"word",sourceIndex:C,sourceEndIndex:k+1,value:g.slice(C,k+1)}]:v.nodes=[],v.unclosed&&k+1!==z?(v.after="",v.nodes.push({type:"space",sourceIndex:k+1,sourceEndIndex:z,value:g.slice(k+1,z)})):(v.after=g.slice(k+1,z),v.sourceEndIndex=z)):(v.after="",v.nodes=[]),C=z+1,v.sourceEndIndex=v.unclosed?z:C,R=g.charCodeAt(C),h.push(v)}else B+=1,v.after="",v.sourceEndIndex=C+1,h.push(v),E.push(v),h=v.nodes=[],N=v;j=""}else if(t===R&&B)C+=1,R=g.charCodeAt(C),N.after=P,N.sourceEndIndex+=P.length,P="",B-=1,E[E.length-1].sourceEndIndex=C,E.pop(),N=E[B],h=N.nodes;else{z=C;do R===r&&(z+=1),z+=1,R=g.charCodeAt(z);while(z<T&&!(R<=32||R===n||R===o||R===i||R===c||R===s||R===e||R===l&&N&&N.type==="function"&&N.value==="calc"||R===s&&N.type==="function"&&N.value==="calc"||R===t&&B));v=g.slice(C,z),e===R?j=v:(u===v.charCodeAt(0)||d===v.charCodeAt(0))&&p===v.charCodeAt(1)&&f.test(v.slice(2))?h.push({type:"unicode-range",sourceIndex:C,sourceEndIndex:z,value:v}):h.push({type:"word",sourceIndex:C,sourceEndIndex:z,value:v}),C=z}for(C=E.length-1;C;C-=1)E[C].unclosed=!0,E[C].sourceEndIndex=g.length;return E[0].nodes},jR}var IR,pee;function ikt(){return pee||(pee=1,IR=function e(t,n,o){var r,s,i,c;for(r=0,s=t.length;r<s;r+=1)i=t[r],o||(c=n(i,r,t)),c!==!1&&i.type==="function"&&Array.isArray(i.nodes)&&e(i.nodes,n,o),o&&n(i,r,t)}),IR}var DR,fee;function akt(){if(fee)return DR;fee=1;function e(n,o){var r=n.type,s=n.value,i,c;return o&&(c=o(n))!==void 0?c:r==="word"||r==="space"?s:r==="string"?(i=n.quote||"",i+s+(n.unclosed?"":i)):r==="comment"?"/*"+s+(n.unclosed?"":"*/"):r==="div"?(n.before||"")+s+(n.after||""):Array.isArray(n.nodes)?(i=t(n.nodes,o),r!=="function"?i:s+"("+(n.before||"")+i+(n.after||"")+(n.unclosed?"":")")):s}function t(n,o){var r,s;if(Array.isArray(n)){for(r="",s=n.length-1;~s;s-=1)r=e(n[s],o)+r;return r}return e(n,o)}return DR=t,DR}var FR,bee;function ckt(){if(bee)return FR;bee=1;var e=45,t=43,n=46,o=101,r=69;function s(i){var c=i.charCodeAt(0),l;if(c===t||c===e){if(l=i.charCodeAt(1),l>=48&&l<=57)return!0;var u=i.charCodeAt(2);return l===n&&u>=48&&u<=57}return c===n?(l=i.charCodeAt(1),l>=48&&l<=57):c>=48&&c<=57}return FR=function(i){var c=0,l=i.length,u,d,p;if(l===0||!s(i))return!1;for(u=i.charCodeAt(c),(u===t||u===e)&&c++;c<l&&(u=i.charCodeAt(c),!(u<48||u>57));)c+=1;if(u=i.charCodeAt(c),d=i.charCodeAt(c+1),u===n&&d>=48&&d<=57)for(c+=2;c<l&&(u=i.charCodeAt(c),!(u<48||u>57));)c+=1;if(u=i.charCodeAt(c),d=i.charCodeAt(c+1),p=i.charCodeAt(c+2),(u===o||u===r)&&(d>=48&&d<=57||(d===t||d===e)&&p>=48&&p<=57))for(c+=d===t||d===e?3:2;c<l&&(u=i.charCodeAt(c),!(u<48||u>57));)c+=1;return{number:i.slice(0,c),unit:i.slice(c)}},FR}var $R,hee;function lkt(){if(hee)return $R;hee=1;var e=skt(),t=ikt(),n=akt();function o(r){return this instanceof o?(this.nodes=e(r),this):new o(r)}return o.prototype.toString=function(){return Array.isArray(this.nodes)?n(this.nodes):""},o.prototype.walk=function(r,s){return t(this.nodes,r,s),this},o.unit=ckt(),o.walk=t,o.stringify=n,$R=o,$R}var mee;function ukt(){if(mee)return rv.exports;mee=1;const e=lkt();return rv.exports=t=>{const o=Object.assign({skipHostRelativeUrls:!0},t);return{postcssPlugin:"rebaseUrl",Declaration(r){const s=e(r.value);let i=!1;s.walk(c=>{if(c.type!=="function"||c.value!=="url")return;const l=c.nodes[0].value,u=new URL(l,t.rootUrl);return u.pathname===l&&o.skipHostRelativeUrls||(c.nodes[0].value=u.toString(),i=!0),!1}),i&&(r.value=e.stringify(s))}}},rv.exports.postcss=!0,rv.exports}var dkt=ukt();const pkt=Zr(dkt),gee=new Map,lge=[{type:"type",content:"body"},{type:"type",content:"html"},{type:"pseudo-class",content:":root"},{type:"pseudo-class",content:":where(body)"},{type:"pseudo-class",content:":where(:root)"},{type:"pseudo-class",content:":where(html)"}];function fkt(e,t){const n=DQ(t),o=n.findLastIndex(({content:i,type:c})=>lge.some(l=>i===l.content&&c===l.type));let r=-1;for(let i=o+1;i<n.length;i++)if(n[i].type==="combinator"){r=i;break}const s=DQ(e);return n.splice(r===-1?n.length:r,0,{type:"combinator",content:" "},...s),ywt(n)}function bkt({css:e,ignoredSelectors:t=[],baseURL:n},o="",r){if(!o&&!n)return e;try{var s;const i=[...t,...(s=r?.ignoredSelectors)!==null&&s!==void 0?s:[],o];return new J_t([o&&rkt({prefix:o,transform(c,l,u){return i.some(p=>p instanceof RegExp?l.match(p):l.includes(p))?l:lge.some(p=>l.startsWith(p.content))?fkt(c,l):u}}),n&&pkt({rootUrl:n})].filter(Boolean)).process(e,{}).css}catch(i){return i instanceof tkt?console.warn("wp.blockEditor.transformStyles Failed to transform CSS.",i.message+` +`+i.showSourceCode(!1)):console.warn("wp.blockEditor.transformStyles Failed to transform CSS.",i),null}}const Vx=(e,t="",n)=>{let o=gee.get(t);return o||(o=new WeakMap,gee.set(t,o)),e.map(r=>{let s=o.get(r);return s||(s=bkt(r,t,n),o.set(r,s)),s})};Xs([Gs,Uf]);function hkt(e,t){return x.useCallback(n=>{if(!n)return;const{ownerDocument:o}=n,{defaultView:r,body:s}=o,i=t?o.querySelector(t):s;let c;if(i)c=r?.getComputedStyle(i,null).getPropertyValue("background-color");else{const u=o.createElement("div");u.classList.add("editor-styles-wrapper"),s.appendChild(u),c=r?.getComputedStyle(u,null).getPropertyValue("background-color"),s.removeChild(u)}const l=an(c);l.luminance()>.5||l.alpha()===0?s.classList.remove("is-dark-theme"):s.classList.add("is-dark-theme")},[e,t])}function mkt({styles:e,scope:t,transformOptions:n}){const o=G(i=>ct(i(Q)).getStyleOverrides(),[]),[r,s]=x.useMemo(()=>{const i=Object.values(e??[]);for(const[c,l]of o){const u=i.findIndex(({id:p})=>c===p),d={...l,id:c};u===-1?i.push(d):i[u]=d}return[Vx(i.filter(c=>c?.css),t,n),i.filter(c=>c.__unstableType==="svgs").map(c=>c.assets).join("")]},[e,o,t,n]);return a.jsxs(a.Fragment,{children:[a.jsx("style",{ref:hkt(r,t)}),r.map((i,c)=>a.jsx("style",{children:i},c)),a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 0 0",width:"0",height:"0",role:"none",style:{visibility:"hidden",position:"absolute",left:"-9999px",overflow:"hidden"},dangerouslySetInnerHTML:{__html:s}})]})}const Hx=x.memo(mkt),gkt=x.memo(j_),VR=2e3,Mkt=[];function zkt({viewportWidth:e,containerWidth:t,minHeight:n,additionalStyles:o=Mkt}){e||(e=t);const[r,{height:s}]=js(),{styles:i}=G(d=>({styles:d(Q).getSettings().styles}),[]),c=x.useMemo(()=>i&&[...i,{css:"body{height:auto;overflow:hidden;border:none;padding:0;}",__unstableType:"presets"},...o],[i,o]),l=t/e,u=s?t/(s*l):0;return a.jsx(I1,{className:"block-editor-block-preview__content",style:{transform:`scale(${l})`,aspectRatio:u,maxHeight:s>VR?VR*l:void 0,minHeight:n},children:a.jsxs(Eme,{contentRef:Mn(d=>{const{ownerDocument:{documentElement:p}}=d;p.classList.add("block-editor-block-preview__content-iframe"),p.style.position="absolute",p.style.width="100%",d.style.boxSizing="border-box",d.style.position="absolute",d.style.width="100%"},[]),"aria-hidden":!0,tabIndex:-1,style:{position:"absolute",width:e,height:s,pointerEvents:"none",maxHeight:VR,minHeight:l!==0&&l<1&&n?n/l:n},children:[a.jsx(Hx,{styles:c}),r,a.jsx(gkt,{renderAppender:!1})]})})}function Okt(e){const[t,{width:n}]=js();return a.jsxs(a.Fragment,{children:[a.jsx("div",{style:{position:"relative",width:"100%",height:0},children:t}),a.jsx("div",{className:"block-editor-block-preview__container",children:!!n&&a.jsx(zkt,{...e,containerWidth:n})})]})}const Mee=GN();function ykt({children:e,placeholder:t}){const[n,o]=x.useState(!1);return x.useEffect(()=>{const r={};return Mee.add(r,()=>{hs.flushSync(()=>{o(!0)})}),()=>{Mee.cancel(r)}},[]),n?e:t}const Akt=[];function vkt({blocks:e,viewportWidth:t=1200,minHeight:n,additionalStyles:o=Akt,__experimentalMinHeight:r,__experimentalPadding:s}){r&&(n=r,Ke("The __experimentalMinHeight prop",{since:"6.2",version:"6.4",alternative:"minHeight"})),s&&(o=[...o,{css:`body { padding: ${s}px; }`}],Ke("The __experimentalPadding prop of BlockPreview",{since:"6.2",version:"6.4",alternative:"additionalStyles"}));const i=G(u=>u(Q).getSettings(),[]),c=x.useMemo(()=>({...i,focusMode:!1,isPreviewMode:!0}),[i]),l=x.useMemo(()=>Array.isArray(e)?e:[e],[e]);return!e||e.length===0?null:a.jsx(E_,{value:l,settings:c,children:a.jsx(Okt,{viewportWidth:t,minHeight:n,additionalStyles:o})})}const Vd=x.memo(vkt);Vd.Async=ykt;function V7({blocks:e,props:t={},layout:n}){const o=G(u=>u(Q).getSettings(),[]),r=x.useMemo(()=>({...o,styles:void 0,focusMode:!1,isPreviewMode:!0}),[o]),s=HN(),i=xn([t.ref,s]),c=x.useMemo(()=>Array.isArray(e)?e:[e],[e]),l=a.jsxs(E_,{value:c,settings:r,children:[a.jsx(Hx,{}),a.jsx(Y7,{renderAppender:!1,layout:n})]});return{...t,ref:i,className:oe(t.className,"block-editor-block-preview__live-content","components-disabled"),children:e?.length?l:null}}function uge({item:e}){var t;const{name:n,title:o,icon:r,description:s,initialAttributes:i,example:c}=e,l=Qd(e),u=x.useMemo(()=>c?jB(n,{attributes:{...c.attributes,...i},innerBlocks:c.innerBlocks}):Ee(n,i),[n,c,i]),d=144,p=280,f=(t=c?.viewportWidth)!==null&&t!==void 0?t:500,b=p/f,h=b!==0&&b<1&&d?d/b:d;return a.jsxs("div",{className:"block-editor-inserter__preview-container",children:[a.jsx("div",{className:"block-editor-inserter__preview",children:l||c?a.jsx("div",{className:"block-editor-inserter__preview-content",children:a.jsx(Vd,{blocks:u,viewportWidth:f,minHeight:d,additionalStyles:[{css:` body { padding: 24px; min-height:${Math.round(h)}px; @@ -565,7 +565,7 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen align-items:center; } .is-root-container { width: 100%; } - `}]})}):a.jsx("div",{className:"block-editor-inserter__preview-content-missing",children:m("No preview available.")})}),!l&&a.jsx(Mme,{title:o,icon:r,description:s})]})}function wkt(e,t){const[n,o]=x.useState(!1);return x.useEffect(()=>{n&&Yt(m("Use left and right arrow keys to move through blocks"))},[n]),a.jsx("div",{ref:t,role:"listbox","aria-orientation":"horizontal",onFocus:()=>{o(!0)},onBlur:r=>{!r.currentTarget.contains(r.relatedTarget)&&o(!1)},...e})}const _kt=x.forwardRef(wkt);function kkt(e,t){return a.jsx(S1.Group,{role:"presentation",ref:t,...e})}const Skt=x.forwardRef(kkt);function Ckt({isFirst:e,as:t,children:n,...o},r){return a.jsx(S1.Item,{ref:r,role:"option",accessibleWhenDisabled:!0,...o,render:s=>{const i={...s,tabIndex:e?0:s.tabIndex};return t?a.jsx(t,{...i,children:n}):typeof n=="function"?n(i):a.jsx(Ce,{__next40pxDefaultSize:!0,...i,children:n})}})}const qkt=x.forwardRef(Ckt);function U7({children:e}){return a.jsx(S1,{focusShift:!0,focusWrap:"horizontal",render:a.jsx(a.Fragment,{}),children:e})}const X7=({isEnabled:e,blocks:t,icon:n,children:o,pattern:r})=>{const s=G(d=>{const{getBlockType:p}=d(kt);return t.length===1&&p(t[0].name)?.icon},[t]),{startDragging:i,stopDragging:c}=ct(Oe(Q)),l=x.useMemo(()=>r?.type===g1.user&&r?.syncStatus!=="unsynced"?[Ee("core/block",{ref:r.id})]:void 0,[r?.type,r?.syncStatus,r?.id]);if(!e)return o({draggable:!1,onDragStart:void 0,onDragEnd:void 0});const u=l??t;return a.jsx(Gbe,{__experimentalTransferDataType:"wp-blocks",transferData:{type:"inserter",blocks:u},onDragStart:d=>{i();for(const p of u){const f=`wp-block:${p.name}`;d.dataTransfer.items.add("",f)}},onDragEnd:()=>{c()},__experimentalDragComponent:a.jsx(q7,{count:t.length,icon:n||!r&&s,isPattern:!!r}),children:({onDraggableStart:d,onDraggableEnd:p})=>o({draggable:!0,onDragStart:d,onDragEnd:p})})};function Rkt({className:e,isFirst:t,item:n,onSelect:o,onHover:r,isDraggable:s,...i}){const c=x.useRef(!1),l=n.icon?{backgroundColor:n.icon.background,color:n.icon.foreground}:{},u=x.useMemo(()=>[Ee(n.name,n.initialAttributes,Ad(n.innerBlocks))],[n.name,n.initialAttributes,n.innerBlocks]),d=Qd(n)&&n.syncStatus!=="unsynced"||Hh(n);return a.jsx(X7,{isEnabled:s&&!n.isDisabled,blocks:u,icon:n.icon,children:({draggable:p,onDragStart:f,onDragEnd:b})=>a.jsx("div",{className:oe("block-editor-block-types-list__list-item",{"is-synced":d}),draggable:p,onDragStart:h=>{c.current=!0,f&&(r(null),f(h))},onDragEnd:h=>{c.current=!1,b&&b(h)},children:a.jsxs(qkt,{isFirst:t,className:oe("block-editor-block-types-list__item",e),disabled:n.isDisabled,onClick:h=>{h.preventDefault(),o(n,pa()?h.metaKey:h.ctrlKey),r(null)},onKeyDown:h=>{const{keyCode:g}=h;g===Gr&&(h.preventDefault(),o(n,pa()?h.metaKey:h.ctrlKey),r(null))},onMouseEnter:()=>{c.current||r(n)},onMouseLeave:()=>r(null),...i,children:[a.jsx("span",{className:"block-editor-block-types-list__item-icon",style:l,children:a.jsx(Zn,{icon:n.icon,showColors:!0})}),a.jsx("span",{className:"block-editor-block-types-list__item-title",children:a.jsx(zs,{numberOfLines:3,children:n.title})})]})})})}const Tkt=x.memo(Rkt);function Ekt(e,t){const n=[];for(let o=0,r=e.length;o<r;o+=t)n.push(e.slice(o,o+t));return n}function O2({items:e=[],onSelect:t,onHover:n=()=>{},children:o,label:r,isDraggable:s=!0}){const i="block-editor-block-types-list",c=vt(O2,i);return a.jsxs(_kt,{className:i,"aria-label":r,children:[Ekt(e,3).map((l,u)=>a.jsx(Skt,{children:l.map((d,p)=>a.jsx(Tkt,{item:d,className:FB(d.id),onSelect:t,onHover:n,isDraggable:s&&!d.isDisabled,isFirst:u===0&&p===0,rowId:`${c}-${u}`},d.id))},u)),o]})}function y2({title:e,icon:t,children:n}){return a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:"block-editor-inserter__panel-header",children:[a.jsx("h2",{className:"block-editor-inserter__panel-title",children:e}),a.jsx(qo,{icon:t})]}),a.jsx("div",{className:"block-editor-inserter__panel-content",children:n})]})}function kh(){return a.jsxs("div",{className:"block-editor-inserter__no-results",children:[a.jsx(wn,{className:"block-editor-inserter__no-results-icon",icon:Ew}),a.jsx("p",{children:m("No results found.")})]})}const Wkt=e=>e.name.split("/")[0],Nkt=6,Bkt=[];function zee({items:e,collections:t,categories:n,onSelectItem:o,onHover:r,showMostUsedBlocks:s,className:i}){const c=x.useMemo(()=>hO(e,"frecency","desc").slice(0,Nkt),[e]),l=x.useMemo(()=>e.filter(h=>!h.category),[e]),u=x.useMemo(()=>{const h={...t};return Object.keys(t).forEach(g=>{h[g]=e.filter(z=>Wkt(z)===g),h[g].length===0&&delete h[g]}),h},[e,t]);x.useEffect(()=>()=>r(null),[]);const d=W4(n),p=n.length===d.length,f=x.useMemo(()=>Object.entries(t),[t]),b=W4(p?f:Bkt);return a.jsxs("div",{className:i,children:[s&&e.length>3&&!!c.length&&a.jsx(y2,{title:We("Most used","blocks"),children:a.jsx(O2,{items:c,onSelect:o,onHover:r,label:We("Most used","blocks")})}),d.map(h=>{const g=e.filter(z=>z.category===h.slug);return!g||!g.length?null:a.jsx(y2,{title:h.title,icon:h.icon,children:a.jsx(O2,{items:g,onSelect:o,onHover:r,label:h.title})},h.slug)}),p&&l.length>0&&a.jsx(y2,{className:"block-editor-inserter__uncategorized-blocks-panel",title:m("Uncategorized"),children:a.jsx(O2,{items:l,onSelect:o,onHover:r,label:m("Uncategorized")})}),b.map(([h,g])=>{const z=u[h];return!z||!z.length?null:a.jsx(y2,{title:g.title,icon:g.icon,children:a.jsx(O2,{items:z,onSelect:o,onHover:r,label:g.title})},h)})]})}function Lkt({rootClientId:e,onInsert:t,onHover:n,showMostUsedBlocks:o},r){const[s,i,c,l]=z_(e,t);if(!s.length)return a.jsx(kh,{});const u=[],d=[];for(const p of s)p.category!=="reusable"&&(p.isAllowedInCurrentRoot?u.push(p):d.push(p));return a.jsx(U7,{children:a.jsxs("div",{ref:r,children:[!!u.length&&a.jsx(a.Fragment,{children:a.jsx(zee,{items:u,categories:i,collections:c,onSelectItem:l,onHover:n,showMostUsedBlocks:o,className:"block-editor-inserter__insertable-blocks-at-selection"})}),a.jsx(zee,{items:d,categories:i,collections:c,onSelectItem:l,onHover:n,showMostUsedBlocks:o,className:"block-editor-inserter__all-blocks"})]})})}const Pkt=x.forwardRef(Lkt);function jkt({selectedCategory:e,patternCategories:t,onClickCategory:n}){const o="block-editor-block-patterns-explorer__sidebar";return a.jsx("div",{className:`${o}__categories-list`,children:t.map(({name:r,label:s})=>a.jsx(Ce,{__next40pxDefaultSize:!0,label:s,className:`${o}__categories-list__item`,isPressed:e===r,onClick:()=>{n(r)},children:s},r))})}function Ikt({searchValue:e,setSearchValue:t}){return a.jsx("div",{className:"block-editor-block-patterns-explorer__search",children:a.jsx(iu,{__nextHasNoMarginBottom:!0,onChange:t,value:e,label:m("Search"),placeholder:m("Search")})})}function Dkt({selectedCategory:e,patternCategories:t,onClickCategory:n,searchValue:o,setSearchValue:r}){return a.jsxs("div",{className:"block-editor-block-patterns-explorer__sidebar",children:[a.jsx(Ikt,{searchValue:o,setSearchValue:r}),!o&&a.jsx(jkt,{selectedCategory:e,patternCategories:t,onClickCategory:n})]})}function dge({currentPage:e,numPages:t,changePage:n,totalItems:o}){return a.jsxs(dt,{className:"block-editor-patterns__grid-pagination-wrapper",children:[a.jsx(Sn,{variant:"muted",children:xe(Dn("%s item","%s items",o),o)}),t>1&&a.jsxs(Ot,{expanded:!1,spacing:3,justify:"flex-start",className:"block-editor-patterns__grid-pagination",children:[a.jsxs(Ot,{expanded:!1,spacing:1,className:"block-editor-patterns__grid-pagination-previous",children:[a.jsx(Ce,{variant:"tertiary",onClick:()=>n(1),disabled:e===1,"aria-label":m("First page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"«"})}),a.jsx(Ce,{variant:"tertiary",onClick:()=>n(e-1),disabled:e===1,"aria-label":m("Previous page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"‹"})})]}),a.jsx(Sn,{variant:"muted",children:xe(We("%1$s of %2$s","paging"),e,t)}),a.jsxs(Ot,{expanded:!1,spacing:1,className:"block-editor-patterns__grid-pagination-next",children:[a.jsx(Ce,{variant:"tertiary",onClick:()=>n(e+1),disabled:e===t,"aria-label":m("Next page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"›"})}),a.jsx(Ce,{variant:"tertiary",onClick:()=>n(t),disabled:e===t,"aria-label":m("Last page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"»"})})]})]})]})}const Fkt=({showTooltip:e,title:t,children:n})=>e?a.jsx(B0,{text:t,children:n}):a.jsx(a.Fragment,{children:n});function pge({id:e,isDraggable:t,pattern:n,onClick:o,onHover:r,showTitlesAsTooltip:s,category:i,isSelected:c}){const[l,u]=x.useState(!1),{blocks:d,viewportWidth:p}=n,b=`block-editor-block-patterns-list__item-description-${vt(pge)}`,h=n.type===g1.user,g=x.useMemo(()=>!i||!t?d:(d??[]).map(z=>{const A=jo(z);return A.attributes.metadata?.categories?.includes(i)&&(A.attributes.metadata.categories=[i]),A}),[d,t,i]);return a.jsx(X7,{isEnabled:t,blocks:g,pattern:n,children:({draggable:z,onDragStart:A,onDragEnd:_})=>a.jsx("div",{className:"block-editor-block-patterns-list__list-item",draggable:z,onDragStart:v=>{u(!0),A&&(r?.(null),A(v))},onDragEnd:v=>{u(!1),_&&_(v)},children:a.jsx(Fkt,{showTooltip:s&&!h,title:n.title,children:a.jsxs(S1.Item,{render:a.jsx("div",{role:"option","aria-label":n.title,"aria-describedby":n.description?b:void 0,className:oe("block-editor-block-patterns-list__item",{"block-editor-block-patterns-list__list-item-synced":n.type===g1.user&&!n.syncStatus,"is-selected":c})}),id:e,onClick:()=>{o(n,d),r?.(null)},onMouseEnter:()=>{l||r?.(n)},onMouseLeave:()=>r?.(null),children:[a.jsx(Vd.Async,{placeholder:a.jsx($kt,{}),children:a.jsx(Vd,{blocks:d,viewportWidth:p})}),(!s||h)&&a.jsxs(Ot,{className:"block-editor-patterns__pattern-details",spacing:2,children:[h&&!n.syncStatus&&a.jsx("div",{className:"block-editor-patterns__pattern-icon-wrapper",children:a.jsx(wn,{className:"block-editor-patterns__pattern-icon",icon:Bd})}),a.jsx("div",{className:"block-editor-block-patterns-list__item-title",children:n.title})]}),!!n.description&&a.jsx(qn,{id:b,children:n.description})]})})})})}function $kt(){return a.jsx("div",{className:"block-editor-block-patterns-list__item is-placeholder"})}function Vkt({isDraggable:e,blockPatterns:t,onHover:n,onClickPattern:o,orientation:r,label:s=m("Block patterns"),category:i,showTitlesAsTooltip:c,pagingProps:l},u){const[d,p]=x.useState(void 0),[f,b]=x.useState(null);x.useEffect(()=>{const g=t[0]?.name;p(g)},[t]);const h=(g,z)=>{b(g.name),o(g,z)};return a.jsxs(S1,{orientation:r,activeId:d,setActiveId:p,role:"listbox",className:"block-editor-block-patterns-list","aria-label":s,ref:u,children:[t.map(g=>a.jsx(pge,{id:g.name,pattern:g,onClick:h,onHover:n,isDraggable:e,showTitlesAsTooltip:c,category:i,isSelected:!!f&&f===g.name},g.name)),l&&a.jsx(dge,{...l})]})}const qa=x.forwardRef(Vkt);function Oee({destinationRootClientId:e,destinationIndex:t,rootClientId:n,registry:o}){if(n===e)return t;const r=["",...o.select(Q).getBlockParents(e),e],s=r.indexOf(n);return s!==-1?o.select(Q).getBlockIndex(r[s+1])+1:o.select(Q).getBlockOrder(n).length}function L_({rootClientId:e="",insertionIndex:t,clientId:n,isAppender:o,onSelect:r,shouldFocusBlock:s=!0,selectBlockOnInsert:i=!0}){const c=Fn(),{getSelectedBlock:l,getClosestAllowedInsertionPoint:u,isBlockInsertionPointVisible:d}=ct(G(Q)),{destinationRootClientId:p,destinationIndex:f}=G(M=>{const{getSelectedBlockClientId:y,getBlockRootClientId:k,getBlockIndex:S,getBlockOrder:C,getInsertionPoint:R}=ct(M(Q)),T=y();let E=e,B;const N=R();return t!==void 0?B=t:N&&N.hasOwnProperty("index")?(E=N?.rootClientId?N.rootClientId:e,B=N.index):n?B=S(n):!o&&T?(E=k(T),B=S(T)+1):B=C(E).length,{destinationRootClientId:E,destinationIndex:B}},[e,t,n,o]),{replaceBlocks:b,insertBlocks:h,showInsertionPoint:g,hideInsertionPoint:z,setLastFocus:A}=ct(Oe(Q)),_=x.useCallback((M,y,k=!1,S)=>{(k||s||i)&&A(null);const C=l();!o&&C&&Wl(C)?b(C.clientId,M,null,s||k?0:null,y):h(M,o||S===void 0?f:Oee({destinationRootClientId:p,destinationIndex:f,rootClientId:S,registry:c}),o||S===void 0?p:S,i,s||k?0:null,y);const R=Array.isArray(M)?M.length:1,T=xe(Dn("%d block added.","%d blocks added.",R),R);Yt(T),r&&r(M)},[o,l,b,h,p,f,r,s,i]),v=x.useCallback(M=>{if(M&&!d()){const y=u(M.name,p);y!==null&&g(y,Oee({destinationRootClientId:p,destinationIndex:f,rootClientId:y,registry:c}))}else z()},[u,d,g,z,p,f]);return[p,_,v]}const P_=(e,t,n,o)=>{const r=x.useMemo(()=>({[bO]:!!o}),[o]),{patternCategories:s,patterns:i,userPatternCategories:c}=G(f=>{const{getSettings:b,__experimentalGetAllowedPatterns:h}=ct(f(Q)),{__experimentalUserPatternCategories:g,__experimentalBlockPatternCategories:z}=b();return{patterns:h(t,r),userPatternCategories:g,patternCategories:z}},[t,r]),{getClosestAllowedInsertionPointForPattern:l}=ct(G(Q)),u=x.useMemo(()=>{const f=[...s];return c?.forEach(b=>{f.find(h=>h.name===b.name)||f.push(b)}),f},[s,c]),{createSuccessNotice:d}=Oe(mt),p=x.useCallback((f,b)=>{const h=l(f,t);if(h===null)return;const g=f.type===g1.user&&f.syncStatus!=="unsynced"?[Ee("core/block",{ref:f.id})]:b;e((g??[]).map(z=>{const A=jo(z);return A.attributes.metadata?.categories?.includes(n)&&(A.attributes.metadata.categories=[n]),A}),f.name,!1,h),d(xe(m('Block pattern "%s" inserted.'),f.title),{type:"snackbar",id:"inserter-notice"})},[d,e,n,t,l,o]);return[i,u,p]},iv=20;function fge(e,t,n,o=""){const[r,s]=x.useState(1),i=Fr(t),c=Fr(o);(i!==t||c!==o)&&r!==1&&s(1);const l=e.length,u=r-1,d=x.useMemo(()=>e.slice(u*iv,u*iv+iv),[u,e]),p=Math.ceil(e.length/iv),f=b=>{ps(n?.current)?.scrollTo(0,0),s(b)};return x.useEffect(function(){ps(n?.current)?.scrollTo(0,0)},[t,n]),{totalItems:l,categoryPatterns:d,numPages:p,changePage:f,currentPage:r}}function Hkt({filterValue:e,filteredBlockPatternsLength:t}){return e?a.jsx(_a,{level:2,lineHeight:"48px",className:"block-editor-block-patterns-explorer__search-results-count",children:xe(Dn("%d pattern found","%d patterns found",t),t)}):null}function Ukt({searchValue:e,selectedCategory:t,patternCategories:n,rootClientId:o}){const r=x.useRef(),s=C1(Yt,500),[i,c]=L_({rootClientId:o,shouldFocusBlock:!0}),[l,,u]=P_(c,i,t),d=x.useMemo(()=>n.map(z=>z.name),[n]),p=x.useMemo(()=>{const z=l.filter(A=>{if(t===Ex.name||t===pO.name&&A.type===g1.user)return!0;if(t==="uncategorized"){var _;const v=(_=A.categories?.some(M=>d.includes(M)))!==null&&_!==void 0?_:!1;return!A.categories?.length||!v}return A.categories?.includes(t)});return e?p7(z,e):z},[e,l,t,d]);x.useEffect(()=>{if(!e)return;const z=p.length,A=xe(Dn("%d result found.","%d results found.",z),z);s(A)},[e,s,p.length]);const f=fge(p,t,r),[b,h]=x.useState(e);e!==b&&(h(e),f.changePage(1));const g=!!p?.length;return a.jsxs("div",{className:"block-editor-block-patterns-explorer__list",ref:r,children:[a.jsx(Hkt,{filterValue:e,filteredBlockPatternsLength:p.length}),a.jsx(U7,{children:g&&a.jsxs(a.Fragment,{children:[a.jsx(qa,{blockPatterns:f.categoryPatterns,onClickPattern:u,isDraggable:!1}),a.jsx(dge,{...f})]})})]})}function Xkt(e,t){return!e.categories||!e.categories.length?!1:e.categories.some(n=>t.some(o=>o.name===n))}function G7(e,t="all"){const[n,o]=P_(void 0,e),r=x.useMemo(()=>t==="all"?n:n.filter(i=>!E2e(i,t)),[t,n]);return x.useMemo(()=>{const i=o.filter(c=>r.some(l=>l.categories?.includes(c.name))).sort((c,l)=>c.label.localeCompare(l.label));return r.some(c=>!Xkt(c,o))&&!i.find(c=>c.name==="uncategorized")&&i.push({name:"uncategorized",label:We("Uncategorized")}),r.some(c=>c.blockTypes?.includes("core/post-content"))&&i.unshift(T2e),r.some(c=>c.type===g1.user)&&i.unshift(pO),r.length>0&&i.unshift({name:Ex.name,label:Ex.label}),Yt(xe(Dn("%d category button displayed.","%d category buttons displayed.",i.length),i.length)),i},[o,r])}function Gkt({initialCategory:e,rootClientId:t}){const[n,o]=x.useState(""),[r,s]=x.useState(e),i=G7(t);return a.jsxs("div",{className:"block-editor-block-patterns-explorer",children:[a.jsx(Dkt,{selectedCategory:r,patternCategories:i,onClickCategory:s,searchValue:n,setSearchValue:o}),a.jsx(Ukt,{searchValue:n,selectedCategory:r,patternCategories:i,rootClientId:t})]})}function Kkt({onModalClose:e,...t}){return a.jsx(Zo,{title:m("Patterns"),onRequestClose:e,isFullScreen:!0,children:a.jsx(Gkt,{...t})})}function Ykt({title:e}){return a.jsx(dt,{spacing:0,children:a.jsx(mo,{children:a.jsx(t1,{marginBottom:0,paddingX:4,paddingY:3,children:a.jsxs(Ot,{spacing:2,children:[a.jsx(ic.BackButton,{style:{minWidth:24,padding:0},icon:jt()?ga:Pl,size:"small",label:m("Back")}),a.jsx(t1,{children:a.jsx(_a,{level:5,children:e})})]})})})})}function bge({categories:e,children:t}){return a.jsxs(ic,{initialPath:"/",className:"block-editor-inserter__mobile-tab-navigation",children:[a.jsx(ic.Screen,{path:"/",children:a.jsx(tb,{children:e.map(n=>a.jsx(ic.Button,{path:`/category/${n.name}`,as:oO,isAction:!0,children:a.jsxs(Ot,{children:[a.jsx(tu,{children:n.label}),a.jsx(wn,{icon:jt()?Pl:ga})]})},n.name))})}),e.map(n=>a.jsxs(ic.Screen,{path:`/category/${n.name}`,children:[a.jsx(Ykt,{title:m("Back")}),t(n)]},n.name))]})}const yee=e=>e!=="all"&&e!=="user",Zkt=e=>e?.name===pO.name,Qkt=[{value:"all",label:We("All","patterns")},{value:g1.directory,label:m("Pattern Directory")},{value:g1.theme,label:m("Theme & Plugins")},{value:g1.user,label:m("User")}];function Jkt({setPatternSyncFilter:e,setPatternSourceFilter:t,patternSyncFilter:n,patternSourceFilter:o,scrollContainerRef:r,category:s}){const i=s?.name===pO.name?g1.user:o,c=yee(i),l=Zkt(s),u=x.useMemo(()=>[{value:"all",label:We("All","patterns")},{value:Tx.full,label:We("Synced","patterns"),disabled:c},{value:Tx.unsynced,label:We("Not synced","patterns"),disabled:c}],[c]);function d(p){t(p),yee(p)&&e("all")}return a.jsx(a.Fragment,{children:a.jsx(c0,{popoverProps:{placement:"right-end"},label:m("Filter patterns"),toggleProps:{size:"compact"},icon:a.jsx(wn,{icon:a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M10 17.5H14V16H10V17.5ZM6 6V7.5H18V6H6ZM8 12.5H16V11H8V12.5Z",fill:"currentColor"})})}),children:()=>a.jsxs(a.Fragment,{children:[!l&&a.jsx(Cn,{label:m("Source"),children:a.jsx(kf,{choices:Qkt,onSelect:p=>{d(p),r.current?.scrollTo(0,0)},value:i})}),a.jsx(Cn,{label:m("Type"),children:a.jsx(kf,{choices:u,onSelect:p=>{e(p),r.current?.scrollTo(0,0)},value:n})}),a.jsx("div",{className:"block-editor-inserter__patterns-filter-help",children:cr(m("Patterns are available from the <Link>WordPress.org Pattern Directory</Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced."),{Link:a.jsx(hr,{href:m("https://wordpress.org/patterns/")})})})]})})})}const e6t=()=>{};function hge({rootClientId:e,onInsert:t,onHover:n=e6t,category:o,showTitlesAsTooltip:r}){const[s,,i]=P_(t,e,o?.name),[c,l]=x.useState("all"),[u,d]=x.useState("all"),p=G7(e,u),f=x.useRef(),b=x.useMemo(()=>s.filter(_=>E2e(_,u,c)?!1:o.name===Ex?.name||o.name===pO?.name&&_.type===g1.user||o.name===T2e?.name&&_.blockTypes?.includes("core/post-content")?!0:o.name==="uncategorized"?_.categories?!_.categories.some(v=>p.some(M=>M.name===v)):!0:_.categories?.includes(o.name)),[s,p,o.name,u,c]),h=fge(b,o,f),{changePage:g}=h;x.useEffect(()=>()=>n(null),[]);const z=x.useCallback(_=>{l(_),g(1)},[l,g]),A=x.useCallback(_=>{d(_),g(1)},[d,g]);return a.jsxs(a.Fragment,{children:[a.jsxs(dt,{spacing:2,className:"block-editor-inserter__patterns-category-panel-header",children:[a.jsxs(Ot,{children:[a.jsx(tu,{children:a.jsx(_a,{className:"block-editor-inserter__patterns-category-panel-title",size:13,level:4,as:"div",children:o?.label})}),a.jsx(Jkt,{patternSyncFilter:c,patternSourceFilter:u,setPatternSyncFilter:z,setPatternSourceFilter:A,scrollContainerRef:f,category:o})]}),!b.length&&a.jsx(Sn,{variant:"muted",className:"block-editor-inserter__patterns-category-no-results",children:m("No results found")})]}),b.length>0&&a.jsxs(a.Fragment,{children:[a.jsx(Sn,{size:"12",as:"p",className:"block-editor-inserter__help-text",children:m("Drag and drop patterns into the canvas.")}),a.jsx(qa,{ref:f,blockPatterns:h.categoryPatterns,onClickPattern:i,onHover:n,label:o.label,orientation:"vertical",category:o.name,isDraggable:!0,showTitlesAsTooltip:r,patternFilter:u,pagingProps:h})]})]})}const{Tabs:av}=ct(tr);function mge({categories:e,selectedCategory:t,onSelectCategory:n,children:o}){const i={type:"tween",duration:$1()?0:.25,ease:[.6,0,.4,1]},c=Fr(t),l=t?t.name:null,[u,d]=x.useState(),p=e?.[0]?.name;return l===null&&!u&&p&&d(p),a.jsxs(av,{selectOnMove:!1,selectedTabId:l,orientation:"vertical",onSelect:f=>{n(e.find(b=>b.name===f))},activeTabId:u,onActiveTabIdChange:d,children:[a.jsx(av.TabList,{className:"block-editor-inserter__category-tablist",children:e.map(f=>a.jsx(av.Tab,{tabId:f.name,"aria-current":f.name===t?.name?"true":void 0,children:f.label},f.name))}),e.map(f=>a.jsx(av.TabPanel,{tabId:f.name,focusable:!1,children:a.jsx(Rr.div,{className:"block-editor-inserter__category-panel",initial:c?"open":"closed",animate:"open",variants:{open:{transform:"translateX( 0 )",transitionEnd:{zIndex:"1"}},closed:{transform:"translateX( -100% )",zIndex:"-1"}},transition:i,children:o})},f.name))]})}function t6t({onSelectCategory:e,selectedCategory:t,onInsert:n,rootClientId:o,children:r}){const[s,i]=x.useState(!1),c=G7(o),l=Yn("medium","<");return c.length?a.jsxs(a.Fragment,{children:[!l&&a.jsxs("div",{className:"block-editor-inserter__block-patterns-tabs-container",children:[a.jsx(mge,{categories:c,selectedCategory:t,onSelectCategory:e,children:r}),a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-inserter__patterns-explore-button",onClick:()=>i(!0),variant:"secondary",children:m("Explore all patterns")})]}),l&&a.jsx(bge,{categories:c,children:u=>a.jsx("div",{className:"block-editor-inserter__category-panel",children:a.jsx(hge,{onInsert:n,rootClientId:o,category:u},u.name)})}),s&&a.jsx(Kkt,{initialCategory:t?.name||c[0]?.name,patternCategories:c,onModalClose:()=>i(!1),rootClientId:o})]}):a.jsx(kh,{})}const n6t={image:"img",video:"video",audio:"audio"};function gge(e,t){const n={id:e.id||void 0,caption:e.caption||void 0},o=e.url,r=e.alt||void 0;t==="image"?(n.url=o,n.alt=r):["video","audio"].includes(t)&&(n.src=o);const s=n6t[t],i=a.jsx(s,{src:e.previewUrl||o,alt:r,controls:t==="audio"?!0:void 0,inert:"true",onError:({currentTarget:c})=>{c.src===e.previewUrl&&(c.src=o)}});return[Ee(`core/${t}`,n),i]}const o6t=["image"],Aee=25,r6t={position:"bottom left",className:"block-editor-inserter__media-list__item-preview-options__popover"};function s6t({category:e,media:t}){if(!e.getReportUrl)return null;const n=e.getReportUrl(t);return a.jsx(c0,{className:"block-editor-inserter__media-list__item-preview-options",label:m("Options"),popoverProps:r6t,icon:Wc,children:()=>a.jsx(Cn,{children:a.jsx(Ct,{onClick:()=>window.open(n,"_blank").focus(),icon:vf,children:xe(m("Report %s"),e.mediaType)})})})}function i6t({onClose:e,onSubmit:t}){return a.jsxs(Zo,{title:m("Insert external image"),onRequestClose:e,className:"block-editor-inserter-media-tab-media-preview-inserter-external-image-modal",children:[a.jsxs(dt,{spacing:3,children:[a.jsx("p",{children:m("This image cannot be uploaded to your Media Library, but it can still be inserted as an external image.")}),a.jsx("p",{children:m("External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation.")})]}),a.jsxs(Yo,{className:"block-editor-block-lock-modal__actions",justify:"flex-end",expanded:!1,children:[a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:e,children:m("Cancel")})}),a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:t,children:m("Insert")})})]})]})}function a6t({media:e,onClick:t,category:n}){const[o,r]=x.useState(!1),[s,i]=x.useState(!1),[c,l]=x.useState(!1),[u,d]=x.useMemo(()=>gge(e,n.mediaType),[e,n.mediaType]),{createErrorNotice:p,createSuccessNotice:f}=Oe(mt),{getSettings:b,getBlock:h}=G(Q),{updateBlockAttributes:g}=Oe(Q),z=x.useCallback(y=>{if(c)return;const k=b(),S=jo(y),{id:C,url:R,caption:T}=S.attributes;if(!C&&!k.mediaUpload){r(!0);return}if(C){t(S);return}l(!0),window.fetch(R).then(E=>E.blob()).then(E=>{const B=If(R)||"image.jpg",N=new File([E],B,{type:E.type});k.mediaUpload({filesList:[N],additionalData:{caption:T},onFileChange([j]){Nr(j.url)||(h(S.clientId)?g(S.clientId,{...S.attributes,id:j.id,url:j.url}):(t({...S,attributes:{...S.attributes,id:j.id,url:j.url}}),f(m("Image uploaded and inserted."),{type:"snackbar",id:"inserter-notice"})),l(!1))},allowedTypes:o6t,onError(j){p(j,{type:"snackbar",id:"inserter-notice"}),l(!1)}})}).catch(()=>{r(!0),l(!1)})},[c,b,t,f,g,p,h]),A=typeof e.title=="string"?e.title:e.title?.rendered||m("no title");let _;if(A.length>Aee){const y="...";_=A.slice(0,Aee-y.length)+y}const v=x.useCallback(()=>i(!0),[]),M=x.useCallback(()=>i(!1),[]);return a.jsxs(a.Fragment,{children:[a.jsx(X7,{isEnabled:!0,blocks:[u],children:({draggable:y,onDragStart:k,onDragEnd:S})=>a.jsx("div",{className:oe("block-editor-inserter__media-list__list-item",{"is-hovered":s}),draggable:y,onDragStart:k,onDragEnd:S,children:a.jsxs("div",{onMouseEnter:v,onMouseLeave:M,children:[a.jsx(B0,{text:_||A,children:a.jsx(S1.Item,{render:a.jsx("div",{"aria-label":A,role:"option",className:"block-editor-inserter__media-list__item"}),onClick:()=>z(u),children:a.jsxs("div",{className:"block-editor-inserter__media-list__item-preview",children:[d,c&&a.jsx("div",{className:"block-editor-inserter__media-list__item-preview-spinner",children:a.jsx(Xn,{})})]})})}),!c&&a.jsx(s6t,{category:n,media:e})]})})}),o&&a.jsx(i6t,{onClose:()=>r(!1),onSubmit:()=>{t(jo(u)),f(m("Image inserted."),{type:"snackbar",id:"inserter-notice"}),r(!1)}})]})}function c6t({mediaList:e,category:t,onClick:n,label:o=m("Media List")}){return a.jsx(S1,{role:"listbox",className:"block-editor-inserter__media-list","aria-label":o,children:e.map((r,s)=>a.jsx(a6t,{media:r,category:t,onClick:n},r.id||r.sourceId||s))})}function l6t(e,t={}){const[n,o]=x.useState(),[r,s]=x.useState(!1),i=x.useRef();return x.useEffect(()=>{(async()=>{const c=JSON.stringify({category:e.name,...t});i.current=c,s(!0),o([]);const l=await e.fetch?.(t);c===i.current&&(o(l),s(!1))})()},[e.name,...Object.values(t)]),{mediaList:n,isLoading:r}}function u6t(e){const[t,n]=x.useState([]),o=G(c=>ct(c(Q)).getInserterMediaCategories(),[]),{canInsertImage:r,canInsertVideo:s,canInsertAudio:i}=G(c=>{const{canInsertBlockType:l}=c(Q);return{canInsertImage:l("core/image",e),canInsertVideo:l("core/video",e),canInsertAudio:l("core/audio",e)}},[e]);return x.useEffect(()=>{(async()=>{const c=[];if(!o)return;const l=new Map(await Promise.all(o.map(async d=>{if(d.isExternalResource)return[d.name,!0];let p=[];try{p=await d.fetch({per_page:1})}catch{}return[d.name,!!p.length]}))),u={image:r,video:s,audio:i};o.forEach(d=>{u[d.mediaType]&&l.get(d.name)&&c.push(d)}),c.length&&n(c)})()},[r,s,i,o]),t}const d6t=10;function Mge({rootClientId:e,onInsert:t,category:n}){const[o,r,s]=S0e(),{mediaList:i,isLoading:c}=l6t(n,{per_page:s?20:d6t,search:s}),l="block-editor-inserter__media-panel",u=n.labels.search_items||m("Search");return a.jsxs("div",{className:l,children:[a.jsx(iu,{__nextHasNoMarginBottom:!0,className:`${l}-search`,onChange:r,value:o,label:u,placeholder:u}),c&&a.jsx("div",{className:`${l}-spinner`,children:a.jsx(Xn,{})}),!c&&!i?.length&&a.jsx(kh,{}),!c&&!!i?.length&&a.jsx(c6t,{rootClientId:e,onClick:t,mediaList:i,category:n})]})}function Hd({fallback:e=null,children:t}){return G(o=>{const{getSettings:r}=o(Q);return!!r().mediaUpload},[])?t:e}const p6t=()=>null,ab=ap("editor.MediaUpload")(p6t),f6t=["image","video","audio"];function b6t({rootClientId:e,selectedCategory:t,onSelectCategory:n,onInsert:o,children:r}){const s=u6t(e),i=Yn("medium","<"),c="block-editor-inserter__media-tabs",l=x.useCallback(d=>{if(!d?.url)return;const[p]=gge(d,d.type);o(p)},[o]),u=x.useMemo(()=>s.map(d=>({...d,label:d.labels.name})),[s]);return u.length?a.jsxs(a.Fragment,{children:[!i&&a.jsxs("div",{className:`${c}-container`,children:[a.jsx(mge,{categories:u,selectedCategory:t,onSelectCategory:n,children:r}),a.jsx(Hd,{children:a.jsx(ab,{multiple:!1,onSelect:l,allowedTypes:f6t,render:({open:d})=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:p=>{p.target.focus(),d()},className:"block-editor-inserter__media-library-button",variant:"secondary","data-unstable-ignore-focus-outside-for-relatedtarget":".media-modal",children:m("Open Media Library")})})})]}),i&&a.jsx(bge,{categories:u,children:d=>a.jsx(Mge,{onInsert:o,rootClientId:e,category:d})})]}):a.jsx(kh,{})}const{Fill:zge,Slot:h6t}=Qn("__unstableInserterMenuExtension");zge.Slot=h6t;const m6t=9,g6t=[];function Oge({filterValue:e,onSelect:t,onHover:n,onHoverPattern:o,rootClientId:r,clientId:s,isAppender:i,__experimentalInsertionIndex:c,maxBlockPatterns:l,maxBlockTypes:u,showBlockDirectory:d=!1,isDraggable:p=!0,shouldFocusBlock:f=!0,prioritizePatterns:b,selectBlockOnInsert:h,isQuick:g}){const z=C1(Yt,500),{prioritizedBlocks:A}=G($=>({prioritizedBlocks:$(Q).getBlockListSettings(r)?.prioritizedInserterBlocks||g6t}),[r]),[_,v]=L_({onSelect:t,rootClientId:r,clientId:s,isAppender:i,insertionIndex:c,shouldFocusBlock:f,selectBlockOnInsert:h}),[M,y,k,S]=z_(_,v,g),[C,,R]=P_(v,_),T=x.useMemo(()=>{if(l===0)return[];const $=p7(C,e);return l!==void 0?$.slice(0,l):$},[e,C,l]);let E=u;b&&T.length>2&&(E=0);const B=x.useMemo(()=>{if(E===0)return[];const $=M.filter(Z=>Z.name!=="core/block");let F=hO($,"frecency","desc");!e&&A.length&&(F=whe(F,A));const X=xhe(F,y,k,e);return E!==void 0?X.slice(0,E):X},[e,M,y,k,E,A]);x.useEffect(()=>{if(!e)return;const $=B.length+T.length,F=xe(Dn("%d result found.","%d results found.",$),$);z(F)},[e,z,B,T]);const N=W4(B,{step:m6t}),j=B.length>0||T.length>0,I=!!B.length&&a.jsx(y2,{title:a.jsx(qn,{children:m("Blocks")}),children:a.jsx(O2,{items:N,onSelect:S,onHover:n,label:m("Blocks"),isDraggable:p})}),P=!!T.length&&a.jsx(y2,{title:a.jsx(qn,{children:m("Block patterns")}),children:a.jsx("div",{className:"block-editor-inserter__quick-inserter-patterns",children:a.jsx(qa,{blockPatterns:T,onClickPattern:R,onHover:o,isDraggable:p})})});return a.jsxs(U7,{children:[!d&&!j&&a.jsx(kh,{}),b?P:I,!!B.length&&!!T.length&&a.jsx("div",{className:"block-editor-inserter__quick-inserter-separator"}),b?I:P,d&&a.jsx(zge.Slot,{fillProps:{onSelect:S,onHover:n,filterValue:e,hasItems:j,rootClientId:_},children:$=>$.length?$:j?null:a.jsx(kh,{})})]})}const{Tabs:cv}=ct(tr);function M6t({defaultTabId:e,onClose:t,onSelect:n,selectedTab:o,tabs:r,closeButtonLabel:s},i){return a.jsx("div",{className:"block-editor-tabbed-sidebar",children:a.jsxs(cv,{selectOnMove:!1,defaultTabId:e,onSelect:n,selectedTabId:o,children:[a.jsxs("div",{className:"block-editor-tabbed-sidebar__tablist-and-close-button",children:[a.jsx(Ce,{className:"block-editor-tabbed-sidebar__close-button",icon:rp,label:s,onClick:()=>t(),size:"compact"}),a.jsx(cv.TabList,{className:"block-editor-tabbed-sidebar__tablist",ref:i,children:r.map(c=>a.jsx(cv.Tab,{tabId:c.name,className:"block-editor-tabbed-sidebar__tab",children:c.title},c.name))})]}),r.map(c=>a.jsx(cv.TabPanel,{tabId:c.name,focusable:!1,className:"block-editor-tabbed-sidebar__tabpanel",ref:c.panelRef,children:c.panel},c.name))]})})}const yge=x.forwardRef(M6t);function Age(e=!0){const{postId:t}=x.useContext(Cf),{setZoomLevel:n,resetZoomLevel:o}=ct(Oe(Q)),{isZoomedOut:r,isZoomOut:s}=G(u=>{const{isZoomOut:d}=ct(u(Q));return{isZoomedOut:d(),isZoomOut:d}},[]),i=x.useRef(!1),c=x.useRef(e),l=x.useRef(t);x.useEffect(()=>{r!==c.current&&(i.current=!1)},[r]),x.useEffect(()=>(c.current=e,l.current!==t&&(i.current=!0),e!==s()&&(i.current=!0,e?n("auto-scaled"):o()),()=>{i.current&&s()&&o()}),[e,s,t,o,n])}const z6t=()=>{};function O6t({rootClientId:e,clientId:t,isAppender:n,__experimentalInsertionIndex:o,onSelect:r,showInserterHelpPanel:s,showMostUsedBlocks:i,__experimentalFilterValue:c="",shouldFocusBlock:l=!0,onPatternCategorySelection:u,onClose:d,__experimentalInitialTab:p,__experimentalInitialCategory:f},b){const h=G(je=>ct(je(Q)).isZoomOut(),[]),g=G(je=>!!ct(je(Q)).getSectionRootClientId(),[]),[z,A,_]=S0e(c),[v,M]=x.useState(null),[y,k]=x.useState(f),[S,C]=x.useState("all"),[R,T]=x.useState(null),E=Yn("large");function B(){return p||(h?"patterns":"blocks")}const[N,j]=x.useState(B());Age(g&&(N==="patterns"||N==="media")&&E);const[P,$,F]=L_({rootClientId:e,clientId:t,isAppender:n,insertionIndex:o,shouldFocusBlock:l}),X=x.useRef(),Z=x.useCallback((je,ie,we,re)=>{$(je,ie,we,re),r(je),window.requestAnimationFrame(()=>{!l&&!X.current?.contains(b.current.ownerDocument.activeElement)&&X.current?.querySelector("button").focus()})},[$,r,l]),V=x.useCallback((je,ie,...we)=>{F(!1),$(je,{patternName:ie},...we),r()},[$,r]),ee=x.useCallback(je=>{F(je),M(je)},[F,M]),te=x.useCallback((je,ie)=>{k(je),C(ie),u?.()},[k,u]),J=N==="patterns"&&!_&&!!y,ue=N==="media"&&!!R,ce=x.useMemo(()=>N==="media"?null:a.jsxs(a.Fragment,{children:[a.jsx(iu,{__nextHasNoMarginBottom:!0,className:"block-editor-inserter__search",onChange:je=>{v&&M(null),A(je)},value:z,label:m("Search"),placeholder:m("Search")}),!!_&&a.jsx(Oge,{filterValue:_,onSelect:r,onHover:ee,rootClientId:e,clientId:t,isAppender:n,__experimentalInsertionIndex:o,showBlockDirectory:!0,shouldFocusBlock:l,prioritizePatterns:N==="patterns"})]}),[N,v,M,A,z,_,r,ee,l,t,e,o,n]),me=x.useMemo(()=>a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"block-editor-inserter__block-list",children:a.jsx(Pkt,{ref:X,rootClientId:P,onInsert:Z,onHover:ee,showMostUsedBlocks:i})}),s&&a.jsxs("div",{className:"block-editor-inserter__tips",children:[a.jsx(qn,{as:"h2",children:m("A tip for using the block editor")}),a.jsx(Ext,{})]})]}),[P,Z,ee,i,s]),de=x.useMemo(()=>a.jsx(t6t,{rootClientId:P,onInsert:V,onSelectCategory:te,selectedCategory:y,children:J&&a.jsx(hge,{rootClientId:P,onInsert:V,category:y,patternFilter:S,showTitlesAsTooltip:!0})}),[P,V,te,S,y,J]),Ae=x.useMemo(()=>a.jsx(b6t,{rootClientId:P,selectedCategory:R,onSelectCategory:T,onInsert:Z,children:ue&&a.jsx(Mge,{rootClientId:P,onInsert:Z,category:R})}),[P,Z,R,T,ue]),ye=je=>{je!=="patterns"&&k(null),j(je)},Ne=x.useRef();return x.useLayoutEffect(()=>{Ne.current&&window.requestAnimationFrame(()=>{Ne.current.querySelector('[role="tab"][aria-selected="true"]')?.focus()})},[]),a.jsxs("div",{className:oe("block-editor-inserter__menu",{"show-panel":J||ue,"is-zoom-out":h}),ref:b,children:[a.jsx("div",{className:"block-editor-inserter__main-area",children:a.jsx(yge,{ref:Ne,onSelect:ye,onClose:d,selectedTab:N,closeButtonLabel:m("Close Block Inserter"),tabs:[{name:"blocks",title:m("Blocks"),panel:a.jsxs(a.Fragment,{children:[ce,N==="blocks"&&!_&&me]})},{name:"patterns",title:m("Patterns"),panel:a.jsxs(a.Fragment,{children:[ce,N==="patterns"&&!_&&de]})},{name:"media",title:m("Media"),panel:a.jsxs(a.Fragment,{children:[ce,Ae]})}]})}),s&&v&&a.jsx(Io,{className:"block-editor-inserter__preview-container__popover",placement:"right-start",offset:16,focusOnMount:!1,animate:!1,children:a.jsx(uge,{item:v})})]})}const vge=x.forwardRef(O6t);function y6t(e,t){return a.jsx(vge,{...e,onPatternCategorySelection:z6t,ref:t})}const A6t=x.forwardRef(y6t),v6t=6,x6t=6;function xge({onSelect:e,rootClientId:t,clientId:n,isAppender:o,selectBlockOnInsert:r,hasSearch:s=!0}){const[i,c]=x.useState(""),[l,u]=L_({onSelect:e,rootClientId:t,clientId:n,isAppender:o,selectBlockOnInsert:r}),[d]=z_(l,u,!0),{setInserterIsOpened:p,insertionIndex:f}=G(g=>{const{getSettings:z,getBlockIndex:A,getBlockCount:_}=g(Q),v=z(),M=A(n),y=_();return{setInserterIsOpened:v.__experimentalSetIsInserterOpened,insertionIndex:M===-1?y:M}},[n]),b=s&&d.length>v6t;x.useEffect(()=>{p&&p(!1)},[p]);const h=()=>{p({filterValue:i,onSelect:e,rootClientId:t,insertionIndex:f})};return a.jsxs("div",{className:oe("block-editor-inserter__quick-inserter",{"has-search":b,"has-expand":p}),children:[b&&a.jsx(iu,{__nextHasNoMarginBottom:!0,className:"block-editor-inserter__search",value:i,onChange:g=>{c(g)},label:m("Search"),placeholder:m("Search")}),a.jsx("div",{className:"block-editor-inserter__quick-inserter-results",children:a.jsx(Oge,{filterValue:i,onSelect:e,rootClientId:t,clientId:n,isAppender:o,maxBlockPatterns:0,maxBlockTypes:x6t,isDraggable:!1,selectBlockOnInsert:r,isQuick:!0})}),p&&a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-inserter__quick-inserter-expand",onClick:h,"aria-label":m("Browse all. This will open the main inserter panel in the editor toolbar."),children:m("Browse all")})]})}const w6t=({onToggle:e,disabled:t,isOpen:n,blockTitle:o,hasSingleBlockType:r,toggleProps:s={}})=>{const{as:i=Ce,label:c,onClick:l,...u}=s;let d=c;!d&&r?d=xe(We("Add %s","directly add the only allowed block"),o):d||(d=We("Add block","Generic label for block inserter button"));function p(f){e&&e(f),l&&l(f)}return a.jsx(i,{__next40pxDefaultSize:s.as?void 0:!0,icon:Fs,label:d,tooltipPosition:"bottom",onClick:p,className:"block-editor-inserter__toggle","aria-haspopup":r?!1:"true","aria-expanded":r?!1:n,disabled:t,...u})};class _6t extends x.Component{constructor(){super(...arguments),this.onToggle=this.onToggle.bind(this),this.renderToggle=this.renderToggle.bind(this),this.renderContent=this.renderContent.bind(this)}onToggle(t){const{onToggle:n}=this.props;n&&n(t)}renderToggle({onToggle:t,isOpen:n}){const{disabled:o,blockTitle:r,hasSingleBlockType:s,directInsertBlock:i,toggleProps:c,hasItems:l,renderToggle:u=w6t}=this.props;return u({onToggle:t,isOpen:n,disabled:o||!l,blockTitle:r,hasSingleBlockType:s,directInsertBlock:i,toggleProps:c})}renderContent({onClose:t}){const{rootClientId:n,clientId:o,isAppender:r,showInserterHelpPanel:s,__experimentalIsQuick:i,onSelectOrClose:c,selectBlockOnInsert:l}=this.props;return i?a.jsx(xge,{onSelect:u=>{const d=Array.isArray(u)&&u?.length?u[0]:u;c&&typeof c=="function"&&c(d),t()},rootClientId:n,clientId:o,isAppender:r,selectBlockOnInsert:l}):a.jsx(A6t,{onSelect:()=>{t()},rootClientId:n,clientId:o,isAppender:r,showInserterHelpPanel:s})}render(){const{position:t,hasSingleBlockType:n,directInsertBlock:o,insertOnlyAllowedBlock:r,__experimentalIsQuick:s,onSelectOrClose:i}=this.props;return n||o?this.renderToggle({onToggle:r}):a.jsx(so,{className:"block-editor-inserter",contentClassName:oe("block-editor-inserter__popover",{"is-quick":s}),popoverProps:{position:t,shift:!0},onToggle:this.onToggle,open:this.props.open,expandOnMobile:!0,headerTitle:m("Add a block"),renderToggle:this.renderToggle,renderContent:this.renderContent,onClose:i})}}const xm=Co([Xl((e,{clientId:t,rootClientId:n,shouldDirectInsert:o=!0})=>{const{getBlockRootClientId:r,hasInserterItems:s,getAllowedBlocks:i,getDirectInsertBlock:c}=e(Q),{getBlockVariations:l}=e(kt);n=n||r(t)||void 0;const u=i(n),d=o&&c(n),p=u?.length===1&&l(u[0].name,"inserter")?.length===0;let f=!1;return p&&(f=u[0]),{hasItems:s(n),hasSingleBlockType:p,blockTitle:f?f.title:"",allowedBlockType:f,directInsertBlock:d,rootClientId:n}}),Ff((e,t,{select:n})=>({insertOnlyAllowedBlock(){const{rootClientId:o,clientId:r,isAppender:s,hasSingleBlockType:i,allowedBlockType:c,directInsertBlock:l,onSelectOrClose:u,selectBlockOnInsert:d}=t;if(!i&&!l)return;function p(z){const{getBlock:A,getPreviousBlockClientId:_}=n(Q);if(!z||!r&&!o)return{};const v={};let M={};if(r){const y=A(r),k=A(_(r));y?.name===k?.name&&(M=k?.attributes||{})}else{const y=A(o);if(y?.innerBlocks?.length){const k=y.innerBlocks[y.innerBlocks.length-1];l&&l?.name===k.name&&(M=k.attributes)}}return z.forEach(y=>{M.hasOwnProperty(y)&&(v[y]=M[y])}),v}function f(){const{getBlockIndex:z,getBlockSelectionEnd:A,getBlockOrder:_,getBlockRootClientId:v}=n(Q);if(r)return z(r);const M=A();return!s&&M&&v(M)===o?z(M)+1:_(o).length}const{insertBlock:b}=e(Q);let h;if(l){const z=p(l.attributesToCopy);h=Ee(l.name,{...l.attributes||{},...z})}else h=Ee(c.name);b(h,f(),o,d),u&&u({clientId:h?.clientId});const g=xe(m("%s block added"),c.title);Yt(g)}})),eSe(({hasItems:e,isAppender:t,rootClientId:n,clientId:o})=>e||!t&&!n&&!o)])(_6t),k6t="\uFEFF";function wge({rootClientId:e}){const{showPrompt:t,isLocked:n,placeholder:o,isManualGrid:r}=G(u=>{const{getBlockCount:d,getSettings:p,getTemplateLock:f,getBlockAttributes:b}=u(Q),h=!d(e),{bodyPlaceholder:g}=p();return{showPrompt:h,isLocked:!!f(e),placeholder:g,isManualGrid:b(e)?.layout?.isManualPlacement}},[e]),{insertDefaultBlock:s,startTyping:i}=Oe(Q);if(n||r)return null;const c=Lt(o)||m("Type / to choose a block"),l=()=>{s(void 0,e),i()};return a.jsxs("div",{"data-root-client-id":e||"",className:oe("block-editor-default-block-appender",{"has-visible-prompt":t}),children:[a.jsx("p",{tabIndex:"0",role:"button","aria-label":m("Add default block"),className:"block-editor-default-block-appender__content",onKeyDown:u=>{(Gr===u.keyCode||VN===u.keyCode)&&l()},onClick:()=>l(),onFocus:()=>{t&&l()},children:t?c:k6t}),a.jsx(xm,{rootClientId:e,position:"bottom right",isAppender:!0,__experimentalIsQuick:!0})]})}function _ge({rootClientId:e,className:t,onFocus:n,tabIndex:o,onSelect:r},s){return a.jsx(xm,{position:"bottom center",rootClientId:e,__experimentalIsQuick:!0,onSelectOrClose:(...i)=>{r&&typeof r=="function"&&r(...i)},renderToggle:({onToggle:i,disabled:c,isOpen:l,blockTitle:u,hasSingleBlockType:d})=>{const p=!d,f=d?xe(We("Add %s","directly add the only allowed block"),u):We("Add block","Generic label for block inserter button");return a.jsx(Ce,{__next40pxDefaultSize:!0,ref:s,onFocus:n,tabIndex:o,className:oe(t,"block-editor-button-block-appender"),onClick:i,"aria-haspopup":p?"true":void 0,"aria-expanded":p?l:void 0,disabled:c,label:f,showTooltip:!0,children:a.jsx(wn,{icon:Fs})})},isAppender:!0})}x.forwardRef((e,t)=>(Ke("wp.blockEditor.ButtonBlockerAppender",{alternative:"wp.blockEditor.ButtonBlockAppender",since:"5.9"}),_ge(e,t)));const j_=x.forwardRef(_ge);function S6t({rootClientId:e}){return G(n=>n(Q).canInsertBlockType(Mr(),e))?a.jsx(wge,{rootClientId:e}):a.jsx(j_,{rootClientId:e,className:"block-list-appender__toggle"})}function C6t({rootClientId:e,CustomAppender:t,className:n,tagName:o="div"}){const r=G(s=>{const{getBlockInsertionPoint:i,isBlockInsertionPointVisible:c,getBlockCount:l}=s(Q),u=i();return c()&&e===u?.rootClientId&&l(e)===0},[e]);return a.jsx(o,{tabIndex:-1,className:oe("block-list-appender wp-block",n,{"is-drag-over":r}),contentEditable:!1,"data-block":!0,children:t?a.jsx(t,{}):a.jsx(S6t,{rootClientId:e})})}function Xx(e){return Mn(t=>{if(!e)return;function n(r){const{deltaX:s,deltaY:i}=r;e.current.scrollBy(s,i)}const o={passive:!0};return t.addEventListener("wheel",n,o),()=>{t.removeEventListener("wheel",n,o)}},[e])}const q6t=Number.MAX_SAFE_INTEGER;x.createContext();function kge({previousClientId:e,nextClientId:t,children:n,__unstablePopoverSlot:o,__unstableContentRef:r,operation:s="insert",nearestSide:i="right",...c}){const[l,u]=x.useReducer(_=>(_+1)%q6t,0),{orientation:d,rootClientId:p,isVisible:f}=G(_=>{const{getBlockListSettings:v,getBlockRootClientId:M,isBlockVisible:y}=_(Q),k=M(e??t);return{orientation:v(k)?.orientation||"vertical",rootClientId:k,isVisible:y(e)&&y(t)}},[e,t]),b=Wi(e),h=Wi(t),g=d==="vertical",z=x.useMemo(()=>l<0||!b&&!h||!f?void 0:{contextElement:s==="group"?h||b:b||h,getBoundingClientRect(){const v=b?b.getBoundingClientRect():null,M=h?h.getBoundingClientRect():null;let y=0,k=0,S=0,C=0;if(s==="group"){const R=M||v;k=R.top,S=0,C=R.bottom-R.top,y=i==="left"?R.left-2:R.right-2}else g?(k=v?v.bottom:M.top,S=v?v.width:M.width,C=M&&v?M.top-v.bottom:0,y=v?v.left:M.left):(k=v?v.top:M.top,C=v?v.height:M.height,jt()?(y=M?M.right:v.left,S=v&&M?v.left-M.right:0):(y=v?v.right:M.left,S=v&&M?M.left-v.right:0),S=Math.max(S,0));return new window.DOMRect(y,k,S,C)}},[b,h,l,g,f,s,i]),A=Xx(r);return x.useLayoutEffect(()=>{if(!b)return;const _=new window.MutationObserver(u);return _.observe(b,{attributes:!0}),()=>{_.disconnect()}},[b]),x.useLayoutEffect(()=>{if(!h)return;const _=new window.MutationObserver(u);return _.observe(h,{attributes:!0}),()=>{_.disconnect()}},[h]),x.useLayoutEffect(()=>{if(b)return b.ownerDocument.defaultView.addEventListener("resize",u),()=>{b.ownerDocument.defaultView?.removeEventListener("resize",u)}},[b]),!b&&!h||!f?null:a.jsx(Io,{ref:A,animate:!1,anchor:z,focusOnMount:!1,__unstableSlotName:o,inline:!o,...c,className:oe("block-editor-block-popover","block-editor-block-popover__inbetween",c.className),resize:!1,flip:!1,placement:"overlay",variant:"unstyled",children:a.jsx("div",{className:"block-editor-block-popover__inbetween-container",children:n})},t+"--"+p)}const R6t=Number.MAX_SAFE_INTEGER;function T6t({clientId:e,bottomClientId:t,children:n,__unstablePopoverSlot:o,__unstableContentRef:r,shift:s=!0,...i},c){const l=Wi(e),u=Wi(t??e),d=xn([c,Xx(r)]),[p,f]=x.useReducer(h=>(h+1)%R6t,0);x.useLayoutEffect(()=>{if(!l)return;const h=new window.MutationObserver(f);return h.observe(l,{attributes:!0}),()=>{h.disconnect()}},[l]);const b=x.useMemo(()=>{if(!(p<0||!l||t&&!u))return{getBoundingClientRect(){return u?bme(g4(l),g4(u)):g4(l)},contextElement:l}},[p,l,t,u]);return!l||t&&!u?null:a.jsx(Io,{ref:d,animate:!1,focusOnMount:!1,anchor:b,__unstableSlotName:o,inline:!o,placement:"top-start",resize:!1,flip:!1,shift:s,...i,className:oe("block-editor-block-popover",i.className),variant:"unstyled",children:n})}const K7=x.forwardRef(T6t),E6t=({clientId:e,bottomClientId:t,children:n,...o},r)=>a.jsx(K7,{...o,bottomClientId:t,clientId:e,__unstableContentRef:void 0,__unstablePopoverSlot:void 0,ref:r,children:n}),W6t=x.forwardRef(E6t);function N6t({clientId:e,bottomClientId:t,children:n,shift:o=!1,additionalStyles:r,...s},i){var c;(c=t)!==null&&c!==void 0||(t=e);const l=Wi(e);return a.jsx(K7,{ref:i,clientId:e,bottomClientId:t,shift:o,...s,children:l&&e===t?a.jsx(B6t,{selectedElement:l,additionalStyles:r,children:n}):n})}function B6t({selectedElement:e,additionalStyles:t={},children:n}){const[o,r]=x.useState(e.offsetWidth),[s,i]=x.useState(e.offsetHeight);x.useEffect(()=>{const l=new window.ResizeObserver(()=>{r(e.offsetWidth),i(e.offsetHeight)});return l.observe(e,{box:"border-box"}),()=>l.disconnect()},[e]);const c=x.useMemo(()=>({position:"absolute",width:o,height:s,...t}),[o,s,t]);return a.jsx("div",{style:c,children:n})}const wm=x.forwardRef(N6t),Dg={hide:{opacity:0,scaleY:.75},show:{opacity:1,scaleY:1},exit:{opacity:0,scaleY:.9}};function L6t({__unstablePopoverSlot:e,__unstableContentRef:t}){const{clientId:n}=G(r=>{const{getBlockOrder:s,getBlockInsertionPoint:i}=r(Q),c=i(),l=s(c.rootClientId);return l.length?{clientId:l[c.index]}:{}},[]),o=$1();return a.jsx(wm,{clientId:n,__unstablePopoverSlot:e,__unstableContentRef:t,className:"block-editor-block-popover__drop-zone",children:a.jsx(Rr.div,{"data-testid":"block-popover-drop-zone",initial:o?Dg.show:Dg.hide,animate:Dg.show,exit:o?Dg.show:Dg.exit,className:"block-editor-block-popover__drop-zone-foreground"})})}const Y7=x.createContext();function P6t({__unstablePopoverSlot:e,__unstableContentRef:t,operation:n="insert",nearestSide:o="right"}){const{selectBlock:r,hideInsertionPoint:s}=Oe(Q),i=x.useContext(Y7),c=x.useRef(),{orientation:l,previousClientId:u,nextClientId:d,rootClientId:p,isInserterShown:f,isDistractionFree:b,isZoomOutMode:h}=G(C=>{const{getBlockOrder:R,getBlockListSettings:T,getBlockInsertionPoint:E,isBlockBeingDragged:B,getPreviousBlockClientId:N,getNextBlockClientId:j,getSettings:I,isZoomOut:P}=ct(C(Q)),$=E(),F=R($.rootClientId);if(!F.length)return{};let X=F[$.index-1],Z=F[$.index];for(;B(X);)X=N(X);for(;B(Z);)Z=j(Z);const V=I();return{previousClientId:X,nextClientId:Z,orientation:T($.rootClientId)?.orientation||"vertical",rootClientId:$.rootClientId,isDistractionFree:V.isDistractionFree,isInserterShown:$?.__unstableWithInserter,isZoomOutMode:P()}},[]),{getBlockEditingMode:g}=G(Q),z=$1();function A(C){C.target===c.current&&d&&g(d)!=="disabled"&&r(d,-1)}function _(C){C.target===c.current&&!i.current&&s()}function v(C){C.target!==c.current&&(i.current=!0)}const M={start:{opacity:0,scale:0},rest:{opacity:1,scale:1,transition:{delay:f?.5:0,type:"tween"}},hover:{opacity:1,scale:1,transition:{delay:.5,type:"tween"}}},y={start:{scale:z?1:0},rest:{scale:1,transition:{delay:.4,type:"tween"}}};if(b||h&&n!=="insert")return null;const S=oe("block-editor-block-list__insertion-point",l==="horizontal"||n==="group"?"is-horizontal":"is-vertical");return a.jsx(kge,{previousClientId:u,nextClientId:d,__unstablePopoverSlot:e,__unstableContentRef:t,operation:n,nearestSide:o,children:a.jsxs(Rr.div,{layout:!z,initial:z?"rest":"start",animate:"rest",whileHover:"hover",whileTap:"pressed",exit:"start",ref:c,tabIndex:-1,onClick:A,onFocus:v,className:oe(S,{"is-with-inserter":f}),onHoverEnd:_,children:[a.jsx(Rr.div,{variants:M,className:"block-editor-block-list__insertion-point-indicator","data-testid":"block-list-insertion-point-indicator"}),f&&a.jsx(Rr.div,{variants:y,className:oe("block-editor-block-list__insertion-point-inserter"),children:a.jsx(xm,{position:"bottom center",clientId:d,rootClientId:p,__experimentalIsQuick:!0,onToggle:C=>{i.current=C},onSelectOrClose:()=>{i.current=!1}})})]})})}function j6t(e){const{insertionPoint:t,isVisible:n,isBlockListEmpty:o}=G(r=>{const{getBlockInsertionPoint:s,isBlockInsertionPointVisible:i,getBlockCount:c}=r(Q),l=s();return{insertionPoint:l,isVisible:i(),isBlockListEmpty:c(l?.rootClientId)===0}},[]);return!n||o?null:t.operation==="replace"?a.jsx(L6t,{...e},`${t.rootClientId}-${t.index}`):a.jsx(P6t,{operation:t.operation,nearestSide:t.nearestSide,...e})}function I6t(){const e=x.useContext(Y7),t=G(g=>g(Q).getSettings().isDistractionFree||ct(g(Q)).isZoomOut(),[]),{getBlockListSettings:n,getBlockIndex:o,isMultiSelecting:r,getSelectedBlockClientIds:s,getSettings:i,getTemplateLock:c,__unstableIsWithinBlockOverlay:l,getBlockEditingMode:u,getBlockName:d,getBlockAttributes:p,getParentSectionBlock:f}=ct(G(Q)),{showInsertionPoint:b,hideInsertionPoint:h}=Oe(Q);return Mn(g=>{if(t)return;function z(A){if(e===void 0||e.current||A.target.nodeType===A.target.TEXT_NODE||r())return;if(!A.target.classList.contains("block-editor-block-list__layout")){h();return}let _;if(A.target.classList.contains("is-root-container")||(_=(A.target.getAttribute("data-block")?A.target:A.target.closest("[data-block]")).getAttribute("data-block")),c(_)||u(_)==="disabled"||d(_)==="core/block"||_&&p(_).layout?.isManualPlacement)return;const v=n(_),M=v?.orientation||"vertical",y=!!v?.__experimentalCaptureToolbars,k=A.clientY,S=A.clientX;let R=Array.from(A.target.children).find(N=>{const j=N.getBoundingClientRect();return N.classList.contains("wp-block")&&M==="vertical"&&j.top>k||N.classList.contains("wp-block")&&M==="horizontal"&&(jt()?j.right<S:j.left>S)});if(!R){h();return}if(!R.id&&(R=R.firstElementChild,!R)){h();return}const T=R.id.slice(6);if(!T||l(T)||f(T)||s().includes(T)&&M==="vertical"&&!y&&!i().hasFixedToolbar)return;const E=R.getBoundingClientRect();if(M==="horizontal"&&(A.clientY>E.bottom||A.clientY<E.top)||M==="vertical"&&(A.clientX>E.right||A.clientX<E.left)){h();return}const B=o(T);if(B===0){h();return}b(_,B,{__unstableWithInserter:!0})}return g.addEventListener("mousemove",z),()=>{g.removeEventListener("mousemove",z)}},[e,n,o,r,b,h,s,t])}function D6t({showSeparator:e,isFloating:t,onAddBlock:n,isToggle:o}){const{clientId:r}=j0();return a.jsx(j_,{className:oe({"block-list-appender__toggle":o}),rootClientId:r,showSeparator:e,isFloating:t,onAddBlock:n})}function F6t(){const{clientId:e}=j0();return a.jsx(wge,{rootClientId:e})}const Fg=new WeakMap;function $6t(){let e;return t=>((e===void 0||!ds(e,t))&&(e=t),e)}function vee(e){const[t]=x.useState($6t);return t(e)}function V6t(e,t,n,o,r,s,i,c,l,u,d,p){const f=Fn(),b=vee(n),h=vee(o),g=l===void 0||t==="contentOnly"?t:l;x.useLayoutEffect(()=>{const z={allowedBlocks:b,prioritizedInserterBlocks:h,templateLock:g};if(u!==void 0&&(z.__experimentalCaptureToolbars=u),d!==void 0)z.orientation=d;else{const A=Rf(p?.type);z.orientation=A.getOrientation(p)}i!==void 0&&(Ke("__experimentalDefaultBlock",{alternative:"defaultBlock",since:"6.3",version:"6.4"}),z.defaultBlock=i),r!==void 0&&(z.defaultBlock=r),c!==void 0&&(Ke("__experimentalDirectInsert",{alternative:"directInsert",since:"6.3",version:"6.4"}),z.directInsert=c),s!==void 0&&(z.directInsert=s),z.directInsert!==void 0&&typeof z.directInsert!="boolean"&&Ke("Using `Function` as a `directInsert` argument",{alternative:"`boolean` values",since:"6.5"}),Fg.get(f)||Fg.set(f,{}),Fg.get(f)[e]=z,window.queueMicrotask(()=>{const A=Fg.get(f);if(Object.keys(A).length){const{updateBlockListSettings:_}=f.dispatch(Q);_(A),Fg.set(f,{})}})},[e,b,h,g,r,s,i,c,u,d,p,f])}function H6t(e,t,n,o){const r=Fn(),s=x.useRef(null);x.useLayoutEffect(()=>{let i=!1;const{getBlocks:c,getSelectedBlocksInitialCaretPosition:l,isBlockSelected:u}=r.select(Q),{replaceInnerBlocks:d,__unstableMarkNextChangeAsNotPersistent:p}=r.dispatch(Q);return window.queueMicrotask(()=>{if(i)return;const f=c(e),b=f.length===0||n==="all"||n==="contentOnly",h=!N0(t,s.current);if(!b||!h)return;s.current=t;const g=oz(f,t);N0(g,f)||(p(),d(e,g,f.length===0&&o&&g.length!==0&&u(e),l()))}),()=>{i=!0}},[t,n,e,r,o])}function U6t(e){return G(t=>{const n=t(Q).getBlock(e);if(!n)return;const o=t(kt).getBlockType(n.name);if(o&&Object.keys(o.providesContext).length!==0)return Object.fromEntries(Object.entries(o.providesContext).map(([r,s])=>[r,n.attributes[s]]))},[e])}function Sge(e){let t={srcRootClientId:null,srcClientIds:null,srcIndex:null,type:null,blocks:null};if(!e.dataTransfer)return t;try{t=Object.assign(t,JSON.parse(e.dataTransfer.getData("wp-blocks")))}catch{return t}return t}function X6t(e,t,n,o,r,s,i,c,l){return u=>{const{srcRootClientId:d,srcClientIds:p,type:f,blocks:b}=Sge(u);if(f==="inserter"){i();const h=b.map(g=>jo(g));s(h,!0,null)}if(f==="block"){const h=n(p[0]);if(d===e&&h===t||p.includes(e)||o(p).some(_=>_===e))return;if(c==="group"){const _=p.map(v=>l(v));s(_,!0,null,p);return}const g=d===e,z=p.length,A=g&&h<t?t-z:t;r(p,d,A)}}}function G6t(e,t,n,o,r){return s=>{if(!t().mediaUpload)return;const i=xc(Ei("from"),c=>c.type==="files"&&o(c.blockName,e)&&c.isMatch(s));if(i){const c=i.transform(s,n);r(c)}}}function K6t(e){return t=>{const n=Xh({HTML:t,mode:"BLOCKS"});n.length&&e(n)}}function Cge(e,t,n={}){const{operation:o="insert",nearestSide:r="right"}=n,{canInsertBlockType:s,getBlockIndex:i,getClientIdsOfDescendants:c,getBlockOrder:l,getBlocksByClientId:u,getSettings:d,getBlock:p}=G(Q),{getGroupingBlockName:f}=G(kt),{insertBlocks:b,moveBlocksToPosition:h,updateBlockAttributes:g,clearSelectedBlock:z,replaceBlocks:A,removeBlocks:_}=Oe(Q),v=Fn(),M=x.useCallback((R,T=!0,E=0,B=[])=>{Array.isArray(R)||(R=[R]);const j=l(e)[t];if(o==="replace")A(j,R,void 0,E);else if(o==="group"){const I=p(j);r==="left"?R.push(I):R.unshift(I);const P=R.map(Z=>Ee(Z.name,Z.attributes,Z.innerBlocks)),$=R.every(Z=>Z.name==="core/image"),F=s("core/gallery",e),X=Ee($&&F?"core/gallery":f(),{layout:{type:"flex",flexWrap:$&&F?null:"nowrap"}},P);A([j,...B],X,void 0,E)}else b(R,t,e,T,E)},[l,e,t,o,A,p,r,s,f,b]),y=x.useCallback((R,T,E)=>{if(o==="replace"){const B=u(R),j=l(e)[t];v.batch(()=>{_(R,!1),A(j,B,void 0,0)})}else h(R,T,e,E)},[o,l,u,h,v,_,A,t,e]),k=X6t(e,t,i,c,y,M,z,o,p),S=G6t(e,d,g,s,M),C=K6t(M);return R=>{const T=E4(R.dataTransfer),E=R.dataTransfer.getData("text/html");E?C(E):T.length?S(T):k(R)}}function Y6t(e,t,n){const o=n==="top"||n==="bottom",{x:r,y:s}=e,i=o?r:s,c=o?s:r,l=o?t.left:t.top,u=o?t.right:t.bottom,d=t[n];let p;return i>=l&&i<=u?p=i:i<u?p=l:p=u,Math.sqrt((i-p)**2+(c-d)**2)}function pM(e,t,n=["top","bottom","left","right"]){let o,r;return n.forEach(s=>{const i=Y6t(e,t,s);(o===void 0||i<o)&&(o=i,r=s)}),[o,r]}function qge(e,t){return t.left<=e.x&&t.right>=e.x&&t.top<=e.y&&t.bottom>=e.y}function Z6t(e,t){return t.top<=e.y&&t.bottom>=e.y}const UR=30,Q6t=120,J6t=120;function eSt(e,t,n="vertical",o={}){const r=n==="horizontal"?["left","right"]:["top","bottom"];let s=0,i="before",c=1/0,l=null,u="right";const{dropZoneElement:d,parentBlockOrientation:p,rootBlockIndex:f=0}=o;if(d&&p!=="horizontal"){const A=d.getBoundingClientRect(),[_,v]=pM(t,A,["top","bottom"]);if(A.height>Q6t&&_<UR){if(v==="top")return[f,"before"];if(v==="bottom")return[f+1,"after"]}}const b=jt();if(d&&p==="horizontal"){const A=d.getBoundingClientRect(),[_,v]=pM(t,A,["left","right"]);if(A.width>J6t&&_<UR){if(b&&v==="right"||!b&&v==="left")return[f,"before"];if(b&&v==="left"||!b&&v==="right")return[f+1,"after"]}}e.forEach(({isUnmodifiedDefaultBlock:A,getBoundingClientRect:_,blockIndex:v,blockOrientation:M})=>{const y=_();let[k,S]=pM(t,y,r);const[C,R]=pM(t,y,["left","right"]),T=qge(t,y);A&&T?k=0:n==="vertical"&&M!=="horizontal"&&(T&&C<UR||!T&&Z6t(t,y))&&(l=v,u=R),k<c&&(i=S==="bottom"||!b&&S==="right"||b&&S==="left"?"after":"before",c=k,s=v)});const h=s+(i==="after"?1:-1),g=!!e[s]?.isUnmodifiedDefaultBlock,z=!!e[h]?.isUnmodifiedDefaultBlock;return l!==null?[l,"group",u]:!g&&!z?[i==="after"?s+1:s,"insert"]:[g?s:h,"replace"]}function DW(e,t,n,o){let r=!0;if(t){const c=t?.map(({name:l})=>l);r=n.every(l=>c?.includes(l))}const i=n.map(c=>e(c)).every(c=>{const[l]=c?.parent||[];return l?l===o:!0});return r&&i}function xee(e,t){const{defaultView:n}=t;return!!(n&&e instanceof n.HTMLElement&&e.closest("[data-is-insertion-point]"))}function tSt({dropZoneElement:e,rootClientId:t="",parentClientId:n="",isDisabled:o=!1}={}){const r=Fn(),[s,i]=x.useState({index:null,operation:"insert"}),{getBlockType:c,getBlockVariations:l,getGroupingBlockName:u}=G(kt),{canInsertBlockType:d,getBlockListSettings:p,getBlocks:f,getBlockIndex:b,getDraggedBlockClientIds:h,getBlockNamesByClientId:g,getAllowedBlocks:z,isDragging:A,isGroupable:_,isZoomOut:v,getSectionRootClientId:M,getBlockParents:y}=ct(G(Q)),{showInsertionPoint:k,hideInsertionPoint:S,startDragging:C,stopDragging:R}=ct(Oe(Q)),T=Cge(s.operation==="before"||s.operation==="after"?n:t,s.index,{operation:s.operation,nearestSide:s.nearestSide}),E=kE(x.useCallback((B,N)=>{A()||C();const j=h(),I=[t,...y(t,!0)];if(j.some(Ae=>I.includes(Ae)))return;const $=z(t),F=g([t])[0],X=g(j);if(!DW(c,$,X,F))return;const V=M();if(v()&&V!==t)return;const ee=f(t);if(ee.length===0){r.batch(()=>{i({index:0,operation:"insert"}),k(t,0,{operation:"insert"})});return}const te=ee.map(Ae=>{const ye=Ae.clientId;return{isUnmodifiedDefaultBlock:Wl(Ae),getBoundingClientRect:()=>N.getElementById(`block-${ye}`).getBoundingClientRect(),blockIndex:b(ye),blockOrientation:p(ye)?.orientation}}),J=eSt(te,{x:B.clientX,y:B.clientY},p(t)?.orientation,{dropZoneElement:e,parentBlockClientId:n,parentBlockOrientation:n?p(n)?.orientation:void 0,rootBlockIndex:b(t)}),[ue,ce,me]=J,de=te[ue]?.isUnmodifiedDefaultBlock;if(!(v()&&!de&&ce!=="insert")){if(ce==="group"){const Ae=ee[ue],ye=[Ae.name,...X].every(re=>re==="core/image"),Ne=d("core/gallery",t),je=_([Ae.clientId,h()]),ie=l(u(),"block"),we=ie&&ie.find(({name:re})=>re==="group-row");if(ye&&!Ne&&(!je||!we)||!ye&&(!je||!we))return}r.batch(()=>{i({index:ue,operation:ce,nearestSide:me});const Ae=["before","after"].includes(ce)?n:t;k(Ae,ue,{operation:ce,nearestSide:me})})}},[A,z,t,g,h,c,M,v,f,p,e,n,b,r,C,k,d,_,l,u]),200);return W5({dropZoneElement:e,isDisabled:o,onDrop:T,onDragOver(B){E(B,B.currentTarget.ownerDocument)},onDragLeave(B){const{ownerDocument:N}=B.currentTarget;xee(B.relatedTarget,N)||xee(B.target,N)||(E.cancel(),S())},onDragEnd(){E.cancel(),R(),S()}})}const nSt={};function oSt({children:e,clientId:t}){const n=U6t(t);return a.jsx(uO,{value:n,children:e})}const rSt=x.memo(Z7);function Rge(e){const{clientId:t,allowedBlocks:n,prioritizedInserterBlocks:o,defaultBlock:r,directInsert:s,__experimentalDefaultBlock:i,__experimentalDirectInsert:c,template:l,templateLock:u,wrapperRef:d,templateInsertUpdatesSelection:p,__experimentalCaptureToolbars:f,__experimentalAppenderTagName:b,renderAppender:h,orientation:g,placeholder:z,layout:A,name:_,blockType:v,parentLock:M,defaultLayout:y}=e;V6t(t,M,n,o,r,s,i,c,u,f,g,A),H6t(t,l,u,p);const k=An(_,"layout")||An(_,"__experimentalLayout")||nSt,{allowSizingOnChildren:S=!1}=k,C=A||k,R=x.useMemo(()=>({...y,...C,...S&&{allowSizingOnChildren:!0}}),[y,C,S]),T=a.jsx(rSt,{rootClientId:t,renderAppender:h,__experimentalAppenderTagName:b,layout:R,wrapperRef:d,placeholder:z});return!v?.providesContext||Object.keys(v.providesContext).length===0?T:a.jsx(oSt,{clientId:t,children:T})}function sSt(e){return xme(e),a.jsx(Rge,{...e})}const Ht=x.forwardRef((e,t)=>{const n=Nt({ref:t},e);return a.jsx("div",{className:"block-editor-inner-blocks",children:a.jsx("div",{...n})})});function Nt(e={},t={}){const{__unstableDisableLayoutClassNames:n,__unstableDisableDropZone:o,dropZoneElement:r}=t,{clientId:s,layout:i=null,__unstableLayoutClassNames:c=""}=j0(),l=G(M=>{const{getBlockName:y,isZoomOut:k,getTemplateLock:S,getBlockRootClientId:C,getBlockEditingMode:R,getBlockSettings:T,getSectionRootClientId:E}=ct(M(Q));if(!s){const X=E();return{isDropZoneDisabled:k()&&X!==""}}const{hasBlockSupport:B,getBlockType:N}=M(kt),j=y(s),I=R(s),P=C(s),[$]=T(s,"layout");let F=I==="disabled";if(k()){const X=E();F=s!==X}return{__experimentalCaptureToolbars:B(j,"__experimentalExposeControlsToChildren",!1),name:j,blockType:N(j),parentLock:S(P),parentClientId:P,isDropZoneDisabled:F,defaultLayout:$}},[s]),{__experimentalCaptureToolbars:u,name:d,blockType:p,parentLock:f,parentClientId:b,isDropZoneDisabled:h,defaultLayout:g}=l,z=tSt({dropZoneElement:r,rootClientId:s,parentClientId:b}),A=xn([e.ref,o||h||i?.isManualPlacement&&window.__experimentalEnableGridInteractivity?null:z]),_={__experimentalCaptureToolbars:u,layout:i,name:d,blockType:p,parentLock:f,defaultLayout:g,...t},v=_.value&&_.onChange?sSt:Rge;return{...e,ref:A,className:oe(e.className,"block-editor-block-list__layout",n?"":c),children:s?a.jsx(v,{..._,clientId:s}):a.jsx(Z7,{...t})}}Nt.save=NPe;Ht.DefaultBlockAppender=F6t;Ht.ButtonBlockAppender=D6t;Ht.Content=()=>Nt.save().children;const iSt=new Set([cc,_i,Ps,wi,Gr,Mc]);function aSt(e){const{keyCode:t,shiftKey:n}=e;return!n&&iSt.has(t)}function Tge(){const e=G(n=>n(Q).isTyping(),[]),{stopTyping:t}=Oe(Q);return Mn(n=>{if(!e)return;const{ownerDocument:o}=n;let r,s;function i(c){const{clientX:l,clientY:u}=c;r&&s&&(r!==l||s!==u)&&t(),r=l,s=u}return o.addEventListener("mousemove",i),()=>{o.removeEventListener("mousemove",i)}},[e,t])}function Ege(){const{isTyping:e}=G(s=>{const{isTyping:i}=s(Q);return{isTyping:i()}},[]),{startTyping:t,stopTyping:n}=Oe(Q),o=Tge(),r=Mn(s=>{const{ownerDocument:i}=s,{defaultView:c}=i,l=c.getSelection();if(e){let h=function(A){const{target:_}=A;b=c.setTimeout(()=>{md(_)||n()})},g=function(A){const{keyCode:_}=A;(_===gd||_===Z2)&&n()},z=function(){l.isCollapsed||n()};var d=h,p=g,f=z;let b;return s.addEventListener("focus",h),s.addEventListener("keydown",g),i.addEventListener("selectionchange",z),()=>{c.clearTimeout(b),s.removeEventListener("focus",h),s.removeEventListener("keydown",g),i.removeEventListener("selectionchange",z)}}function u(b){const{type:h,target:g}=b;!md(g)||!s.contains(g)||h==="keydown"&&!aSt(b)||t()}return s.addEventListener("keypress",u),s.addEventListener("keydown",u),()=>{s.removeEventListener("keypress",u),s.removeEventListener("keydown",u)}},[e,t,n]);return xn([o,r])}function wee({clientId:e,rootClientId:t="",position:n="top"}){const[o,r]=x.useState(!1),{sectionRootClientId:s,sectionClientIds:i,insertionPoint:c,blockInsertionPointVisible:l,blockInsertionPoint:u,blocksBeingDragged:d}=G(y=>{const{getInsertionPoint:k,getBlockOrder:S,getSectionRootClientId:C,isBlockInsertionPointVisible:R,getBlockInsertionPoint:T,getDraggedBlockClientIds:E}=ct(y(Q)),B=C(),N=S(B);return{sectionRootClientId:B,sectionClientIds:N,blockOrder:S(B),insertionPoint:k(),blockInsertionPoint:T(),blockInsertionPointVisible:R(),blocksBeingDragged:E()}},[]),p=$1();if(!e)return;let f=!1;if(!(t===s&&i&&i.includes(e)))return null;const h=c?.index===0&&e===i[c.index],g=c&&c.hasOwnProperty("index")&&e===i[c.index-1];n==="top"&&(f=h||l&&u.index===0&&e===i[u.index]),n==="bottom"&&(f=g||l&&e===i[u.index-1]);const z=d[0],A=d.includes(e),_=i.indexOf(z),M=(_>0?i[_-1]:null)===e;return(A||M)&&(f=!1),a.jsx(Wd,{children:f&&a.jsx(Rr.div,{initial:{height:0},animate:{height:"calc(1 * var(--wp-block-editor-iframe-zoom-out-frame-size) / var(--wp-block-editor-iframe-zoom-out-scale)"},exit:{height:0},transition:{type:"tween",duration:p?0:.2,ease:[.6,0,.4,1]},className:oe("block-editor-block-list__zoom-out-separator",{"is-dragged-over":o}),"data-is-insertion-point":"true",onDragOver:()=>r(!0),onDragLeave:()=>r(!1),children:a.jsx(Rr.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0,transition:{delay:-.125}},transition:{ease:"linear",duration:.1,delay:.125},children:m("Drop pattern.")})})})}const Wge=x.createContext(),lv=new WeakMap;function cSt({className:e,...t}){const{isOutlineMode:n,isFocusMode:o,temporarilyEditingAsBlocks:r}=G(d=>{const{getSettings:p,getTemporarilyEditingAsBlocks:f,isTyping:b}=ct(d(Q)),{outlineMode:h,focusMode:g}=p();return{isOutlineMode:h&&!b(),isFocusMode:g,temporarilyEditingAsBlocks:f()}},[]),s=Fn(),{setBlockVisibility:i}=Oe(Q),c=C1(x.useCallback(()=>{const d={};lv.get(s).forEach(([p,f])=>{d[p]=f}),i(d)},[s]),300,{trailing:!0}),l=x.useMemo(()=>{const{IntersectionObserver:d}=window;if(d)return new d(p=>{lv.get(s)||lv.set(s,[]);for(const f of p){const b=f.target.getAttribute("data-block");lv.get(s).push([b,f.isIntersecting])}c()})},[]),u=Nt({ref:xn([E7(),I6t(),Ege()]),className:oe("is-root-container",e,{"is-outline-mode":n,"is-focus-mode":o})},t);return a.jsxs(Wge.Provider,{value:l,children:[a.jsx("div",{...u}),!!r&&a.jsx(lSt,{clientId:r})]})}function lSt({clientId:e}){const{stopEditingAsBlocks:t}=ct(Oe(Q)),n=G(o=>{const{isBlockSelected:r,hasSelectedInnerBlock:s}=o(Q);return r(e)||s(e,!0)},[e]);return x.useEffect(()=>{n||t(e)},[n,e,t]),null}function I_(e){return a.jsx(lae,{value:aae,children:a.jsx(cSt,{...e})})}const uSt=[],dSt=new Set;function pSt({placeholder:e,rootClientId:t,renderAppender:n,__experimentalAppenderTagName:o,layout:r=Ehe}){const s=n!==!1,i=!!n,{order:c,isZoomOut:l,selectedBlocks:u,visibleBlocks:d,shouldRenderAppender:p}=G(f=>{const{getSettings:b,getBlockOrder:h,getSelectedBlockClientId:g,getSelectedBlockClientIds:z,__unstableGetVisibleBlocks:A,getTemplateLock:_,getBlockEditingMode:v,isSectionBlock:M,isZoomOut:y}=ct(f(Q)),k=h(t);if(b().isPreviewMode)return{order:k,selectedBlocks:uSt,visibleBlocks:dSt};const S=g();return{order:k,selectedBlocks:z(),visibleBlocks:A(),isZoomOut:y(),shouldRenderAppender:!M(t)&&v(t)!=="disabled"&&!_(t)&&s&&!y()&&(i||t===S||!t&&!S&&!k.length)}},[t,s,i]);return a.jsxs(mvt,{value:r,children:[c.map(f=>a.jsxs(B5,{value:!d.has(f)&&!u.includes(f),children:[l&&a.jsx(wee,{clientId:f,rootClientId:t,position:"top"}),a.jsx(Txt,{rootClientId:t,clientId:f}),l&&a.jsx(wee,{clientId:f,rootClientId:t,position:"bottom"})]},f)),c.length<1&&e,p&&a.jsx(C6t,{tagName:o,rootClientId:t,CustomAppender:n})]})}function Z7(e){return a.jsx(B5,{value:!1,children:a.jsx(pSt,{...e})})}const _ee=Qn("InspectorControls"),fSt=Qn("InspectorAdvancedControls"),bSt=Qn("InspectorControlsBindings"),hSt=Qn("InspectorControlsBackground"),mSt=Qn("InspectorControlsBorder"),gSt=Qn("InspectorControlsColor"),MSt=Qn("InspectorControlsFilter"),zSt=Qn("InspectorControlsDimensions"),OSt=Qn("InspectorControlsPosition"),ySt=Qn("InspectorControlsTypography"),ASt=Qn("InspectorControlsListView"),vSt=Qn("InspectorControlsStyles"),xSt=Qn("InspectorControlsEffects"),D_={default:_ee,advanced:fSt,background:hSt,bindings:bSt,border:mSt,color:gSt,dimensions:zSt,effects:xSt,filter:MSt,list:ASt,position:OSt,settings:_ee,styles:vSt,typography:ySt};function Nge({children:e,group:t="default",__experimentalGroup:n,resetAllFilter:o}){n&&(Ke("`__experimentalGroup` property in `InspectorControlsFill`",{since:"6.2",version:"6.4",alternative:"`group`"}),t=n);const r=j0(),s=D_[t]?.Fill;return s?r[ow]?a.jsx(Jf,{document,children:a.jsx(s,{children:i=>a.jsx(_St,{fillProps:i,children:e,resetAllFilter:o})})}):null:(globalThis.SCRIPT_DEBUG===!0&&zn(`Unknown InspectorControls group "${t}" provided.`),null)}function wSt({resetAllFilter:e,children:t}){const{registerResetAllFilter:n,deregisterResetAllFilter:o}=x.useContext(Ez);return x.useEffect(()=>{if(e&&n&&o)return n(e),()=>{o(e)}},[e,n,o]),t}function _St({children:e,resetAllFilter:t,fillProps:n}){const{forwardedContext:o=[]}=n,r=a.jsx(wSt,{resetAllFilter:t,children:e});return o.reduce((s,[i,c])=>a.jsx(i,{...c,children:s}),r)}function kSt(e){if(!e)return{};if(typeof e=="object")return e;let t;switch(e){case"normal":t=We("Regular","font style");break;case"italic":t=We("Italic","font style");break;case"oblique":t=We("Oblique","font style");break;default:t=e;break}return{name:t,value:e}}function kee(e){if(!e)return{};if(typeof e=="object")return e;let t;switch(e){case"normal":case"400":t=We("Regular","font weight");break;case"bold":case"700":t=We("Bold","font weight");break;case"100":t=We("Thin","font weight");break;case"200":t=We("Extra Light","font weight");break;case"300":t=We("Light","font weight");break;case"500":t=We("Medium","font weight");break;case"600":t=We("Semi Bold","font weight");break;case"800":t=We("Extra Bold","font weight");break;case"900":t=We("Black","font weight");break;case"1000":t=We("Extra Black","font weight");break;default:t=e;break}return{name:t,value:e}}const See=[{name:We("Regular","font style"),value:"normal"},{name:We("Italic","font style"),value:"italic"}],Cee=[{name:We("Thin","font weight"),value:"100"},{name:We("Extra Light","font weight"),value:"200"},{name:We("Light","font weight"),value:"300"},{name:We("Regular","font weight"),value:"400"},{name:We("Medium","font weight"),value:"500"},{name:We("Semi Bold","font weight"),value:"600"},{name:We("Bold","font weight"),value:"700"},{name:We("Extra Bold","font weight"),value:"800"},{name:We("Black","font weight"),value:"900"},{name:We("Extra Black","font weight"),value:"1000"}];function Bge(e){let t=[],n=[];const o=[],r=!e||e?.length===0;let s=!1;return e?.forEach(i=>{if(typeof i.fontWeight=="string"&&/\s/.test(i.fontWeight.trim())){s=!0;let[u,d]=i.fontWeight.split(" ");u=parseInt(u.slice(0,1)),d==="1000"?d=10:d=parseInt(d.slice(0,1));for(let p=u;p<=d;p++){const f=`${p.toString()}00`;n.some(b=>b.value===f)||n.push(kee(f))}}const c=kee(typeof i.fontWeight=="number"?i.fontWeight.toString():i.fontWeight),l=kSt(i.fontStyle);l&&Object.keys(l).length&&(t.some(u=>u.value===l.value)||t.push(l)),c&&Object.keys(c).length&&(n.some(u=>u.value===c.value)||s||n.push(c))}),n.some(i=>i.value>="600")||n.push({name:We("Bold","font weight"),value:"700"}),t.some(i=>i.value==="italic")||t.push({name:We("Italic","font style"),value:"italic"}),r&&(t=See,n=Cee),t=t.length===0?See:t,n=n.length===0?Cee:n,t.forEach(({name:i,value:c})=>{n.forEach(({name:l,value:u})=>{const d=c==="normal"?l:xe(We("%1$s %2$s","font"),l,i);o.push({key:`${c}-${u}`,name:d,style:{fontStyle:c,fontWeight:u}})})}),{fontStyles:t,fontWeights:n,combinedStyleAndWeightOptions:o,isSystemFont:r,isVariableFont:s}}function F_(e,t){const{size:n}=e;if(!n||n==="0"||e?.fluid===!1||!FW(t?.typography)&&!FW(e))return n;let o=SSt(t);o=typeof o?.fluid=="object"?o?.fluid:{};const r=Cyt({minimumFontSize:e?.fluid?.min,maximumFontSize:e?.fluid?.max,fontSize:n,minimumFontSizeLimit:o?.minFontSize,maximumViewportWidth:o?.maxViewportWidth,minimumViewportWidth:o?.minViewportWidth});return r||n}function FW(e){const t=e?.fluid;return t===!0||t&&typeof t=="object"&&Object.keys(t).length>0}function SSt(e){const t=e?.typography,n=e?.layout,o=il(n?.wideSize)?n?.wideSize:null;return FW(t)&&o?{fluid:{maxViewportWidth:o,...t.fluid}}:{fluid:t?.fluid}}function CSt(e,t){var n;const o=e?.typography?.fontFamilies,r=["default","theme","custom"].flatMap(i=>{var c;return(c=o?.[i])!==null&&c!==void 0?c:[]}),s=(n=r.find(i=>i.fontFamily===t)?.fontFace)!==null&&n!==void 0?n:[];return{fontFamilies:r,fontFamilyFaces:s}}function qee(e,t){return t=typeof t=="number"?t.toString():t,!t||typeof t!="string"?"":!e||e.length===0?t:e?.reduce((o,{value:r})=>{const s=Math.abs(parseInt(r)-parseInt(t)),i=Math.abs(parseInt(o)-parseInt(t));return s<i?r:o},e[0]?.value)}function qSt(e,t){return typeof t!="string"||!t||!["normal","italic","oblique"].includes(t)?"":!e||e.length===0||e.find(o=>o.value===t)?t:t==="oblique"&&!e.find(o=>o.value==="oblique")?"italic":""}function RSt(e,t,n){let o=t,r=n;const{fontStyles:s,fontWeights:i,combinedStyleAndWeightOptions:c}=Bge(e),l=s?.some(({value:d})=>d===t),u=i?.some(({value:d})=>d?.toString()===n?.toString());return l||(o=t?qSt(s,t):c?.find(d=>d.style.fontWeight===qee(i,n))?.style?.fontStyle),u||(r=n?qee(i,n):c?.find(d=>d.style.fontStyle===(o||t))?.style?.fontWeight),{nearestFontStyle:o,nearestFontWeight:r}}const ul="body",Gx=":root",_m=[{path:["color","palette"],valueKey:"color",cssVarInfix:"color",classes:[{classSuffix:"color",propertyName:"color"},{classSuffix:"background-color",propertyName:"background-color"},{classSuffix:"border-color",propertyName:"border-color"}]},{path:["color","gradients"],valueKey:"gradient",cssVarInfix:"gradient",classes:[{classSuffix:"gradient-background",propertyName:"background"}]},{path:["color","duotone"],valueKey:"colors",cssVarInfix:"duotone",valueFunc:({slug:e})=>`url( '#wp-duotone-${e}' )`,classes:[]},{path:["shadow","presets"],valueKey:"shadow",cssVarInfix:"shadow",classes:[]},{path:["typography","fontSizes"],valueFunc:(e,t)=>F_(e,t),valueKey:"size",cssVarInfix:"font-size",classes:[{classSuffix:"font-size",propertyName:"font-size"}]},{path:["typography","fontFamilies"],valueKey:"fontFamily",cssVarInfix:"font-family",classes:[{classSuffix:"font-family",propertyName:"font-family"}]},{path:["spacing","spacingSizes"],valueKey:"size",cssVarInfix:"spacing",valueFunc:({size:e})=>e,classes:[]}],TSt={"color.background":"color","color.text":"color","filter.duotone":"duotone","elements.link.color.text":"color","elements.link.:hover.color.text":"color","elements.link.typography.fontFamily":"font-family","elements.link.typography.fontSize":"font-size","elements.button.color.text":"color","elements.button.color.background":"color","elements.caption.color.text":"color","elements.button.typography.fontFamily":"font-family","elements.button.typography.fontSize":"font-size","elements.heading.color":"color","elements.heading.color.background":"color","elements.heading.typography.fontFamily":"font-family","elements.heading.gradient":"gradient","elements.heading.color.gradient":"gradient","elements.h1.color":"color","elements.h1.color.background":"color","elements.h1.typography.fontFamily":"font-family","elements.h1.color.gradient":"gradient","elements.h2.color":"color","elements.h2.color.background":"color","elements.h2.typography.fontFamily":"font-family","elements.h2.color.gradient":"gradient","elements.h3.color":"color","elements.h3.color.background":"color","elements.h3.typography.fontFamily":"font-family","elements.h3.color.gradient":"gradient","elements.h4.color":"color","elements.h4.color.background":"color","elements.h4.typography.fontFamily":"font-family","elements.h4.color.gradient":"gradient","elements.h5.color":"color","elements.h5.color.background":"color","elements.h5.typography.fontFamily":"font-family","elements.h5.color.gradient":"gradient","elements.h6.color":"color","elements.h6.color.background":"color","elements.h6.typography.fontFamily":"font-family","elements.h6.color.gradient":"gradient","color.gradient":"gradient",shadow:"shadow","typography.fontSize":"font-size","typography.fontFamily":"font-family"};function dp(){return Yn("medium","<")?{}:{popoverProps:{placement:"left-start",offset:259}}}function Q7(e,t,n,o,r){const s=[fo(e,["blocks",t,...n]),fo(e,n)];for(const i of s)if(i){const c=["custom","theme","default"];for(const l of c){const u=i[l];if(u){const d=u.find(p=>p[o]===r);if(d)return o==="slug"||Q7(e,t,n,"slug",d.slug)[o]===d[o]?d:void 0}}}}function ESt(e,t,n,o){if(!o)return o;const r=TSt[n],s=_m.find(u=>u.cssVarInfix===r);if(!s)return o;const{valueKey:i,path:c}=s,l=Q7(e,t,c,i,o);return l?`var:preset|${r}|${l.slug}`:o}function WSt(e,t,n,[o,r]){const s=_m.find(c=>c.cssVarInfix===o);if(!s)return n;const i=Q7(e.settings,t,s.path,"slug",r);if(i){const{valueKey:c}=s,l=i[c];return da(e,t,l)}return n}function NSt(e,t,n,o){var r;const s=(r=fo(e.settings,["blocks",t,"custom",...o]))!==null&&r!==void 0?r:fo(e.settings,["custom",...o]);return s?da(e,t,s):n}function da(e,t,n){if(!n||typeof n!="string")if(typeof n?.ref=="string"){if(n=fo(e,n.ref),!n||n?.ref)return n}else return n;const o="var:",r="var(--wp--",s=")";let i;if(n.startsWith(o))i=n.slice(o.length).split("|");else if(n.startsWith(r)&&n.endsWith(s))i=n.slice(r.length,-s.length).split("--");else return n;const[c,...l]=i;return c==="preset"?WSt(e,t,n,l):c==="custom"?NSt(e,t,n,l):n}function Ws(e,t){if(!e||!t)return t;const n=e.split(","),o=t.split(","),r=[];return n.forEach(s=>{o.forEach(i=>{r.push(`${s.trim()} ${i.trim()}`)})}),r.join(", ")}function BSt(e,t){if(!e||!t)return;const n={};return Object.entries(t).forEach(([o,r])=>{typeof r=="string"&&(n[o]=Ws(e,r)),typeof r=="object"&&(n[o]={},Object.entries(r).forEach(([s,i])=>{n[o][s]=Ws(e,i)}))}),n}function LSt(e,t){return e.includes(",")?e.split(",").map(r=>r+t).join(","):e+t}function PSt(e,t){return typeof e!="object"||typeof t!="object"?e===t:N0(e?.styles,t?.styles)&&N0(e?.settings,t?.settings)}function jSt(e,t){const n=`.is-style-${e}`;if(!t)return n;const o=/((?::\([^)]+\))?\s*)([^\s:]+)/,r=(i,c,l)=>c+l+n;return t.split(",").map(i=>i.replace(o,r)).join(",")}function ISt(e,t){if(!e||!t||!Array.isArray(t))return e;const n=t.find(o=>o?.name===e);return n?.href?n?.href:e}function DSt(e,t){if(!e||!t)return e;if(typeof e!="string"&&e?.ref){const n=Dz(fo(t,e.ref));return n?.ref?void 0:n===void 0?e:n}return e}function $W(e,t){if(!e||!t)return e;const n=DSt(e,t);return n?.url&&(n.url=ISt(n.url,t?._links?.["wp:theme-file"])),n}function FSt({children:e,group:t,label:n}){const{updateBlockAttributes:o}=Oe(Q),{getBlockAttributes:r,getMultiSelectedBlockClientIds:s,getSelectedBlockClientId:i,hasMultiSelection:c}=G(Q),l=dp(),u=i(),d=x.useCallback((p=[])=>{const f={},b=c()?s():[u];b.forEach(h=>{const{style:g}=r(h);let z={style:g};p.forEach(A=>{z={...z,...A(z)}}),z={...z,style:Di(z.style)},f[h]=z}),o(b,f,!0)},[r,s,c,u,o]);return a.jsx(En,{className:`${t}-block-support-panel`,label:n,resetAll:d,panelId:u,hasInnerWrapper:!0,shouldRenderPlaceholderItems:!0,__experimentalFirstVisibleItemClass:"first",__experimentalLastVisibleItemClass:"last",dropdownMenuProps:l,children:e},u)}function $St({Slot:e,fillProps:t,...n}){const o=x.useContext(Ez),r=x.useMemo(()=>{var s;return{...t??{},forwardedContext:[...(s=t?.forwardedContext)!==null&&s!==void 0?s:[],[Ez.Provider,{value:o}]]}},[o,t]);return a.jsx(e,{...n,fillProps:r,bubblesVirtually:!0})}function Lge({__experimentalGroup:e,group:t="default",label:n,fillProps:o,...r}){e&&(Ke("`__experimentalGroup` property in `InspectorControlsSlot`",{since:"6.2",version:"6.4",alternative:"`group`"}),t=e);const s=D_[t],i=H0(s?.name);if(!s)return globalThis.SCRIPT_DEBUG===!0&&zn(`Unknown InspectorControls group "${t}" provided.`),null;if(!i?.length)return null;const{Slot:c}=s;return n?a.jsx(FSt,{group:t,label:n,children:a.jsx($St,{...r,fillProps:o,Slot:c})}):a.jsx(c,{...r,fillProps:o,bubblesVirtually:!0})}const et=Nge;et.Slot=Lge;const $_=e=>a.jsx(Nge,{...e,group:"advanced"});$_.Slot=e=>a.jsx(Lge,{...e,group:"advanced"});$_.slotName="InspectorAdvancedControls";function VSt(e){const t=e?.style?.position?.type;return t==="sticky"?m("Sticky"):t==="fixed"?m("Fixed"):null}function Ii(e){return G(t=>{if(!e)return null;const{getBlockName:n,getBlockAttributes:o}=t(Q),{getBlockType:r,getActiveBlockVariation:s}=t(kt),i=n(e),c=r(i);if(!c)return null;const l=o(e),u=s(i,l),d=Qd(c)||Hh(c),f=(d?lie(c,l):void 0)||c.title,b=VSt(l),h={isSynced:d,title:f,icon:c.icon,description:c.description,anchor:l?.anchor,positionLabel:b,positionType:l?.style?.position?.type,name:l?.metadata?.name};return u?{isSynced:d,title:u.title||c.title,icon:u.icon||c.icon,description:u.description||c.description,anchor:l?.anchor,positionLabel:b,positionType:l?.style?.position?.type,name:l?.metadata?.name}:h},[e])}const qO="position",XR={key:"default",value:"",name:m("Default")},GR={key:"sticky",value:"sticky",name:We("Sticky","Name for the value of the CSS position property"),hint:m("The block will stick to the top of the window instead of scrolling.")},Ree={key:"fixed",value:"fixed",name:We("Fixed","Name for the value of the CSS position property"),hint:m("The block will not move when the page is scrolled.")},HSt=["top","right","bottom","left"],USt=["sticky","fixed"];function XSt({selector:e,style:t}){let n="";const{type:o}=t?.position||{};return USt.includes(o)&&(n+=`${e} {`,n+=`position: ${o};`,HSt.forEach(r=>{t?.position?.[r]!==void 0&&(n+=`${r}: ${t.position[r]};`)}),(o==="sticky"||o==="fixed")&&(n+="z-index: 10"),n+="}"),n}function GSt(e){const t=An(e,qO);return!!(t===!0||t?.sticky)}function KSt(e){const t=An(e,qO);return!!(t===!0||t?.fixed)}function YSt(e){return!!An(e,qO)}function ZSt(e){const t=e?.style?.position?.type;return t==="sticky"||t==="fixed"}function Pge({name:e}={}){const[t,n]=Un("position.fixed","position.sticky"),o=!t&&!n;return!YSt(e)||o}function QSt({style:e={},clientId:t,name:n,setAttributes:o}){const r=KSt(n),s=GSt(n),i=e?.position?.type,{firstParentClientId:c}=G(b=>{const{getBlockParents:h}=b(Q),g=h(t);return{firstParentClientId:g[g.length-1]}},[t]),l=Ii(c),u=s&&i===GR.value&&l?xe(m("The block will stick to the scrollable area of the parent %s block."),l.title):null,d=x.useMemo(()=>{const b=[XR];return(s||i===GR.value)&&b.push(GR),(r||i===Ree.value)&&b.push(Ree),b},[r,s,i]),p=b=>{const g={...e,position:{...e?.position,type:b,top:b==="sticky"||b==="fixed"?"0px":void 0}};o({style:Di(g)})},f=i&&d.find(b=>b.value===i)||XR;return f0.select({web:d.length>1?a.jsx(et,{group:"position",children:a.jsx(no,{__nextHasNoMarginBottom:!0,help:u,children:a.jsx(ob,{__next40pxDefaultSize:!0,label:m("Position"),hideLabelFromVision:!0,describedBy:xe(m("Currently selected position: %s"),f.name),options:d,value:f,onChange:({selectedItem:b})=>{p(b.value)},size:"__unstable-large"})})}):null,native:null})}const jge={edit:function(t){return Pge(t)?null:a.jsx(QSt,{...t})},useBlockProps:eCt,attributeKeys:["style"],hasSupport(e){return Et(e,qO)}},JSt={};function eCt({name:e,style:t}){const n=Et(e,qO),o=Pge({name:e}),r=n&&!o,s=vt(JSt),i=`.wp-container-${s}.wp-container-${s}`;let c;r&&(c=XSt({selector:i,style:t})||"");const l=oe({[`wp-container-${s}`]:r&&!!c,[`is-position-${t?.position?.type}`]:r&&!!c&&!!t?.position?.type});return EO({css:c}),{className:l}}const Ige={placement:"top-start"},Tee={...Ige,flip:!1,shift:!0},tCt={...Ige,flip:!0,shift:!1};function Eee(e,t,n,o,r){if(!e||!t)return Tee;const s=n?.scrollTop||0,i=g4(t),c=e.getBoundingClientRect(),l=s+c.top,u=e.ownerDocument.documentElement.clientHeight,d=l+o,p=i.top>d,f=i.height>u-o;return!r&&(p||f)?Tee:tCt}function Dge({contentElement:e,clientId:t}){const n=Wi(t),[o,r]=x.useState(0),{blockIndex:s,isSticky:i}=G(f=>{const{getBlockIndex:b,getBlockAttributes:h}=f(Q);return{blockIndex:b(t),isSticky:ZSt(h(t))}},[t]),c=x.useMemo(()=>{if(e)return ps(e)},[e]),[l,u]=x.useState(()=>Eee(e,n,c,o,i)),d=Mn(f=>{r(f.offsetHeight)},[]),p=x.useCallback(()=>u(Eee(e,n,c,o,i)),[e,n,c,o]);return x.useLayoutEffect(p,[s,p]),x.useLayoutEffect(()=>{if(!e||!n)return;const f=e?.ownerDocument?.defaultView;f?.addEventHandler?.("resize",p);let b;const h=n?.ownerDocument?.defaultView;return h.ResizeObserver&&(b=new h.ResizeObserver(p),b.observe(n)),()=>{f?.removeEventHandler?.("resize",p),b&&b.disconnect()}},[p,e,n]),{...l,ref:d}}function Fge(e){return G(n=>{const{getBlockRootClientId:o,getBlockParents:r,__experimentalGetBlockListSettingsForBlocks:s,isBlockInsertionPointVisible:i,getBlockInsertionPoint:c,getBlockOrder:l,hasMultiSelection:u,getLastMultiSelectedBlockClientId:d}=n(Q),p=r(e),f=s(p),b=p.find(g=>f[g]?.__experimentalCaptureToolbars);let h=!1;if(i()){const g=c();h=l(g.rootClientId)[g.index]===e}return{capturingClientId:b,isInsertionPointVisible:h,lastClientId:u()?d():null,rootClientId:o(e)}},[e])}function nCt({clientId:e,__unstableContentRef:t}){const{capturingClientId:n,isInsertionPointVisible:o,lastClientId:r,rootClientId:s}=Fge(e),i=Dge({contentElement:t?.current,clientId:e});return a.jsx(wm,{clientId:n||e,bottomClientId:r,className:oe("block-editor-block-list__block-side-inserter-popover",{"is-insertion-point-visible":o}),__unstableContentRef:t,...i,children:a.jsx("div",{className:"block-editor-block-list__empty-block-inserter",children:a.jsx(xm,{position:"bottom right",rootClientId:s,clientId:e,__experimentalIsQuick:!0})})})}const uv=50,$ge=25,oCt=1e3,Wee=oCt*($ge/1e3);function rCt(){const e=x.useRef(null),t=x.useRef(null),n=x.useRef(null),o=x.useRef(null);x.useEffect(()=>()=>{o.current&&(clearInterval(o.current),o.current=null)},[]);const r=x.useCallback(c=>{e.current=c.clientY,n.current=ps(c.target),o.current=setInterval(()=>{if(n.current&&t.current){const l=n.current.scrollTop+t.current;n.current.scroll({top:l})}},$ge)},[]),s=x.useCallback(c=>{if(!n.current)return;const l=n.current.offsetHeight,u=e.current-n.current.offsetTop,d=c.clientY-n.current.offsetTop;if(c.clientY>u){const p=Math.max(l-u-uv,0),f=Math.max(d-u-uv,0),b=p===0||f===0?0:f/p;t.current=Wee*b}else if(c.clientY<u){const p=Math.max(u-uv,0),f=Math.max(u-d-uv,0),b=p===0||f===0?0:f/p;t.current=-Wee*b}else t.current=0},[]);return[r,s,()=>{e.current=null,n.current=null,o.current&&(clearInterval(o.current),o.current=null)}]}const Vge=({appendToOwnerDocument:e,children:t,clientIds:n,cloneClassname:o,elementId:r,onDragStart:s,onDragEnd:i,fadeWhenDisabled:c=!1,dragComponent:l})=>{const{srcRootClientId:u,isDraggable:d,icon:p,visibleInserter:f,getBlockType:b}=G(T=>{const{canMoveBlocks:E,getBlockRootClientId:B,getBlockName:N,getBlockAttributes:j,isBlockInsertionPointVisible:I}=T(Q),{getBlockType:P,getActiveBlockVariation:$}=T(kt),F=B(n[0]),X=N(n[0]),Z=$(X,j(n[0]));return{srcRootClientId:F,isDraggable:E(n),icon:Z?.icon||P(X)?.icon,visibleInserter:I(),getBlockType:P}},[n]),h=x.useRef(!1),[g,z,A]=rCt(),{getAllowedBlocks:_,getBlockNamesByClientId:v,getBlockRootClientId:M}=G(Q),{startDraggingBlocks:y,stopDraggingBlocks:k}=Oe(Q);x.useEffect(()=>()=>{h.current&&k()},[]);const C=Wi(n[0])?.closest("body");if(x.useEffect(()=>{if(!C||!c)return;const E=jN(B=>{if(!B.target.closest("[data-block]"))return;const N=v(n),j=B.target.closest("[data-block]").getAttribute("data-block"),I=_(j),P=v([j])[0];let $;if(I?.length===0){const F=M(j),X=v([F])[0],Z=_(F);$=DW(b,Z,N,X)}else $=DW(b,I,N,P);!$&&!f?window?.document?.body?.classList?.add("block-draggable-invalid-drag-token"):window?.document?.body?.classList?.remove("block-draggable-invalid-drag-token")},200);return C.addEventListener("dragover",E),()=>{C.removeEventListener("dragover",E)}},[n,C,c,_,v,M,b,f]),!d)return t({draggable:!1});const R={type:"block",srcClientIds:n,srcRootClientId:u};return a.jsx(Gbe,{appendToOwnerDocument:e,cloneClassname:o,__experimentalTransferDataType:"wp-blocks",transferData:R,onDragStart:T=>{window.requestAnimationFrame(()=>{y(n),h.current=!0,g(T),s&&s()})},onDragOver:z,onDragEnd:()=>{k(),h.current=!1,A(),i&&i()},__experimentalDragComponent:l!==void 0?l:a.jsx(q7,{count:n.length,icon:p,fadeWhenDisabled:!0}),elementId:r,children:({onDraggableStart:T,onDraggableEnd:E})=>t({draggable:!0,onDragStart:T,onDragEnd:E})})},rd=(e,t)=>e==="up"?t==="horizontal"?jt()?"right":"left":"up":e==="down"?t==="horizontal"?jt()?"left":"right":"down":null;function sCt(e,t,n,o,r,s,i){const c=n+1;if(e>1)return iCt(e,n,o,r,s,i);if(o&&r)return xe(m("Block %s is the only block, and cannot be moved"),t);if(s>0&&!r){const l=rd("down",i);if(l==="down")return xe(m("Move %1$s block from position %2$d down to position %3$d"),t,c,c+1);if(l==="left")return xe(m("Move %1$s block from position %2$d left to position %3$d"),t,c,c+1);if(l==="right")return xe(m("Move %1$s block from position %2$d right to position %3$d"),t,c,c+1)}if(s>0&&r){const l=rd("down",i);if(l==="down")return xe(m("Block %1$s is at the end of the content and can’t be moved down"),t);if(l==="left")return xe(m("Block %1$s is at the end of the content and can’t be moved left"),t);if(l==="right")return xe(m("Block %1$s is at the end of the content and can’t be moved right"),t)}if(s<0&&!o){const l=rd("up",i);if(l==="up")return xe(m("Move %1$s block from position %2$d up to position %3$d"),t,c,c-1);if(l==="left")return xe(m("Move %1$s block from position %2$d left to position %3$d"),t,c,c-1);if(l==="right")return xe(m("Move %1$s block from position %2$d right to position %3$d"),t,c,c-1)}if(s<0&&o){const l=rd("up",i);if(l==="up")return xe(m("Block %1$s is at the beginning of the content and can’t be moved up"),t);if(l==="left")return xe(m("Block %1$s is at the beginning of the content and can’t be moved left"),t);if(l==="right")return xe(m("Block %1$s is at the beginning of the content and can’t be moved right"),t)}}function iCt(e,t,n,o,r,s){const i=t+1;if(n&&o)return m("All blocks are selected, and cannot be moved");if(r>0&&!o){const c=rd("down",s);if(c==="down")return xe(m("Move %1$d blocks from position %2$d down by one place"),e,i);if(c==="left")return xe(m("Move %1$d blocks from position %2$d left by one place"),e,i);if(c==="right")return xe(m("Move %1$d blocks from position %2$d right by one place"),e,i)}if(r>0&&o){const c=rd("down",s);if(c==="down")return m("Blocks cannot be moved down as they are already at the bottom");if(c==="left")return m("Blocks cannot be moved left as they are already are at the leftmost position");if(c==="right")return m("Blocks cannot be moved right as they are already are at the rightmost position")}if(r<0&&!n){const c=rd("up",s);if(c==="up")return xe(m("Move %1$d blocks from position %2$d up by one place"),e,i);if(c==="left")return xe(m("Move %1$d blocks from position %2$d left by one place"),e,i);if(c==="right")return xe(m("Move %1$d blocks from position %2$d right by one place"),e,i)}if(r<0&&n){const c=rd("up",s);if(c==="up")return m("Blocks cannot be moved up as they are already at the top");if(c==="left")return m("Blocks cannot be moved left as they are already are at the leftmost position");if(c==="right")return m("Blocks cannot be moved right as they are already are at the rightmost position")}}const aCt=(e,t)=>e==="up"?t==="horizontal"?jt()?ga:Pl:Nw:e==="down"?t==="horizontal"?jt()?Pl:ga:nu:null,cCt=(e,t)=>e==="up"?t==="horizontal"?jt()?m("Move right"):m("Move left"):m("Move up"):e==="down"?t==="horizontal"?jt()?m("Move left"):m("Move right"):m("Move down"):null,J7=x.forwardRef(({clientIds:e,direction:t,orientation:n,...o},r)=>{const s=vt(J7),i=Array.isArray(e)?e:[e],c=i.length,{disabled:l}=o,{blockType:u,isDisabled:d,rootClientId:p,isFirst:f,isLast:b,firstIndex:h,orientation:g="vertical"}=G(y=>{const{getBlockIndex:k,getBlockRootClientId:S,getBlockOrder:C,getBlock:R,getBlockListSettings:T}=y(Q),E=i[0],B=S(E),N=k(E),j=k(i[i.length-1]),I=C(B),P=R(E),$=N===0,F=j===I.length-1,{orientation:X}=T(B)||{};return{blockType:P?on(P.name):null,isDisabled:l||(t==="up"?$:F),rootClientId:B,firstIndex:N,isFirst:$,isLast:F,orientation:n||X}},[e,t]),{moveBlocksDown:z,moveBlocksUp:A}=Oe(Q),_=t==="up"?A:z,v=y=>{_(e,p),o.onClick&&o.onClick(y)},M=`block-editor-block-mover-button__description-${s}`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,ref:r,className:oe("block-editor-block-mover-button",`is-${t}-button`),icon:aCt(t,g),label:cCt(t,g),"aria-describedby":M,...o,onClick:d?null:v,disabled:d,accessibleWhenDisabled:!0}),a.jsx(qn,{id:M,children:sCt(c,u&&u.title,h,f,b,t==="up"?-1:1,g)})]})}),Hge=x.forwardRef((e,t)=>a.jsx(J7,{direction:"up",ref:t,...e})),Uge=x.forwardRef((e,t)=>a.jsx(J7,{direction:"down",ref:t,...e}));function lCt({clientIds:e,hideDragHandle:t,isBlockMoverUpButtonDisabled:n,isBlockMoverDownButtonDisabled:o}){const{canMove:r,rootClientId:s,isFirst:i,isLast:c,orientation:l,isManualGrid:u}=G(d=>{var p;const{getBlockIndex:f,getBlockListSettings:b,canMoveBlocks:h,getBlockOrder:g,getBlockRootClientId:z,getBlockAttributes:A}=d(Q),_=Array.isArray(e)?e:[e],v=_[0],M=z(v),y=f(v),k=f(_[_.length-1]),S=g(M),{layout:C={}}=(p=A(M))!==null&&p!==void 0?p:{};return{canMove:h(e),rootClientId:M,isFirst:y===0,isLast:k===S.length-1,orientation:b(M)?.orientation,isManualGrid:C.type==="grid"&&C.isManualPlacement&&window.__experimentalEnableGridInteractivity}},[e]);return!r||i&&c&&!s||t&&u?null:a.jsxs(Wn,{className:oe("block-editor-block-mover",{"is-horizontal":l==="horizontal"}),children:[!t&&a.jsx(Vge,{clientIds:e,fadeWhenDisabled:!0,children:d=>a.jsx(Ce,{__next40pxDefaultSize:!0,icon:nde,className:"block-editor-block-mover__drag-handle",label:m("Drag"),tabIndex:"-1",...d})}),!u&&a.jsxs("div",{className:"block-editor-block-mover__move-button-container",children:[a.jsx(bs,{children:d=>a.jsx(Hge,{disabled:n,clientIds:e,...d})}),a.jsx(bs,{children:d=>a.jsx(Uge,{disabled:o,clientIds:e,...d})})]})]})}const{clearTimeout:Nee,setTimeout:uCt}=window,Xge=200;function dCt({ref:e,isFocused:t,highlightParent:n,debounceTimeout:o=Xge}){const{getSelectedBlockClientId:r,getBlockRootClientId:s}=G(Q),{toggleBlockHighlight:i}=Oe(Q),c=x.useRef(),l=G(g=>g(Q).getSettings().isDistractionFree,[]),u=g=>{if(g&&l)return;const z=r(),A=n?s(z):z;i(A,g)},d=()=>e?.current&&e.current.matches(":hover"),p=()=>{const g=d();return!t&&!g},f=()=>{const g=c.current;g&&Nee&&Nee(g)},b=g=>{g&&g.stopPropagation(),f(),u(!0)},h=g=>{g&&g.stopPropagation(),f(),c.current=uCt(()=>{p()&&u(!1)},o)};return x.useEffect(()=>()=>{u(!1),f()},[]),{debouncedShowGestures:b,debouncedHideGestures:h}}function eI({ref:e,highlightParent:t=!1,debounceTimeout:n=Xge}){const[o,r]=x.useState(!1),{debouncedShowGestures:s,debouncedHideGestures:i}=dCt({ref:e,debounceTimeout:n,isFocused:o,highlightParent:t}),c=x.useRef(!1),l=()=>e?.current&&e.current.contains(e.current.ownerDocument.activeElement);return x.useEffect(()=>{const u=e.current,d=()=>{l()&&(r(!0),s())},p=()=>{l()||(r(!1),i())};return u&&!c.current&&(u.addEventListener("focus",d,!0),u.addEventListener("blur",p,!0),c.current=!0),()=>{u&&(u.removeEventListener("focus",d),u.removeEventListener("blur",p))}},[e,c,r,s,i]),{onMouseMove:s,onMouseLeave:i}}function pCt(){const{selectBlock:e}=Oe(Q),{parentClientId:t}=G(s=>{const{getBlockParents:i,getSelectedBlockClientId:c,getParentSectionBlock:l}=ct(s(Q)),u=c(),d=l(u),p=i(u);return{parentClientId:d??p[p.length-1]}},[]),n=Ii(t),o=x.useRef(),r=eI({ref:o,highlightParent:!0});return a.jsx("div",{className:"block-editor-block-parent-selector",ref:o,...r,children:a.jsx(Vt,{className:"block-editor-block-parent-selector__button",onClick:()=>e(t),label:xe(m("Select parent block: %s"),n?.title),showTooltip:!0,icon:a.jsx(Zn,{icon:n?.icon})})},t)}function Gge({blocks:e}){return Yn("medium","<")?null:a.jsx("div",{className:"block-editor-block-switcher__popover-preview-container",children:a.jsx(Io,{className:"block-editor-block-switcher__popover-preview",placement:"right-start",focusOnMount:!1,offset:16,children:a.jsxs("div",{className:"block-editor-block-switcher__preview",children:[a.jsx("div",{className:"block-editor-block-switcher__preview-title",children:m("Preview")}),a.jsx(Vd,{viewportWidth:500,blocks:e})]})})})}const fCt={};function bCt({clientIds:e,blocks:t}){const{activeBlockVariation:n,blockVariationTransformations:o}=G(s=>{const{getBlockAttributes:i,canRemoveBlocks:c}=s(Q),{getActiveBlockVariation:l,getBlockVariations:u}=s(kt),d=c(e);if(t.length!==1||!d)return fCt;const[p]=t;return{blockVariationTransformations:u(p.name,"transform"),activeBlockVariation:l(p.name,i(p.clientId))}},[e,t]);return x.useMemo(()=>o?.filter(({name:s})=>s!==n?.name),[o,n])}const hCt=({transformations:e,onSelect:t,blocks:n})=>{const[o,r]=x.useState();return a.jsxs(a.Fragment,{children:[o&&a.jsx(Gge,{blocks:jo(n[0],e.find(({name:s})=>s===o).attributes)}),e?.map(s=>a.jsx(mCt,{item:s,onSelect:t,setHoveredTransformItemName:r},s.name))]})};function mCt({item:e,onSelect:t,setHoveredTransformItemName:n}){const{name:o,icon:r,title:s}=e;return a.jsxs(Ct,{className:FB(o),onClick:i=>{i.preventDefault(),t(o)},onMouseLeave:()=>n(null),onMouseEnter:()=>n(o),children:[a.jsx(Zn,{icon:r,showColors:!0}),s]})}function gCt(e){const t={"core/paragraph":1,"core/heading":2,"core/list":3,"core/quote":4},n=x.useMemo(()=>{const o=Object.keys(t),r=e.reduce((s,i)=>{const{name:c}=i;return o.includes(c)?s.priorityTextTransformations.push(i):s.restTransformations.push(i),s},{priorityTextTransformations:[],restTransformations:[]});if(r.priorityTextTransformations.length===1&&r.priorityTextTransformations[0].name==="core/quote"){const s=r.priorityTextTransformations.pop();r.restTransformations.push(s)}return r},[e]);return n.priorityTextTransformations.sort(({name:o},{name:r})=>t[o]<t[r]?-1:1),n}const MCt=({className:e,possibleBlockTransformations:t,possibleBlockVariationTransformations:n,onSelect:o,onSelectVariation:r,blocks:s})=>{const[i,c]=x.useState(),{priorityTextTransformations:l,restTransformations:u}=gCt(t),d=l.length&&u.length,p=!!u.length&&a.jsx(zCt,{restTransformations:u,onSelect:o,setHoveredTransformItemName:c});return a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{label:m("Transform to"),className:e,children:[i&&a.jsx(Gge,{blocks:Kr(s,i)}),!!n?.length&&a.jsx(hCt,{transformations:n,blocks:s,onSelect:r}),l.map(f=>a.jsx(Kge,{item:f,onSelect:o,setHoveredTransformItemName:c},f.name)),!d&&p]}),!!d&&a.jsx(Cn,{className:e,children:p})]})};function zCt({restTransformations:e,onSelect:t,setHoveredTransformItemName:n}){return e.map(o=>a.jsx(Kge,{item:o,onSelect:t,setHoveredTransformItemName:n},o.name))}function Kge({item:e,onSelect:t,setHoveredTransformItemName:n}){const{name:o,icon:r,title:s,isDisabled:i}=e;return a.jsxs(Ct,{className:FB(o),onClick:c=>{c.preventDefault(),t(o)},disabled:i,onMouseLeave:()=>n(null),onMouseEnter:()=>n(o),children:[a.jsx(Zn,{icon:r,showColors:!0}),s]})}class V_{constructor(t=""){this._currentValue="",this._valueAsArray=[],this.value=t}entries(...t){return this._valueAsArray.entries(...t)}forEach(...t){return this._valueAsArray.forEach(...t)}keys(...t){return this._valueAsArray.keys(...t)}values(...t){return this._valueAsArray.values(...t)}get value(){return this._currentValue}set value(t){t=String(t),this._valueAsArray=[...new Set(t.split(/\s+/g).filter(Boolean))],this._currentValue=this._valueAsArray.join(" ")}get length(){return this._valueAsArray.length}toString(){return this.value}*[Symbol.iterator](){return yield*this._valueAsArray}item(t){return this._valueAsArray[t]}contains(t){return this._valueAsArray.indexOf(t)!==-1}add(...t){this.value+=" "+t.join(" ")}remove(...t){this.value=this._valueAsArray.filter(n=>!t.includes(n)).join(" ")}toggle(t,n){return n===void 0&&(n=!this.contains(t)),n?this.add(t):this.remove(t),n}replace(t,n){return this.contains(t)?(this.remove(t),this.add(n),!0):!1}supports(t){return!0}}function OCt(e,t){for(const n of new V_(t).values()){if(n.indexOf("is-style-")===-1)continue;const o=n.substring(9),r=e?.find(({name:s})=>s===o);if(r)return r}return Yge(e)}function tI(e,t,n){const o=new V_(e);return t&&o.remove("is-style-"+t.name),o.add("is-style-"+n.name),o.value}function yCt(e){return!e||e.length===0?[]:Yge(e)?e:[{name:"default",label:We("Default","block style"),isDefault:!0},...e]}function Yge(e){return e?.find(t=>t.isDefault)}function ACt(e,t){return x.useMemo(()=>{const n=t?.example,o=t?.name;if(n&&o)return IB(o,{attributes:n.attributes,innerBlocks:n.innerBlocks});if(e)return jo(e)},[t?.example?e?.name:e,t])}function nI({clientId:e,onSwitch:t}){const n=f=>{const{getBlock:b}=f(Q),h=b(e);if(!h)return{};const g=on(h.name),{getBlockStyles:z}=f(kt);return{block:h,blockType:g,styles:z(h.name),className:h.attributes.className||""}},{styles:o,block:r,blockType:s,className:i}=G(n,[e]),{updateBlockAttributes:c}=Oe(Q),l=yCt(o),u=OCt(l,i),d=ACt(r,s);return{onSelect:f=>{const b=tI(i,u,f);c(e,{className:b}),t()},stylesToRender:l,activeStyle:u,genericPreviewBlock:d,className:i}}const vCt=()=>{};function xCt({clientId:e,onSwitch:t=vCt}){const{onSelect:n,stylesToRender:o,activeStyle:r}=nI({clientId:e,onSwitch:t});return!o||o.length===0?null:a.jsx(a.Fragment,{children:o.map(s=>{const i=s.label||s.name;return a.jsx(Ct,{icon:r.name===s.name?M0:null,onClick:()=>n(s),children:a.jsx(Sn,{as:"span",limit:18,ellipsizeMode:"tail",truncate:!0,children:i})},s.name)})})}function wCt({hoveredBlock:e,onSwitch:t}){const{clientId:n}=e;return a.jsx(Cn,{label:m("Styles"),className:"block-editor-block-switcher__styles__menugroup",children:a.jsx(xCt,{clientId:n,onSwitch:t})})}const Zge=(e,t,n=new Set)=>{const{clientId:o,name:r,innerBlocks:s=[]}=e;if(!n.has(o)){if(r===t)return e;for(const i of s){const c=Zge(i,t,n);if(c)return c}}},_Ct=(e,t)=>{const n=mLe(e,"content");return n?.length?n.reduce((o,r)=>(t[r]&&(o[r]=t[r]),o),{}):t},kCt=(e,t)=>{const n=_Ct(t.name,t.attributes);e.attributes={...e.attributes,...n}},SCt=(e,t)=>{const n=t.map(r=>jo(r)),o=new Set;for(const r of e){let s=!1;for(const i of n){const c=Zge(i,r.name,o);if(c){s=!0,o.add(c.clientId),kCt(c,r);break}}if(!s)return}return n},CCt=(e,t)=>x.useMemo(()=>e.reduce((n,o)=>{const r=SCt(t,o.blocks);return r&&n.push({...o,transformedBlocks:r}),n},[]),[e,t]);function qCt({blocks:e,patterns:t,onSelect:n}){const[o,r]=x.useState(!1),s=CCt(t,e);return s.length?a.jsxs(Cn,{className:"block-editor-block-switcher__pattern__transforms__menugroup",children:[o&&a.jsx(RCt,{patterns:s,onSelect:n}),a.jsx(Ct,{onClick:i=>{i.preventDefault(),r(!o)},icon:ga,children:m("Patterns")})]}):null}function RCt({patterns:e,onSelect:t}){const n=Yn("medium","<");return a.jsx("div",{className:"block-editor-block-switcher__popover-preview-container",children:a.jsx(Io,{className:"block-editor-block-switcher__popover-preview",placement:n?"bottom":"right-start",offset:16,children:a.jsx("div",{className:"block-editor-block-switcher__preview is-pattern-list-preview",children:a.jsx(TCt,{patterns:e,onSelect:t})})})})}function TCt({patterns:e,onSelect:t}){return a.jsx(S1,{role:"listbox",className:"block-editor-block-switcher__preview-patterns-container","aria-label":m("Patterns list"),children:e.map(n=>a.jsx(Qge,{pattern:n,onSelect:t},n.name))})}function Qge({pattern:e,onSelect:t}){const n="block-editor-block-switcher__preview-patterns-container",o=vt(Qge,`${n}-list__item-description`);return a.jsxs("div",{className:`${n}-list__list-item`,children:[a.jsxs(S1.Item,{render:a.jsx("div",{role:"option","aria-label":e.title,"aria-describedby":e.description?o:void 0,className:`${n}-list__item`}),onClick:()=>t(e.transformedBlocks),children:[a.jsx(Vd,{blocks:e.transformedBlocks,viewportWidth:e.viewportWidth||500}),a.jsx("div",{className:`${n}-list__item-title`,children:e.title})]}),!!e.description&&a.jsx(qn,{id:o,children:e.description})]})}function ECt({onClose:e,clientIds:t,hasBlockStyles:n,canRemove:o}){const{replaceBlocks:r,multiSelect:s,updateBlockAttributes:i}=Oe(Q),{possibleBlockTransformations:c,patterns:l,blocks:u,isUsingBindings:d}=G(C=>{const{getBlockAttributes:R,getBlocksByClientId:T,getBlockRootClientId:E,getBlockTransformItems:B,__experimentalGetPatternTransformItems:N}=C(Q),j=E(t[0]),I=T(t);return{blocks:I,possibleBlockTransformations:B(I,j),patterns:N(I,j),isUsingBindings:t.every(P=>!!R(P)?.metadata?.bindings)}},[t]),p=bCt({clientIds:t,blocks:u});function f(C){C.length>1&&s(C[0].clientId,C[C.length-1].clientId)}function b(C){const R=Kr(u,C);r(t,R),f(R)}function h(C){i(u[0].clientId,{...p.find(({name:R})=>R===C).attributes})}function g(C){r(t,C),f(C)}const z=u.length===1,A=z&&Hh(u[0]),_=!!c.length&&o&&!A,v=!!p?.length,M=!!l?.length&&o,y=_||v;if(!(n||y||M))return a.jsx("p",{className:"block-editor-block-switcher__no-transforms",children:m("No transforms.")});const S=We(z?"This block is connected.":"These blocks are connected.","block toolbar button label and description");return a.jsxs("div",{className:"block-editor-block-switcher__container",children:[M&&a.jsx(qCt,{blocks:u,patterns:l,onSelect:C=>{g(C),e()}}),y&&a.jsx(MCt,{className:"block-editor-block-switcher__transforms__menugroup",possibleBlockTransformations:c,possibleBlockVariationTransformations:p,blocks:u,onSelect:C=>{b(C),e()},onSelectVariation:C=>{h(C),e()}}),n&&a.jsx(wCt,{hoveredBlock:u[0],onSwitch:e}),d&&a.jsx(Cn,{children:a.jsx(Sn,{className:"block-editor-block-switcher__binding-indicator",children:S})})]})}const WCt=({clientIds:e})=>{const{hasContentOnlyLocking:t,canRemove:n,hasBlockStyles:o,icon:r,invalidBlocks:s,isReusable:i,isTemplate:c,isDisabled:l}=G(z=>{const{getTemplateLock:A,getBlocksByClientId:_,getBlockAttributes:v,canRemoveBlocks:M,getBlockEditingMode:y}=z(Q),{getBlockStyles:k,getBlockType:S,getActiveBlockVariation:C}=z(kt),R=_(e);if(!R.length||R.some(P=>!P))return{invalidBlocks:!0};const[{name:T}]=R,E=R.length===1,B=S(T),N=y(e[0]);let j,I;if(E)j=C(T,v(e[0]))?.icon||B.icon,I=A(e[0])==="contentOnly";else{const P=new Set(R.map(({name:$})=>$)).size===1;I=e.some($=>A($)==="contentOnly"),j=P?B.icon:H3}return{canRemove:M(e),hasBlockStyles:E&&!!k(T)?.length,icon:j,isReusable:E&&Qd(R[0]),isTemplate:E&&Hh(R[0]),hasContentOnlyLocking:I,isDisabled:N!=="default"}},[e]),u=Fd({clientId:e?.[0],maximumLength:35}),d=G(z=>z(ht).get("core","showIconLabels"),[]);if(s)return null;const p=e.length===1,f=p?u:m("Multiple blocks selected"),b=(i||c)&&!d&&u?u:void 0;if(l||!o&&!n||t)return a.jsx(Wn,{children:a.jsx(Vt,{disabled:!0,className:"block-editor-block-switcher__no-switcher-icon",title:f,icon:a.jsx(Zn,{className:"block-editor-block-switcher__toggle",icon:r,showColors:!0}),text:b})});const g=p?m("Change block type or style"):xe(Dn("Change type of %d block","Change type of %d blocks",e.length),e.length);return a.jsx(Wn,{children:a.jsx(bs,{children:z=>a.jsx(c0,{className:"block-editor-block-switcher",label:f,popoverProps:{placement:"bottom-start",className:"block-editor-block-switcher__popover"},icon:a.jsx(Zn,{className:"block-editor-block-switcher__toggle",icon:r,showColors:!0}),text:b,toggleProps:{description:g,...z},menuProps:{orientation:"both"},children:({onClose:A})=>a.jsx(ECt,{onClose:A,clientIds:e,hasBlockStyles:o,canRemove:n})})})})},NCt=Qn("BlockControls"),BCt=Qn("BlockControlsBlock"),LCt=Qn("BlockFormatControls"),PCt=Qn("BlockControlsOther"),jCt=Qn("BlockControlsParent"),VW={default:NCt,block:BCt,inline:LCt,other:PCt,parent:jCt};function ICt(e,t){const n=j0();return n[ow]?VW[e]?.Fill:n[ZB]&&t?VW.parent.Fill:null}function DCt({group:e="default",controls:t,children:n,__experimentalShareWithChildBlocks:o=!1}){const r=ICt(e,o);if(!r)return null;const s=a.jsxs(a.Fragment,{children:[e==="default"&&a.jsx(Wn,{controls:t}),n]});return a.jsx(Jf,{document,children:a.jsx(r,{children:i=>{const{forwardedContext:c=[]}=i;return c.reduce((l,[u,d])=>a.jsx(u,{...d,children:l}),s)}})})}const{ComponentsContext:Bee}=ct(tr);function FCt({group:e="default",...t}){const n=x.useContext(jd),o=x.useContext(Bee),r=x.useMemo(()=>({forwardedContext:[[jd.Provider,{value:n}],[Bee.Provider,{value:o}]]}),[n,o]),s=VW[e],i=H0(s.name);if(!s)return globalThis.SCRIPT_DEBUG===!0&&zn(`Unknown BlockControls group "${e}" provided.`),null;if(!i?.length)return null;const{Slot:c}=s,l=a.jsx(c,{...t,bubblesVirtually:!0,fillProps:r});return e==="default"?l:a.jsx(Wn,{children:l})}const bt=DCt;bt.Slot=FCt;const{Fill:oI,Slot:$Ct}=Qn("__unstableBlockToolbarLastItem");oI.Slot=$Ct;const VCt="align",Jge="__experimentalBorder",H_="color",HCt="customClassName",eMe="typography.__experimentalFontFamily",tMe="typography.fontSize",UCt="typography.lineHeight",XCt="typography.__experimentalFontStyle",GCt="typography.__experimentalFontWeight",nMe="typography.textAlign",KCt="typography.textColumns",YCt="typography.__experimentalTextDecoration",ZCt="typography.__experimentalWritingMode",QCt="typography.__experimentalTextTransform",JCt="typography.__experimentalLetterSpacing",eqt="layout",tqt=[UCt,tMe,XCt,GCt,eMe,nMe,KCt,YCt,QCt,ZCt,JCt],nqt=["shadow"],oqt="spacing",rqt=[...nqt,...tqt,Jge,H_,oqt],sqt=e=>Et(e,VCt);function iqt(e,t="any"){const n=An(e,Jge);return n===!0?!0:t==="any"?!!(n?.color||n?.radius||n?.width||n?.style):!!n?.[t]}const aqt=e=>{const t=An(e,H_);return t!==null&&typeof t=="object"&&!!t.gradients},cqt=e=>{const t=An(e,H_);return t&&t.background!==!1},lqt=e=>Et(e,nMe),uqt=e=>{const t=An(e,H_);return t&&t.text!==!1},dqt=e=>Et(e,HCt,!0),pqt=e=>Et(e,eMe),fqt=e=>Et(e,tMe),bqt=e=>Et(e,eqt),hqt=e=>rqt.some(t=>Et(e,t));function mqt(e){try{const t=Ko(e,{__unstableSkipMigrationLogs:!0,__unstableSkipAutop:!0});return!(t.length===1&&t[0].name==="core/freeform")}catch{return!1}}const gqt={align:sqt,borderColor:e=>iqt(e,"color"),backgroundColor:cqt,textAlign:lqt,textColor:uqt,gradient:aqt,className:dqt,fontFamily:pqt,fontSize:fqt,layout:bqt,style:hqt};function Mqt(e,t){return Object.entries(gqt).reduce((n,[o,r])=>(r(e.name)&&r(t.name)&&(n[o]=e.attributes[o]),n),{})}function HW(e,t,n){for(let o=0;o<Math.min(t.length,e.length);o+=1)n(e[o].clientId,Mqt(t[o],e[o])),HW(e[o].innerBlocks,t[o].innerBlocks,n)}function zqt(){const e=Fn(),{updateBlockAttributes:t}=Oe(Q),{createSuccessNotice:n,createWarningNotice:o,createErrorNotice:r}=Oe(mt);return x.useCallback(async s=>{let i="";try{if(!window.navigator.clipboard){r(m("Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers."),{type:"snackbar"});return}i=await window.navigator.clipboard.readText()}catch{r(m("Unable to paste styles. Please allow browser clipboard permissions before continuing."),{type:"snackbar"});return}if(!i||!mqt(i)){o(m("Unable to paste styles. Block styles couldn't be found within the copied content."),{type:"snackbar"});return}const c=Ko(i);if(c.length===1?e.batch(()=>{HW(s,s.map(()=>c[0]),t)}):e.batch(()=>{HW(s,c,t)}),s.length===1){const l=on(s[0].name)?.title;n(xe(m("Pasted styles to %s."),l),{type:"snackbar"})}else n(xe(m("Pasted styles to %d blocks."),s.length),{type:"snackbar"})},[e.batch,t,n,o,r])}function Oqt({clientIds:e,children:t,__experimentalUpdateSelection:n}){const{getDefaultBlockName:o,getGroupingBlockName:r}=G(kt),s=G(v=>{const{canInsertBlockType:M,getBlockRootClientId:y,getBlocksByClientId:k,getDirectInsertBlock:S,canRemoveBlocks:C}=v(Q),R=k(e),T=y(e[0]),E=M(o(),T),B=T?S(T):null;return{canRemove:C(e),canInsertBlock:E||!!B,canCopyStyles:R.every(N=>!!N&&(Et(N.name,"color")||Et(N.name,"typography"))),canDuplicate:R.every(N=>!!N&&Et(N.name,"multiple",!0)&&M(N.name,T))}},[e,o]),{getBlocksByClientId:i,getBlocks:c}=G(Q),{canRemove:l,canInsertBlock:u,canCopyStyles:d,canDuplicate:p}=s,{removeBlocks:f,replaceBlocks:b,duplicateBlocks:h,insertAfterBlock:g,insertBeforeBlock:z,flashBlock:A}=Oe(Q),_=zqt();return t({canCopyStyles:d,canDuplicate:p,canInsertBlock:u,canRemove:l,onDuplicate(){return h(e,n)},onRemove(){return f(e,n)},onInsertBefore(){z(e[0])},onInsertAfter(){g(e[e.length-1])},onGroup(){if(!e.length)return;const v=r(),M=Kr(i(e),v);M&&b(e,M)},onUngroup(){if(!e.length)return;const v=c(e[0]);v.length&&b(e,v)},onCopy(){e.length===1&&A(e[0])},async onPasteStyles(){await _(i(e))}})}const oMe=Qn(Symbol("CommentIconSlotFill"));function yqt({clientId:e}){const t=G(o=>o(Q).getBlock(e),[e]),{replaceBlocks:n}=Oe(Q);return!t||t.name!=="core/html"?null:a.jsx(Ct,{onClick:()=>n(e,O3({HTML:ew(t)})),children:m("Convert to Blocks")})}const{Fill:U_,Slot:Aqt}=Qn("__unstableBlockSettingsMenuFirstItem");U_.Slot=Aqt;function rMe(e){return G(t=>{const{getBlocksByClientId:n,getSelectedBlockClientIds:o,isUngroupable:r,isGroupable:s}=t(Q),{getGroupingBlockName:i,getBlockType:c}=t(kt),l=e?.length?e:o(),u=n(l),[d]=u,p=l.length===1&&r(l[0]);return{clientIds:l,isGroupable:s(l),isUngroupable:p,blocksSelection:u,groupingBlockName:i(),onUngroup:p&&c(d.name)?.transforms?.ungroup}},[e])}const vqt={group:{type:"constrained"},row:{type:"flex",flexWrap:"nowrap"},stack:{type:"flex",orientation:"vertical"},grid:{type:"grid"}};function xqt(){const{blocksSelection:e,clientIds:t,groupingBlockName:n,isGroupable:o}=rMe(),{replaceBlocks:r}=Oe(Q),{canRemove:s,variations:i}=G(h=>{const{canRemoveBlocks:g}=h(Q),{getBlockVariations:z}=h(kt);return{canRemove:g(t),variations:z(n,"transform")}},[t,n]),c=h=>{const g=Kr(e,n);typeof h!="string"&&(h="group"),g&&g.length>0&&(g[0].attributes.layout=vqt[h],r(t,g))},l=()=>c("row"),u=()=>c("stack"),d=()=>c("grid");if(!o||!s)return null;const p=!!i.find(({name:h})=>h==="group-row"),f=!!i.find(({name:h})=>h==="group-stack"),b=!!i.find(({name:h})=>h==="group-grid");return a.jsxs(Wn,{children:[a.jsx(Vt,{icon:Zf,label:We("Group","action: convert blocks to group"),onClick:c}),p&&a.jsx(Vt,{icon:Nde,label:We("Row","action: convert blocks to row"),onClick:l}),f&&a.jsx(Vt,{icon:Dde,label:We("Stack","action: convert blocks to stack"),onClick:u}),b&&a.jsx(Vt,{icon:X3,label:We("Grid","action: convert blocks to grid"),onClick:d})]})}function wqt({clientIds:e,isGroupable:t,isUngroupable:n,onUngroup:o,blocksSelection:r,groupingBlockName:s,onClose:i=()=>{}}){const{getSelectedBlockClientIds:c}=G(Q),{replaceBlocks:l}=Oe(Q),u=()=>{const f=Kr(r,s);f&&l(e,f)},d=()=>{let f=r[0].innerBlocks;f.length&&(o&&(f=o(r[0].attributes,r[0].innerBlocks)),l(e,f))};if(!t&&!n)return null;const p=c();return a.jsxs(a.Fragment,{children:[t&&a.jsx(Ct,{shortcut:p.length>1?j1.primary("g"):void 0,onClick:()=>{u(),i()},children:We("Group","verb")}),n&&a.jsx(Ct,{onClick:()=>{d(),i()},children:We("Ungroup","Ungrouping blocks from within a grouping block back into individual blocks within the Editor")})]})}function km(e){return G(t=>{const{canEditBlock:n,canMoveBlock:o,canRemoveBlock:r,canLockBlockType:s,getBlockName:i,getTemplateLock:c}=t(Q),l=n(e),u=o(e),d=r(e);return{canEdit:l,canMove:u,canRemove:d,canLock:s(i(e)),isContentLocked:c(e)==="contentOnly",isLocked:!l||!u||!d}},[e])}const _qt=["core/navigation"];function kqt(e){return e.remove&&e.move?"all":e.remove&&!e.move?"insert":!1}function sMe({clientId:e,onClose:t}){const[n,o]=x.useState({move:!1,remove:!1}),{canEdit:r,canMove:s,canRemove:i}=km(e),{allowsEditLocking:c,templateLock:l,hasTemplateLock:u}=G(z=>{const{getBlockName:A,getBlockAttributes:_}=z(Q),v=A(e),M=on(v);return{allowsEditLocking:_qt.includes(v),templateLock:_(e)?.templateLock,hasTemplateLock:!!M?.attributes?.templateLock}},[e]),[d,p]=x.useState(!!l),{updateBlockAttributes:f}=Oe(Q),b=Ii(e);x.useEffect(()=>{o({move:!s,remove:!i,...c?{edit:!r}:{}})},[r,s,i,c]);const h=Object.values(n).every(Boolean),g=Object.values(n).some(Boolean)&&!h;return a.jsx(Zo,{title:xe(m("Lock %s"),b.title),overlayClassName:"block-editor-block-lock-modal",onRequestClose:t,children:a.jsxs("form",{onSubmit:z=>{z.preventDefault(),f([e],{lock:n,templateLock:d?kqt(n):void 0}),t()},children:[a.jsxs("fieldset",{className:"block-editor-block-lock-modal__options",children:[a.jsx("legend",{children:m("Select the features you want to lock")}),a.jsx("ul",{role:"list",className:"block-editor-block-lock-modal__checklist",children:a.jsxs("li",{children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,className:"block-editor-block-lock-modal__options-all",label:m("Lock all"),checked:h,indeterminate:g,onChange:z=>o({move:z,remove:z,...c?{edit:z}:{}})}),a.jsxs("ul",{role:"list",className:"block-editor-block-lock-modal__checklist",children:[c&&a.jsxs("li",{className:"block-editor-block-lock-modal__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Lock editing"),checked:!!n.edit,onChange:z=>o(A=>({...A,edit:z}))}),a.jsx(qo,{className:"block-editor-block-lock-modal__lock-icon",icon:n.edit?e4:SM})]}),a.jsxs("li",{className:"block-editor-block-lock-modal__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Lock movement"),checked:n.move,onChange:z=>o(A=>({...A,move:z}))}),a.jsx(qo,{className:"block-editor-block-lock-modal__lock-icon",icon:n.move?e4:SM})]}),a.jsxs("li",{className:"block-editor-block-lock-modal__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Lock removal"),checked:n.remove,onChange:z=>o(A=>({...A,remove:z}))}),a.jsx(qo,{className:"block-editor-block-lock-modal__lock-icon",icon:n.remove?e4:SM})]})]})]})}),u&&a.jsx(lt,{__nextHasNoMarginBottom:!0,className:"block-editor-block-lock-modal__template-lock",label:m("Apply to all blocks inside"),checked:d,disabled:n.move&&!n.remove,onChange:()=>p(!d)})]}),a.jsxs(Yo,{className:"block-editor-block-lock-modal__actions",justify:"flex-end",expanded:!1,children:[a.jsx(Tn,{children:a.jsx(Ce,{variant:"tertiary",onClick:t,__next40pxDefaultSize:!0,children:m("Cancel")})}),a.jsx(Tn,{children:a.jsx(Ce,{variant:"primary",type:"submit",__next40pxDefaultSize:!0,children:m("Apply")})})]})]})})}function Sqt({clientId:e}){const{canLock:t,isLocked:n}=km(e),[o,r]=x.useReducer(i=>!i,!1);if(!t)return null;const s=m(n?"Unlock":"Lock");return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{icon:n?SM:fQe,onClick:r,"aria-expanded":o,"aria-haspopup":"dialog",children:s}),o&&a.jsx(sMe,{clientId:e,onClose:r})]})}function Cqt({clientId:e}){const{canLock:t,isLocked:n}=km(e),[o,r]=x.useReducer(c=>!c,!1),s=x.useRef(!1);if(x.useEffect(()=>{n&&(s.current=!0)},[n]),!n&&!s.current)return null;let i=m(n?"Unlock":"Lock");return!t&&n&&(i=m("Locked")),a.jsxs(a.Fragment,{children:[a.jsx(Wn,{className:"block-editor-block-lock-toolbar",children:a.jsx(Vt,{disabled:!t,icon:n?e4:SM,label:i,onClick:r,"aria-expanded":o,"aria-haspopup":"dialog"})}),o&&a.jsx(sMe,{clientId:e,onClose:r})]})}const qqt=()=>{};function Rqt({clientId:e,onToggle:t=qqt}){const{blockType:n,mode:o,isCodeEditingEnabled:r}=G(c=>{const{getBlock:l,getBlockMode:u,getSettings:d}=c(Q),p=l(e);return{mode:u(e),blockType:p?on(p.name):null,isCodeEditingEnabled:d().codeEditingEnabled}},[e]),{toggleBlockMode:s}=Oe(Q);if(!n||!Et(n,"html",!0)||!r)return null;const i=m(o==="visual"?"Edit as HTML":"Edit visually");return a.jsx(Ct,{onClick:()=>{s(e),t()},children:i})}function Tqt({clientId:e,onClose:t}){const{templateLock:n,isLockedByParent:o,isEditingAsBlocks:r}=G(u=>{const{getContentLockingParent:d,getTemplateLock:p,getTemporarilyEditingAsBlocks:f}=ct(u(Q));return{templateLock:p(e),isLockedByParent:!!d(e),isEditingAsBlocks:f()===e}},[e]),s=Oe(Q),i=!o&&n==="contentOnly";if(!i&&!r)return null;const{modifyContentLockBlock:c}=ct(s);return!r&&i&&a.jsx(Ct,{onClick:()=>{c(e),t()},children:We("Modify","Unlock content locked blocks")})}function Eqt(e){return e?.trim()?.length===0}function Wqt({clientId:e,onClose:t}){const[n,o]=x.useState(),r=Ii(e),{metadata:s}=G(z=>{const{getBlockAttributes:A}=z(Q);return{metadata:A(e)?.metadata}},[e]),{updateBlockAttributes:i}=Oe(Q),c=s?.name||"",l=r?.title,u=!!c&&!!s?.bindings&&Object.values(s.bindings).some(z=>z.source==="core/pattern-overrides"),d=n!==void 0&&n!==c,p=n===l,f=Eqt(n),b=d||p,h=z=>z.target.select(),g=()=>{const z=p||f?void 0:n,A=xe(m(p||f?'Block name reset to: "%s".':'Block name changed to: "%s".'),n);Yt(A,"assertive"),i([e],{metadata:{...s,name:z}}),t()};return a.jsx(Zo,{title:m("Rename"),onRequestClose:t,overlayClassName:"block-editor-block-rename-modal",focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{onSubmit:z=>{z.preventDefault(),b&&g()},children:a.jsxs(dt,{spacing:"3",children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:n??c,label:m("Name"),help:u?m("This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern."):void 0,placeholder:l,onChange:o,onFocus:h}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,accessibleWhenDisabled:!0,disabled:!b,variant:"primary",type:"submit",children:m("Save")})]})]})})})}function Nqt({clientId:e}){const[t,n]=x.useState(!1);return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>{n(!0)},"aria-expanded":t,"aria-haspopup":"dialog",children:m("Rename")}),t&&a.jsx(Wqt,{clientId:e,onClose:()=>n(!1)})]})}function Bqt(e){return{canRename:An(e,"renaming",!0)}}const{Fill:Lqt,Slot:Pqt}=Qn("BlockSettingsMenuControls"),jqt=({fillProps:e,clientIds:t=null})=>{const{selectedBlocks:n,selectedClientIds:o,isContentOnly:r}=G(b=>{const{getBlockNamesByClientId:h,getSelectedBlockClientIds:g,getBlockEditingMode:z}=b(Q),A=t!==null?t:g();return{selectedBlocks:h(A),selectedClientIds:A,isContentOnly:z(A[0])==="contentOnly"}},[t]),{canLock:s}=km(o[0]),{canRename:i}=Bqt(n[0]),c=o.length===1&&s&&!r,l=o.length===1&&i&&!r,u=rMe(o),{isGroupable:d,isUngroupable:p}=u,f=(d||p)&&!r;return a.jsx(Pqt,{fillProps:{...e,selectedBlocks:n,selectedClientIds:o},children:b=>!b?.length>0&&!f&&!c?null:a.jsxs(Cn,{children:[f&&a.jsx(wqt,{...u,onClose:e?.onClose}),c&&a.jsx(Sqt,{clientId:o[0]}),l&&a.jsx(Nqt,{clientId:o[0]}),b,o.length===1&&a.jsx(Tqt,{clientId:o[0],onClose:e?.onClose}),e?.count===1&&!r&&a.jsx(Rqt,{clientId:e?.firstBlockClientId,onToggle:e?.onClose})]})})};function cb({...e}){return a.jsx(Jf,{document,children:a.jsx(Lqt,{...e})})}cb.Slot=jqt;function Iqt({parentClientId:e,parentBlockType:t}){const n=Yn("medium","<"),{selectBlock:o}=Oe(Q),r=x.useRef(),s=eI({ref:r,highlightParent:!0});return n?a.jsx(Ct,{...s,ref:r,icon:a.jsx(Zn,{icon:t.icon}),onClick:()=>o(e),children:xe(m("Select parent block (%s)"),t.title)}):null}const Dqt={className:"block-editor-block-settings-menu__popover",placement:"bottom-start"};function Lee({clientIds:e,onCopy:t,label:n,shortcut:o,eventType:r="copy"}){const{getBlocksByClientId:s}=G(Q),i=W7(),c=Ul(()=>Ks(s(e)),()=>{t&&r==="copy"&&t(),i(r,e)}),l=n||m("Copy");return a.jsx(Ct,{ref:c,shortcut:o,children:l})}function iMe({block:e,clientIds:t,children:n,__experimentalSelectBlock:o,...r}){const s=e?.clientId,i=t.length,c=t[0],{firstParentClientId:l,parentBlockType:u,previousBlockClientId:d,selectedBlockClientIds:p,openedBlockSettingsMenu:f,isContentOnly:b}=G(R=>{const{getBlockName:T,getBlockRootClientId:E,getPreviousBlockClientId:B,getSelectedBlockClientIds:N,getBlockAttributes:j,getOpenedBlockSettingsMenu:I,getBlockEditingMode:P}=ct(R(Q)),{getActiveBlockVariation:$}=R(kt),F=E(c),X=F&&T(F);return{firstParentClientId:F,parentBlockType:F&&($(X,j(F))||on(X)),previousBlockClientId:B(c),selectedBlockClientIds:N(),openedBlockSettingsMenu:I(),isContentOnly:P(c)==="contentOnly"}},[c]),{getBlockOrder:h,getSelectedBlockClientIds:g}=G(Q),{setOpenedBlockSettingsMenu:z}=ct(Oe(Q)),A=G(R=>{const{getShortcutRepresentation:T}=R(ji);return{duplicate:T("core/block-editor/duplicate"),remove:T("core/block-editor/remove"),insertAfter:T("core/block-editor/insert-after"),insertBefore:T("core/block-editor/insert-before")}},[]),_=p.length>0;async function v(R){if(!o)return;const T=await R;T&&T[0]&&o(T[0],!1)}function M(){if(!o)return;let R=d||l;R||(R=h()[0]);const T=_&&g().length===0;o(R,T)}const y=p?.includes(l),k=s?f===s||!1:void 0;function S(R){R&&f!==s?z(s):!R&&f&&f===s&&z(void 0)}const C=!y&&!!l;return a.jsx(Oqt,{clientIds:t,__experimentalUpdateSelection:!o,children:({canCopyStyles:R,canDuplicate:T,canInsertBlock:E,canRemove:B,onDuplicate:N,onInsertAfter:j,onInsertBefore:I,onRemove:P,onCopy:$,onPasteStyles:F})=>!B&&!T&&!E&&b?null:a.jsx(c0,{icon:Wc,label:m("Options"),className:"block-editor-block-settings-menu",popoverProps:Dqt,open:k,onToggle:S,noIcons:!0,...r,children:({onClose:Z})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{children:[a.jsx(U_.Slot,{fillProps:{onClose:Z}}),C&&a.jsx(Iqt,{parentClientId:l,parentBlockType:u}),i===1&&a.jsx(yqt,{clientId:c}),a.jsx(Lee,{clientIds:t,onCopy:$,shortcut:j1.primary("c")}),T&&a.jsx(Ct,{onClick:Ku(Z,N,v),shortcut:A.duplicate,children:m("Duplicate")}),E&&!b&&a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:Ku(Z,I),shortcut:A.insertBefore,children:m("Add before")}),a.jsx(Ct,{onClick:Ku(Z,j),shortcut:A.insertAfter,children:m("Add after")})]}),a.jsx(oMe.Slot,{fillProps:{onClose:Z}})]}),R&&!b&&a.jsxs(Cn,{children:[a.jsx(Lee,{clientIds:t,onCopy:$,label:m("Copy styles"),eventType:"copyStyles"}),a.jsx(Ct,{onClick:F,children:m("Paste styles")})]}),!b&&a.jsx(cb.Slot,{fillProps:{onClose:Z,count:i,firstBlockClientId:c},clientIds:t}),typeof n=="function"?n({onClose:Z}):x.Children.map(V=>x.cloneElement(V,{onClose:Z})),B&&a.jsx(Cn,{children:a.jsx(Ct,{onClick:Ku(Z,P,M),shortcut:A.remove,children:m("Delete")})})]})})})}const aMe=Qn(Symbol("CommentIconToolbarSlotFill"));function Fqt({clientIds:e,...t}){return a.jsxs(Wn,{children:[a.jsx(aMe.Slot,{}),a.jsx(bs,{children:n=>a.jsx(iMe,{clientIds:e,toggleProps:n,...t})})]})}function $qt({clientIds:e}){const t=e.length===1?e[0]:void 0,n=G(r=>!!t&&r(Q).getBlockMode(t)==="html",[t]),{toggleBlockMode:o}=Oe(Q);return n?a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>{o(t)},children:m("Edit visually")})}):null}const Vqt=x.createContext("");function Hqt(e){const t="toolbarItem";return!e.some(n=>!(t in n.dataset))}function Pee(e){return Array.from(e.querySelectorAll("[data-toolbar-item]:not([disabled])"))}function jee(e){return e.contains(e.ownerDocument.activeElement)}function Uqt(e){const[t]=Xr.tabbable.find(e);t&&t.focus({preventScroll:!0})}function Xqt(e){const[n,o]=x.useState(!0),r=x.useCallback(()=>{const s=Xr.tabbable.find(e.current),i=Hqt(s);i||Ke("Using custom components as toolbar controls",{since:"5.6",alternative:"ToolbarItem, ToolbarButton or ToolbarDropdownMenu components",link:"https://developer.wordpress.org/block-editor/components/toolbar-button/#inside-blockcontrols"}),o(i)},[e]);return x.useLayoutEffect(()=>{const s=new window.MutationObserver(r);return s.observe(e.current,{childList:!0,subtree:!0}),()=>s.disconnect()},[r,n,e]),n}function Gqt({toolbarRef:e,focusOnMount:t,isAccessibleToolbar:n,defaultIndex:o,onIndexChange:r,shouldUseKeyboardFocusShortcut:s,focusEditorOnEscape:i}){const[c]=x.useState(t),[l]=x.useState(o),u=x.useCallback(()=>{Uqt(e.current)},[e]);p0("core/block-editor/focus-toolbar",()=>{s&&u()}),x.useEffect(()=>{c&&u()},[n,c,u]),x.useEffect(()=>{const f=e.current;let b=0;return!c&&!jee(f)&&(b=window.requestAnimationFrame(()=>{const h=Pee(f),g=l||0;h[g]&&jee(f)&&h[g].focus({preventScroll:!0})})),()=>{if(window.cancelAnimationFrame(b),!r||!f)return;const g=Pee(f).findIndex(z=>z.tabIndex===0);r(g)}},[l,c,r,e]);const{getLastFocus:p}=ct(G(Q));x.useEffect(()=>{const f=e.current;if(i){const b=h=>{const g=p();h.keyCode===gd&&g?.current&&(h.preventDefault(),g.current.focus())};return f.addEventListener("keydown",b),()=>{f.removeEventListener("keydown",b)}}},[i,p,e])}function rI({children:e,focusOnMount:t,focusEditorOnEscape:n=!1,shouldUseKeyboardFocusShortcut:o=!0,__experimentalInitialIndex:r,__experimentalOnIndexChange:s,orientation:i="horizontal",...c}){const l=x.useRef(),u=Xqt(l);return Gqt({toolbarRef:l,focusOnMount:t,defaultIndex:r,onIndexChange:s,isAccessibleToolbar:u,shouldUseKeyboardFocusShortcut:o,focusEditorOnEscape:n}),u?a.jsx(h2e,{label:c["aria-label"],ref:l,orientation:i,...c,children:e}):a.jsx(pm,{orientation:i,role:"toolbar",ref:l,...c,children:e})}function cMe(){const{isToolbarEnabled:e,isBlockDisabled:t}=G(n=>{const{getBlockEditingMode:o,getBlockName:r,getBlockSelectionStart:s}=n(Q),i=s(),c=i&&on(r(i));return{isToolbarEnabled:c&&Et(c,"__experimentalToolbar",!0),isBlockDisabled:o(i)==="disabled"}},[]);return!(!e||t)}const KR=[],Kqt=6,Yqt={placement:"bottom-start"};function Zqt({clientId:e}){const{categories:t,currentPatternName:n,patterns:o}=G(c=>{const{getBlockAttributes:l,getBlockRootClientId:u,__experimentalGetAllowedPatterns:d}=c(Q),p=l(e),f=p?.metadata?.categories||KR,b=u(e),h=f.length>0?d(b):KR;return{categories:f,currentPatternName:p?.metadata?.patternName,patterns:h}},[e]),{replaceBlocks:r}=Oe(Q),s=x.useMemo(()=>t.length===0||!o||o.length===0?KR:o.filter(c=>{const l=c.source==="core"||c.source?.startsWith("pattern-directory")&&c.source!=="pattern-directory/theme";return c.blocks.length===1&&!l&&n!==c.name&&c.categories?.some(u=>t.includes(u))&&(c.syncStatus==="unsynced"||!c.id)}).slice(0,Kqt),[t,n,o]);if(s.length<2)return null;const i=c=>{var l;const u=((l=c.blocks)!==null&&l!==void 0?l:[]).map(d=>jo(d));u[0].attributes.metadata={...u[0].attributes.metadata,categories:t},r(e,u)};return a.jsx(so,{popoverProps:Yqt,renderToggle:({onToggle:c,isOpen:l})=>a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>c(!l),"aria-expanded":l,children:m("Change design")})}),renderContent:()=>a.jsx($s,{className:"block-editor-block-toolbar-change-design-content-wrapper",paddingSize:"none",children:a.jsx(qa,{blockPatterns:s,onClickPattern:i,showTitlesAsTooltip:!0})})})}const Qqt={user:{},base:{},merged:{},setUserConfig:()=>{}},lb=x.createContext(Qqt),Iee={settings:{},styles:{}},Jqt=["appearanceTools","useRootPaddingAwareAlignments","background.backgroundImage","background.backgroundRepeat","background.backgroundSize","background.backgroundPosition","border.color","border.radius","border.style","border.width","shadow.presets","shadow.defaultPresets","color.background","color.button","color.caption","color.custom","color.customDuotone","color.customGradient","color.defaultDuotone","color.defaultGradients","color.defaultPalette","color.duotone","color.gradients","color.heading","color.link","color.palette","color.text","custom","dimensions.aspectRatio","dimensions.minHeight","layout.contentSize","layout.definitions","layout.wideSize","lightbox.enabled","lightbox.allowEditing","position.fixed","position.sticky","spacing.customSpacingSize","spacing.defaultSpacingSizes","spacing.spacingSizes","spacing.spacingScale","spacing.blockGap","spacing.margin","spacing.padding","spacing.units","typography.fluid","typography.customFontSize","typography.defaultFontSizes","typography.dropCap","typography.fontFamilies","typography.fontSizes","typography.fontStyle","typography.fontWeight","typography.letterSpacing","typography.lineHeight","typography.textAlign","typography.textColumns","typography.textDecoration","typography.textTransform","typography.writingMode"],eRt=()=>{const{user:e,setUserConfig:t}=x.useContext(lb),n={settings:e.settings,styles:e.styles};return[!!n&&!N0(n,Iee),x.useCallback(()=>t(Iee),[t])]};function lMe(e,t,n="all"){const{setUserConfig:o,...r}=x.useContext(lb),s=t?".blocks."+t:"",i=e?"."+e:"",c=`settings${s}${i}`,l=`settings${i}`,u=n==="all"?"merged":n;return[x.useMemo(()=>{const f=r[u];if(!f)throw"Unsupported source";if(e){var b;return(b=fo(f,c))!==null&&b!==void 0?b:fo(f,l)}let h={};return Jqt.forEach(g=>{var z;const A=(z=fo(f,`settings${s}.${g}`))!==null&&z!==void 0?z:fo(f,`settings.${g}`);A!==void 0&&(h=gn(h,g.split("."),A))}),h},[r,u,e,c,l,s]),f=>{o(b=>gn(b,c.split("."),f))}]}function tRt(e,t,n="all",{shouldDecodeEncode:o=!0}={}){const{merged:r,base:s,user:i,setUserConfig:c}=x.useContext(lb),l=e?"."+e:"",u=t?`styles.blocks.${t}${l}`:`styles${l}`,d=b=>{c(h=>gn(h,u.split("."),o?ESt(r.settings,t,e,b):b))};let p,f;switch(n){case"all":p=fo(r,u),f=o?da(r,t,p):p;break;case"user":p=fo(i,u),f=o?da(r,t,p):p;break;case"base":p=fo(s,u),f=o?da(s,t,p):p;break;default:throw"Unsupported source"}return[f,d]}function uMe(e,t,n){const{supportedStyles:o,supports:r}=G(s=>({supportedStyles:ct(s(kt)).getSupportedStyles(t,n),supports:s(kt).getBlockType(t)?.supports}),[t,n]);return x.useMemo(()=>{const s={...e};return o.includes("fontSize")||(s.typography={...s.typography,fontSizes:{},customFontSize:!1,defaultFontSizes:!1}),o.includes("fontFamily")||(s.typography={...s.typography,fontFamilies:{}}),s.color={...s.color,text:s.color?.text&&o.includes("color"),background:s.color?.background&&(o.includes("background")||o.includes("backgroundColor")),button:s.color?.button&&o.includes("buttonColor"),heading:s.color?.heading&&o.includes("headingColor"),link:s.color?.link&&o.includes("linkColor"),caption:s.color?.caption&&o.includes("captionColor")},o.includes("background")||(s.color.gradients=[],s.color.customGradient=!1),o.includes("filter")||(s.color.defaultDuotone=!1,s.color.customDuotone=!1),["lineHeight","fontStyle","fontWeight","letterSpacing","textAlign","textTransform","textDecoration","writingMode"].forEach(i=>{o.includes(i)||(s.typography={...s.typography,[i]:!1})}),o.includes("columnCount")||(s.typography={...s.typography,textColumns:!1}),["contentSize","wideSize"].forEach(i=>{o.includes(i)||(s.layout={...s.layout,[i]:!1})}),["padding","margin","blockGap"].forEach(i=>{o.includes(i)||(s.spacing={...s.spacing,[i]:!1});const c=Array.isArray(r?.spacing?.[i])?r?.spacing?.[i]:r?.spacing?.[i]?.sides;c?.length&&s.spacing?.[i]&&(s.spacing={...s.spacing,[i]:{...s.spacing?.[i],sides:c}})}),["aspectRatio","minHeight"].forEach(i=>{o.includes(i)||(s.dimensions={...s.dimensions,[i]:!1})}),["radius","color","style","width"].forEach(i=>{o.includes("border"+i.charAt(0).toUpperCase()+i.slice(1))||(s.border={...s.border,[i]:!1})}),["backgroundImage","backgroundSize"].forEach(i=>{o.includes(i)||(s.background={...s.background,[i]:!1})}),s.shadow=o.includes("shadow")?s.shadow:!1,n&&(s.typography.textAlign=!1),s},[e,o,r,n])}function pp(e){const t=e?.color?.palette?.custom,n=e?.color?.palette?.theme,o=e?.color?.palette?.default,r=e?.color?.defaultPalette;return x.useMemo(()=>{const s=[];return n&&n.length&&s.push({name:We("Theme","Indicates this palette comes from the theme."),colors:n}),r&&o&&o.length&&s.push({name:We("Default","Indicates this palette comes from WordPress."),colors:o}),t&&t.length&&s.push({name:We("Custom","Indicates this palette is created by the user."),colors:t}),s},[t,n,o,r])}function X_(e){const t=e?.color?.gradients?.custom,n=e?.color?.gradients?.theme,o=e?.color?.gradients?.default,r=e?.color?.defaultGradients;return x.useMemo(()=>{const s=[];return n&&n.length&&s.push({name:We("Theme","Indicates this palette comes from the theme."),gradients:n}),r&&o&&o.length&&s.push({name:We("Default","Indicates this palette comes from WordPress."),gradients:o}),t&&t.length&&s.push({name:We("Custom","Indicates this palette is created by the user."),gradients:t}),s},[t,n,o,r])}function pd(e,t="root",n={}){if(!t)return null;const{fallback:o=!1}=n,{name:r,selectors:s,supports:i}=e,c=s&&Object.keys(s).length>0,l=Array.isArray(t)?t.join("."):t;let u=null;if(c&&s.root?u=s?.root:i?.__experimentalSelector?u=i.__experimentalSelector:u=".wp-block-"+r.replace("core/","").replace("/","-"),l==="root")return u;const d=Array.isArray(t)?t:t.split(".");if(d.length===1){const f=o?u:null;if(c)return fo(s,`${l}.root`,null)||fo(s,l,null)||f;const b=fo(i,`${l}.__experimentalSelector`,null);return b?Ws(u,b):f}let p;return c&&(p=fo(s,l,null)),p||(o?pd(e,d[0],n):null)}function nRt(e=[]){const t={r:[],g:[],b:[],a:[]};return e.forEach(n=>{const o=an(n).toRgb();t.r.push(o.r/255),t.g.push(o.g/255),t.b.push(o.b/255),t.a.push(o.a)}),t}function oRt(e){return`${e}{filter:none}`}function rRt(e,t){return`${e}{filter:url(#${t})}`}function sI(e,t){const n=nRt(t);return` + `}]})}):a.jsx("div",{className:"block-editor-inserter__preview-content-missing",children:m("No preview available.")})}),!l&&a.jsx(Mme,{title:o,icon:r,description:s})]})}function xkt(e,t){const[n,o]=x.useState(!1);return x.useEffect(()=>{n&&Yt(m("Use left and right arrow keys to move through blocks"))},[n]),a.jsx("div",{ref:t,role:"listbox","aria-orientation":"horizontal",onFocus:()=>{o(!0)},onBlur:r=>{!r.currentTarget.contains(r.relatedTarget)&&o(!1)},...e})}const wkt=x.forwardRef(xkt);function _kt(e,t){return a.jsx(S1.Group,{role:"presentation",ref:t,...e})}const kkt=x.forwardRef(_kt);function Skt({isFirst:e,as:t,children:n,...o},r){return a.jsx(S1.Item,{ref:r,role:"option",accessibleWhenDisabled:!0,...o,render:s=>{const i={...s,tabIndex:e?0:s.tabIndex};return t?a.jsx(t,{...i,children:n}):typeof n=="function"?n(i):a.jsx(Ce,{__next40pxDefaultSize:!0,...i,children:n})}})}const Ckt=x.forwardRef(Skt);function H7({children:e}){return a.jsx(S1,{focusShift:!0,focusWrap:"horizontal",render:a.jsx(a.Fragment,{}),children:e})}const U7=({isEnabled:e,blocks:t,icon:n,children:o,pattern:r})=>{const s=G(d=>{const{getBlockType:p}=d(kt);return t.length===1&&p(t[0].name)?.icon},[t]),{startDragging:i,stopDragging:c}=ct(Oe(Q)),l=x.useMemo(()=>r?.type===g1.user&&r?.syncStatus!=="unsynced"?[Ee("core/block",{ref:r.id})]:void 0,[r?.type,r?.syncStatus,r?.id]);if(!e)return o({draggable:!1,onDragStart:void 0,onDragEnd:void 0});const u=l??t;return a.jsx(Gbe,{__experimentalTransferDataType:"wp-blocks",transferData:{type:"inserter",blocks:u},onDragStart:d=>{i();for(const p of u){const f=`wp-block:${p.name}`;d.dataTransfer.items.add("",f)}},onDragEnd:()=>{c()},__experimentalDragComponent:a.jsx(C7,{count:t.length,icon:n||!r&&s,isPattern:!!r}),children:({onDraggableStart:d,onDraggableEnd:p})=>o({draggable:!0,onDragStart:d,onDragEnd:p})})};function qkt({className:e,isFirst:t,item:n,onSelect:o,onHover:r,isDraggable:s,...i}){const c=x.useRef(!1),l=n.icon?{backgroundColor:n.icon.background,color:n.icon.foreground}:{},u=x.useMemo(()=>[Ee(n.name,n.initialAttributes,Ad(n.innerBlocks))],[n.name,n.initialAttributes,n.innerBlocks]),d=Qd(n)&&n.syncStatus!=="unsynced"||Hh(n);return a.jsx(U7,{isEnabled:s&&!n.isDisabled,blocks:u,icon:n.icon,children:({draggable:p,onDragStart:f,onDragEnd:b})=>a.jsx("div",{className:oe("block-editor-block-types-list__list-item",{"is-synced":d}),draggable:p,onDragStart:h=>{c.current=!0,f&&(r(null),f(h))},onDragEnd:h=>{c.current=!1,b&&b(h)},children:a.jsxs(Ckt,{isFirst:t,className:oe("block-editor-block-types-list__item",e),disabled:n.isDisabled,onClick:h=>{h.preventDefault(),o(n,da()?h.metaKey:h.ctrlKey),r(null)},onKeyDown:h=>{const{keyCode:g}=h;g===Gr&&(h.preventDefault(),o(n,da()?h.metaKey:h.ctrlKey),r(null))},onMouseEnter:()=>{c.current||r(n)},onMouseLeave:()=>r(null),...i,children:[a.jsx("span",{className:"block-editor-block-types-list__item-icon",style:l,children:a.jsx(Zn,{icon:n.icon,showColors:!0})}),a.jsx("span",{className:"block-editor-block-types-list__item-title",children:a.jsx(zs,{numberOfLines:3,children:n.title})})]})})})}const Rkt=x.memo(qkt);function Tkt(e,t){const n=[];for(let o=0,r=e.length;o<r;o+=t)n.push(e.slice(o,o+t));return n}function O2({items:e=[],onSelect:t,onHover:n=()=>{},children:o,label:r,isDraggable:s=!0}){const i="block-editor-block-types-list",c=vt(O2,i);return a.jsxs(wkt,{className:i,"aria-label":r,children:[Tkt(e,3).map((l,u)=>a.jsx(kkt,{children:l.map((d,p)=>a.jsx(Rkt,{item:d,className:DB(d.id),onSelect:t,onHover:n,isDraggable:s&&!d.isDisabled,isFirst:u===0&&p===0,rowId:`${c}-${u}`},d.id))},u)),o]})}function y2({title:e,icon:t,children:n}){return a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:"block-editor-inserter__panel-header",children:[a.jsx("h2",{className:"block-editor-inserter__panel-title",children:e}),a.jsx(qo,{icon:t})]}),a.jsx("div",{className:"block-editor-inserter__panel-content",children:n})]})}function kh(){return a.jsxs("div",{className:"block-editor-inserter__no-results",children:[a.jsx(wn,{className:"block-editor-inserter__no-results-icon",icon:Tw}),a.jsx("p",{children:m("No results found.")})]})}const Ekt=e=>e.name.split("/")[0],Wkt=6,Nkt=[];function zee({items:e,collections:t,categories:n,onSelectItem:o,onHover:r,showMostUsedBlocks:s,className:i}){const c=x.useMemo(()=>hO(e,"frecency","desc").slice(0,Wkt),[e]),l=x.useMemo(()=>e.filter(h=>!h.category),[e]),u=x.useMemo(()=>{const h={...t};return Object.keys(t).forEach(g=>{h[g]=e.filter(z=>Ekt(z)===g),h[g].length===0&&delete h[g]}),h},[e,t]);x.useEffect(()=>()=>r(null),[]);const d=E4(n),p=n.length===d.length,f=x.useMemo(()=>Object.entries(t),[t]),b=E4(p?f:Nkt);return a.jsxs("div",{className:i,children:[s&&e.length>3&&!!c.length&&a.jsx(y2,{title:We("Most used","blocks"),children:a.jsx(O2,{items:c,onSelect:o,onHover:r,label:We("Most used","blocks")})}),d.map(h=>{const g=e.filter(z=>z.category===h.slug);return!g||!g.length?null:a.jsx(y2,{title:h.title,icon:h.icon,children:a.jsx(O2,{items:g,onSelect:o,onHover:r,label:h.title})},h.slug)}),p&&l.length>0&&a.jsx(y2,{className:"block-editor-inserter__uncategorized-blocks-panel",title:m("Uncategorized"),children:a.jsx(O2,{items:l,onSelect:o,onHover:r,label:m("Uncategorized")})}),b.map(([h,g])=>{const z=u[h];return!z||!z.length?null:a.jsx(y2,{title:g.title,icon:g.icon,children:a.jsx(O2,{items:z,onSelect:o,onHover:r,label:g.title})},h)})]})}function Bkt({rootClientId:e,onInsert:t,onHover:n,showMostUsedBlocks:o},r){const[s,i,c,l]=M_(e,t);if(!s.length)return a.jsx(kh,{});const u=[],d=[];for(const p of s)p.category!=="reusable"&&(p.isAllowedInCurrentRoot?u.push(p):d.push(p));return a.jsx(H7,{children:a.jsxs("div",{ref:r,children:[!!u.length&&a.jsx(a.Fragment,{children:a.jsx(zee,{items:u,categories:i,collections:c,onSelectItem:l,onHover:n,showMostUsedBlocks:o,className:"block-editor-inserter__insertable-blocks-at-selection"})}),a.jsx(zee,{items:d,categories:i,collections:c,onSelectItem:l,onHover:n,showMostUsedBlocks:o,className:"block-editor-inserter__all-blocks"})]})})}const Lkt=x.forwardRef(Bkt);function Pkt({selectedCategory:e,patternCategories:t,onClickCategory:n}){const o="block-editor-block-patterns-explorer__sidebar";return a.jsx("div",{className:`${o}__categories-list`,children:t.map(({name:r,label:s})=>a.jsx(Ce,{__next40pxDefaultSize:!0,label:s,className:`${o}__categories-list__item`,isPressed:e===r,onClick:()=>{n(r)},children:s},r))})}function jkt({searchValue:e,setSearchValue:t}){return a.jsx("div",{className:"block-editor-block-patterns-explorer__search",children:a.jsx(su,{__nextHasNoMarginBottom:!0,onChange:t,value:e,label:m("Search"),placeholder:m("Search")})})}function Ikt({selectedCategory:e,patternCategories:t,onClickCategory:n,searchValue:o,setSearchValue:r}){return a.jsxs("div",{className:"block-editor-block-patterns-explorer__sidebar",children:[a.jsx(jkt,{searchValue:o,setSearchValue:r}),!o&&a.jsx(Pkt,{selectedCategory:e,patternCategories:t,onClickCategory:n})]})}function dge({currentPage:e,numPages:t,changePage:n,totalItems:o}){return a.jsxs(dt,{className:"block-editor-patterns__grid-pagination-wrapper",children:[a.jsx(Sn,{variant:"muted",children:xe(Dn("%s item","%s items",o),o)}),t>1&&a.jsxs(Ot,{expanded:!1,spacing:3,justify:"flex-start",className:"block-editor-patterns__grid-pagination",children:[a.jsxs(Ot,{expanded:!1,spacing:1,className:"block-editor-patterns__grid-pagination-previous",children:[a.jsx(Ce,{variant:"tertiary",onClick:()=>n(1),disabled:e===1,"aria-label":m("First page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"«"})}),a.jsx(Ce,{variant:"tertiary",onClick:()=>n(e-1),disabled:e===1,"aria-label":m("Previous page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"‹"})})]}),a.jsx(Sn,{variant:"muted",children:xe(We("%1$s of %2$s","paging"),e,t)}),a.jsxs(Ot,{expanded:!1,spacing:1,className:"block-editor-patterns__grid-pagination-next",children:[a.jsx(Ce,{variant:"tertiary",onClick:()=>n(e+1),disabled:e===t,"aria-label":m("Next page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"›"})}),a.jsx(Ce,{variant:"tertiary",onClick:()=>n(t),disabled:e===t,"aria-label":m("Last page"),size:"compact",accessibleWhenDisabled:!0,className:"block-editor-patterns__grid-pagination-button",children:a.jsx("span",{children:"»"})})]})]})]})}const Dkt=({showTooltip:e,title:t,children:n})=>e?a.jsx(B0,{text:t,children:n}):a.jsx(a.Fragment,{children:n});function pge({id:e,isDraggable:t,pattern:n,onClick:o,onHover:r,showTitlesAsTooltip:s,category:i,isSelected:c}){const[l,u]=x.useState(!1),{blocks:d,viewportWidth:p}=n,b=`block-editor-block-patterns-list__item-description-${vt(pge)}`,h=n.type===g1.user,g=x.useMemo(()=>!i||!t?d:(d??[]).map(z=>{const A=jo(z);return A.attributes.metadata?.categories?.includes(i)&&(A.attributes.metadata.categories=[i]),A}),[d,t,i]);return a.jsx(U7,{isEnabled:t,blocks:g,pattern:n,children:({draggable:z,onDragStart:A,onDragEnd:_})=>a.jsx("div",{className:"block-editor-block-patterns-list__list-item",draggable:z,onDragStart:v=>{u(!0),A&&(r?.(null),A(v))},onDragEnd:v=>{u(!1),_&&_(v)},children:a.jsx(Dkt,{showTooltip:s&&!h,title:n.title,children:a.jsxs(S1.Item,{render:a.jsx("div",{role:"option","aria-label":n.title,"aria-describedby":n.description?b:void 0,className:oe("block-editor-block-patterns-list__item",{"block-editor-block-patterns-list__list-item-synced":n.type===g1.user&&!n.syncStatus,"is-selected":c})}),id:e,onClick:()=>{o(n,d),r?.(null)},onMouseEnter:()=>{l||r?.(n)},onMouseLeave:()=>r?.(null),children:[a.jsx(Vd.Async,{placeholder:a.jsx(Fkt,{}),children:a.jsx(Vd,{blocks:d,viewportWidth:p})}),(!s||h)&&a.jsxs(Ot,{className:"block-editor-patterns__pattern-details",spacing:2,children:[h&&!n.syncStatus&&a.jsx("div",{className:"block-editor-patterns__pattern-icon-wrapper",children:a.jsx(wn,{className:"block-editor-patterns__pattern-icon",icon:Bd})}),a.jsx("div",{className:"block-editor-block-patterns-list__item-title",children:n.title})]}),!!n.description&&a.jsx(qn,{id:b,children:n.description})]})})})})}function Fkt(){return a.jsx("div",{className:"block-editor-block-patterns-list__item is-placeholder"})}function $kt({isDraggable:e,blockPatterns:t,onHover:n,onClickPattern:o,orientation:r,label:s=m("Block patterns"),category:i,showTitlesAsTooltip:c,pagingProps:l},u){const[d,p]=x.useState(void 0),[f,b]=x.useState(null);x.useEffect(()=>{const g=t[0]?.name;p(g)},[t]);const h=(g,z)=>{b(g.name),o(g,z)};return a.jsxs(S1,{orientation:r,activeId:d,setActiveId:p,role:"listbox",className:"block-editor-block-patterns-list","aria-label":s,ref:u,children:[t.map(g=>a.jsx(pge,{id:g.name,pattern:g,onClick:h,onHover:n,isDraggable:e,showTitlesAsTooltip:c,category:i,isSelected:!!f&&f===g.name},g.name)),l&&a.jsx(dge,{...l})]})}const qa=x.forwardRef($kt);function Oee({destinationRootClientId:e,destinationIndex:t,rootClientId:n,registry:o}){if(n===e)return t;const r=["",...o.select(Q).getBlockParents(e),e],s=r.indexOf(n);return s!==-1?o.select(Q).getBlockIndex(r[s+1])+1:o.select(Q).getBlockOrder(n).length}function B_({rootClientId:e="",insertionIndex:t,clientId:n,isAppender:o,onSelect:r,shouldFocusBlock:s=!0,selectBlockOnInsert:i=!0}){const c=Fn(),{getSelectedBlock:l,getClosestAllowedInsertionPoint:u,isBlockInsertionPointVisible:d}=ct(G(Q)),{destinationRootClientId:p,destinationIndex:f}=G(M=>{const{getSelectedBlockClientId:y,getBlockRootClientId:k,getBlockIndex:S,getBlockOrder:C,getInsertionPoint:R}=ct(M(Q)),T=y();let E=e,B;const N=R();return t!==void 0?B=t:N&&N.hasOwnProperty("index")?(E=N?.rootClientId?N.rootClientId:e,B=N.index):n?B=S(n):!o&&T?(E=k(T),B=S(T)+1):B=C(E).length,{destinationRootClientId:E,destinationIndex:B}},[e,t,n,o]),{replaceBlocks:b,insertBlocks:h,showInsertionPoint:g,hideInsertionPoint:z,setLastFocus:A}=ct(Oe(Q)),_=x.useCallback((M,y,k=!1,S)=>{(k||s||i)&&A(null);const C=l();!o&&C&&El(C)?b(C.clientId,M,null,s||k?0:null,y):h(M,o||S===void 0?f:Oee({destinationRootClientId:p,destinationIndex:f,rootClientId:S,registry:c}),o||S===void 0?p:S,i,s||k?0:null,y);const R=Array.isArray(M)?M.length:1,T=xe(Dn("%d block added.","%d blocks added.",R),R);Yt(T),r&&r(M)},[o,l,b,h,p,f,r,s,i]),v=x.useCallback(M=>{if(M&&!d()){const y=u(M.name,p);y!==null&&g(y,Oee({destinationRootClientId:p,destinationIndex:f,rootClientId:y,registry:c}))}else z()},[u,d,g,z,p,f]);return[p,_,v]}const L_=(e,t,n,o)=>{const r=x.useMemo(()=>({[bO]:!!o}),[o]),{patternCategories:s,patterns:i,userPatternCategories:c}=G(f=>{const{getSettings:b,__experimentalGetAllowedPatterns:h}=ct(f(Q)),{__experimentalUserPatternCategories:g,__experimentalBlockPatternCategories:z}=b();return{patterns:h(t,r),userPatternCategories:g,patternCategories:z}},[t,r]),{getClosestAllowedInsertionPointForPattern:l}=ct(G(Q)),u=x.useMemo(()=>{const f=[...s];return c?.forEach(b=>{f.find(h=>h.name===b.name)||f.push(b)}),f},[s,c]),{createSuccessNotice:d}=Oe(mt),p=x.useCallback((f,b)=>{const h=l(f,t);if(h===null)return;const g=f.type===g1.user&&f.syncStatus!=="unsynced"?[Ee("core/block",{ref:f.id})]:b;e((g??[]).map(z=>{const A=jo(z);return A.attributes.metadata?.categories?.includes(n)&&(A.attributes.metadata.categories=[n]),A}),f.name,!1,h),d(xe(m('Block pattern "%s" inserted.'),f.title),{type:"snackbar",id:"inserter-notice"})},[d,e,n,t,l,o]);return[i,u,p]},sv=20;function fge(e,t,n,o=""){const[r,s]=x.useState(1),i=Fr(t),c=Fr(o);(i!==t||c!==o)&&r!==1&&s(1);const l=e.length,u=r-1,d=x.useMemo(()=>e.slice(u*sv,u*sv+sv),[u,e]),p=Math.ceil(e.length/sv),f=b=>{ps(n?.current)?.scrollTo(0,0),s(b)};return x.useEffect(function(){ps(n?.current)?.scrollTo(0,0)},[t,n]),{totalItems:l,categoryPatterns:d,numPages:p,changePage:f,currentPage:r}}function Vkt({filterValue:e,filteredBlockPatternsLength:t}){return e?a.jsx(_a,{level:2,lineHeight:"48px",className:"block-editor-block-patterns-explorer__search-results-count",children:xe(Dn("%d pattern found","%d patterns found",t),t)}):null}function Hkt({searchValue:e,selectedCategory:t,patternCategories:n,rootClientId:o}){const r=x.useRef(),s=C1(Yt,500),[i,c]=B_({rootClientId:o,shouldFocusBlock:!0}),[l,,u]=L_(c,i,t),d=x.useMemo(()=>n.map(z=>z.name),[n]),p=x.useMemo(()=>{const z=l.filter(A=>{if(t===Tx.name||t===pO.name&&A.type===g1.user)return!0;if(t==="uncategorized"){var _;const v=(_=A.categories?.some(M=>d.includes(M)))!==null&&_!==void 0?_:!1;return!A.categories?.length||!v}return A.categories?.includes(t)});return e?d7(z,e):z},[e,l,t,d]);x.useEffect(()=>{if(!e)return;const z=p.length,A=xe(Dn("%d result found.","%d results found.",z),z);s(A)},[e,s,p.length]);const f=fge(p,t,r),[b,h]=x.useState(e);e!==b&&(h(e),f.changePage(1));const g=!!p?.length;return a.jsxs("div",{className:"block-editor-block-patterns-explorer__list",ref:r,children:[a.jsx(Vkt,{filterValue:e,filteredBlockPatternsLength:p.length}),a.jsx(H7,{children:g&&a.jsxs(a.Fragment,{children:[a.jsx(qa,{blockPatterns:f.categoryPatterns,onClickPattern:u,isDraggable:!1}),a.jsx(dge,{...f})]})})]})}function Ukt(e,t){return!e.categories||!e.categories.length?!1:e.categories.some(n=>t.some(o=>o.name===n))}function X7(e,t="all"){const[n,o]=L_(void 0,e),r=x.useMemo(()=>t==="all"?n:n.filter(i=>!E2e(i,t)),[t,n]);return x.useMemo(()=>{const i=o.filter(c=>r.some(l=>l.categories?.includes(c.name))).sort((c,l)=>c.label.localeCompare(l.label));return r.some(c=>!Ukt(c,o))&&!i.find(c=>c.name==="uncategorized")&&i.push({name:"uncategorized",label:We("Uncategorized")}),r.some(c=>c.blockTypes?.includes("core/post-content"))&&i.unshift(T2e),r.some(c=>c.type===g1.user)&&i.unshift(pO),r.length>0&&i.unshift({name:Tx.name,label:Tx.label}),Yt(xe(Dn("%d category button displayed.","%d category buttons displayed.",i.length),i.length)),i},[o,r])}function Xkt({initialCategory:e,rootClientId:t}){const[n,o]=x.useState(""),[r,s]=x.useState(e),i=X7(t);return a.jsxs("div",{className:"block-editor-block-patterns-explorer",children:[a.jsx(Ikt,{selectedCategory:r,patternCategories:i,onClickCategory:s,searchValue:n,setSearchValue:o}),a.jsx(Hkt,{searchValue:n,selectedCategory:r,patternCategories:i,rootClientId:t})]})}function Gkt({onModalClose:e,...t}){return a.jsx(Zo,{title:m("Patterns"),onRequestClose:e,isFullScreen:!0,children:a.jsx(Xkt,{...t})})}function Kkt({title:e}){return a.jsx(dt,{spacing:0,children:a.jsx(mo,{children:a.jsx(t1,{marginBottom:0,paddingX:4,paddingY:3,children:a.jsxs(Ot,{spacing:2,children:[a.jsx(ic.BackButton,{style:{minWidth:24,padding:0},icon:jt()?ma:Ll,size:"small",label:m("Back")}),a.jsx(t1,{children:a.jsx(_a,{level:5,children:e})})]})})})})}function bge({categories:e,children:t}){return a.jsxs(ic,{initialPath:"/",className:"block-editor-inserter__mobile-tab-navigation",children:[a.jsx(ic.Screen,{path:"/",children:a.jsx(tb,{children:e.map(n=>a.jsx(ic.Button,{path:`/category/${n.name}`,as:oO,isAction:!0,children:a.jsxs(Ot,{children:[a.jsx(eu,{children:n.label}),a.jsx(wn,{icon:jt()?Ll:ma})]})},n.name))})}),e.map(n=>a.jsxs(ic.Screen,{path:`/category/${n.name}`,children:[a.jsx(Kkt,{title:m("Back")}),t(n)]},n.name))]})}const yee=e=>e!=="all"&&e!=="user",Ykt=e=>e?.name===pO.name,Zkt=[{value:"all",label:We("All","patterns")},{value:g1.directory,label:m("Pattern Directory")},{value:g1.theme,label:m("Theme & Plugins")},{value:g1.user,label:m("User")}];function Qkt({setPatternSyncFilter:e,setPatternSourceFilter:t,patternSyncFilter:n,patternSourceFilter:o,scrollContainerRef:r,category:s}){const i=s?.name===pO.name?g1.user:o,c=yee(i),l=Ykt(s),u=x.useMemo(()=>[{value:"all",label:We("All","patterns")},{value:Rx.full,label:We("Synced","patterns"),disabled:c},{value:Rx.unsynced,label:We("Not synced","patterns"),disabled:c}],[c]);function d(p){t(p),yee(p)&&e("all")}return a.jsx(a.Fragment,{children:a.jsx(c0,{popoverProps:{placement:"right-end"},label:m("Filter patterns"),toggleProps:{size:"compact"},icon:a.jsx(wn,{icon:a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M10 17.5H14V16H10V17.5ZM6 6V7.5H18V6H6ZM8 12.5H16V11H8V12.5Z",fill:"currentColor"})})}),children:()=>a.jsxs(a.Fragment,{children:[!l&&a.jsx(Cn,{label:m("Source"),children:a.jsx(kf,{choices:Zkt,onSelect:p=>{d(p),r.current?.scrollTo(0,0)},value:i})}),a.jsx(Cn,{label:m("Type"),children:a.jsx(kf,{choices:u,onSelect:p=>{e(p),r.current?.scrollTo(0,0)},value:n})}),a.jsx("div",{className:"block-editor-inserter__patterns-filter-help",children:cr(m("Patterns are available from the <Link>WordPress.org Pattern Directory</Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced."),{Link:a.jsx(hr,{href:m("https://wordpress.org/patterns/")})})})]})})})}const Jkt=()=>{};function hge({rootClientId:e,onInsert:t,onHover:n=Jkt,category:o,showTitlesAsTooltip:r}){const[s,,i]=L_(t,e,o?.name),[c,l]=x.useState("all"),[u,d]=x.useState("all"),p=X7(e,u),f=x.useRef(),b=x.useMemo(()=>s.filter(_=>E2e(_,u,c)?!1:o.name===Tx?.name||o.name===pO?.name&&_.type===g1.user||o.name===T2e?.name&&_.blockTypes?.includes("core/post-content")?!0:o.name==="uncategorized"?_.categories?!_.categories.some(v=>p.some(M=>M.name===v)):!0:_.categories?.includes(o.name)),[s,p,o.name,u,c]),h=fge(b,o,f),{changePage:g}=h;x.useEffect(()=>()=>n(null),[]);const z=x.useCallback(_=>{l(_),g(1)},[l,g]),A=x.useCallback(_=>{d(_),g(1)},[d,g]);return a.jsxs(a.Fragment,{children:[a.jsxs(dt,{spacing:2,className:"block-editor-inserter__patterns-category-panel-header",children:[a.jsxs(Ot,{children:[a.jsx(eu,{children:a.jsx(_a,{className:"block-editor-inserter__patterns-category-panel-title",size:13,level:4,as:"div",children:o?.label})}),a.jsx(Qkt,{patternSyncFilter:c,patternSourceFilter:u,setPatternSyncFilter:z,setPatternSourceFilter:A,scrollContainerRef:f,category:o})]}),!b.length&&a.jsx(Sn,{variant:"muted",className:"block-editor-inserter__patterns-category-no-results",children:m("No results found")})]}),b.length>0&&a.jsxs(a.Fragment,{children:[a.jsx(Sn,{size:"12",as:"p",className:"block-editor-inserter__help-text",children:m("Drag and drop patterns into the canvas.")}),a.jsx(qa,{ref:f,blockPatterns:h.categoryPatterns,onClickPattern:i,onHover:n,label:o.label,orientation:"vertical",category:o.name,isDraggable:!0,showTitlesAsTooltip:r,patternFilter:u,pagingProps:h})]})]})}const{Tabs:iv}=ct(tr);function mge({categories:e,selectedCategory:t,onSelectCategory:n,children:o}){const i={type:"tween",duration:$1()?0:.25,ease:[.6,0,.4,1]},c=Fr(t),l=t?t.name:null,[u,d]=x.useState(),p=e?.[0]?.name;return l===null&&!u&&p&&d(p),a.jsxs(iv,{selectOnMove:!1,selectedTabId:l,orientation:"vertical",onSelect:f=>{n(e.find(b=>b.name===f))},activeTabId:u,onActiveTabIdChange:d,children:[a.jsx(iv.TabList,{className:"block-editor-inserter__category-tablist",children:e.map(f=>a.jsx(iv.Tab,{tabId:f.name,"aria-current":f.name===t?.name?"true":void 0,children:f.label},f.name))}),e.map(f=>a.jsx(iv.TabPanel,{tabId:f.name,focusable:!1,children:a.jsx(Rr.div,{className:"block-editor-inserter__category-panel",initial:c?"open":"closed",animate:"open",variants:{open:{transform:"translateX( 0 )",transitionEnd:{zIndex:"1"}},closed:{transform:"translateX( -100% )",zIndex:"-1"}},transition:i,children:o})},f.name))]})}function e6t({onSelectCategory:e,selectedCategory:t,onInsert:n,rootClientId:o,children:r}){const[s,i]=x.useState(!1),c=X7(o),l=Yn("medium","<");return c.length?a.jsxs(a.Fragment,{children:[!l&&a.jsxs("div",{className:"block-editor-inserter__block-patterns-tabs-container",children:[a.jsx(mge,{categories:c,selectedCategory:t,onSelectCategory:e,children:r}),a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-inserter__patterns-explore-button",onClick:()=>i(!0),variant:"secondary",children:m("Explore all patterns")})]}),l&&a.jsx(bge,{categories:c,children:u=>a.jsx("div",{className:"block-editor-inserter__category-panel",children:a.jsx(hge,{onInsert:n,rootClientId:o,category:u},u.name)})}),s&&a.jsx(Gkt,{initialCategory:t?.name||c[0]?.name,patternCategories:c,onModalClose:()=>i(!1),rootClientId:o})]}):a.jsx(kh,{})}const t6t={image:"img",video:"video",audio:"audio"};function gge(e,t){const n={id:e.id||void 0,caption:e.caption||void 0},o=e.url,r=e.alt||void 0;t==="image"?(n.url=o,n.alt=r):["video","audio"].includes(t)&&(n.src=o);const s=t6t[t],i=a.jsx(s,{src:e.previewUrl||o,alt:r,controls:t==="audio"?!0:void 0,inert:"true",onError:({currentTarget:c})=>{c.src===e.previewUrl&&(c.src=o)}});return[Ee(`core/${t}`,n),i]}const n6t=["image"],Aee=25,o6t={position:"bottom left",className:"block-editor-inserter__media-list__item-preview-options__popover"};function r6t({category:e,media:t}){if(!e.getReportUrl)return null;const n=e.getReportUrl(t);return a.jsx(c0,{className:"block-editor-inserter__media-list__item-preview-options",label:m("Options"),popoverProps:o6t,icon:Wc,children:()=>a.jsx(Cn,{children:a.jsx(Ct,{onClick:()=>window.open(n,"_blank").focus(),icon:vf,children:xe(m("Report %s"),e.mediaType)})})})}function s6t({onClose:e,onSubmit:t}){return a.jsxs(Zo,{title:m("Insert external image"),onRequestClose:e,className:"block-editor-inserter-media-tab-media-preview-inserter-external-image-modal",children:[a.jsxs(dt,{spacing:3,children:[a.jsx("p",{children:m("This image cannot be uploaded to your Media Library, but it can still be inserted as an external image.")}),a.jsx("p",{children:m("External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation.")})]}),a.jsxs(Yo,{className:"block-editor-block-lock-modal__actions",justify:"flex-end",expanded:!1,children:[a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:e,children:m("Cancel")})}),a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:t,children:m("Insert")})})]})]})}function i6t({media:e,onClick:t,category:n}){const[o,r]=x.useState(!1),[s,i]=x.useState(!1),[c,l]=x.useState(!1),[u,d]=x.useMemo(()=>gge(e,n.mediaType),[e,n.mediaType]),{createErrorNotice:p,createSuccessNotice:f}=Oe(mt),{getSettings:b,getBlock:h}=G(Q),{updateBlockAttributes:g}=Oe(Q),z=x.useCallback(y=>{if(c)return;const k=b(),S=jo(y),{id:C,url:R,caption:T}=S.attributes;if(!C&&!k.mediaUpload){r(!0);return}if(C){t(S);return}l(!0),window.fetch(R).then(E=>E.blob()).then(E=>{const B=If(R)||"image.jpg",N=new File([E],B,{type:E.type});k.mediaUpload({filesList:[N],additionalData:{caption:T},onFileChange([j]){Nr(j.url)||(h(S.clientId)?g(S.clientId,{...S.attributes,id:j.id,url:j.url}):(t({...S,attributes:{...S.attributes,id:j.id,url:j.url}}),f(m("Image uploaded and inserted."),{type:"snackbar",id:"inserter-notice"})),l(!1))},allowedTypes:n6t,onError(j){p(j,{type:"snackbar",id:"inserter-notice"}),l(!1)}})}).catch(()=>{r(!0),l(!1)})},[c,b,t,f,g,p,h]),A=typeof e.title=="string"?e.title:e.title?.rendered||m("no title");let _;if(A.length>Aee){const y="...";_=A.slice(0,Aee-y.length)+y}const v=x.useCallback(()=>i(!0),[]),M=x.useCallback(()=>i(!1),[]);return a.jsxs(a.Fragment,{children:[a.jsx(U7,{isEnabled:!0,blocks:[u],children:({draggable:y,onDragStart:k,onDragEnd:S})=>a.jsx("div",{className:oe("block-editor-inserter__media-list__list-item",{"is-hovered":s}),draggable:y,onDragStart:k,onDragEnd:S,children:a.jsxs("div",{onMouseEnter:v,onMouseLeave:M,children:[a.jsx(B0,{text:_||A,children:a.jsx(S1.Item,{render:a.jsx("div",{"aria-label":A,role:"option",className:"block-editor-inserter__media-list__item"}),onClick:()=>z(u),children:a.jsxs("div",{className:"block-editor-inserter__media-list__item-preview",children:[d,c&&a.jsx("div",{className:"block-editor-inserter__media-list__item-preview-spinner",children:a.jsx(Xn,{})})]})})}),!c&&a.jsx(r6t,{category:n,media:e})]})})}),o&&a.jsx(s6t,{onClose:()=>r(!1),onSubmit:()=>{t(jo(u)),f(m("Image inserted."),{type:"snackbar",id:"inserter-notice"}),r(!1)}})]})}function a6t({mediaList:e,category:t,onClick:n,label:o=m("Media List")}){return a.jsx(S1,{role:"listbox",className:"block-editor-inserter__media-list","aria-label":o,children:e.map((r,s)=>a.jsx(i6t,{media:r,category:t,onClick:n},r.id||r.sourceId||s))})}function c6t(e,t={}){const[n,o]=x.useState(),[r,s]=x.useState(!1),i=x.useRef();return x.useEffect(()=>{(async()=>{const c=JSON.stringify({category:e.name,...t});i.current=c,s(!0),o([]);const l=await e.fetch?.(t);c===i.current&&(o(l),s(!1))})()},[e.name,...Object.values(t)]),{mediaList:n,isLoading:r}}function l6t(e){const[t,n]=x.useState([]),o=G(c=>ct(c(Q)).getInserterMediaCategories(),[]),{canInsertImage:r,canInsertVideo:s,canInsertAudio:i}=G(c=>{const{canInsertBlockType:l}=c(Q);return{canInsertImage:l("core/image",e),canInsertVideo:l("core/video",e),canInsertAudio:l("core/audio",e)}},[e]);return x.useEffect(()=>{(async()=>{const c=[];if(!o)return;const l=new Map(await Promise.all(o.map(async d=>{if(d.isExternalResource)return[d.name,!0];let p=[];try{p=await d.fetch({per_page:1})}catch{}return[d.name,!!p.length]}))),u={image:r,video:s,audio:i};o.forEach(d=>{u[d.mediaType]&&l.get(d.name)&&c.push(d)}),c.length&&n(c)})()},[r,s,i,o]),t}const u6t=10;function Mge({rootClientId:e,onInsert:t,category:n}){const[o,r,s]=S0e(),{mediaList:i,isLoading:c}=c6t(n,{per_page:s?20:u6t,search:s}),l="block-editor-inserter__media-panel",u=n.labels.search_items||m("Search");return a.jsxs("div",{className:l,children:[a.jsx(su,{__nextHasNoMarginBottom:!0,className:`${l}-search`,onChange:r,value:o,label:u,placeholder:u}),c&&a.jsx("div",{className:`${l}-spinner`,children:a.jsx(Xn,{})}),!c&&!i?.length&&a.jsx(kh,{}),!c&&!!i?.length&&a.jsx(a6t,{rootClientId:e,onClick:t,mediaList:i,category:n})]})}function Hd({fallback:e=null,children:t}){return G(o=>{const{getSettings:r}=o(Q);return!!r().mediaUpload},[])?t:e}const d6t=()=>null,ab=ap("editor.MediaUpload")(d6t),p6t=["image","video","audio"];function f6t({rootClientId:e,selectedCategory:t,onSelectCategory:n,onInsert:o,children:r}){const s=l6t(e),i=Yn("medium","<"),c="block-editor-inserter__media-tabs",l=x.useCallback(d=>{if(!d?.url)return;const[p]=gge(d,d.type);o(p)},[o]),u=x.useMemo(()=>s.map(d=>({...d,label:d.labels.name})),[s]);return u.length?a.jsxs(a.Fragment,{children:[!i&&a.jsxs("div",{className:`${c}-container`,children:[a.jsx(mge,{categories:u,selectedCategory:t,onSelectCategory:n,children:r}),a.jsx(Hd,{children:a.jsx(ab,{multiple:!1,onSelect:l,allowedTypes:p6t,render:({open:d})=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:p=>{p.target.focus(),d()},className:"block-editor-inserter__media-library-button",variant:"secondary","data-unstable-ignore-focus-outside-for-relatedtarget":".media-modal",children:m("Open Media Library")})})})]}),i&&a.jsx(bge,{categories:u,children:d=>a.jsx(Mge,{onInsert:o,rootClientId:e,category:d})})]}):a.jsx(kh,{})}const{Fill:zge,Slot:b6t}=Qn("__unstableInserterMenuExtension");zge.Slot=b6t;const h6t=9,m6t=[];function Oge({filterValue:e,onSelect:t,onHover:n,onHoverPattern:o,rootClientId:r,clientId:s,isAppender:i,__experimentalInsertionIndex:c,maxBlockPatterns:l,maxBlockTypes:u,showBlockDirectory:d=!1,isDraggable:p=!0,shouldFocusBlock:f=!0,prioritizePatterns:b,selectBlockOnInsert:h,isQuick:g}){const z=C1(Yt,500),{prioritizedBlocks:A}=G($=>({prioritizedBlocks:$(Q).getBlockListSettings(r)?.prioritizedInserterBlocks||m6t}),[r]),[_,v]=B_({onSelect:t,rootClientId:r,clientId:s,isAppender:i,insertionIndex:c,shouldFocusBlock:f,selectBlockOnInsert:h}),[M,y,k,S]=M_(_,v,g),[C,,R]=L_(v,_),T=x.useMemo(()=>{if(l===0)return[];const $=d7(C,e);return l!==void 0?$.slice(0,l):$},[e,C,l]);let E=u;b&&T.length>2&&(E=0);const B=x.useMemo(()=>{if(E===0)return[];const $=M.filter(Z=>Z.name!=="core/block");let F=hO($,"frecency","desc");!e&&A.length&&(F=whe(F,A));const X=xhe(F,y,k,e);return E!==void 0?X.slice(0,E):X},[e,M,y,k,E,A]);x.useEffect(()=>{if(!e)return;const $=B.length+T.length,F=xe(Dn("%d result found.","%d results found.",$),$);z(F)},[e,z,B,T]);const N=E4(B,{step:h6t}),j=B.length>0||T.length>0,I=!!B.length&&a.jsx(y2,{title:a.jsx(qn,{children:m("Blocks")}),children:a.jsx(O2,{items:N,onSelect:S,onHover:n,label:m("Blocks"),isDraggable:p})}),P=!!T.length&&a.jsx(y2,{title:a.jsx(qn,{children:m("Block patterns")}),children:a.jsx("div",{className:"block-editor-inserter__quick-inserter-patterns",children:a.jsx(qa,{blockPatterns:T,onClickPattern:R,onHover:o,isDraggable:p})})});return a.jsxs(H7,{children:[!d&&!j&&a.jsx(kh,{}),b?P:I,!!B.length&&!!T.length&&a.jsx("div",{className:"block-editor-inserter__quick-inserter-separator"}),b?I:P,d&&a.jsx(zge.Slot,{fillProps:{onSelect:S,onHover:n,filterValue:e,hasItems:j,rootClientId:_},children:$=>$.length?$:j?null:a.jsx(kh,{})})]})}const{Tabs:av}=ct(tr);function g6t({defaultTabId:e,onClose:t,onSelect:n,selectedTab:o,tabs:r,closeButtonLabel:s},i){return a.jsx("div",{className:"block-editor-tabbed-sidebar",children:a.jsxs(av,{selectOnMove:!1,defaultTabId:e,onSelect:n,selectedTabId:o,children:[a.jsxs("div",{className:"block-editor-tabbed-sidebar__tablist-and-close-button",children:[a.jsx(Ce,{className:"block-editor-tabbed-sidebar__close-button",icon:rp,label:s,onClick:()=>t(),size:"compact"}),a.jsx(av.TabList,{className:"block-editor-tabbed-sidebar__tablist",ref:i,children:r.map(c=>a.jsx(av.Tab,{tabId:c.name,className:"block-editor-tabbed-sidebar__tab",children:c.title},c.name))})]}),r.map(c=>a.jsx(av.TabPanel,{tabId:c.name,focusable:!1,className:"block-editor-tabbed-sidebar__tabpanel",ref:c.panelRef,children:c.panel},c.name))]})})}const yge=x.forwardRef(g6t);function Age(e=!0){const{postId:t}=x.useContext(Cf),{setZoomLevel:n,resetZoomLevel:o}=ct(Oe(Q)),{isZoomedOut:r,isZoomOut:s}=G(u=>{const{isZoomOut:d}=ct(u(Q));return{isZoomedOut:d(),isZoomOut:d}},[]),i=x.useRef(!1),c=x.useRef(e),l=x.useRef(t);x.useEffect(()=>{r!==c.current&&(i.current=!1)},[r]),x.useEffect(()=>(c.current=e,l.current!==t&&(i.current=!0),e!==s()&&(i.current=!0,e?n("auto-scaled"):o()),()=>{i.current&&s()&&o()}),[e,s,t,o,n])}const M6t=()=>{};function z6t({rootClientId:e,clientId:t,isAppender:n,__experimentalInsertionIndex:o,onSelect:r,showInserterHelpPanel:s,showMostUsedBlocks:i,__experimentalFilterValue:c="",shouldFocusBlock:l=!0,onPatternCategorySelection:u,onClose:d,__experimentalInitialTab:p,__experimentalInitialCategory:f},b){const h=G(je=>ct(je(Q)).isZoomOut(),[]),g=G(je=>!!ct(je(Q)).getSectionRootClientId(),[]),[z,A,_]=S0e(c),[v,M]=x.useState(null),[y,k]=x.useState(f),[S,C]=x.useState("all"),[R,T]=x.useState(null),E=Yn("large");function B(){return p||(h?"patterns":"blocks")}const[N,j]=x.useState(B());Age(g&&(N==="patterns"||N==="media")&&E);const[P,$,F]=B_({rootClientId:e,clientId:t,isAppender:n,insertionIndex:o,shouldFocusBlock:l}),X=x.useRef(),Z=x.useCallback((je,ie,we,re)=>{$(je,ie,we,re),r(je),window.requestAnimationFrame(()=>{!l&&!X.current?.contains(b.current.ownerDocument.activeElement)&&X.current?.querySelector("button").focus()})},[$,r,l]),V=x.useCallback((je,ie,...we)=>{F(!1),$(je,{patternName:ie},...we),r()},[$,r]),ee=x.useCallback(je=>{F(je),M(je)},[F,M]),te=x.useCallback((je,ie)=>{k(je),C(ie),u?.()},[k,u]),J=N==="patterns"&&!_&&!!y,ue=N==="media"&&!!R,ce=x.useMemo(()=>N==="media"?null:a.jsxs(a.Fragment,{children:[a.jsx(su,{__nextHasNoMarginBottom:!0,className:"block-editor-inserter__search",onChange:je=>{v&&M(null),A(je)},value:z,label:m("Search"),placeholder:m("Search")}),!!_&&a.jsx(Oge,{filterValue:_,onSelect:r,onHover:ee,rootClientId:e,clientId:t,isAppender:n,__experimentalInsertionIndex:o,showBlockDirectory:!0,shouldFocusBlock:l,prioritizePatterns:N==="patterns"})]}),[N,v,M,A,z,_,r,ee,l,t,e,o,n]),me=x.useMemo(()=>a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"block-editor-inserter__block-list",children:a.jsx(Lkt,{ref:X,rootClientId:P,onInsert:Z,onHover:ee,showMostUsedBlocks:i})}),s&&a.jsxs("div",{className:"block-editor-inserter__tips",children:[a.jsx(qn,{as:"h2",children:m("A tip for using the block editor")}),a.jsx(Txt,{})]})]}),[P,Z,ee,i,s]),de=x.useMemo(()=>a.jsx(e6t,{rootClientId:P,onInsert:V,onSelectCategory:te,selectedCategory:y,children:J&&a.jsx(hge,{rootClientId:P,onInsert:V,category:y,patternFilter:S,showTitlesAsTooltip:!0})}),[P,V,te,S,y,J]),Ae=x.useMemo(()=>a.jsx(f6t,{rootClientId:P,selectedCategory:R,onSelectCategory:T,onInsert:Z,children:ue&&a.jsx(Mge,{rootClientId:P,onInsert:Z,category:R})}),[P,Z,R,T,ue]),ye=je=>{je!=="patterns"&&k(null),j(je)},Ne=x.useRef();return x.useLayoutEffect(()=>{Ne.current&&window.requestAnimationFrame(()=>{Ne.current.querySelector('[role="tab"][aria-selected="true"]')?.focus()})},[]),a.jsxs("div",{className:oe("block-editor-inserter__menu",{"show-panel":J||ue,"is-zoom-out":h}),ref:b,children:[a.jsx("div",{className:"block-editor-inserter__main-area",children:a.jsx(yge,{ref:Ne,onSelect:ye,onClose:d,selectedTab:N,closeButtonLabel:m("Close Block Inserter"),tabs:[{name:"blocks",title:m("Blocks"),panel:a.jsxs(a.Fragment,{children:[ce,N==="blocks"&&!_&&me]})},{name:"patterns",title:m("Patterns"),panel:a.jsxs(a.Fragment,{children:[ce,N==="patterns"&&!_&&de]})},{name:"media",title:m("Media"),panel:a.jsxs(a.Fragment,{children:[ce,Ae]})}]})}),s&&v&&a.jsx(Io,{className:"block-editor-inserter__preview-container__popover",placement:"right-start",offset:16,focusOnMount:!1,animate:!1,children:a.jsx(uge,{item:v})})]})}const vge=x.forwardRef(z6t);function O6t(e,t){return a.jsx(vge,{...e,onPatternCategorySelection:M6t,ref:t})}const y6t=x.forwardRef(O6t),A6t=6,v6t=6;function xge({onSelect:e,rootClientId:t,clientId:n,isAppender:o,selectBlockOnInsert:r,hasSearch:s=!0}){const[i,c]=x.useState(""),[l,u]=B_({onSelect:e,rootClientId:t,clientId:n,isAppender:o,selectBlockOnInsert:r}),[d]=M_(l,u,!0),{setInserterIsOpened:p,insertionIndex:f}=G(g=>{const{getSettings:z,getBlockIndex:A,getBlockCount:_}=g(Q),v=z(),M=A(n),y=_();return{setInserterIsOpened:v.__experimentalSetIsInserterOpened,insertionIndex:M===-1?y:M}},[n]),b=s&&d.length>A6t;x.useEffect(()=>{p&&p(!1)},[p]);const h=()=>{p({filterValue:i,onSelect:e,rootClientId:t,insertionIndex:f})};return a.jsxs("div",{className:oe("block-editor-inserter__quick-inserter",{"has-search":b,"has-expand":p}),children:[b&&a.jsx(su,{__nextHasNoMarginBottom:!0,className:"block-editor-inserter__search",value:i,onChange:g=>{c(g)},label:m("Search"),placeholder:m("Search")}),a.jsx("div",{className:"block-editor-inserter__quick-inserter-results",children:a.jsx(Oge,{filterValue:i,onSelect:e,rootClientId:t,clientId:n,isAppender:o,maxBlockPatterns:0,maxBlockTypes:v6t,isDraggable:!1,selectBlockOnInsert:r,isQuick:!0})}),p&&a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-inserter__quick-inserter-expand",onClick:h,"aria-label":m("Browse all. This will open the main inserter panel in the editor toolbar."),children:m("Browse all")})]})}const x6t=({onToggle:e,disabled:t,isOpen:n,blockTitle:o,hasSingleBlockType:r,toggleProps:s={}})=>{const{as:i=Ce,label:c,onClick:l,...u}=s;let d=c;!d&&r?d=xe(We("Add %s","directly add the only allowed block"),o):d||(d=We("Add block","Generic label for block inserter button"));function p(f){e&&e(f),l&&l(f)}return a.jsx(i,{__next40pxDefaultSize:s.as?void 0:!0,icon:Fs,label:d,tooltipPosition:"bottom",onClick:p,className:"block-editor-inserter__toggle","aria-haspopup":r?!1:"true","aria-expanded":r?!1:n,disabled:t,...u})};class w6t extends x.Component{constructor(){super(...arguments),this.onToggle=this.onToggle.bind(this),this.renderToggle=this.renderToggle.bind(this),this.renderContent=this.renderContent.bind(this)}onToggle(t){const{onToggle:n}=this.props;n&&n(t)}renderToggle({onToggle:t,isOpen:n}){const{disabled:o,blockTitle:r,hasSingleBlockType:s,directInsertBlock:i,toggleProps:c,hasItems:l,renderToggle:u=x6t}=this.props;return u({onToggle:t,isOpen:n,disabled:o||!l,blockTitle:r,hasSingleBlockType:s,directInsertBlock:i,toggleProps:c})}renderContent({onClose:t}){const{rootClientId:n,clientId:o,isAppender:r,showInserterHelpPanel:s,__experimentalIsQuick:i,onSelectOrClose:c,selectBlockOnInsert:l}=this.props;return i?a.jsx(xge,{onSelect:u=>{const d=Array.isArray(u)&&u?.length?u[0]:u;c&&typeof c=="function"&&c(d),t()},rootClientId:n,clientId:o,isAppender:r,selectBlockOnInsert:l}):a.jsx(y6t,{onSelect:()=>{t()},rootClientId:n,clientId:o,isAppender:r,showInserterHelpPanel:s})}render(){const{position:t,hasSingleBlockType:n,directInsertBlock:o,insertOnlyAllowedBlock:r,__experimentalIsQuick:s,onSelectOrClose:i}=this.props;return n||o?this.renderToggle({onToggle:r}):a.jsx(so,{className:"block-editor-inserter",contentClassName:oe("block-editor-inserter__popover",{"is-quick":s}),popoverProps:{position:t,shift:!0},onToggle:this.onToggle,open:this.props.open,expandOnMobile:!0,headerTitle:m("Add a block"),renderToggle:this.renderToggle,renderContent:this.renderContent,onClose:i})}}const xm=Co([Ul((e,{clientId:t,rootClientId:n,shouldDirectInsert:o=!0})=>{const{getBlockRootClientId:r,hasInserterItems:s,getAllowedBlocks:i,getDirectInsertBlock:c}=e(Q),{getBlockVariations:l}=e(kt);n=n||r(t)||void 0;const u=i(n),d=o&&c(n),p=u?.length===1&&l(u[0].name,"inserter")?.length===0;let f=!1;return p&&(f=u[0]),{hasItems:s(n),hasSingleBlockType:p,blockTitle:f?f.title:"",allowedBlockType:f,directInsertBlock:d,rootClientId:n}}),Ff((e,t,{select:n})=>({insertOnlyAllowedBlock(){const{rootClientId:o,clientId:r,isAppender:s,hasSingleBlockType:i,allowedBlockType:c,directInsertBlock:l,onSelectOrClose:u,selectBlockOnInsert:d}=t;if(!i&&!l)return;function p(z){const{getBlock:A,getPreviousBlockClientId:_}=n(Q);if(!z||!r&&!o)return{};const v={};let M={};if(r){const y=A(r),k=A(_(r));y?.name===k?.name&&(M=k?.attributes||{})}else{const y=A(o);if(y?.innerBlocks?.length){const k=y.innerBlocks[y.innerBlocks.length-1];l&&l?.name===k.name&&(M=k.attributes)}}return z.forEach(y=>{M.hasOwnProperty(y)&&(v[y]=M[y])}),v}function f(){const{getBlockIndex:z,getBlockSelectionEnd:A,getBlockOrder:_,getBlockRootClientId:v}=n(Q);if(r)return z(r);const M=A();return!s&&M&&v(M)===o?z(M)+1:_(o).length}const{insertBlock:b}=e(Q);let h;if(l){const z=p(l.attributesToCopy);h=Ee(l.name,{...l.attributes||{},...z})}else h=Ee(c.name);b(h,f(),o,d),u&&u({clientId:h?.clientId});const g=xe(m("%s block added"),c.title);Yt(g)}})),J6e(({hasItems:e,isAppender:t,rootClientId:n,clientId:o})=>e||!t&&!n&&!o)])(w6t),_6t="\uFEFF";function wge({rootClientId:e}){const{showPrompt:t,isLocked:n,placeholder:o,isManualGrid:r}=G(u=>{const{getBlockCount:d,getSettings:p,getTemplateLock:f,getBlockAttributes:b}=u(Q),h=!d(e),{bodyPlaceholder:g}=p();return{showPrompt:h,isLocked:!!f(e),placeholder:g,isManualGrid:b(e)?.layout?.isManualPlacement}},[e]),{insertDefaultBlock:s,startTyping:i}=Oe(Q);if(n||r)return null;const c=Lt(o)||m("Type / to choose a block"),l=()=>{s(void 0,e),i()};return a.jsxs("div",{"data-root-client-id":e||"",className:oe("block-editor-default-block-appender",{"has-visible-prompt":t}),children:[a.jsx("p",{tabIndex:"0",role:"button","aria-label":m("Add default block"),className:"block-editor-default-block-appender__content",onKeyDown:u=>{(Gr===u.keyCode||$N===u.keyCode)&&l()},onClick:()=>l(),onFocus:()=>{t&&l()},children:t?c:_6t}),a.jsx(xm,{rootClientId:e,position:"bottom right",isAppender:!0,__experimentalIsQuick:!0})]})}function _ge({rootClientId:e,className:t,onFocus:n,tabIndex:o,onSelect:r},s){return a.jsx(xm,{position:"bottom center",rootClientId:e,__experimentalIsQuick:!0,onSelectOrClose:(...i)=>{r&&typeof r=="function"&&r(...i)},renderToggle:({onToggle:i,disabled:c,isOpen:l,blockTitle:u,hasSingleBlockType:d})=>{const p=!d,f=d?xe(We("Add %s","directly add the only allowed block"),u):We("Add block","Generic label for block inserter button");return a.jsx(Ce,{__next40pxDefaultSize:!0,ref:s,onFocus:n,tabIndex:o,className:oe(t,"block-editor-button-block-appender"),onClick:i,"aria-haspopup":p?"true":void 0,"aria-expanded":p?l:void 0,disabled:c,label:f,showTooltip:!0,children:a.jsx(wn,{icon:Fs})})},isAppender:!0})}x.forwardRef((e,t)=>(Ke("wp.blockEditor.ButtonBlockerAppender",{alternative:"wp.blockEditor.ButtonBlockAppender",since:"5.9"}),_ge(e,t)));const P_=x.forwardRef(_ge);function k6t({rootClientId:e}){return G(n=>n(Q).canInsertBlockType(Mr(),e))?a.jsx(wge,{rootClientId:e}):a.jsx(P_,{rootClientId:e,className:"block-list-appender__toggle"})}function S6t({rootClientId:e,CustomAppender:t,className:n,tagName:o="div"}){const r=G(s=>{const{getBlockInsertionPoint:i,isBlockInsertionPointVisible:c,getBlockCount:l}=s(Q),u=i();return c()&&e===u?.rootClientId&&l(e)===0},[e]);return a.jsx(o,{tabIndex:-1,className:oe("block-list-appender wp-block",n,{"is-drag-over":r}),contentEditable:!1,"data-block":!0,children:t?a.jsx(t,{}):a.jsx(k6t,{rootClientId:e})})}function Ux(e){return Mn(t=>{if(!e)return;function n(r){const{deltaX:s,deltaY:i}=r;e.current.scrollBy(s,i)}const o={passive:!0};return t.addEventListener("wheel",n,o),()=>{t.removeEventListener("wheel",n,o)}},[e])}const C6t=Number.MAX_SAFE_INTEGER;x.createContext();function kge({previousClientId:e,nextClientId:t,children:n,__unstablePopoverSlot:o,__unstableContentRef:r,operation:s="insert",nearestSide:i="right",...c}){const[l,u]=x.useReducer(_=>(_+1)%C6t,0),{orientation:d,rootClientId:p,isVisible:f}=G(_=>{const{getBlockListSettings:v,getBlockRootClientId:M,isBlockVisible:y}=_(Q),k=M(e??t);return{orientation:v(k)?.orientation||"vertical",rootClientId:k,isVisible:y(e)&&y(t)}},[e,t]),b=Wi(e),h=Wi(t),g=d==="vertical",z=x.useMemo(()=>l<0||!b&&!h||!f?void 0:{contextElement:s==="group"?h||b:b||h,getBoundingClientRect(){const v=b?b.getBoundingClientRect():null,M=h?h.getBoundingClientRect():null;let y=0,k=0,S=0,C=0;if(s==="group"){const R=M||v;k=R.top,S=0,C=R.bottom-R.top,y=i==="left"?R.left-2:R.right-2}else g?(k=v?v.bottom:M.top,S=v?v.width:M.width,C=M&&v?M.top-v.bottom:0,y=v?v.left:M.left):(k=v?v.top:M.top,C=v?v.height:M.height,jt()?(y=M?M.right:v.left,S=v&&M?v.left-M.right:0):(y=v?v.right:M.left,S=v&&M?M.left-v.right:0),S=Math.max(S,0));return new window.DOMRect(y,k,S,C)}},[b,h,l,g,f,s,i]),A=Ux(r);return x.useLayoutEffect(()=>{if(!b)return;const _=new window.MutationObserver(u);return _.observe(b,{attributes:!0}),()=>{_.disconnect()}},[b]),x.useLayoutEffect(()=>{if(!h)return;const _=new window.MutationObserver(u);return _.observe(h,{attributes:!0}),()=>{_.disconnect()}},[h]),x.useLayoutEffect(()=>{if(b)return b.ownerDocument.defaultView.addEventListener("resize",u),()=>{b.ownerDocument.defaultView?.removeEventListener("resize",u)}},[b]),!b&&!h||!f?null:a.jsx(Io,{ref:A,animate:!1,anchor:z,focusOnMount:!1,__unstableSlotName:o,inline:!o,...c,className:oe("block-editor-block-popover","block-editor-block-popover__inbetween",c.className),resize:!1,flip:!1,placement:"overlay",variant:"unstyled",children:a.jsx("div",{className:"block-editor-block-popover__inbetween-container",children:n})},t+"--"+p)}const q6t=Number.MAX_SAFE_INTEGER;function R6t({clientId:e,bottomClientId:t,children:n,__unstablePopoverSlot:o,__unstableContentRef:r,shift:s=!0,...i},c){const l=Wi(e),u=Wi(t??e),d=xn([c,Ux(r)]),[p,f]=x.useReducer(h=>(h+1)%q6t,0);x.useLayoutEffect(()=>{if(!l)return;const h=new window.MutationObserver(f);return h.observe(l,{attributes:!0}),()=>{h.disconnect()}},[l]);const b=x.useMemo(()=>{if(!(p<0||!l||t&&!u))return{getBoundingClientRect(){return u?bme(m4(l),m4(u)):m4(l)},contextElement:l}},[p,l,t,u]);return!l||t&&!u?null:a.jsx(Io,{ref:d,animate:!1,focusOnMount:!1,anchor:b,__unstableSlotName:o,inline:!o,placement:"top-start",resize:!1,flip:!1,shift:s,...i,className:oe("block-editor-block-popover",i.className),variant:"unstyled",children:n})}const G7=x.forwardRef(R6t),T6t=({clientId:e,bottomClientId:t,children:n,...o},r)=>a.jsx(G7,{...o,bottomClientId:t,clientId:e,__unstableContentRef:void 0,__unstablePopoverSlot:void 0,ref:r,children:n}),E6t=x.forwardRef(T6t);function W6t({clientId:e,bottomClientId:t,children:n,shift:o=!1,additionalStyles:r,...s},i){var c;(c=t)!==null&&c!==void 0||(t=e);const l=Wi(e);return a.jsx(G7,{ref:i,clientId:e,bottomClientId:t,shift:o,...s,children:l&&e===t?a.jsx(N6t,{selectedElement:l,additionalStyles:r,children:n}):n})}function N6t({selectedElement:e,additionalStyles:t={},children:n}){const[o,r]=x.useState(e.offsetWidth),[s,i]=x.useState(e.offsetHeight);x.useEffect(()=>{const l=new window.ResizeObserver(()=>{r(e.offsetWidth),i(e.offsetHeight)});return l.observe(e,{box:"border-box"}),()=>l.disconnect()},[e]);const c=x.useMemo(()=>({position:"absolute",width:o,height:s,...t}),[o,s,t]);return a.jsx("div",{style:c,children:n})}const wm=x.forwardRef(W6t),Dg={hide:{opacity:0,scaleY:.75},show:{opacity:1,scaleY:1},exit:{opacity:0,scaleY:.9}};function B6t({__unstablePopoverSlot:e,__unstableContentRef:t}){const{clientId:n}=G(r=>{const{getBlockOrder:s,getBlockInsertionPoint:i}=r(Q),c=i(),l=s(c.rootClientId);return l.length?{clientId:l[c.index]}:{}},[]),o=$1();return a.jsx(wm,{clientId:n,__unstablePopoverSlot:e,__unstableContentRef:t,className:"block-editor-block-popover__drop-zone",children:a.jsx(Rr.div,{"data-testid":"block-popover-drop-zone",initial:o?Dg.show:Dg.hide,animate:Dg.show,exit:o?Dg.show:Dg.exit,className:"block-editor-block-popover__drop-zone-foreground"})})}const K7=x.createContext();function L6t({__unstablePopoverSlot:e,__unstableContentRef:t,operation:n="insert",nearestSide:o="right"}){const{selectBlock:r,hideInsertionPoint:s}=Oe(Q),i=x.useContext(K7),c=x.useRef(),{orientation:l,previousClientId:u,nextClientId:d,rootClientId:p,isInserterShown:f,isDistractionFree:b,isZoomOutMode:h}=G(C=>{const{getBlockOrder:R,getBlockListSettings:T,getBlockInsertionPoint:E,isBlockBeingDragged:B,getPreviousBlockClientId:N,getNextBlockClientId:j,getSettings:I,isZoomOut:P}=ct(C(Q)),$=E(),F=R($.rootClientId);if(!F.length)return{};let X=F[$.index-1],Z=F[$.index];for(;B(X);)X=N(X);for(;B(Z);)Z=j(Z);const V=I();return{previousClientId:X,nextClientId:Z,orientation:T($.rootClientId)?.orientation||"vertical",rootClientId:$.rootClientId,isDistractionFree:V.isDistractionFree,isInserterShown:$?.__unstableWithInserter,isZoomOutMode:P()}},[]),{getBlockEditingMode:g}=G(Q),z=$1();function A(C){C.target===c.current&&d&&g(d)!=="disabled"&&r(d,-1)}function _(C){C.target===c.current&&!i.current&&s()}function v(C){C.target!==c.current&&(i.current=!0)}const M={start:{opacity:0,scale:0},rest:{opacity:1,scale:1,transition:{delay:f?.5:0,type:"tween"}},hover:{opacity:1,scale:1,transition:{delay:.5,type:"tween"}}},y={start:{scale:z?1:0},rest:{scale:1,transition:{delay:.4,type:"tween"}}};if(b||h&&n!=="insert")return null;const S=oe("block-editor-block-list__insertion-point",l==="horizontal"||n==="group"?"is-horizontal":"is-vertical");return a.jsx(kge,{previousClientId:u,nextClientId:d,__unstablePopoverSlot:e,__unstableContentRef:t,operation:n,nearestSide:o,children:a.jsxs(Rr.div,{layout:!z,initial:z?"rest":"start",animate:"rest",whileHover:"hover",whileTap:"pressed",exit:"start",ref:c,tabIndex:-1,onClick:A,onFocus:v,className:oe(S,{"is-with-inserter":f}),onHoverEnd:_,children:[a.jsx(Rr.div,{variants:M,className:"block-editor-block-list__insertion-point-indicator","data-testid":"block-list-insertion-point-indicator"}),f&&a.jsx(Rr.div,{variants:y,className:oe("block-editor-block-list__insertion-point-inserter"),children:a.jsx(xm,{position:"bottom center",clientId:d,rootClientId:p,__experimentalIsQuick:!0,onToggle:C=>{i.current=C},onSelectOrClose:()=>{i.current=!1}})})]})})}function P6t(e){const{insertionPoint:t,isVisible:n,isBlockListEmpty:o}=G(r=>{const{getBlockInsertionPoint:s,isBlockInsertionPointVisible:i,getBlockCount:c}=r(Q),l=s();return{insertionPoint:l,isVisible:i(),isBlockListEmpty:c(l?.rootClientId)===0}},[]);return!n||o?null:t.operation==="replace"?a.jsx(B6t,{...e},`${t.rootClientId}-${t.index}`):a.jsx(L6t,{operation:t.operation,nearestSide:t.nearestSide,...e})}function j6t(){const e=x.useContext(K7),t=G(g=>g(Q).getSettings().isDistractionFree||ct(g(Q)).isZoomOut(),[]),{getBlockListSettings:n,getBlockIndex:o,isMultiSelecting:r,getSelectedBlockClientIds:s,getSettings:i,getTemplateLock:c,__unstableIsWithinBlockOverlay:l,getBlockEditingMode:u,getBlockName:d,getBlockAttributes:p,getParentSectionBlock:f}=ct(G(Q)),{showInsertionPoint:b,hideInsertionPoint:h}=Oe(Q);return Mn(g=>{if(t)return;function z(A){if(e===void 0||e.current||A.target.nodeType===A.target.TEXT_NODE||r())return;if(!A.target.classList.contains("block-editor-block-list__layout")){h();return}let _;if(A.target.classList.contains("is-root-container")||(_=(A.target.getAttribute("data-block")?A.target:A.target.closest("[data-block]")).getAttribute("data-block")),c(_)||u(_)==="disabled"||d(_)==="core/block"||_&&p(_).layout?.isManualPlacement)return;const v=n(_),M=v?.orientation||"vertical",y=!!v?.__experimentalCaptureToolbars,k=A.clientY,S=A.clientX;let R=Array.from(A.target.children).find(N=>{const j=N.getBoundingClientRect();return N.classList.contains("wp-block")&&M==="vertical"&&j.top>k||N.classList.contains("wp-block")&&M==="horizontal"&&(jt()?j.right<S:j.left>S)});if(!R){h();return}if(!R.id&&(R=R.firstElementChild,!R)){h();return}const T=R.id.slice(6);if(!T||l(T)||f(T)||s().includes(T)&&M==="vertical"&&!y&&!i().hasFixedToolbar)return;const E=R.getBoundingClientRect();if(M==="horizontal"&&(A.clientY>E.bottom||A.clientY<E.top)||M==="vertical"&&(A.clientX>E.right||A.clientX<E.left)){h();return}const B=o(T);if(B===0){h();return}b(_,B,{__unstableWithInserter:!0})}return g.addEventListener("mousemove",z),()=>{g.removeEventListener("mousemove",z)}},[e,n,o,r,b,h,s,t])}function I6t({showSeparator:e,isFloating:t,onAddBlock:n,isToggle:o}){const{clientId:r}=j0();return a.jsx(P_,{className:oe({"block-list-appender__toggle":o}),rootClientId:r,showSeparator:e,isFloating:t,onAddBlock:n})}function D6t(){const{clientId:e}=j0();return a.jsx(wge,{rootClientId:e})}const Fg=new WeakMap;function F6t(){let e;return t=>((e===void 0||!ds(e,t))&&(e=t),e)}function vee(e){const[t]=x.useState(F6t);return t(e)}function $6t(e,t,n,o,r,s,i,c,l,u,d,p){const f=Fn(),b=vee(n),h=vee(o),g=l===void 0||t==="contentOnly"?t:l;x.useLayoutEffect(()=>{const z={allowedBlocks:b,prioritizedInserterBlocks:h,templateLock:g};if(u!==void 0&&(z.__experimentalCaptureToolbars=u),d!==void 0)z.orientation=d;else{const A=Rf(p?.type);z.orientation=A.getOrientation(p)}i!==void 0&&(Ke("__experimentalDefaultBlock",{alternative:"defaultBlock",since:"6.3",version:"6.4"}),z.defaultBlock=i),r!==void 0&&(z.defaultBlock=r),c!==void 0&&(Ke("__experimentalDirectInsert",{alternative:"directInsert",since:"6.3",version:"6.4"}),z.directInsert=c),s!==void 0&&(z.directInsert=s),z.directInsert!==void 0&&typeof z.directInsert!="boolean"&&Ke("Using `Function` as a `directInsert` argument",{alternative:"`boolean` values",since:"6.5"}),Fg.get(f)||Fg.set(f,{}),Fg.get(f)[e]=z,window.queueMicrotask(()=>{const A=Fg.get(f);if(Object.keys(A).length){const{updateBlockListSettings:_}=f.dispatch(Q);_(A),Fg.set(f,{})}})},[e,b,h,g,r,s,i,c,u,d,p,f])}function V6t(e,t,n,o){const r=Fn(),s=x.useRef(null);x.useLayoutEffect(()=>{let i=!1;const{getBlocks:c,getSelectedBlocksInitialCaretPosition:l,isBlockSelected:u}=r.select(Q),{replaceInnerBlocks:d,__unstableMarkNextChangeAsNotPersistent:p}=r.dispatch(Q);return window.queueMicrotask(()=>{if(i)return;const f=c(e),b=f.length===0||n==="all"||n==="contentOnly",h=!N0(t,s.current);if(!b||!h)return;s.current=t;const g=oz(f,t);N0(g,f)||(p(),d(e,g,f.length===0&&o&&g.length!==0&&u(e),l()))}),()=>{i=!0}},[t,n,e,r,o])}function H6t(e){return G(t=>{const n=t(Q).getBlock(e);if(!n)return;const o=t(kt).getBlockType(n.name);if(o&&Object.keys(o.providesContext).length!==0)return Object.fromEntries(Object.entries(o.providesContext).map(([r,s])=>[r,n.attributes[s]]))},[e])}function Sge(e){let t={srcRootClientId:null,srcClientIds:null,srcIndex:null,type:null,blocks:null};if(!e.dataTransfer)return t;try{t=Object.assign(t,JSON.parse(e.dataTransfer.getData("wp-blocks")))}catch{return t}return t}function U6t(e,t,n,o,r,s,i,c,l){return u=>{const{srcRootClientId:d,srcClientIds:p,type:f,blocks:b}=Sge(u);if(f==="inserter"){i();const h=b.map(g=>jo(g));s(h,!0,null)}if(f==="block"){const h=n(p[0]);if(d===e&&h===t||p.includes(e)||o(p).some(_=>_===e))return;if(c==="group"){const _=p.map(v=>l(v));s(_,!0,null,p);return}const g=d===e,z=p.length,A=g&&h<t?t-z:t;r(p,d,A)}}}function X6t(e,t,n,o,r){return s=>{if(!t().mediaUpload)return;const i=xc(Ei("from"),c=>c.type==="files"&&o(c.blockName,e)&&c.isMatch(s));if(i){const c=i.transform(s,n);r(c)}}}function G6t(e){return t=>{const n=Xh({HTML:t,mode:"BLOCKS"});n.length&&e(n)}}function Cge(e,t,n={}){const{operation:o="insert",nearestSide:r="right"}=n,{canInsertBlockType:s,getBlockIndex:i,getClientIdsOfDescendants:c,getBlockOrder:l,getBlocksByClientId:u,getSettings:d,getBlock:p}=G(Q),{getGroupingBlockName:f}=G(kt),{insertBlocks:b,moveBlocksToPosition:h,updateBlockAttributes:g,clearSelectedBlock:z,replaceBlocks:A,removeBlocks:_}=Oe(Q),v=Fn(),M=x.useCallback((R,T=!0,E=0,B=[])=>{Array.isArray(R)||(R=[R]);const j=l(e)[t];if(o==="replace")A(j,R,void 0,E);else if(o==="group"){const I=p(j);r==="left"?R.push(I):R.unshift(I);const P=R.map(Z=>Ee(Z.name,Z.attributes,Z.innerBlocks)),$=R.every(Z=>Z.name==="core/image"),F=s("core/gallery",e),X=Ee($&&F?"core/gallery":f(),{layout:{type:"flex",flexWrap:$&&F?null:"nowrap"}},P);A([j,...B],X,void 0,E)}else b(R,t,e,T,E)},[l,e,t,o,A,p,r,s,f,b]),y=x.useCallback((R,T,E)=>{if(o==="replace"){const B=u(R),j=l(e)[t];v.batch(()=>{_(R,!1),A(j,B,void 0,0)})}else h(R,T,e,E)},[o,l,u,h,v,_,A,t,e]),k=U6t(e,t,i,c,y,M,z,o,p),S=X6t(e,d,g,s,M),C=G6t(M);return R=>{const T=T4(R.dataTransfer),E=R.dataTransfer.getData("text/html");E?C(E):T.length?S(T):k(R)}}function K6t(e,t,n){const o=n==="top"||n==="bottom",{x:r,y:s}=e,i=o?r:s,c=o?s:r,l=o?t.left:t.top,u=o?t.right:t.bottom,d=t[n];let p;return i>=l&&i<=u?p=i:i<u?p=l:p=u,Math.sqrt((i-p)**2+(c-d)**2)}function pM(e,t,n=["top","bottom","left","right"]){let o,r;return n.forEach(s=>{const i=K6t(e,t,s);(o===void 0||i<o)&&(o=i,r=s)}),[o,r]}function qge(e,t){return t.left<=e.x&&t.right>=e.x&&t.top<=e.y&&t.bottom>=e.y}function Y6t(e,t){return t.top<=e.y&&t.bottom>=e.y}const HR=30,Z6t=120,Q6t=120;function J6t(e,t,n="vertical",o={}){const r=n==="horizontal"?["left","right"]:["top","bottom"];let s=0,i="before",c=1/0,l=null,u="right";const{dropZoneElement:d,parentBlockOrientation:p,rootBlockIndex:f=0}=o;if(d&&p!=="horizontal"){const A=d.getBoundingClientRect(),[_,v]=pM(t,A,["top","bottom"]);if(A.height>Z6t&&_<HR){if(v==="top")return[f,"before"];if(v==="bottom")return[f+1,"after"]}}const b=jt();if(d&&p==="horizontal"){const A=d.getBoundingClientRect(),[_,v]=pM(t,A,["left","right"]);if(A.width>Q6t&&_<HR){if(b&&v==="right"||!b&&v==="left")return[f,"before"];if(b&&v==="left"||!b&&v==="right")return[f+1,"after"]}}e.forEach(({isUnmodifiedDefaultBlock:A,getBoundingClientRect:_,blockIndex:v,blockOrientation:M})=>{const y=_();let[k,S]=pM(t,y,r);const[C,R]=pM(t,y,["left","right"]),T=qge(t,y);A&&T?k=0:n==="vertical"&&M!=="horizontal"&&(T&&C<HR||!T&&Y6t(t,y))&&(l=v,u=R),k<c&&(i=S==="bottom"||!b&&S==="right"||b&&S==="left"?"after":"before",c=k,s=v)});const h=s+(i==="after"?1:-1),g=!!e[s]?.isUnmodifiedDefaultBlock,z=!!e[h]?.isUnmodifiedDefaultBlock;return l!==null?[l,"group",u]:!g&&!z?[i==="after"?s+1:s,"insert"]:[g?s:h,"replace"]}function IW(e,t,n,o){let r=!0;if(t){const c=t?.map(({name:l})=>l);r=n.every(l=>c?.includes(l))}const i=n.map(c=>e(c)).every(c=>{const[l]=c?.parent||[];return l?l===o:!0});return r&&i}function xee(e,t){const{defaultView:n}=t;return!!(n&&e instanceof n.HTMLElement&&e.closest("[data-is-insertion-point]"))}function eSt({dropZoneElement:e,rootClientId:t="",parentClientId:n="",isDisabled:o=!1}={}){const r=Fn(),[s,i]=x.useState({index:null,operation:"insert"}),{getBlockType:c,getBlockVariations:l,getGroupingBlockName:u}=G(kt),{canInsertBlockType:d,getBlockListSettings:p,getBlocks:f,getBlockIndex:b,getDraggedBlockClientIds:h,getBlockNamesByClientId:g,getAllowedBlocks:z,isDragging:A,isGroupable:_,isZoomOut:v,getSectionRootClientId:M,getBlockParents:y}=ct(G(Q)),{showInsertionPoint:k,hideInsertionPoint:S,startDragging:C,stopDragging:R}=ct(Oe(Q)),T=Cge(s.operation==="before"||s.operation==="after"?n:t,s.index,{operation:s.operation,nearestSide:s.nearestSide}),E=_E(x.useCallback((B,N)=>{A()||C();const j=h(),I=[t,...y(t,!0)];if(j.some(Ae=>I.includes(Ae)))return;const $=z(t),F=g([t])[0],X=g(j);if(!IW(c,$,X,F))return;const V=M();if(v()&&V!==t)return;const ee=f(t);if(ee.length===0){r.batch(()=>{i({index:0,operation:"insert"}),k(t,0,{operation:"insert"})});return}const te=ee.map(Ae=>{const ye=Ae.clientId;return{isUnmodifiedDefaultBlock:El(Ae),getBoundingClientRect:()=>N.getElementById(`block-${ye}`).getBoundingClientRect(),blockIndex:b(ye),blockOrientation:p(ye)?.orientation}}),J=J6t(te,{x:B.clientX,y:B.clientY},p(t)?.orientation,{dropZoneElement:e,parentBlockClientId:n,parentBlockOrientation:n?p(n)?.orientation:void 0,rootBlockIndex:b(t)}),[ue,ce,me]=J,de=te[ue]?.isUnmodifiedDefaultBlock;if(!(v()&&!de&&ce!=="insert")){if(ce==="group"){const Ae=ee[ue],ye=[Ae.name,...X].every(re=>re==="core/image"),Ne=d("core/gallery",t),je=_([Ae.clientId,h()]),ie=l(u(),"block"),we=ie&&ie.find(({name:re})=>re==="group-row");if(ye&&!Ne&&(!je||!we)||!ye&&(!je||!we))return}r.batch(()=>{i({index:ue,operation:ce,nearestSide:me});const Ae=["before","after"].includes(ce)?n:t;k(Ae,ue,{operation:ce,nearestSide:me})})}},[A,z,t,g,h,c,M,v,f,p,e,n,b,r,C,k,d,_,l,u]),200);return E5({dropZoneElement:e,isDisabled:o,onDrop:T,onDragOver(B){E(B,B.currentTarget.ownerDocument)},onDragLeave(B){const{ownerDocument:N}=B.currentTarget;xee(B.relatedTarget,N)||xee(B.target,N)||(E.cancel(),S())},onDragEnd(){E.cancel(),R(),S()}})}const tSt={};function nSt({children:e,clientId:t}){const n=H6t(t);return a.jsx(uO,{value:n,children:e})}const oSt=x.memo(Y7);function Rge(e){const{clientId:t,allowedBlocks:n,prioritizedInserterBlocks:o,defaultBlock:r,directInsert:s,__experimentalDefaultBlock:i,__experimentalDirectInsert:c,template:l,templateLock:u,wrapperRef:d,templateInsertUpdatesSelection:p,__experimentalCaptureToolbars:f,__experimentalAppenderTagName:b,renderAppender:h,orientation:g,placeholder:z,layout:A,name:_,blockType:v,parentLock:M,defaultLayout:y}=e;$6t(t,M,n,o,r,s,i,c,u,f,g,A),V6t(t,l,u,p);const k=An(_,"layout")||An(_,"__experimentalLayout")||tSt,{allowSizingOnChildren:S=!1}=k,C=A||k,R=x.useMemo(()=>({...y,...C,...S&&{allowSizingOnChildren:!0}}),[y,C,S]),T=a.jsx(oSt,{rootClientId:t,renderAppender:h,__experimentalAppenderTagName:b,layout:R,wrapperRef:d,placeholder:z});return!v?.providesContext||Object.keys(v.providesContext).length===0?T:a.jsx(nSt,{clientId:t,children:T})}function rSt(e){return xme(e),a.jsx(Rge,{...e})}const Ht=x.forwardRef((e,t)=>{const n=Nt({ref:t},e);return a.jsx("div",{className:"block-editor-inner-blocks",children:a.jsx("div",{...n})})});function Nt(e={},t={}){const{__unstableDisableLayoutClassNames:n,__unstableDisableDropZone:o,dropZoneElement:r}=t,{clientId:s,layout:i=null,__unstableLayoutClassNames:c=""}=j0(),l=G(M=>{const{getBlockName:y,isZoomOut:k,getTemplateLock:S,getBlockRootClientId:C,getBlockEditingMode:R,getBlockSettings:T,getSectionRootClientId:E}=ct(M(Q));if(!s){const X=E();return{isDropZoneDisabled:k()&&X!==""}}const{hasBlockSupport:B,getBlockType:N}=M(kt),j=y(s),I=R(s),P=C(s),[$]=T(s,"layout");let F=I==="disabled";if(k()){const X=E();F=s!==X}return{__experimentalCaptureToolbars:B(j,"__experimentalExposeControlsToChildren",!1),name:j,blockType:N(j),parentLock:S(P),parentClientId:P,isDropZoneDisabled:F,defaultLayout:$}},[s]),{__experimentalCaptureToolbars:u,name:d,blockType:p,parentLock:f,parentClientId:b,isDropZoneDisabled:h,defaultLayout:g}=l,z=eSt({dropZoneElement:r,rootClientId:s,parentClientId:b}),A=xn([e.ref,o||h||i?.isManualPlacement&&window.__experimentalEnableGridInteractivity?null:z]),_={__experimentalCaptureToolbars:u,layout:i,name:d,blockType:p,parentLock:f,defaultLayout:g,...t},v=_.value&&_.onChange?rSt:Rge;return{...e,ref:A,className:oe(e.className,"block-editor-block-list__layout",n?"":c),children:s?a.jsx(v,{..._,clientId:s}):a.jsx(Y7,{...t})}}Nt.save=WPe;Ht.DefaultBlockAppender=D6t;Ht.ButtonBlockAppender=I6t;Ht.Content=()=>Nt.save().children;const sSt=new Set([cc,_i,Ps,wi,Gr,Mc]);function iSt(e){const{keyCode:t,shiftKey:n}=e;return!n&&sSt.has(t)}function Tge(){const e=G(n=>n(Q).isTyping(),[]),{stopTyping:t}=Oe(Q);return Mn(n=>{if(!e)return;const{ownerDocument:o}=n;let r,s;function i(c){const{clientX:l,clientY:u}=c;r&&s&&(r!==l||s!==u)&&t(),r=l,s=u}return o.addEventListener("mousemove",i),()=>{o.removeEventListener("mousemove",i)}},[e,t])}function Ege(){const{isTyping:e}=G(s=>{const{isTyping:i}=s(Q);return{isTyping:i()}},[]),{startTyping:t,stopTyping:n}=Oe(Q),o=Tge(),r=Mn(s=>{const{ownerDocument:i}=s,{defaultView:c}=i,l=c.getSelection();if(e){let h=function(A){const{target:_}=A;b=c.setTimeout(()=>{md(_)||n()})},g=function(A){const{keyCode:_}=A;(_===gd||_===Z2)&&n()},z=function(){l.isCollapsed||n()};var d=h,p=g,f=z;let b;return s.addEventListener("focus",h),s.addEventListener("keydown",g),i.addEventListener("selectionchange",z),()=>{c.clearTimeout(b),s.removeEventListener("focus",h),s.removeEventListener("keydown",g),i.removeEventListener("selectionchange",z)}}function u(b){const{type:h,target:g}=b;!md(g)||!s.contains(g)||h==="keydown"&&!iSt(b)||t()}return s.addEventListener("keypress",u),s.addEventListener("keydown",u),()=>{s.removeEventListener("keypress",u),s.removeEventListener("keydown",u)}},[e,t,n]);return xn([o,r])}function wee({clientId:e,rootClientId:t="",position:n="top"}){const[o,r]=x.useState(!1),{sectionRootClientId:s,sectionClientIds:i,insertionPoint:c,blockInsertionPointVisible:l,blockInsertionPoint:u,blocksBeingDragged:d}=G(y=>{const{getInsertionPoint:k,getBlockOrder:S,getSectionRootClientId:C,isBlockInsertionPointVisible:R,getBlockInsertionPoint:T,getDraggedBlockClientIds:E}=ct(y(Q)),B=C(),N=S(B);return{sectionRootClientId:B,sectionClientIds:N,blockOrder:S(B),insertionPoint:k(),blockInsertionPoint:T(),blockInsertionPointVisible:R(),blocksBeingDragged:E()}},[]),p=$1();if(!e)return;let f=!1;if(!(t===s&&i&&i.includes(e)))return null;const h=c?.index===0&&e===i[c.index],g=c&&c.hasOwnProperty("index")&&e===i[c.index-1];n==="top"&&(f=h||l&&u.index===0&&e===i[u.index]),n==="bottom"&&(f=g||l&&e===i[u.index-1]);const z=d[0],A=d.includes(e),_=i.indexOf(z),M=(_>0?i[_-1]:null)===e;return(A||M)&&(f=!1),a.jsx(Wd,{children:f&&a.jsx(Rr.div,{initial:{height:0},animate:{height:"calc(1 * var(--wp-block-editor-iframe-zoom-out-frame-size) / var(--wp-block-editor-iframe-zoom-out-scale)"},exit:{height:0},transition:{type:"tween",duration:p?0:.2,ease:[.6,0,.4,1]},className:oe("block-editor-block-list__zoom-out-separator",{"is-dragged-over":o}),"data-is-insertion-point":"true",onDragOver:()=>r(!0),onDragLeave:()=>r(!1),children:a.jsx(Rr.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0,transition:{delay:-.125}},transition:{ease:"linear",duration:.1,delay:.125},children:m("Drop pattern.")})})})}const Wge=x.createContext(),cv=new WeakMap;function aSt({className:e,...t}){const{isOutlineMode:n,isFocusMode:o,temporarilyEditingAsBlocks:r}=G(d=>{const{getSettings:p,getTemporarilyEditingAsBlocks:f,isTyping:b}=ct(d(Q)),{outlineMode:h,focusMode:g}=p();return{isOutlineMode:h&&!b(),isFocusMode:g,temporarilyEditingAsBlocks:f()}},[]),s=Fn(),{setBlockVisibility:i}=Oe(Q),c=C1(x.useCallback(()=>{const d={};cv.get(s).forEach(([p,f])=>{d[p]=f}),i(d)},[s]),300,{trailing:!0}),l=x.useMemo(()=>{const{IntersectionObserver:d}=window;if(d)return new d(p=>{cv.get(s)||cv.set(s,[]);for(const f of p){const b=f.target.getAttribute("data-block");cv.get(s).push([b,f.isIntersecting])}c()})},[]),u=Nt({ref:xn([T7(),j6t(),Ege()]),className:oe("is-root-container",e,{"is-outline-mode":n,"is-focus-mode":o})},t);return a.jsxs(Wge.Provider,{value:l,children:[a.jsx("div",{...u}),!!r&&a.jsx(cSt,{clientId:r})]})}function cSt({clientId:e}){const{stopEditingAsBlocks:t}=ct(Oe(Q)),n=G(o=>{const{isBlockSelected:r,hasSelectedInnerBlock:s}=o(Q);return r(e)||s(e,!0)},[e]);return x.useEffect(()=>{n||t(e)},[n,e,t]),null}function j_(e){return a.jsx(lae,{value:aae,children:a.jsx(aSt,{...e})})}const lSt=[],uSt=new Set;function dSt({placeholder:e,rootClientId:t,renderAppender:n,__experimentalAppenderTagName:o,layout:r=Ehe}){const s=n!==!1,i=!!n,{order:c,isZoomOut:l,selectedBlocks:u,visibleBlocks:d,shouldRenderAppender:p}=G(f=>{const{getSettings:b,getBlockOrder:h,getSelectedBlockClientId:g,getSelectedBlockClientIds:z,__unstableGetVisibleBlocks:A,getTemplateLock:_,getBlockEditingMode:v,isSectionBlock:M,isZoomOut:y}=ct(f(Q)),k=h(t);if(b().isPreviewMode)return{order:k,selectedBlocks:lSt,visibleBlocks:uSt};const S=g();return{order:k,selectedBlocks:z(),visibleBlocks:A(),isZoomOut:y(),shouldRenderAppender:!M(t)&&v(t)!=="disabled"&&!_(t)&&s&&!y()&&(i||t===S||!t&&!S&&!k.length)}},[t,s,i]);return a.jsxs(hvt,{value:r,children:[c.map(f=>a.jsxs(N5,{value:!d.has(f)&&!u.includes(f),children:[l&&a.jsx(wee,{clientId:f,rootClientId:t,position:"top"}),a.jsx(Rxt,{rootClientId:t,clientId:f}),l&&a.jsx(wee,{clientId:f,rootClientId:t,position:"bottom"})]},f)),c.length<1&&e,p&&a.jsx(S6t,{tagName:o,rootClientId:t,CustomAppender:n})]})}function Y7(e){return a.jsx(N5,{value:!1,children:a.jsx(dSt,{...e})})}const _ee=Qn("InspectorControls"),pSt=Qn("InspectorAdvancedControls"),fSt=Qn("InspectorControlsBindings"),bSt=Qn("InspectorControlsBackground"),hSt=Qn("InspectorControlsBorder"),mSt=Qn("InspectorControlsColor"),gSt=Qn("InspectorControlsFilter"),MSt=Qn("InspectorControlsDimensions"),zSt=Qn("InspectorControlsPosition"),OSt=Qn("InspectorControlsTypography"),ySt=Qn("InspectorControlsListView"),ASt=Qn("InspectorControlsStyles"),vSt=Qn("InspectorControlsEffects"),I_={default:_ee,advanced:pSt,background:bSt,bindings:fSt,border:hSt,color:mSt,dimensions:MSt,effects:vSt,filter:gSt,list:ySt,position:zSt,settings:_ee,styles:ASt,typography:OSt};function Nge({children:e,group:t="default",__experimentalGroup:n,resetAllFilter:o}){n&&(Ke("`__experimentalGroup` property in `InspectorControlsFill`",{since:"6.2",version:"6.4",alternative:"`group`"}),t=n);const r=j0(),s=I_[t]?.Fill;return s?r[nw]?a.jsx(Jf,{document,children:a.jsx(s,{children:i=>a.jsx(wSt,{fillProps:i,children:e,resetAllFilter:o})})}):null:(globalThis.SCRIPT_DEBUG===!0&&zn(`Unknown InspectorControls group "${t}" provided.`),null)}function xSt({resetAllFilter:e,children:t}){const{registerResetAllFilter:n,deregisterResetAllFilter:o}=x.useContext(Ez);return x.useEffect(()=>{if(e&&n&&o)return n(e),()=>{o(e)}},[e,n,o]),t}function wSt({children:e,resetAllFilter:t,fillProps:n}){const{forwardedContext:o=[]}=n,r=a.jsx(xSt,{resetAllFilter:t,children:e});return o.reduce((s,[i,c])=>a.jsx(i,{...c,children:s}),r)}function _St(e){if(!e)return{};if(typeof e=="object")return e;let t;switch(e){case"normal":t=We("Regular","font style");break;case"italic":t=We("Italic","font style");break;case"oblique":t=We("Oblique","font style");break;default:t=e;break}return{name:t,value:e}}function kee(e){if(!e)return{};if(typeof e=="object")return e;let t;switch(e){case"normal":case"400":t=We("Regular","font weight");break;case"bold":case"700":t=We("Bold","font weight");break;case"100":t=We("Thin","font weight");break;case"200":t=We("Extra Light","font weight");break;case"300":t=We("Light","font weight");break;case"500":t=We("Medium","font weight");break;case"600":t=We("Semi Bold","font weight");break;case"800":t=We("Extra Bold","font weight");break;case"900":t=We("Black","font weight");break;case"1000":t=We("Extra Black","font weight");break;default:t=e;break}return{name:t,value:e}}const See=[{name:We("Regular","font style"),value:"normal"},{name:We("Italic","font style"),value:"italic"}],Cee=[{name:We("Thin","font weight"),value:"100"},{name:We("Extra Light","font weight"),value:"200"},{name:We("Light","font weight"),value:"300"},{name:We("Regular","font weight"),value:"400"},{name:We("Medium","font weight"),value:"500"},{name:We("Semi Bold","font weight"),value:"600"},{name:We("Bold","font weight"),value:"700"},{name:We("Extra Bold","font weight"),value:"800"},{name:We("Black","font weight"),value:"900"},{name:We("Extra Black","font weight"),value:"1000"}];function Bge(e){let t=[],n=[];const o=[],r=!e||e?.length===0;let s=!1;return e?.forEach(i=>{if(typeof i.fontWeight=="string"&&/\s/.test(i.fontWeight.trim())){s=!0;let[u,d]=i.fontWeight.split(" ");u=parseInt(u.slice(0,1)),d==="1000"?d=10:d=parseInt(d.slice(0,1));for(let p=u;p<=d;p++){const f=`${p.toString()}00`;n.some(b=>b.value===f)||n.push(kee(f))}}const c=kee(typeof i.fontWeight=="number"?i.fontWeight.toString():i.fontWeight),l=_St(i.fontStyle);l&&Object.keys(l).length&&(t.some(u=>u.value===l.value)||t.push(l)),c&&Object.keys(c).length&&(n.some(u=>u.value===c.value)||s||n.push(c))}),n.some(i=>i.value>="600")||n.push({name:We("Bold","font weight"),value:"700"}),t.some(i=>i.value==="italic")||t.push({name:We("Italic","font style"),value:"italic"}),r&&(t=See,n=Cee),t=t.length===0?See:t,n=n.length===0?Cee:n,t.forEach(({name:i,value:c})=>{n.forEach(({name:l,value:u})=>{const d=c==="normal"?l:xe(We("%1$s %2$s","font"),l,i);o.push({key:`${c}-${u}`,name:d,style:{fontStyle:c,fontWeight:u}})})}),{fontStyles:t,fontWeights:n,combinedStyleAndWeightOptions:o,isSystemFont:r,isVariableFont:s}}function D_(e,t){const{size:n}=e;if(!n||n==="0"||e?.fluid===!1||!DW(t?.typography)&&!DW(e))return n;let o=kSt(t);o=typeof o?.fluid=="object"?o?.fluid:{};const r=Syt({minimumFontSize:e?.fluid?.min,maximumFontSize:e?.fluid?.max,fontSize:n,minimumFontSizeLimit:o?.minFontSize,maximumViewportWidth:o?.maxViewportWidth,minimumViewportWidth:o?.minViewportWidth});return r||n}function DW(e){const t=e?.fluid;return t===!0||t&&typeof t=="object"&&Object.keys(t).length>0}function kSt(e){const t=e?.typography,n=e?.layout,o=sl(n?.wideSize)?n?.wideSize:null;return DW(t)&&o?{fluid:{maxViewportWidth:o,...t.fluid}}:{fluid:t?.fluid}}function SSt(e,t){var n;const o=e?.typography?.fontFamilies,r=["default","theme","custom"].flatMap(i=>{var c;return(c=o?.[i])!==null&&c!==void 0?c:[]}),s=(n=r.find(i=>i.fontFamily===t)?.fontFace)!==null&&n!==void 0?n:[];return{fontFamilies:r,fontFamilyFaces:s}}function qee(e,t){return t=typeof t=="number"?t.toString():t,!t||typeof t!="string"?"":!e||e.length===0?t:e?.reduce((o,{value:r})=>{const s=Math.abs(parseInt(r)-parseInt(t)),i=Math.abs(parseInt(o)-parseInt(t));return s<i?r:o},e[0]?.value)}function CSt(e,t){return typeof t!="string"||!t||!["normal","italic","oblique"].includes(t)?"":!e||e.length===0||e.find(o=>o.value===t)?t:t==="oblique"&&!e.find(o=>o.value==="oblique")?"italic":""}function qSt(e,t,n){let o=t,r=n;const{fontStyles:s,fontWeights:i,combinedStyleAndWeightOptions:c}=Bge(e),l=s?.some(({value:d})=>d===t),u=i?.some(({value:d})=>d?.toString()===n?.toString());return l||(o=t?CSt(s,t):c?.find(d=>d.style.fontWeight===qee(i,n))?.style?.fontStyle),u||(r=n?qee(i,n):c?.find(d=>d.style.fontStyle===(o||t))?.style?.fontWeight),{nearestFontStyle:o,nearestFontWeight:r}}const ll="body",Xx=":root",_m=[{path:["color","palette"],valueKey:"color",cssVarInfix:"color",classes:[{classSuffix:"color",propertyName:"color"},{classSuffix:"background-color",propertyName:"background-color"},{classSuffix:"border-color",propertyName:"border-color"}]},{path:["color","gradients"],valueKey:"gradient",cssVarInfix:"gradient",classes:[{classSuffix:"gradient-background",propertyName:"background"}]},{path:["color","duotone"],valueKey:"colors",cssVarInfix:"duotone",valueFunc:({slug:e})=>`url( '#wp-duotone-${e}' )`,classes:[]},{path:["shadow","presets"],valueKey:"shadow",cssVarInfix:"shadow",classes:[]},{path:["typography","fontSizes"],valueFunc:(e,t)=>D_(e,t),valueKey:"size",cssVarInfix:"font-size",classes:[{classSuffix:"font-size",propertyName:"font-size"}]},{path:["typography","fontFamilies"],valueKey:"fontFamily",cssVarInfix:"font-family",classes:[{classSuffix:"font-family",propertyName:"font-family"}]},{path:["spacing","spacingSizes"],valueKey:"size",cssVarInfix:"spacing",valueFunc:({size:e})=>e,classes:[]}],RSt={"color.background":"color","color.text":"color","filter.duotone":"duotone","elements.link.color.text":"color","elements.link.:hover.color.text":"color","elements.link.typography.fontFamily":"font-family","elements.link.typography.fontSize":"font-size","elements.button.color.text":"color","elements.button.color.background":"color","elements.caption.color.text":"color","elements.button.typography.fontFamily":"font-family","elements.button.typography.fontSize":"font-size","elements.heading.color":"color","elements.heading.color.background":"color","elements.heading.typography.fontFamily":"font-family","elements.heading.gradient":"gradient","elements.heading.color.gradient":"gradient","elements.h1.color":"color","elements.h1.color.background":"color","elements.h1.typography.fontFamily":"font-family","elements.h1.color.gradient":"gradient","elements.h2.color":"color","elements.h2.color.background":"color","elements.h2.typography.fontFamily":"font-family","elements.h2.color.gradient":"gradient","elements.h3.color":"color","elements.h3.color.background":"color","elements.h3.typography.fontFamily":"font-family","elements.h3.color.gradient":"gradient","elements.h4.color":"color","elements.h4.color.background":"color","elements.h4.typography.fontFamily":"font-family","elements.h4.color.gradient":"gradient","elements.h5.color":"color","elements.h5.color.background":"color","elements.h5.typography.fontFamily":"font-family","elements.h5.color.gradient":"gradient","elements.h6.color":"color","elements.h6.color.background":"color","elements.h6.typography.fontFamily":"font-family","elements.h6.color.gradient":"gradient","color.gradient":"gradient",shadow:"shadow","typography.fontSize":"font-size","typography.fontFamily":"font-family"};function dp(){return Yn("medium","<")?{}:{popoverProps:{placement:"left-start",offset:259}}}function Z7(e,t,n,o,r){const s=[fo(e,["blocks",t,...n]),fo(e,n)];for(const i of s)if(i){const c=["custom","theme","default"];for(const l of c){const u=i[l];if(u){const d=u.find(p=>p[o]===r);if(d)return o==="slug"||Z7(e,t,n,"slug",d.slug)[o]===d[o]?d:void 0}}}}function TSt(e,t,n,o){if(!o)return o;const r=RSt[n],s=_m.find(u=>u.cssVarInfix===r);if(!s)return o;const{valueKey:i,path:c}=s,l=Z7(e,t,c,i,o);return l?`var:preset|${r}|${l.slug}`:o}function ESt(e,t,n,[o,r]){const s=_m.find(c=>c.cssVarInfix===o);if(!s)return n;const i=Z7(e.settings,t,s.path,"slug",r);if(i){const{valueKey:c}=s,l=i[c];return ua(e,t,l)}return n}function WSt(e,t,n,o){var r;const s=(r=fo(e.settings,["blocks",t,"custom",...o]))!==null&&r!==void 0?r:fo(e.settings,["custom",...o]);return s?ua(e,t,s):n}function ua(e,t,n){if(!n||typeof n!="string")if(typeof n?.ref=="string"){if(n=fo(e,n.ref),!n||n?.ref)return n}else return n;const o="var:",r="var(--wp--",s=")";let i;if(n.startsWith(o))i=n.slice(o.length).split("|");else if(n.startsWith(r)&&n.endsWith(s))i=n.slice(r.length,-s.length).split("--");else return n;const[c,...l]=i;return c==="preset"?ESt(e,t,n,l):c==="custom"?WSt(e,t,n,l):n}function Ws(e,t){if(!e||!t)return t;const n=e.split(","),o=t.split(","),r=[];return n.forEach(s=>{o.forEach(i=>{r.push(`${s.trim()} ${i.trim()}`)})}),r.join(", ")}function NSt(e,t){if(!e||!t)return;const n={};return Object.entries(t).forEach(([o,r])=>{typeof r=="string"&&(n[o]=Ws(e,r)),typeof r=="object"&&(n[o]={},Object.entries(r).forEach(([s,i])=>{n[o][s]=Ws(e,i)}))}),n}function BSt(e,t){return e.includes(",")?e.split(",").map(r=>r+t).join(","):e+t}function LSt(e,t){return typeof e!="object"||typeof t!="object"?e===t:N0(e?.styles,t?.styles)&&N0(e?.settings,t?.settings)}function PSt(e,t){const n=`.is-style-${e}`;if(!t)return n;const o=/((?::\([^)]+\))?\s*)([^\s:]+)/,r=(i,c,l)=>c+l+n;return t.split(",").map(i=>i.replace(o,r)).join(",")}function jSt(e,t){if(!e||!t||!Array.isArray(t))return e;const n=t.find(o=>o?.name===e);return n?.href?n?.href:e}function ISt(e,t){if(!e||!t)return e;if(typeof e!="string"&&e?.ref){const n=Dz(fo(t,e.ref));return n?.ref?void 0:n===void 0?e:n}return e}function FW(e,t){if(!e||!t)return e;const n=ISt(e,t);return n?.url&&(n.url=jSt(n.url,t?._links?.["wp:theme-file"])),n}function DSt({children:e,group:t,label:n}){const{updateBlockAttributes:o}=Oe(Q),{getBlockAttributes:r,getMultiSelectedBlockClientIds:s,getSelectedBlockClientId:i,hasMultiSelection:c}=G(Q),l=dp(),u=i(),d=x.useCallback((p=[])=>{const f={},b=c()?s():[u];b.forEach(h=>{const{style:g}=r(h);let z={style:g};p.forEach(A=>{z={...z,...A(z)}}),z={...z,style:Ii(z.style)},f[h]=z}),o(b,f,!0)},[r,s,c,u,o]);return a.jsx(En,{className:`${t}-block-support-panel`,label:n,resetAll:d,panelId:u,hasInnerWrapper:!0,shouldRenderPlaceholderItems:!0,__experimentalFirstVisibleItemClass:"first",__experimentalLastVisibleItemClass:"last",dropdownMenuProps:l,children:e},u)}function FSt({Slot:e,fillProps:t,...n}){const o=x.useContext(Ez),r=x.useMemo(()=>{var s;return{...t??{},forwardedContext:[...(s=t?.forwardedContext)!==null&&s!==void 0?s:[],[Ez.Provider,{value:o}]]}},[o,t]);return a.jsx(e,{...n,fillProps:r,bubblesVirtually:!0})}function Lge({__experimentalGroup:e,group:t="default",label:n,fillProps:o,...r}){e&&(Ke("`__experimentalGroup` property in `InspectorControlsSlot`",{since:"6.2",version:"6.4",alternative:"`group`"}),t=e);const s=I_[t],i=H0(s?.name);if(!s)return globalThis.SCRIPT_DEBUG===!0&&zn(`Unknown InspectorControls group "${t}" provided.`),null;if(!i?.length)return null;const{Slot:c}=s;return n?a.jsx(DSt,{group:t,label:n,children:a.jsx(FSt,{...r,fillProps:o,Slot:c})}):a.jsx(c,{...r,fillProps:o,bubblesVirtually:!0})}const et=Nge;et.Slot=Lge;const F_=e=>a.jsx(Nge,{...e,group:"advanced"});F_.Slot=e=>a.jsx(Lge,{...e,group:"advanced"});F_.slotName="InspectorAdvancedControls";function $St(e){const t=e?.style?.position?.type;return t==="sticky"?m("Sticky"):t==="fixed"?m("Fixed"):null}function ji(e){return G(t=>{if(!e)return null;const{getBlockName:n,getBlockAttributes:o}=t(Q),{getBlockType:r,getActiveBlockVariation:s}=t(kt),i=n(e),c=r(i);if(!c)return null;const l=o(e),u=s(i,l),d=Qd(c)||Hh(c),f=(d?lie(c,l):void 0)||c.title,b=$St(l),h={isSynced:d,title:f,icon:c.icon,description:c.description,anchor:l?.anchor,positionLabel:b,positionType:l?.style?.position?.type,name:l?.metadata?.name};return u?{isSynced:d,title:u.title||c.title,icon:u.icon||c.icon,description:u.description||c.description,anchor:l?.anchor,positionLabel:b,positionType:l?.style?.position?.type,name:l?.metadata?.name}:h},[e])}const qO="position",UR={key:"default",value:"",name:m("Default")},XR={key:"sticky",value:"sticky",name:We("Sticky","Name for the value of the CSS position property"),hint:m("The block will stick to the top of the window instead of scrolling.")},Ree={key:"fixed",value:"fixed",name:We("Fixed","Name for the value of the CSS position property"),hint:m("The block will not move when the page is scrolled.")},VSt=["top","right","bottom","left"],HSt=["sticky","fixed"];function USt({selector:e,style:t}){let n="";const{type:o}=t?.position||{};return HSt.includes(o)&&(n+=`${e} {`,n+=`position: ${o};`,VSt.forEach(r=>{t?.position?.[r]!==void 0&&(n+=`${r}: ${t.position[r]};`)}),(o==="sticky"||o==="fixed")&&(n+="z-index: 10"),n+="}"),n}function XSt(e){const t=An(e,qO);return!!(t===!0||t?.sticky)}function GSt(e){const t=An(e,qO);return!!(t===!0||t?.fixed)}function KSt(e){return!!An(e,qO)}function YSt(e){const t=e?.style?.position?.type;return t==="sticky"||t==="fixed"}function Pge({name:e}={}){const[t,n]=Un("position.fixed","position.sticky"),o=!t&&!n;return!KSt(e)||o}function ZSt({style:e={},clientId:t,name:n,setAttributes:o}){const r=GSt(n),s=XSt(n),i=e?.position?.type,{firstParentClientId:c}=G(b=>{const{getBlockParents:h}=b(Q),g=h(t);return{firstParentClientId:g[g.length-1]}},[t]),l=ji(c),u=s&&i===XR.value&&l?xe(m("The block will stick to the scrollable area of the parent %s block."),l.title):null,d=x.useMemo(()=>{const b=[UR];return(s||i===XR.value)&&b.push(XR),(r||i===Ree.value)&&b.push(Ree),b},[r,s,i]),p=b=>{const g={...e,position:{...e?.position,type:b,top:b==="sticky"||b==="fixed"?"0px":void 0}};o({style:Ii(g)})},f=i&&d.find(b=>b.value===i)||UR;return f0.select({web:d.length>1?a.jsx(et,{group:"position",children:a.jsx(no,{__nextHasNoMarginBottom:!0,help:u,children:a.jsx(ob,{__next40pxDefaultSize:!0,label:m("Position"),hideLabelFromVision:!0,describedBy:xe(m("Currently selected position: %s"),f.name),options:d,value:f,onChange:({selectedItem:b})=>{p(b.value)},size:"__unstable-large"})})}):null,native:null})}const jge={edit:function(t){return Pge(t)?null:a.jsx(ZSt,{...t})},useBlockProps:JSt,attributeKeys:["style"],hasSupport(e){return Et(e,qO)}},QSt={};function JSt({name:e,style:t}){const n=Et(e,qO),o=Pge({name:e}),r=n&&!o,s=vt(QSt),i=`.wp-container-${s}.wp-container-${s}`;let c;r&&(c=USt({selector:i,style:t})||"");const l=oe({[`wp-container-${s}`]:r&&!!c,[`is-position-${t?.position?.type}`]:r&&!!c&&!!t?.position?.type});return EO({css:c}),{className:l}}const Ige={placement:"top-start"},Tee={...Ige,flip:!1,shift:!0},eCt={...Ige,flip:!0,shift:!1};function Eee(e,t,n,o,r){if(!e||!t)return Tee;const s=n?.scrollTop||0,i=m4(t),c=e.getBoundingClientRect(),l=s+c.top,u=e.ownerDocument.documentElement.clientHeight,d=l+o,p=i.top>d,f=i.height>u-o;return!r&&(p||f)?Tee:eCt}function Dge({contentElement:e,clientId:t}){const n=Wi(t),[o,r]=x.useState(0),{blockIndex:s,isSticky:i}=G(f=>{const{getBlockIndex:b,getBlockAttributes:h}=f(Q);return{blockIndex:b(t),isSticky:YSt(h(t))}},[t]),c=x.useMemo(()=>{if(e)return ps(e)},[e]),[l,u]=x.useState(()=>Eee(e,n,c,o,i)),d=Mn(f=>{r(f.offsetHeight)},[]),p=x.useCallback(()=>u(Eee(e,n,c,o,i)),[e,n,c,o]);return x.useLayoutEffect(p,[s,p]),x.useLayoutEffect(()=>{if(!e||!n)return;const f=e?.ownerDocument?.defaultView;f?.addEventHandler?.("resize",p);let b;const h=n?.ownerDocument?.defaultView;return h.ResizeObserver&&(b=new h.ResizeObserver(p),b.observe(n)),()=>{f?.removeEventHandler?.("resize",p),b&&b.disconnect()}},[p,e,n]),{...l,ref:d}}function Fge(e){return G(n=>{const{getBlockRootClientId:o,getBlockParents:r,__experimentalGetBlockListSettingsForBlocks:s,isBlockInsertionPointVisible:i,getBlockInsertionPoint:c,getBlockOrder:l,hasMultiSelection:u,getLastMultiSelectedBlockClientId:d}=n(Q),p=r(e),f=s(p),b=p.find(g=>f[g]?.__experimentalCaptureToolbars);let h=!1;if(i()){const g=c();h=l(g.rootClientId)[g.index]===e}return{capturingClientId:b,isInsertionPointVisible:h,lastClientId:u()?d():null,rootClientId:o(e)}},[e])}function tCt({clientId:e,__unstableContentRef:t}){const{capturingClientId:n,isInsertionPointVisible:o,lastClientId:r,rootClientId:s}=Fge(e),i=Dge({contentElement:t?.current,clientId:e});return a.jsx(wm,{clientId:n||e,bottomClientId:r,className:oe("block-editor-block-list__block-side-inserter-popover",{"is-insertion-point-visible":o}),__unstableContentRef:t,...i,children:a.jsx("div",{className:"block-editor-block-list__empty-block-inserter",children:a.jsx(xm,{position:"bottom right",rootClientId:s,clientId:e,__experimentalIsQuick:!0})})})}const lv=50,$ge=25,nCt=1e3,Wee=nCt*($ge/1e3);function oCt(){const e=x.useRef(null),t=x.useRef(null),n=x.useRef(null),o=x.useRef(null);x.useEffect(()=>()=>{o.current&&(clearInterval(o.current),o.current=null)},[]);const r=x.useCallback(c=>{e.current=c.clientY,n.current=ps(c.target),o.current=setInterval(()=>{if(n.current&&t.current){const l=n.current.scrollTop+t.current;n.current.scroll({top:l})}},$ge)},[]),s=x.useCallback(c=>{if(!n.current)return;const l=n.current.offsetHeight,u=e.current-n.current.offsetTop,d=c.clientY-n.current.offsetTop;if(c.clientY>u){const p=Math.max(l-u-lv,0),f=Math.max(d-u-lv,0),b=p===0||f===0?0:f/p;t.current=Wee*b}else if(c.clientY<u){const p=Math.max(u-lv,0),f=Math.max(u-d-lv,0),b=p===0||f===0?0:f/p;t.current=-Wee*b}else t.current=0},[]);return[r,s,()=>{e.current=null,n.current=null,o.current&&(clearInterval(o.current),o.current=null)}]}const Vge=({appendToOwnerDocument:e,children:t,clientIds:n,cloneClassname:o,elementId:r,onDragStart:s,onDragEnd:i,fadeWhenDisabled:c=!1,dragComponent:l})=>{const{srcRootClientId:u,isDraggable:d,icon:p,visibleInserter:f,getBlockType:b}=G(T=>{const{canMoveBlocks:E,getBlockRootClientId:B,getBlockName:N,getBlockAttributes:j,isBlockInsertionPointVisible:I}=T(Q),{getBlockType:P,getActiveBlockVariation:$}=T(kt),F=B(n[0]),X=N(n[0]),Z=$(X,j(n[0]));return{srcRootClientId:F,isDraggable:E(n),icon:Z?.icon||P(X)?.icon,visibleInserter:I(),getBlockType:P}},[n]),h=x.useRef(!1),[g,z,A]=oCt(),{getAllowedBlocks:_,getBlockNamesByClientId:v,getBlockRootClientId:M}=G(Q),{startDraggingBlocks:y,stopDraggingBlocks:k}=Oe(Q);x.useEffect(()=>()=>{h.current&&k()},[]);const C=Wi(n[0])?.closest("body");if(x.useEffect(()=>{if(!C||!c)return;const E=PN(B=>{if(!B.target.closest("[data-block]"))return;const N=v(n),j=B.target.closest("[data-block]").getAttribute("data-block"),I=_(j),P=v([j])[0];let $;if(I?.length===0){const F=M(j),X=v([F])[0],Z=_(F);$=IW(b,Z,N,X)}else $=IW(b,I,N,P);!$&&!f?window?.document?.body?.classList?.add("block-draggable-invalid-drag-token"):window?.document?.body?.classList?.remove("block-draggable-invalid-drag-token")},200);return C.addEventListener("dragover",E),()=>{C.removeEventListener("dragover",E)}},[n,C,c,_,v,M,b,f]),!d)return t({draggable:!1});const R={type:"block",srcClientIds:n,srcRootClientId:u};return a.jsx(Gbe,{appendToOwnerDocument:e,cloneClassname:o,__experimentalTransferDataType:"wp-blocks",transferData:R,onDragStart:T=>{window.requestAnimationFrame(()=>{y(n),h.current=!0,g(T),s&&s()})},onDragOver:z,onDragEnd:()=>{k(),h.current=!1,A(),i&&i()},__experimentalDragComponent:l!==void 0?l:a.jsx(C7,{count:n.length,icon:p,fadeWhenDisabled:!0}),elementId:r,children:({onDraggableStart:T,onDraggableEnd:E})=>t({draggable:!0,onDragStart:T,onDragEnd:E})})},rd=(e,t)=>e==="up"?t==="horizontal"?jt()?"right":"left":"up":e==="down"?t==="horizontal"?jt()?"left":"right":"down":null;function rCt(e,t,n,o,r,s,i){const c=n+1;if(e>1)return sCt(e,n,o,r,s,i);if(o&&r)return xe(m("Block %s is the only block, and cannot be moved"),t);if(s>0&&!r){const l=rd("down",i);if(l==="down")return xe(m("Move %1$s block from position %2$d down to position %3$d"),t,c,c+1);if(l==="left")return xe(m("Move %1$s block from position %2$d left to position %3$d"),t,c,c+1);if(l==="right")return xe(m("Move %1$s block from position %2$d right to position %3$d"),t,c,c+1)}if(s>0&&r){const l=rd("down",i);if(l==="down")return xe(m("Block %1$s is at the end of the content and can’t be moved down"),t);if(l==="left")return xe(m("Block %1$s is at the end of the content and can’t be moved left"),t);if(l==="right")return xe(m("Block %1$s is at the end of the content and can’t be moved right"),t)}if(s<0&&!o){const l=rd("up",i);if(l==="up")return xe(m("Move %1$s block from position %2$d up to position %3$d"),t,c,c-1);if(l==="left")return xe(m("Move %1$s block from position %2$d left to position %3$d"),t,c,c-1);if(l==="right")return xe(m("Move %1$s block from position %2$d right to position %3$d"),t,c,c-1)}if(s<0&&o){const l=rd("up",i);if(l==="up")return xe(m("Block %1$s is at the beginning of the content and can’t be moved up"),t);if(l==="left")return xe(m("Block %1$s is at the beginning of the content and can’t be moved left"),t);if(l==="right")return xe(m("Block %1$s is at the beginning of the content and can’t be moved right"),t)}}function sCt(e,t,n,o,r,s){const i=t+1;if(n&&o)return m("All blocks are selected, and cannot be moved");if(r>0&&!o){const c=rd("down",s);if(c==="down")return xe(m("Move %1$d blocks from position %2$d down by one place"),e,i);if(c==="left")return xe(m("Move %1$d blocks from position %2$d left by one place"),e,i);if(c==="right")return xe(m("Move %1$d blocks from position %2$d right by one place"),e,i)}if(r>0&&o){const c=rd("down",s);if(c==="down")return m("Blocks cannot be moved down as they are already at the bottom");if(c==="left")return m("Blocks cannot be moved left as they are already are at the leftmost position");if(c==="right")return m("Blocks cannot be moved right as they are already are at the rightmost position")}if(r<0&&!n){const c=rd("up",s);if(c==="up")return xe(m("Move %1$d blocks from position %2$d up by one place"),e,i);if(c==="left")return xe(m("Move %1$d blocks from position %2$d left by one place"),e,i);if(c==="right")return xe(m("Move %1$d blocks from position %2$d right by one place"),e,i)}if(r<0&&n){const c=rd("up",s);if(c==="up")return m("Blocks cannot be moved up as they are already at the top");if(c==="left")return m("Blocks cannot be moved left as they are already are at the leftmost position");if(c==="right")return m("Blocks cannot be moved right as they are already are at the rightmost position")}}const iCt=(e,t)=>e==="up"?t==="horizontal"?jt()?ma:Ll:Ww:e==="down"?t==="horizontal"?jt()?Ll:ma:tu:null,aCt=(e,t)=>e==="up"?t==="horizontal"?jt()?m("Move right"):m("Move left"):m("Move up"):e==="down"?t==="horizontal"?jt()?m("Move left"):m("Move right"):m("Move down"):null,Q7=x.forwardRef(({clientIds:e,direction:t,orientation:n,...o},r)=>{const s=vt(Q7),i=Array.isArray(e)?e:[e],c=i.length,{disabled:l}=o,{blockType:u,isDisabled:d,rootClientId:p,isFirst:f,isLast:b,firstIndex:h,orientation:g="vertical"}=G(y=>{const{getBlockIndex:k,getBlockRootClientId:S,getBlockOrder:C,getBlock:R,getBlockListSettings:T}=y(Q),E=i[0],B=S(E),N=k(E),j=k(i[i.length-1]),I=C(B),P=R(E),$=N===0,F=j===I.length-1,{orientation:X}=T(B)||{};return{blockType:P?on(P.name):null,isDisabled:l||(t==="up"?$:F),rootClientId:B,firstIndex:N,isFirst:$,isLast:F,orientation:n||X}},[e,t]),{moveBlocksDown:z,moveBlocksUp:A}=Oe(Q),_=t==="up"?A:z,v=y=>{_(e,p),o.onClick&&o.onClick(y)},M=`block-editor-block-mover-button__description-${s}`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,ref:r,className:oe("block-editor-block-mover-button",`is-${t}-button`),icon:iCt(t,g),label:aCt(t,g),"aria-describedby":M,...o,onClick:d?null:v,disabled:d,accessibleWhenDisabled:!0}),a.jsx(qn,{id:M,children:rCt(c,u&&u.title,h,f,b,t==="up"?-1:1,g)})]})}),Hge=x.forwardRef((e,t)=>a.jsx(Q7,{direction:"up",ref:t,...e})),Uge=x.forwardRef((e,t)=>a.jsx(Q7,{direction:"down",ref:t,...e}));function cCt({clientIds:e,hideDragHandle:t,isBlockMoverUpButtonDisabled:n,isBlockMoverDownButtonDisabled:o}){const{canMove:r,rootClientId:s,isFirst:i,isLast:c,orientation:l,isManualGrid:u}=G(d=>{var p;const{getBlockIndex:f,getBlockListSettings:b,canMoveBlocks:h,getBlockOrder:g,getBlockRootClientId:z,getBlockAttributes:A}=d(Q),_=Array.isArray(e)?e:[e],v=_[0],M=z(v),y=f(v),k=f(_[_.length-1]),S=g(M),{layout:C={}}=(p=A(M))!==null&&p!==void 0?p:{};return{canMove:h(e),rootClientId:M,isFirst:y===0,isLast:k===S.length-1,orientation:b(M)?.orientation,isManualGrid:C.type==="grid"&&C.isManualPlacement&&window.__experimentalEnableGridInteractivity}},[e]);return!r||i&&c&&!s||t&&u?null:a.jsxs(Wn,{className:oe("block-editor-block-mover",{"is-horizontal":l==="horizontal"}),children:[!t&&a.jsx(Vge,{clientIds:e,fadeWhenDisabled:!0,children:d=>a.jsx(Ce,{__next40pxDefaultSize:!0,icon:nde,className:"block-editor-block-mover__drag-handle",label:m("Drag"),tabIndex:"-1",...d})}),!u&&a.jsxs("div",{className:"block-editor-block-mover__move-button-container",children:[a.jsx(bs,{children:d=>a.jsx(Hge,{disabled:n,clientIds:e,...d})}),a.jsx(bs,{children:d=>a.jsx(Uge,{disabled:o,clientIds:e,...d})})]})]})}const{clearTimeout:Nee,setTimeout:lCt}=window,Xge=200;function uCt({ref:e,isFocused:t,highlightParent:n,debounceTimeout:o=Xge}){const{getSelectedBlockClientId:r,getBlockRootClientId:s}=G(Q),{toggleBlockHighlight:i}=Oe(Q),c=x.useRef(),l=G(g=>g(Q).getSettings().isDistractionFree,[]),u=g=>{if(g&&l)return;const z=r(),A=n?s(z):z;i(A,g)},d=()=>e?.current&&e.current.matches(":hover"),p=()=>{const g=d();return!t&&!g},f=()=>{const g=c.current;g&&Nee&&Nee(g)},b=g=>{g&&g.stopPropagation(),f(),u(!0)},h=g=>{g&&g.stopPropagation(),f(),c.current=lCt(()=>{p()&&u(!1)},o)};return x.useEffect(()=>()=>{u(!1),f()},[]),{debouncedShowGestures:b,debouncedHideGestures:h}}function J7({ref:e,highlightParent:t=!1,debounceTimeout:n=Xge}){const[o,r]=x.useState(!1),{debouncedShowGestures:s,debouncedHideGestures:i}=uCt({ref:e,debounceTimeout:n,isFocused:o,highlightParent:t}),c=x.useRef(!1),l=()=>e?.current&&e.current.contains(e.current.ownerDocument.activeElement);return x.useEffect(()=>{const u=e.current,d=()=>{l()&&(r(!0),s())},p=()=>{l()||(r(!1),i())};return u&&!c.current&&(u.addEventListener("focus",d,!0),u.addEventListener("blur",p,!0),c.current=!0),()=>{u&&(u.removeEventListener("focus",d),u.removeEventListener("blur",p))}},[e,c,r,s,i]),{onMouseMove:s,onMouseLeave:i}}function dCt(){const{selectBlock:e}=Oe(Q),{parentClientId:t}=G(s=>{const{getBlockParents:i,getSelectedBlockClientId:c,getParentSectionBlock:l}=ct(s(Q)),u=c(),d=l(u),p=i(u);return{parentClientId:d??p[p.length-1]}},[]),n=ji(t),o=x.useRef(),r=J7({ref:o,highlightParent:!0});return a.jsx("div",{className:"block-editor-block-parent-selector",ref:o,...r,children:a.jsx(Vt,{className:"block-editor-block-parent-selector__button",onClick:()=>e(t),label:xe(m("Select parent block: %s"),n?.title),showTooltip:!0,icon:a.jsx(Zn,{icon:n?.icon})})},t)}function Gge({blocks:e}){return Yn("medium","<")?null:a.jsx("div",{className:"block-editor-block-switcher__popover-preview-container",children:a.jsx(Io,{className:"block-editor-block-switcher__popover-preview",placement:"right-start",focusOnMount:!1,offset:16,children:a.jsxs("div",{className:"block-editor-block-switcher__preview",children:[a.jsx("div",{className:"block-editor-block-switcher__preview-title",children:m("Preview")}),a.jsx(Vd,{viewportWidth:500,blocks:e})]})})})}const pCt={};function fCt({clientIds:e,blocks:t}){const{activeBlockVariation:n,blockVariationTransformations:o}=G(s=>{const{getBlockAttributes:i,canRemoveBlocks:c}=s(Q),{getActiveBlockVariation:l,getBlockVariations:u}=s(kt),d=c(e);if(t.length!==1||!d)return pCt;const[p]=t;return{blockVariationTransformations:u(p.name,"transform"),activeBlockVariation:l(p.name,i(p.clientId))}},[e,t]);return x.useMemo(()=>o?.filter(({name:s})=>s!==n?.name),[o,n])}const bCt=({transformations:e,onSelect:t,blocks:n})=>{const[o,r]=x.useState();return a.jsxs(a.Fragment,{children:[o&&a.jsx(Gge,{blocks:jo(n[0],e.find(({name:s})=>s===o).attributes)}),e?.map(s=>a.jsx(hCt,{item:s,onSelect:t,setHoveredTransformItemName:r},s.name))]})};function hCt({item:e,onSelect:t,setHoveredTransformItemName:n}){const{name:o,icon:r,title:s}=e;return a.jsxs(Ct,{className:DB(o),onClick:i=>{i.preventDefault(),t(o)},onMouseLeave:()=>n(null),onMouseEnter:()=>n(o),children:[a.jsx(Zn,{icon:r,showColors:!0}),s]})}function mCt(e){const t={"core/paragraph":1,"core/heading":2,"core/list":3,"core/quote":4},n=x.useMemo(()=>{const o=Object.keys(t),r=e.reduce((s,i)=>{const{name:c}=i;return o.includes(c)?s.priorityTextTransformations.push(i):s.restTransformations.push(i),s},{priorityTextTransformations:[],restTransformations:[]});if(r.priorityTextTransformations.length===1&&r.priorityTextTransformations[0].name==="core/quote"){const s=r.priorityTextTransformations.pop();r.restTransformations.push(s)}return r},[e]);return n.priorityTextTransformations.sort(({name:o},{name:r})=>t[o]<t[r]?-1:1),n}const gCt=({className:e,possibleBlockTransformations:t,possibleBlockVariationTransformations:n,onSelect:o,onSelectVariation:r,blocks:s})=>{const[i,c]=x.useState(),{priorityTextTransformations:l,restTransformations:u}=mCt(t),d=l.length&&u.length,p=!!u.length&&a.jsx(MCt,{restTransformations:u,onSelect:o,setHoveredTransformItemName:c});return a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{label:m("Transform to"),className:e,children:[i&&a.jsx(Gge,{blocks:Kr(s,i)}),!!n?.length&&a.jsx(bCt,{transformations:n,blocks:s,onSelect:r}),l.map(f=>a.jsx(Kge,{item:f,onSelect:o,setHoveredTransformItemName:c},f.name)),!d&&p]}),!!d&&a.jsx(Cn,{className:e,children:p})]})};function MCt({restTransformations:e,onSelect:t,setHoveredTransformItemName:n}){return e.map(o=>a.jsx(Kge,{item:o,onSelect:t,setHoveredTransformItemName:n},o.name))}function Kge({item:e,onSelect:t,setHoveredTransformItemName:n}){const{name:o,icon:r,title:s,isDisabled:i}=e;return a.jsxs(Ct,{className:DB(o),onClick:c=>{c.preventDefault(),t(o)},disabled:i,onMouseLeave:()=>n(null),onMouseEnter:()=>n(o),children:[a.jsx(Zn,{icon:r,showColors:!0}),s]})}class $_{constructor(t=""){this._currentValue="",this._valueAsArray=[],this.value=t}entries(...t){return this._valueAsArray.entries(...t)}forEach(...t){return this._valueAsArray.forEach(...t)}keys(...t){return this._valueAsArray.keys(...t)}values(...t){return this._valueAsArray.values(...t)}get value(){return this._currentValue}set value(t){t=String(t),this._valueAsArray=[...new Set(t.split(/\s+/g).filter(Boolean))],this._currentValue=this._valueAsArray.join(" ")}get length(){return this._valueAsArray.length}toString(){return this.value}*[Symbol.iterator](){return yield*this._valueAsArray}item(t){return this._valueAsArray[t]}contains(t){return this._valueAsArray.indexOf(t)!==-1}add(...t){this.value+=" "+t.join(" ")}remove(...t){this.value=this._valueAsArray.filter(n=>!t.includes(n)).join(" ")}toggle(t,n){return n===void 0&&(n=!this.contains(t)),n?this.add(t):this.remove(t),n}replace(t,n){return this.contains(t)?(this.remove(t),this.add(n),!0):!1}supports(t){return!0}}function zCt(e,t){for(const n of new $_(t).values()){if(n.indexOf("is-style-")===-1)continue;const o=n.substring(9),r=e?.find(({name:s})=>s===o);if(r)return r}return Yge(e)}function eI(e,t,n){const o=new $_(e);return t&&o.remove("is-style-"+t.name),o.add("is-style-"+n.name),o.value}function OCt(e){return!e||e.length===0?[]:Yge(e)?e:[{name:"default",label:We("Default","block style"),isDefault:!0},...e]}function Yge(e){return e?.find(t=>t.isDefault)}function yCt(e,t){return x.useMemo(()=>{const n=t?.example,o=t?.name;if(n&&o)return jB(o,{attributes:n.attributes,innerBlocks:n.innerBlocks});if(e)return jo(e)},[t?.example?e?.name:e,t])}function tI({clientId:e,onSwitch:t}){const n=f=>{const{getBlock:b}=f(Q),h=b(e);if(!h)return{};const g=on(h.name),{getBlockStyles:z}=f(kt);return{block:h,blockType:g,styles:z(h.name),className:h.attributes.className||""}},{styles:o,block:r,blockType:s,className:i}=G(n,[e]),{updateBlockAttributes:c}=Oe(Q),l=OCt(o),u=zCt(l,i),d=yCt(r,s);return{onSelect:f=>{const b=eI(i,u,f);c(e,{className:b}),t()},stylesToRender:l,activeStyle:u,genericPreviewBlock:d,className:i}}const ACt=()=>{};function vCt({clientId:e,onSwitch:t=ACt}){const{onSelect:n,stylesToRender:o,activeStyle:r}=tI({clientId:e,onSwitch:t});return!o||o.length===0?null:a.jsx(a.Fragment,{children:o.map(s=>{const i=s.label||s.name;return a.jsx(Ct,{icon:r.name===s.name?M0:null,onClick:()=>n(s),children:a.jsx(Sn,{as:"span",limit:18,ellipsizeMode:"tail",truncate:!0,children:i})},s.name)})})}function xCt({hoveredBlock:e,onSwitch:t}){const{clientId:n}=e;return a.jsx(Cn,{label:m("Styles"),className:"block-editor-block-switcher__styles__menugroup",children:a.jsx(vCt,{clientId:n,onSwitch:t})})}const Zge=(e,t,n=new Set)=>{const{clientId:o,name:r,innerBlocks:s=[]}=e;if(!n.has(o)){if(r===t)return e;for(const i of s){const c=Zge(i,t,n);if(c)return c}}},wCt=(e,t)=>{const n=hLe(e,"content");return n?.length?n.reduce((o,r)=>(t[r]&&(o[r]=t[r]),o),{}):t},_Ct=(e,t)=>{const n=wCt(t.name,t.attributes);e.attributes={...e.attributes,...n}},kCt=(e,t)=>{const n=t.map(r=>jo(r)),o=new Set;for(const r of e){let s=!1;for(const i of n){const c=Zge(i,r.name,o);if(c){s=!0,o.add(c.clientId),_Ct(c,r);break}}if(!s)return}return n},SCt=(e,t)=>x.useMemo(()=>e.reduce((n,o)=>{const r=kCt(t,o.blocks);return r&&n.push({...o,transformedBlocks:r}),n},[]),[e,t]);function CCt({blocks:e,patterns:t,onSelect:n}){const[o,r]=x.useState(!1),s=SCt(t,e);return s.length?a.jsxs(Cn,{className:"block-editor-block-switcher__pattern__transforms__menugroup",children:[o&&a.jsx(qCt,{patterns:s,onSelect:n}),a.jsx(Ct,{onClick:i=>{i.preventDefault(),r(!o)},icon:ma,children:m("Patterns")})]}):null}function qCt({patterns:e,onSelect:t}){const n=Yn("medium","<");return a.jsx("div",{className:"block-editor-block-switcher__popover-preview-container",children:a.jsx(Io,{className:"block-editor-block-switcher__popover-preview",placement:n?"bottom":"right-start",offset:16,children:a.jsx("div",{className:"block-editor-block-switcher__preview is-pattern-list-preview",children:a.jsx(RCt,{patterns:e,onSelect:t})})})})}function RCt({patterns:e,onSelect:t}){return a.jsx(S1,{role:"listbox",className:"block-editor-block-switcher__preview-patterns-container","aria-label":m("Patterns list"),children:e.map(n=>a.jsx(Qge,{pattern:n,onSelect:t},n.name))})}function Qge({pattern:e,onSelect:t}){const n="block-editor-block-switcher__preview-patterns-container",o=vt(Qge,`${n}-list__item-description`);return a.jsxs("div",{className:`${n}-list__list-item`,children:[a.jsxs(S1.Item,{render:a.jsx("div",{role:"option","aria-label":e.title,"aria-describedby":e.description?o:void 0,className:`${n}-list__item`}),onClick:()=>t(e.transformedBlocks),children:[a.jsx(Vd,{blocks:e.transformedBlocks,viewportWidth:e.viewportWidth||500}),a.jsx("div",{className:`${n}-list__item-title`,children:e.title})]}),!!e.description&&a.jsx(qn,{id:o,children:e.description})]})}function TCt({onClose:e,clientIds:t,hasBlockStyles:n,canRemove:o}){const{replaceBlocks:r,multiSelect:s,updateBlockAttributes:i}=Oe(Q),{possibleBlockTransformations:c,patterns:l,blocks:u,isUsingBindings:d}=G(C=>{const{getBlockAttributes:R,getBlocksByClientId:T,getBlockRootClientId:E,getBlockTransformItems:B,__experimentalGetPatternTransformItems:N}=C(Q),j=E(t[0]),I=T(t);return{blocks:I,possibleBlockTransformations:B(I,j),patterns:N(I,j),isUsingBindings:t.every(P=>!!R(P)?.metadata?.bindings)}},[t]),p=fCt({clientIds:t,blocks:u});function f(C){C.length>1&&s(C[0].clientId,C[C.length-1].clientId)}function b(C){const R=Kr(u,C);r(t,R),f(R)}function h(C){i(u[0].clientId,{...p.find(({name:R})=>R===C).attributes})}function g(C){r(t,C),f(C)}const z=u.length===1,A=z&&Hh(u[0]),_=!!c.length&&o&&!A,v=!!p?.length,M=!!l?.length&&o,y=_||v;if(!(n||y||M))return a.jsx("p",{className:"block-editor-block-switcher__no-transforms",children:m("No transforms.")});const S=We(z?"This block is connected.":"These blocks are connected.","block toolbar button label and description");return a.jsxs("div",{className:"block-editor-block-switcher__container",children:[M&&a.jsx(CCt,{blocks:u,patterns:l,onSelect:C=>{g(C),e()}}),y&&a.jsx(gCt,{className:"block-editor-block-switcher__transforms__menugroup",possibleBlockTransformations:c,possibleBlockVariationTransformations:p,blocks:u,onSelect:C=>{b(C),e()},onSelectVariation:C=>{h(C),e()}}),n&&a.jsx(xCt,{hoveredBlock:u[0],onSwitch:e}),d&&a.jsx(Cn,{children:a.jsx(Sn,{className:"block-editor-block-switcher__binding-indicator",children:S})})]})}const ECt=({clientIds:e})=>{const{hasContentOnlyLocking:t,canRemove:n,hasBlockStyles:o,icon:r,invalidBlocks:s,isReusable:i,isTemplate:c,isDisabled:l}=G(z=>{const{getTemplateLock:A,getBlocksByClientId:_,getBlockAttributes:v,canRemoveBlocks:M,getBlockEditingMode:y}=z(Q),{getBlockStyles:k,getBlockType:S,getActiveBlockVariation:C}=z(kt),R=_(e);if(!R.length||R.some(P=>!P))return{invalidBlocks:!0};const[{name:T}]=R,E=R.length===1,B=S(T),N=y(e[0]);let j,I;if(E)j=C(T,v(e[0]))?.icon||B.icon,I=A(e[0])==="contentOnly";else{const P=new Set(R.map(({name:$})=>$)).size===1;I=e.some($=>A($)==="contentOnly"),j=P?B.icon:H3}return{canRemove:M(e),hasBlockStyles:E&&!!k(T)?.length,icon:j,isReusable:E&&Qd(R[0]),isTemplate:E&&Hh(R[0]),hasContentOnlyLocking:I,isDisabled:N!=="default"}},[e]),u=Fd({clientId:e?.[0],maximumLength:35}),d=G(z=>z(ht).get("core","showIconLabels"),[]);if(s)return null;const p=e.length===1,f=p?u:m("Multiple blocks selected"),b=(i||c)&&!d&&u?u:void 0;if(l||!o&&!n||t)return a.jsx(Wn,{children:a.jsx(Vt,{disabled:!0,className:"block-editor-block-switcher__no-switcher-icon",title:f,icon:a.jsx(Zn,{className:"block-editor-block-switcher__toggle",icon:r,showColors:!0}),text:b})});const g=p?m("Change block type or style"):xe(Dn("Change type of %d block","Change type of %d blocks",e.length),e.length);return a.jsx(Wn,{children:a.jsx(bs,{children:z=>a.jsx(c0,{className:"block-editor-block-switcher",label:f,popoverProps:{placement:"bottom-start",className:"block-editor-block-switcher__popover"},icon:a.jsx(Zn,{className:"block-editor-block-switcher__toggle",icon:r,showColors:!0}),text:b,toggleProps:{description:g,...z},menuProps:{orientation:"both"},children:({onClose:A})=>a.jsx(TCt,{onClose:A,clientIds:e,hasBlockStyles:o,canRemove:n})})})})},WCt=Qn("BlockControls"),NCt=Qn("BlockControlsBlock"),BCt=Qn("BlockFormatControls"),LCt=Qn("BlockControlsOther"),PCt=Qn("BlockControlsParent"),$W={default:WCt,block:NCt,inline:BCt,other:LCt,parent:PCt};function jCt(e,t){const n=j0();return n[nw]?$W[e]?.Fill:n[YB]&&t?$W.parent.Fill:null}function ICt({group:e="default",controls:t,children:n,__experimentalShareWithChildBlocks:o=!1}){const r=jCt(e,o);if(!r)return null;const s=a.jsxs(a.Fragment,{children:[e==="default"&&a.jsx(Wn,{controls:t}),n]});return a.jsx(Jf,{document,children:a.jsx(r,{children:i=>{const{forwardedContext:c=[]}=i;return c.reduce((l,[u,d])=>a.jsx(u,{...d,children:l}),s)}})})}const{ComponentsContext:Bee}=ct(tr);function DCt({group:e="default",...t}){const n=x.useContext(jd),o=x.useContext(Bee),r=x.useMemo(()=>({forwardedContext:[[jd.Provider,{value:n}],[Bee.Provider,{value:o}]]}),[n,o]),s=$W[e],i=H0(s.name);if(!s)return globalThis.SCRIPT_DEBUG===!0&&zn(`Unknown BlockControls group "${e}" provided.`),null;if(!i?.length)return null;const{Slot:c}=s,l=a.jsx(c,{...t,bubblesVirtually:!0,fillProps:r});return e==="default"?l:a.jsx(Wn,{children:l})}const bt=ICt;bt.Slot=DCt;const{Fill:nI,Slot:FCt}=Qn("__unstableBlockToolbarLastItem");nI.Slot=FCt;const $Ct="align",Jge="__experimentalBorder",V_="color",VCt="customClassName",eMe="typography.__experimentalFontFamily",tMe="typography.fontSize",HCt="typography.lineHeight",UCt="typography.__experimentalFontStyle",XCt="typography.__experimentalFontWeight",nMe="typography.textAlign",GCt="typography.textColumns",KCt="typography.__experimentalTextDecoration",YCt="typography.__experimentalWritingMode",ZCt="typography.__experimentalTextTransform",QCt="typography.__experimentalLetterSpacing",JCt="layout",eqt=[HCt,tMe,UCt,XCt,eMe,nMe,GCt,KCt,ZCt,YCt,QCt],tqt=["shadow"],nqt="spacing",oqt=[...tqt,...eqt,Jge,V_,nqt],rqt=e=>Et(e,$Ct);function sqt(e,t="any"){const n=An(e,Jge);return n===!0?!0:t==="any"?!!(n?.color||n?.radius||n?.width||n?.style):!!n?.[t]}const iqt=e=>{const t=An(e,V_);return t!==null&&typeof t=="object"&&!!t.gradients},aqt=e=>{const t=An(e,V_);return t&&t.background!==!1},cqt=e=>Et(e,nMe),lqt=e=>{const t=An(e,V_);return t&&t.text!==!1},uqt=e=>Et(e,VCt,!0),dqt=e=>Et(e,eMe),pqt=e=>Et(e,tMe),fqt=e=>Et(e,JCt),bqt=e=>oqt.some(t=>Et(e,t));function hqt(e){try{const t=Ko(e,{__unstableSkipMigrationLogs:!0,__unstableSkipAutop:!0});return!(t.length===1&&t[0].name==="core/freeform")}catch{return!1}}const mqt={align:rqt,borderColor:e=>sqt(e,"color"),backgroundColor:aqt,textAlign:cqt,textColor:lqt,gradient:iqt,className:uqt,fontFamily:dqt,fontSize:pqt,layout:fqt,style:bqt};function gqt(e,t){return Object.entries(mqt).reduce((n,[o,r])=>(r(e.name)&&r(t.name)&&(n[o]=e.attributes[o]),n),{})}function VW(e,t,n){for(let o=0;o<Math.min(t.length,e.length);o+=1)n(e[o].clientId,gqt(t[o],e[o])),VW(e[o].innerBlocks,t[o].innerBlocks,n)}function Mqt(){const e=Fn(),{updateBlockAttributes:t}=Oe(Q),{createSuccessNotice:n,createWarningNotice:o,createErrorNotice:r}=Oe(mt);return x.useCallback(async s=>{let i="";try{if(!window.navigator.clipboard){r(m("Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers."),{type:"snackbar"});return}i=await window.navigator.clipboard.readText()}catch{r(m("Unable to paste styles. Please allow browser clipboard permissions before continuing."),{type:"snackbar"});return}if(!i||!hqt(i)){o(m("Unable to paste styles. Block styles couldn't be found within the copied content."),{type:"snackbar"});return}const c=Ko(i);if(c.length===1?e.batch(()=>{VW(s,s.map(()=>c[0]),t)}):e.batch(()=>{VW(s,c,t)}),s.length===1){const l=on(s[0].name)?.title;n(xe(m("Pasted styles to %s."),l),{type:"snackbar"})}else n(xe(m("Pasted styles to %d blocks."),s.length),{type:"snackbar"})},[e.batch,t,n,o,r])}function zqt({clientIds:e,children:t,__experimentalUpdateSelection:n}){const{getDefaultBlockName:o,getGroupingBlockName:r}=G(kt),s=G(v=>{const{canInsertBlockType:M,getBlockRootClientId:y,getBlocksByClientId:k,getDirectInsertBlock:S,canRemoveBlocks:C}=v(Q),R=k(e),T=y(e[0]),E=M(o(),T),B=T?S(T):null;return{canRemove:C(e),canInsertBlock:E||!!B,canCopyStyles:R.every(N=>!!N&&(Et(N.name,"color")||Et(N.name,"typography"))),canDuplicate:R.every(N=>!!N&&Et(N.name,"multiple",!0)&&M(N.name,T))}},[e,o]),{getBlocksByClientId:i,getBlocks:c}=G(Q),{canRemove:l,canInsertBlock:u,canCopyStyles:d,canDuplicate:p}=s,{removeBlocks:f,replaceBlocks:b,duplicateBlocks:h,insertAfterBlock:g,insertBeforeBlock:z,flashBlock:A}=Oe(Q),_=Mqt();return t({canCopyStyles:d,canDuplicate:p,canInsertBlock:u,canRemove:l,onDuplicate(){return h(e,n)},onRemove(){return f(e,n)},onInsertBefore(){z(e[0])},onInsertAfter(){g(e[e.length-1])},onGroup(){if(!e.length)return;const v=r(),M=Kr(i(e),v);M&&b(e,M)},onUngroup(){if(!e.length)return;const v=c(e[0]);v.length&&b(e,v)},onCopy(){e.length===1&&A(e[0])},async onPasteStyles(){await _(i(e))}})}const oMe=Qn(Symbol("CommentIconSlotFill"));function Oqt({clientId:e}){const t=G(o=>o(Q).getBlock(e),[e]),{replaceBlocks:n}=Oe(Q);return!t||t.name!=="core/html"?null:a.jsx(Ct,{onClick:()=>n(e,O3({HTML:J5(t)})),children:m("Convert to Blocks")})}const{Fill:H_,Slot:yqt}=Qn("__unstableBlockSettingsMenuFirstItem");H_.Slot=yqt;function rMe(e){return G(t=>{const{getBlocksByClientId:n,getSelectedBlockClientIds:o,isUngroupable:r,isGroupable:s}=t(Q),{getGroupingBlockName:i,getBlockType:c}=t(kt),l=e?.length?e:o(),u=n(l),[d]=u,p=l.length===1&&r(l[0]);return{clientIds:l,isGroupable:s(l),isUngroupable:p,blocksSelection:u,groupingBlockName:i(),onUngroup:p&&c(d.name)?.transforms?.ungroup}},[e])}const Aqt={group:{type:"constrained"},row:{type:"flex",flexWrap:"nowrap"},stack:{type:"flex",orientation:"vertical"},grid:{type:"grid"}};function vqt(){const{blocksSelection:e,clientIds:t,groupingBlockName:n,isGroupable:o}=rMe(),{replaceBlocks:r}=Oe(Q),{canRemove:s,variations:i}=G(h=>{const{canRemoveBlocks:g}=h(Q),{getBlockVariations:z}=h(kt);return{canRemove:g(t),variations:z(n,"transform")}},[t,n]),c=h=>{const g=Kr(e,n);typeof h!="string"&&(h="group"),g&&g.length>0&&(g[0].attributes.layout=Aqt[h],r(t,g))},l=()=>c("row"),u=()=>c("stack"),d=()=>c("grid");if(!o||!s)return null;const p=!!i.find(({name:h})=>h==="group-row"),f=!!i.find(({name:h})=>h==="group-stack"),b=!!i.find(({name:h})=>h==="group-grid");return a.jsxs(Wn,{children:[a.jsx(Vt,{icon:Zf,label:We("Group","action: convert blocks to group"),onClick:c}),p&&a.jsx(Vt,{icon:Nde,label:We("Row","action: convert blocks to row"),onClick:l}),f&&a.jsx(Vt,{icon:Dde,label:We("Stack","action: convert blocks to stack"),onClick:u}),b&&a.jsx(Vt,{icon:X3,label:We("Grid","action: convert blocks to grid"),onClick:d})]})}function xqt({clientIds:e,isGroupable:t,isUngroupable:n,onUngroup:o,blocksSelection:r,groupingBlockName:s,onClose:i=()=>{}}){const{getSelectedBlockClientIds:c}=G(Q),{replaceBlocks:l}=Oe(Q),u=()=>{const f=Kr(r,s);f&&l(e,f)},d=()=>{let f=r[0].innerBlocks;f.length&&(o&&(f=o(r[0].attributes,r[0].innerBlocks)),l(e,f))};if(!t&&!n)return null;const p=c();return a.jsxs(a.Fragment,{children:[t&&a.jsx(Ct,{shortcut:p.length>1?j1.primary("g"):void 0,onClick:()=>{u(),i()},children:We("Group","verb")}),n&&a.jsx(Ct,{onClick:()=>{d(),i()},children:We("Ungroup","Ungrouping blocks from within a grouping block back into individual blocks within the Editor")})]})}function km(e){return G(t=>{const{canEditBlock:n,canMoveBlock:o,canRemoveBlock:r,canLockBlockType:s,getBlockName:i,getTemplateLock:c}=t(Q),l=n(e),u=o(e),d=r(e);return{canEdit:l,canMove:u,canRemove:d,canLock:s(i(e)),isContentLocked:c(e)==="contentOnly",isLocked:!l||!u||!d}},[e])}const wqt=["core/navigation"];function _qt(e){return e.remove&&e.move?"all":e.remove&&!e.move?"insert":!1}function sMe({clientId:e,onClose:t}){const[n,o]=x.useState({move:!1,remove:!1}),{canEdit:r,canMove:s,canRemove:i}=km(e),{allowsEditLocking:c,templateLock:l,hasTemplateLock:u}=G(z=>{const{getBlockName:A,getBlockAttributes:_}=z(Q),v=A(e),M=on(v);return{allowsEditLocking:wqt.includes(v),templateLock:_(e)?.templateLock,hasTemplateLock:!!M?.attributes?.templateLock}},[e]),[d,p]=x.useState(!!l),{updateBlockAttributes:f}=Oe(Q),b=ji(e);x.useEffect(()=>{o({move:!s,remove:!i,...c?{edit:!r}:{}})},[r,s,i,c]);const h=Object.values(n).every(Boolean),g=Object.values(n).some(Boolean)&&!h;return a.jsx(Zo,{title:xe(m("Lock %s"),b.title),overlayClassName:"block-editor-block-lock-modal",onRequestClose:t,children:a.jsxs("form",{onSubmit:z=>{z.preventDefault(),f([e],{lock:n,templateLock:d?_qt(n):void 0}),t()},children:[a.jsxs("fieldset",{className:"block-editor-block-lock-modal__options",children:[a.jsx("legend",{children:m("Select the features you want to lock")}),a.jsx("ul",{role:"list",className:"block-editor-block-lock-modal__checklist",children:a.jsxs("li",{children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,className:"block-editor-block-lock-modal__options-all",label:m("Lock all"),checked:h,indeterminate:g,onChange:z=>o({move:z,remove:z,...c?{edit:z}:{}})}),a.jsxs("ul",{role:"list",className:"block-editor-block-lock-modal__checklist",children:[c&&a.jsxs("li",{className:"block-editor-block-lock-modal__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Lock editing"),checked:!!n.edit,onChange:z=>o(A=>({...A,edit:z}))}),a.jsx(qo,{className:"block-editor-block-lock-modal__lock-icon",icon:n.edit?Jv:SM})]}),a.jsxs("li",{className:"block-editor-block-lock-modal__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Lock movement"),checked:n.move,onChange:z=>o(A=>({...A,move:z}))}),a.jsx(qo,{className:"block-editor-block-lock-modal__lock-icon",icon:n.move?Jv:SM})]}),a.jsxs("li",{className:"block-editor-block-lock-modal__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Lock removal"),checked:n.remove,onChange:z=>o(A=>({...A,remove:z}))}),a.jsx(qo,{className:"block-editor-block-lock-modal__lock-icon",icon:n.remove?Jv:SM})]})]})]})}),u&&a.jsx(lt,{__nextHasNoMarginBottom:!0,className:"block-editor-block-lock-modal__template-lock",label:m("Apply to all blocks inside"),checked:d,disabled:n.move&&!n.remove,onChange:()=>p(!d)})]}),a.jsxs(Yo,{className:"block-editor-block-lock-modal__actions",justify:"flex-end",expanded:!1,children:[a.jsx(Tn,{children:a.jsx(Ce,{variant:"tertiary",onClick:t,__next40pxDefaultSize:!0,children:m("Cancel")})}),a.jsx(Tn,{children:a.jsx(Ce,{variant:"primary",type:"submit",__next40pxDefaultSize:!0,children:m("Apply")})})]})]})})}function kqt({clientId:e}){const{canLock:t,isLocked:n}=km(e),[o,r]=x.useReducer(i=>!i,!1);if(!t)return null;const s=m(n?"Unlock":"Lock");return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{icon:n?SM:pQe,onClick:r,"aria-expanded":o,"aria-haspopup":"dialog",children:s}),o&&a.jsx(sMe,{clientId:e,onClose:r})]})}function Sqt({clientId:e}){const{canLock:t,isLocked:n}=km(e),[o,r]=x.useReducer(c=>!c,!1),s=x.useRef(!1);if(x.useEffect(()=>{n&&(s.current=!0)},[n]),!n&&!s.current)return null;let i=m(n?"Unlock":"Lock");return!t&&n&&(i=m("Locked")),a.jsxs(a.Fragment,{children:[a.jsx(Wn,{className:"block-editor-block-lock-toolbar",children:a.jsx(Vt,{disabled:!t,icon:n?Jv:SM,label:i,onClick:r,"aria-expanded":o,"aria-haspopup":"dialog"})}),o&&a.jsx(sMe,{clientId:e,onClose:r})]})}const Cqt=()=>{};function qqt({clientId:e,onToggle:t=Cqt}){const{blockType:n,mode:o,isCodeEditingEnabled:r}=G(c=>{const{getBlock:l,getBlockMode:u,getSettings:d}=c(Q),p=l(e);return{mode:u(e),blockType:p?on(p.name):null,isCodeEditingEnabled:d().codeEditingEnabled}},[e]),{toggleBlockMode:s}=Oe(Q);if(!n||!Et(n,"html",!0)||!r)return null;const i=m(o==="visual"?"Edit as HTML":"Edit visually");return a.jsx(Ct,{onClick:()=>{s(e),t()},children:i})}function Rqt({clientId:e,onClose:t}){const{templateLock:n,isLockedByParent:o,isEditingAsBlocks:r}=G(u=>{const{getContentLockingParent:d,getTemplateLock:p,getTemporarilyEditingAsBlocks:f}=ct(u(Q));return{templateLock:p(e),isLockedByParent:!!d(e),isEditingAsBlocks:f()===e}},[e]),s=Oe(Q),i=!o&&n==="contentOnly";if(!i&&!r)return null;const{modifyContentLockBlock:c}=ct(s);return!r&&i&&a.jsx(Ct,{onClick:()=>{c(e),t()},children:We("Modify","Unlock content locked blocks")})}function Tqt(e){return e?.trim()?.length===0}function Eqt({clientId:e,onClose:t}){const[n,o]=x.useState(),r=ji(e),{metadata:s}=G(z=>{const{getBlockAttributes:A}=z(Q);return{metadata:A(e)?.metadata}},[e]),{updateBlockAttributes:i}=Oe(Q),c=s?.name||"",l=r?.title,u=!!c&&!!s?.bindings&&Object.values(s.bindings).some(z=>z.source==="core/pattern-overrides"),d=n!==void 0&&n!==c,p=n===l,f=Tqt(n),b=d||p,h=z=>z.target.select(),g=()=>{const z=p||f?void 0:n,A=xe(m(p||f?'Block name reset to: "%s".':'Block name changed to: "%s".'),n);Yt(A,"assertive"),i([e],{metadata:{...s,name:z}}),t()};return a.jsx(Zo,{title:m("Rename"),onRequestClose:t,overlayClassName:"block-editor-block-rename-modal",focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{onSubmit:z=>{z.preventDefault(),b&&g()},children:a.jsxs(dt,{spacing:"3",children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:n??c,label:m("Name"),help:u?m("This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern."):void 0,placeholder:l,onChange:o,onFocus:h}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,accessibleWhenDisabled:!0,disabled:!b,variant:"primary",type:"submit",children:m("Save")})]})]})})})}function Wqt({clientId:e}){const[t,n]=x.useState(!1);return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>{n(!0)},"aria-expanded":t,"aria-haspopup":"dialog",children:m("Rename")}),t&&a.jsx(Eqt,{clientId:e,onClose:()=>n(!1)})]})}function Nqt(e){return{canRename:An(e,"renaming",!0)}}const{Fill:Bqt,Slot:Lqt}=Qn("BlockSettingsMenuControls"),Pqt=({fillProps:e,clientIds:t=null})=>{const{selectedBlocks:n,selectedClientIds:o,isContentOnly:r}=G(b=>{const{getBlockNamesByClientId:h,getSelectedBlockClientIds:g,getBlockEditingMode:z}=b(Q),A=t!==null?t:g();return{selectedBlocks:h(A),selectedClientIds:A,isContentOnly:z(A[0])==="contentOnly"}},[t]),{canLock:s}=km(o[0]),{canRename:i}=Nqt(n[0]),c=o.length===1&&s&&!r,l=o.length===1&&i&&!r,u=rMe(o),{isGroupable:d,isUngroupable:p}=u,f=(d||p)&&!r;return a.jsx(Lqt,{fillProps:{...e,selectedBlocks:n,selectedClientIds:o},children:b=>!b?.length>0&&!f&&!c?null:a.jsxs(Cn,{children:[f&&a.jsx(xqt,{...u,onClose:e?.onClose}),c&&a.jsx(kqt,{clientId:o[0]}),l&&a.jsx(Wqt,{clientId:o[0]}),b,o.length===1&&a.jsx(Rqt,{clientId:o[0],onClose:e?.onClose}),e?.count===1&&!r&&a.jsx(qqt,{clientId:e?.firstBlockClientId,onToggle:e?.onClose})]})})};function cb({...e}){return a.jsx(Jf,{document,children:a.jsx(Bqt,{...e})})}cb.Slot=Pqt;function jqt({parentClientId:e,parentBlockType:t}){const n=Yn("medium","<"),{selectBlock:o}=Oe(Q),r=x.useRef(),s=J7({ref:r,highlightParent:!0});return n?a.jsx(Ct,{...s,ref:r,icon:a.jsx(Zn,{icon:t.icon}),onClick:()=>o(e),children:xe(m("Select parent block (%s)"),t.title)}):null}const Iqt={className:"block-editor-block-settings-menu__popover",placement:"bottom-start"};function Lee({clientIds:e,onCopy:t,label:n,shortcut:o,eventType:r="copy"}){const{getBlocksByClientId:s}=G(Q),i=E7(),c=Hl(()=>Ks(s(e)),()=>{t&&r==="copy"&&t(),i(r,e)}),l=n||m("Copy");return a.jsx(Ct,{ref:c,shortcut:o,children:l})}function iMe({block:e,clientIds:t,children:n,__experimentalSelectBlock:o,...r}){const s=e?.clientId,i=t.length,c=t[0],{firstParentClientId:l,parentBlockType:u,previousBlockClientId:d,selectedBlockClientIds:p,openedBlockSettingsMenu:f,isContentOnly:b}=G(R=>{const{getBlockName:T,getBlockRootClientId:E,getPreviousBlockClientId:B,getSelectedBlockClientIds:N,getBlockAttributes:j,getOpenedBlockSettingsMenu:I,getBlockEditingMode:P}=ct(R(Q)),{getActiveBlockVariation:$}=R(kt),F=E(c),X=F&&T(F);return{firstParentClientId:F,parentBlockType:F&&($(X,j(F))||on(X)),previousBlockClientId:B(c),selectedBlockClientIds:N(),openedBlockSettingsMenu:I(),isContentOnly:P(c)==="contentOnly"}},[c]),{getBlockOrder:h,getSelectedBlockClientIds:g}=G(Q),{setOpenedBlockSettingsMenu:z}=ct(Oe(Q)),A=G(R=>{const{getShortcutRepresentation:T}=R(Pi);return{duplicate:T("core/block-editor/duplicate"),remove:T("core/block-editor/remove"),insertAfter:T("core/block-editor/insert-after"),insertBefore:T("core/block-editor/insert-before")}},[]),_=p.length>0;async function v(R){if(!o)return;const T=await R;T&&T[0]&&o(T[0],!1)}function M(){if(!o)return;let R=d||l;R||(R=h()[0]);const T=_&&g().length===0;o(R,T)}const y=p?.includes(l),k=s?f===s||!1:void 0;function S(R){R&&f!==s?z(s):!R&&f&&f===s&&z(void 0)}const C=!y&&!!l;return a.jsx(zqt,{clientIds:t,__experimentalUpdateSelection:!o,children:({canCopyStyles:R,canDuplicate:T,canInsertBlock:E,canRemove:B,onDuplicate:N,onInsertAfter:j,onInsertBefore:I,onRemove:P,onCopy:$,onPasteStyles:F})=>!B&&!T&&!E&&b?null:a.jsx(c0,{icon:Wc,label:m("Options"),className:"block-editor-block-settings-menu",popoverProps:Iqt,open:k,onToggle:S,noIcons:!0,...r,children:({onClose:Z})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{children:[a.jsx(H_.Slot,{fillProps:{onClose:Z}}),C&&a.jsx(jqt,{parentClientId:l,parentBlockType:u}),i===1&&a.jsx(Oqt,{clientId:c}),a.jsx(Lee,{clientIds:t,onCopy:$,shortcut:j1.primary("c")}),T&&a.jsx(Ct,{onClick:Ku(Z,N,v),shortcut:A.duplicate,children:m("Duplicate")}),E&&!b&&a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:Ku(Z,I),shortcut:A.insertBefore,children:m("Add before")}),a.jsx(Ct,{onClick:Ku(Z,j),shortcut:A.insertAfter,children:m("Add after")})]}),a.jsx(oMe.Slot,{fillProps:{onClose:Z}})]}),R&&!b&&a.jsxs(Cn,{children:[a.jsx(Lee,{clientIds:t,onCopy:$,label:m("Copy styles"),eventType:"copyStyles"}),a.jsx(Ct,{onClick:F,children:m("Paste styles")})]}),!b&&a.jsx(cb.Slot,{fillProps:{onClose:Z,count:i,firstBlockClientId:c},clientIds:t}),typeof n=="function"?n({onClose:Z}):x.Children.map(V=>x.cloneElement(V,{onClose:Z})),B&&a.jsx(Cn,{children:a.jsx(Ct,{onClick:Ku(Z,P,M),shortcut:A.remove,children:m("Delete")})})]})})})}const aMe=Qn(Symbol("CommentIconToolbarSlotFill"));function Dqt({clientIds:e,...t}){return a.jsxs(Wn,{children:[a.jsx(aMe.Slot,{}),a.jsx(bs,{children:n=>a.jsx(iMe,{clientIds:e,toggleProps:n,...t})})]})}function Fqt({clientIds:e}){const t=e.length===1?e[0]:void 0,n=G(r=>!!t&&r(Q).getBlockMode(t)==="html",[t]),{toggleBlockMode:o}=Oe(Q);return n?a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>{o(t)},children:m("Edit visually")})}):null}const $qt=x.createContext("");function Vqt(e){const t="toolbarItem";return!e.some(n=>!(t in n.dataset))}function Pee(e){return Array.from(e.querySelectorAll("[data-toolbar-item]:not([disabled])"))}function jee(e){return e.contains(e.ownerDocument.activeElement)}function Hqt(e){const[t]=Xr.tabbable.find(e);t&&t.focus({preventScroll:!0})}function Uqt(e){const[n,o]=x.useState(!0),r=x.useCallback(()=>{const s=Xr.tabbable.find(e.current),i=Vqt(s);i||Ke("Using custom components as toolbar controls",{since:"5.6",alternative:"ToolbarItem, ToolbarButton or ToolbarDropdownMenu components",link:"https://developer.wordpress.org/block-editor/components/toolbar-button/#inside-blockcontrols"}),o(i)},[e]);return x.useLayoutEffect(()=>{const s=new window.MutationObserver(r);return s.observe(e.current,{childList:!0,subtree:!0}),()=>s.disconnect()},[r,n,e]),n}function Xqt({toolbarRef:e,focusOnMount:t,isAccessibleToolbar:n,defaultIndex:o,onIndexChange:r,shouldUseKeyboardFocusShortcut:s,focusEditorOnEscape:i}){const[c]=x.useState(t),[l]=x.useState(o),u=x.useCallback(()=>{Hqt(e.current)},[e]);p0("core/block-editor/focus-toolbar",()=>{s&&u()}),x.useEffect(()=>{c&&u()},[n,c,u]),x.useEffect(()=>{const f=e.current;let b=0;return!c&&!jee(f)&&(b=window.requestAnimationFrame(()=>{const h=Pee(f),g=l||0;h[g]&&jee(f)&&h[g].focus({preventScroll:!0})})),()=>{if(window.cancelAnimationFrame(b),!r||!f)return;const g=Pee(f).findIndex(z=>z.tabIndex===0);r(g)}},[l,c,r,e]);const{getLastFocus:p}=ct(G(Q));x.useEffect(()=>{const f=e.current;if(i){const b=h=>{const g=p();h.keyCode===gd&&g?.current&&(h.preventDefault(),g.current.focus())};return f.addEventListener("keydown",b),()=>{f.removeEventListener("keydown",b)}}},[i,p,e])}function oI({children:e,focusOnMount:t,focusEditorOnEscape:n=!1,shouldUseKeyboardFocusShortcut:o=!0,__experimentalInitialIndex:r,__experimentalOnIndexChange:s,orientation:i="horizontal",...c}){const l=x.useRef(),u=Uqt(l);return Xqt({toolbarRef:l,focusOnMount:t,defaultIndex:r,onIndexChange:s,isAccessibleToolbar:u,shouldUseKeyboardFocusShortcut:o,focusEditorOnEscape:n}),u?a.jsx(h2e,{label:c["aria-label"],ref:l,orientation:i,...c,children:e}):a.jsx(pm,{orientation:i,role:"toolbar",ref:l,...c,children:e})}function cMe(){const{isToolbarEnabled:e,isBlockDisabled:t}=G(n=>{const{getBlockEditingMode:o,getBlockName:r,getBlockSelectionStart:s}=n(Q),i=s(),c=i&&on(r(i));return{isToolbarEnabled:c&&Et(c,"__experimentalToolbar",!0),isBlockDisabled:o(i)==="disabled"}},[]);return!(!e||t)}const GR=[],Gqt=6,Kqt={placement:"bottom-start"};function Yqt({clientId:e}){const{categories:t,currentPatternName:n,patterns:o}=G(c=>{const{getBlockAttributes:l,getBlockRootClientId:u,__experimentalGetAllowedPatterns:d}=c(Q),p=l(e),f=p?.metadata?.categories||GR,b=u(e),h=f.length>0?d(b):GR;return{categories:f,currentPatternName:p?.metadata?.patternName,patterns:h}},[e]),{replaceBlocks:r}=Oe(Q),s=x.useMemo(()=>t.length===0||!o||o.length===0?GR:o.filter(c=>{const l=c.source==="core"||c.source?.startsWith("pattern-directory")&&c.source!=="pattern-directory/theme";return c.blocks.length===1&&!l&&n!==c.name&&c.categories?.some(u=>t.includes(u))&&(c.syncStatus==="unsynced"||!c.id)}).slice(0,Gqt),[t,n,o]);if(s.length<2)return null;const i=c=>{var l;const u=((l=c.blocks)!==null&&l!==void 0?l:[]).map(d=>jo(d));u[0].attributes.metadata={...u[0].attributes.metadata,categories:t},r(e,u)};return a.jsx(so,{popoverProps:Kqt,renderToggle:({onToggle:c,isOpen:l})=>a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>c(!l),"aria-expanded":l,children:m("Change design")})}),renderContent:()=>a.jsx($s,{className:"block-editor-block-toolbar-change-design-content-wrapper",paddingSize:"none",children:a.jsx(qa,{blockPatterns:s,onClickPattern:i,showTitlesAsTooltip:!0})})})}const Zqt={user:{},base:{},merged:{},setUserConfig:()=>{}},lb=x.createContext(Zqt),Iee={settings:{},styles:{}},Qqt=["appearanceTools","useRootPaddingAwareAlignments","background.backgroundImage","background.backgroundRepeat","background.backgroundSize","background.backgroundPosition","border.color","border.radius","border.style","border.width","shadow.presets","shadow.defaultPresets","color.background","color.button","color.caption","color.custom","color.customDuotone","color.customGradient","color.defaultDuotone","color.defaultGradients","color.defaultPalette","color.duotone","color.gradients","color.heading","color.link","color.palette","color.text","custom","dimensions.aspectRatio","dimensions.minHeight","layout.contentSize","layout.definitions","layout.wideSize","lightbox.enabled","lightbox.allowEditing","position.fixed","position.sticky","spacing.customSpacingSize","spacing.defaultSpacingSizes","spacing.spacingSizes","spacing.spacingScale","spacing.blockGap","spacing.margin","spacing.padding","spacing.units","typography.fluid","typography.customFontSize","typography.defaultFontSizes","typography.dropCap","typography.fontFamilies","typography.fontSizes","typography.fontStyle","typography.fontWeight","typography.letterSpacing","typography.lineHeight","typography.textAlign","typography.textColumns","typography.textDecoration","typography.textTransform","typography.writingMode"],Jqt=()=>{const{user:e,setUserConfig:t}=x.useContext(lb),n={settings:e.settings,styles:e.styles};return[!!n&&!N0(n,Iee),x.useCallback(()=>t(Iee),[t])]};function lMe(e,t,n="all"){const{setUserConfig:o,...r}=x.useContext(lb),s=t?".blocks."+t:"",i=e?"."+e:"",c=`settings${s}${i}`,l=`settings${i}`,u=n==="all"?"merged":n;return[x.useMemo(()=>{const f=r[u];if(!f)throw"Unsupported source";if(e){var b;return(b=fo(f,c))!==null&&b!==void 0?b:fo(f,l)}let h={};return Qqt.forEach(g=>{var z;const A=(z=fo(f,`settings${s}.${g}`))!==null&&z!==void 0?z:fo(f,`settings.${g}`);A!==void 0&&(h=gn(h,g.split("."),A))}),h},[r,u,e,c,l,s]),f=>{o(b=>gn(b,c.split("."),f))}]}function eRt(e,t,n="all",{shouldDecodeEncode:o=!0}={}){const{merged:r,base:s,user:i,setUserConfig:c}=x.useContext(lb),l=e?"."+e:"",u=t?`styles.blocks.${t}${l}`:`styles${l}`,d=b=>{c(h=>gn(h,u.split("."),o?TSt(r.settings,t,e,b):b))};let p,f;switch(n){case"all":p=fo(r,u),f=o?ua(r,t,p):p;break;case"user":p=fo(i,u),f=o?ua(r,t,p):p;break;case"base":p=fo(s,u),f=o?ua(s,t,p):p;break;default:throw"Unsupported source"}return[f,d]}function uMe(e,t,n){const{supportedStyles:o,supports:r}=G(s=>({supportedStyles:ct(s(kt)).getSupportedStyles(t,n),supports:s(kt).getBlockType(t)?.supports}),[t,n]);return x.useMemo(()=>{const s={...e};return o.includes("fontSize")||(s.typography={...s.typography,fontSizes:{},customFontSize:!1,defaultFontSizes:!1}),o.includes("fontFamily")||(s.typography={...s.typography,fontFamilies:{}}),s.color={...s.color,text:s.color?.text&&o.includes("color"),background:s.color?.background&&(o.includes("background")||o.includes("backgroundColor")),button:s.color?.button&&o.includes("buttonColor"),heading:s.color?.heading&&o.includes("headingColor"),link:s.color?.link&&o.includes("linkColor"),caption:s.color?.caption&&o.includes("captionColor")},o.includes("background")||(s.color.gradients=[],s.color.customGradient=!1),o.includes("filter")||(s.color.defaultDuotone=!1,s.color.customDuotone=!1),["lineHeight","fontStyle","fontWeight","letterSpacing","textAlign","textTransform","textDecoration","writingMode"].forEach(i=>{o.includes(i)||(s.typography={...s.typography,[i]:!1})}),o.includes("columnCount")||(s.typography={...s.typography,textColumns:!1}),["contentSize","wideSize"].forEach(i=>{o.includes(i)||(s.layout={...s.layout,[i]:!1})}),["padding","margin","blockGap"].forEach(i=>{o.includes(i)||(s.spacing={...s.spacing,[i]:!1});const c=Array.isArray(r?.spacing?.[i])?r?.spacing?.[i]:r?.spacing?.[i]?.sides;c?.length&&s.spacing?.[i]&&(s.spacing={...s.spacing,[i]:{...s.spacing?.[i],sides:c}})}),["aspectRatio","minHeight"].forEach(i=>{o.includes(i)||(s.dimensions={...s.dimensions,[i]:!1})}),["radius","color","style","width"].forEach(i=>{o.includes("border"+i.charAt(0).toUpperCase()+i.slice(1))||(s.border={...s.border,[i]:!1})}),["backgroundImage","backgroundSize"].forEach(i=>{o.includes(i)||(s.background={...s.background,[i]:!1})}),s.shadow=o.includes("shadow")?s.shadow:!1,n&&(s.typography.textAlign=!1),s},[e,o,r,n])}function pp(e){const t=e?.color?.palette?.custom,n=e?.color?.palette?.theme,o=e?.color?.palette?.default,r=e?.color?.defaultPalette;return x.useMemo(()=>{const s=[];return n&&n.length&&s.push({name:We("Theme","Indicates this palette comes from the theme."),colors:n}),r&&o&&o.length&&s.push({name:We("Default","Indicates this palette comes from WordPress."),colors:o}),t&&t.length&&s.push({name:We("Custom","Indicates this palette is created by the user."),colors:t}),s},[t,n,o,r])}function U_(e){const t=e?.color?.gradients?.custom,n=e?.color?.gradients?.theme,o=e?.color?.gradients?.default,r=e?.color?.defaultGradients;return x.useMemo(()=>{const s=[];return n&&n.length&&s.push({name:We("Theme","Indicates this palette comes from the theme."),gradients:n}),r&&o&&o.length&&s.push({name:We("Default","Indicates this palette comes from WordPress."),gradients:o}),t&&t.length&&s.push({name:We("Custom","Indicates this palette is created by the user."),gradients:t}),s},[t,n,o,r])}function pd(e,t="root",n={}){if(!t)return null;const{fallback:o=!1}=n,{name:r,selectors:s,supports:i}=e,c=s&&Object.keys(s).length>0,l=Array.isArray(t)?t.join("."):t;let u=null;if(c&&s.root?u=s?.root:i?.__experimentalSelector?u=i.__experimentalSelector:u=".wp-block-"+r.replace("core/","").replace("/","-"),l==="root")return u;const d=Array.isArray(t)?t:t.split(".");if(d.length===1){const f=o?u:null;if(c)return fo(s,`${l}.root`,null)||fo(s,l,null)||f;const b=fo(i,`${l}.__experimentalSelector`,null);return b?Ws(u,b):f}let p;return c&&(p=fo(s,l,null)),p||(o?pd(e,d[0],n):null)}function tRt(e=[]){const t={r:[],g:[],b:[],a:[]};return e.forEach(n=>{const o=an(n).toRgb();t.r.push(o.r/255),t.g.push(o.g/255),t.b.push(o.b/255),t.a.push(o.a)}),t}function nRt(e){return`${e}{filter:none}`}function oRt(e,t){return`${e}{filter:url(#${t})}`}function rI(e,t){const n=tRt(t);return` <svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 0 0" @@ -594,12 +594,12 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen <feComposite in2="SourceGraphic" operator="in"></feComposite> </filter> </defs> -</svg>`}function dMe({children:e,settingsOpen:t,setSettingsOpen:n}){const o=$1(),r=o?x.Fragment:Wd,s=o?"div":Rr.div,c=`link-control-settings-drawer-${vt(dMe)}`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-link-control__drawer-toggle","aria-expanded":t,onClick:()=>n(!t),icon:jt()?Ww:Af,"aria-controls":c,children:We("Advanced","Additional link settings")}),a.jsx(r,{children:t&&a.jsx(s,{className:"block-editor-link-control__drawer",hidden:!t,id:c,initial:"collapsed",animate:"open",exit:"collapsed",variants:{open:{opacity:1,height:"auto"},collapsed:{opacity:0,height:0}},transition:{duration:.1},children:a.jsx("div",{className:"block-editor-link-control__drawer-inner",children:e})})})]})}const sRt=({searchTerm:e,onClick:t,itemProps:n,buttonText:o})=>{if(!e)return null;let r;return o?r=typeof o=="function"?o(e):o:r=cr(xe(m("Create: <mark>%s</mark>"),e),{mark:a.jsx("mark",{})}),a.jsx(Ct,{...n,iconPosition:"left",icon:Fs,className:"block-editor-link-control__search-item",onClick:t,children:r})},Dee={post:HP,page:wa,post_tag:GP,category:gz,attachment:LP};function iRt({isURL:e,suggestion:t}){let n=null;return e?n=ude:t.type in Dee&&(n=Dee[t.type],t.type==="page"&&(t.isFrontPage&&(n=dde),t.isBlogHome&&(n=$w))),n?a.jsx(wn,{className:"block-editor-link-control__search-item-icon",icon:n}):null}function aRt(e){return e?.trim()?.length?e?.replace(/^\/?/,"/"):e}function cRt(e){return e?.trim()?.length?e?.replace(/\/$/,""):e}const lRt=(e,...t)=>(...n)=>e(...n,...t),uRt=e=>t=>t==null||t!==t?e:t;function dRt(e){return e&&Ku(c3,Aa,uRt(""),lRt(Ph,24),cRt,aRt)(e)}const pRt=({itemProps:e,suggestion:t,searchTerm:n,onClick:o,isURL:r=!1,shouldShowType:s=!1})=>{const i=r?m("Press ENTER to add this link"):dRt(t.url);return a.jsx(Ct,{...e,info:i,iconPosition:"left",icon:a.jsx(iRt,{suggestion:t,isURL:r}),onClick:o,shortcut:s&&fRt(t),className:"block-editor-link-control__search-item",children:a.jsx(rht,{text:v1(t.title),highlight:n})})};function fRt(e){return e.isFrontPage?"front page":e.isBlogHome?"blog home":e.type==="post_tag"?"tag":e.type}const Kx="__CREATE__",pMe="tel",fMe="link",bMe="mailto",hMe="internal",Fee=[fMe,bMe,pMe,hMe],mMe=[{id:"opensInNewTab",title:m("Open in new tab")}];function bRt({withCreateSuggestion:e,currentInputValue:t,handleSuggestionClick:n,suggestionsListProps:o,buildSuggestionItemProps:r,suggestions:s,selectedSuggestion:i,isLoading:c,isInitialSuggestions:l,createSuggestionButtonText:u,suggestionsQuery:d}){const p=oe("block-editor-link-control__search-results",{"is-loading":c}),f=s.length===1&&Fee.includes(s[0].type),b=e&&!f&&!l,h=!d?.type,g=l?m("Suggestions"):xe(m('Search results for "%s"'),t);return a.jsx("div",{className:"block-editor-link-control__search-results-wrapper",children:a.jsx("div",{...o,className:p,"aria-label":g,children:a.jsx(Cn,{children:s.map((z,A)=>b&&Kx===z.type?a.jsx(sRt,{searchTerm:t,buttonText:u,onClick:()=>n(z),itemProps:r(z,A),isSelected:A===i},z.type):Kx===z.type?null:a.jsx(pRt,{itemProps:r(z,A),suggestion:z,index:A,onClick:()=>{n(z)},isSelected:A===i,isURL:Fee.includes(z.type),searchTerm:t,shouldShowType:h,isFrontPage:z?.isFrontPage,isBlogHome:z?.isBlogHome},`${z.id}-${z.type}`))})})})}const hRt=()=>Promise.resolve([]),mRt=e=>{let t=fMe;const n=x5(e)||"";return n.includes("mailto")&&(t=bMe),n.includes("tel")&&(t=pMe),e?.startsWith("#")&&(t=hMe),Promise.resolve([{id:e,title:e,url:t==="URL"?jf(e):e,type:t}])},gRt=async(e,t,n,o,r,s)=>{const{isInitialSuggestions:i}=t,c=await n(e,t);return c.map(l=>Number(l.id)===r?(l.isFrontPage=!0,l):(Number(l.id)===s&&(l.isBlogHome=!0),l)),i||Kj(e)||!o?c:c.concat({title:e,url:e,type:Kx})};function MRt(e,t,n){const{fetchSearchSuggestions:o,pageOnFront:r,pageForPosts:s}=G(c=>{const{getSettings:l}=c(Q);return{pageOnFront:l().pageOnFront,pageForPosts:l().pageForPosts,fetchSearchSuggestions:l().__experimentalFetchLinkSuggestions}},[]),i=t?mRt:hRt;return x.useCallback((c,{isInitialSuggestions:l})=>Kj(c)?i(c):gRt(c,{...e,isInitialSuggestions:l},o,n,r,s),[i,o,r,s,e,n])}const zRt=()=>Promise.resolve([]),YR=()=>{},ORt=x.forwardRef(({value:e,children:t,currentLink:n={},className:o=null,placeholder:r=null,withCreateSuggestion:s=!1,onCreateSuggestion:i=YR,onChange:c=YR,onSelect:l=YR,showSuggestions:u=!0,renderSuggestions:d=M=>a.jsx(bRt,{...M}),fetchSuggestions:p=null,allowDirectEntry:f=!0,showInitialSuggestions:b=!1,suggestionsQuery:h={},withURLSuggestion:g=!0,createSuggestionButtonText:z,hideLabelFromVision:A=!1,suffix:_},v)=>{const M=MRt(h,f,s),y=u?p||M:zRt,[k,S]=x.useState(),C=(B,N)=>{c(B),S(N)},R=B=>d({...B,withCreateSuggestion:s,createSuggestionButtonText:z,suggestionsQuery:h,handleSuggestionClick:N=>{B.handleSuggestionClick&&B.handleSuggestionClick(N),T(N)}}),T=async B=>{let N=B;if(Kx===B.type){try{N=await i(B.title),N?.url&&l(N)}catch{}return}if(f||N&&Object.keys(N).length>=1){const{id:j,url:I,...P}=n??{};l({...P,...N},N)}},E=r??m("Search or type URL");return a.jsxs("div",{className:"block-editor-link-control__search-input-container",children:[a.jsx(bI,{disableSuggestions:n?.url===e,label:E,hideLabelFromVision:A,className:o,value:e,onChange:C,placeholder:E,__experimentalRenderSuggestions:u?R:null,__experimentalFetchLinkSuggestions:y,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:b,onSubmit:(B,N)=>{const j=B||k;!j&&!e?.trim()?.length?N.preventDefault():T(j||{url:e})},ref:v,suffix:_}),t]})}),{Slot:yRt,Fill:ARt}=Qn("BlockEditorLinkControlViewer");function vRt(e,t){switch(t.type){case"RESOLVED":return{...e,isFetching:!1,richData:t.richData};case"ERROR":return{...e,isFetching:!1,richData:null};case"LOADING":return{...e,isFetching:!0};default:throw new Error(`Unexpected action type ${t.type}`)}}function xRt(e){const[t,n]=x.useReducer(vRt,{richData:null,isFetching:!1}),{fetchRichUrlData:o}=G(r=>{const{getSettings:s}=r(Q);return{fetchRichUrlData:s().__experimentalFetchRichUrlData}},[]);return x.useEffect(()=>{if(e?.length&&o&&typeof AbortController<"u"){n({type:"LOADING"});const r=new window.AbortController,s=r.signal;return o(e,{signal:s}).then(i=>{n({type:"RESOLVED",richData:i})}).catch(()=>{s.aborted||n({type:"ERROR"})}),()=>{r.abort()}}},[e]),t}function wRt(e){return e.replace(/^[a-z\-.\+]+[0-9]*:(\/\/)?/i,"").replace(/^www\./i,"")}function _Rt({value:e,onEditClick:t,hasRichPreviews:n=!1,hasUnlinkControl:o=!1,onRemove:r}){const s=G(A=>A(ht).get("core","showIconLabels"),[]),i=n?e?.url:null,{richData:c,isFetching:l}=xRt(i),u=c&&Object.keys(c).length,d=e&&Ph(c3(e.url),24)||"",p=!e?.url?.length,f=!p&&v1(c?.title||e?.title||d),b=!e?.url||wRt(f)===d;let h;c?.icon?h=a.jsx("img",{src:c?.icon,alt:""}):p?h=a.jsx(wn,{icon:pde,size:32}):h=a.jsx(wn,{icon:ude});const{createNotice:g}=Oe(mt),z=Ul(e.url,()=>{g("info",m("Link copied to clipboard."),{isDismissible:!0,type:"snackbar"})});return a.jsx("div",{role:"group","aria-label":m("Manage link"),className:oe("block-editor-link-control__search-item",{"is-current":!0,"is-rich":u,"is-fetching":!!l,"is-preview":!0,"is-error":p,"is-url-title":f===d}),children:a.jsxs("div",{className:"block-editor-link-control__search-item-top",children:[a.jsxs("span",{className:"block-editor-link-control__search-item-header",role:"figure","aria-label":m("Link information"),children:[a.jsx("span",{className:oe("block-editor-link-control__search-item-icon",{"is-image":c?.icon}),children:h}),a.jsx("span",{className:"block-editor-link-control__search-item-details",children:p?a.jsx("span",{className:"block-editor-link-control__search-item-error-notice",children:m("Link is empty")}):a.jsxs(a.Fragment,{children:[a.jsx(hr,{className:"block-editor-link-control__search-item-title",href:e.url,children:a.jsx(zs,{numberOfLines:1,children:f})}),!b&&a.jsx("span",{className:"block-editor-link-control__search-item-info",children:a.jsx(zs,{numberOfLines:1,children:d})})]})})]}),a.jsx(Ce,{icon:Nd,label:m("Edit link"),onClick:t,size:"compact",showTooltip:!s}),o&&a.jsx(Ce,{icon:jl,label:m("Remove link"),onClick:r,size:"compact",showTooltip:!s}),a.jsx(Ce,{icon:WP,label:m("Copy link"),ref:z,accessibleWhenDisabled:!0,disabled:p,size:"compact",showTooltip:!s}),a.jsx(yRt,{fillProps:e})]})})}const kRt=()=>{},SRt=({value:e,onChange:t=kRt,settings:n})=>{if(!n||!n.length)return null;const o=s=>i=>{t({...e,[s.id]:i})},r=n.map(s=>a.jsx(K0,{__nextHasNoMarginBottom:!0,className:"block-editor-link-control__setting",label:s.title,onChange:o(s),checked:e?!!e[s.id]:!1,help:s?.help},s.id));return a.jsxs("fieldset",{className:"block-editor-link-control__settings",children:[a.jsx(qn,{as:"legend",children:m("Currently selected link settings")}),r]})};function CRt(e){const t=x.useRef(),[n,o]=x.useState(!1),[r,s]=x.useState(null),i=async function(c){o(!0),s(null);try{return t.current=qRt(Promise.resolve(e(c))),await t.current.promise}catch(l){if(l&&l.isCanceled)return;throw s(l.message||m("An unknown error occurred during creation. Please try again.")),l}finally{o(!1)}};return x.useEffect(()=>()=>{t.current&&t.current.cancel()},[]),{createPage:i,isCreatingPage:n,errorMessage:r}}const qRt=e=>{let t=!1;return{promise:new Promise((o,r)=>{e.then(s=>t?r({isCanceled:!0}):o(s),s=>r(t?{isCanceled:!0}:s))}),cancel(){t=!0}}};var ZR,$ee;function RRt(){return $ee||($ee=1,ZR=function e(t,n){if(t===n)return!0;if(t&&n&&typeof t=="object"&&typeof n=="object"){if(t.constructor!==n.constructor)return!1;var o,r,s;if(Array.isArray(t)){if(o=t.length,o!=n.length)return!1;for(r=o;r--!==0;)if(!e(t[r],n[r]))return!1;return!0}if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if(s=Object.keys(t),o=s.length,o!==Object.keys(n).length)return!1;for(r=o;r--!==0;)if(!Object.prototype.hasOwnProperty.call(n,s[r]))return!1;for(r=o;r--!==0;){var i=s[r];if(!e(t[i],n[i]))return!1}return!0}return t!==t&&n!==n}),ZR}var TRt=RRt();const gMe=Zr(TRt);function ERt(e){const[t,n]=x.useState(e||{}),[o,r]=x.useState(e);return gMe(e,o)||(r(e),n(e)),[t,n,l=>{n({...t,url:l})},l=>{n({...t,title:l})},l=>u=>{const d=Object.keys(u).reduce((p,f)=>(l.includes(f)&&(p[f]=u[f]),p),{});n({...t,...d})}]}const QR=()=>{},Vee="core/block-editor",Hee="linkControlSettingsDrawer";function kc({searchInputPlaceholder:e,value:t,settings:n=mMe,onChange:o=QR,onRemove:r,onCancel:s,noDirectEntry:i=!1,showSuggestions:c=!0,showInitialSuggestions:l,forceIsEditingLink:u,createSuggestion:d,withCreateSuggestion:p,inputValue:f="",suggestionsQuery:b={},noURLSuggestion:h=!1,createSuggestionButtonText:g,hasRichPreviews:z=!1,hasTextControl:A=!1,renderControlBottom:_=null}){p===void 0&&d&&(p=!0);const[v,M]=x.useState(!1),{advancedSettingsPreference:y}=G(L=>{var U;return{advancedSettingsPreference:(U=L(ht).get(Vee,Hee))!==null&&U!==void 0?U:!1}},[]),{set:k}=Oe(ht),S=L=>{k&&k(Vee,Hee,L),M(L)},C=y||v,R=x.useRef(!0),T=x.useRef(),E=x.useRef(),B=x.useRef(!1),N=n.map(({id:L})=>L),[j,I,P,$,F]=ERt(t),X=t&&!i0e(j,t),[Z,V]=x.useState(u!==void 0?u:!t||!t.url),{createPage:ee,isCreatingPage:te,errorMessage:J}=CRt(d);x.useEffect(()=>{u!==void 0&&V(u)},[u]),x.useEffect(()=>{if(R.current)return;(Xr.focusable.find(T.current)[0]||T.current).focus(),B.current=!1},[Z,te]),x.useEffect(()=>(R.current=!1,()=>{R.current=!0}),[]);const ue=t?.url?.trim()?.length>0,ce=()=>{B.current=!!T.current?.contains(T.current.ownerDocument.activeElement),V(!1)},me=L=>{const U=Object.keys(L).reduce((ne,ve)=>(N.includes(ve)||(ne[ve]=L[ve]),ne),{});o({...j,...U,title:j?.title||L?.title}),ce()},de=()=>{X&&o({...t,...j,url:je}),ce()},Ae=L=>{const{keyCode:U}=L;U===Gr&&!ie&&(L.preventDefault(),de())},ye=()=>{I(t)},Ne=L=>{L.preventDefault(),L.stopPropagation(),ye(),ue?ce():r?.(),s?.()},je=f||j?.url||"",ie=!je?.trim()?.length,we=r&&t&&!Z&&!te,re=Z&&ue,pe=ue&&A,ke=(Z||!t)&&!te,Se=!X||ie,se=!!n?.length&&Z&&ue;return a.jsxs("div",{tabIndex:-1,ref:T,className:"block-editor-link-control",children:[te&&a.jsxs("div",{className:"block-editor-link-control__loading",children:[a.jsx(Xn,{})," ",m("Creating"),"…"]}),ke&&a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:oe({"block-editor-link-control__search-input-wrapper":!0,"has-text-control":pe,"has-actions":re}),children:[pe&&a.jsx(dn,{__nextHasNoMarginBottom:!0,ref:E,className:"block-editor-link-control__field block-editor-link-control__text-content",label:m("Text"),value:j?.title,onChange:$,onKeyDown:Ae,__next40pxDefaultSize:!0}),a.jsx(ORt,{currentLink:t,className:"block-editor-link-control__field block-editor-link-control__search-input",placeholder:e,value:je,withCreateSuggestion:p,onCreateSuggestion:ee,onChange:P,onSelect:me,showInitialSuggestions:l,allowDirectEntry:!i,showSuggestions:c,suggestionsQuery:b,withURLSuggestion:!h,createSuggestionButtonText:g,hideLabelFromVision:!pe,suffix:re?void 0:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{onClick:Se?QR:de,label:m("Submit"),icon:jw,className:"block-editor-link-control__search-submit","aria-disabled":Se,size:"small"})})})]}),J&&a.jsx(L1,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1,children:J})]}),t&&!Z&&!te&&a.jsx(_Rt,{value:t,onEditClick:()=>V(!0),hasRichPreviews:z,hasUnlinkControl:we,onRemove:()=>{r(),V(!0)}},t?.url),se&&a.jsx("div",{className:"block-editor-link-control__tools",children:!ie&&a.jsx(dMe,{settingsOpen:C,setSettingsOpen:S,children:a.jsx(SRt,{value:j,settings:n,onChange:F(N)})})}),re&&a.jsxs(Ot,{justify:"right",className:"block-editor-link-control__search-actions",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:Ne,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:Se?QR:de,className:"block-editor-link-control__search-submit","aria-disabled":Se,children:m("Save")})]}),!te&&_&&_()]})}kc.ViewerFill=ARt;kc.DEFAULT_LINK_SETTINGS=mMe;const WRt=()=>{};let NRt=0;const BRt=({mediaURL:e,mediaId:t,mediaIds:n,allowedTypes:o,accept:r,onError:s,onSelect:i,onSelectURL:c,onReset:l,onToggleFeaturedImage:u,useFeaturedImage:d,onFilesUpload:p=WRt,name:f=m("Replace"),createNotice:b,removeNotice:h,children:g,multiple:z=!1,addToGallery:A,handleUpload:_=!0,popoverProps:v,renderToggle:M})=>{const{getSettings:y}=G(Q),k=`block-editor/media-replace-flow/error-notice/${++NRt}`,S=N=>{const j=v1(N);if(s){s(j);return}setTimeout(()=>{b("error",j,{speak:!0,id:k,isDismissible:!0})},1e3)},C=(N,j)=>{d&&u&&u(),j(),i(N),Yt(m("The media file has been replaced")),h(k)},R=(N,j)=>{const I=N.target.files;if(!_)return j(),i(I);p(I),y().mediaUpload({allowedTypes:o,filesList:I,onFileChange:([P])=>{C(P,j)},onError:S})},T=N=>{N.keyCode===Ps&&(N.preventDefault(),N.target.click())},B=z&&(!o||o.length===0?!1:o.every(N=>N==="image"||N.startsWith("image/")));return a.jsx(so,{popoverProps:v,contentClassName:"block-editor-media-replace-flow__options",renderToggle:({isOpen:N,onToggle:j})=>M?M({"aria-expanded":N,"aria-haspopup":"true",onClick:j,onKeyDown:T,children:f}):a.jsx(Vt,{"aria-expanded":N,"aria-haspopup":"true",onClick:j,onKeyDown:T,children:f}),renderContent:({onClose:N})=>a.jsxs(a.Fragment,{children:[a.jsxs(pm,{className:"block-editor-media-replace-flow__media-upload-menu",children:[a.jsxs(Hd,{children:[a.jsx(ab,{gallery:B,addToGallery:A,multiple:z,value:z?n:t,onSelect:j=>C(j,N),allowedTypes:o,render:({open:j})=>a.jsx(Ct,{icon:DP,onClick:j,children:m("Open Media Library")})}),a.jsx(qx,{onChange:j=>{R(j,N)},accept:r,multiple:!!z,render:({openFileDialog:j})=>a.jsx(Ct,{icon:cm,onClick:()=>{j()},children:We("Upload","verb")})})]}),u&&a.jsx(Ct,{icon:kde,onClick:u,isPressed:d,children:m("Use featured image")}),e&&l&&a.jsx(Ct,{onClick:()=>{l(),N()},children:m("Reset")}),typeof g=="function"?g({onClose:N}):g]}),c&&a.jsxs("form",{className:"block-editor-media-flow__url-input",children:[a.jsx("span",{className:"block-editor-media-replace-flow__image-url-label",children:m("Current media URL:")}),a.jsx(kc,{value:{url:e},settings:[],showSuggestions:!1,onChange:({url:j})=>{c(j)}})]})]})})},Pc=Co([Ff(e=>{const{createNotice:t,removeNotice:n}=e(mt);return{createNotice:t,removeNotice:n}}),ap("editor.MediaReplaceFlow")])(BRt),dv="image",LRt={placement:"left-start",offset:36,shift:!0,className:"block-editor-global-styles-background-panel__popover"},Yx=()=>{};function PRt(e){return m(e==="cover"||e===void 0?"Image covers the space evenly.":e==="contain"?"Image is contained without distortion.":"Image has a fixed width.")}const jRt=e=>{if(!e||isNaN(e.x)&&isNaN(e.y))return;const t=isNaN(e.x)?.5:e.x,n=isNaN(e.y)?.5:e.y;return`${t*100}% ${n*100}%`},IRt=e=>{if(!e)return{x:void 0,y:void 0};let[t,n]=e.split(" ").map(o=>parseFloat(o)/100);return t=isNaN(t)?void 0:t,n=isNaN(n)?t:n,{x:t,y:n}};function MMe({as:e="span",imgUrl:t,toggleProps:n={},filename:o,label:r,className:s,onToggleCallback:i=Yx}){return x.useEffect(()=>{typeof n?.isOpen<"u"&&i(n?.isOpen)},[n?.isOpen,i]),a.jsx(tb,{as:e,className:s,...n,children:a.jsxs(Ot,{justify:"flex-start",as:"span",className:"block-editor-global-styles-background-panel__inspector-preview-inner",children:[t&&a.jsx("span",{className:"block-editor-global-styles-background-panel__inspector-image-indicator-wrapper","aria-hidden":!0,children:a.jsx("span",{className:"block-editor-global-styles-background-panel__inspector-image-indicator",style:{backgroundImage:`url(${t})`}})}),a.jsxs(Tn,{as:"span",style:t?{}:{flexGrow:1},children:[a.jsx(zs,{numberOfLines:1,className:"block-editor-global-styles-background-panel__inspector-media-replace-title",children:r}),a.jsx(qn,{as:"span",children:t?xe(m("Background image: %s"),o||r):m("No background image selected")})]})]})})}function DRt({label:e,filename:t,url:n,children:o,onToggle:r=Yx,hasImageValue:s}){if(!s)return;const i=e||If(n)||m("Add background image");return a.jsx(so,{popoverProps:LRt,renderToggle:({onToggle:c,isOpen:l})=>{const u={onClick:c,className:"block-editor-global-styles-background-panel__dropdown-toggle","aria-expanded":l,"aria-label":m("Background size, position and repeat options."),isOpen:l};return a.jsx(MMe,{imgUrl:n,filename:t,label:i,toggleProps:u,as:"button",onToggleCallback:r})},renderContent:()=>a.jsx($s,{className:"block-editor-global-styles-background-panel__dropdown-content-wrapper",paddingSize:"medium",children:o})})}function FRt(){return a.jsx(vo,{className:"block-editor-global-styles-background-panel__loading",children:a.jsx(Xn,{})})}function Uee({onChange:e,style:t,inheritedValue:n,onRemoveImage:o=Yx,onResetImage:r=Yx,displayInPanel:s,defaultValues:i}){const[c,l]=x.useState(!1),{getSettings:u}=G(Q),{id:d,title:p,url:f}=t?.background?.backgroundImage||{...n?.background?.backgroundImage},b=x.useRef(),{createErrorNotice:h}=Oe(mt),g=C=>{h(C,{type:"snackbar"}),l(!1)},z=()=>e(gn(t,["background","backgroundImage"],void 0)),A=C=>{if(!C||!C.url){z(),l(!1);return}if(Nr(C.url)){l(!0);return}if(C.media_type&&C.media_type!==dv||!C.media_type&&C.type&&C.type!==dv){g(m("Only images can be used as a background image."));return}const R=t?.background?.backgroundSize||i?.backgroundSize,T=t?.background?.backgroundPosition;e(gn(t,["background"],{...t?.background,backgroundImage:{url:C.url,id:C.id,source:"file",title:C.title||void 0},backgroundPosition:!T&&(R==="auto"||!R)?"50% 0":T,backgroundSize:R})),l(!1)},_=C=>{if(C?.length>1){g(m("Only one image can be used as a background image."));return}u().mediaUpload({allowedTypes:[dv],filesList:C,onFileChange([R]){A(R)},onError:g})},v=Qz(t),M=()=>{const[C]=Xr.tabbable.find(b.current);C?.focus(),C?.click()},y=()=>e(gn(t,["background"],{backgroundImage:"none"})),k=!v&&Qz(n),S=p||If(f)||m("Add background image");return a.jsxs("div",{ref:b,className:"block-editor-global-styles-background-panel__image-tools-panel-item",children:[c&&a.jsx(FRt,{}),a.jsx(Pc,{mediaId:d,mediaURL:f,allowedTypes:[dv],accept:"image/*",onSelect:A,popoverProps:{className:oe({"block-editor-global-styles-background-panel__media-replace-popover":s})},name:a.jsx(MMe,{className:"block-editor-global-styles-background-panel__image-preview",imgUrl:f,filename:p,label:S}),renderToggle:C=>a.jsx(Ce,{...C,__next40pxDefaultSize:!0}),onError:g,onReset:()=>{M(),r()},children:k&&a.jsx(Ct,{onClick:()=>{M(),y(),o()},children:m("Remove")})}),a.jsx(Tz,{onFilesDrop:_,label:m("Drop to upload")})]})}function $Rt({onChange:e,style:t,inheritedValue:n,defaultValues:o}){const r=t?.background?.backgroundSize||n?.background?.backgroundSize,s=t?.background?.backgroundRepeat||n?.background?.backgroundRepeat,i=t?.background?.backgroundImage?.url||n?.background?.backgroundImage?.url,c=t?.background?.backgroundImage?.id,l=t?.background?.backgroundPosition||n?.background?.backgroundPosition,u=t?.background?.backgroundAttachment||n?.background?.backgroundAttachment;let d=!r&&c?o?.backgroundSize:r||"auto";d=["cover","contain","auto"].includes(d)?d:"auto";const p=!(s==="no-repeat"||d==="cover"&&s===void 0),f=A=>{let _=s,v=l;A==="contain"&&(_="no-repeat",v=void 0),A==="cover"&&(_=void 0,v=void 0),(d==="cover"||d==="contain")&&A==="auto"&&(_=void 0,t?.background?.backgroundImage?.id&&(v="50% 0")),!A&&d==="auto"&&(A="auto"),e(gn(t,["background"],{...t?.background,backgroundPosition:v,backgroundRepeat:_,backgroundSize:A}))},b=A=>{e(gn(t,["background","backgroundPosition"],jRt(A)))},h=()=>e(gn(t,["background","backgroundRepeat"],p===!0?"no-repeat":"repeat")),g=()=>e(gn(t,["background","backgroundAttachment"],u==="fixed"?"scroll":"fixed")),z=!l&&c&&r==="contain"?o?.backgroundPosition:l;return a.jsxs(dt,{spacing:3,className:"single-column",children:[a.jsx(u_,{__nextHasNoMarginBottom:!0,label:m("Focal point"),url:i,value:IRt(z),onChange:b}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Fixed background"),checked:u==="fixed",onChange:g}),a.jsxs(Do,{__nextHasNoMarginBottom:!0,size:"__unstable-large",label:m("Size"),value:d,onChange:f,isBlock:!0,help:PRt(r||o?.backgroundSize),children:[a.jsx(Kn,{value:"cover",label:We("Cover","Size option for background image control")},"cover"),a.jsx(Kn,{value:"contain",label:We("Contain","Size option for background image control")},"contain"),a.jsx(Kn,{value:"auto",label:We("Tile","Size option for background image control")},"tile")]}),a.jsxs(Ot,{justify:"flex-start",spacing:2,as:"span",children:[a.jsx(Ro,{"aria-label":m("Background image width"),onChange:f,value:r,size:"__unstable-large",__unstableInputWidth:"100px",min:0,placeholder:m("Auto"),disabled:d!=="auto"||d===void 0}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Repeat"),checked:p,onChange:h,disabled:d==="cover"})]})]})}function VRt({value:e,onChange:t,inheritedValue:n=e,settings:o,defaultValues:r={}}){const{globalStyles:s,_links:i}=G(z=>{const{getSettings:A}=z(Q),_=A();return{globalStyles:_[dO],_links:_[k2e]}},[]),c=x.useMemo(()=>{const z={background:{}};return n?.background?(Object.entries(n?.background).forEach(([A,_])=>{z.background[A]=$W(_,{styles:s,_links:i})}),z):n},[s,i,n]),l=()=>t(gn(e,["background"],{})),{title:u,url:d}=e?.background?.backgroundImage||{...c?.background?.backgroundImage},p=Qz(e)||Qz(c),f=e?.background?.backgroundImage||n?.background?.backgroundImage,b=p&&f!=="none"&&(o?.background?.backgroundSize||o?.background?.backgroundPosition||o?.background?.backgroundRepeat),[h,g]=x.useState(!1);return a.jsx("div",{className:oe("block-editor-global-styles-background-panel__inspector-media-replace-container",{"is-open":h}),children:b?a.jsx(DRt,{label:u,filename:u,url:d,onToggle:g,hasImageValue:p,children:a.jsxs(dt,{spacing:3,className:"single-column",children:[a.jsx(Uee,{onChange:t,style:e,inheritedValue:c,displayInPanel:!0,onResetImage:()=>{g(!1),l()},onRemoveImage:()=>g(!1),defaultValues:r}),a.jsx($Rt,{onChange:t,style:e,defaultValues:r,inheritedValue:c})]})}):a.jsx(Uee,{onChange:t,style:e,inheritedValue:c,defaultValues:r,onResetImage:()=>{g(!1),l()},onRemoveImage:()=>g(!1)})})}const HRt={backgroundImage:!0};function iI(e){return e?.background?.backgroundImage}function Qz(e){return!!e?.background?.backgroundImage?.id||typeof e?.background?.backgroundImage=="string"||!!e?.background?.backgroundImage?.url}function URt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r,headerLabel:s}){const i=dp(),c=()=>{const l=e(n);t(l)};return a.jsx(En,{label:s,resetAll:c,panelId:o,dropdownMenuProps:i,children:r})}function zMe({as:e=URt,value:t,onChange:n,inheritedValue:o,settings:r,panelId:s,defaultControls:i=HRt,defaultValues:c={},headerLabel:l=m("Background image")}){const u=iI(r),d=()=>n(gn(t,["background"],{})),p=x.useCallback(f=>({...f,background:{}}),[]);return a.jsx(e,{resetAllFilter:p,value:t,onChange:n,panelId:s,headerLabel:l,children:u&&a.jsx(tt,{hasValue:()=>!!t?.background,label:m("Image"),onDeselect:d,isShownByDefault:i.backgroundImage,panelId:s,children:a.jsx(VRt,{value:t,onChange:n,settings:r,inheritedValue:o,defaultControls:i,defaultValues:c})})})}const Sh="background",UW={backgroundSize:"cover",backgroundPosition:"50% 50%"};function Zx(e,t="any"){const n=An(e,Sh);return n===!0?!0:t==="any"?!!n?.backgroundImage||!!n?.backgroundSize||!!n?.backgroundRepeat:!!n?.[t]}function aI(e){if(!e||!e?.backgroundImage?.url)return;let t;return e?.backgroundSize||(t={backgroundSize:UW.backgroundSize}),e?.backgroundSize==="contain"&&!e?.backgroundPosition&&(t={backgroundPosition:UW.backgroundPosition}),t}function XRt({name:e,style:t}){if(!Zx(e)||!t?.background?.backgroundImage)return;const n=aI(t?.background);if(n)return{style:{...n}}}function GRt(e){return Qz(e)?"has-background":""}function KRt({children:e}){const t=x.useCallback(n=>({...n,style:{...n.style,background:void 0}}),[]);return a.jsx(et,{group:"background",resetAllFilter:t,children:e})}function YRt({clientId:e,name:t,setAttributes:n,settings:o}){const{style:r,inheritedValue:s}=G(u=>{const{getBlockAttributes:d,getSettings:p}=u(Q),f=p();return{style:d(e)?.style,inheritedValue:f[dO]?.blocks?.[t]}},[e,t]);if(!iI(o)||!Zx(t,"backgroundImage"))return null;const i=u=>{n({style:Di(u)})},c={...o,background:{...o.background,backgroundSize:o?.background?.backgroundSize&&Zx(t,"backgroundSize")}},l=An(t,[Sh,"defaultControls"]);return a.jsx(zMe,{inheritedValue:s,as:KRt,panelId:e,defaultValues:UW,settings:c,onChange:i,defaultControls:l,value:r})}const ZRt={useBlockProps:XRt,attributeKeys:["style"],hasSupport:Zx},QRt={button:"wp-element-button",caption:"wp-element-caption"},JRt={__experimentalBorder:"border",color:"color",spacing:"spacing",typography:"typography"},{kebabCase:fd}=ct(tr);function eTt(e={},t){return _m.reduce((n,{path:o,valueKey:r,valueFunc:s,cssVarInfix:i})=>{const c=fo(e,o,[]);return["default","theme","custom"].forEach(l=>{c[l]&&c[l].forEach(u=>{r&&!s?n.push(`--wp--preset--${i}--${fd(u.slug)}: ${u[r]}`):s&&typeof s=="function"&&n.push(`--wp--preset--${i}--${fd(u.slug)}: ${s(u,t)}`)})}),n},[])}function tTt(e="*",t={}){return _m.reduce((n,{path:o,cssVarInfix:r,classes:s})=>{if(!s)return n;const i=fo(t,o,[]);return["default","theme","custom"].forEach(c=>{i[c]&&i[c].forEach(({slug:l})=>{s.forEach(({classSuffix:u,propertyName:d})=>{const p=`.has-${fd(l)}-${u}`,f=e.split(",").map(h=>`${h}${p}`).join(","),b=`var(--wp--preset--${r}--${fd(l)})`;n+=`${f}{${d}: ${b} !important;}`})})}),n},"")}function nTt(e={}){return _m.filter(t=>t.path.at(-1)==="duotone").flatMap(t=>{const n=fo(e,t.path,{});return["default","theme"].filter(o=>n[o]).flatMap(o=>n[o].map(r=>sI(`wp-duotone-${r.slug}`,r.colors))).join("")})}function OMe(e={},t,n){let o=[];return Object.keys(e).forEach(r=>{const s=t+fd(r.replace("/","-")),i=e[r];if(i instanceof Object){const c=s+n;o=[...o,...OMe(i,c,n)]}else o.push(`${s}: ${i}`)}),o}function oTt(e,t){const n=e.split(","),o=[];return n.forEach(r=>{o.push(`${t.trim()}${r.trim()}`)}),o.join(", ")}const Xee=(e,t)=>{const n={};return Object.entries(e).forEach(([o,r])=>{if(o==="root"||!t?.[o])return;const s=typeof r=="string";if(s||Object.entries(r).forEach(([i,c])=>{if(i==="root"||!t?.[o][i])return;const l={[o]:{[i]:t[o][i]}},u=A2(l);n[c]=[...n[c]||[],...u],delete t[o][i]}),s||r.root){const i=s?r:r.root,c={[o]:t[o]},l=A2(c);n[i]=[...n[i]||[],...l],delete t[o]}}),n};function A2(e={},t="",n,o={},r=!1){const s=ul===t,i=Object.entries(Pp).reduce((l,[u,{value:d,properties:p,useEngine:f,rootOnly:b}])=>{if(b&&!s)return l;const h=d;if(h[0]==="elements"||f)return l;const g=fo(e,h);if(u==="--wp--style--root--padding"&&(typeof g=="string"||!n))return l;if(p&&typeof g!="string")Object.entries(p).forEach(z=>{const[A,_]=z;if(!fo(g,[_],!1))return;const v=A.startsWith("--")?A:fd(A);l.push(`${v}: ${Dz(fo(g,[_]))}`)});else if(fo(e,h,!1)){const z=u.startsWith("--")?u:fd(u);l.push(`${z}: ${Dz(fo(e,h))}`)}return l},[]);return e.background&&(e.background?.backgroundImage&&(e.background.backgroundImage=$W(e.background.backgroundImage,o)),!s&&e.background?.backgroundImage?.id&&(e={...e,background:{...e.background,...aI(e.background)}})),x_(e).forEach(l=>{if(s&&(n||r)&&l.key.startsWith("padding"))return;const u=l.key.startsWith("--")?l.key:fd(l.key);let d=$W(l.value,o);u==="font-size"&&(d=F_({size:d},o?.settings)),u==="aspect-ratio"&&i.push("min-height: unset"),i.push(`${u}: ${d}`)}),i}function yMe({layoutDefinitions:e=Dd,style:t,selector:n,hasBlockGapSupport:o,hasFallbackGapSupport:r,fallbackGapValue:s}){let i="",c=o?us(t?.spacing?.blockGap):"";if(r&&(n===ul?c=c||"0.5em":!o&&s&&(c=s)),c&&e&&(Object.values(e).forEach(({className:l,name:u,spacingStyles:d})=>{!o&&u!=="flex"&&u!=="grid"||d?.length&&d.forEach(p=>{const f=[];if(p.rules&&Object.entries(p.rules).forEach(([b,h])=>{f.push(`${b}: ${h||c}`)}),f.length){let b="";o?b=n===ul?`:root :where(.${l})${p?.selector||""}`:`:root :where(${n}-${l})${p?.selector||""}`:b=n===ul?`:where(.${l}${p?.selector||""})`:`:where(${n}.${l}${p?.selector||""})`,i+=`${b} { ${f.join("; ")}; }`}})}),n===ul&&o&&(i+=`${Gx} { --wp--style--block-gap: ${c}; }`)),n===ul&&e){const l=["block","flex","grid"];Object.values(e).forEach(({className:u,displayMode:d,baseStyles:p})=>{d&&l.includes(d)&&(i+=`${n} .${u} { display:${d}; }`),p?.length&&p.forEach(f=>{const b=[];if(f.rules&&Object.entries(f.rules).forEach(([h,g])=>{b.push(`${h}: ${g}`)}),b.length){const h=`.${u}${f?.selector||""}`;i+=`${h} { ${b.join("; ")}; }`}})})}return i}const rTt=["border","color","dimensions","spacing","typography","filter","outline","shadow","background"];function pv(e){if(!e)return{};const o=Object.entries(e).filter(([r])=>rTt.includes(r)).map(([r,s])=>[r,JSON.parse(JSON.stringify(s))]);return Object.fromEntries(o)}const sTt=(e,t)=>{var n;const o=[];if(!e?.styles)return o;const r=pv(e.styles);return r&&o.push({styles:r,selector:ul,skipSelectorWrapper:!0}),Object.entries(Za).forEach(([s,i])=>{e.styles?.elements?.[s]&&o.push({styles:e.styles?.elements?.[s],selector:i,skipSelectorWrapper:!QRt[s]})}),Object.entries((n=e.styles?.blocks)!==null&&n!==void 0?n:{}).forEach(([s,i])=>{var c;const l=pv(i);if(i?.variations){const u={};Object.entries(i.variations).forEach(([d,p])=>{var f,b;u[d]=pv(p),p?.css&&(u[d].css=p.css);const h=t[s]?.styleVariationSelectors?.[d];Object.entries((f=p?.elements)!==null&&f!==void 0?f:{}).forEach(([g,z])=>{z&&Za[g]&&o.push({styles:z,selector:Ws(h,Za[g])})}),Object.entries((b=p?.blocks)!==null&&b!==void 0?b:{}).forEach(([g,z])=>{var A;const _=Ws(h,t[g]?.selector),v=Ws(h,t[g]?.duotoneSelector),M=BSt(h,t[g]?.featureSelectors),y=pv(z);z?.css&&(y.css=z.css),o.push({selector:_,duotoneSelector:v,featureSelectors:M,fallbackGapValue:t[g]?.fallbackGapValue,hasLayoutSupport:t[g]?.hasLayoutSupport,styles:y}),Object.entries((A=z.elements)!==null&&A!==void 0?A:{}).forEach(([k,S])=>{S&&Za[k]&&o.push({styles:S,selector:Ws(_,Za[k])})})})}),l.variations=u}t?.[s]?.selector&&o.push({duotoneSelector:t[s].duotoneSelector,fallbackGapValue:t[s].fallbackGapValue,hasLayoutSupport:t[s].hasLayoutSupport,selector:t[s].selector,styles:l,featureSelectors:t[s].featureSelectors,styleVariationSelectors:t[s].styleVariationSelectors}),Object.entries((c=i?.elements)!==null&&c!==void 0?c:{}).forEach(([u,d])=>{d&&t?.[s]&&Za[u]&&o.push({styles:d,selector:t[s]?.selector.split(",").map(p=>Za[u].split(",").map(b=>p+" "+b)).join(",")})})}),o},cI=(e,t)=>{var n;const o=[];if(!e?.settings)return o;const r=c=>{let l={};return _m.forEach(({path:u})=>{const d=fo(c,u,!1);d!==!1&&(l=gn(l,u,d))}),l},s=r(e.settings),i=e.settings?.custom;return(Object.keys(s).length>0||i)&&o.push({presets:s,custom:i,selector:Gx}),Object.entries((n=e.settings?.blocks)!==null&&n!==void 0?n:{}).forEach(([c,l])=>{const u=r(l),d=l.custom;(Object.keys(u).length>0||d)&&o.push({presets:u,custom:d,selector:t[c]?.selector})}),o},iTt=(e,t)=>{const n=cI(e,t);let o="";return n.forEach(({presets:r,custom:s,selector:i})=>{const c=eTt(r,e?.settings),l=OMe(s,"--wp--custom--","--");l.length>0&&c.push(...l),c.length>0&&(o+=`${i}{${c.join(";")};}`)}),o},G_=(e,t,n,o,r=!1,s=!1,i=void 0)=>{const c={blockGap:!0,blockStyles:!0,layoutStyles:!0,marginReset:!0,presets:!0,rootPadding:!0,variationStyles:!1,...i},l=sTt(e,t),u=cI(e,t),d=e?.settings?.useRootPaddingAwareAlignments,{contentSize:p,wideSize:f}=e?.settings?.layout||{},b=c.marginReset||c.rootPadding||c.layoutStyles;let h="";if(c.presets&&(p||f)&&(h+=`${Gx} {`,h=p?h+` --wp--style--global--content-size: ${p};`:h,h=f?h+` --wp--style--global--wide-size: ${f};`:h,h+="}"),b&&(h+=":where(body) {margin: 0;",c.rootPadding&&d&&(h+=`padding-right: 0; padding-left: 0; padding-top: var(--wp--style--root--padding-top); padding-bottom: var(--wp--style--root--padding-bottom) } +</svg>`}function dMe({children:e,settingsOpen:t,setSettingsOpen:n}){const o=$1(),r=o?x.Fragment:Wd,s=o?"div":Rr.div,c=`link-control-settings-drawer-${vt(dMe)}`;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-link-control__drawer-toggle","aria-expanded":t,onClick:()=>n(!t),icon:jt()?Ew:Af,"aria-controls":c,children:We("Advanced","Additional link settings")}),a.jsx(r,{children:t&&a.jsx(s,{className:"block-editor-link-control__drawer",hidden:!t,id:c,initial:"collapsed",animate:"open",exit:"collapsed",variants:{open:{opacity:1,height:"auto"},collapsed:{opacity:0,height:0}},transition:{duration:.1},children:a.jsx("div",{className:"block-editor-link-control__drawer-inner",children:e})})})]})}const rRt=({searchTerm:e,onClick:t,itemProps:n,buttonText:o})=>{if(!e)return null;let r;return o?r=typeof o=="function"?o(e):o:r=cr(xe(m("Create: <mark>%s</mark>"),e),{mark:a.jsx("mark",{})}),a.jsx(Ct,{...n,iconPosition:"left",icon:Fs,className:"block-editor-link-control__search-item",onClick:t,children:r})},Dee={post:VP,page:wa,post_tag:XP,category:gz,attachment:BP};function sRt({isURL:e,suggestion:t}){let n=null;return e?n=ude:t.type in Dee&&(n=Dee[t.type],t.type==="page"&&(t.isFrontPage&&(n=dde),t.isBlogHome&&(n=Fw))),n?a.jsx(wn,{className:"block-editor-link-control__search-item-icon",icon:n}):null}function iRt(e){return e?.trim()?.length?e?.replace(/^\/?/,"/"):e}function aRt(e){return e?.trim()?.length?e?.replace(/\/$/,""):e}const cRt=(e,...t)=>(...n)=>e(...n,...t),lRt=e=>t=>t==null||t!==t?e:t;function uRt(e){return e&&Ku(c3,Aa,lRt(""),cRt(Ph,24),aRt,iRt)(e)}const dRt=({itemProps:e,suggestion:t,searchTerm:n,onClick:o,isURL:r=!1,shouldShowType:s=!1})=>{const i=r?m("Press ENTER to add this link"):uRt(t.url);return a.jsx(Ct,{...e,info:i,iconPosition:"left",icon:a.jsx(sRt,{suggestion:t,isURL:r}),onClick:o,shortcut:s&&pRt(t),className:"block-editor-link-control__search-item",children:a.jsx(oht,{text:v1(t.title),highlight:n})})};function pRt(e){return e.isFrontPage?"front page":e.isBlogHome?"blog home":e.type==="post_tag"?"tag":e.type}const Gx="__CREATE__",pMe="tel",fMe="link",bMe="mailto",hMe="internal",Fee=[fMe,bMe,pMe,hMe],mMe=[{id:"opensInNewTab",title:m("Open in new tab")}];function fRt({withCreateSuggestion:e,currentInputValue:t,handleSuggestionClick:n,suggestionsListProps:o,buildSuggestionItemProps:r,suggestions:s,selectedSuggestion:i,isLoading:c,isInitialSuggestions:l,createSuggestionButtonText:u,suggestionsQuery:d}){const p=oe("block-editor-link-control__search-results",{"is-loading":c}),f=s.length===1&&Fee.includes(s[0].type),b=e&&!f&&!l,h=!d?.type,g=l?m("Suggestions"):xe(m('Search results for "%s"'),t);return a.jsx("div",{className:"block-editor-link-control__search-results-wrapper",children:a.jsx("div",{...o,className:p,"aria-label":g,children:a.jsx(Cn,{children:s.map((z,A)=>b&&Gx===z.type?a.jsx(rRt,{searchTerm:t,buttonText:u,onClick:()=>n(z),itemProps:r(z,A),isSelected:A===i},z.type):Gx===z.type?null:a.jsx(dRt,{itemProps:r(z,A),suggestion:z,index:A,onClick:()=>{n(z)},isSelected:A===i,isURL:Fee.includes(z.type),searchTerm:t,shouldShowType:h,isFrontPage:z?.isFrontPage,isBlogHome:z?.isBlogHome},`${z.id}-${z.type}`))})})})}const bRt=()=>Promise.resolve([]),hRt=e=>{let t=fMe;const n=v5(e)||"";return n.includes("mailto")&&(t=bMe),n.includes("tel")&&(t=pMe),e?.startsWith("#")&&(t=hMe),Promise.resolve([{id:e,title:e,url:t==="URL"?jf(e):e,type:t}])},mRt=async(e,t,n,o,r,s)=>{const{isInitialSuggestions:i}=t,c=await n(e,t);return c.map(l=>Number(l.id)===r?(l.isFrontPage=!0,l):(Number(l.id)===s&&(l.isBlogHome=!0),l)),i||Gj(e)||!o?c:c.concat({title:e,url:e,type:Gx})};function gRt(e,t,n){const{fetchSearchSuggestions:o,pageOnFront:r,pageForPosts:s}=G(c=>{const{getSettings:l}=c(Q);return{pageOnFront:l().pageOnFront,pageForPosts:l().pageForPosts,fetchSearchSuggestions:l().__experimentalFetchLinkSuggestions}},[]),i=t?hRt:bRt;return x.useCallback((c,{isInitialSuggestions:l})=>Gj(c)?i(c):mRt(c,{...e,isInitialSuggestions:l},o,n,r,s),[i,o,r,s,e,n])}const MRt=()=>Promise.resolve([]),KR=()=>{},zRt=x.forwardRef(({value:e,children:t,currentLink:n={},className:o=null,placeholder:r=null,withCreateSuggestion:s=!1,onCreateSuggestion:i=KR,onChange:c=KR,onSelect:l=KR,showSuggestions:u=!0,renderSuggestions:d=M=>a.jsx(fRt,{...M}),fetchSuggestions:p=null,allowDirectEntry:f=!0,showInitialSuggestions:b=!1,suggestionsQuery:h={},withURLSuggestion:g=!0,createSuggestionButtonText:z,hideLabelFromVision:A=!1,suffix:_},v)=>{const M=gRt(h,f,s),y=u?p||M:MRt,[k,S]=x.useState(),C=(B,N)=>{c(B),S(N)},R=B=>d({...B,withCreateSuggestion:s,createSuggestionButtonText:z,suggestionsQuery:h,handleSuggestionClick:N=>{B.handleSuggestionClick&&B.handleSuggestionClick(N),T(N)}}),T=async B=>{let N=B;if(Gx===B.type){try{N=await i(B.title),N?.url&&l(N)}catch{}return}if(f||N&&Object.keys(N).length>=1){const{id:j,url:I,...P}=n??{};l({...P,...N},N)}},E=r??m("Search or type URL");return a.jsxs("div",{className:"block-editor-link-control__search-input-container",children:[a.jsx(fI,{disableSuggestions:n?.url===e,label:E,hideLabelFromVision:A,className:o,value:e,onChange:C,placeholder:E,__experimentalRenderSuggestions:u?R:null,__experimentalFetchLinkSuggestions:y,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:b,onSubmit:(B,N)=>{const j=B||k;!j&&!e?.trim()?.length?N.preventDefault():T(j||{url:e})},ref:v,suffix:_}),t]})}),{Slot:ORt,Fill:yRt}=Qn("BlockEditorLinkControlViewer");function ARt(e,t){switch(t.type){case"RESOLVED":return{...e,isFetching:!1,richData:t.richData};case"ERROR":return{...e,isFetching:!1,richData:null};case"LOADING":return{...e,isFetching:!0};default:throw new Error(`Unexpected action type ${t.type}`)}}function vRt(e){const[t,n]=x.useReducer(ARt,{richData:null,isFetching:!1}),{fetchRichUrlData:o}=G(r=>{const{getSettings:s}=r(Q);return{fetchRichUrlData:s().__experimentalFetchRichUrlData}},[]);return x.useEffect(()=>{if(e?.length&&o&&typeof AbortController<"u"){n({type:"LOADING"});const r=new window.AbortController,s=r.signal;return o(e,{signal:s}).then(i=>{n({type:"RESOLVED",richData:i})}).catch(()=>{s.aborted||n({type:"ERROR"})}),()=>{r.abort()}}},[e]),t}function xRt(e){return e.replace(/^[a-z\-.\+]+[0-9]*:(\/\/)?/i,"").replace(/^www\./i,"")}function wRt({value:e,onEditClick:t,hasRichPreviews:n=!1,hasUnlinkControl:o=!1,onRemove:r}){const s=G(A=>A(ht).get("core","showIconLabels"),[]),i=n?e?.url:null,{richData:c,isFetching:l}=vRt(i),u=c&&Object.keys(c).length,d=e&&Ph(c3(e.url),24)||"",p=!e?.url?.length,f=!p&&v1(c?.title||e?.title||d),b=!e?.url||xRt(f)===d;let h;c?.icon?h=a.jsx("img",{src:c?.icon,alt:""}):p?h=a.jsx(wn,{icon:pde,size:32}):h=a.jsx(wn,{icon:ude});const{createNotice:g}=Oe(mt),z=Hl(e.url,()=>{g("info",m("Link copied to clipboard."),{isDismissible:!0,type:"snackbar"})});return a.jsx("div",{role:"group","aria-label":m("Manage link"),className:oe("block-editor-link-control__search-item",{"is-current":!0,"is-rich":u,"is-fetching":!!l,"is-preview":!0,"is-error":p,"is-url-title":f===d}),children:a.jsxs("div",{className:"block-editor-link-control__search-item-top",children:[a.jsxs("span",{className:"block-editor-link-control__search-item-header",role:"figure","aria-label":m("Link information"),children:[a.jsx("span",{className:oe("block-editor-link-control__search-item-icon",{"is-image":c?.icon}),children:h}),a.jsx("span",{className:"block-editor-link-control__search-item-details",children:p?a.jsx("span",{className:"block-editor-link-control__search-item-error-notice",children:m("Link is empty")}):a.jsxs(a.Fragment,{children:[a.jsx(hr,{className:"block-editor-link-control__search-item-title",href:e.url,children:a.jsx(zs,{numberOfLines:1,children:f})}),!b&&a.jsx("span",{className:"block-editor-link-control__search-item-info",children:a.jsx(zs,{numberOfLines:1,children:d})})]})})]}),a.jsx(Ce,{icon:Nd,label:m("Edit link"),onClick:t,size:"compact",showTooltip:!s}),o&&a.jsx(Ce,{icon:Pl,label:m("Remove link"),onClick:r,size:"compact",showTooltip:!s}),a.jsx(Ce,{icon:EP,label:m("Copy link"),ref:z,accessibleWhenDisabled:!0,disabled:p,size:"compact",showTooltip:!s}),a.jsx(ORt,{fillProps:e})]})})}const _Rt=()=>{},kRt=({value:e,onChange:t=_Rt,settings:n})=>{if(!n||!n.length)return null;const o=s=>i=>{t({...e,[s.id]:i})},r=n.map(s=>a.jsx(K0,{__nextHasNoMarginBottom:!0,className:"block-editor-link-control__setting",label:s.title,onChange:o(s),checked:e?!!e[s.id]:!1,help:s?.help},s.id));return a.jsxs("fieldset",{className:"block-editor-link-control__settings",children:[a.jsx(qn,{as:"legend",children:m("Currently selected link settings")}),r]})};function SRt(e){const t=x.useRef(),[n,o]=x.useState(!1),[r,s]=x.useState(null),i=async function(c){o(!0),s(null);try{return t.current=CRt(Promise.resolve(e(c))),await t.current.promise}catch(l){if(l&&l.isCanceled)return;throw s(l.message||m("An unknown error occurred during creation. Please try again.")),l}finally{o(!1)}};return x.useEffect(()=>()=>{t.current&&t.current.cancel()},[]),{createPage:i,isCreatingPage:n,errorMessage:r}}const CRt=e=>{let t=!1;return{promise:new Promise((o,r)=>{e.then(s=>t?r({isCanceled:!0}):o(s),s=>r(t?{isCanceled:!0}:s))}),cancel(){t=!0}}};var YR,$ee;function qRt(){return $ee||($ee=1,YR=function e(t,n){if(t===n)return!0;if(t&&n&&typeof t=="object"&&typeof n=="object"){if(t.constructor!==n.constructor)return!1;var o,r,s;if(Array.isArray(t)){if(o=t.length,o!=n.length)return!1;for(r=o;r--!==0;)if(!e(t[r],n[r]))return!1;return!0}if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if(s=Object.keys(t),o=s.length,o!==Object.keys(n).length)return!1;for(r=o;r--!==0;)if(!Object.prototype.hasOwnProperty.call(n,s[r]))return!1;for(r=o;r--!==0;){var i=s[r];if(!e(t[i],n[i]))return!1}return!0}return t!==t&&n!==n}),YR}var RRt=qRt();const gMe=Zr(RRt);function TRt(e){const[t,n]=x.useState(e||{}),[o,r]=x.useState(e);return gMe(e,o)||(r(e),n(e)),[t,n,l=>{n({...t,url:l})},l=>{n({...t,title:l})},l=>u=>{const d=Object.keys(u).reduce((p,f)=>(l.includes(f)&&(p[f]=u[f]),p),{});n({...t,...d})}]}const ZR=()=>{},Vee="core/block-editor",Hee="linkControlSettingsDrawer";function kc({searchInputPlaceholder:e,value:t,settings:n=mMe,onChange:o=ZR,onRemove:r,onCancel:s,noDirectEntry:i=!1,showSuggestions:c=!0,showInitialSuggestions:l,forceIsEditingLink:u,createSuggestion:d,withCreateSuggestion:p,inputValue:f="",suggestionsQuery:b={},noURLSuggestion:h=!1,createSuggestionButtonText:g,hasRichPreviews:z=!1,hasTextControl:A=!1,renderControlBottom:_=null}){p===void 0&&d&&(p=!0);const[v,M]=x.useState(!1),{advancedSettingsPreference:y}=G(L=>{var U;return{advancedSettingsPreference:(U=L(ht).get(Vee,Hee))!==null&&U!==void 0?U:!1}},[]),{set:k}=Oe(ht),S=L=>{k&&k(Vee,Hee,L),M(L)},C=y||v,R=x.useRef(!0),T=x.useRef(),E=x.useRef(),B=x.useRef(!1),N=n.map(({id:L})=>L),[j,I,P,$,F]=TRt(t),X=t&&!i0e(j,t),[Z,V]=x.useState(u!==void 0?u:!t||!t.url),{createPage:ee,isCreatingPage:te,errorMessage:J}=SRt(d);x.useEffect(()=>{u!==void 0&&V(u)},[u]),x.useEffect(()=>{if(R.current)return;(Xr.focusable.find(T.current)[0]||T.current).focus(),B.current=!1},[Z,te]),x.useEffect(()=>(R.current=!1,()=>{R.current=!0}),[]);const ue=t?.url?.trim()?.length>0,ce=()=>{B.current=!!T.current?.contains(T.current.ownerDocument.activeElement),V(!1)},me=L=>{const U=Object.keys(L).reduce((ne,ve)=>(N.includes(ve)||(ne[ve]=L[ve]),ne),{});o({...j,...U,title:j?.title||L?.title}),ce()},de=()=>{X&&o({...t,...j,url:je}),ce()},Ae=L=>{const{keyCode:U}=L;U===Gr&&!ie&&(L.preventDefault(),de())},ye=()=>{I(t)},Ne=L=>{L.preventDefault(),L.stopPropagation(),ye(),ue?ce():r?.(),s?.()},je=f||j?.url||"",ie=!je?.trim()?.length,we=r&&t&&!Z&&!te,re=Z&&ue,pe=ue&&A,ke=(Z||!t)&&!te,Se=!X||ie,se=!!n?.length&&Z&&ue;return a.jsxs("div",{tabIndex:-1,ref:T,className:"block-editor-link-control",children:[te&&a.jsxs("div",{className:"block-editor-link-control__loading",children:[a.jsx(Xn,{})," ",m("Creating"),"…"]}),ke&&a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:oe({"block-editor-link-control__search-input-wrapper":!0,"has-text-control":pe,"has-actions":re}),children:[pe&&a.jsx(dn,{__nextHasNoMarginBottom:!0,ref:E,className:"block-editor-link-control__field block-editor-link-control__text-content",label:m("Text"),value:j?.title,onChange:$,onKeyDown:Ae,__next40pxDefaultSize:!0}),a.jsx(zRt,{currentLink:t,className:"block-editor-link-control__field block-editor-link-control__search-input",placeholder:e,value:je,withCreateSuggestion:p,onCreateSuggestion:ee,onChange:P,onSelect:me,showInitialSuggestions:l,allowDirectEntry:!i,showSuggestions:c,suggestionsQuery:b,withURLSuggestion:!h,createSuggestionButtonText:g,hideLabelFromVision:!pe,suffix:re?void 0:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{onClick:Se?ZR:de,label:m("Submit"),icon:Pw,className:"block-editor-link-control__search-submit","aria-disabled":Se,size:"small"})})})]}),J&&a.jsx(L1,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1,children:J})]}),t&&!Z&&!te&&a.jsx(wRt,{value:t,onEditClick:()=>V(!0),hasRichPreviews:z,hasUnlinkControl:we,onRemove:()=>{r(),V(!0)}},t?.url),se&&a.jsx("div",{className:"block-editor-link-control__tools",children:!ie&&a.jsx(dMe,{settingsOpen:C,setSettingsOpen:S,children:a.jsx(kRt,{value:j,settings:n,onChange:F(N)})})}),re&&a.jsxs(Ot,{justify:"right",className:"block-editor-link-control__search-actions",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:Ne,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:Se?ZR:de,className:"block-editor-link-control__search-submit","aria-disabled":Se,children:m("Save")})]}),!te&&_&&_()]})}kc.ViewerFill=yRt;kc.DEFAULT_LINK_SETTINGS=mMe;const ERt=()=>{};let WRt=0;const NRt=({mediaURL:e,mediaId:t,mediaIds:n,allowedTypes:o,accept:r,onError:s,onSelect:i,onSelectURL:c,onReset:l,onToggleFeaturedImage:u,useFeaturedImage:d,onFilesUpload:p=ERt,name:f=m("Replace"),createNotice:b,removeNotice:h,children:g,multiple:z=!1,addToGallery:A,handleUpload:_=!0,popoverProps:v,renderToggle:M})=>{const{getSettings:y}=G(Q),k=`block-editor/media-replace-flow/error-notice/${++WRt}`,S=N=>{const j=v1(N);if(s){s(j);return}setTimeout(()=>{b("error",j,{speak:!0,id:k,isDismissible:!0})},1e3)},C=(N,j)=>{d&&u&&u(),j(),i(N),Yt(m("The media file has been replaced")),h(k)},R=(N,j)=>{const I=N.target.files;if(!_)return j(),i(I);p(I),y().mediaUpload({allowedTypes:o,filesList:I,onFileChange:([P])=>{C(P,j)},onError:S})},T=N=>{N.keyCode===Ps&&(N.preventDefault(),N.target.click())},B=z&&(!o||o.length===0?!1:o.every(N=>N==="image"||N.startsWith("image/")));return a.jsx(so,{popoverProps:v,contentClassName:"block-editor-media-replace-flow__options",renderToggle:({isOpen:N,onToggle:j})=>M?M({"aria-expanded":N,"aria-haspopup":"true",onClick:j,onKeyDown:T,children:f}):a.jsx(Vt,{"aria-expanded":N,"aria-haspopup":"true",onClick:j,onKeyDown:T,children:f}),renderContent:({onClose:N})=>a.jsxs(a.Fragment,{children:[a.jsxs(pm,{className:"block-editor-media-replace-flow__media-upload-menu",children:[a.jsxs(Hd,{children:[a.jsx(ab,{gallery:B,addToGallery:A,multiple:z,value:z?n:t,onSelect:j=>C(j,N),allowedTypes:o,render:({open:j})=>a.jsx(Ct,{icon:IP,onClick:j,children:m("Open Media Library")})}),a.jsx(Cx,{onChange:j=>{R(j,N)},accept:r,multiple:!!z,render:({openFileDialog:j})=>a.jsx(Ct,{icon:cm,onClick:()=>{j()},children:We("Upload","verb")})})]}),u&&a.jsx(Ct,{icon:kde,onClick:u,isPressed:d,children:m("Use featured image")}),e&&l&&a.jsx(Ct,{onClick:()=>{l(),N()},children:m("Reset")}),typeof g=="function"?g({onClose:N}):g]}),c&&a.jsxs("form",{className:"block-editor-media-flow__url-input",children:[a.jsx("span",{className:"block-editor-media-replace-flow__image-url-label",children:m("Current media URL:")}),a.jsx(kc,{value:{url:e},settings:[],showSuggestions:!1,onChange:({url:j})=>{c(j)}})]})]})})},Pc=Co([Ff(e=>{const{createNotice:t,removeNotice:n}=e(mt);return{createNotice:t,removeNotice:n}}),ap("editor.MediaReplaceFlow")])(NRt),uv="image",BRt={placement:"left-start",offset:36,shift:!0,className:"block-editor-global-styles-background-panel__popover"},Kx=()=>{};function LRt(e){return m(e==="cover"||e===void 0?"Image covers the space evenly.":e==="contain"?"Image is contained without distortion.":"Image has a fixed width.")}const PRt=e=>{if(!e||isNaN(e.x)&&isNaN(e.y))return;const t=isNaN(e.x)?.5:e.x,n=isNaN(e.y)?.5:e.y;return`${t*100}% ${n*100}%`},jRt=e=>{if(!e)return{x:void 0,y:void 0};let[t,n]=e.split(" ").map(o=>parseFloat(o)/100);return t=isNaN(t)?void 0:t,n=isNaN(n)?t:n,{x:t,y:n}};function MMe({as:e="span",imgUrl:t,toggleProps:n={},filename:o,label:r,className:s,onToggleCallback:i=Kx}){return x.useEffect(()=>{typeof n?.isOpen<"u"&&i(n?.isOpen)},[n?.isOpen,i]),a.jsx(tb,{as:e,className:s,...n,children:a.jsxs(Ot,{justify:"flex-start",as:"span",className:"block-editor-global-styles-background-panel__inspector-preview-inner",children:[t&&a.jsx("span",{className:"block-editor-global-styles-background-panel__inspector-image-indicator-wrapper","aria-hidden":!0,children:a.jsx("span",{className:"block-editor-global-styles-background-panel__inspector-image-indicator",style:{backgroundImage:`url(${t})`}})}),a.jsxs(Tn,{as:"span",style:t?{}:{flexGrow:1},children:[a.jsx(zs,{numberOfLines:1,className:"block-editor-global-styles-background-panel__inspector-media-replace-title",children:r}),a.jsx(qn,{as:"span",children:t?xe(m("Background image: %s"),o||r):m("No background image selected")})]})]})})}function IRt({label:e,filename:t,url:n,children:o,onToggle:r=Kx,hasImageValue:s}){if(!s)return;const i=e||If(n)||m("Add background image");return a.jsx(so,{popoverProps:BRt,renderToggle:({onToggle:c,isOpen:l})=>{const u={onClick:c,className:"block-editor-global-styles-background-panel__dropdown-toggle","aria-expanded":l,"aria-label":m("Background size, position and repeat options."),isOpen:l};return a.jsx(MMe,{imgUrl:n,filename:t,label:i,toggleProps:u,as:"button",onToggleCallback:r})},renderContent:()=>a.jsx($s,{className:"block-editor-global-styles-background-panel__dropdown-content-wrapper",paddingSize:"medium",children:o})})}function DRt(){return a.jsx(vo,{className:"block-editor-global-styles-background-panel__loading",children:a.jsx(Xn,{})})}function Uee({onChange:e,style:t,inheritedValue:n,onRemoveImage:o=Kx,onResetImage:r=Kx,displayInPanel:s,defaultValues:i}){const[c,l]=x.useState(!1),{getSettings:u}=G(Q),{id:d,title:p,url:f}=t?.background?.backgroundImage||{...n?.background?.backgroundImage},b=x.useRef(),{createErrorNotice:h}=Oe(mt),g=C=>{h(C,{type:"snackbar"}),l(!1)},z=()=>e(gn(t,["background","backgroundImage"],void 0)),A=C=>{if(!C||!C.url){z(),l(!1);return}if(Nr(C.url)){l(!0);return}if(C.media_type&&C.media_type!==uv||!C.media_type&&C.type&&C.type!==uv){g(m("Only images can be used as a background image."));return}const R=t?.background?.backgroundSize||i?.backgroundSize,T=t?.background?.backgroundPosition;e(gn(t,["background"],{...t?.background,backgroundImage:{url:C.url,id:C.id,source:"file",title:C.title||void 0},backgroundPosition:!T&&(R==="auto"||!R)?"50% 0":T,backgroundSize:R})),l(!1)},_=C=>{if(C?.length>1){g(m("Only one image can be used as a background image."));return}u().mediaUpload({allowedTypes:[uv],filesList:C,onFileChange([R]){A(R)},onError:g})},v=Qz(t),M=()=>{const[C]=Xr.tabbable.find(b.current);C?.focus(),C?.click()},y=()=>e(gn(t,["background"],{backgroundImage:"none"})),k=!v&&Qz(n),S=p||If(f)||m("Add background image");return a.jsxs("div",{ref:b,className:"block-editor-global-styles-background-panel__image-tools-panel-item",children:[c&&a.jsx(DRt,{}),a.jsx(Pc,{mediaId:d,mediaURL:f,allowedTypes:[uv],accept:"image/*",onSelect:A,popoverProps:{className:oe({"block-editor-global-styles-background-panel__media-replace-popover":s})},name:a.jsx(MMe,{className:"block-editor-global-styles-background-panel__image-preview",imgUrl:f,filename:p,label:S}),renderToggle:C=>a.jsx(Ce,{...C,__next40pxDefaultSize:!0}),onError:g,onReset:()=>{M(),r()},children:k&&a.jsx(Ct,{onClick:()=>{M(),y(),o()},children:m("Remove")})}),a.jsx(Tz,{onFilesDrop:_,label:m("Drop to upload")})]})}function FRt({onChange:e,style:t,inheritedValue:n,defaultValues:o}){const r=t?.background?.backgroundSize||n?.background?.backgroundSize,s=t?.background?.backgroundRepeat||n?.background?.backgroundRepeat,i=t?.background?.backgroundImage?.url||n?.background?.backgroundImage?.url,c=t?.background?.backgroundImage?.id,l=t?.background?.backgroundPosition||n?.background?.backgroundPosition,u=t?.background?.backgroundAttachment||n?.background?.backgroundAttachment;let d=!r&&c?o?.backgroundSize:r||"auto";d=["cover","contain","auto"].includes(d)?d:"auto";const p=!(s==="no-repeat"||d==="cover"&&s===void 0),f=A=>{let _=s,v=l;A==="contain"&&(_="no-repeat",v=void 0),A==="cover"&&(_=void 0,v=void 0),(d==="cover"||d==="contain")&&A==="auto"&&(_=void 0,t?.background?.backgroundImage?.id&&(v="50% 0")),!A&&d==="auto"&&(A="auto"),e(gn(t,["background"],{...t?.background,backgroundPosition:v,backgroundRepeat:_,backgroundSize:A}))},b=A=>{e(gn(t,["background","backgroundPosition"],PRt(A)))},h=()=>e(gn(t,["background","backgroundRepeat"],p===!0?"no-repeat":"repeat")),g=()=>e(gn(t,["background","backgroundAttachment"],u==="fixed"?"scroll":"fixed")),z=!l&&c&&r==="contain"?o?.backgroundPosition:l;return a.jsxs(dt,{spacing:3,className:"single-column",children:[a.jsx(l_,{__nextHasNoMarginBottom:!0,label:m("Focal point"),url:i,value:jRt(z),onChange:b}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Fixed background"),checked:u==="fixed",onChange:g}),a.jsxs(Do,{__nextHasNoMarginBottom:!0,size:"__unstable-large",label:m("Size"),value:d,onChange:f,isBlock:!0,help:LRt(r||o?.backgroundSize),children:[a.jsx(Kn,{value:"cover",label:We("Cover","Size option for background image control")},"cover"),a.jsx(Kn,{value:"contain",label:We("Contain","Size option for background image control")},"contain"),a.jsx(Kn,{value:"auto",label:We("Tile","Size option for background image control")},"tile")]}),a.jsxs(Ot,{justify:"flex-start",spacing:2,as:"span",children:[a.jsx(Ro,{"aria-label":m("Background image width"),onChange:f,value:r,size:"__unstable-large",__unstableInputWidth:"100px",min:0,placeholder:m("Auto"),disabled:d!=="auto"||d===void 0}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Repeat"),checked:p,onChange:h,disabled:d==="cover"})]})]})}function $Rt({value:e,onChange:t,inheritedValue:n=e,settings:o,defaultValues:r={}}){const{globalStyles:s,_links:i}=G(z=>{const{getSettings:A}=z(Q),_=A();return{globalStyles:_[dO],_links:_[k2e]}},[]),c=x.useMemo(()=>{const z={background:{}};return n?.background?(Object.entries(n?.background).forEach(([A,_])=>{z.background[A]=FW(_,{styles:s,_links:i})}),z):n},[s,i,n]),l=()=>t(gn(e,["background"],{})),{title:u,url:d}=e?.background?.backgroundImage||{...c?.background?.backgroundImage},p=Qz(e)||Qz(c),f=e?.background?.backgroundImage||n?.background?.backgroundImage,b=p&&f!=="none"&&(o?.background?.backgroundSize||o?.background?.backgroundPosition||o?.background?.backgroundRepeat),[h,g]=x.useState(!1);return a.jsx("div",{className:oe("block-editor-global-styles-background-panel__inspector-media-replace-container",{"is-open":h}),children:b?a.jsx(IRt,{label:u,filename:u,url:d,onToggle:g,hasImageValue:p,children:a.jsxs(dt,{spacing:3,className:"single-column",children:[a.jsx(Uee,{onChange:t,style:e,inheritedValue:c,displayInPanel:!0,onResetImage:()=>{g(!1),l()},onRemoveImage:()=>g(!1),defaultValues:r}),a.jsx(FRt,{onChange:t,style:e,defaultValues:r,inheritedValue:c})]})}):a.jsx(Uee,{onChange:t,style:e,inheritedValue:c,defaultValues:r,onResetImage:()=>{g(!1),l()},onRemoveImage:()=>g(!1)})})}const VRt={backgroundImage:!0};function sI(e){return e?.background?.backgroundImage}function Qz(e){return!!e?.background?.backgroundImage?.id||typeof e?.background?.backgroundImage=="string"||!!e?.background?.backgroundImage?.url}function HRt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r,headerLabel:s}){const i=dp(),c=()=>{const l=e(n);t(l)};return a.jsx(En,{label:s,resetAll:c,panelId:o,dropdownMenuProps:i,children:r})}function zMe({as:e=HRt,value:t,onChange:n,inheritedValue:o,settings:r,panelId:s,defaultControls:i=VRt,defaultValues:c={},headerLabel:l=m("Background image")}){const u=sI(r),d=()=>n(gn(t,["background"],{})),p=x.useCallback(f=>({...f,background:{}}),[]);return a.jsx(e,{resetAllFilter:p,value:t,onChange:n,panelId:s,headerLabel:l,children:u&&a.jsx(tt,{hasValue:()=>!!t?.background,label:m("Image"),onDeselect:d,isShownByDefault:i.backgroundImage,panelId:s,children:a.jsx($Rt,{value:t,onChange:n,settings:r,inheritedValue:o,defaultControls:i,defaultValues:c})})})}const Sh="background",HW={backgroundSize:"cover",backgroundPosition:"50% 50%"};function Yx(e,t="any"){const n=An(e,Sh);return n===!0?!0:t==="any"?!!n?.backgroundImage||!!n?.backgroundSize||!!n?.backgroundRepeat:!!n?.[t]}function iI(e){if(!e||!e?.backgroundImage?.url)return;let t;return e?.backgroundSize||(t={backgroundSize:HW.backgroundSize}),e?.backgroundSize==="contain"&&!e?.backgroundPosition&&(t={backgroundPosition:HW.backgroundPosition}),t}function URt({name:e,style:t}){if(!Yx(e)||!t?.background?.backgroundImage)return;const n=iI(t?.background);if(n)return{style:{...n}}}function XRt(e){return Qz(e)?"has-background":""}function GRt({children:e}){const t=x.useCallback(n=>({...n,style:{...n.style,background:void 0}}),[]);return a.jsx(et,{group:"background",resetAllFilter:t,children:e})}function KRt({clientId:e,name:t,setAttributes:n,settings:o}){const{style:r,inheritedValue:s}=G(u=>{const{getBlockAttributes:d,getSettings:p}=u(Q),f=p();return{style:d(e)?.style,inheritedValue:f[dO]?.blocks?.[t]}},[e,t]);if(!sI(o)||!Yx(t,"backgroundImage"))return null;const i=u=>{n({style:Ii(u)})},c={...o,background:{...o.background,backgroundSize:o?.background?.backgroundSize&&Yx(t,"backgroundSize")}},l=An(t,[Sh,"defaultControls"]);return a.jsx(zMe,{inheritedValue:s,as:GRt,panelId:e,defaultValues:HW,settings:c,onChange:i,defaultControls:l,value:r})}const YRt={useBlockProps:URt,attributeKeys:["style"],hasSupport:Yx},ZRt={button:"wp-element-button",caption:"wp-element-caption"},QRt={__experimentalBorder:"border",color:"color",spacing:"spacing",typography:"typography"},{kebabCase:fd}=ct(tr);function JRt(e={},t){return _m.reduce((n,{path:o,valueKey:r,valueFunc:s,cssVarInfix:i})=>{const c=fo(e,o,[]);return["default","theme","custom"].forEach(l=>{c[l]&&c[l].forEach(u=>{r&&!s?n.push(`--wp--preset--${i}--${fd(u.slug)}: ${u[r]}`):s&&typeof s=="function"&&n.push(`--wp--preset--${i}--${fd(u.slug)}: ${s(u,t)}`)})}),n},[])}function eTt(e="*",t={}){return _m.reduce((n,{path:o,cssVarInfix:r,classes:s})=>{if(!s)return n;const i=fo(t,o,[]);return["default","theme","custom"].forEach(c=>{i[c]&&i[c].forEach(({slug:l})=>{s.forEach(({classSuffix:u,propertyName:d})=>{const p=`.has-${fd(l)}-${u}`,f=e.split(",").map(h=>`${h}${p}`).join(","),b=`var(--wp--preset--${r}--${fd(l)})`;n+=`${f}{${d}: ${b} !important;}`})})}),n},"")}function tTt(e={}){return _m.filter(t=>t.path.at(-1)==="duotone").flatMap(t=>{const n=fo(e,t.path,{});return["default","theme"].filter(o=>n[o]).flatMap(o=>n[o].map(r=>rI(`wp-duotone-${r.slug}`,r.colors))).join("")})}function OMe(e={},t,n){let o=[];return Object.keys(e).forEach(r=>{const s=t+fd(r.replace("/","-")),i=e[r];if(i instanceof Object){const c=s+n;o=[...o,...OMe(i,c,n)]}else o.push(`${s}: ${i}`)}),o}function nTt(e,t){const n=e.split(","),o=[];return n.forEach(r=>{o.push(`${t.trim()}${r.trim()}`)}),o.join(", ")}const Xee=(e,t)=>{const n={};return Object.entries(e).forEach(([o,r])=>{if(o==="root"||!t?.[o])return;const s=typeof r=="string";if(s||Object.entries(r).forEach(([i,c])=>{if(i==="root"||!t?.[o][i])return;const l={[o]:{[i]:t[o][i]}},u=A2(l);n[c]=[...n[c]||[],...u],delete t[o][i]}),s||r.root){const i=s?r:r.root,c={[o]:t[o]},l=A2(c);n[i]=[...n[i]||[],...l],delete t[o]}}),n};function A2(e={},t="",n,o={},r=!1){const s=ll===t,i=Object.entries(Pp).reduce((l,[u,{value:d,properties:p,useEngine:f,rootOnly:b}])=>{if(b&&!s)return l;const h=d;if(h[0]==="elements"||f)return l;const g=fo(e,h);if(u==="--wp--style--root--padding"&&(typeof g=="string"||!n))return l;if(p&&typeof g!="string")Object.entries(p).forEach(z=>{const[A,_]=z;if(!fo(g,[_],!1))return;const v=A.startsWith("--")?A:fd(A);l.push(`${v}: ${Dz(fo(g,[_]))}`)});else if(fo(e,h,!1)){const z=u.startsWith("--")?u:fd(u);l.push(`${z}: ${Dz(fo(e,h))}`)}return l},[]);return e.background&&(e.background?.backgroundImage&&(e.background.backgroundImage=FW(e.background.backgroundImage,o)),!s&&e.background?.backgroundImage?.id&&(e={...e,background:{...e.background,...iI(e.background)}})),v_(e).forEach(l=>{if(s&&(n||r)&&l.key.startsWith("padding"))return;const u=l.key.startsWith("--")?l.key:fd(l.key);let d=FW(l.value,o);u==="font-size"&&(d=D_({size:d},o?.settings)),u==="aspect-ratio"&&i.push("min-height: unset"),i.push(`${u}: ${d}`)}),i}function yMe({layoutDefinitions:e=Dd,style:t,selector:n,hasBlockGapSupport:o,hasFallbackGapSupport:r,fallbackGapValue:s}){let i="",c=o?us(t?.spacing?.blockGap):"";if(r&&(n===ll?c=c||"0.5em":!o&&s&&(c=s)),c&&e&&(Object.values(e).forEach(({className:l,name:u,spacingStyles:d})=>{!o&&u!=="flex"&&u!=="grid"||d?.length&&d.forEach(p=>{const f=[];if(p.rules&&Object.entries(p.rules).forEach(([b,h])=>{f.push(`${b}: ${h||c}`)}),f.length){let b="";o?b=n===ll?`:root :where(.${l})${p?.selector||""}`:`:root :where(${n}-${l})${p?.selector||""}`:b=n===ll?`:where(.${l}${p?.selector||""})`:`:where(${n}.${l}${p?.selector||""})`,i+=`${b} { ${f.join("; ")}; }`}})}),n===ll&&o&&(i+=`${Xx} { --wp--style--block-gap: ${c}; }`)),n===ll&&e){const l=["block","flex","grid"];Object.values(e).forEach(({className:u,displayMode:d,baseStyles:p})=>{d&&l.includes(d)&&(i+=`${n} .${u} { display:${d}; }`),p?.length&&p.forEach(f=>{const b=[];if(f.rules&&Object.entries(f.rules).forEach(([h,g])=>{b.push(`${h}: ${g}`)}),b.length){const h=`.${u}${f?.selector||""}`;i+=`${h} { ${b.join("; ")}; }`}})})}return i}const oTt=["border","color","dimensions","spacing","typography","filter","outline","shadow","background"];function dv(e){if(!e)return{};const o=Object.entries(e).filter(([r])=>oTt.includes(r)).map(([r,s])=>[r,JSON.parse(JSON.stringify(s))]);return Object.fromEntries(o)}const rTt=(e,t)=>{var n;const o=[];if(!e?.styles)return o;const r=dv(e.styles);return r&&o.push({styles:r,selector:ll,skipSelectorWrapper:!0}),Object.entries(Za).forEach(([s,i])=>{e.styles?.elements?.[s]&&o.push({styles:e.styles?.elements?.[s],selector:i,skipSelectorWrapper:!ZRt[s]})}),Object.entries((n=e.styles?.blocks)!==null&&n!==void 0?n:{}).forEach(([s,i])=>{var c;const l=dv(i);if(i?.variations){const u={};Object.entries(i.variations).forEach(([d,p])=>{var f,b;u[d]=dv(p),p?.css&&(u[d].css=p.css);const h=t[s]?.styleVariationSelectors?.[d];Object.entries((f=p?.elements)!==null&&f!==void 0?f:{}).forEach(([g,z])=>{z&&Za[g]&&o.push({styles:z,selector:Ws(h,Za[g])})}),Object.entries((b=p?.blocks)!==null&&b!==void 0?b:{}).forEach(([g,z])=>{var A;const _=Ws(h,t[g]?.selector),v=Ws(h,t[g]?.duotoneSelector),M=NSt(h,t[g]?.featureSelectors),y=dv(z);z?.css&&(y.css=z.css),o.push({selector:_,duotoneSelector:v,featureSelectors:M,fallbackGapValue:t[g]?.fallbackGapValue,hasLayoutSupport:t[g]?.hasLayoutSupport,styles:y}),Object.entries((A=z.elements)!==null&&A!==void 0?A:{}).forEach(([k,S])=>{S&&Za[k]&&o.push({styles:S,selector:Ws(_,Za[k])})})})}),l.variations=u}t?.[s]?.selector&&o.push({duotoneSelector:t[s].duotoneSelector,fallbackGapValue:t[s].fallbackGapValue,hasLayoutSupport:t[s].hasLayoutSupport,selector:t[s].selector,styles:l,featureSelectors:t[s].featureSelectors,styleVariationSelectors:t[s].styleVariationSelectors}),Object.entries((c=i?.elements)!==null&&c!==void 0?c:{}).forEach(([u,d])=>{d&&t?.[s]&&Za[u]&&o.push({styles:d,selector:t[s]?.selector.split(",").map(p=>Za[u].split(",").map(b=>p+" "+b)).join(",")})})}),o},aI=(e,t)=>{var n;const o=[];if(!e?.settings)return o;const r=c=>{let l={};return _m.forEach(({path:u})=>{const d=fo(c,u,!1);d!==!1&&(l=gn(l,u,d))}),l},s=r(e.settings),i=e.settings?.custom;return(Object.keys(s).length>0||i)&&o.push({presets:s,custom:i,selector:Xx}),Object.entries((n=e.settings?.blocks)!==null&&n!==void 0?n:{}).forEach(([c,l])=>{const u=r(l),d=l.custom;(Object.keys(u).length>0||d)&&o.push({presets:u,custom:d,selector:t[c]?.selector})}),o},sTt=(e,t)=>{const n=aI(e,t);let o="";return n.forEach(({presets:r,custom:s,selector:i})=>{const c=JRt(r,e?.settings),l=OMe(s,"--wp--custom--","--");l.length>0&&c.push(...l),c.length>0&&(o+=`${i}{${c.join(";")};}`)}),o},X_=(e,t,n,o,r=!1,s=!1,i=void 0)=>{const c={blockGap:!0,blockStyles:!0,layoutStyles:!0,marginReset:!0,presets:!0,rootPadding:!0,variationStyles:!1,...i},l=rTt(e,t),u=aI(e,t),d=e?.settings?.useRootPaddingAwareAlignments,{contentSize:p,wideSize:f}=e?.settings?.layout||{},b=c.marginReset||c.rootPadding||c.layoutStyles;let h="";if(c.presets&&(p||f)&&(h+=`${Xx} {`,h=p?h+` --wp--style--global--content-size: ${p};`:h,h=f?h+` --wp--style--global--wide-size: ${f};`:h,h+="}"),b&&(h+=":where(body) {margin: 0;",c.rootPadding&&d&&(h+=`padding-right: 0; padding-left: 0; padding-top: var(--wp--style--root--padding-top); padding-bottom: var(--wp--style--root--padding-bottom) } .has-global-padding { padding-right: var(--wp--style--root--padding-right); padding-left: var(--wp--style--root--padding-left); } .has-global-padding > .alignfull { margin-right: calc(var(--wp--style--root--padding-right) * -1); margin-left: calc(var(--wp--style--root--padding-left) * -1); } .has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) { padding-right: 0; padding-left: 0; } .has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) > .alignfull { margin-left: 0; margin-right: 0; - `),h+="}"),c.blockStyles&&l.forEach(({selector:g,duotoneSelector:z,styles:A,fallbackGapValue:_,hasLayoutSupport:v,featureSelectors:M,styleVariationSelectors:y,skipSelectorWrapper:k})=>{if(M){const R=Xee(M,A);Object.entries(R).forEach(([T,E])=>{if(E.length){const B=E.join(";");h+=`:root :where(${T}){${B};}`}})}if(z){const R={};A?.filter&&(R.filter=A.filter,delete A.filter);const T=A2(R);T.length&&(h+=`${z}{${T.join(";")};}`)}!r&&(ul===g||v)&&(h+=yMe({style:A,selector:g,hasBlockGapSupport:n,hasFallbackGapSupport:o,fallbackGapValue:_}));const S=A2(A,g,d,e,s);if(S?.length){const R=k?g:`:root :where(${g})`;h+=`${R}{${S.join(";")};}`}A?.css&&(h+=XW(A.css,`:root :where(${g})`)),c.variationStyles&&y&&Object.entries(y).forEach(([R,T])=>{const E=A?.variations?.[R];if(E){if(M){const N=Xee(M,E);Object.entries(N).forEach(([j,I])=>{if(I.length){const P=oTt(j,T),$=I.join(";");h+=`:root :where(${P}){${$};}`}})}const B=A2(E,T,d,e);B.length&&(h+=`:root :where(${T}){${B.join(";")};}`),E?.css&&(h+=XW(E.css,`:root :where(${T})`))}});const C=Object.entries(A).filter(([R])=>R.startsWith(":"));C?.length&&C.forEach(([R,T])=>{const E=A2(T);if(!E?.length)return;const N=`:root :where(${g.split(",").map(j=>j+R).join(",")}){${E.join(";")};}`;h+=N})}),c.layoutStyles&&(h=h+".wp-site-blocks > .alignleft { float: left; margin-right: 2em; }",h=h+".wp-site-blocks > .alignright { float: right; margin-left: 2em; }",h=h+".wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }"),c.blockGap&&n){const g=us(e?.styles?.spacing?.blockGap)||"0.5em";h=h+`:root :where(.wp-site-blocks) > * { margin-block-start: ${g}; margin-block-end: 0; }`,h=h+":root :where(.wp-site-blocks) > :first-child { margin-block-start: 0; }",h=h+":root :where(.wp-site-blocks) > :last-child { margin-block-end: 0; }"}return c.presets&&u.forEach(({selector:g,presets:z})=>{(ul===g||Gx===g)&&(g="");const A=tTt(g,z);A.length>0&&(h+=A)}),h};function aTt(e,t){return cI(e,t).flatMap(({presets:o})=>nTt(o))}const cTt=(e,t)=>{if(e?.selectors&&Object.keys(e.selectors).length>0)return e.selectors;const n={root:t};return Object.entries(JRt).forEach(([o,r])=>{const s=pd(e,o);s&&(n[r]=s)}),n},K_=(e,t,n)=>{const o={};return e.forEach(r=>{const s=r.name,i=pd(r);let c=pd(r,"filter.duotone");if(!c){const b=pd(r),h=An(r,"color.__experimentalDuotone",!1);c=h&&Ws(b,h)}const l=!!r?.supports?.layout||!!r?.supports?.__experimentalLayout,u=r?.supports?.spacing?.blockGap?.__experimentalDefault,d=t(s),p={};d?.forEach(b=>{const h=n?`-${n}`:"",g=`${b.name}${h}`,z=jSt(g,i);p[g]=z});const f=cTt(r,i);o[s]={duotoneSelector:c,fallbackGapValue:u,featureSelectors:Object.keys(f).length?f:void 0,hasLayoutSupport:l,name:s,selector:i,styleVariationSelectors:d?.length?p:void 0}}),o};function lTt(e){return e.styles?.blocks?.["core/separator"]&&e.styles?.blocks?.["core/separator"].color?.background&&!e.styles?.blocks?.["core/separator"].color?.text&&!e.styles?.blocks?.["core/separator"].border?.color?{...e,styles:{...e.styles,blocks:{...e.styles.blocks,"core/separator":{...e.styles.blocks["core/separator"],color:{...e.styles.blocks["core/separator"].color,text:e.styles?.blocks["core/separator"].color.background}}}}}:e}function XW(e,t){let n="";return!e||e.trim()===""||e.split("&").forEach(r=>{if(!r||r.trim()==="")return;if(!r.includes("{"))n+=`:root :where(${t}){${r.trim()}}`;else{const i=r.replace("}","").split("{");if(i.length!==2)return;const[c,l]=i,u=c.match(/([>+~\s]*::[a-zA-Z-]+)/),d=u?u[1]:"",p=u?c.replace(d,"").trim():c.trim();let f;p===""?f=t:f=c.startsWith(" ")?Ws(t,p):LSt(t,p),n+=`:root :where(${f})${d}{${l.trim()}}`}}),n}function AMe(e={},t){const[n]=lMe("spacing.blockGap"),o=n!==null,r=!o,s=G(c=>{const{getSettings:l}=c(Q);return!!l().disableLayoutStyles}),{getBlockStyles:i}=G(kt);return x.useMemo(()=>{var c;if(!e?.styles||!e?.settings)return[];const l=lTt(e),u=K_(gs(),i),d=iTt(l,u),p=G_(l,u,o,r,s,t),f=aTt(l,u),b=[{css:d,isGlobalStyles:!0},{css:p,isGlobalStyles:!0},{css:(c=l.styles.css)!==null&&c!==void 0?c:"",isGlobalStyles:!0},{assets:f,__unstableType:"svg",isGlobalStyles:!0}];return gs().forEach(h=>{if(l.styles.blocks[h.name]?.css){const g=u[h.name].selector;b.push({css:XW(l.styles.blocks[h.name]?.css,g),isGlobalStyles:!0})}}),[b,l.settings]},[o,r,e,s,t,i])}function uTt(e=!1){const{merged:t}=x.useContext(lb);return AMe(t,e)}function dTt({__next40pxDefaultSize:e=!1,__nextHasNoMarginBottom:t=!1,value:n="",onChange:o,fontFamilies:r,className:s,...i}){var c;const[l]=Un("typography.fontFamilies");if(r||(r=l),!r||r.length===0)return null;const u=[{key:"",name:m("Default")},...r.map(({fontFamily:p,name:f})=>({key:p,name:f||p,style:{fontFamily:p}}))];t||Ke("Bottom margin styles for wp.blockEditor.FontFamilyControl",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version"}),!e&&(i.size===void 0||i.size==="default")&&Ke("36px default size for wp.blockEditor.__experimentalFontFamilyControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."});const d=(c=u.find(p=>p.key===n))!==null&&c!==void 0?c:"";return a.jsx(ob,{__next40pxDefaultSize:e,__shouldNotWarnDeprecated36pxSize:!0,label:m("Font"),value:d,onChange:({selectedItem:p})=>o(p.key),options:u,className:oe("block-editor-font-family-control",s,{"is-next-has-no-margin-bottom":t}),...i})}const pTt=(e,t)=>m(e?t?"Appearance":"Font style":"Font weight");function fTt(e){const{__next40pxDefaultSize:t=!1,onChange:n,hasFontStyles:o=!0,hasFontWeights:r=!0,fontFamilyFaces:s,value:{fontStyle:i,fontWeight:c},...l}=e,u=o||r,d=pTt(o,r),p={key:"default",name:m("Default"),style:{fontStyle:void 0,fontWeight:void 0}},{fontStyles:f,fontWeights:b,combinedStyleAndWeightOptions:h}=Bge(s),g=()=>{const y=[p];return h&&y.push(...h),y},z=()=>{const y=[p];return f.forEach(({name:k,value:S})=>{y.push({key:S,name:k,style:{fontStyle:S,fontWeight:void 0}})}),y},A=()=>{const y=[p];return b.forEach(({name:k,value:S})=>{y.push({key:S,name:k,style:{fontStyle:void 0,fontWeight:S}})}),y},_=x.useMemo(()=>o&&r?g():o?z():A(),[e.options,f,b,h]),v=_.find(y=>y.style.fontStyle===i&&y.style.fontWeight===c)||_[0],M=()=>v?xe(m(o?r?"Currently selected font appearance: %s":"Currently selected font style: %s":"Currently selected font weight: %s"),v.name):m("No selected font appearance");return!t&&(l.size===void 0||l.size==="default")&&Ke("36px default size for wp.blockEditor.__experimentalFontAppearanceControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."}),u&&a.jsx(ob,{...l,className:"components-font-appearance-control",__next40pxDefaultSize:t,__shouldNotWarnDeprecated36pxSize:!0,label:d,describedBy:M(),options:_,value:v,onChange:({selectedItem:y})=>n(y.style)})}const fv=1.5,Gee=.01,Kee=10,vMe="";function bTt(e){return e!==void 0&&e!==vMe}const hTt=({__next40pxDefaultSize:e=!1,value:t,onChange:n,__unstableInputWidth:o="60px",...r})=>{const s=bTt(t),i=(d,p)=>{if(s)return d;const f=Gee*Kee;switch(`${d}`){case`${f}`:return fv+f;case"0":return p?d:fv-f;case"":return fv;default:return d}},c=(d,p)=>{const f=["insertText","insertFromPaste"].includes(p.payload.event.nativeEvent?.inputType),b=i(d.value,f);return{...d,value:b}},l=s?t:vMe,u=(d,{event:p})=>{if(d===""){n();return}if(p.type==="click"){n(i(`${d}`,!1));return}n(`${d}`)};return!e&&(r.size===void 0||r.size==="default")&&Ke("36px default size for wp.blockEditor.LineHeightControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."}),a.jsx("div",{className:"block-editor-line-height-control",children:a.jsx(g0,{...r,__shouldNotWarnDeprecated36pxSize:!0,__next40pxDefaultSize:e,__unstableInputWidth:o,__unstableStateReducer:c,onChange:u,label:m("Line height"),placeholder:fv,step:Gee,spinFactor:Kee,value:l,min:0,spinControls:"custom"})})};function mTt({__next40pxDefaultSize:e=!1,value:t,onChange:n,__unstableInputWidth:o="60px",...r}){const[s]=Un("spacing.units"),i=U1({availableUnits:s||["px","em","rem"],defaultValues:{px:2,em:.2,rem:.2}});return!e&&(r.size===void 0||r.size==="default")&&Ke("36px default size for wp.blockEditor.__experimentalLetterSpacingControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."}),a.jsx(Ro,{__next40pxDefaultSize:e,__shouldNotWarnDeprecated36pxSize:!0,...r,label:m("Letter spacing"),value:t,__unstableInputWidth:o,units:i,onChange:n})}const gTt=[{label:m("Align text left"),value:"left",icon:$3},{label:m("Align text center"),value:"center",icon:Rw},{label:m("Align text right"),value:"right",icon:V3},{label:m("Justify text"),value:"justify",icon:hZe}],MTt=["left","center","right"];function xMe({className:e,value:t,onChange:n,options:o=MTt}){const r=x.useMemo(()=>gTt.filter(s=>o.includes(s.value)),[o]);return r.length?a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Text alignment"),className:oe("block-editor-text-alignment-control",e),value:t,onChange:s=>{n(s===t?void 0:s)},children:r.map(s=>a.jsx(Ma,{value:s.value,icon:s.icon,label:s.label},s.value))}):null}const zTt=[{label:m("None"),value:"none",icon:am},{label:m("Uppercase"),value:"uppercase",icon:XZe},{label:m("Lowercase"),value:"lowercase",icon:HZe},{label:m("Capitalize"),value:"capitalize",icon:PZe}];function OTt({className:e,value:t,onChange:n}){return a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Letter case"),className:oe("block-editor-text-transform-control",e),value:t,onChange:o=>{n(o===t?void 0:o)},children:zTt.map(o=>a.jsx(Ma,{value:o.value,icon:o.icon,label:o.label},o.value))})}const yTt=[{label:m("None"),value:"none",icon:am},{label:m("Underline"),value:"underline",icon:UZe},{label:m("Strikethrough"),value:"line-through",icon:cde}];function ATt({value:e,onChange:t,className:n}){return a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Decoration"),className:oe("block-editor-text-decoration-control",n),value:e,onChange:o=>{t(o===e?void 0:o)},children:yTt.map(o=>a.jsx(Ma,{value:o.value,icon:o.icon,label:o.label},o.value))})}const vTt=[{label:m("Horizontal"),value:"horizontal-tb",icon:iJe},{label:m("Vertical"),value:jt()?"vertical-lr":"vertical-rl",icon:aJe}];function xTt({className:e,value:t,onChange:n}){return a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Orientation"),className:oe("block-editor-writing-mode-control",e),value:t,onChange:o=>{n(o===t?void 0:o)},children:vTt.map(o=>a.jsx(Ma,{value:o.value,icon:o.icon,label:o.label},o.value))})}const wTt=1,_Tt=6;function wMe(e){const t=kMe(e),n=SMe(e),o=CMe(e),r=qMe(e),s=TMe(e),i=RMe(e),c=EMe(e),l=WMe(e),u=NMe(e),d=_Me(e);return t||n||o||r||s||i||d||c||l||u}function _Me(e){return e?.typography?.defaultFontSizes!==!1&&e?.typography?.fontSizes?.default?.length||e?.typography?.fontSizes?.theme?.length||e?.typography?.fontSizes?.custom?.length||e?.typography?.customFontSize}function kMe(e){return["default","theme","custom"].some(t=>e?.typography?.fontFamilies?.[t]?.length)}function SMe(e){return e?.typography?.lineHeight}function CMe(e){return e?.typography?.fontStyle||e?.typography?.fontWeight}function kTt(e){return e?.typography?.fontStyle?e?.typography?.fontWeight?m("Appearance"):m("Font style"):m("Font weight")}function qMe(e){return e?.typography?.letterSpacing}function RMe(e){return e?.typography?.textTransform}function TMe(e){return e?.typography?.textAlign}function EMe(e){return e?.typography?.textDecoration}function WMe(e){return e?.typography?.writingMode}function NMe(e){return e?.typography?.textColumns}function STt(e){var t,n,o;const r=e?.typography?.fontSizes,s=!!e?.typography?.defaultFontSizes;return[...(t=r?.custom)!==null&&t!==void 0?t:[],...(n=r?.theme)!==null&&n!==void 0?n:[],...s?(o=r?.default)!==null&&o!==void 0?o:[]:[]]}function CTt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:m("Typography"),resetAll:i,panelId:o,dropdownMenuProps:s,children:r})}const qTt={fontFamily:!0,fontSize:!0,fontAppearance:!0,lineHeight:!0,letterSpacing:!0,textAlign:!0,textTransform:!0,textDecoration:!0,writingMode:!0,textColumns:!0};function BMe({as:e=CTt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=qTt}){const c=fe=>da({settings:r},"",fe),l=kMe(r),u=c(o?.typography?.fontFamily),{fontFamilies:d,fontFamilyFaces:p}=x.useMemo(()=>CSt(r,u),[r,u]),f=fe=>{const Re=d?.find(({fontFamily:be})=>be===fe)?.slug;n(gn(t,["typography","fontFamily"],Re?`var:preset|font-family|${Re}`:fe||void 0))},b=()=>!!t?.typography?.fontFamily,h=()=>f(void 0),g=_Me(r),z=!r?.typography?.customFontSize,A=STt(r),_=c(o?.typography?.fontSize),v=(fe,Re)=>{const be=Re?.slug?`var:preset|font-size|${Re?.slug}`:fe;n(gn(t,["typography","fontSize"],be||void 0))},M=()=>!!t?.typography?.fontSize,y=()=>v(void 0),k=CMe(r),S=kTt(r),C=r?.typography?.fontStyle,R=r?.typography?.fontWeight,T=c(o?.typography?.fontStyle),E=c(o?.typography?.fontWeight),{nearestFontStyle:B,nearestFontWeight:N}=RSt(p,T,E),j=x.useCallback(({fontStyle:fe,fontWeight:Re})=>{(fe!==T||Re!==E)&&n({...t,typography:{...t?.typography,fontStyle:fe||void 0,fontWeight:Re||void 0}})},[T,E,n,t]),I=()=>!!t?.typography?.fontStyle||!!t?.typography?.fontWeight,P=x.useCallback(()=>{j({})},[j]);x.useEffect(()=>{B&&N?j({fontStyle:B,fontWeight:N}):P()},[B,N,P,j]);const $=SMe(r),F=c(o?.typography?.lineHeight),X=fe=>{n(gn(t,["typography","lineHeight"],fe||void 0))},Z=()=>t?.typography?.lineHeight!==void 0,V=()=>X(void 0),ee=qMe(r),te=c(o?.typography?.letterSpacing),J=fe=>{n(gn(t,["typography","letterSpacing"],fe||void 0))},ue=()=>!!t?.typography?.letterSpacing,ce=()=>J(void 0),me=NMe(r),de=c(o?.typography?.textColumns),Ae=fe=>{n(gn(t,["typography","textColumns"],fe||void 0))},ye=()=>!!t?.typography?.textColumns,Ne=()=>Ae(void 0),je=RMe(r),ie=c(o?.typography?.textTransform),we=fe=>{n(gn(t,["typography","textTransform"],fe||void 0))},re=()=>!!t?.typography?.textTransform,pe=()=>we(void 0),ke=EMe(r),Se=c(o?.typography?.textDecoration),se=fe=>{n(gn(t,["typography","textDecoration"],fe||void 0))},L=()=>!!t?.typography?.textDecoration,U=()=>se(void 0),ne=WMe(r),ve=c(o?.typography?.writingMode),qe=fe=>{n(gn(t,["typography","writingMode"],fe||void 0))},Pe=()=>!!t?.typography?.writingMode,rt=()=>qe(void 0),qt=TMe(r),wt=c(o?.typography?.textAlign),Bt=fe=>{n(gn(t,["typography","textAlign"],fe||void 0))},ae=()=>!!t?.typography?.textAlign,H=()=>Bt(void 0),Y=x.useCallback(fe=>({...fe,typography:{}}),[]);return a.jsxs(e,{resetAllFilter:Y,value:t,onChange:n,panelId:s,children:[l&&a.jsx(tt,{label:m("Font"),hasValue:b,onDeselect:h,isShownByDefault:i.fontFamily,panelId:s,children:a.jsx(dTt,{fontFamilies:d,value:u,onChange:f,size:"__unstable-large",__nextHasNoMarginBottom:!0})}),g&&a.jsx(tt,{label:m("Size"),hasValue:M,onDeselect:y,isShownByDefault:i.fontSize,panelId:s,children:a.jsx(obt,{value:_,onChange:v,fontSizes:A,disableCustomFontSizes:z,withReset:!1,withSlider:!0,size:"__unstable-large"})}),k&&a.jsx(tt,{className:"single-column",label:S,hasValue:I,onDeselect:P,isShownByDefault:i.fontAppearance,panelId:s,children:a.jsx(fTt,{value:{fontStyle:T,fontWeight:E},onChange:j,hasFontStyles:C,hasFontWeights:R,fontFamilyFaces:p,size:"__unstable-large"})}),$&&a.jsx(tt,{className:"single-column",label:m("Line height"),hasValue:Z,onDeselect:V,isShownByDefault:i.lineHeight,panelId:s,children:a.jsx(hTt,{__unstableInputWidth:"auto",value:F,onChange:X,size:"__unstable-large"})}),ee&&a.jsx(tt,{className:"single-column",label:m("Letter spacing"),hasValue:ue,onDeselect:ce,isShownByDefault:i.letterSpacing,panelId:s,children:a.jsx(mTt,{value:te,onChange:J,size:"__unstable-large",__unstableInputWidth:"auto"})}),me&&a.jsx(tt,{className:"single-column",label:m("Columns"),hasValue:ye,onDeselect:Ne,isShownByDefault:i.textColumns,panelId:s,children:a.jsx(g0,{label:m("Columns"),max:_Tt,min:wTt,onChange:Ae,size:"__unstable-large",spinControls:"custom",value:de,initialPosition:1})}),ke&&a.jsx(tt,{className:"single-column",label:m("Decoration"),hasValue:L,onDeselect:U,isShownByDefault:i.textDecoration,panelId:s,children:a.jsx(ATt,{value:Se,onChange:se,size:"__unstable-large",__unstableInputWidth:"auto"})}),ne&&a.jsx(tt,{className:"single-column",label:m("Orientation"),hasValue:Pe,onDeselect:rt,isShownByDefault:i.writingMode,panelId:s,children:a.jsx(xTt,{value:ve,onChange:qe,size:"__unstable-large",__nextHasNoMarginBottom:!0})}),je&&a.jsx(tt,{label:m("Letter case"),hasValue:re,onDeselect:pe,isShownByDefault:i.textTransform,panelId:s,children:a.jsx(OTt,{value:ie,onChange:we,showNone:!0,isBlock:!0,size:"__unstable-large",__nextHasNoMarginBottom:!0})}),qt&&a.jsx(tt,{label:m("Text alignment"),hasValue:ae,onDeselect:H,isShownByDefault:i.textAlign,panelId:s,children:a.jsx(xMe,{value:wt,onChange:Bt,size:"__unstable-large",__nextHasNoMarginBottom:!0})})]})}const Yee={px:{max:300,steps:1},"%":{max:100,steps:1},vw:{max:100,steps:1},vh:{max:100,steps:1},em:{max:10,steps:.1},rm:{max:10,steps:.1},svw:{max:100,steps:1},lvw:{max:100,steps:1},dvw:{max:100,steps:1},svh:{max:100,steps:1},lvh:{max:100,steps:1},dvh:{max:100,steps:1},vi:{max:100,steps:1},svi:{max:100,steps:1},lvi:{max:100,steps:1},dvi:{max:100,steps:1},vb:{max:100,steps:1},svb:{max:100,steps:1},lvb:{max:100,steps:1},dvb:{max:100,steps:1},vmin:{max:100,steps:1},svmin:{max:100,steps:1},lvmin:{max:100,steps:1},dvmin:{max:100,steps:1},vmax:{max:100,steps:1},svmax:{max:100,steps:1},lvmax:{max:100,steps:1},dvmax:{max:100,steps:1}};function lI({icon:e,isMixed:t=!1,minimumCustomValue:n,onChange:o,onMouseOut:r,onMouseOver:s,showSideInLabel:i=!0,side:c,spacingSizes:l,type:u,value:d}){var p,f;d=y_(d,l);let b=l;const h=l.length<=khe,g=G(ee=>ee(Q).getSettings()?.disableCustomSpacingSizes),[z,A]=x.useState(!g&&d!==void 0&&!Qp(d)),[_,v]=x.useState(n),M=Fr(d);d&&M!==d&&!Qp(d)&&z!==!0&&A(!0);const[y]=Un("spacing.units"),k=U1({availableUnits:y||["px","em","rem"]});let S=null;!h&&!z&&d!==void 0&&(!Qp(d)||Qp(d)&&t)?(b=[...l,{name:t?m("Mixed"):xe(m("Custom (%s)"),d),slug:"custom",size:d}],S=b.length-1):t||(S=z?aM(d,l):eAt(d,l));const R=x.useMemo(()=>yo(S),[S])[1]||k[0]?.value,T=()=>{d===void 0&&o("0")},E=ee=>d===void 0?void 0:l[ee]?.name,B=parseFloat(S,10),N=ee=>!isNaN(parseFloat(ee))?ee:void 0,j=(ee,te)=>{const J=parseInt(ee,10);if(te==="selectList"){if(J===0)return;if(J===1)return"0"}else if(J===0)return"0";return`var:preset|spacing|${l[ee]?.slug}`},I=ee=>{o([ee,R].join(""))},P=t?m("Mixed"):null,$=b.map((ee,te)=>({key:te,name:ee.name})),F=l.slice(1,l.length-1).map((ee,te)=>({value:te+1,label:void 0})),X=Iz.includes(c)&&i?vO[c]:"",Z=i?u?.toLowerCase():u,V=xe(We("%1$s %2$s","spacing"),X,Z).trim();return a.jsxs(Ot,{className:"spacing-sizes-control__wrapper",children:[e&&a.jsx(qo,{className:"spacing-sizes-control__icon",icon:e,size:24}),z&&a.jsxs(a.Fragment,{children:[a.jsx(Ro,{onMouseOver:s,onMouseOut:r,onFocus:s,onBlur:r,onChange:ee=>o(N(ee)),value:S,units:k,min:_,placeholder:P,disableUnits:t,label:V,hideLabelFromVision:!0,className:"spacing-sizes-control__custom-value-input",size:"__unstable-large",onDragStart:()=>{d?.charAt(0)==="-"&&v(0)},onDrag:()=>{d?.charAt(0)==="-"&&v(0)},onDragEnd:()=>{v(n)}}),a.jsx(bo,{__next40pxDefaultSize:!0,onMouseOver:s,onMouseOut:r,onFocus:s,onBlur:r,value:B,min:0,max:(p=Yee[R]?.max)!==null&&p!==void 0?p:10,step:(f=Yee[R]?.steps)!==null&&f!==void 0?f:.1,withInputField:!1,onChange:I,className:"spacing-sizes-control__custom-value-range",__nextHasNoMarginBottom:!0,label:V,hideLabelFromVision:!0})]}),h&&!z&&a.jsx(bo,{__next40pxDefaultSize:!0,onMouseOver:s,onMouseOut:r,className:"spacing-sizes-control__range-control",value:S,onChange:ee=>o(j(ee)),onMouseDown:ee=>{ee?.nativeEvent?.offsetX<35&&T()},withInputField:!1,"aria-valuenow":S,"aria-valuetext":l[S]?.name,renderTooltipContent:E,min:0,max:l.length-1,marks:F,label:V,hideLabelFromVision:!0,__nextHasNoMarginBottom:!0,onFocus:s,onBlur:r}),!h&&!z&&a.jsx(ob,{className:"spacing-sizes-control__custom-select-control",value:$.find(ee=>ee.key===S)||"",onChange:ee=>{o(j(ee.selectedItem.key,"selectList"))},options:$,label:V,hideLabelFromVision:!0,size:"__unstable-large",onMouseOver:s,onMouseOut:r,onFocus:s,onBlur:r}),!g&&a.jsx(Ce,{label:m(z?"Use size preset":"Set custom size"),icon:UP,onClick:()=>{A(!z)},isPressed:z,size:"small",className:"spacing-sizes-control__custom-toggle",iconSize:24})]})}const Zee=["vertical","horizontal"];function RTt({minimumCustomValue:e,onChange:t,onMouseOut:n,onMouseOver:o,sides:r,spacingSizes:s,type:i,values:c}){const l=d=>p=>{if(!t)return;const f={...Object.keys(c).reduce((b,h)=>(b[h]=y_(c[h],s),b),{})};d==="vertical"&&(f.top=p,f.bottom=p),d==="horizontal"&&(f.left=p,f.right=p),t(f)},u=r?.length?Zee.filter(d=>qhe(r,d)):Zee;return a.jsx(a.Fragment,{children:u.map(d=>{const p=d==="vertical"?c.top:c.left;return a.jsx(lI,{icon:She[d],label:vO[d],minimumCustomValue:e,onChange:l(d),onMouseOut:n,onMouseOver:o,side:d,spacingSizes:s,type:i,value:p,withInputField:!1},`spacing-sizes-control-${d}`)})})}function TTt({minimumCustomValue:e,onChange:t,onMouseOut:n,onMouseOver:o,sides:r,spacingSizes:s,type:i,values:c}){const l=r?.length?Iz.filter(d=>r.includes(d)):Iz,u=d=>p=>{const f={...Object.keys(c).reduce((b,h)=>(b[h]=y_(c[h],s),b),{})};f[d]=p,t(f)};return a.jsx(a.Fragment,{children:l.map(d=>a.jsx(lI,{icon:She[d],label:vO[d],minimumCustomValue:e,onChange:u(d),onMouseOut:n,onMouseOver:o,side:d,spacingSizes:s,type:i,value:c[d],withInputField:!1},`spacing-sizes-control-${d}`))})}function ETt({minimumCustomValue:e,onChange:t,onMouseOut:n,onMouseOver:o,showSideInLabel:r,side:s,spacingSizes:i,type:c,values:l}){const u=d=>p=>{const f={...Object.keys(l).reduce((b,h)=>(b[h]=y_(l[h],i),b),{})};f[d]=p,t(f)};return a.jsx(lI,{label:vO[s],minimumCustomValue:e,onChange:u(s),onMouseOut:n,onMouseOver:o,showSideInLabel:r,side:s,spacingSizes:i,type:c,value:l[s],withInputField:!1})}function WTt({isLinked:e,...t}){const n=m(e?"Unlink sides":"Link sides");return a.jsx(B0,{text:n,children:a.jsx(Ce,{...t,size:"small",icon:e?xa:jl,iconSize:24,"aria-label":n})})}const JR=[],NTt=new Intl.Collator("und",{numeric:!0}).compare;function LMe(){const[e,t,n,o]=Un("spacing.spacingSizes.custom","spacing.spacingSizes.theme","spacing.spacingSizes.default","spacing.defaultSpacingSizes"),r=e??JR,s=t??JR,i=n&&o!==!1?n:JR;return x.useMemo(()=>{const c=[{name:m("None"),slug:"0",size:0},...r,...s,...i];return c.every(({slug:l})=>/^[0-9]/.test(l))&&c.sort((l,u)=>NTt(l.slug,u.slug)),c.length>khe?[{name:m("Default"),slug:"default",size:void 0},...c]:c},[r,s,i])}function z4({inputProps:e,label:t,minimumCustomValue:n=0,onChange:o,onMouseOut:r,onMouseOver:s,showSideInLabel:i=!0,sides:c=Iz,useSelect:l,values:u}){const d=LMe(),p=u||Jyt,f=c?.length===1,b=c?.includes("horizontal")&&c?.includes("vertical")&&c?.length===2,[h,g]=x.useState(nAt(p,c)),z=()=>{g(h===Fu.axial?Fu.custom:Fu.axial)},_={...e,minimumCustomValue:n,onChange:k=>{const S={...u,...k};o(S)},onMouseOut:r,onMouseOver:s,sides:c,spacingSizes:d,type:t,useSelect:l,values:p},v=()=>h===Fu.axial?a.jsx(RTt,{..._}):h===Fu.custom?a.jsx(TTt,{..._}):a.jsx(ETt,{side:h,..._,showSideInLabel:i}),M=Iz.includes(h)&&i?vO[h]:"",y=xe(We("%1$s %2$s","spacing"),t,M).trim();return a.jsxs("fieldset",{className:"spacing-sizes-control",children:[a.jsxs(Ot,{className:"spacing-sizes-control__header",children:[a.jsx(no.VisualLabel,{as:"legend",className:"spacing-sizes-control__label",children:y}),!f&&!b&&a.jsx(WTt,{label:t,onClick:z,isLinked:h===Fu.axial})]}),a.jsx(dt,{spacing:.5,children:v()})]})}const Qee={px:{max:1e3,step:1},"%":{max:100,step:1},vw:{max:100,step:1},vh:{max:100,step:1},em:{max:50,step:.1},rem:{max:50,step:.1},svw:{max:100,step:1},lvw:{max:100,step:1},dvw:{max:100,step:1},svh:{max:100,step:1},lvh:{max:100,step:1},dvh:{max:100,step:1},vi:{max:100,step:1},svi:{max:100,step:1},lvi:{max:100,step:1},dvi:{max:100,step:1},vb:{max:100,step:1},svb:{max:100,step:1},lvb:{max:100,step:1},dvb:{max:100,step:1},vmin:{max:100,step:1},svmin:{max:100,step:1},lvmin:{max:100,step:1},dvmin:{max:100,step:1},vmax:{max:100,step:1},svmax:{max:100,step:1},lvmax:{max:100,step:1},dvmax:{max:100,step:1}};function BTt({label:e=m("Height"),onChange:t,value:n}){var o,r;const s=parseFloat(n),[i]=Un("spacing.units"),c=U1({availableUnits:i||["%","px","em","rem","vh","vw"]}),l=x.useMemo(()=>yo(n),[n])[1]||c[0]?.value||"px",u=p=>{t([p,l].join(""))},d=p=>{const[f,b]=yo(n);["em","rem"].includes(p)&&b==="px"?t((f/16).toFixed(2)+p):["em","rem"].includes(b)&&p==="px"?t(Math.round(f*16)+p):["%","vw","svw","lvw","dvw","vh","svh","lvh","dvh","vi","svi","lvi","dvi","vb","svb","lvb","dvb","vmin","svmin","lvmin","dvmin","vmax","svmax","lvmax","dvmax"].includes(p)&&f>100&&t(100+p)};return a.jsxs("fieldset",{className:"block-editor-height-control",children:[a.jsx(no.VisualLabel,{as:"legend",children:e}),a.jsxs(Yo,{children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{value:n,units:c,onChange:t,onUnitChange:d,min:0,size:"__unstable-large",label:e,hideLabelFromVision:!0})}),a.jsx(Tn,{isBlock:!0,children:a.jsx(t1,{marginX:2,marginBottom:0,children:a.jsx(bo,{__next40pxDefaultSize:!0,value:s,min:0,max:(o=Qee[l]?.max)!==null&&o!==void 0?o:100,step:(r=Qee[l]?.step)!==null&&r!==void 0?r:.1,withInputField:!1,onChange:u,__nextHasNoMarginBottom:!0,label:e,hideLabelFromVision:!0})})})]})]})}function Y_(e,t){const{getBlockOrder:n,getBlockAttributes:o}=G(Q);return(s,i)=>{const c=(i-1)*t+s-1;let l=0;for(const d of n(e)){var u;const{columnStart:p,rowStart:f}=(u=o(d).style?.layout)!==null&&u!==void 0?u:{};(f-1)*t+p-1<c&&l++}return l}}function LTt(e,t){const{orientation:n="horizontal"}=t;return m(e==="fill"?"Stretch to fill available space.":e==="fixed"&&n==="horizontal"?"Specify a fixed width.":e==="fixed"?"Specify a fixed height.":"Fit contents.")}function PTt({value:e={},onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}){const{type:s,default:{type:i="default"}={}}=n??{},c=s||i;return c==="flex"?a.jsx(jTt,{childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}):c==="grid"?a.jsx(DTt,{childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}):null}function jTt({childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}){const{selfStretch:s,flexSize:i}=e,{orientation:c="horizontal"}=n??{},l=()=>!!s,u=m(c==="horizontal"?"Width":"Height"),[d]=Un("spacing.units"),p=U1({availableUnits:d||["%","px","em","rem","vh","vw"]}),f=()=>{t({selfStretch:void 0,flexSize:void 0})};return x.useEffect(()=>{s==="fixed"&&!i&&t({...e,selfStretch:"fit"})},[]),a.jsxs(dt,{as:tt,spacing:2,hasValue:l,label:u,onDeselect:f,isShownByDefault:o,panelId:r,children:[a.jsxs(Do,{__nextHasNoMarginBottom:!0,size:"__unstable-large",label:ITt(n),value:s||"fit",help:LTt(s,n),onChange:b=>{t({selfStretch:b,flexSize:b!=="fixed"?null:i})},isBlock:!0,children:[a.jsx(Kn,{value:"fit",label:We("Fit","Intrinsic block width in flex layout")},"fit"),a.jsx(Kn,{value:"fill",label:We("Grow","Block with expanding width in flex layout")},"fill"),a.jsx(Kn,{value:"fixed",label:We("Fixed","Block with fixed width in flex layout")},"fixed")]}),s==="fixed"&&a.jsx(Ro,{size:"__unstable-large",units:p,onChange:b=>{t({selfStretch:s,flexSize:b})},value:i,label:u,hideLabelFromVision:!0})]})}function ITt(e){const{orientation:t="horizontal"}=e;return m(t==="horizontal"?"Width":"Height")}function DTt({childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}){const{columnStart:s,rowStart:i,columnSpan:c,rowSpan:l}=e,{columnCount:u=3,rowCount:d}=n??{},p=G(v=>v(Q).getBlockRootClientId(r)),{moveBlocksToPosition:f,__unstableMarkNextChangeAsNotPersistent:b}=Oe(Q),h=Y_(p,u),g=()=>!!s||!!i,z=()=>!!c||!!l,A=()=>{t({columnStart:void 0,rowStart:void 0})},_=()=>{t({columnSpan:void 0,rowSpan:void 0})};return a.jsxs(a.Fragment,{children:[a.jsxs(Ot,{as:tt,hasValue:z,label:m("Grid span"),onDeselect:_,isShownByDefault:o,panelId:r,children:[a.jsx(N1,{size:"__unstable-large",label:m("Column span"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:s,rowStart:i,rowSpan:l,columnSpan:M})},value:c??1,min:1}),a.jsx(N1,{size:"__unstable-large",label:m("Row span"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:s,rowStart:i,columnSpan:c,rowSpan:M})},value:l??1,min:1})]}),window.__experimentalEnableGridInteractivity&&u&&a.jsxs(Yo,{as:tt,hasValue:g,label:m("Grid placement"),onDeselect:A,isShownByDefault:!1,panelId:r,children:[a.jsx(Tn,{style:{width:"50%"},children:a.jsx(N1,{size:"__unstable-large",label:m("Column"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:M,rowStart:i,columnSpan:c,rowSpan:l}),b(),f([r],p,p,h(M,i))},value:s??1,min:1,max:u?u-(c??1)+1:void 0})}),a.jsx(Tn,{style:{width:"50%"},children:a.jsx(N1,{size:"__unstable-large",label:m("Row"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:s,rowStart:M,columnSpan:c,rowSpan:l}),b(),f([r],p,p,h(s,M))},value:i??1,min:1,max:d?d-(l??1)+1:void 0})})]})]})}function PMe({panelId:e,value:t,onChange:n=()=>{},options:o,defaultValue:r="auto",hasValue:s,isShownByDefault:i=!0}){const c=t??"auto",[l,u,d]=Un("dimensions.aspectRatios.default","dimensions.aspectRatios.theme","dimensions.defaultAspectRatios"),p=u?.map(({name:h,ratio:g})=>({label:h,value:g})),f=l?.map(({name:h,ratio:g})=>({label:h,value:g})),b=[{label:We("Original","Aspect ratio option for dimensions control"),value:"auto"},...d?f:[],...p||[],{label:We("Custom","Aspect ratio option for dimensions control"),value:"custom",disabled:!0,hidden:!0}];return a.jsx(tt,{hasValue:s||(()=>c!==r),label:m("Aspect ratio"),onDeselect:()=>n(void 0),isShownByDefault:i,panelId:e,children:a.jsx(jn,{label:m("Aspect ratio"),value:c,options:o??b,onChange:n,size:"__unstable-large",__nextHasNoMarginBottom:!0})})}const eT=["horizontal","vertical"];function jMe(e){const t=IMe(e),n=DMe(e),o=FMe(e),r=$Me(e),s=VMe(e),i=HMe(e),c=UMe(e),l=XMe(e);return t||n||o||r||s||i||c||l}function IMe(e){return e?.layout?.contentSize}function DMe(e){return e?.layout?.wideSize}function FMe(e){return e?.spacing?.padding}function $Me(e){return e?.spacing?.margin}function VMe(e){return e?.spacing?.blockGap}function HMe(e){return e?.dimensions?.minHeight}function UMe(e){return e?.dimensions?.aspectRatio}function XMe(e){var t;const{type:n="default",default:{type:o="default"}={},allowSizingOnChildren:r=!1}=(t=e?.parentLayout)!==null&&t!==void 0?t:{},s=(o==="flex"||n==="flex"||o==="grid"||n==="grid")&&r;return!!e?.layout&&s}function FTt(e){const{defaultSpacingSizes:t,spacingSizes:n}=e?.spacing||{};return t!==!1&&n?.default?.length>0||n?.theme?.length>0||n?.custom?.length>0}function Jee(e,t){if(!t||!e)return e;const n={};return t.forEach(o=>{o==="vertical"&&(n.top=e.top,n.bottom=e.bottom),o==="horizontal"&&(n.left=e.left,n.right=e.right),n[o]=e?.[o]}),n}function ete(e){return e&&typeof e=="string"?{top:e,right:e,bottom:e,left:e}:e}function $Tt(e,t){return e&&(typeof e=="string"?t?{top:e,right:e,bottom:e,left:e}:{top:e}:{...e,right:e?.left,bottom:e?.top})}function VTt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:m("Dimensions"),resetAll:i,panelId:o,dropdownMenuProps:s,children:r})}const tl={contentSize:!0,wideSize:!0,padding:!0,margin:!0,blockGap:!0,minHeight:!0,aspectRatio:!0,childLayout:!0};function GMe({as:e=VTt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=tl,onVisualize:c=()=>{},includeLayoutControls:l=!1}){var u,d,p,f,b,h,g,z;const{dimensions:A,spacing:_}=r,v=Ue=>Ue&&typeof Ue=="object"?Object.keys(Ue).reduce((yt,fn)=>(yt[fn]=da({settings:{dimensions:A,spacing:_}},"",Ue[fn]),yt),{}):da({settings:{dimensions:A,spacing:_}},"",Ue),M=FTt(r),y=U1({availableUnits:r?.spacing?.units||["%","px","em","rem","vw"]}),k=-1/0,[S,C]=x.useState(k),R=IMe(r)&&l,T=v(o?.layout?.contentSize),E=Ue=>{n(gn(t,["layout","contentSize"],Ue||void 0))},B=()=>!!t?.layout?.contentSize,N=()=>E(void 0),j=DMe(r)&&l,I=v(o?.layout?.wideSize),P=Ue=>{n(gn(t,["layout","wideSize"],Ue||void 0))},$=()=>!!t?.layout?.wideSize,F=()=>P(void 0),X=FMe(r),Z=v(o?.spacing?.padding),V=ete(Z),ee=Array.isArray(r?.spacing?.padding)?r?.spacing?.padding:r?.spacing?.padding?.sides,te=ee&&ee.some(Ue=>eT.includes(Ue)),J=Ue=>{const yt=Jee(Ue,ee);n(gn(t,["spacing","padding"],yt))},ue=()=>!!t?.spacing?.padding&&Object.keys(t?.spacing?.padding).length,ce=()=>J(void 0),me=()=>c("padding"),de=$Me(r),Ae=v(o?.spacing?.margin),ye=ete(Ae),Ne=Array.isArray(r?.spacing?.margin)?r?.spacing?.margin:r?.spacing?.margin?.sides,je=Ne&&Ne.some(Ue=>eT.includes(Ue)),ie=Ue=>{const yt=Jee(Ue,Ne);n(gn(t,["spacing","margin"],yt))},we=()=>!!t?.spacing?.margin&&Object.keys(t?.spacing?.margin).length,re=()=>ie(void 0),pe=()=>c("margin"),ke=VMe(r),Se=Array.isArray(r?.spacing?.blockGap)?r?.spacing?.blockGap:r?.spacing?.blockGap?.sides,se=Se&&Se.some(Ue=>eT.includes(Ue)),L=v(o?.spacing?.blockGap),U=$Tt(L,se),ne=Ue=>{n(gn(t,["spacing","blockGap"],Ue))},ve=Ue=>{Ue||ne(null),!se&&Ue?.hasOwnProperty("top")?ne(Ue.top):ne({top:Ue?.top,left:Ue?.left})},qe=()=>ne(void 0),Pe=()=>!!t?.spacing?.blockGap,rt=HMe(r),qt=v(o?.dimensions?.minHeight),wt=Ue=>{const yt=gn(t,["dimensions","minHeight"],Ue);n(gn(yt,["dimensions","aspectRatio"],void 0))},Bt=()=>{wt(void 0)},ae=()=>!!t?.dimensions?.minHeight,H=UMe(r),Y=v(o?.dimensions?.aspectRatio),fe=Ue=>{const yt=gn(t,["dimensions","aspectRatio"],Ue);n(gn(yt,["dimensions","minHeight"],void 0))},Re=()=>!!t?.dimensions?.aspectRatio,be=XMe(r),ze=o?.layout,nt=Ue=>{n({...t,layout:{...Ue}})},Mt=x.useCallback(Ue=>({...Ue,layout:Di({...Ue?.layout,contentSize:void 0,wideSize:void 0,selfStretch:void 0,flexSize:void 0,columnStart:void 0,rowStart:void 0,columnSpan:void 0,rowSpan:void 0}),spacing:{...Ue?.spacing,padding:void 0,margin:void 0,blockGap:void 0},dimensions:{...Ue?.dimensions,minHeight:void 0,aspectRatio:void 0}}),[]),ot=()=>c(!1);return a.jsxs(e,{resetAllFilter:Mt,value:t,onChange:n,panelId:s,children:[(R||j)&&a.jsx("span",{className:"span-columns",children:m("Set the width of the main content area.")}),R&&a.jsx(tt,{label:m("Content width"),hasValue:B,onDeselect:N,isShownByDefault:(u=i.contentSize)!==null&&u!==void 0?u:tl.contentSize,panelId:s,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Content width"),labelPosition:"top",value:T||"",onChange:Ue=>{E(Ue)},units:y,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:Tw})})})}),j&&a.jsx(tt,{label:m("Wide width"),hasValue:$,onDeselect:F,isShownByDefault:(d=i.wideSize)!==null&&d!==void 0?d:tl.wideSize,panelId:s,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Wide width"),labelPosition:"top",value:I||"",onChange:Ue=>{P(Ue)},units:y,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:XP})})})}),X&&a.jsxs(tt,{hasValue:ue,label:m("Padding"),onDeselect:ce,isShownByDefault:(p=i.padding)!==null&&p!==void 0?p:tl.padding,className:oe({"tools-panel-item-spacing":M}),panelId:s,children:[!M&&a.jsx(s4,{__next40pxDefaultSize:!0,values:V,onChange:J,label:m("Padding"),sides:ee,units:y,allowReset:!1,splitOnAxis:te,inputProps:{onMouseOver:me,onMouseOut:ot}}),M&&a.jsx(z4,{values:V,onChange:J,label:m("Padding"),sides:ee,units:y,allowReset:!1,onMouseOver:me,onMouseOut:ot})]}),de&&a.jsxs(tt,{hasValue:we,label:m("Margin"),onDeselect:re,isShownByDefault:(f=i.margin)!==null&&f!==void 0?f:tl.margin,className:oe({"tools-panel-item-spacing":M}),panelId:s,children:[!M&&a.jsx(s4,{__next40pxDefaultSize:!0,values:ye,onChange:ie,inputProps:{min:S,onDragStart:()=>{C(0)},onDragEnd:()=>{C(k)},onMouseOver:pe,onMouseOut:ot},label:m("Margin"),sides:Ne,units:y,allowReset:!1,splitOnAxis:je}),M&&a.jsx(z4,{values:ye,onChange:ie,minimumCustomValue:-1/0,label:m("Margin"),sides:Ne,units:y,allowReset:!1,onMouseOver:pe,onMouseOut:ot})]}),ke&&a.jsxs(tt,{hasValue:Pe,label:m("Block spacing"),onDeselect:qe,isShownByDefault:(b=i.blockGap)!==null&&b!==void 0?b:tl.blockGap,className:oe({"tools-panel-item-spacing":M,"single-column":!M&&!se}),panelId:s,children:[!M&&(se?a.jsx(s4,{__next40pxDefaultSize:!0,label:m("Block spacing"),min:0,onChange:ve,units:y,sides:Se,values:U,allowReset:!1,splitOnAxis:se}):a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Block spacing"),min:0,onChange:ne,units:y,value:L})),M&&a.jsx(z4,{label:m("Block spacing"),min:0,onChange:ve,showSideInLabel:!1,sides:se?Se:["top"],values:U,allowReset:!1})]}),be&&a.jsx(PTt,{value:ze,onChange:nt,parentLayout:r?.parentLayout,panelId:s,isShownByDefault:(h=i.childLayout)!==null&&h!==void 0?h:tl.childLayout}),rt&&a.jsx(tt,{hasValue:ae,label:m("Minimum height"),onDeselect:Bt,isShownByDefault:(g=i.minHeight)!==null&&g!==void 0?g:tl.minHeight,panelId:s,children:a.jsx(BTt,{label:m("Minimum height"),value:qt,onChange:wt})}),H&&a.jsx(PMe,{hasValue:Re,value:Y,onChange:fe,panelId:s,isShownByDefault:(z=i.aspectRatio)!==null&&z!==void 0?z:tl.aspectRatio})]})}function KMe(e){return[...e].sort((n,o)=>e.filter(r=>r===o).length-e.filter(r=>r===n).length).shift()}function YMe(e={}){const{flat:t,...n}=e;return t||KMe(Object.values(n).filter(Boolean))||"px"}function uI(e={}){if(typeof e=="string")return e;const t=Object.values(e).map(c=>yo(c)),n=t.map(c=>{var l;return(l=c[0])!==null&&l!==void 0?l:""}),o=t.map(c=>c[1]),r=n.every(c=>c===n[0])?n[0]:"",s=KMe(o);return r===0||r?`${r}${s}`:void 0}function ZMe(e={}){const t=uI(e);return typeof e=="string"?!1:isNaN(parseFloat(t))}function QMe(e){return e?typeof e=="string"?!0:!!Object.values(e).filter(n=>!!n||n===0).length:!1}function HTt({onChange:e,selectedUnits:t,setSelectedUnits:n,values:o,...r}){let s=uI(o);s===void 0&&(s=YMe(t));const c=QMe(o)&&ZMe(o),l=c?m("Mixed"):null,u=p=>{const b=!isNaN(parseFloat(p))?p:void 0;e(b)},d=p=>{n({topLeft:p,topRight:p,bottomLeft:p,bottomRight:p})};return a.jsx(Ro,{...r,"aria-label":m("Border radius"),disableUnits:c,isOnly:!0,value:s,onChange:u,onUnitChange:d,placeholder:l,size:"__unstable-large"})}const UTt={topLeft:m("Top left"),topRight:m("Top right"),bottomLeft:m("Bottom left"),bottomRight:m("Bottom right")};function XTt({onChange:e,selectedUnits:t,setSelectedUnits:n,values:o,...r}){const s=l=>u=>{if(!e)return;const p=!isNaN(parseFloat(u))?u:void 0;e({...c,[l]:p})},i=l=>u=>{const d={...t};d[l]=u,n(d)},c=typeof o!="string"?o:{topLeft:o,topRight:o,bottomLeft:o,bottomRight:o};return a.jsx("div",{className:"components-border-radius-control__input-controls-wrapper",children:Object.entries(UTt).map(([l,u])=>{const[d,p]=yo(c[l]),f=c[l]?p:t[l]||t.flat;return a.jsx(B0,{text:u,placement:"top",children:a.jsx("div",{className:"components-border-radius-control__tooltip-wrapper",children:a.jsx(Ro,{...r,"aria-label":u,value:[d,f].join(""),onChange:s(l),onUnitChange:i(l),size:"__unstable-large"})})},l)})})}function GTt({isLinked:e,...t}){const n=m(e?"Unlink radii":"Link radii");return a.jsx(Ce,{...t,className:"component-border-radius-control__linked-button",size:"small",icon:e?xa:jl,iconSize:24,label:n})}const KTt={topLeft:void 0,topRight:void 0,bottomLeft:void 0,bottomRight:void 0},tT=0,YTt={px:100,em:20,rem:20};function ZTt({onChange:e,values:t}){const[n,o]=x.useState(!QMe(t)||!ZMe(t)),[r,s]=x.useState({flat:typeof t=="string"?yo(t)[1]:void 0,topLeft:yo(t?.topLeft)[1],topRight:yo(t?.topRight)[1],bottomLeft:yo(t?.bottomLeft)[1],bottomRight:yo(t?.bottomRight)[1]}),[i]=Un("spacing.units"),c=U1({availableUnits:i||["px","em","rem"]}),l=YMe(r),d=(c&&c.find(h=>h.value===l))?.step||1,[p]=yo(uI(t)),f=()=>o(!n),b=h=>{e(h!==void 0?`${h}${l}`:void 0)};return a.jsxs("fieldset",{className:"components-border-radius-control",children:[a.jsx(no.VisualLabel,{as:"legend",children:m("Radius")}),a.jsxs("div",{className:"components-border-radius-control__wrapper",children:[n?a.jsxs(a.Fragment,{children:[a.jsx(HTt,{className:"components-border-radius-control__unit-control",values:t,min:tT,onChange:e,selectedUnits:r,setSelectedUnits:s,units:c}),a.jsx(bo,{__next40pxDefaultSize:!0,label:m("Border radius"),hideLabelFromVision:!0,className:"components-border-radius-control__range-control",value:p??"",min:tT,max:YTt[l],initialPosition:0,withInputField:!1,onChange:b,step:d,__nextHasNoMarginBottom:!0})]}):a.jsx(XTt,{min:tT,onChange:e,selectedUnits:r,setSelectedUnits:s,values:t||KTt,units:c}),a.jsx(GTt,{onClick:f,isLinked:n})]})]})}function ub(){const[e,t,n,o,r,s,i,c,l,u]=Un("color.custom","color.palette.custom","color.palette.theme","color.palette.default","color.defaultPalette","color.customGradient","color.gradients.custom","color.gradients.theme","color.gradients.default","color.defaultGradients"),d={disableCustomColors:!e,disableCustomGradients:!s};return d.colors=x.useMemo(()=>{const p=[];return n&&n.length&&p.push({name:We("Theme","Indicates this palette comes from the theme."),slug:"theme",colors:n}),r&&o&&o.length&&p.push({name:We("Default","Indicates this palette comes from WordPress."),slug:"default",colors:o}),t&&t.length&&p.push({name:We("Custom","Indicates this palette is created by the user."),slug:"custom",colors:t}),p},[t,n,o,r]),d.gradients=x.useMemo(()=>{const p=[];return c&&c.length&&p.push({name:We("Theme","Indicates this palette comes from the theme."),slug:"theme",gradients:c}),u&&l&&l.length&&p.push({name:We("Default","Indicates this palette comes from WordPress."),slug:"default",gradients:l}),i&&i.length&&p.push({name:We("Custom","Indicates this palette is created by the user."),slug:"custom",gradients:i}),p},[i,c,l,u]),d.hasColorsOrGradients=!!d.colors.length||!!d.gradients.length,d}const Sm="__experimentalBorder",Qx="shadow",tte=(e,t,n)=>{let o;return e.some(r=>r.colors.some(s=>s[t]===n?(o=s,!0):!1)),o},a2=({colors:e,namedColor:t,customColor:n})=>{if(t){const r=tte(e,"slug",t);if(r)return r}if(!n)return{color:void 0};const o=tte(e,"color",n);return o||{color:n}};function bv(e){const t=/var:preset\|color\|(.+)/.exec(e);return t&&t[1]?t[1]:null}function JMe(e){if(Pd(e?.border))return{style:e,borderColor:void 0};const t=e?.border?.color,n=t?.startsWith("var:preset|color|")?t.substring(17):void 0,o={...e};return o.border={...o.border,color:n?void 0:t},{style:Di(o),borderColor:n}}function eze(e){return Pd(e.style?.border)?e.style:{...e.style,border:{...e.style?.border,color:e.borderColor?"var:preset|color|"+e.borderColor:e.style?.border?.color}}}function QTt({label:e,children:t,resetAllFilter:n}){const o=x.useCallback(r=>{const s=eze(r),i=n(s);return{...r,...JMe(i)}},[n]);return a.jsx(et,{group:"border",resetAllFilter:o,label:e,children:t})}function JTt({clientId:e,name:t,setAttributes:n,settings:o}){const r=sze(o);function s(p){const{style:f,borderColor:b}=p(Q).getBlockAttributes(e)||{};return{style:f,borderColor:b}}const{style:i,borderColor:c}=G(s,[e]),l=x.useMemo(()=>eze({style:i,borderColor:c}),[i,c]),u=p=>{n(JMe(p))};if(!r)return null;const d={...An(t,[Sm,"__experimentalDefaultControls"]),...An(t,[Qx,"__experimentalDefaultControls"])};return a.jsx(dze,{as:QTt,panelId:e,settings:o,value:l,onChange:u,defaultControls:d})}function Z_(e,t="any"){const n=An(e,Sm);return n===!0?!0:t==="any"?!!(n?.color||n?.radius||n?.width||n?.style):!!n?.[t]}function Q_({blockName:e,hasBorderControl:t,hasShadowControl:n}={}){const o=WO(e),r=dI(o);return!t&&!n&&e&&(t=r?.hasBorderColor||r?.hasBorderStyle||r?.hasBorderWidth||r?.hasBorderRadius,n=r?.hasShadow),m(t&&n?"Border & Shadow":n?"Shadow":"Border")}function eEt(e){return!Z_(e,"color")||e.attributes.borderColor?e:{...e,attributes:{...e.attributes,borderColor:{type:"string"}}}}function tze(e,t,n){if(!Z_(t,"color")||W0(t,Sm,"color"))return e;const o=nze(n),r=oe(e.className,o);return e.className=r||void 0,e}function nze(e){const{borderColor:t,style:n}=e,o=Pt("border-color",t);return oe({"has-border-color":t||n?.border?.color,[o]:!!o})}function tEt({name:e,borderColor:t,style:n}){const{colors:o}=ub();if(!Z_(e,"color")||W0(e,Sm,"color"))return{};const{color:r}=a2({colors:o,namedColor:t}),{color:s}=a2({colors:o,namedColor:bv(n?.border?.top?.color)}),{color:i}=a2({colors:o,namedColor:bv(n?.border?.right?.color)}),{color:c}=a2({colors:o,namedColor:bv(n?.border?.bottom?.color)}),{color:l}=a2({colors:o,namedColor:bv(n?.border?.left?.color)});return tze({style:Di({borderTopColor:s||r,borderRightColor:i||r,borderBottomColor:c||r,borderLeftColor:l||r})||{}},e,{borderColor:t,style:n})}const oze={useBlockProps:tEt,addSaveProps:tze,attributeKeys:["borderColor","style"],hasSupport(e){return Z_(e,"color")}};Bn("blocks.registerBlockType","core/border/addAttributes",eEt);const hv=[];function nEt({shadow:e,onShadowChange:t,settings:n}){const o=rze(n);return a.jsx("div",{className:"block-editor-global-styles__shadow-popover-container",children:a.jsxs(dt,{spacing:4,children:[a.jsx(_a,{level:5,children:m("Drop shadow")}),a.jsx(oEt,{presets:o,activeShadow:e,onSelect:t}),a.jsx("div",{className:"block-editor-global-styles__clear-shadow",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>t(void 0),children:m("Clear")})})]})})}function oEt({presets:e,activeShadow:t,onSelect:n}){return e?a.jsx(S1,{role:"listbox",className:"block-editor-global-styles__shadow__list","aria-label":m("Drop shadows"),children:e.map(({name:o,slug:r,shadow:s})=>a.jsx(rEt,{label:o,isActive:s===t,type:r==="unset"?"unset":"preset",onSelect:()=>n(s===t?void 0:s),shadow:s},r))}):null}function rEt({type:e,label:t,isActive:n,onSelect:o,shadow:r}){return a.jsx(B0,{text:t,children:a.jsx(S1.Item,{role:"option","aria-label":t,"aria-selected":n,className:oe("block-editor-global-styles__shadow__item",{"is-active":n}),render:a.jsx("button",{className:oe("block-editor-global-styles__shadow-indicator",{unset:e==="unset"}),onClick:o,style:{boxShadow:r},"aria-label":t,children:n&&a.jsx(wn,{icon:M0})})})})}function sEt({shadow:e,onShadowChange:t,settings:n}){const o={placement:"left-start",offset:36,shift:!0};return a.jsx(so,{popoverProps:o,className:"block-editor-global-styles__shadow-dropdown",renderToggle:iEt(),renderContent:()=>a.jsx($s,{paddingSize:"medium",children:a.jsx(nEt,{shadow:e,onShadowChange:t,settings:n})})})}function iEt(){return({onToggle:e,isOpen:t})=>{const n={onClick:e,className:oe({"is-open":t}),"aria-expanded":t};return a.jsx(Ce,{__next40pxDefaultSize:!0,...n,children:a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(wn,{className:"block-editor-global-styles__toggle-icon",icon:LQe,size:24}),a.jsx(Tn,{children:m("Drop shadow")})]})})}}function rze(e){return x.useMemo(()=>{var t;if(!e?.shadow)return hv;const n=e?.shadow?.defaultPresets,{default:o,theme:r,custom:s}=(t=e?.shadow?.presets)!==null&&t!==void 0?t:{},i={name:m("Unset"),slug:"unset",shadow:"none"},c=[...n&&o||hv,...r||hv,...s||hv];return c.length&&c.unshift(i),c},[e])}function sze(e){return Object.values(dI(e)).some(Boolean)}function dI(e){return{hasBorderColor:ize(e),hasBorderRadius:aze(e),hasBorderStyle:cze(e),hasBorderWidth:lze(e),hasShadow:uze(e)}}function ize(e){return e?.border?.color}function aze(e){return e?.border?.radius}function cze(e){return e?.border?.style}function lze(e){return e?.border?.width}function uze(e){const t=rze(e);return!!e?.shadow&&t.length>0}function aEt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r,label:s}){const i=dp(),c=()=>{const l=e(n);t(l)};return a.jsx(En,{label:s,resetAll:c,panelId:o,dropdownMenuProps:i,children:r})}const cEt={radius:!0,color:!0,width:!0,shadow:!0};function dze({as:e=aEt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,name:i,defaultControls:c=cEt}){var l,u,d,p;const f=pp(r),b=x.useCallback(V=>da({settings:r},"",V),[r]),h=V=>{const te=f.flatMap(({colors:J})=>J).find(({color:J})=>J===V);return te?"var:preset|color|"+te.slug:V},g=x.useMemo(()=>{if(Pd(o?.border)){const V={...o?.border};return["top","right","bottom","left"].forEach(ee=>{V[ee]={...V[ee],color:b(V[ee]?.color)}}),V}return{...o?.border,color:o?.border?.color?b(o?.border?.color):void 0}},[o?.border,b]),z=V=>n({...t,border:V}),A=ize(r),_=cze(r),v=lze(r),M=aze(r),y=b(g?.radius),k=V=>z({...g,radius:V}),S=()=>{const V=t?.border?.radius;return typeof V=="object"?Object.entries(V).some(Boolean):!!V},C=uze(r),R=b(o?.shadow),T=(l=r?.shadow?.presets)!==null&&l!==void 0?l:{},E=(u=(d=(p=T.custom)!==null&&p!==void 0?p:T.theme)!==null&&d!==void 0?d:T.default)!==null&&u!==void 0?u:[],B=V=>{const ee=E?.find(({shadow:te})=>te===V)?.slug;n(gn(t,["shadow"],ee?`var:preset|shadow|${ee}`:V||void 0))},N=()=>!!t?.shadow,j=()=>B(void 0),I=()=>{if(S())return z({radius:t?.border?.radius});z(void 0)},P=V=>{const ee={...V};Pd(ee)?["top","right","bottom","left"].forEach(te=>{ee[te]&&(ee[te]={...ee[te],color:h(ee[te]?.color)})}):ee&&(ee.color=h(ee.color)),z({radius:g?.radius,...ee})},$=x.useCallback(V=>({...V,border:void 0,shadow:void 0}),[]),F=c?.color||c?.width,X=A||_||v||M,Z=Q_({blockName:i,hasShadowControl:C,hasBorderControl:X});return a.jsxs(e,{resetAllFilter:$,value:t,onChange:n,panelId:s,label:Z,children:[(v||A)&&a.jsx(tt,{hasValue:()=>D0t(t?.border),label:m("Border"),onDeselect:()=>I(),isShownByDefault:F,panelId:s,children:a.jsx(Q0t,{colors:f,enableAlpha:!0,enableStyle:_,onChange:P,popoverOffset:40,popoverPlacement:"left-start",value:g,__experimentalIsRenderedInSidebar:!0,size:"__unstable-large",hideLabelFromVision:!C,label:m("Border")})}),M&&a.jsx(tt,{hasValue:S,label:m("Radius"),onDeselect:()=>k(void 0),isShownByDefault:c.radius,panelId:s,children:a.jsx(ZTt,{values:y,onChange:V=>{k(V||void 0)}})}),C&&a.jsxs(tt,{label:m("Shadow"),hasValue:N,onDeselect:j,isShownByDefault:c.shadow,panelId:s,children:[X?a.jsx(no.VisualLabel,{as:"legend",children:m("Shadow")}):null,a.jsx(tb,{isBordered:!0,isSeparated:!0,children:a.jsx(sEt,{shadow:R,onShadowChange:B,settings:r})})]})]})}const{Tabs:Zb}=ct(tr),lEt=["colors","disableCustomColors","gradients","disableCustomGradients"],Ia={color:"color",gradient:"gradient"};function pze({colors:e,gradients:t,disableCustomColors:n,disableCustomGradients:o,__experimentalIsRenderedInSidebar:r,className:s,label:i,onColorChange:c,onGradientChange:l,colorValue:u,gradientValue:d,clearable:p,showTitle:f=!0,enableAlpha:b,headingLevel:h}){const g=c&&(e&&e.length>0||!n),z=l&&(t&&t.length>0||!o);if(!g&&!z)return null;const A={[Ia.color]:a.jsx(Kw,{value:u,onChange:z?v=>{c(v),l()}:c,colors:e,disableCustomColors:n,__experimentalIsRenderedInSidebar:r,clearable:p,enableAlpha:b,headingLevel:h}),[Ia.gradient]:a.jsx(Jst,{value:d,onChange:g?v=>{l(v),c()}:l,gradients:t,disableCustomGradients:o,__experimentalIsRenderedInSidebar:r,clearable:p,headingLevel:h})},_=v=>a.jsx("div",{className:"block-editor-color-gradient-control__panel",children:A[v]});return a.jsx(no,{__nextHasNoMarginBottom:!0,className:oe("block-editor-color-gradient-control",s),children:a.jsx("fieldset",{className:"block-editor-color-gradient-control__fieldset",children:a.jsxs(dt,{spacing:1,children:[f&&a.jsx("legend",{children:a.jsx("div",{className:"block-editor-color-gradient-control__color-indicator",children:a.jsx(no.VisualLabel,{children:i})})}),g&&z&&a.jsx("div",{children:a.jsxs(Zb,{defaultTabId:d?Ia.gradient:!!g&&Ia.color,children:[a.jsxs(Zb.TabList,{children:[a.jsx(Zb.Tab,{tabId:Ia.color,children:m("Color")}),a.jsx(Zb.Tab,{tabId:Ia.gradient,children:m("Gradient")})]}),a.jsx(Zb.TabPanel,{tabId:Ia.color,className:"block-editor-color-gradient-control__panel",focusable:!1,children:A.color}),a.jsx(Zb.TabPanel,{tabId:Ia.gradient,className:"block-editor-color-gradient-control__panel",focusable:!1,children:A.gradient})]})}),!z&&_(Ia.color),!g&&_(Ia.gradient)]})})})}function uEt(e){const[t,n,o,r]=Un("color.palette","color.gradients","color.custom","color.customGradient");return a.jsx(pze,{colors:t,gradients:n,disableCustomColors:!o,disableCustomGradients:!r,...e})}function fze(e){return lEt.every(t=>e.hasOwnProperty(t))?a.jsx(pze,{...e}):a.jsx(uEt,{...e})}function bze(e){const t=hze(e),n=zze(e),o=mze(e),r=Iu(e),s=Mze(e),i=gze(e);return t||n||o||r||s||i}function hze(e){const t=pp(e);return e?.color?.text&&(t?.length>0||e?.color?.custom)}function mze(e){const t=pp(e);return e?.color?.link&&(t?.length>0||e?.color?.custom)}function gze(e){const t=pp(e);return e?.color?.caption&&(t?.length>0||e?.color?.custom)}function Iu(e){const t=pp(e),n=X_(e);return e?.color?.heading&&(t?.length>0||e?.color?.custom||n?.length>0||e?.color?.customGradient)}function Mze(e){const t=pp(e),n=X_(e);return e?.color?.button&&(t?.length>0||e?.color?.custom||n?.length>0||e?.color?.customGradient)}function zze(e){const t=pp(e),n=X_(e);return e?.color?.background&&(t?.length>0||e?.color?.custom||n?.length>0||e?.color?.customGradient)}function dEt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:m("Elements"),resetAll:i,panelId:o,hasInnerWrapper:!0,headingLevel:3,className:"color-block-support-panel",__experimentalFirstVisibleItemClass:"first",__experimentalLastVisibleItemClass:"last",dropdownMenuProps:s,children:a.jsx("div",{className:"color-block-support-panel__inner-wrapper",children:r})})}const pEt={text:!0,background:!0,link:!0,heading:!0,button:!0,caption:!0},fEt={placement:"left-start",offset:36,shift:!0},{Tabs:mv}=ct(tr),bEt=({indicators:e,label:t})=>a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(y2e,{isLayered:!1,offset:-8,children:e.map((n,o)=>a.jsx(Yo,{expanded:!1,children:a.jsx(eb,{colorValue:n})},o))}),a.jsx(Tn,{className:"block-editor-panel-color-gradient-settings__color-name",children:t})]});function nte({isGradient:e,inheritedValue:t,userValue:n,setValue:o,colorGradientControlSettings:r}){return a.jsx(fze,{...r,showTitle:!1,enableAlpha:!0,__experimentalIsRenderedInSidebar:!0,colorValue:e?void 0:t,gradientValue:e?t:void 0,onColorChange:e?void 0:o,onGradientChange:e?o:void 0,clearable:t===n,headingLevel:3})}function hEt({label:e,hasValue:t,resetValue:n,isShownByDefault:o,indicators:r,tabs:s,colorGradientControlSettings:i,panelId:c}){var l;const u=s.find(b=>b.userValue!==void 0),{key:d,...p}=(l=s[0])!==null&&l!==void 0?l:{},f=x.useRef(void 0);return a.jsx(tt,{className:"block-editor-tools-panel-color-gradient-settings__item",hasValue:t,label:e,onDeselect:n,isShownByDefault:o,panelId:c,children:a.jsx(so,{popoverProps:fEt,className:"block-editor-tools-panel-color-gradient-settings__dropdown",renderToggle:({onToggle:b,isOpen:h})=>{const g={onClick:b,className:oe("block-editor-panel-color-gradient-settings__dropdown",{"is-open":h}),"aria-expanded":h,ref:f};return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{...g,__next40pxDefaultSize:!0,children:a.jsx(bEt,{indicators:r,label:e})}),t()&&a.jsx(Ce,{__next40pxDefaultSize:!0,label:m("Reset"),className:"block-editor-panel-color-gradient-settings__reset",size:"small",icon:am,onClick:()=>{n(),h&&b(),f.current?.focus()}})]})},renderContent:()=>a.jsx($s,{paddingSize:"none",children:a.jsxs("div",{className:"block-editor-panel-color-gradient-settings__dropdown-content",children:[s.length===1&&a.jsx(nte,{...p,colorGradientControlSettings:i},d),s.length>1&&a.jsxs(mv,{defaultTabId:u?.key,children:[a.jsx(mv.TabList,{children:s.map(b=>a.jsx(mv.Tab,{tabId:b.key,children:b.label},b.key))}),s.map(b=>{const{key:h,...g}=b;return a.jsx(mv.TabPanel,{tabId:h,focusable:!1,children:a.jsx(nte,{...g,colorGradientControlSettings:i},h)},h)})]})]})})})})}function Oze({as:e=dEt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=pEt,children:c}){const l=pp(r),u=X_(r),d=r?.color?.custom,p=r?.color?.customGradient,f=l.length>0||d,b=u.length>0||p,h=de=>da({settings:r},"",de),g=de=>{const ye=l.flatMap(({colors:Ne})=>Ne).find(({color:Ne})=>Ne===de);return ye?"var:preset|color|"+ye.slug:de},z=de=>{const ye=u.flatMap(({gradients:Ne})=>Ne).find(({gradient:Ne})=>Ne===de);return ye?"var:preset|gradient|"+ye.slug:de},A=zze(r),_=h(o?.color?.background),v=h(t?.color?.background),M=h(o?.color?.gradient),y=h(t?.color?.gradient),k=()=>!!v||!!y,S=de=>{const Ae=gn(t,["color","background"],g(de));Ae.color.gradient=void 0,n(Ae)},C=de=>{const Ae=gn(t,["color","gradient"],z(de));Ae.color.background=void 0,n(Ae)},R=()=>{const de=gn(t,["color","background"],void 0);de.color.gradient=void 0,n(de)},T=mze(r),E=h(o?.elements?.link?.color?.text),B=h(t?.elements?.link?.color?.text),N=de=>{n(gn(t,["elements","link","color","text"],g(de)))},j=h(o?.elements?.link?.[":hover"]?.color?.text),I=h(t?.elements?.link?.[":hover"]?.color?.text),P=de=>{n(gn(t,["elements","link",":hover","color","text"],g(de)))},$=()=>!!B||!!I,F=()=>{let de=gn(t,["elements","link",":hover","color","text"],void 0);de=gn(de,["elements","link","color","text"],void 0),n(de)},X=hze(r),Z=h(o?.color?.text),V=h(t?.color?.text),ee=()=>!!V,te=de=>{let Ae=gn(t,["color","text"],g(de));Z===E&&(Ae=gn(Ae,["elements","link","color","text"],g(de))),n(Ae)},J=()=>te(void 0),ue=[{name:"caption",label:m("Captions"),showPanel:gze(r)},{name:"button",label:m("Button"),showPanel:Mze(r)},{name:"heading",label:m("Heading"),showPanel:Iu(r)},{name:"h1",label:m("H1"),showPanel:Iu(r)},{name:"h2",label:m("H2"),showPanel:Iu(r)},{name:"h3",label:m("H3"),showPanel:Iu(r)},{name:"h4",label:m("H4"),showPanel:Iu(r)},{name:"h5",label:m("H5"),showPanel:Iu(r)},{name:"h6",label:m("H6"),showPanel:Iu(r)}],ce=x.useCallback(de=>({...de,color:void 0,elements:{...de?.elements,link:{...de?.elements?.link,color:void 0,":hover":{color:void 0}},...ue.reduce((Ae,ye)=>({...Ae,[ye.name]:{...de?.elements?.[ye.name],color:void 0}}),{})}}),[]),me=[X&&{key:"text",label:m("Text"),hasValue:ee,resetValue:J,isShownByDefault:i.text,indicators:[Z],tabs:[{key:"text",label:m("Text"),inheritedValue:Z,setValue:te,userValue:V}]},A&&{key:"background",label:m("Background"),hasValue:k,resetValue:R,isShownByDefault:i.background,indicators:[M??_],tabs:[f&&{key:"background",label:m("Color"),inheritedValue:_,setValue:S,userValue:v},b&&{key:"gradient",label:m("Gradient"),inheritedValue:M,setValue:C,userValue:y,isGradient:!0}].filter(Boolean)},T&&{key:"link",label:m("Link"),hasValue:$,resetValue:F,isShownByDefault:i.link,indicators:[E,j],tabs:[{key:"link",label:m("Default"),inheritedValue:E,setValue:N,userValue:B},{key:"hover",label:m("Hover"),inheritedValue:j,setValue:P,userValue:I}]}].filter(Boolean);return ue.forEach(({name:de,label:Ae,showPanel:ye})=>{if(!ye)return;const Ne=h(o?.elements?.[de]?.color?.background),je=h(o?.elements?.[de]?.color?.gradient),ie=h(o?.elements?.[de]?.color?.text),we=h(t?.elements?.[de]?.color?.background),re=h(t?.elements?.[de]?.color?.gradient),pe=h(t?.elements?.[de]?.color?.text),ke=()=>!!(pe||we||re),Se=()=>{const qe=gn(t,["elements",de,"color","background"],void 0);qe.elements[de].color.gradient=void 0,qe.elements[de].color.text=void 0,n(qe)},se=qe=>{n(gn(t,["elements",de,"color","text"],g(qe)))},L=qe=>{const Pe=gn(t,["elements",de,"color","background"],g(qe));Pe.elements[de].color.gradient=void 0,n(Pe)},U=qe=>{const Pe=gn(t,["elements",de,"color","gradient"],z(qe));Pe.elements[de].color.background=void 0,n(Pe)},ne=!0,ve=de!=="caption";me.push({key:de,label:Ae,hasValue:ke,resetValue:Se,isShownByDefault:i[de],indicators:ve?[ie,je??Ne]:[ie],tabs:[f&&ne&&{key:"text",label:m("Text"),inheritedValue:ie,setValue:se,userValue:pe},f&&ve&&{key:"background",label:m("Background"),inheritedValue:Ne,setValue:L,userValue:we},b&&ve&&{key:"gradient",label:m("Gradient"),inheritedValue:je,setValue:U,userValue:re,isGradient:!0}].filter(Boolean)})}),a.jsxs(e,{resetAllFilter:ce,value:t,onChange:n,panelId:s,children:[me.map(de=>{const{key:Ae,...ye}=de;return a.jsx(hEt,{...ye,colorGradientControlSettings:{colors:l,disableCustomColors:!d,gradients:u,disableCustomGradients:!p},panelId:s},Ae)}),c]})}const gv=[];function ote(e,{presetSetting:t,defaultSetting:n}){const o=!e?.color?.[n],r=e?.color?.[t]?.custom||gv,s=e?.color?.[t]?.theme||gv,i=e?.color?.[t]?.default||gv;return x.useMemo(()=>[...r,...s,...o?gv:i],[o,r,s,i])}function mEt(e){return yze(e)}function yze(e){return e.color.customDuotone||e.color.defaultDuotone||e.color.duotone.length>0}function gEt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:We("Filters","Name for applying graphical effects"),resetAll:i,panelId:o,dropdownMenuProps:s,children:r})}const MEt={duotone:!0},zEt={placement:"left-start",offset:36,shift:!0,className:"block-editor-duotone-control__popover",headerTitle:m("Duotone")},OEt=({indicator:e,label:t})=>a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(y2e,{isLayered:!1,offset:-8,children:a.jsx(Yo,{expanded:!1,children:e==="unset"||!e?a.jsx(eb,{className:"block-editor-duotone-control__unset-indicator"}):a.jsx(Zbe,{values:e})})}),a.jsx(Tn,{title:t,children:t})]});function Aze({as:e=gEt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=MEt}){const c=z=>da({settings:r},"",z),l=yze(r),u=ote(r,{presetSetting:"duotone",defaultSetting:"defaultDuotone"}),d=ote(r,{presetSetting:"palette",defaultSetting:"defaultPalette"}),p=c(o?.filter?.duotone),f=z=>{const A=u.find(({colors:v})=>v===z),_=A?`var:preset|duotone|${A.slug}`:z;n(gn(t,["filter","duotone"],_))},b=()=>!!t?.filter?.duotone,h=()=>f(void 0),g=x.useCallback(z=>({...z,filter:{...z.filter,duotone:void 0}}),[]);return a.jsx(e,{resetAllFilter:g,value:t,onChange:n,panelId:s,children:l&&a.jsx(tt,{label:m("Duotone"),hasValue:b,onDeselect:h,isShownByDefault:i.duotone,panelId:s,children:a.jsx(so,{popoverProps:zEt,className:"block-editor-global-styles-filters-panel__dropdown",renderToggle:({onToggle:z,isOpen:A})=>{const _={onClick:z,className:oe({"is-open":A}),"aria-expanded":A};return a.jsx(tb,{isBordered:!0,isSeparated:!0,children:a.jsx(oO,{as:"button",..._,children:a.jsx(OEt,{indicator:p,label:m("Duotone")})})})},renderContent:()=>a.jsx($s,{paddingSize:"small",children:a.jsxs(Cn,{label:m("Duotone"),children:[a.jsx("p",{children:m("Create a two-tone color effect without losing your original image.")}),a.jsx(Ybe,{colorPalette:d,duotonePalette:u,disableCustomColors:!0,disableCustomDuotone:!0,value:p,onChange:f})]})})})})})}function yEt(e,t,n){return e==="core/image"&&n?.lightbox?.allowEditing||!!t?.lightbox}function AEt({onChange:e,value:t,inheritedValue:n,panelId:o}){const r=dp(),s=()=>{e(void 0)},i=l=>{e({enabled:l})};let c=!1;return n?.lightbox?.enabled&&(c=n.lightbox.enabled),a.jsx(a.Fragment,{children:a.jsx(En,{label:We("Settings","Image settings"),resetAll:s,panelId:o,dropdownMenuProps:r,children:a.jsx(tt,{hasValue:()=>!!t?.lightbox,label:m("Enlarge on click"),onDeselect:s,isShownByDefault:!0,panelId:o,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Enlarge on click"),checked:c,onChange:i})})})})}function vEt({value:e,onChange:t,inheritedValue:n=e}){const[o,r]=x.useState(null),s=n?.css;function i(l){if(t({...e,css:l}),o){const[u]=Hx([{css:l}],".for-validation-only");u&&r(null)}}function c(l){if(!l?.target?.value){r(null);return}const[u]=Hx([{css:l.target.value}],".for-validation-only");r(u===null?m("There is an error with your CSS structure."):null)}return a.jsxs(dt,{spacing:3,children:[o&&a.jsx(L1,{status:"error",onRemove:()=>r(null),children:o}),a.jsx(Pi,{label:m("Additional CSS"),__nextHasNoMarginBottom:!0,value:s,onChange:l=>i(l),onBlur:c,className:"block-editor-global-styles-advanced-panel__custom-css-input",spellCheck:!1})]})}const Mv=new Map,GW=[],nT={caption:m("Caption"),link:m("Link"),button:m("Button"),heading:m("Heading"),h1:m("H1"),h2:m("H2"),h3:m("H3"),h4:m("H4"),h5:m("H5"),h6:m("H6"),"settings.color":m("Color"),"settings.typography":m("Typography"),"styles.color":m("Colors"),"styles.spacing":m("Spacing"),"styles.background":m("Background"),"styles.typography":m("Typography")},xEt=Hs(()=>gs().reduce((e,{name:t,title:n})=>(e[t]=n,e),{})),zv=e=>e!==null&&typeof e=="object";function wEt(e){if(nT[e])return nT[e];const t=e.split(".");if(t?.[0]==="blocks")return xEt()?.[t[1]]||t[1];if(t?.[0]==="elements")return nT[t[1]]||t[1]}function vze(e,t,n=""){if(!zv(e)&&!zv(t))return e!==t?n.split(".").slice(0,2).join("."):void 0;e=zv(e)?e:{},t=zv(t)?t:{};const o=new Set([...Object.keys(e),...Object.keys(t)]);let r=[];for(const s of o){const i=n?n+"."+s:s,c=vze(e[s],t[s],i);c&&(r=r.concat(c))}return r}function _Et(e,t){const n=JSON.stringify({next:e,previous:t});if(Mv.has(n))return Mv.get(n);const o=vze({styles:{background:e?.styles?.background,color:e?.styles?.color,typography:e?.styles?.typography,spacing:e?.styles?.spacing},blocks:e?.styles?.blocks,elements:e?.styles?.elements,settings:e?.settings},{styles:{background:t?.styles?.background,color:t?.styles?.color,typography:t?.styles?.typography,spacing:t?.styles?.spacing},blocks:t?.styles?.blocks,elements:t?.styles?.elements,settings:t?.settings});if(!o.length)return Mv.set(n,GW),GW;const r=[...new Set(o)].reduce((s,i)=>{const c=wEt(i);return c&&s.push([i.split(".")[0],c]),s},[]);return Mv.set(n,r),r}function kEt(e,t,n={}){let o=_Et(e,t);const r=o.length,{maxResults:s}=n;return r?(s&&r>s&&(o=o.slice(0,s)),Object.entries(o.reduce((i,c)=>{const l=i[c[0]]||[];return l.includes(c[1])||(i[c[0]]=[...l,c[1]]),i},{})).map(([i,c])=>{const l=c.length,u=c.join(m(", "));switch(i){case"blocks":return xe(Dn("%s block.","%s blocks.",l),u);case"elements":return xe(Dn("%s element.","%s elements.",l),u);case"settings":return xe(m("%s settings."),u);case"styles":return xe(m("%s styles."),u);default:return xe(m("%s."),u)}})):GW}const SEt=Object.freeze(Object.defineProperty({__proto__:null,AdvancedPanel:vEt,BackgroundPanel:zMe,BorderPanel:dze,ColorPanel:Oze,DimensionsPanel:GMe,FiltersPanel:Aze,GlobalStylesContext:lb,ImageSettingsPanel:AEt,TypographyPanel:BMe,areGlobalStyleConfigsEqual:PSt,getBlockCSSSelector:pd,getBlockSelectors:K_,getGlobalStylesChanges:kEt,getLayoutStyles:yMe,toStyles:G_,useGlobalSetting:lMe,useGlobalStyle:tRt,useGlobalStylesOutput:uTt,useGlobalStylesOutputWithConfig:AMe,useGlobalStylesReset:eRt,useHasBackgroundPanel:iI,useHasBorderPanel:sze,useHasBorderPanelControls:dI,useHasColorPanel:bze,useHasDimensionsPanel:jMe,useHasFiltersPanel:mEt,useHasImageSettingsPanel:yEt,useHasTypographyPanel:wMe,useSettingsForBlockElement:uMe},Symbol.toStringTag,{value:"Module"})),KW="is-style-";function xze(e){return e?e.split(/\s+/).reduce((t,n)=>{if(n.startsWith(KW)){const o=n.slice(KW.length);o!=="default"&&t.push(o)}return t},[]):[]}function CEt(e,t=[]){const n=xze(e);if(!n)return null;for(const o of n)if(t.some(r=>r.name===o))return o;return null}function qEt({override:e}){Jz(e)}function REt({config:e}){const{getBlockStyles:t,overrides:n}=G(s=>({getBlockStyles:s(kt).getBlockStyles,overrides:ct(s(Q)).getStyleOverrides()}),[]),{getBlockName:o}=G(Q),r=x.useMemo(()=>{if(!n?.length)return;const s=[],i=[];for(const[,c]of n)if(c?.variation&&c?.clientId&&!i.includes(c.clientId)){const l=o(c.clientId),u=e?.styles?.blocks?.[l]?.variations?.[c.variation];if(u){const d={settings:e?.settings,styles:{blocks:{[l]:{variations:{[`${c.variation}-${c.clientId}`]:u}}}}},p=K_(gs(),t,c.clientId),z=G_(d,p,!1,!0,!0,!0,{blockGap:!1,blockStyles:!0,layoutStyles:!1,marginReset:!1,presets:!1,rootPadding:!1,variationStyles:!0});s.push({id:`${c.variation}-${c.clientId}`,css:z,__unstableType:"variation",variation:c.variation,clientId:c.clientId}),i.push(c.clientId)}}return s},[e,n,t,o]);if(!(!r||!r.length))return a.jsx(a.Fragment,{children:r.map(s=>a.jsx(qEt,{override:s},s.id))})}function wze(e,t,n){if(!e?.styles?.blocks?.[t]?.variations?.[n])return;const o=s=>{Object.keys(s).forEach(i=>{const c=s[i];if(typeof c=="object"&&c!==null)if(c.ref!==void 0)if(typeof c.ref!="string"||c.ref.trim()==="")delete s[i];else{const l=fo(e,c.ref);l?s[i]=l:delete s[i]}else o(c),Object.keys(c).length===0&&delete s[i]})},r=JSON.parse(JSON.stringify(e.styles.blocks[t].variations[n]));return o(r),r}function TEt(e,t,n){const{merged:o}=x.useContext(lb),{globalSettings:r,globalStyles:s}=G(i=>{const c=i(Q).getSettings();return{globalSettings:c.__experimentalFeatures,globalStyles:c[dO]}},[]);return x.useMemo(()=>{var i,c,l;const u=wze({settings:(i=o?.settings)!==null&&i!==void 0?i:r,styles:(c=o?.styles)!==null&&c!==void 0?c:s},e,t);return{settings:(l=o?.settings)!==null&&l!==void 0?l:r,styles:{blocks:{[e]:{variations:{[`${t}-${n}`]:u}}}}}},[o,r,s,t,n,e])}function EEt({name:e,className:t,clientId:n}){const{getBlockStyles:o}=G(kt),r=o(e),s=CEt(t,r),i=`${KW}${s}-${n}`,{settings:c,styles:l}=TEt(e,s,n),u=x.useMemo(()=>{if(!s)return;const d={settings:c,styles:l},p=K_(gs(),o,n);return G_(d,p,!1,!0,!0,!0,{blockGap:!1,blockStyles:!0,layoutStyles:!1,marginReset:!1,presets:!1,rootPadding:!1,variationStyles:!0})},[s,c,l,o,n]);return Jz({id:`variation-${n}`,css:u,__unstableType:"variation",variation:s,clientId:n}),s?{className:i}:{}}const WEt={hasSupport:()=>!0,attributeKeys:["className"],isMatch:({className:e})=>xze(e).length>0,useBlockProps:EEt},NEt=a.jsxs(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:[a.jsx(he,{d:"M17.2 10.9c-.5-1-1.2-2.1-2.1-3.2-.6-.9-1.3-1.7-2.1-2.6L12 4l-1 1.1c-.6.9-1.3 1.7-2 2.6-.8 1.2-1.5 2.3-2 3.2-.6 1.2-1 2.2-1 3 0 3.4 2.7 6.1 6.1 6.1s6.1-2.7 6.1-6.1c0-.8-.3-1.8-1-3z"}),a.jsx(he,{stroke:"currentColor",strokeWidth:"1.5",d:"M17.2 10.9c-.5-1-1.2-2.1-2.1-3.2-.6-.9-1.3-1.7-2.1-2.6L12 4l-1 1.1c-.6.9-1.3 1.7-2 2.6-.8 1.2-1.5 2.3-2 3.2-.6 1.2-1 2.2-1 3 0 3.4 2.7 6.1 6.1 6.1s6.1-2.7 6.1-6.1c0-.8-.3-1.8-1-3z"})]});function BEt({clientId:e}){var t,n;const{stylesToRender:o,activeStyle:r,className:s}=nI({clientId:e}),{updateBlockAttributes:i}=Oe(Q),{merged:c}=x.useContext(lb),{globalSettings:l,globalStyles:u,blockName:d}=G(b=>{const h=b(Q).getSettings();return{globalSettings:h.__experimentalFeatures,globalStyles:h[dO],blockName:b(Q).getBlockName(e)}},[e]),p=r?.name?wze({settings:(t=c?.settings)!==null&&t!==void 0?t:l,styles:(n=c?.styles)!==null&&n!==void 0?n:u},d,r.name)?.color?.background:void 0;if(!o||o.length===0)return null;const f=()=>{const h=(o.findIndex(A=>A.name===r.name)+1)%o.length,g=o[h],z=tI(s,r,g);i(e,{className:z})};return a.jsx(Wn,{children:a.jsx(Vt,{onClick:f,label:m("Shuffle styles"),children:a.jsx(qo,{icon:NEt,style:{fill:p||"transparent"}})})})}function _ze({hideDragHandle:e,focusOnMount:t,__experimentalInitialIndex:n,__experimentalOnIndexChange:o,variant:r="unstyled"}){const{blockClientId:s,blockClientIds:i,isDefaultEditingMode:c,blockType:l,toolbarKey:u,shouldShowVisualToolbar:d,showParentSelector:p,isUsingBindings:f,hasParentPattern:b,hasContentOnlyLocking:h,showShuffleButton:g,showSlots:z,showGroupButtons:A,showLockButtons:_,showSwitchSectionStyleButton:v,hasFixedToolbar:M,isNavigationMode:y}=G(I=>{const{getBlockName:P,getBlockMode:$,getBlockParents:F,getSelectedBlockClientIds:X,isBlockValid:Z,getBlockEditingMode:V,getBlockAttributes:ee,getBlockParentsByBlockName:te,getTemplateLock:J,getSettings:ue,getParentSectionBlock:ce,isZoomOut:me,isNavigationMode:de}=ct(I(Q)),Ae=X(),ye=Ae[0],Ne=F(ye),je=ce(ye),ie=je??Ne[Ne.length-1],we=P(ie),re=on(we),pe=V(ye),ke=pe==="default",Se=P(ye),se=Ae.every(Pe=>Z(Pe)),L=Ae.every(Pe=>$(Pe)==="visual"),U=Ae.every(Pe=>!!ee(Pe)?.metadata?.bindings),ne=Ae.every(Pe=>te(Pe,"core/block",!0).length>0),ve=Ae.some(Pe=>J(Pe)==="contentOnly"),qe=me();return{blockClientId:ye,blockClientIds:Ae,isDefaultEditingMode:ke,blockType:ye&&on(Se),shouldShowVisualToolbar:se&&L,toolbarKey:`${ye}${ie}`,showParentSelector:!qe&&re&&pe!=="contentOnly"&&V(ie)!=="disabled"&&Et(re,"__experimentalParentSelector",!0)&&Ae.length===1,isUsingBindings:U,hasParentPattern:ne,hasContentOnlyLocking:ve,showShuffleButton:qe,showSlots:!qe,showGroupButtons:!qe,showLockButtons:!qe,showSwitchSectionStyleButton:qe,hasFixedToolbar:ue().hasFixedToolbar,isNavigationMode:de()}},[]),k=x.useRef(null),S=x.useRef(),C=eI({ref:S}),R=!Yn("medium","<");if(!cMe())return null;const E=i.length>1,B=Qd(l)||Hh(l),N=oe("block-editor-block-contextual-toolbar",{"has-parent":p,"is-inverted-toolbar":y&&!M}),j=oe("block-editor-block-toolbar",{"is-synced":B,"is-connected":f});return a.jsx(rI,{focusEditorOnEscape:!0,className:N,"aria-label":m("Block tools"),variant:r==="toolbar"?void 0:r,focusOnMount:t,__experimentalInitialIndex:n,__experimentalOnIndexChange:o,children:a.jsxs("div",{ref:k,className:j,children:[p&&!E&&R&&a.jsx(pCt,{}),(d||E)&&!b&&a.jsx("div",{ref:S,...C,children:a.jsxs(Wn,{className:"block-editor-block-toolbar__block-controls",children:[a.jsx(WCt,{clientIds:i}),!E&&c&&_&&a.jsx(Cqt,{clientId:s}),a.jsx(lCt,{clientIds:i,hideDragHandle:e})]})}),!h&&d&&E&&A&&a.jsx(xqt,{}),g&&a.jsx(Zqt,{clientId:i[0]}),v&&a.jsx(BEt,{clientId:i[0]}),d&&z&&a.jsxs(a.Fragment,{children:[a.jsx(bt.Slot,{group:"parent",className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{group:"block",className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{group:"inline",className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{group:"other",className:"block-editor-block-toolbar__slot"}),a.jsx(Vqt.Provider,{value:l?.name,children:a.jsx(oI.Slot,{})})]}),a.jsx($qt,{clientIds:i}),a.jsx(Fqt,{clientIds:i})]})},u)}function pI({hideDragHandle:e,variant:t}){return a.jsx(_ze,{hideDragHandle:e,variant:t,focusOnMount:void 0,__experimentalInitialIndex:void 0,__experimentalOnIndexChange:void 0})}function LEt({clientId:e,isTyping:t,__unstableContentRef:n}){const{capturingClientId:o,isInsertionPointVisible:r,lastClientId:s}=Fge(e),i=x.useRef();x.useEffect(()=>{i.current=void 0},[e]);const{stopTyping:c}=Oe(Q),l=x.useRef(!1);p0("core/block-editor/focus-toolbar",()=>{l.current=!0,c(!0)}),x.useEffect(()=>{l.current=!1});const u=o||e,d=Dge({contentElement:n?.current,clientId:u});return!t&&a.jsx(W6t,{clientId:u,bottomClientId:s,className:oe("block-editor-block-list__block-popover",{"is-insertion-point-visible":r}),resize:!1,...d,children:a.jsx(_ze,{focusOnMount:l.current,__experimentalInitialIndex:i.current,__experimentalOnIndexChange:p=>{i.current=p},variant:"toolbar"})})}function PEt({onClick:e}){return a.jsx(Ce,{variant:"primary",icon:Fs,size:"compact",className:oe("block-editor-button-pattern-inserter__button","block-editor-block-tools__zoom-out-mode-inserter-button"),onClick:e,label:We("Add pattern","Generic label for pattern inserter button")})}function jEt(){const[e,t]=x.useState(!1),{hasSelection:n,blockOrder:o,setInserterIsOpened:r,sectionRootClientId:s,selectedBlockClientId:i,blockInsertionPoint:c,insertionPointVisible:l}=G(h=>{const{getSettings:g,getBlockOrder:z,getSelectionStart:A,getSelectedBlockClientId:_,getSectionRootClientId:v,getBlockInsertionPoint:M,isBlockInsertionPointVisible:y}=ct(h(Q)),k=v();return{hasSelection:!!A().clientId,blockOrder:z(k),sectionRootClientId:k,setInserterIsOpened:g().__experimentalSetIsInserterOpened,selectedBlockClientId:_(),blockInsertionPoint:M(),insertionPointVisible:y()}},[]),{showInsertionPoint:u}=ct(Oe(Q));if(x.useEffect(()=>{const h=setTimeout(()=>{t(!0)},500);return()=>{clearTimeout(h)}},[]),!e||!n)return null;const d=i,f=o.findIndex(h=>i===h)+1,b=o[f];return l&&c?.index===f?null:a.jsx(kge,{previousClientId:d,nextClientId:b,children:a.jsx(PEt,{onClick:()=>{r({rootClientId:s,insertionIndex:f,tab:"patterns",category:"all"}),u(s,f,{operation:"insert"})}})})}function IEt(){return G(e=>{const{getSelectedBlockClientId:t,getFirstMultiSelectedBlockClientId:n,getBlock:o,getBlockMode:r,getSettings:s,__unstableGetEditorMode:i,isTyping:c}=ct(e(Q)),l=t()||n(),u=o(l),d=i(),p=!!l&&!!u,f=p&&Wl(u)&&r(l)!=="html",b=l&&!c()&&d!=="navigation"&&f,h=!s().hasFixedToolbar&&!b&&p&&!f;return{showEmptyBlockSideInserter:b,showBlockToolbarPopover:h}},[])}function DEt(e){const{getSelectedBlockClientId:t,getFirstMultiSelectedBlockClientId:n,getSettings:o,isTyping:r,isDragging:s,isZoomOut:i}=ct(e(Q));return{clientId:t()||n(),hasFixedToolbar:o().hasFixedToolbar,isTyping:r(),isZoomOutMode:i(),isDragging:s()}}function rte({children:e,__unstableContentRef:t,...n}){const{clientId:o,hasFixedToolbar:r,isTyping:s,isZoomOutMode:i,isDragging:c}=G(DEt,[]),l=E_(),{getBlocksByClientId:u,getSelectedBlockClientIds:d,getBlockRootClientId:p,isGroupable:f}=G(Q),{getGroupingBlockName:b}=G(kt),{showEmptyBlockSideInserter:h,showBlockToolbarPopover:g}=IEt(),{duplicateBlocks:z,removeBlocks:A,replaceBlocks:_,insertAfterBlock:v,insertBeforeBlock:M,selectBlock:y,moveBlocksUp:k,moveBlocksDown:S,expandBlock:C}=ct(Oe(Q));function R(B){if(!B.defaultPrevented){if(l("core/block-editor/move-up",B)||l("core/block-editor/move-down",B)){const N=d();if(N.length){B.preventDefault();const j=p(N[0]);(l("core/block-editor/move-up",B)?"up":"down")==="up"?k(N,j):S(N,j);const P=Array.isArray(N)?N.length:1,$=xe(Dn("%d block moved.","%d blocks moved.",N.length),P);Yt($)}}else if(l("core/block-editor/duplicate",B)){const N=d();N.length&&(B.preventDefault(),z(N))}else if(l("core/block-editor/remove",B)){const N=d();N.length&&(B.preventDefault(),A(N))}else if(l("core/block-editor/insert-after",B)){const N=d();N.length&&(B.preventDefault(),v(N[N.length-1]))}else if(l("core/block-editor/insert-before",B)){const N=d();N.length&&(B.preventDefault(),M(N[0]))}else if(l("core/block-editor/unselect",B)){if(B.target.closest("[role=toolbar]"))return;const N=d();N.length>1&&(B.preventDefault(),y(N[0]))}else if(l("core/block-editor/collapse-list-view",B)){if(md(B.target)||md(B.target?.contentWindow?.document?.activeElement))return;B.preventDefault(),C(o)}else if(l("core/block-editor/group",B)){const N=d();if(N.length>1&&f(N)){B.preventDefault();const j=u(N),I=b(),P=Kr(j,I);_(N,P),Yt(m("Selected blocks are grouped."))}}}}const T=Xx(t),E=Xx(t);return a.jsx("div",{...n,onKeyDown:R,children:a.jsxs(Y7.Provider,{value:x.useRef(!1),children:[!s&&!i&&a.jsx(j6t,{__unstableContentRef:t}),h&&a.jsx(nCt,{__unstableContentRef:t,clientId:o}),g&&a.jsx(LEt,{__unstableContentRef:t,clientId:o,isTyping:s}),!i&&!r&&a.jsx(Io.Slot,{name:"block-toolbar",ref:T}),e,a.jsx(Io.Slot,{name:"__unstable-block-tools-after",ref:E}),i&&!c&&a.jsx(jEt,{__unstableContentRef:t})]})})}function FEt(e={},t){switch(t.type){case"REGISTER_COMMAND":return{...e,[t.name]:{name:t.name,label:t.label,searchLabel:t.searchLabel,context:t.context,callback:t.callback,icon:t.icon}};case"UNREGISTER_COMMAND":{const{[t.name]:n,...o}=e;return o}}return e}function $Et(e={},t){switch(t.type){case"REGISTER_COMMAND_LOADER":return{...e,[t.name]:{name:t.name,context:t.context,hook:t.hook}};case"UNREGISTER_COMMAND_LOADER":{const{[t.name]:n,...o}=e;return o}}return e}function VEt(e=!1,t){switch(t.type){case"OPEN":return!0;case"CLOSE":return!1}return e}function HEt(e="root",t){switch(t.type){case"SET_CONTEXT":return t.context}return e}const UEt=J0({commands:FEt,commandLoaders:$Et,isOpen:VEt,context:HEt});function XEt(e){return{type:"REGISTER_COMMAND",...e}}function GEt(e){return{type:"UNREGISTER_COMMAND",name:e}}function KEt(e){return{type:"REGISTER_COMMAND_LOADER",...e}}function YEt(e){return{type:"UNREGISTER_COMMAND_LOADER",name:e}}function ZEt(){return{type:"OPEN"}}function QEt(){return{type:"CLOSE"}}const JEt=Object.freeze(Object.defineProperty({__proto__:null,close:QEt,open:ZEt,registerCommand:XEt,registerCommandLoader:KEt,unregisterCommand:GEt,unregisterCommandLoader:YEt},Symbol.toStringTag,{value:"Module"})),e8t=It((e,t=!1)=>Object.values(e.commands).filter(n=>{const o=n.context&&n.context===e.context;return t?o:!o}),e=>[e.commands,e.context]),t8t=It((e,t=!1)=>Object.values(e.commandLoaders).filter(n=>{const o=n.context&&n.context===e.context;return t?o:!o}),e=>[e.commandLoaders,e.context]);function n8t(e){return e.isOpen}function o8t(e){return e.context}const r8t=Object.freeze(Object.defineProperty({__proto__:null,getCommandLoaders:t8t,getCommands:e8t,getContext:o8t,isOpen:n8t},Symbol.toStringTag,{value:"Module"}));function s8t(e){return{type:"SET_CONTEXT",context:e}}const i8t=Object.freeze(Object.defineProperty({__proto__:null,setContext:s8t},Symbol.toStringTag,{value:"Module"})),{lock:a8t,unlock:kze}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/commands"),c8t="core/commands",Ef=x1(c8t,{reducer:UEt,actions:JEt,selectors:r8t});Us(Ef);kze(Ef).registerPrivateActions(i8t);m("Search commands and settings");function l8t(e){const{getContext:t}=G(Ef),n=x.useRef(t()),{setContext:o}=kze(Oe(Ef));x.useEffect(()=>{o(e)},[e,o]),x.useEffect(()=>{const r=n.current;return()=>o(r)},[o])}const Sze={};a8t(Sze,{useCommandContext:l8t});function u8t(e){const{registerCommand:t,unregisterCommand:n}=Oe(Ef),o=x.useRef(e.callback);x.useEffect(()=>{o.current=e.callback},[e.callback]),x.useEffect(()=>{if(!e.disabled)return t({name:e.name,context:e.context,label:e.label,searchLabel:e.searchLabel,icon:e.icon,callback:(...r)=>o.current(...r)}),()=>{n(e.name)}},[e.name,e.label,e.searchLabel,e.icon,e.context,e.disabled,t,n])}function xi(e){const{registerCommandLoader:t,unregisterCommandLoader:n}=Oe(Ef);x.useEffect(()=>{if(!e.disabled)return t({name:e.name,hook:e.hook,context:e.context}),()=>{n(e.name)}},[e.name,e.hook,e.context,e.disabled,t,n])}const d8t=()=>function(){const{replaceBlocks:t,multiSelect:n}=Oe(Q),{blocks:o,clientIds:r,canRemove:s,possibleBlockTransformations:i,invalidSelection:c}=G(b=>{const{getBlockRootClientId:h,getBlockTransformItems:g,getSelectedBlockClientIds:z,getBlocksByClientId:A,canRemoveBlocks:_}=b(Q),v=z(),M=A(v);if(M.filter(k=>!k).length>0)return{invalidSelection:!0};const y=h(v[0]);return{blocks:M,clientIds:v,possibleBlockTransformations:g(M,y),canRemove:_(v),invalidSelection:!1}},[]);if(c)return{isLoading:!1,commands:[]};const l=o.length===1&&Hh(o[0]);function u(b){b.length>1&&n(b[0].clientId,b[b.length-1].clientId)}function d(b){const h=Kr(o,b);t(r,h),u(h)}const p=!!i.length&&s&&!l;return!r||r.length<1||!p?{isLoading:!1,commands:[]}:{isLoading:!1,commands:i.map(b=>{const{name:h,title:g,icon:z}=b;return{name:"core/block-editor/transform-to-"+h.replace("/","-"),label:xe(m("Transform to %s"),g),icon:a.jsx(Zn,{icon:z}),callback:({close:A})=>{d(h),A()}}})}},p8t=()=>function(){const{clientIds:t,isUngroupable:n,isGroupable:o}=G(S=>{const{getSelectedBlockClientIds:C,isUngroupable:R,isGroupable:T}=S(Q);return{clientIds:C(),isUngroupable:R(),isGroupable:T()}},[]),{canInsertBlockType:r,getBlockRootClientId:s,getBlocksByClientId:i,canRemoveBlocks:c}=G(Q),{getDefaultBlockName:l,getGroupingBlockName:u}=G(kt),d=i(t),{removeBlocks:p,replaceBlocks:f,duplicateBlocks:b,insertAfterBlock:h,insertBeforeBlock:g}=Oe(Q),z=()=>{if(!d.length)return;const S=u(),C=Kr(d,S);C&&f(t,C)},A=()=>{if(!d.length)return;const S=d[0].innerBlocks;S.length&&f(t,S)};if(!t||t.length<1)return{isLoading:!1,commands:[]};const _=s(t[0]),v=r(l(),_),M=d.every(S=>!!S&&Et(S.name,"multiple",!0)&&r(S.name,_)),y=c(t),k=[];return M&&k.push({name:"duplicate",label:m("Duplicate"),callback:()=>b(t,!0),icon:H3}),v&&k.push({name:"add-before",label:m("Add before"),callback:()=>{const S=Array.isArray(t)?t[0]:S;g(S)},icon:Fs},{name:"add-after",label:m("Add after"),callback:()=>{const S=Array.isArray(t)?t[t.length-1]:S;h(S)},icon:Fs}),o&&k.push({name:"Group",label:m("Group"),callback:z,icon:Zf}),n&&k.push({name:"ungroup",label:m("Ungroup"),callback:A,icon:lJe}),y&&k.push({name:"remove",label:m("Delete"),callback:()=>p(t,!0),icon:K3}),{isLoading:!1,commands:k.map(S=>({...S,name:"core/block-editor/action-"+S.name,callback:({close:C})=>{S.callback(),C()}}))}},f8t=()=>{xi({name:"core/block-editor/blockTransforms",hook:d8t()}),xi({name:"core/block-editor/blockQuickActions",hook:p8t(),context:"block-selection-edit"})},b8t={ignoredSelectors:[/\.editor-styles-wrapper/gi]};function h8t({shouldIframe:e=!0,height:t="300px",children:n=a.jsx(I_,{}),styles:o,contentRef:r,iframeProps:s}){f8t();const i=Yn("medium","<"),c=Tge(),l=E7(),u=x.useRef(),d=xn([r,l,u]),p=G(b=>ct(b(Q)).getZoomLevel(),[]),f=p!==100&&!i?{scale:p,frameSize:"40px"}:{};return e?a.jsx(rte,{__unstableContentRef:u,className:"block-editor-block-canvas",style:{height:t,display:"flex"},children:a.jsxs(Eme,{...s,...f,ref:c,contentRef:d,style:{...s?.style},name:"editor-canvas",children:[a.jsx(Ux,{styles:o}),n]})}):a.jsxs(rte,{__unstableContentRef:u,className:"block-editor-block-canvas",style:{height:t},children:[a.jsx(Ux,{styles:o,scope:":where(.editor-styles-wrapper)",transformOptions:b8t}),a.jsx(awt,{ref:d,className:"editor-styles-wrapper",tabIndex:-1,children:n})]})}const Cze=x.createContext({}),J_=()=>x.useContext(Cze);function qze({children:e,...t}){const n=x.useRef();return x.useEffect(()=>{n.current&&(n.current.textContent=n.current.textContent)},[e]),a.jsx("div",{hidden:!0,...t,ref:n,children:e})}const Rze=x.forwardRef(({nestingLevel:e,blockCount:t,clientId:n,...o},r)=>{const{insertedBlock:s,setInsertedBlock:i}=J_(),c=vt(Rze),l=G(b=>{const{getTemplateLock:h,isZoomOut:g}=ct(b(Q));return!!h(n)||g()},[n]),u=Fd({clientId:n,context:"list-view"}),d=Fd({clientId:s?.clientId,context:"list-view"});if(x.useEffect(()=>{d?.length&&Yt(xe(m("%s block inserted"),d),"assertive")},[d]),l)return null;const p=`list-view-appender__${c}`,f=xe(m("Append to %1$s block at position %2$d, Level %3$d"),u,t+1,e);return a.jsxs("div",{className:"list-view-appender",children:[a.jsx(xm,{ref:r,rootClientId:n,position:"bottom right",isAppender:!0,selectBlockOnInsert:!1,shouldDirectInsert:!1,__experimentalIsQuick:!0,...o,toggleProps:{"aria-describedby":p},onSelectOrClose:b=>{b?.clientId&&i(b)}}),a.jsx(qze,{id:p,children:f})]})}),m8t=fxt(z2e),g8t=x.forwardRef(({isDragged:e,isSelected:t,position:n,level:o,rowCount:r,children:s,className:i,path:c,...l},u)=>{const d=pme({clientId:l["data-block"],enableAnimation:!0,triggerAnimationOnChange:c}),p=xn([u,d]);return a.jsx(m8t,{ref:p,className:oe("block-editor-list-view-leaf",i),level:o,positionInSet:n,setSize:r,isExpanded:void 0,...l,children:s})});function M8t({isSelected:e,selectedClientIds:t,rowItemRef:n}){const o=t.length===1;x.useLayoutEffect(()=>{if(!e||!o||!n.current)return;const r=ps(n.current),{ownerDocument:s}=n.current;if(r===s.body||r===s.documentElement||!r)return;const c=n.current.getBoundingClientRect(),l=r.getBoundingClientRect();(c.top<l.top||c.bottom>l.bottom)&&n.current.scrollIntoView()},[e,o,n])}function Tze({onClick:e}){return a.jsx("span",{className:"block-editor-list-view__expander",onClick:t=>e(t,{forceToggle:!0}),"aria-hidden":"true","data-testid":"list-view-expander",children:a.jsx(wn,{icon:jt()?Ww:Af})})}const z8t=3;function Eze(e){if(e.name==="core/image"&&e.attributes?.url)return{url:e.attributes.url,alt:e.attributes.alt,clientId:e.clientId}}function O8t(e){if(e.name!=="core/gallery"||!e.innerBlocks)return[];const t=[];for(const n of e.innerBlocks){const o=Eze(n);if(o&&t.push(o),t.length>=z8t)return t}return t}function y8t(e,t){const n=Eze(e);return n?[n]:t?[]:O8t(e)}function A8t({clientId:e,isExpanded:t}){const{block:n}=G(r=>({block:r(Q).getBlock(e)}),[e]);return x.useMemo(()=>y8t(n,t),[n,t])}const{Badge:v8t}=ct(tr);function x8t({className:e,block:{clientId:t},onClick:n,onContextMenu:o,onMouseDown:r,onToggleExpanded:s,tabIndex:i,onFocus:c,onDragStart:l,onDragEnd:u,draggable:d,isExpanded:p,ariaDescribedBy:f},b){const h=Ii(t),g=Fd({clientId:t,context:"list-view"}),{isLocked:z}=km(t),{isContentOnly:A}=G(S=>({isContentOnly:S(Q).getBlockEditingMode(t)==="contentOnly"}),[t]),_=z&&!A,v=h?.positionType==="sticky",M=A8t({clientId:t,isExpanded:p}),y=S=>{S.dataTransfer.clearData(),l?.(S)};function k(S){(S.keyCode===Gr||S.keyCode===VN)&&n(S)}return a.jsxs("a",{className:oe("block-editor-list-view-block-select-button",e),onClick:n,onContextMenu:o,onKeyDown:k,onMouseDown:r,ref:b,tabIndex:i,onFocus:c,onDragStart:y,onDragEnd:u,draggable:d,href:`#block-${t}`,"aria-describedby":f,"aria-expanded":p,children:[a.jsx(Tze,{onClick:s}),a.jsx(Zn,{icon:h?.icon,showColors:!0,context:"list-view"}),a.jsxs(Ot,{alignment:"center",className:"block-editor-list-view-block-select-button__label-wrapper",justify:"flex-start",spacing:1,children:[a.jsx("span",{className:"block-editor-list-view-block-select-button__title",children:a.jsx(zs,{ellipsizeMode:"auto",children:g})}),h?.anchor&&a.jsx("span",{className:"block-editor-list-view-block-select-button__anchor-wrapper",children:a.jsx(v8t,{className:"block-editor-list-view-block-select-button__anchor",children:h.anchor})}),v&&a.jsx("span",{className:"block-editor-list-view-block-select-button__sticky",children:a.jsx(wn,{icon:yQe})}),M.length?a.jsx("span",{className:"block-editor-list-view-block-select-button__images","aria-hidden":!0,children:M.map((S,C)=>a.jsx("span",{className:"block-editor-list-view-block-select-button__image",style:{backgroundImage:`url(${S.url})`,zIndex:M.length-C}},S.clientId))}):null,_&&a.jsx("span",{className:"block-editor-list-view-block-select-button__lock",children:a.jsx(wn,{icon:bde})})]})]})}const w8t=x.forwardRef(x8t),_8t=x.forwardRef(({onClick:e,onToggleExpanded:t,block:n,isSelected:o,position:r,siblingBlockCount:s,level:i,isExpanded:c,selectedClientIds:l,...u},d)=>{const{clientId:p}=n,{AdditionalBlockContent:f,insertedBlock:b,setInsertedBlock:h}=J_(),g=l.includes(p)?l:[p];return a.jsxs(a.Fragment,{children:[f&&a.jsx(f,{block:n,insertedBlock:b,setInsertedBlock:h}),a.jsx(Vge,{appendToOwnerDocument:!0,clientIds:g,cloneClassname:"block-editor-list-view-draggable-chip",children:({draggable:z,onDragStart:A,onDragEnd:_})=>a.jsx(w8t,{ref:d,className:"block-editor-list-view-block-contents",block:n,onClick:e,onToggleExpanded:t,isSelected:o,position:r,siblingBlockCount:s,level:i,draggable:z,onDragStart:A,onDragEnd:_,isExpanded:c,...u})})]})}),k8t=(e,t,n)=>xe(m("Block %1$d of %2$d, Level %3$d."),e,t,n),S8t=(e,t)=>[e?.positionLabel?`${xe(m("Position: %s"),e.positionLabel)}.`:void 0,t?m("This block is locked."):void 0].filter(Boolean).join(" "),C8t=(e,t)=>Array.isArray(t)&&t.length?t.indexOf(e)!==-1:t===e;function q8t(e,t,n,o){const r=[...n,e],s=[...o,t],i=Math.min(r.length,s.length)-1,c=r[i],l=s[i];return{start:c,end:l}}function fI(e,t){const n=()=>{const r=t?.querySelector(`[role=row][data-block="${e}"]`);return r?Xr.focusable.find(r)[0]:null};let o=n();o?o.focus():window.requestAnimationFrame(()=>{o=n(),o&&o.focus()})}function R8t({blockIndexes:e,blockDropTargetIndex:t,blockDropPosition:n,clientId:o,firstDraggedBlockIndex:r,isDragged:s}){let i,c,l;if(!s){c=!1;const u=e[o];l=u>r,t!=null&&r!==void 0?u!==void 0&&(u>=r&&u<t?i="up":u<r&&u>=t?i="down":i="normal",c=typeof t=="number"&&t-1===u&&n==="inside"):t===null&&r!==void 0?u!==void 0&&u>=r?i="up":i="normal":t!=null&&r===void 0?u!==void 0&&(u<t?i="normal":i="down"):t===null&&(i="normal")}return{displacement:i,isNesting:c,isAfterDraggedBlocks:l}}function Wze({block:{clientId:e},displacement:t,isAfterDraggedBlocks:n,isDragged:o,isNesting:r,isSelected:s,isBranchSelected:i,selectBlock:c,position:l,level:u,rowCount:d,siblingBlockCount:p,showBlockMovers:f,path:b,isExpanded:h,selectedClientIds:g,isSyncedBranch:z}){const A=x.useRef(null),_=x.useRef(null),v=x.useRef(null),[M,y]=x.useState(!1),[k,S]=x.useState(),{isLocked:C,canEdit:R,canMove:T}=km(e),E=s&&g[0]===e,B=s&&g[g.length-1]===e,{toggleBlockHighlight:N,duplicateBlocks:j,multiSelect:I,replaceBlocks:P,removeBlocks:$,insertAfterBlock:F,insertBeforeBlock:X,setOpenedBlockSettingsMenu:Z}=ct(Oe(Q)),{canInsertBlockType:V,getSelectedBlockClientIds:ee,getPreviousBlockClientId:te,getBlockRootClientId:J,getBlockOrder:ue,getBlockParents:ce,getBlocksByClientId:me,canRemoveBlocks:de,isGroupable:Ae}=G(Q),{getGroupingBlockName:ye}=G(kt),Ne=Ii(e),{block:je,blockName:ie,allowRightClickOverrides:we}=G(Rt=>{const{getBlock:Qe,getBlockName:xt,getSettings:Gt}=Rt(Q);return{block:Qe(e),blockName:xt(e),allowRightClickOverrides:Gt().allowRightClickOverrides}},[e]),re=Et(ie,"__experimentalToolbar",!0),ke=`list-view-block-select-button__description-${vt(Wze)}`,{expand:Se,collapse:se,collapseAll:L,BlockSettingsMenu:U,listViewInstanceId:ne,expandedState:ve,setInsertedBlock:qe,treeGridElementRef:Pe,rootClientId:rt}=J_(),qt=E_();function wt(){const Rt=ee(),Qe=Rt.includes(e),xt=Qe?Rt[0]:e,Gt=J(xt);return{blocksToUpdate:Qe?Rt:[e],firstBlockClientId:xt,firstBlockRootClientId:Gt,selectedBlockClientIds:Rt}}async function Bt(Rt){if(Rt.defaultPrevented||Rt.target.closest("[role=dialog]"))return;const Qe=[Mc,Ol].includes(Rt.keyCode);if(qt("core/block-editor/unselect",Rt)&&g.length>0)Rt.stopPropagation(),Rt.preventDefault(),c(Rt,void 0);else if(Qe||qt("core/block-editor/remove",Rt)){var xt;const{blocksToUpdate:Gt,firstBlockClientId:On,firstBlockRootClientId:$n,selectedBlockClientIds:Jn}=wt();if(!de(Gt))return;let pr=(xt=te(On))!==null&&xt!==void 0?xt:$n;$(Gt,!1);const O0=Jn.length>0&&ee().length===0;pr||(pr=ue()[0]),fe(pr,O0)}else if(qt("core/block-editor/duplicate",Rt)){Rt.preventDefault();const{blocksToUpdate:Gt,firstBlockRootClientId:On}=wt();if(me(Gt).every(Jn=>!!Jn&&Et(Jn.name,"multiple",!0)&&V(Jn.name,On))){const Jn=await j(Gt,!1);Jn?.length&&fe(Jn[0],!1)}}else if(qt("core/block-editor/insert-before",Rt)){Rt.preventDefault();const{blocksToUpdate:Gt}=wt();await X(Gt[0]);const On=ee();Z(void 0),fe(On[0],!1)}else if(qt("core/block-editor/insert-after",Rt)){Rt.preventDefault();const{blocksToUpdate:Gt}=wt();await F(Gt.at(-1));const On=ee();Z(void 0),fe(On[0],!1)}else if(qt("core/block-editor/select-all",Rt)){Rt.preventDefault();const{firstBlockRootClientId:Gt,selectedBlockClientIds:On}=wt(),$n=ue(Gt);if(!$n.length)return;if(ds(On,$n)&&Gt&&Gt!==rt){fe(Gt,!0);return}I($n[0],$n[$n.length-1],null)}else if(qt("core/block-editor/collapse-list-view",Rt)){Rt.preventDefault();const{firstBlockClientId:Gt}=wt(),On=ce(Gt,!1);L(),Se(On)}else if(qt("core/block-editor/group",Rt)){const{blocksToUpdate:Gt}=wt();if(Gt.length>1&&Ae(Gt)){Rt.preventDefault();const On=me(Gt),$n=ye(),Jn=Kr(On,$n);P(Gt,Jn),Yt(m("Selected blocks are grouped."));const pr=ee();Z(void 0),fe(pr[0],!1)}}}const ae=x.useCallback(()=>{y(!0),N(e,!0)},[e,y,N]),H=x.useCallback(()=>{y(!1),N(e,!1)},[e,y,N]),Y=x.useCallback(Rt=>{c(Rt,e),Rt.preventDefault()},[e,c]),fe=x.useCallback((Rt,Qe)=>{Qe&&c(void 0,Rt,null,null),fI(Rt,Pe?.current)},[c,Pe]),Re=x.useCallback(Rt=>{Rt.preventDefault(),Rt.stopPropagation(),h===!0?se(e):h===!1&&Se(e)},[e,Se,se,h]),be=x.useCallback(Rt=>{re&&we&&(v.current?.click(),S(new window.DOMRect(Rt.clientX,Rt.clientY,0,0)),Rt.preventDefault())},[we,v,re]),ze=x.useCallback(Rt=>{we&&Rt.button===2&&Rt.preventDefault()},[we]),nt=x.useMemo(()=>{const{ownerDocument:Rt}=_?.current||{};if(!(!k||!Rt))return{ownerDocument:Rt,getBoundingClientRect(){return k}}},[k]),Mt=x.useCallback(()=>{S(void 0)},[S]);if(M8t({isSelected:s,rowItemRef:_,selectedClientIds:g}),!je)return null;const ot=k8t(l,p,u),Ue=S8t(Ne,C),yt=p>0,fn=f&&yt,Pn=oe("block-editor-list-view-block__mover-cell",{"is-visible":M||s}),Mo=oe("block-editor-list-view-block__menu-cell",{"is-visible":M||E});let rr;fn?rr=2:re||(rr=3);const Jo=oe({"is-selected":s,"is-first-selected":E,"is-last-selected":B,"is-branch-selected":i,"is-synced-branch":z,"is-dragging":o,"has-single-cell":!re,"is-synced":Ne?.isSynced,"is-draggable":T,"is-displacement-normal":t==="normal","is-displacement-up":t==="up","is-displacement-down":t==="down","is-after-dragged-blocks":n,"is-nesting":r}),To=g.includes(e)?g:[e],Br=s&&g.length===1;return a.jsxs(g8t,{className:Jo,isDragged:o,onKeyDown:Bt,onMouseEnter:ae,onMouseLeave:H,onFocus:ae,onBlur:H,level:u,position:l,rowCount:d,path:b,id:`list-view-${ne}-block-${e}`,"data-block":e,"data-expanded":R?h:void 0,ref:_,children:[a.jsx(f4,{className:"block-editor-list-view-block__contents-cell",colSpan:rr,ref:A,"aria-selected":!!s,children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsxs("div",{className:"block-editor-list-view-block__contents-container",children:[a.jsx(_8t,{block:je,onClick:Y,onContextMenu:be,onMouseDown:ze,onToggleExpanded:Re,isSelected:s,position:l,siblingBlockCount:p,level:u,ref:Rt,tabIndex:Br?0:Qe,onFocus:xt,isExpanded:R?h:void 0,selectedClientIds:g,ariaDescribedBy:ke}),a.jsx(qze,{id:ke,children:[ot,Ue].filter(Boolean).join(" ")})]})}),fn&&a.jsx(a.Fragment,{children:a.jsxs(f4,{className:Pn,withoutGridItem:!0,children:[a.jsx(dW,{children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsx(Hge,{orientation:"vertical",clientIds:[e],ref:Rt,tabIndex:Qe,onFocus:xt})}),a.jsx(dW,{children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsx(Uge,{orientation:"vertical",clientIds:[e],ref:Rt,tabIndex:Qe,onFocus:xt})})]})}),re&&U&&a.jsx(f4,{className:Mo,"aria-selected":!!s,ref:v,children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsx(U,{clientIds:To,block:je,icon:Wc,label:m("Options"),popoverProps:{anchor:nt},toggleProps:{ref:Rt,className:"block-editor-list-view-block__menu",tabIndex:Qe,onClick:Mt,onFocus:xt},disableOpenOnArrowDown:!0,expand:Se,expandedState:ve,setInsertedBlock:qe,__experimentalSelectBlock:fe})})]})}const T8t=x.memo(Wze);function Nze(e,t,n,o){var r;return n?.includes(e.clientId)?0:((r=t[e.clientId])!==null&&r!==void 0?r:o)?1+e.innerBlocks.reduce(E8t(t,n,o),0):1}const E8t=(e,t,n)=>(o,r)=>{var s;return t?.includes(r.clientId)?o:((s=e[r.clientId])!==null&&s!==void 0?s:n)&&r.innerBlocks.length>0?o+Nze(r,e,t,n):o+1},W8t=()=>{};function Bze(e){const{blocks:t,selectBlock:n=W8t,showBlockMovers:o,selectedClientIds:r,level:s=1,path:i="",isBranchSelected:c=!1,listPosition:l=0,fixedListWindow:u,isExpanded:d,parentId:p,shouldShowInnerBlocks:f=!0,isSyncedBranch:b=!1,showAppender:h=!0}=e,g=Ii(p),z=b||!!g?.isSynced,A=G(N=>p?N(Q).canEditBlock(p):!0,[p]),{blockDropPosition:_,blockDropTargetIndex:v,firstDraggedBlockIndex:M,blockIndexes:y,expandedState:k,draggedClientIds:S}=J_(),C=x.useRef();if(!A)return null;const R=h&&s===1,T=t.filter(Boolean),E=T.length,B=R?E+1:E;return C.current=l,a.jsxs(a.Fragment,{children:[T.map((N,j)=>{var I;const{clientId:P,innerBlocks:$}=N;j>0&&(C.current+=Nze(T[j-1],k,S,d));const F=!!S?.includes(P),{displacement:X,isAfterDraggedBlocks:Z,isNesting:V}=R8t({blockIndexes:y,blockDropTargetIndex:v,blockDropPosition:_,clientId:P,firstDraggedBlockIndex:M,isDragged:F}),{itemInView:ee}=u,te=ee(C.current),J=j+1,ue=i.length>0?`${i}_${J}`:`${J}`,ce=!!$?.length,me=ce&&f?(I=k[P])!==null&&I!==void 0?I:d:void 0,de=C8t(P,r),Ae=c||de&&ce,ye=F||te||de&&P===r[0]||j===0||j===E-1;return a.jsxs(B5,{value:!de,children:[ye&&a.jsx(T8t,{block:N,selectBlock:n,isSelected:de,isBranchSelected:Ae,isDragged:F,level:s,position:J,rowCount:B,siblingBlockCount:E,showBlockMovers:o,path:ue,isExpanded:F?!1:me,listPosition:C.current,selectedClientIds:r,isSyncedBranch:z,displacement:X,isAfterDraggedBlocks:Z,isNesting:V}),!ye&&a.jsx("tr",{children:a.jsx("td",{className:"block-editor-list-view-placeholder"})}),ce&&me&&!F&&a.jsx(Bze,{parentId:P,blocks:$,selectBlock:n,showBlockMovers:o,level:s+1,path:ue,listPosition:C.current+1,fixedListWindow:u,isBranchSelected:Ae,selectedClientIds:r,isExpanded:d,isSyncedBranch:z})]},P)}),R&&a.jsx(z2e,{level:s,setSize:B,positionInSet:B,isExpanded:!0,children:a.jsx(f4,{children:N=>a.jsx(Rze,{clientId:p,nestingLevel:s,blockCount:E,...N})})})]})}const N8t=x.memo(Bze);function B8t({draggedBlockClientId:e,listViewRef:t,blockDropTarget:n}){const o=Ii(e),r=Fd({clientId:e,context:"list-view"}),{rootClientId:s,clientId:i,dropPosition:c}=n||{},[l,u]=x.useMemo(()=>{if(!t.current)return[];const _=s?t.current.querySelector(`[data-block="${s}"]`):void 0,v=i?t.current.querySelector(`[data-block="${i}"]`):void 0;return[_,v]},[t,s,i]),d=u||l,p=jt(),f=x.useCallback((_,v)=>{if(!d)return 0;let M=d.offsetWidth;const y=ps(d,"horizontal"),k=d.ownerDocument,S=y===k.body||y===k.documentElement;if(y&&!S){const C=y.getBoundingClientRect(),R=jt()?C.right-_.right:_.left-C.left,T=y.clientWidth;if(T<M+R&&(M=T-R),!p&&_.left+v<C.left)return M-=C.left-_.left,M;if(p&&_.right-v>C.right)return M-=_.right-C.right,M}return M-v},[p,d]),b=x.useMemo(()=>{if(!d)return{};const _=d.getBoundingClientRect();return{width:f(_,0)}},[f,d]),h=x.useMemo(()=>{if(!d)return{};const _=ps(d),v=d.ownerDocument,M=_===v.body||_===v.documentElement;if(_&&!M){const y=_.getBoundingClientRect(),k=d.getBoundingClientRect(),S=p?y.right-k.right:k.left-y.left;if(!p&&y.left>k.left)return{transform:`translateX( ${S}px )`};if(p&&y.right<k.right)return{transform:`translateX( ${S*-1}px )`}}return{}},[p,d]),g=x.useMemo(()=>{if(!l)return 1;const _=parseInt(l.getAttribute("aria-level"),10);return _?_+1:1},[l]),z=x.useMemo(()=>d?d.classList.contains("is-branch-selected"):!1,[d]),A=x.useMemo(()=>{if(!(!d||!(c==="top"||c==="bottom"||c==="inside")))return{contextElement:d,getBoundingClientRect(){const v=d.getBoundingClientRect();let M=v.left,y=0;const k=ps(d,"horizontal"),S=d.ownerDocument,C=k===S.body||k===S.documentElement;if(k&&!C){const E=k.getBoundingClientRect(),B=p?k.offsetWidth-k.clientWidth:0;M<E.left+B&&(M=E.left+B)}c==="top"?y=v.top-v.height*2:y=v.top;const R=f(v,0),T=v.height;return new window.DOMRect(M,y,R,T)}}},[d,c,f,p]);return d?a.jsx(Io,{animate:!1,anchor:A,focusOnMount:!1,className:"block-editor-list-view-drop-indicator--preview",variant:"unstyled",flip:!1,resize:!0,children:a.jsx("div",{style:b,className:oe("block-editor-list-view-drop-indicator__line",{"block-editor-list-view-drop-indicator__line--darker":z}),children:a.jsxs("div",{className:"block-editor-list-view-leaf","aria-level":g,children:[a.jsxs("div",{className:oe("block-editor-list-view-block-select-button","block-editor-list-view-block-contents"),style:h,children:[a.jsx(Tze,{onClick:()=>{}}),a.jsx(Zn,{icon:o?.icon,showColors:!0,context:"list-view"}),a.jsx(Ot,{alignment:"center",className:"block-editor-list-view-block-select-button__label-wrapper",justify:"flex-start",spacing:1,children:a.jsx("span",{className:"block-editor-list-view-block-select-button__title",children:a.jsx(zs,{ellipsizeMode:"auto",children:r})})})]}),a.jsx("div",{className:"block-editor-list-view-block__menu-cell"})]})})}):null}function L8t(){const{clearSelectedBlock:e,multiSelect:t,selectBlock:n}=Oe(Q),{getBlockName:o,getBlockParents:r,getBlockSelectionStart:s,getSelectedBlockClientIds:i,hasMultiSelection:c,hasSelectedBlock:l}=G(Q),{getBlockType:u}=G(kt);return{updateBlockSelection:x.useCallback(async(p,f,b,h)=>{if(!p?.shiftKey&&p?.keyCode!==gd){n(f,h);return}p.preventDefault();const g=p.type==="keydown"&&p.keyCode===gd,z=p.type==="keydown"&&(p.keyCode===cc||p.keyCode===Ps||p.keyCode===S2||p.keyCode===FM);if(!z&&!l()&&!c()){n(f,null);return}const A=i(),_=[...r(f),f];if((g||z&&!A.some(k=>_.includes(k)))&&await e(),!g){let k=s(),S=f;z&&(!l()&&!c()&&(k=f),b&&(S=b));const C=r(k),R=r(S),{start:T,end:E}=q8t(k,S,C,R);await t(T,E,null)}const v=i();if((p.keyCode===S2||p.keyCode===FM)&&v.length>1)return;const M=A.filter(k=>!v.includes(k));let y;if(M.length===1){const k=u(o(M[0]))?.title;k&&(y=xe(m("%s deselected."),k))}else M.length>1&&(y=xe(m("%s blocks deselected."),M.length));y&&Yt(y,"assertive")},[e,o,u,r,s,i,c,l,t,n])}}function P8t(e){return x.useMemo(()=>{const n={};let o=0;const r=s=>{s.forEach(i=>{n[i.clientId]=o,o++,i.innerBlocks.length>0&&r(i.innerBlocks)})};return r(e),n},[e])}function j8t({blocks:e,rootClientId:t}){return G(n=>{const{getDraggedBlockClientIds:o,getSelectedBlockClientIds:r,getEnabledClientIdsTree:s}=ct(n(Q));return{selectedClientIds:r(),draggedClientIds:o(),clientIdsTree:e??s(t)}},[e,t])}function I8t({collapseAll:e,expand:t}){const{expandedBlock:n,getBlockParents:o}=G(r=>{const{getBlockParents:s,getExpandedBlock:i}=ct(r(Q));return{expandedBlock:i(),getBlockParents:s}},[]);x.useEffect(()=>{if(n){const r=o(n,!1);e(),t(r)}},[e,t,n,o])}const zl=24;function D8t(e,t,n=1,o=!1){const r=o?t.right-n*zl:t.left+n*zl;return o?e.x>r:e.x<r}function F8t(e,t,n=1,o=!1){const r=o?t.right-n*zl:t.left+n*zl,s=o?r-e.x:e.x-r,i=Math.round(s/zl);return Math.abs(i)}function $8t(e,t){const n=[];let o=e;for(;o;)n.push({...o}),o=t.find(r=>r.clientId===o.rootClientId);return n}function Lze(e,t){const n=e[t+1];return n&&n.isDraggedBlock?Lze(e,t+1):n}function V8t(e,t,n=1,o=!1){const r=o?t.right-n*zl:t.left+n*zl;return(o?e.x<r-zl:e.x>r+zl)&&e.y<t.bottom}const H8t=["top","bottom"];function U8t(e,t,n=!1){let o,r,s,i,c;for(let p=0;p<e.length;p++){const f=e[p];if(f.isDraggedBlock)continue;const b=f.element.getBoundingClientRect(),[h,g]=pM(t,b,H8t),z=qge(t,b);if(s===void 0||h<s||z){s=h;const A=e.indexOf(f),_=e[A-1];if(g==="top"&&_&&_.rootClientId===f.rootClientId&&!_.isDraggedBlock?(r=_,o="bottom",i=_.element.getBoundingClientRect(),c=A-1):(r=f,o=g,i=b,c=A),z)break}}if(!r)return;const l=$8t(r,e),u=o==="bottom";if(u&&r.canInsertDraggedBlocksAsChild&&(r.innerBlockCount>0&&r.isExpanded||V8t(t,i,l.length,n))){const p=r.isExpanded?0:r.innerBlockCount||0;return{rootClientId:r.clientId,clientId:r.clientId,blockIndex:p,dropPosition:"inside"}}if(u&&r.rootClientId&&D8t(t,i,l.length,n)){const p=Lze(e,c),f=r.nestingLevel,b=p?p.nestingLevel:1;if(f&&b){const h=F8t(t,i,l.length,n),g=Math.max(Math.min(h,f-b),0);if(l[g]){let z=r.blockIndex;if(l[g].nestingLevel===p?.nestingLevel)z=p?.blockIndex;else for(let A=c;A>=0;A--){const _=e[A];if(_.rootClientId===l[g].rootClientId){z=_.blockIndex+1;break}}return{rootClientId:l[g].rootClientId,clientId:r.clientId,blockIndex:z,dropPosition:o}}}}if(!r.canInsertDraggedBlocksAsSibling)return;const d=u?1:0;return{rootClientId:r.rootClientId,clientId:r.clientId,blockIndex:r.blockIndex+d,dropPosition:o}}const X8t={leading:!1,trailing:!0};function G8t({dropZoneElement:e,expandedState:t,setExpandedState:n}){const{getBlockRootClientId:o,getBlockIndex:r,getBlockCount:s,getDraggedBlockClientIds:i,canInsertBlocks:c}=G(Q),[l,u]=x.useState(),{rootClientId:d,blockIndex:p}=l||{},f=Cge(d,p),b=jt(),h=Fr(d),g=x.useCallback((M,y)=>{const{rootClientId:k}=y||{};k&&y?.dropPosition==="inside"&&!M[k]&&n({type:"expand",clientIds:[k]})},[n]),z=kE(g,500,X8t);x.useEffect(()=>{if(l?.dropPosition!=="inside"||h!==l?.rootClientId){z.cancel();return}z(t,l)},[t,h,l,z]);const A=i(),_=kE(x.useCallback((M,y)=>{const k={x:M.clientX,y:M.clientY},S=!!A?.length,R=Array.from(y.querySelectorAll("[data-block]")).map(E=>{const B=E.dataset.block,N=E.dataset.expanded==="true",j=E.classList.contains("is-dragging"),I=parseInt(E.getAttribute("aria-level"),10),P=o(B);return{clientId:B,isExpanded:N,rootClientId:P,blockIndex:r(B),element:E,nestingLevel:I||void 0,isDraggedBlock:S?j:!1,innerBlockCount:s(B),canInsertDraggedBlocksAsSibling:S?c(A,P):!0,canInsertDraggedBlocksAsChild:S?c(A,B):!0}}),T=U8t(R,k,b);T&&u(T)},[c,A,s,r,o,b]),50);return{ref:W5({dropZoneElement:e,onDrop(M){_.cancel(),l&&f(M),u(void 0)},onDragLeave(){_.cancel(),u(null)},onDragOver(M){_(M,M.currentTarget)},onDragEnd(){_.cancel(),u(void 0)}}),target:l}}function K8t({firstSelectedBlockClientId:e,setExpandedState:t}){const[n,o]=x.useState(null),{selectedBlockParentClientIds:r}=G(s=>{const{getBlockParents:i}=s(Q);return{selectedBlockParentClientIds:i(e,!1)}},[e]);return x.useEffect(()=>{n!==e&&r?.length&&t({type:"expand",clientIds:r})},[e,r,n,t]),{setSelectedTreeId:o}}function Y8t({selectBlock:e}){const t=Fn(),{getBlockOrder:n,getBlockRootClientId:o,getBlocksByClientId:r,getPreviousBlockClientId:s,getSelectedBlockClientIds:i,getSettings:c,canInsertBlockType:l,canRemoveBlocks:u}=G(Q),{flashBlock:d,removeBlocks:p,replaceBlocks:f,insertBlocks:b}=Oe(Q),h=W7();return Mn(g=>{function z(v,M){M&&e(void 0,v,null,null),fI(v,g)}function A(v){const M=i(),y=M.includes(v),k=y?M[0]:v,S=o(k);return{blocksToUpdate:y?M:[v],firstBlockClientId:k,firstBlockRootClientId:S,originallySelectedBlockClientIds:M}}function _(v){if(v.defaultPrevented||!g.contains(v.target.ownerDocument.activeElement))return;const y=v.target.ownerDocument.activeElement?.closest("[role=row]")?.dataset?.block;if(!y)return;const{blocksToUpdate:k,firstBlockClientId:S,firstBlockRootClientId:C,originallySelectedBlockClientIds:R}=A(y);if(k.length!==0){if(v.preventDefault(),v.type==="copy"||v.type==="cut"){k.length===1&&d(k[0]),h(v.type,k);const E=r(k);qme(v,E,t)}if(v.type==="cut"){var T;if(!u(k))return;let E=(T=s(S))!==null&&T!==void 0?T:C;p(k,!1);const B=R.length>0&&i().length===0;E||(E=n()[0]),z(E,B)}else if(v.type==="paste"){const{__experimentalCanUserUseUnfilteredHTML:E}=c(),B=owt(v,E);if(k.length===1){const[N]=k;if(B.every(j=>l(j.name,N))){b(B,void 0,N),z(B[0]?.clientId,!1);return}}f(k,B,B.length-1,-1),z(B[0]?.clientId,!1)}}}return g.ownerDocument.addEventListener("copy",_),g.ownerDocument.addEventListener("cut",_),g.ownerDocument.addEventListener("paste",_),()=>{g.ownerDocument.removeEventListener("copy",_),g.ownerDocument.removeEventListener("cut",_),g.ownerDocument.removeEventListener("paste",_)}},[])}const Z8t=(e,t)=>t.type==="clear"?{}:Array.isArray(t.clientIds)?{...e,...t.clientIds.reduce((n,o)=>({...n,[o]:t.type==="expand"}),{})}:e,ste=32;function Pze({id:e,blocks:t,dropZoneElement:n,showBlockMovers:o=!1,isExpanded:r=!1,showAppender:s=!1,blockSettingsMenu:i=iMe,rootClientId:c,description:l,onSelect:u,additionalBlockContent:d},p){t&&Ke("`blocks` property in `wp.blockEditor.__experimentalListView`",{since:"6.3",alternative:"`rootClientId` property"});const f=vt(Pze),{clientIdsTree:b,draggedClientIds:h,selectedClientIds:g}=j8t({blocks:t,rootClientId:c}),z=P8t(b),{getBlock:A}=G(Q),{visibleBlockCount:_}=G(de=>{const{getGlobalBlockCount:Ae,getClientIdsOfDescendants:ye}=de(Q),Ne=h?.length>0?ye(h).length+1:0;return{visibleBlockCount:Ae()-Ne}},[h]),{updateBlockSelection:v}=L8t(),[M,y]=x.useReducer(Z8t,{}),[k,S]=x.useState(null),{setSelectedTreeId:C}=K8t({firstSelectedBlockClientId:g[0],setExpandedState:y}),R=x.useCallback((de,Ae,ye)=>{v(de,Ae,null,ye),C(Ae),u&&u(A(Ae))},[C,v,u,A]),{ref:T,target:E}=G8t({dropZoneElement:n,expandedState:M,setExpandedState:y}),B=x.useRef(),N=Y8t({selectBlock:R}),j=xn([N,B,T,p]);x.useEffect(()=>{g?.length&&fI(g[0],B?.current)},[]);const I=x.useCallback(de=>{if(!de)return;const Ae=Array.isArray(de)?de:[de];y({type:"expand",clientIds:Ae})},[y]),P=x.useCallback(de=>{de&&y({type:"collapse",clientIds:[de]})},[y]),$=x.useCallback(()=>{y({type:"clear"})},[y]),F=x.useCallback(de=>{I(de?.dataset?.block)},[I]),X=x.useCallback(de=>{P(de?.dataset?.block)},[P]),Z=x.useCallback((de,Ae,ye)=>{de.shiftKey&&v(de,Ae?.dataset?.block,ye?.dataset?.block)},[v]);I8t({collapseAll:$,expand:I});const V=h?.[0],{blockDropTargetIndex:ee,blockDropPosition:te,firstDraggedBlockIndex:J}=x.useMemo(()=>{let de,Ae;if(E?.clientId){const ye=z[E.clientId];de=ye===void 0||E?.dropPosition==="top"?ye:ye+1}else E===null&&(de=null);if(V){const ye=z[V];Ae=ye===void 0||E?.dropPosition==="top"?ye:ye+1}return{blockDropTargetIndex:de,blockDropPosition:E?.dropPosition,firstDraggedBlockIndex:Ae}},[E,z,V]),ue=x.useMemo(()=>({blockDropPosition:te,blockDropTargetIndex:ee,blockIndexes:z,draggedClientIds:h,expandedState:M,expand:I,firstDraggedBlockIndex:J,collapse:P,collapseAll:$,BlockSettingsMenu:i,listViewInstanceId:f,AdditionalBlockContent:d,insertedBlock:k,setInsertedBlock:S,treeGridElementRef:B,rootClientId:c}),[te,ee,z,h,M,I,J,P,$,i,f,d,k,S,c]),[ce]=nCe(B,ste,_,{expandedState:M,useWindowing:!0,windowOverscan:40});if(!b.length&&!s)return null;const me=l&&`block-editor-list-view-description-${f}`;return a.jsxs(B5,{value:!0,children:[a.jsx(B8t,{draggedBlockClientId:V,listViewRef:B,blockDropTarget:E}),l&&a.jsx(qn,{id:me,children:l}),a.jsx(Zht,{id:e,className:oe("block-editor-list-view-tree",{"is-dragging":h?.length>0&&ee!==void 0}),"aria-label":m("Block navigation structure"),ref:j,onCollapseRow:X,onExpandRow:F,onFocusRow:Z,applicationAriaLabel:m("Block navigation structure"),"aria-describedby":me,style:{"--wp-admin--list-view-dragged-items-height":h?.length?`${ste*(h.length-1)}px`:null},children:a.jsx(Cze.Provider,{value:ue,children:a.jsx(N8t,{blocks:b,parentId:c,selectBlock:R,showBlockMovers:o,fixedListWindow:ce,selectedClientIds:g,isExpanded:r,showAppender:s})})})]})}const jze=x.forwardRef(Pze),Q8t=x.forwardRef((e,t)=>a.jsx(jze,{ref:t,...e,showAppender:!1,rootClientId:null,onSelect:null,additionalBlockContent:null,blockSettingsMenu:void 0}));function J8t({genericPreviewBlock:e,style:t,className:n,activeStyle:o}){const r=on(e.name)?.example,s=tI(n,o,t),i=x.useMemo(()=>({...e,title:t.label||t.name,description:t.description,initialAttributes:{...e.attributes,className:s+" block-editor-block-styles__block-preview-container"},example:r}),[e,s]);return a.jsx(uge,{item:i})}const ite=()=>{};function Ize({clientId:e,onSwitch:t=ite,onHoverClassName:n=ite}){const{onSelect:o,stylesToRender:r,activeStyle:s,genericPreviewBlock:i,className:c}=nI({clientId:e,onSwitch:t}),[l,u]=x.useState(null),d=Yn("medium","<");if(!r||r.length===0)return null;const p=F1(u,250),f=h=>{o(h),n(null),u(null),p.cancel()},b=h=>{var g;if(l===h){p.cancel();return}p(h),n((g=h?.name)!==null&&g!==void 0?g:null)};return a.jsxs("div",{className:"block-editor-block-styles",children:[a.jsx("div",{className:"block-editor-block-styles__variants",children:r.map(h=>{const g=h.label||h.name;return a.jsx(Ce,{__next40pxDefaultSize:!0,className:oe("block-editor-block-styles__item",{"is-active":s.name===h.name}),variant:"secondary",label:g,onMouseEnter:()=>b(h),onFocus:()=>b(h),onMouseLeave:()=>b(null),onBlur:()=>b(null),onClick:()=>f(h),"aria-current":s.name===h.name,children:a.jsx(zs,{numberOfLines:1,className:"block-editor-block-styles__item-text",children:g})},h.name)})}),l&&!d&&a.jsx(Io,{placement:"left-start",offset:34,focusOnMount:!1,children:a.jsx("div",{className:"block-editor-block-styles__preview-panel",onMouseLeave:()=>b(null),children:a.jsx(J8t,{activeStyle:s,className:c,genericPreviewBlock:i,style:l})})})]})}const ate={0:zde,1:GZe,2:KZe,3:YZe,4:ZZe,5:QZe,6:JZe};function cte({level:e}){return ate[e]?a.jsx(qo,{icon:ate[e]}):null}const lte=[1,2,3,4,5,6],eWt={className:"block-library-heading-level-dropdown"};function Cm({options:e=lte,value:t,onChange:n}){const o=e.filter(r=>r===0||lte.includes(r)).sort((r,s)=>r-s);return a.jsx(Lc,{popoverProps:eWt,icon:a.jsx(cte,{level:t}),label:m("Change level"),controls:o.map(r=>{const s=r===t;return{icon:a.jsx(cte,{level:r}),title:r===0?m("Paragraph"):xe(m("Heading %d"),r),isActive:s,onClick(){n(r)},role:"menuitemradio"}})})}function Dze({icon:e=ou,label:t=m("Choose variation"),instructions:n=m("Select a variation to start with:"),variations:o,onSelect:r,allowSkip:s}){const i=oe("block-editor-block-variation-picker",{"has-many-variations":o.length>4});return a.jsxs(vo,{icon:e,label:t,instructions:n,className:i,children:[a.jsx("ul",{className:"block-editor-block-variation-picker__variations",role:"list","aria-label":m("Block variations"),children:o.map(c=>a.jsxs("li",{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",icon:c.icon&&c.icon.src?c.icon.src:c.icon,iconSize:48,onClick:()=>r(c),className:"block-editor-block-variation-picker__variation",label:c.description||c.title}),a.jsx("span",{className:"block-editor-block-variation-picker__variation-label",children:c.title})]},c.name))}),s&&a.jsx("div",{className:"block-editor-block-variation-picker__skip",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>r(),children:m("Skip")})})]})}function tWt({className:e,onSelectVariation:t,selectedValue:n,variations:o}){return a.jsxs("fieldset",{className:e,children:[a.jsx(qn,{as:"legend",children:m("Transform to variation")}),o.map(r=>a.jsx(Ce,{__next40pxDefaultSize:!0,size:"compact",icon:a.jsx(Zn,{icon:r.icon,showColors:!0}),isPressed:n===r.name,label:n===r.name?r.title:xe(m("Transform to %s"),r.title),onClick:()=>t(r.name),"aria-label":r.title,showTooltip:!0},r.name))]})}function nWt({className:e,onSelectVariation:t,selectedValue:n,variations:o}){const r=o.map(({name:s,title:i,description:c})=>({value:s,label:i,info:c}));return a.jsx(c0,{className:e,label:m("Transform to variation"),text:m("Transform to variation"),popoverProps:{position:"bottom center",className:`${e}__popover`},icon:nu,toggleProps:{iconPosition:"right"},children:()=>a.jsx("div",{className:`${e}__container`,children:a.jsx(Cn,{children:a.jsx(kf,{choices:r,value:n,onSelect:t})})})})}function oWt({className:e,onSelectVariation:t,selectedValue:n,variations:o}){return a.jsx("div",{className:e,children:a.jsx(Do,{label:m("Transform to variation"),value:n,hideLabelFromVision:!0,onChange:t,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:o.map(r=>a.jsx(Ma,{icon:a.jsx(Zn,{icon:r.icon,showColors:!0}),value:r.name,label:n===r.name?r.title:xe(m("Transform to %s"),r.title)},r.name))})})}function rWt({blockClientId:e}){const{updateBlockAttributes:t}=Oe(Q),{activeBlockVariation:n,variations:o,isContentOnly:r}=G(f=>{const{getActiveBlockVariation:b,getBlockVariations:h}=f(kt),{getBlockName:g,getBlockAttributes:z,getBlockEditingMode:A}=f(Q),_=e&&g(e),{hasContentRoleAttribute:v}=ct(f(kt)),M=v(_);return{activeBlockVariation:b(_,z(e)),variations:_&&h(_,"transform"),isContentOnly:A(e)==="contentOnly"&&!M}},[e]),s=n?.name,i=x.useMemo(()=>{const f=new Set;return o?(o.forEach(b=>{b.icon&&f.add(b.icon?.src||b.icon)}),f.size===o.length):!1},[o]),c=f=>{t(e,{...o.find(({name:b})=>b===f).attributes})};if(!o?.length||r)return null;const l="block-editor-block-variation-transforms",d=o.length>5?tWt:oWt,p=i?d:nWt;return a.jsx(p,{className:l,onSelectVariation:c,selectedValue:s,variations:o})}const oT={top:{icon:aQe,title:We("Align top","Block vertical alignment setting")},center:{icon:rQe,title:We("Align middle","Block vertical alignment setting")},bottom:{icon:oQe,title:We("Align bottom","Block vertical alignment setting")},stretch:{icon:iQe,title:We("Stretch to fill","Block vertical alignment setting")},"space-between":{icon:sQe,title:We("Space between","Block vertical alignment setting")}},sWt=["top","center","bottom"],iWt="top";function Fze({value:e,onChange:t,controls:n=sWt,isCollapsed:o=!0,isToolbar:r}){function s(d){return()=>t(e===d?void 0:d)}const i=oT[e],c=oT[iWt],l=r?Wn:Lc,u=r?{isCollapsed:o}:{};return a.jsx(l,{icon:i?i.icon:c.icon,label:We("Change vertical alignment","Block vertical alignment setting label"),controls:n.map(d=>({...oT[d],isActive:e===d,role:o?"menuitemradio":void 0,onClick:s(d)})),...u})}const $ze=e=>a.jsx(Fze,{...e,isToolbar:!1}),Vze=e=>a.jsx(Fze,{...e,isToolbar:!0}),aWt=Or(e=>t=>{const[n,o,r,s,i]=Un("color.palette.default","color.palette.theme","color.palette.custom","color.custom","color.defaultPalette"),c=i?[...o||[],...n||[],...r||[]]:[...o||[],...r||[]],{colors:l=c,disableCustomColors:u=!s}=t,d=l&&l.length>0||!u;return a.jsx(e,{...t,colors:l,disableCustomColors:u,hasColorsToChoose:d})},"withColorContext"),Hze=aWt(Kw);Xs([Gs,Uf]);function Jx({backgroundColor:e,fallbackBackgroundColor:t,fallbackTextColor:n,fallbackLinkColor:o,fontSize:r,isLargeText:s,textColor:i,linkColor:c,enableAlphaChecker:l=!1}){const u=e||t;if(!u)return null;const d=i||n,p=c||o;if(!d&&!p)return null;const f=[{color:d,description:m("text color")},{color:p,description:m("link color")}],b=an(u),h=b.alpha()<1,g=b.brightness(),z={level:"AA",size:s||s!==!1&&r>=24?"large":"small"};let A="",_="";for(const v of f){if(!v.color)continue;const M=an(v.color),y=M.isReadable(b,z),k=M.alpha()<1;if(!y){if(h||k)continue;A=g<M.brightness()?xe(m("This color combination may be hard for people to read. Try using a darker background color and/or a brighter %s."),v.description):xe(m("This color combination may be hard for people to read. Try using a brighter background color and/or a darker %s."),v.description),_=m("This color combination may be hard for people to read.");break}k&&l&&(A=m("Transparent text may be hard for people to read."),_=m("Transparent text may be hard for people to read."))}return A?(Yt(_),a.jsx("div",{className:"block-editor-contrast-checker",children:a.jsx(L1,{spokenMessage:null,status:"warning",isDismissible:!1,children:A})})):null}const Ud=new Date;Ud.setDate(20);Ud.setMonth(Ud.getMonth()-3);Ud.getMonth()===4&&Ud.setMonth(3);function Uze({format:e,defaultFormat:t,onChange:n}){return a.jsxs(dt,{as:"fieldset",spacing:4,className:"block-editor-date-format-picker",children:[a.jsx(qn,{as:"legend",children:m("Date format")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Default format"),help:`${m("Example:")} ${r0(t,Ud)}`,checked:!e,onChange:o=>n(o?null:t)}),e&&a.jsx(cWt,{format:e,onChange:n})]})}function cWt({format:e,onChange:t}){var n;const r=[...[...new Set(["Y-m-d",We("n/j/Y","short date format"),We("n/j/Y g:i A","short date format with time"),We("M j, Y","medium date format"),We("M j, Y g:i A","medium date format with time"),We("F j, Y","long date format"),We("M j","short date format without the year")])].map((l,u)=>({key:`suggested-${u}`,name:r0(l,Ud),format:l})),{key:"human-diff",name:c_(Ud),format:"human-diff"}],s={key:"custom",name:m("Custom"),className:"block-editor-date-format-picker__custom-format-select-control__custom-option",hint:m("Enter your own date format")},[i,c]=x.useState(()=>!!e&&!r.some(l=>l.format===e));return a.jsxs(dt,{children:[a.jsx(ob,{__next40pxDefaultSize:!0,label:m("Choose a format"),options:[...r,s],value:i?s:(n=r.find(l=>l.format===e))!==null&&n!==void 0?n:s,onChange:({selectedItem:l})=>{l===s?c(!0):(c(!1),t(l.format))}}),i&&a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Custom format"),hideLabelFromVision:!0,help:cr(m("Enter a date or time <Link>format string</Link>."),{Link:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/customize-date-and-time-format/")})}),value:e,onChange:l=>t(l)})]})}function Xze({id:e,colorPalette:t,duotonePalette:n,disableCustomColors:o,disableCustomDuotone:r,value:s,onChange:i}){let c;s==="unset"?c=a.jsx(eb,{className:"block-editor-duotone-control__unset-indicator"}):s?c=a.jsx(Zbe,{values:s}):c=a.jsx(wn,{icon:BZe});const l=m("Apply duotone filter"),d=`${vt(Xze,"duotone-control",e)}__description`;return a.jsx(so,{popoverProps:{className:"block-editor-duotone-control__popover",headerTitle:m("Duotone")},renderToggle:({isOpen:p,onToggle:f})=>{const b=h=>{!p&&h.keyCode===Ps&&(h.preventDefault(),f())};return a.jsx(Vt,{showTooltip:!0,onClick:f,"aria-haspopup":"true","aria-expanded":p,onKeyDown:b,label:l,icon:c})},renderContent:()=>a.jsxs(Cn,{label:m("Duotone"),children:[a.jsx("p",{children:m("Create a two-tone color effect without losing your original image.")}),a.jsx(Ybe,{"aria-label":l,"aria-describedby":d,colorPalette:t,duotonePalette:n,disableCustomColors:o,disableCustomDuotone:r,value:s,onChange:i})]})})}const lWt=({setting:e,children:t,panelId:n,...o})=>{const r=()=>{e.colorValue?e.onColorChange():e.gradientValue&&e.onGradientChange()};return a.jsx(tt,{hasValue:()=>!!e.colorValue||!!e.gradientValue,label:e.label,onDeselect:r,isShownByDefault:e.isShownByDefault!==void 0?e.isShownByDefault:!0,...o,className:"block-editor-tools-panel-color-gradient-settings__item",panelId:n,resetAllFilter:e.resetAllFilter,children:t})},uWt=({colorValue:e,label:t})=>a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(eb,{className:"block-editor-panel-color-gradient-settings__color-indicator",colorValue:e}),a.jsx(Tn,{className:"block-editor-panel-color-gradient-settings__color-name",title:t,children:t})]}),dWt=e=>({onToggle:t,isOpen:n})=>{const{clearable:o,colorValue:r,gradientValue:s,onColorChange:i,onGradientChange:c,label:l}=e,u=x.useRef(void 0),d={onClick:t,className:oe("block-editor-panel-color-gradient-settings__dropdown",{"is-open":n}),"aria-expanded":n,ref:u},p=()=>{r?i():s&&c()},f=r??s;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,...d,children:a.jsx(uWt,{colorValue:f,label:l})}),o&&f&&a.jsx(Ce,{__next40pxDefaultSize:!0,label:m("Reset"),className:"block-editor-panel-color-gradient-settings__reset",size:"small",icon:am,onClick:()=>{p(),n&&t(),u.current?.focus()}})]})};function ek({colors:e,disableCustomColors:t,disableCustomGradients:n,enableAlpha:o,gradients:r,settings:s,__experimentalIsRenderedInSidebar:i,...c}){let l;return i&&(l={placement:"left-start",offset:36,shift:!0}),a.jsx(a.Fragment,{children:s.map((u,d)=>{const p={clearable:!1,colorValue:u.colorValue,colors:e,disableCustomColors:t,disableCustomGradients:n,enableAlpha:o,gradientValue:u.gradientValue,gradients:r,label:u.label,onColorChange:u.onColorChange,onGradientChange:u.onGradientChange,showTitle:!1,__experimentalIsRenderedInSidebar:i,...u},f={clearable:u.clearable,label:u.label,colorValue:u.colorValue,gradientValue:u.gradientValue,onColorChange:u.onColorChange,onGradientChange:u.onGradientChange};return u&&a.jsx(lWt,{setting:u,...c,children:a.jsx(so,{popoverProps:l,className:"block-editor-tools-panel-color-gradient-settings__dropdown",renderToggle:dWt(f),renderContent:()=>a.jsx($s,{paddingSize:"none",children:a.jsx("div",{className:"block-editor-panel-color-gradient-settings__dropdown-content",children:a.jsx(fze,{...p})})})})},d)})})}const Gze=100,Kze=300,Yze={placement:"bottom-start"},pWt={crop:m("Image cropped."),rotate:m("Image rotated."),cropAndRotate:m("Image cropped and rotated.")};function fWt({crop:e,rotation:t,url:n,id:o,onSaveImage:r,onFinishEditing:s}){const{createErrorNotice:i,createSuccessNotice:c}=Oe(mt),[l,u]=x.useState(!1),d=x.useCallback(()=>{u(!1),s()},[s]),p=x.useCallback(()=>{u(!0);const f=[];if(t>0&&f.push({type:"rotate",args:{angle:t}}),(e.width<99.9||e.height<99.9)&&f.push({type:"crop",args:{left:e.x,top:e.y,width:e.width,height:e.height}}),f.length===0){u(!1),s();return}const b=f.length===1?f[0].type:"cropAndRotate";Tt({path:`/wp/v2/media/${o}/edit`,method:"POST",data:{src:n,modifiers:f}}).then(h=>{r({id:h.id,url:h.source_url}),c(pWt[b],{type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{r({id:o,url:n})}}]})}).catch(h=>{i(xe(m("Could not edit image. %s"),v1(h.message)),{id:"image-editing-error",type:"snackbar"})}).finally(()=>{u(!1),s()})},[e,t,o,n,r,i,c,s]);return x.useMemo(()=>({isInProgress:l,apply:p,cancel:d}),[l,p,d])}function bWt({url:e,naturalWidth:t,naturalHeight:n}){const[o,r]=x.useState(),[s,i]=x.useState(),[c,l]=x.useState({x:0,y:0}),[u,d]=x.useState(100),[p,f]=x.useState(0),b=t/n,[h,g]=x.useState(b),z=x.useCallback(()=>{const A=(p+90)%360;let _=b;if(p%180===90&&(_=1/b),A===0){r(),f(A),g(b),l(k=>({x:-(k.y*_),y:k.x*_}));return}function v(k){const S=document.createElement("canvas");let C=0,R=0;A%180?(S.width=k.target.height,S.height=k.target.width):(S.width=k.target.width,S.height=k.target.height),(A===90||A===180)&&(C=S.width),(A===270||A===180)&&(R=S.height);const T=S.getContext("2d");T.translate(C,R),T.rotate(A*Math.PI/180),T.drawImage(k.target,0,0),S.toBlob(E=>{r(URL.createObjectURL(E)),f(A),g(S.width/S.height),l(B=>({x:-(B.y*_),y:B.x*_}))})}const M=new window.Image;M.src=e,M.onload=v;const y=gr("media.crossOrigin",void 0,e);typeof y=="string"&&(M.crossOrigin=y)},[p,b,e]);return x.useMemo(()=>({editedUrl:o,setEditedUrl:r,crop:s,setCrop:i,position:c,setPosition:l,zoom:u,setZoom:d,rotation:p,setRotation:f,rotateClockwise:z,aspect:h,setAspect:g,defaultAspect:b}),[o,s,c,u,p,z,h,b])}const Zze=x.createContext({}),RO=()=>x.useContext(Zze);function hWt({id:e,url:t,naturalWidth:n,naturalHeight:o,onFinishEditing:r,onSaveImage:s,children:i}){const c=bWt({url:t,naturalWidth:n,naturalHeight:o}),l=fWt({id:e,url:t,onSaveImage:s,onFinishEditing:r,...c}),u=x.useMemo(()=>({...c,...l}),[c,l]);return a.jsx(Zze.Provider,{value:u,children:i})}function Ov({aspectRatios:e,isDisabled:t,label:n,onClick:o,value:r}){return a.jsx(Cn,{label:n,children:e.map(({name:s,slug:i,ratio:c})=>a.jsx(Ct,{disabled:t,onClick:()=>{o(c)},role:"menuitemradio",isSelected:c===r,icon:c===r?M0:void 0,children:s},i))})}function mWt(e){const[t,n,...o]=e.split("/").map(Number);return t<=0||n<=0||Number.isNaN(t)||Number.isNaN(n)||o.length?NaN:n?t/n:t}function rT({ratio:e,...t}){return{ratio:mWt(e),...t}}function gWt({toggleProps:e}){const{isInProgress:t,aspect:n,setAspect:o,defaultAspect:r}=RO(),[s,i,c]=Un("dimensions.aspectRatios.default","dimensions.aspectRatios.theme","dimensions.defaultAspectRatios");return a.jsx(c0,{icon:MZe,label:m("Aspect Ratio"),popoverProps:Yze,toggleProps:e,children:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsx(Ov,{isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:[{slug:"original",name:m("Original"),aspect:r},...c?s.map(rT).filter(({ratio:u})=>u===1):[]]}),i?.length>0&&a.jsx(Ov,{label:m("Theme"),isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:i}),c&&a.jsx(Ov,{label:m("Landscape"),isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:s.map(rT).filter(({ratio:u})=>u>1)}),c&&a.jsx(Ov,{label:m("Portrait"),isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:s.map(rT).filter(({ratio:u})=>u<1)})]})})}var sT,ute;function MWt(){if(ute)return sT;ute=1;var e=!1,t,n,o,r,s,i,c,l,u,d,p,f,b,h,g;function z(){if(!e){e=!0;var _=navigator.userAgent,v=/(?:MSIE.(\d+\.\d+))|(?:(?:Firefox|GranParadiso|Iceweasel).(\d+\.\d+))|(?:Opera(?:.+Version.|.)(\d+\.\d+))|(?:AppleWebKit.(\d+(?:\.\d+)?))|(?:Trident\/\d+\.\d+.*rv:(\d+\.\d+))/.exec(_),M=/(Mac OS X)|(Windows)|(Linux)/.exec(_);if(f=/\b(iPhone|iP[ao]d)/.exec(_),b=/\b(iP[ao]d)/.exec(_),d=/Android/i.exec(_),h=/FBAN\/\w+;/i.exec(_),g=/Mobile/i.exec(_),p=!!/Win64/.exec(_),v){t=v[1]?parseFloat(v[1]):v[5]?parseFloat(v[5]):NaN,t&&document&&document.documentMode&&(t=document.documentMode);var y=/(?:Trident\/(\d+.\d+))/.exec(_);i=y?parseFloat(y[1])+4:t,n=v[2]?parseFloat(v[2]):NaN,o=v[3]?parseFloat(v[3]):NaN,r=v[4]?parseFloat(v[4]):NaN,r?(v=/(?:Chrome\/(\d+\.\d+))/.exec(_),s=v&&v[1]?parseFloat(v[1]):NaN):s=NaN}else t=n=o=s=r=NaN;if(M){if(M[1]){var k=/(?:Mac OS X (\d+(?:[._]\d+)?))/.exec(_);c=k?parseFloat(k[1].replace("_",".")):!0}else c=!1;l=!!M[2],u=!!M[3]}else c=l=u=!1}}var A={ie:function(){return z()||t},ieCompatibilityMode:function(){return z()||i>t},ie64:function(){return A.ie()&&p},firefox:function(){return z()||n},opera:function(){return z()||o},webkit:function(){return z()||r},safari:function(){return A.webkit()},chrome:function(){return z()||s},windows:function(){return z()||l},osx:function(){return z()||c},linux:function(){return z()||u},iphone:function(){return z()||f},mobile:function(){return z()||f||b||d||g},nativeApp:function(){return z()||h},android:function(){return z()||d},ipad:function(){return z()||b}};return sT=A,sT}var iT,dte;function zWt(){if(dte)return iT;dte=1;var e=!!(typeof window<"u"&&window.document&&window.document.createElement),t={canUseDOM:e,canUseWorkers:typeof Worker<"u",canUseEventListeners:e&&!!(window.addEventListener||window.attachEvent),canUseViewport:e&&!!window.screen,isInWorker:!e};return iT=t,iT}var aT,pte;function OWt(){if(pte)return aT;pte=1;var e=zWt(),t;e.canUseDOM&&(t=document.implementation&&document.implementation.hasFeature&&document.implementation.hasFeature("","")!==!0);/** + `),h+="}"),c.blockStyles&&l.forEach(({selector:g,duotoneSelector:z,styles:A,fallbackGapValue:_,hasLayoutSupport:v,featureSelectors:M,styleVariationSelectors:y,skipSelectorWrapper:k})=>{if(M){const R=Xee(M,A);Object.entries(R).forEach(([T,E])=>{if(E.length){const B=E.join(";");h+=`:root :where(${T}){${B};}`}})}if(z){const R={};A?.filter&&(R.filter=A.filter,delete A.filter);const T=A2(R);T.length&&(h+=`${z}{${T.join(";")};}`)}!r&&(ll===g||v)&&(h+=yMe({style:A,selector:g,hasBlockGapSupport:n,hasFallbackGapSupport:o,fallbackGapValue:_}));const S=A2(A,g,d,e,s);if(S?.length){const R=k?g:`:root :where(${g})`;h+=`${R}{${S.join(";")};}`}A?.css&&(h+=UW(A.css,`:root :where(${g})`)),c.variationStyles&&y&&Object.entries(y).forEach(([R,T])=>{const E=A?.variations?.[R];if(E){if(M){const N=Xee(M,E);Object.entries(N).forEach(([j,I])=>{if(I.length){const P=nTt(j,T),$=I.join(";");h+=`:root :where(${P}){${$};}`}})}const B=A2(E,T,d,e);B.length&&(h+=`:root :where(${T}){${B.join(";")};}`),E?.css&&(h+=UW(E.css,`:root :where(${T})`))}});const C=Object.entries(A).filter(([R])=>R.startsWith(":"));C?.length&&C.forEach(([R,T])=>{const E=A2(T);if(!E?.length)return;const N=`:root :where(${g.split(",").map(j=>j+R).join(",")}){${E.join(";")};}`;h+=N})}),c.layoutStyles&&(h=h+".wp-site-blocks > .alignleft { float: left; margin-right: 2em; }",h=h+".wp-site-blocks > .alignright { float: right; margin-left: 2em; }",h=h+".wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }"),c.blockGap&&n){const g=us(e?.styles?.spacing?.blockGap)||"0.5em";h=h+`:root :where(.wp-site-blocks) > * { margin-block-start: ${g}; margin-block-end: 0; }`,h=h+":root :where(.wp-site-blocks) > :first-child { margin-block-start: 0; }",h=h+":root :where(.wp-site-blocks) > :last-child { margin-block-end: 0; }"}return c.presets&&u.forEach(({selector:g,presets:z})=>{(ll===g||Xx===g)&&(g="");const A=eTt(g,z);A.length>0&&(h+=A)}),h};function iTt(e,t){return aI(e,t).flatMap(({presets:o})=>tTt(o))}const aTt=(e,t)=>{if(e?.selectors&&Object.keys(e.selectors).length>0)return e.selectors;const n={root:t};return Object.entries(QRt).forEach(([o,r])=>{const s=pd(e,o);s&&(n[r]=s)}),n},G_=(e,t,n)=>{const o={};return e.forEach(r=>{const s=r.name,i=pd(r);let c=pd(r,"filter.duotone");if(!c){const b=pd(r),h=An(r,"color.__experimentalDuotone",!1);c=h&&Ws(b,h)}const l=!!r?.supports?.layout||!!r?.supports?.__experimentalLayout,u=r?.supports?.spacing?.blockGap?.__experimentalDefault,d=t(s),p={};d?.forEach(b=>{const h=n?`-${n}`:"",g=`${b.name}${h}`,z=PSt(g,i);p[g]=z});const f=aTt(r,i);o[s]={duotoneSelector:c,fallbackGapValue:u,featureSelectors:Object.keys(f).length?f:void 0,hasLayoutSupport:l,name:s,selector:i,styleVariationSelectors:d?.length?p:void 0}}),o};function cTt(e){return e.styles?.blocks?.["core/separator"]&&e.styles?.blocks?.["core/separator"].color?.background&&!e.styles?.blocks?.["core/separator"].color?.text&&!e.styles?.blocks?.["core/separator"].border?.color?{...e,styles:{...e.styles,blocks:{...e.styles.blocks,"core/separator":{...e.styles.blocks["core/separator"],color:{...e.styles.blocks["core/separator"].color,text:e.styles?.blocks["core/separator"].color.background}}}}}:e}function UW(e,t){let n="";return!e||e.trim()===""||e.split("&").forEach(r=>{if(!r||r.trim()==="")return;if(!r.includes("{"))n+=`:root :where(${t}){${r.trim()}}`;else{const i=r.replace("}","").split("{");if(i.length!==2)return;const[c,l]=i,u=c.match(/([>+~\s]*::[a-zA-Z-]+)/),d=u?u[1]:"",p=u?c.replace(d,"").trim():c.trim();let f;p===""?f=t:f=c.startsWith(" ")?Ws(t,p):BSt(t,p),n+=`:root :where(${f})${d}{${l.trim()}}`}}),n}function AMe(e={},t){const[n]=lMe("spacing.blockGap"),o=n!==null,r=!o,s=G(c=>{const{getSettings:l}=c(Q);return!!l().disableLayoutStyles}),{getBlockStyles:i}=G(kt);return x.useMemo(()=>{var c;if(!e?.styles||!e?.settings)return[];const l=cTt(e),u=G_(gs(),i),d=sTt(l,u),p=X_(l,u,o,r,s,t),f=iTt(l,u),b=[{css:d,isGlobalStyles:!0},{css:p,isGlobalStyles:!0},{css:(c=l.styles.css)!==null&&c!==void 0?c:"",isGlobalStyles:!0},{assets:f,__unstableType:"svg",isGlobalStyles:!0}];return gs().forEach(h=>{if(l.styles.blocks[h.name]?.css){const g=u[h.name].selector;b.push({css:UW(l.styles.blocks[h.name]?.css,g),isGlobalStyles:!0})}}),[b,l.settings]},[o,r,e,s,t,i])}function lTt(e=!1){const{merged:t}=x.useContext(lb);return AMe(t,e)}function uTt({__next40pxDefaultSize:e=!1,__nextHasNoMarginBottom:t=!1,value:n="",onChange:o,fontFamilies:r,className:s,...i}){var c;const[l]=Un("typography.fontFamilies");if(r||(r=l),!r||r.length===0)return null;const u=[{key:"",name:m("Default")},...r.map(({fontFamily:p,name:f})=>({key:p,name:f||p,style:{fontFamily:p}}))];t||Ke("Bottom margin styles for wp.blockEditor.FontFamilyControl",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version"}),!e&&(i.size===void 0||i.size==="default")&&Ke("36px default size for wp.blockEditor.__experimentalFontFamilyControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."});const d=(c=u.find(p=>p.key===n))!==null&&c!==void 0?c:"";return a.jsx(ob,{__next40pxDefaultSize:e,__shouldNotWarnDeprecated36pxSize:!0,label:m("Font"),value:d,onChange:({selectedItem:p})=>o(p.key),options:u,className:oe("block-editor-font-family-control",s,{"is-next-has-no-margin-bottom":t}),...i})}const dTt=(e,t)=>m(e?t?"Appearance":"Font style":"Font weight");function pTt(e){const{__next40pxDefaultSize:t=!1,onChange:n,hasFontStyles:o=!0,hasFontWeights:r=!0,fontFamilyFaces:s,value:{fontStyle:i,fontWeight:c},...l}=e,u=o||r,d=dTt(o,r),p={key:"default",name:m("Default"),style:{fontStyle:void 0,fontWeight:void 0}},{fontStyles:f,fontWeights:b,combinedStyleAndWeightOptions:h}=Bge(s),g=()=>{const y=[p];return h&&y.push(...h),y},z=()=>{const y=[p];return f.forEach(({name:k,value:S})=>{y.push({key:S,name:k,style:{fontStyle:S,fontWeight:void 0}})}),y},A=()=>{const y=[p];return b.forEach(({name:k,value:S})=>{y.push({key:S,name:k,style:{fontStyle:void 0,fontWeight:S}})}),y},_=x.useMemo(()=>o&&r?g():o?z():A(),[e.options,f,b,h]),v=_.find(y=>y.style.fontStyle===i&&y.style.fontWeight===c)||_[0],M=()=>v?xe(m(o?r?"Currently selected font appearance: %s":"Currently selected font style: %s":"Currently selected font weight: %s"),v.name):m("No selected font appearance");return!t&&(l.size===void 0||l.size==="default")&&Ke("36px default size for wp.blockEditor.__experimentalFontAppearanceControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."}),u&&a.jsx(ob,{...l,className:"components-font-appearance-control",__next40pxDefaultSize:t,__shouldNotWarnDeprecated36pxSize:!0,label:d,describedBy:M(),options:_,value:v,onChange:({selectedItem:y})=>n(y.style)})}const pv=1.5,Gee=.01,Kee=10,vMe="";function fTt(e){return e!==void 0&&e!==vMe}const bTt=({__next40pxDefaultSize:e=!1,value:t,onChange:n,__unstableInputWidth:o="60px",...r})=>{const s=fTt(t),i=(d,p)=>{if(s)return d;const f=Gee*Kee;switch(`${d}`){case`${f}`:return pv+f;case"0":return p?d:pv-f;case"":return pv;default:return d}},c=(d,p)=>{const f=["insertText","insertFromPaste"].includes(p.payload.event.nativeEvent?.inputType),b=i(d.value,f);return{...d,value:b}},l=s?t:vMe,u=(d,{event:p})=>{if(d===""){n();return}if(p.type==="click"){n(i(`${d}`,!1));return}n(`${d}`)};return!e&&(r.size===void 0||r.size==="default")&&Ke("36px default size for wp.blockEditor.LineHeightControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."}),a.jsx("div",{className:"block-editor-line-height-control",children:a.jsx(g0,{...r,__shouldNotWarnDeprecated36pxSize:!0,__next40pxDefaultSize:e,__unstableInputWidth:o,__unstableStateReducer:c,onChange:u,label:m("Line height"),placeholder:pv,step:Gee,spinFactor:Kee,value:l,min:0,spinControls:"custom"})})};function hTt({__next40pxDefaultSize:e=!1,value:t,onChange:n,__unstableInputWidth:o="60px",...r}){const[s]=Un("spacing.units"),i=U1({availableUnits:s||["px","em","rem"],defaultValues:{px:2,em:.2,rem:.2}});return!e&&(r.size===void 0||r.size==="default")&&Ke("36px default size for wp.blockEditor.__experimentalLetterSpacingControl",{since:"6.8",version:"7.1",hint:"Set the `__next40pxDefaultSize` prop to true to start opting into the new default size, which will become the default in a future version."}),a.jsx(Ro,{__next40pxDefaultSize:e,__shouldNotWarnDeprecated36pxSize:!0,...r,label:m("Letter spacing"),value:t,__unstableInputWidth:o,units:i,onChange:n})}const mTt=[{label:m("Align text left"),value:"left",icon:$3},{label:m("Align text center"),value:"center",icon:qw},{label:m("Align text right"),value:"right",icon:V3},{label:m("Justify text"),value:"justify",icon:bZe}],gTt=["left","center","right"];function xMe({className:e,value:t,onChange:n,options:o=gTt}){const r=x.useMemo(()=>mTt.filter(s=>o.includes(s.value)),[o]);return r.length?a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Text alignment"),className:oe("block-editor-text-alignment-control",e),value:t,onChange:s=>{n(s===t?void 0:s)},children:r.map(s=>a.jsx(ga,{value:s.value,icon:s.icon,label:s.label},s.value))}):null}const MTt=[{label:m("None"),value:"none",icon:am},{label:m("Uppercase"),value:"uppercase",icon:UZe},{label:m("Lowercase"),value:"lowercase",icon:VZe},{label:m("Capitalize"),value:"capitalize",icon:LZe}];function zTt({className:e,value:t,onChange:n}){return a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Letter case"),className:oe("block-editor-text-transform-control",e),value:t,onChange:o=>{n(o===t?void 0:o)},children:MTt.map(o=>a.jsx(ga,{value:o.value,icon:o.icon,label:o.label},o.value))})}const OTt=[{label:m("None"),value:"none",icon:am},{label:m("Underline"),value:"underline",icon:HZe},{label:m("Strikethrough"),value:"line-through",icon:cde}];function yTt({value:e,onChange:t,className:n}){return a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Decoration"),className:oe("block-editor-text-decoration-control",n),value:e,onChange:o=>{t(o===e?void 0:o)},children:OTt.map(o=>a.jsx(ga,{value:o.value,icon:o.icon,label:o.label},o.value))})}const ATt=[{label:m("Horizontal"),value:"horizontal-tb",icon:sJe},{label:m("Vertical"),value:jt()?"vertical-lr":"vertical-rl",icon:iJe}];function vTt({className:e,value:t,onChange:n}){return a.jsx(Do,{isDeselectable:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Orientation"),className:oe("block-editor-writing-mode-control",e),value:t,onChange:o=>{n(o===t?void 0:o)},children:ATt.map(o=>a.jsx(ga,{value:o.value,icon:o.icon,label:o.label},o.value))})}const xTt=1,wTt=6;function wMe(e){const t=kMe(e),n=SMe(e),o=CMe(e),r=qMe(e),s=TMe(e),i=RMe(e),c=EMe(e),l=WMe(e),u=NMe(e),d=_Me(e);return t||n||o||r||s||i||d||c||l||u}function _Me(e){return e?.typography?.defaultFontSizes!==!1&&e?.typography?.fontSizes?.default?.length||e?.typography?.fontSizes?.theme?.length||e?.typography?.fontSizes?.custom?.length||e?.typography?.customFontSize}function kMe(e){return["default","theme","custom"].some(t=>e?.typography?.fontFamilies?.[t]?.length)}function SMe(e){return e?.typography?.lineHeight}function CMe(e){return e?.typography?.fontStyle||e?.typography?.fontWeight}function _Tt(e){return e?.typography?.fontStyle?e?.typography?.fontWeight?m("Appearance"):m("Font style"):m("Font weight")}function qMe(e){return e?.typography?.letterSpacing}function RMe(e){return e?.typography?.textTransform}function TMe(e){return e?.typography?.textAlign}function EMe(e){return e?.typography?.textDecoration}function WMe(e){return e?.typography?.writingMode}function NMe(e){return e?.typography?.textColumns}function kTt(e){var t,n,o;const r=e?.typography?.fontSizes,s=!!e?.typography?.defaultFontSizes;return[...(t=r?.custom)!==null&&t!==void 0?t:[],...(n=r?.theme)!==null&&n!==void 0?n:[],...s?(o=r?.default)!==null&&o!==void 0?o:[]:[]]}function STt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:m("Typography"),resetAll:i,panelId:o,dropdownMenuProps:s,children:r})}const CTt={fontFamily:!0,fontSize:!0,fontAppearance:!0,lineHeight:!0,letterSpacing:!0,textAlign:!0,textTransform:!0,textDecoration:!0,writingMode:!0,textColumns:!0};function BMe({as:e=STt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=CTt}){const c=fe=>ua({settings:r},"",fe),l=kMe(r),u=c(o?.typography?.fontFamily),{fontFamilies:d,fontFamilyFaces:p}=x.useMemo(()=>SSt(r,u),[r,u]),f=fe=>{const Re=d?.find(({fontFamily:be})=>be===fe)?.slug;n(gn(t,["typography","fontFamily"],Re?`var:preset|font-family|${Re}`:fe||void 0))},b=()=>!!t?.typography?.fontFamily,h=()=>f(void 0),g=_Me(r),z=!r?.typography?.customFontSize,A=kTt(r),_=c(o?.typography?.fontSize),v=(fe,Re)=>{const be=Re?.slug?`var:preset|font-size|${Re?.slug}`:fe;n(gn(t,["typography","fontSize"],be||void 0))},M=()=>!!t?.typography?.fontSize,y=()=>v(void 0),k=CMe(r),S=_Tt(r),C=r?.typography?.fontStyle,R=r?.typography?.fontWeight,T=c(o?.typography?.fontStyle),E=c(o?.typography?.fontWeight),{nearestFontStyle:B,nearestFontWeight:N}=qSt(p,T,E),j=x.useCallback(({fontStyle:fe,fontWeight:Re})=>{(fe!==T||Re!==E)&&n({...t,typography:{...t?.typography,fontStyle:fe||void 0,fontWeight:Re||void 0}})},[T,E,n,t]),I=()=>!!t?.typography?.fontStyle||!!t?.typography?.fontWeight,P=x.useCallback(()=>{j({})},[j]);x.useEffect(()=>{B&&N?j({fontStyle:B,fontWeight:N}):P()},[B,N,P,j]);const $=SMe(r),F=c(o?.typography?.lineHeight),X=fe=>{n(gn(t,["typography","lineHeight"],fe||void 0))},Z=()=>t?.typography?.lineHeight!==void 0,V=()=>X(void 0),ee=qMe(r),te=c(o?.typography?.letterSpacing),J=fe=>{n(gn(t,["typography","letterSpacing"],fe||void 0))},ue=()=>!!t?.typography?.letterSpacing,ce=()=>J(void 0),me=NMe(r),de=c(o?.typography?.textColumns),Ae=fe=>{n(gn(t,["typography","textColumns"],fe||void 0))},ye=()=>!!t?.typography?.textColumns,Ne=()=>Ae(void 0),je=RMe(r),ie=c(o?.typography?.textTransform),we=fe=>{n(gn(t,["typography","textTransform"],fe||void 0))},re=()=>!!t?.typography?.textTransform,pe=()=>we(void 0),ke=EMe(r),Se=c(o?.typography?.textDecoration),se=fe=>{n(gn(t,["typography","textDecoration"],fe||void 0))},L=()=>!!t?.typography?.textDecoration,U=()=>se(void 0),ne=WMe(r),ve=c(o?.typography?.writingMode),qe=fe=>{n(gn(t,["typography","writingMode"],fe||void 0))},Pe=()=>!!t?.typography?.writingMode,rt=()=>qe(void 0),qt=TMe(r),wt=c(o?.typography?.textAlign),Bt=fe=>{n(gn(t,["typography","textAlign"],fe||void 0))},ae=()=>!!t?.typography?.textAlign,H=()=>Bt(void 0),Y=x.useCallback(fe=>({...fe,typography:{}}),[]);return a.jsxs(e,{resetAllFilter:Y,value:t,onChange:n,panelId:s,children:[l&&a.jsx(tt,{label:m("Font"),hasValue:b,onDeselect:h,isShownByDefault:i.fontFamily,panelId:s,children:a.jsx(uTt,{fontFamilies:d,value:u,onChange:f,size:"__unstable-large",__nextHasNoMarginBottom:!0})}),g&&a.jsx(tt,{label:m("Size"),hasValue:M,onDeselect:y,isShownByDefault:i.fontSize,panelId:s,children:a.jsx(nbt,{value:_,onChange:v,fontSizes:A,disableCustomFontSizes:z,withReset:!1,withSlider:!0,size:"__unstable-large"})}),k&&a.jsx(tt,{className:"single-column",label:S,hasValue:I,onDeselect:P,isShownByDefault:i.fontAppearance,panelId:s,children:a.jsx(pTt,{value:{fontStyle:T,fontWeight:E},onChange:j,hasFontStyles:C,hasFontWeights:R,fontFamilyFaces:p,size:"__unstable-large"})}),$&&a.jsx(tt,{className:"single-column",label:m("Line height"),hasValue:Z,onDeselect:V,isShownByDefault:i.lineHeight,panelId:s,children:a.jsx(bTt,{__unstableInputWidth:"auto",value:F,onChange:X,size:"__unstable-large"})}),ee&&a.jsx(tt,{className:"single-column",label:m("Letter spacing"),hasValue:ue,onDeselect:ce,isShownByDefault:i.letterSpacing,panelId:s,children:a.jsx(hTt,{value:te,onChange:J,size:"__unstable-large",__unstableInputWidth:"auto"})}),me&&a.jsx(tt,{className:"single-column",label:m("Columns"),hasValue:ye,onDeselect:Ne,isShownByDefault:i.textColumns,panelId:s,children:a.jsx(g0,{label:m("Columns"),max:wTt,min:xTt,onChange:Ae,size:"__unstable-large",spinControls:"custom",value:de,initialPosition:1})}),ke&&a.jsx(tt,{className:"single-column",label:m("Decoration"),hasValue:L,onDeselect:U,isShownByDefault:i.textDecoration,panelId:s,children:a.jsx(yTt,{value:Se,onChange:se,size:"__unstable-large",__unstableInputWidth:"auto"})}),ne&&a.jsx(tt,{className:"single-column",label:m("Orientation"),hasValue:Pe,onDeselect:rt,isShownByDefault:i.writingMode,panelId:s,children:a.jsx(vTt,{value:ve,onChange:qe,size:"__unstable-large",__nextHasNoMarginBottom:!0})}),je&&a.jsx(tt,{label:m("Letter case"),hasValue:re,onDeselect:pe,isShownByDefault:i.textTransform,panelId:s,children:a.jsx(zTt,{value:ie,onChange:we,showNone:!0,isBlock:!0,size:"__unstable-large",__nextHasNoMarginBottom:!0})}),qt&&a.jsx(tt,{label:m("Text alignment"),hasValue:ae,onDeselect:H,isShownByDefault:i.textAlign,panelId:s,children:a.jsx(xMe,{value:wt,onChange:Bt,size:"__unstable-large",__nextHasNoMarginBottom:!0})})]})}const Yee={px:{max:300,steps:1},"%":{max:100,steps:1},vw:{max:100,steps:1},vh:{max:100,steps:1},em:{max:10,steps:.1},rm:{max:10,steps:.1},svw:{max:100,steps:1},lvw:{max:100,steps:1},dvw:{max:100,steps:1},svh:{max:100,steps:1},lvh:{max:100,steps:1},dvh:{max:100,steps:1},vi:{max:100,steps:1},svi:{max:100,steps:1},lvi:{max:100,steps:1},dvi:{max:100,steps:1},vb:{max:100,steps:1},svb:{max:100,steps:1},lvb:{max:100,steps:1},dvb:{max:100,steps:1},vmin:{max:100,steps:1},svmin:{max:100,steps:1},lvmin:{max:100,steps:1},dvmin:{max:100,steps:1},vmax:{max:100,steps:1},svmax:{max:100,steps:1},lvmax:{max:100,steps:1},dvmax:{max:100,steps:1}};function cI({icon:e,isMixed:t=!1,minimumCustomValue:n,onChange:o,onMouseOut:r,onMouseOver:s,showSideInLabel:i=!0,side:c,spacingSizes:l,type:u,value:d}){var p,f;d=O_(d,l);let b=l;const h=l.length<=khe,g=G(ee=>ee(Q).getSettings()?.disableCustomSpacingSizes),[z,A]=x.useState(!g&&d!==void 0&&!Qp(d)),[_,v]=x.useState(n),M=Fr(d);d&&M!==d&&!Qp(d)&&z!==!0&&A(!0);const[y]=Un("spacing.units"),k=U1({availableUnits:y||["px","em","rem"]});let S=null;!h&&!z&&d!==void 0&&(!Qp(d)||Qp(d)&&t)?(b=[...l,{name:t?m("Mixed"):xe(m("Custom (%s)"),d),slug:"custom",size:d}],S=b.length-1):t||(S=z?aM(d,l):Jyt(d,l));const R=x.useMemo(()=>yo(S),[S])[1]||k[0]?.value,T=()=>{d===void 0&&o("0")},E=ee=>d===void 0?void 0:l[ee]?.name,B=parseFloat(S,10),N=ee=>!isNaN(parseFloat(ee))?ee:void 0,j=(ee,te)=>{const J=parseInt(ee,10);if(te==="selectList"){if(J===0)return;if(J===1)return"0"}else if(J===0)return"0";return`var:preset|spacing|${l[ee]?.slug}`},I=ee=>{o([ee,R].join(""))},P=t?m("Mixed"):null,$=b.map((ee,te)=>({key:te,name:ee.name})),F=l.slice(1,l.length-1).map((ee,te)=>({value:te+1,label:void 0})),X=Iz.includes(c)&&i?vO[c]:"",Z=i?u?.toLowerCase():u,V=xe(We("%1$s %2$s","spacing"),X,Z).trim();return a.jsxs(Ot,{className:"spacing-sizes-control__wrapper",children:[e&&a.jsx(qo,{className:"spacing-sizes-control__icon",icon:e,size:24}),z&&a.jsxs(a.Fragment,{children:[a.jsx(Ro,{onMouseOver:s,onMouseOut:r,onFocus:s,onBlur:r,onChange:ee=>o(N(ee)),value:S,units:k,min:_,placeholder:P,disableUnits:t,label:V,hideLabelFromVision:!0,className:"spacing-sizes-control__custom-value-input",size:"__unstable-large",onDragStart:()=>{d?.charAt(0)==="-"&&v(0)},onDrag:()=>{d?.charAt(0)==="-"&&v(0)},onDragEnd:()=>{v(n)}}),a.jsx(bo,{__next40pxDefaultSize:!0,onMouseOver:s,onMouseOut:r,onFocus:s,onBlur:r,value:B,min:0,max:(p=Yee[R]?.max)!==null&&p!==void 0?p:10,step:(f=Yee[R]?.steps)!==null&&f!==void 0?f:.1,withInputField:!1,onChange:I,className:"spacing-sizes-control__custom-value-range",__nextHasNoMarginBottom:!0,label:V,hideLabelFromVision:!0})]}),h&&!z&&a.jsx(bo,{__next40pxDefaultSize:!0,onMouseOver:s,onMouseOut:r,className:"spacing-sizes-control__range-control",value:S,onChange:ee=>o(j(ee)),onMouseDown:ee=>{ee?.nativeEvent?.offsetX<35&&T()},withInputField:!1,"aria-valuenow":S,"aria-valuetext":l[S]?.name,renderTooltipContent:E,min:0,max:l.length-1,marks:F,label:V,hideLabelFromVision:!0,__nextHasNoMarginBottom:!0,onFocus:s,onBlur:r}),!h&&!z&&a.jsx(ob,{className:"spacing-sizes-control__custom-select-control",value:$.find(ee=>ee.key===S)||"",onChange:ee=>{o(j(ee.selectedItem.key,"selectList"))},options:$,label:V,hideLabelFromVision:!0,size:"__unstable-large",onMouseOver:s,onMouseOut:r,onFocus:s,onBlur:r}),!g&&a.jsx(Ce,{label:m(z?"Use size preset":"Set custom size"),icon:HP,onClick:()=>{A(!z)},isPressed:z,size:"small",className:"spacing-sizes-control__custom-toggle",iconSize:24})]})}const Zee=["vertical","horizontal"];function qTt({minimumCustomValue:e,onChange:t,onMouseOut:n,onMouseOver:o,sides:r,spacingSizes:s,type:i,values:c}){const l=d=>p=>{if(!t)return;const f={...Object.keys(c).reduce((b,h)=>(b[h]=O_(c[h],s),b),{})};d==="vertical"&&(f.top=p,f.bottom=p),d==="horizontal"&&(f.left=p,f.right=p),t(f)},u=r?.length?Zee.filter(d=>qhe(r,d)):Zee;return a.jsx(a.Fragment,{children:u.map(d=>{const p=d==="vertical"?c.top:c.left;return a.jsx(cI,{icon:She[d],label:vO[d],minimumCustomValue:e,onChange:l(d),onMouseOut:n,onMouseOver:o,side:d,spacingSizes:s,type:i,value:p,withInputField:!1},`spacing-sizes-control-${d}`)})})}function RTt({minimumCustomValue:e,onChange:t,onMouseOut:n,onMouseOver:o,sides:r,spacingSizes:s,type:i,values:c}){const l=r?.length?Iz.filter(d=>r.includes(d)):Iz,u=d=>p=>{const f={...Object.keys(c).reduce((b,h)=>(b[h]=O_(c[h],s),b),{})};f[d]=p,t(f)};return a.jsx(a.Fragment,{children:l.map(d=>a.jsx(cI,{icon:She[d],label:vO[d],minimumCustomValue:e,onChange:u(d),onMouseOut:n,onMouseOver:o,side:d,spacingSizes:s,type:i,value:c[d],withInputField:!1},`spacing-sizes-control-${d}`))})}function TTt({minimumCustomValue:e,onChange:t,onMouseOut:n,onMouseOver:o,showSideInLabel:r,side:s,spacingSizes:i,type:c,values:l}){const u=d=>p=>{const f={...Object.keys(l).reduce((b,h)=>(b[h]=O_(l[h],i),b),{})};f[d]=p,t(f)};return a.jsx(cI,{label:vO[s],minimumCustomValue:e,onChange:u(s),onMouseOut:n,onMouseOver:o,showSideInLabel:r,side:s,spacingSizes:i,type:c,value:l[s],withInputField:!1})}function ETt({isLinked:e,...t}){const n=m(e?"Unlink sides":"Link sides");return a.jsx(B0,{text:n,children:a.jsx(Ce,{...t,size:"small",icon:e?xa:Pl,iconSize:24,"aria-label":n})})}const QR=[],WTt=new Intl.Collator("und",{numeric:!0}).compare;function LMe(){const[e,t,n,o]=Un("spacing.spacingSizes.custom","spacing.spacingSizes.theme","spacing.spacingSizes.default","spacing.defaultSpacingSizes"),r=e??QR,s=t??QR,i=n&&o!==!1?n:QR;return x.useMemo(()=>{const c=[{name:m("None"),slug:"0",size:0},...r,...s,...i];return c.every(({slug:l})=>/^[0-9]/.test(l))&&c.sort((l,u)=>WTt(l.slug,u.slug)),c.length>khe?[{name:m("Default"),slug:"default",size:void 0},...c]:c},[r,s,i])}function M4({inputProps:e,label:t,minimumCustomValue:n=0,onChange:o,onMouseOut:r,onMouseOver:s,showSideInLabel:i=!0,sides:c=Iz,useSelect:l,values:u}){const d=LMe(),p=u||Qyt,f=c?.length===1,b=c?.includes("horizontal")&&c?.includes("vertical")&&c?.length===2,[h,g]=x.useState(tAt(p,c)),z=()=>{g(h===Fu.axial?Fu.custom:Fu.axial)},_={...e,minimumCustomValue:n,onChange:k=>{const S={...u,...k};o(S)},onMouseOut:r,onMouseOver:s,sides:c,spacingSizes:d,type:t,useSelect:l,values:p},v=()=>h===Fu.axial?a.jsx(qTt,{..._}):h===Fu.custom?a.jsx(RTt,{..._}):a.jsx(TTt,{side:h,..._,showSideInLabel:i}),M=Iz.includes(h)&&i?vO[h]:"",y=xe(We("%1$s %2$s","spacing"),t,M).trim();return a.jsxs("fieldset",{className:"spacing-sizes-control",children:[a.jsxs(Ot,{className:"spacing-sizes-control__header",children:[a.jsx(no.VisualLabel,{as:"legend",className:"spacing-sizes-control__label",children:y}),!f&&!b&&a.jsx(ETt,{label:t,onClick:z,isLinked:h===Fu.axial})]}),a.jsx(dt,{spacing:.5,children:v()})]})}const Qee={px:{max:1e3,step:1},"%":{max:100,step:1},vw:{max:100,step:1},vh:{max:100,step:1},em:{max:50,step:.1},rem:{max:50,step:.1},svw:{max:100,step:1},lvw:{max:100,step:1},dvw:{max:100,step:1},svh:{max:100,step:1},lvh:{max:100,step:1},dvh:{max:100,step:1},vi:{max:100,step:1},svi:{max:100,step:1},lvi:{max:100,step:1},dvi:{max:100,step:1},vb:{max:100,step:1},svb:{max:100,step:1},lvb:{max:100,step:1},dvb:{max:100,step:1},vmin:{max:100,step:1},svmin:{max:100,step:1},lvmin:{max:100,step:1},dvmin:{max:100,step:1},vmax:{max:100,step:1},svmax:{max:100,step:1},lvmax:{max:100,step:1},dvmax:{max:100,step:1}};function NTt({label:e=m("Height"),onChange:t,value:n}){var o,r;const s=parseFloat(n),[i]=Un("spacing.units"),c=U1({availableUnits:i||["%","px","em","rem","vh","vw"]}),l=x.useMemo(()=>yo(n),[n])[1]||c[0]?.value||"px",u=p=>{t([p,l].join(""))},d=p=>{const[f,b]=yo(n);["em","rem"].includes(p)&&b==="px"?t((f/16).toFixed(2)+p):["em","rem"].includes(b)&&p==="px"?t(Math.round(f*16)+p):["%","vw","svw","lvw","dvw","vh","svh","lvh","dvh","vi","svi","lvi","dvi","vb","svb","lvb","dvb","vmin","svmin","lvmin","dvmin","vmax","svmax","lvmax","dvmax"].includes(p)&&f>100&&t(100+p)};return a.jsxs("fieldset",{className:"block-editor-height-control",children:[a.jsx(no.VisualLabel,{as:"legend",children:e}),a.jsxs(Yo,{children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{value:n,units:c,onChange:t,onUnitChange:d,min:0,size:"__unstable-large",label:e,hideLabelFromVision:!0})}),a.jsx(Tn,{isBlock:!0,children:a.jsx(t1,{marginX:2,marginBottom:0,children:a.jsx(bo,{__next40pxDefaultSize:!0,value:s,min:0,max:(o=Qee[l]?.max)!==null&&o!==void 0?o:100,step:(r=Qee[l]?.step)!==null&&r!==void 0?r:.1,withInputField:!1,onChange:u,__nextHasNoMarginBottom:!0,label:e,hideLabelFromVision:!0})})})]})]})}function K_(e,t){const{getBlockOrder:n,getBlockAttributes:o}=G(Q);return(s,i)=>{const c=(i-1)*t+s-1;let l=0;for(const d of n(e)){var u;const{columnStart:p,rowStart:f}=(u=o(d).style?.layout)!==null&&u!==void 0?u:{};(f-1)*t+p-1<c&&l++}return l}}function BTt(e,t){const{orientation:n="horizontal"}=t;return m(e==="fill"?"Stretch to fill available space.":e==="fixed"&&n==="horizontal"?"Specify a fixed width.":e==="fixed"?"Specify a fixed height.":"Fit contents.")}function LTt({value:e={},onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}){const{type:s,default:{type:i="default"}={}}=n??{},c=s||i;return c==="flex"?a.jsx(PTt,{childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}):c==="grid"?a.jsx(ITt,{childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}):null}function PTt({childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}){const{selfStretch:s,flexSize:i}=e,{orientation:c="horizontal"}=n??{},l=()=>!!s,u=m(c==="horizontal"?"Width":"Height"),[d]=Un("spacing.units"),p=U1({availableUnits:d||["%","px","em","rem","vh","vw"]}),f=()=>{t({selfStretch:void 0,flexSize:void 0})};return x.useEffect(()=>{s==="fixed"&&!i&&t({...e,selfStretch:"fit"})},[]),a.jsxs(dt,{as:tt,spacing:2,hasValue:l,label:u,onDeselect:f,isShownByDefault:o,panelId:r,children:[a.jsxs(Do,{__nextHasNoMarginBottom:!0,size:"__unstable-large",label:jTt(n),value:s||"fit",help:BTt(s,n),onChange:b=>{t({selfStretch:b,flexSize:b!=="fixed"?null:i})},isBlock:!0,children:[a.jsx(Kn,{value:"fit",label:We("Fit","Intrinsic block width in flex layout")},"fit"),a.jsx(Kn,{value:"fill",label:We("Grow","Block with expanding width in flex layout")},"fill"),a.jsx(Kn,{value:"fixed",label:We("Fixed","Block with fixed width in flex layout")},"fixed")]}),s==="fixed"&&a.jsx(Ro,{size:"__unstable-large",units:p,onChange:b=>{t({selfStretch:s,flexSize:b})},value:i,label:u,hideLabelFromVision:!0})]})}function jTt(e){const{orientation:t="horizontal"}=e;return m(t==="horizontal"?"Width":"Height")}function ITt({childLayout:e,onChange:t,parentLayout:n,isShownByDefault:o,panelId:r}){const{columnStart:s,rowStart:i,columnSpan:c,rowSpan:l}=e,{columnCount:u=3,rowCount:d}=n??{},p=G(v=>v(Q).getBlockRootClientId(r)),{moveBlocksToPosition:f,__unstableMarkNextChangeAsNotPersistent:b}=Oe(Q),h=K_(p,u),g=()=>!!s||!!i,z=()=>!!c||!!l,A=()=>{t({columnStart:void 0,rowStart:void 0})},_=()=>{t({columnSpan:void 0,rowSpan:void 0})};return a.jsxs(a.Fragment,{children:[a.jsxs(Ot,{as:tt,hasValue:z,label:m("Grid span"),onDeselect:_,isShownByDefault:o,panelId:r,children:[a.jsx(N1,{size:"__unstable-large",label:m("Column span"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:s,rowStart:i,rowSpan:l,columnSpan:M})},value:c??1,min:1}),a.jsx(N1,{size:"__unstable-large",label:m("Row span"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:s,rowStart:i,columnSpan:c,rowSpan:M})},value:l??1,min:1})]}),window.__experimentalEnableGridInteractivity&&u&&a.jsxs(Yo,{as:tt,hasValue:g,label:m("Grid placement"),onDeselect:A,isShownByDefault:!1,panelId:r,children:[a.jsx(Tn,{style:{width:"50%"},children:a.jsx(N1,{size:"__unstable-large",label:m("Column"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:M,rowStart:i,columnSpan:c,rowSpan:l}),b(),f([r],p,p,h(M,i))},value:s??1,min:1,max:u?u-(c??1)+1:void 0})}),a.jsx(Tn,{style:{width:"50%"},children:a.jsx(N1,{size:"__unstable-large",label:m("Row"),type:"number",onChange:v=>{const M=v===""?1:parseInt(v,10);t({columnStart:s,rowStart:M,columnSpan:c,rowSpan:l}),b(),f([r],p,p,h(s,M))},value:i??1,min:1,max:d?d-(l??1)+1:void 0})})]})]})}function PMe({panelId:e,value:t,onChange:n=()=>{},options:o,defaultValue:r="auto",hasValue:s,isShownByDefault:i=!0}){const c=t??"auto",[l,u,d]=Un("dimensions.aspectRatios.default","dimensions.aspectRatios.theme","dimensions.defaultAspectRatios"),p=u?.map(({name:h,ratio:g})=>({label:h,value:g})),f=l?.map(({name:h,ratio:g})=>({label:h,value:g})),b=[{label:We("Original","Aspect ratio option for dimensions control"),value:"auto"},...d?f:[],...p||[],{label:We("Custom","Aspect ratio option for dimensions control"),value:"custom",disabled:!0,hidden:!0}];return a.jsx(tt,{hasValue:s||(()=>c!==r),label:m("Aspect ratio"),onDeselect:()=>n(void 0),isShownByDefault:i,panelId:e,children:a.jsx(Pn,{label:m("Aspect ratio"),value:c,options:o??b,onChange:n,size:"__unstable-large",__nextHasNoMarginBottom:!0})})}const JR=["horizontal","vertical"];function jMe(e){const t=IMe(e),n=DMe(e),o=FMe(e),r=$Me(e),s=VMe(e),i=HMe(e),c=UMe(e),l=XMe(e);return t||n||o||r||s||i||c||l}function IMe(e){return e?.layout?.contentSize}function DMe(e){return e?.layout?.wideSize}function FMe(e){return e?.spacing?.padding}function $Me(e){return e?.spacing?.margin}function VMe(e){return e?.spacing?.blockGap}function HMe(e){return e?.dimensions?.minHeight}function UMe(e){return e?.dimensions?.aspectRatio}function XMe(e){var t;const{type:n="default",default:{type:o="default"}={},allowSizingOnChildren:r=!1}=(t=e?.parentLayout)!==null&&t!==void 0?t:{},s=(o==="flex"||n==="flex"||o==="grid"||n==="grid")&&r;return!!e?.layout&&s}function DTt(e){const{defaultSpacingSizes:t,spacingSizes:n}=e?.spacing||{};return t!==!1&&n?.default?.length>0||n?.theme?.length>0||n?.custom?.length>0}function Jee(e,t){if(!t||!e)return e;const n={};return t.forEach(o=>{o==="vertical"&&(n.top=e.top,n.bottom=e.bottom),o==="horizontal"&&(n.left=e.left,n.right=e.right),n[o]=e?.[o]}),n}function ete(e){return e&&typeof e=="string"?{top:e,right:e,bottom:e,left:e}:e}function FTt(e,t){return e&&(typeof e=="string"?t?{top:e,right:e,bottom:e,left:e}:{top:e}:{...e,right:e?.left,bottom:e?.top})}function $Tt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:m("Dimensions"),resetAll:i,panelId:o,dropdownMenuProps:s,children:r})}const el={contentSize:!0,wideSize:!0,padding:!0,margin:!0,blockGap:!0,minHeight:!0,aspectRatio:!0,childLayout:!0};function GMe({as:e=$Tt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=el,onVisualize:c=()=>{},includeLayoutControls:l=!1}){var u,d,p,f,b,h,g,z;const{dimensions:A,spacing:_}=r,v=Ue=>Ue&&typeof Ue=="object"?Object.keys(Ue).reduce((yt,fn)=>(yt[fn]=ua({settings:{dimensions:A,spacing:_}},"",Ue[fn]),yt),{}):ua({settings:{dimensions:A,spacing:_}},"",Ue),M=DTt(r),y=U1({availableUnits:r?.spacing?.units||["%","px","em","rem","vw"]}),k=-1/0,[S,C]=x.useState(k),R=IMe(r)&&l,T=v(o?.layout?.contentSize),E=Ue=>{n(gn(t,["layout","contentSize"],Ue||void 0))},B=()=>!!t?.layout?.contentSize,N=()=>E(void 0),j=DMe(r)&&l,I=v(o?.layout?.wideSize),P=Ue=>{n(gn(t,["layout","wideSize"],Ue||void 0))},$=()=>!!t?.layout?.wideSize,F=()=>P(void 0),X=FMe(r),Z=v(o?.spacing?.padding),V=ete(Z),ee=Array.isArray(r?.spacing?.padding)?r?.spacing?.padding:r?.spacing?.padding?.sides,te=ee&&ee.some(Ue=>JR.includes(Ue)),J=Ue=>{const yt=Jee(Ue,ee);n(gn(t,["spacing","padding"],yt))},ue=()=>!!t?.spacing?.padding&&Object.keys(t?.spacing?.padding).length,ce=()=>J(void 0),me=()=>c("padding"),de=$Me(r),Ae=v(o?.spacing?.margin),ye=ete(Ae),Ne=Array.isArray(r?.spacing?.margin)?r?.spacing?.margin:r?.spacing?.margin?.sides,je=Ne&&Ne.some(Ue=>JR.includes(Ue)),ie=Ue=>{const yt=Jee(Ue,Ne);n(gn(t,["spacing","margin"],yt))},we=()=>!!t?.spacing?.margin&&Object.keys(t?.spacing?.margin).length,re=()=>ie(void 0),pe=()=>c("margin"),ke=VMe(r),Se=Array.isArray(r?.spacing?.blockGap)?r?.spacing?.blockGap:r?.spacing?.blockGap?.sides,se=Se&&Se.some(Ue=>JR.includes(Ue)),L=v(o?.spacing?.blockGap),U=FTt(L,se),ne=Ue=>{n(gn(t,["spacing","blockGap"],Ue))},ve=Ue=>{Ue||ne(null),!se&&Ue?.hasOwnProperty("top")?ne(Ue.top):ne({top:Ue?.top,left:Ue?.left})},qe=()=>ne(void 0),Pe=()=>!!t?.spacing?.blockGap,rt=HMe(r),qt=v(o?.dimensions?.minHeight),wt=Ue=>{const yt=gn(t,["dimensions","minHeight"],Ue);n(gn(yt,["dimensions","aspectRatio"],void 0))},Bt=()=>{wt(void 0)},ae=()=>!!t?.dimensions?.minHeight,H=UMe(r),Y=v(o?.dimensions?.aspectRatio),fe=Ue=>{const yt=gn(t,["dimensions","aspectRatio"],Ue);n(gn(yt,["dimensions","minHeight"],void 0))},Re=()=>!!t?.dimensions?.aspectRatio,be=XMe(r),ze=o?.layout,nt=Ue=>{n({...t,layout:{...Ue}})},Mt=x.useCallback(Ue=>({...Ue,layout:Ii({...Ue?.layout,contentSize:void 0,wideSize:void 0,selfStretch:void 0,flexSize:void 0,columnStart:void 0,rowStart:void 0,columnSpan:void 0,rowSpan:void 0}),spacing:{...Ue?.spacing,padding:void 0,margin:void 0,blockGap:void 0},dimensions:{...Ue?.dimensions,minHeight:void 0,aspectRatio:void 0}}),[]),ot=()=>c(!1);return a.jsxs(e,{resetAllFilter:Mt,value:t,onChange:n,panelId:s,children:[(R||j)&&a.jsx("span",{className:"span-columns",children:m("Set the width of the main content area.")}),R&&a.jsx(tt,{label:m("Content width"),hasValue:B,onDeselect:N,isShownByDefault:(u=i.contentSize)!==null&&u!==void 0?u:el.contentSize,panelId:s,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Content width"),labelPosition:"top",value:T||"",onChange:Ue=>{E(Ue)},units:y,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:Rw})})})}),j&&a.jsx(tt,{label:m("Wide width"),hasValue:$,onDeselect:F,isShownByDefault:(d=i.wideSize)!==null&&d!==void 0?d:el.wideSize,panelId:s,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Wide width"),labelPosition:"top",value:I||"",onChange:Ue=>{P(Ue)},units:y,prefix:a.jsx(Ld,{variant:"icon",children:a.jsx(wn,{icon:UP})})})}),X&&a.jsxs(tt,{hasValue:ue,label:m("Padding"),onDeselect:ce,isShownByDefault:(p=i.padding)!==null&&p!==void 0?p:el.padding,className:oe({"tools-panel-item-spacing":M}),panelId:s,children:[!M&&a.jsx(r4,{__next40pxDefaultSize:!0,values:V,onChange:J,label:m("Padding"),sides:ee,units:y,allowReset:!1,splitOnAxis:te,inputProps:{onMouseOver:me,onMouseOut:ot}}),M&&a.jsx(M4,{values:V,onChange:J,label:m("Padding"),sides:ee,units:y,allowReset:!1,onMouseOver:me,onMouseOut:ot})]}),de&&a.jsxs(tt,{hasValue:we,label:m("Margin"),onDeselect:re,isShownByDefault:(f=i.margin)!==null&&f!==void 0?f:el.margin,className:oe({"tools-panel-item-spacing":M}),panelId:s,children:[!M&&a.jsx(r4,{__next40pxDefaultSize:!0,values:ye,onChange:ie,inputProps:{min:S,onDragStart:()=>{C(0)},onDragEnd:()=>{C(k)},onMouseOver:pe,onMouseOut:ot},label:m("Margin"),sides:Ne,units:y,allowReset:!1,splitOnAxis:je}),M&&a.jsx(M4,{values:ye,onChange:ie,minimumCustomValue:-1/0,label:m("Margin"),sides:Ne,units:y,allowReset:!1,onMouseOver:pe,onMouseOut:ot})]}),ke&&a.jsxs(tt,{hasValue:Pe,label:m("Block spacing"),onDeselect:qe,isShownByDefault:(b=i.blockGap)!==null&&b!==void 0?b:el.blockGap,className:oe({"tools-panel-item-spacing":M,"single-column":!M&&!se}),panelId:s,children:[!M&&(se?a.jsx(r4,{__next40pxDefaultSize:!0,label:m("Block spacing"),min:0,onChange:ve,units:y,sides:Se,values:U,allowReset:!1,splitOnAxis:se}):a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Block spacing"),min:0,onChange:ne,units:y,value:L})),M&&a.jsx(M4,{label:m("Block spacing"),min:0,onChange:ve,showSideInLabel:!1,sides:se?Se:["top"],values:U,allowReset:!1})]}),be&&a.jsx(LTt,{value:ze,onChange:nt,parentLayout:r?.parentLayout,panelId:s,isShownByDefault:(h=i.childLayout)!==null&&h!==void 0?h:el.childLayout}),rt&&a.jsx(tt,{hasValue:ae,label:m("Minimum height"),onDeselect:Bt,isShownByDefault:(g=i.minHeight)!==null&&g!==void 0?g:el.minHeight,panelId:s,children:a.jsx(NTt,{label:m("Minimum height"),value:qt,onChange:wt})}),H&&a.jsx(PMe,{hasValue:Re,value:Y,onChange:fe,panelId:s,isShownByDefault:(z=i.aspectRatio)!==null&&z!==void 0?z:el.aspectRatio})]})}function KMe(e){return[...e].sort((n,o)=>e.filter(r=>r===o).length-e.filter(r=>r===n).length).shift()}function YMe(e={}){const{flat:t,...n}=e;return t||KMe(Object.values(n).filter(Boolean))||"px"}function lI(e={}){if(typeof e=="string")return e;const t=Object.values(e).map(c=>yo(c)),n=t.map(c=>{var l;return(l=c[0])!==null&&l!==void 0?l:""}),o=t.map(c=>c[1]),r=n.every(c=>c===n[0])?n[0]:"",s=KMe(o);return r===0||r?`${r}${s}`:void 0}function ZMe(e={}){const t=lI(e);return typeof e=="string"?!1:isNaN(parseFloat(t))}function QMe(e){return e?typeof e=="string"?!0:!!Object.values(e).filter(n=>!!n||n===0).length:!1}function VTt({onChange:e,selectedUnits:t,setSelectedUnits:n,values:o,...r}){let s=lI(o);s===void 0&&(s=YMe(t));const c=QMe(o)&&ZMe(o),l=c?m("Mixed"):null,u=p=>{const b=!isNaN(parseFloat(p))?p:void 0;e(b)},d=p=>{n({topLeft:p,topRight:p,bottomLeft:p,bottomRight:p})};return a.jsx(Ro,{...r,"aria-label":m("Border radius"),disableUnits:c,isOnly:!0,value:s,onChange:u,onUnitChange:d,placeholder:l,size:"__unstable-large"})}const HTt={topLeft:m("Top left"),topRight:m("Top right"),bottomLeft:m("Bottom left"),bottomRight:m("Bottom right")};function UTt({onChange:e,selectedUnits:t,setSelectedUnits:n,values:o,...r}){const s=l=>u=>{if(!e)return;const p=!isNaN(parseFloat(u))?u:void 0;e({...c,[l]:p})},i=l=>u=>{const d={...t};d[l]=u,n(d)},c=typeof o!="string"?o:{topLeft:o,topRight:o,bottomLeft:o,bottomRight:o};return a.jsx("div",{className:"components-border-radius-control__input-controls-wrapper",children:Object.entries(HTt).map(([l,u])=>{const[d,p]=yo(c[l]),f=c[l]?p:t[l]||t.flat;return a.jsx(B0,{text:u,placement:"top",children:a.jsx("div",{className:"components-border-radius-control__tooltip-wrapper",children:a.jsx(Ro,{...r,"aria-label":u,value:[d,f].join(""),onChange:s(l),onUnitChange:i(l),size:"__unstable-large"})})},l)})})}function XTt({isLinked:e,...t}){const n=m(e?"Unlink radii":"Link radii");return a.jsx(Ce,{...t,className:"component-border-radius-control__linked-button",size:"small",icon:e?xa:Pl,iconSize:24,label:n})}const GTt={topLeft:void 0,topRight:void 0,bottomLeft:void 0,bottomRight:void 0},eT=0,KTt={px:100,em:20,rem:20};function YTt({onChange:e,values:t}){const[n,o]=x.useState(!QMe(t)||!ZMe(t)),[r,s]=x.useState({flat:typeof t=="string"?yo(t)[1]:void 0,topLeft:yo(t?.topLeft)[1],topRight:yo(t?.topRight)[1],bottomLeft:yo(t?.bottomLeft)[1],bottomRight:yo(t?.bottomRight)[1]}),[i]=Un("spacing.units"),c=U1({availableUnits:i||["px","em","rem"]}),l=YMe(r),d=(c&&c.find(h=>h.value===l))?.step||1,[p]=yo(lI(t)),f=()=>o(!n),b=h=>{e(h!==void 0?`${h}${l}`:void 0)};return a.jsxs("fieldset",{className:"components-border-radius-control",children:[a.jsx(no.VisualLabel,{as:"legend",children:m("Radius")}),a.jsxs("div",{className:"components-border-radius-control__wrapper",children:[n?a.jsxs(a.Fragment,{children:[a.jsx(VTt,{className:"components-border-radius-control__unit-control",values:t,min:eT,onChange:e,selectedUnits:r,setSelectedUnits:s,units:c}),a.jsx(bo,{__next40pxDefaultSize:!0,label:m("Border radius"),hideLabelFromVision:!0,className:"components-border-radius-control__range-control",value:p??"",min:eT,max:KTt[l],initialPosition:0,withInputField:!1,onChange:b,step:d,__nextHasNoMarginBottom:!0})]}):a.jsx(UTt,{min:eT,onChange:e,selectedUnits:r,setSelectedUnits:s,values:t||GTt,units:c}),a.jsx(XTt,{onClick:f,isLinked:n})]})]})}function ub(){const[e,t,n,o,r,s,i,c,l,u]=Un("color.custom","color.palette.custom","color.palette.theme","color.palette.default","color.defaultPalette","color.customGradient","color.gradients.custom","color.gradients.theme","color.gradients.default","color.defaultGradients"),d={disableCustomColors:!e,disableCustomGradients:!s};return d.colors=x.useMemo(()=>{const p=[];return n&&n.length&&p.push({name:We("Theme","Indicates this palette comes from the theme."),slug:"theme",colors:n}),r&&o&&o.length&&p.push({name:We("Default","Indicates this palette comes from WordPress."),slug:"default",colors:o}),t&&t.length&&p.push({name:We("Custom","Indicates this palette is created by the user."),slug:"custom",colors:t}),p},[t,n,o,r]),d.gradients=x.useMemo(()=>{const p=[];return c&&c.length&&p.push({name:We("Theme","Indicates this palette comes from the theme."),slug:"theme",gradients:c}),u&&l&&l.length&&p.push({name:We("Default","Indicates this palette comes from WordPress."),slug:"default",gradients:l}),i&&i.length&&p.push({name:We("Custom","Indicates this palette is created by the user."),slug:"custom",gradients:i}),p},[i,c,l,u]),d.hasColorsOrGradients=!!d.colors.length||!!d.gradients.length,d}const Sm="__experimentalBorder",Zx="shadow",tte=(e,t,n)=>{let o;return e.some(r=>r.colors.some(s=>s[t]===n?(o=s,!0):!1)),o},a2=({colors:e,namedColor:t,customColor:n})=>{if(t){const r=tte(e,"slug",t);if(r)return r}if(!n)return{color:void 0};const o=tte(e,"color",n);return o||{color:n}};function fv(e){const t=/var:preset\|color\|(.+)/.exec(e);return t&&t[1]?t[1]:null}function JMe(e){if(Pd(e?.border))return{style:e,borderColor:void 0};const t=e?.border?.color,n=t?.startsWith("var:preset|color|")?t.substring(17):void 0,o={...e};return o.border={...o.border,color:n?void 0:t},{style:Ii(o),borderColor:n}}function eze(e){return Pd(e.style?.border)?e.style:{...e.style,border:{...e.style?.border,color:e.borderColor?"var:preset|color|"+e.borderColor:e.style?.border?.color}}}function ZTt({label:e,children:t,resetAllFilter:n}){const o=x.useCallback(r=>{const s=eze(r),i=n(s);return{...r,...JMe(i)}},[n]);return a.jsx(et,{group:"border",resetAllFilter:o,label:e,children:t})}function QTt({clientId:e,name:t,setAttributes:n,settings:o}){const r=sze(o);function s(p){const{style:f,borderColor:b}=p(Q).getBlockAttributes(e)||{};return{style:f,borderColor:b}}const{style:i,borderColor:c}=G(s,[e]),l=x.useMemo(()=>eze({style:i,borderColor:c}),[i,c]),u=p=>{n(JMe(p))};if(!r)return null;const d={...An(t,[Sm,"__experimentalDefaultControls"]),...An(t,[Zx,"__experimentalDefaultControls"])};return a.jsx(dze,{as:ZTt,panelId:e,settings:o,value:l,onChange:u,defaultControls:d})}function Y_(e,t="any"){const n=An(e,Sm);return n===!0?!0:t==="any"?!!(n?.color||n?.radius||n?.width||n?.style):!!n?.[t]}function Z_({blockName:e,hasBorderControl:t,hasShadowControl:n}={}){const o=WO(e),r=uI(o);return!t&&!n&&e&&(t=r?.hasBorderColor||r?.hasBorderStyle||r?.hasBorderWidth||r?.hasBorderRadius,n=r?.hasShadow),m(t&&n?"Border & Shadow":n?"Shadow":"Border")}function JTt(e){return!Y_(e,"color")||e.attributes.borderColor?e:{...e,attributes:{...e.attributes,borderColor:{type:"string"}}}}function tze(e,t,n){if(!Y_(t,"color")||W0(t,Sm,"color"))return e;const o=nze(n),r=oe(e.className,o);return e.className=r||void 0,e}function nze(e){const{borderColor:t,style:n}=e,o=Pt("border-color",t);return oe({"has-border-color":t||n?.border?.color,[o]:!!o})}function eEt({name:e,borderColor:t,style:n}){const{colors:o}=ub();if(!Y_(e,"color")||W0(e,Sm,"color"))return{};const{color:r}=a2({colors:o,namedColor:t}),{color:s}=a2({colors:o,namedColor:fv(n?.border?.top?.color)}),{color:i}=a2({colors:o,namedColor:fv(n?.border?.right?.color)}),{color:c}=a2({colors:o,namedColor:fv(n?.border?.bottom?.color)}),{color:l}=a2({colors:o,namedColor:fv(n?.border?.left?.color)});return tze({style:Ii({borderTopColor:s||r,borderRightColor:i||r,borderBottomColor:c||r,borderLeftColor:l||r})||{}},e,{borderColor:t,style:n})}const oze={useBlockProps:eEt,addSaveProps:tze,attributeKeys:["borderColor","style"],hasSupport(e){return Y_(e,"color")}};Bn("blocks.registerBlockType","core/border/addAttributes",JTt);const bv=[];function tEt({shadow:e,onShadowChange:t,settings:n}){const o=rze(n);return a.jsx("div",{className:"block-editor-global-styles__shadow-popover-container",children:a.jsxs(dt,{spacing:4,children:[a.jsx(_a,{level:5,children:m("Drop shadow")}),a.jsx(nEt,{presets:o,activeShadow:e,onSelect:t}),a.jsx("div",{className:"block-editor-global-styles__clear-shadow",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>t(void 0),children:m("Clear")})})]})})}function nEt({presets:e,activeShadow:t,onSelect:n}){return e?a.jsx(S1,{role:"listbox",className:"block-editor-global-styles__shadow__list","aria-label":m("Drop shadows"),children:e.map(({name:o,slug:r,shadow:s})=>a.jsx(oEt,{label:o,isActive:s===t,type:r==="unset"?"unset":"preset",onSelect:()=>n(s===t?void 0:s),shadow:s},r))}):null}function oEt({type:e,label:t,isActive:n,onSelect:o,shadow:r}){return a.jsx(B0,{text:t,children:a.jsx(S1.Item,{role:"option","aria-label":t,"aria-selected":n,className:oe("block-editor-global-styles__shadow__item",{"is-active":n}),render:a.jsx("button",{className:oe("block-editor-global-styles__shadow-indicator",{unset:e==="unset"}),onClick:o,style:{boxShadow:r},"aria-label":t,children:n&&a.jsx(wn,{icon:M0})})})})}function rEt({shadow:e,onShadowChange:t,settings:n}){const o={placement:"left-start",offset:36,shift:!0};return a.jsx(so,{popoverProps:o,className:"block-editor-global-styles__shadow-dropdown",renderToggle:sEt(),renderContent:()=>a.jsx($s,{paddingSize:"medium",children:a.jsx(tEt,{shadow:e,onShadowChange:t,settings:n})})})}function sEt(){return({onToggle:e,isOpen:t})=>{const n={onClick:e,className:oe({"is-open":t}),"aria-expanded":t};return a.jsx(Ce,{__next40pxDefaultSize:!0,...n,children:a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(wn,{className:"block-editor-global-styles__toggle-icon",icon:BQe,size:24}),a.jsx(Tn,{children:m("Drop shadow")})]})})}}function rze(e){return x.useMemo(()=>{var t;if(!e?.shadow)return bv;const n=e?.shadow?.defaultPresets,{default:o,theme:r,custom:s}=(t=e?.shadow?.presets)!==null&&t!==void 0?t:{},i={name:m("Unset"),slug:"unset",shadow:"none"},c=[...n&&o||bv,...r||bv,...s||bv];return c.length&&c.unshift(i),c},[e])}function sze(e){return Object.values(uI(e)).some(Boolean)}function uI(e){return{hasBorderColor:ize(e),hasBorderRadius:aze(e),hasBorderStyle:cze(e),hasBorderWidth:lze(e),hasShadow:uze(e)}}function ize(e){return e?.border?.color}function aze(e){return e?.border?.radius}function cze(e){return e?.border?.style}function lze(e){return e?.border?.width}function uze(e){const t=rze(e);return!!e?.shadow&&t.length>0}function iEt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r,label:s}){const i=dp(),c=()=>{const l=e(n);t(l)};return a.jsx(En,{label:s,resetAll:c,panelId:o,dropdownMenuProps:i,children:r})}const aEt={radius:!0,color:!0,width:!0,shadow:!0};function dze({as:e=iEt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,name:i,defaultControls:c=aEt}){var l,u,d,p;const f=pp(r),b=x.useCallback(V=>ua({settings:r},"",V),[r]),h=V=>{const te=f.flatMap(({colors:J})=>J).find(({color:J})=>J===V);return te?"var:preset|color|"+te.slug:V},g=x.useMemo(()=>{if(Pd(o?.border)){const V={...o?.border};return["top","right","bottom","left"].forEach(ee=>{V[ee]={...V[ee],color:b(V[ee]?.color)}}),V}return{...o?.border,color:o?.border?.color?b(o?.border?.color):void 0}},[o?.border,b]),z=V=>n({...t,border:V}),A=ize(r),_=cze(r),v=lze(r),M=aze(r),y=b(g?.radius),k=V=>z({...g,radius:V}),S=()=>{const V=t?.border?.radius;return typeof V=="object"?Object.entries(V).some(Boolean):!!V},C=uze(r),R=b(o?.shadow),T=(l=r?.shadow?.presets)!==null&&l!==void 0?l:{},E=(u=(d=(p=T.custom)!==null&&p!==void 0?p:T.theme)!==null&&d!==void 0?d:T.default)!==null&&u!==void 0?u:[],B=V=>{const ee=E?.find(({shadow:te})=>te===V)?.slug;n(gn(t,["shadow"],ee?`var:preset|shadow|${ee}`:V||void 0))},N=()=>!!t?.shadow,j=()=>B(void 0),I=()=>{if(S())return z({radius:t?.border?.radius});z(void 0)},P=V=>{const ee={...V};Pd(ee)?["top","right","bottom","left"].forEach(te=>{ee[te]&&(ee[te]={...ee[te],color:h(ee[te]?.color)})}):ee&&(ee.color=h(ee.color)),z({radius:g?.radius,...ee})},$=x.useCallback(V=>({...V,border:void 0,shadow:void 0}),[]),F=c?.color||c?.width,X=A||_||v||M,Z=Z_({blockName:i,hasShadowControl:C,hasBorderControl:X});return a.jsxs(e,{resetAllFilter:$,value:t,onChange:n,panelId:s,label:Z,children:[(v||A)&&a.jsx(tt,{hasValue:()=>I0t(t?.border),label:m("Border"),onDeselect:()=>I(),isShownByDefault:F,panelId:s,children:a.jsx(Z0t,{colors:f,enableAlpha:!0,enableStyle:_,onChange:P,popoverOffset:40,popoverPlacement:"left-start",value:g,__experimentalIsRenderedInSidebar:!0,size:"__unstable-large",hideLabelFromVision:!C,label:m("Border")})}),M&&a.jsx(tt,{hasValue:S,label:m("Radius"),onDeselect:()=>k(void 0),isShownByDefault:c.radius,panelId:s,children:a.jsx(YTt,{values:y,onChange:V=>{k(V||void 0)}})}),C&&a.jsxs(tt,{label:m("Shadow"),hasValue:N,onDeselect:j,isShownByDefault:c.shadow,panelId:s,children:[X?a.jsx(no.VisualLabel,{as:"legend",children:m("Shadow")}):null,a.jsx(tb,{isBordered:!0,isSeparated:!0,children:a.jsx(rEt,{shadow:R,onShadowChange:B,settings:r})})]})]})}const{Tabs:Zb}=ct(tr),cEt=["colors","disableCustomColors","gradients","disableCustomGradients"],Ia={color:"color",gradient:"gradient"};function pze({colors:e,gradients:t,disableCustomColors:n,disableCustomGradients:o,__experimentalIsRenderedInSidebar:r,className:s,label:i,onColorChange:c,onGradientChange:l,colorValue:u,gradientValue:d,clearable:p,showTitle:f=!0,enableAlpha:b,headingLevel:h}){const g=c&&(e&&e.length>0||!n),z=l&&(t&&t.length>0||!o);if(!g&&!z)return null;const A={[Ia.color]:a.jsx(Gw,{value:u,onChange:z?v=>{c(v),l()}:c,colors:e,disableCustomColors:n,__experimentalIsRenderedInSidebar:r,clearable:p,enableAlpha:b,headingLevel:h}),[Ia.gradient]:a.jsx(Qst,{value:d,onChange:g?v=>{l(v),c()}:l,gradients:t,disableCustomGradients:o,__experimentalIsRenderedInSidebar:r,clearable:p,headingLevel:h})},_=v=>a.jsx("div",{className:"block-editor-color-gradient-control__panel",children:A[v]});return a.jsx(no,{__nextHasNoMarginBottom:!0,className:oe("block-editor-color-gradient-control",s),children:a.jsx("fieldset",{className:"block-editor-color-gradient-control__fieldset",children:a.jsxs(dt,{spacing:1,children:[f&&a.jsx("legend",{children:a.jsx("div",{className:"block-editor-color-gradient-control__color-indicator",children:a.jsx(no.VisualLabel,{children:i})})}),g&&z&&a.jsx("div",{children:a.jsxs(Zb,{defaultTabId:d?Ia.gradient:!!g&&Ia.color,children:[a.jsxs(Zb.TabList,{children:[a.jsx(Zb.Tab,{tabId:Ia.color,children:m("Color")}),a.jsx(Zb.Tab,{tabId:Ia.gradient,children:m("Gradient")})]}),a.jsx(Zb.TabPanel,{tabId:Ia.color,className:"block-editor-color-gradient-control__panel",focusable:!1,children:A.color}),a.jsx(Zb.TabPanel,{tabId:Ia.gradient,className:"block-editor-color-gradient-control__panel",focusable:!1,children:A.gradient})]})}),!z&&_(Ia.color),!g&&_(Ia.gradient)]})})})}function lEt(e){const[t,n,o,r]=Un("color.palette","color.gradients","color.custom","color.customGradient");return a.jsx(pze,{colors:t,gradients:n,disableCustomColors:!o,disableCustomGradients:!r,...e})}function fze(e){return cEt.every(t=>e.hasOwnProperty(t))?a.jsx(pze,{...e}):a.jsx(lEt,{...e})}function bze(e){const t=hze(e),n=zze(e),o=mze(e),r=Iu(e),s=Mze(e),i=gze(e);return t||n||o||r||s||i}function hze(e){const t=pp(e);return e?.color?.text&&(t?.length>0||e?.color?.custom)}function mze(e){const t=pp(e);return e?.color?.link&&(t?.length>0||e?.color?.custom)}function gze(e){const t=pp(e);return e?.color?.caption&&(t?.length>0||e?.color?.custom)}function Iu(e){const t=pp(e),n=U_(e);return e?.color?.heading&&(t?.length>0||e?.color?.custom||n?.length>0||e?.color?.customGradient)}function Mze(e){const t=pp(e),n=U_(e);return e?.color?.button&&(t?.length>0||e?.color?.custom||n?.length>0||e?.color?.customGradient)}function zze(e){const t=pp(e),n=U_(e);return e?.color?.background&&(t?.length>0||e?.color?.custom||n?.length>0||e?.color?.customGradient)}function uEt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:m("Elements"),resetAll:i,panelId:o,hasInnerWrapper:!0,headingLevel:3,className:"color-block-support-panel",__experimentalFirstVisibleItemClass:"first",__experimentalLastVisibleItemClass:"last",dropdownMenuProps:s,children:a.jsx("div",{className:"color-block-support-panel__inner-wrapper",children:r})})}const dEt={text:!0,background:!0,link:!0,heading:!0,button:!0,caption:!0},pEt={placement:"left-start",offset:36,shift:!0},{Tabs:hv}=ct(tr),fEt=({indicators:e,label:t})=>a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(y2e,{isLayered:!1,offset:-8,children:e.map((n,o)=>a.jsx(Yo,{expanded:!1,children:a.jsx(eb,{colorValue:n})},o))}),a.jsx(Tn,{className:"block-editor-panel-color-gradient-settings__color-name",children:t})]});function nte({isGradient:e,inheritedValue:t,userValue:n,setValue:o,colorGradientControlSettings:r}){return a.jsx(fze,{...r,showTitle:!1,enableAlpha:!0,__experimentalIsRenderedInSidebar:!0,colorValue:e?void 0:t,gradientValue:e?t:void 0,onColorChange:e?void 0:o,onGradientChange:e?o:void 0,clearable:t===n,headingLevel:3})}function bEt({label:e,hasValue:t,resetValue:n,isShownByDefault:o,indicators:r,tabs:s,colorGradientControlSettings:i,panelId:c}){var l;const u=s.find(b=>b.userValue!==void 0),{key:d,...p}=(l=s[0])!==null&&l!==void 0?l:{},f=x.useRef(void 0);return a.jsx(tt,{className:"block-editor-tools-panel-color-gradient-settings__item",hasValue:t,label:e,onDeselect:n,isShownByDefault:o,panelId:c,children:a.jsx(so,{popoverProps:pEt,className:"block-editor-tools-panel-color-gradient-settings__dropdown",renderToggle:({onToggle:b,isOpen:h})=>{const g={onClick:b,className:oe("block-editor-panel-color-gradient-settings__dropdown",{"is-open":h}),"aria-expanded":h,ref:f};return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{...g,__next40pxDefaultSize:!0,children:a.jsx(fEt,{indicators:r,label:e})}),t()&&a.jsx(Ce,{__next40pxDefaultSize:!0,label:m("Reset"),className:"block-editor-panel-color-gradient-settings__reset",size:"small",icon:am,onClick:()=>{n(),h&&b(),f.current?.focus()}})]})},renderContent:()=>a.jsx($s,{paddingSize:"none",children:a.jsxs("div",{className:"block-editor-panel-color-gradient-settings__dropdown-content",children:[s.length===1&&a.jsx(nte,{...p,colorGradientControlSettings:i},d),s.length>1&&a.jsxs(hv,{defaultTabId:u?.key,children:[a.jsx(hv.TabList,{children:s.map(b=>a.jsx(hv.Tab,{tabId:b.key,children:b.label},b.key))}),s.map(b=>{const{key:h,...g}=b;return a.jsx(hv.TabPanel,{tabId:h,focusable:!1,children:a.jsx(nte,{...g,colorGradientControlSettings:i},h)},h)})]})]})})})})}function Oze({as:e=uEt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=dEt,children:c}){const l=pp(r),u=U_(r),d=r?.color?.custom,p=r?.color?.customGradient,f=l.length>0||d,b=u.length>0||p,h=de=>ua({settings:r},"",de),g=de=>{const ye=l.flatMap(({colors:Ne})=>Ne).find(({color:Ne})=>Ne===de);return ye?"var:preset|color|"+ye.slug:de},z=de=>{const ye=u.flatMap(({gradients:Ne})=>Ne).find(({gradient:Ne})=>Ne===de);return ye?"var:preset|gradient|"+ye.slug:de},A=zze(r),_=h(o?.color?.background),v=h(t?.color?.background),M=h(o?.color?.gradient),y=h(t?.color?.gradient),k=()=>!!v||!!y,S=de=>{const Ae=gn(t,["color","background"],g(de));Ae.color.gradient=void 0,n(Ae)},C=de=>{const Ae=gn(t,["color","gradient"],z(de));Ae.color.background=void 0,n(Ae)},R=()=>{const de=gn(t,["color","background"],void 0);de.color.gradient=void 0,n(de)},T=mze(r),E=h(o?.elements?.link?.color?.text),B=h(t?.elements?.link?.color?.text),N=de=>{n(gn(t,["elements","link","color","text"],g(de)))},j=h(o?.elements?.link?.[":hover"]?.color?.text),I=h(t?.elements?.link?.[":hover"]?.color?.text),P=de=>{n(gn(t,["elements","link",":hover","color","text"],g(de)))},$=()=>!!B||!!I,F=()=>{let de=gn(t,["elements","link",":hover","color","text"],void 0);de=gn(de,["elements","link","color","text"],void 0),n(de)},X=hze(r),Z=h(o?.color?.text),V=h(t?.color?.text),ee=()=>!!V,te=de=>{let Ae=gn(t,["color","text"],g(de));Z===E&&(Ae=gn(Ae,["elements","link","color","text"],g(de))),n(Ae)},J=()=>te(void 0),ue=[{name:"caption",label:m("Captions"),showPanel:gze(r)},{name:"button",label:m("Button"),showPanel:Mze(r)},{name:"heading",label:m("Heading"),showPanel:Iu(r)},{name:"h1",label:m("H1"),showPanel:Iu(r)},{name:"h2",label:m("H2"),showPanel:Iu(r)},{name:"h3",label:m("H3"),showPanel:Iu(r)},{name:"h4",label:m("H4"),showPanel:Iu(r)},{name:"h5",label:m("H5"),showPanel:Iu(r)},{name:"h6",label:m("H6"),showPanel:Iu(r)}],ce=x.useCallback(de=>({...de,color:void 0,elements:{...de?.elements,link:{...de?.elements?.link,color:void 0,":hover":{color:void 0}},...ue.reduce((Ae,ye)=>({...Ae,[ye.name]:{...de?.elements?.[ye.name],color:void 0}}),{})}}),[]),me=[X&&{key:"text",label:m("Text"),hasValue:ee,resetValue:J,isShownByDefault:i.text,indicators:[Z],tabs:[{key:"text",label:m("Text"),inheritedValue:Z,setValue:te,userValue:V}]},A&&{key:"background",label:m("Background"),hasValue:k,resetValue:R,isShownByDefault:i.background,indicators:[M??_],tabs:[f&&{key:"background",label:m("Color"),inheritedValue:_,setValue:S,userValue:v},b&&{key:"gradient",label:m("Gradient"),inheritedValue:M,setValue:C,userValue:y,isGradient:!0}].filter(Boolean)},T&&{key:"link",label:m("Link"),hasValue:$,resetValue:F,isShownByDefault:i.link,indicators:[E,j],tabs:[{key:"link",label:m("Default"),inheritedValue:E,setValue:N,userValue:B},{key:"hover",label:m("Hover"),inheritedValue:j,setValue:P,userValue:I}]}].filter(Boolean);return ue.forEach(({name:de,label:Ae,showPanel:ye})=>{if(!ye)return;const Ne=h(o?.elements?.[de]?.color?.background),je=h(o?.elements?.[de]?.color?.gradient),ie=h(o?.elements?.[de]?.color?.text),we=h(t?.elements?.[de]?.color?.background),re=h(t?.elements?.[de]?.color?.gradient),pe=h(t?.elements?.[de]?.color?.text),ke=()=>!!(pe||we||re),Se=()=>{const qe=gn(t,["elements",de,"color","background"],void 0);qe.elements[de].color.gradient=void 0,qe.elements[de].color.text=void 0,n(qe)},se=qe=>{n(gn(t,["elements",de,"color","text"],g(qe)))},L=qe=>{const Pe=gn(t,["elements",de,"color","background"],g(qe));Pe.elements[de].color.gradient=void 0,n(Pe)},U=qe=>{const Pe=gn(t,["elements",de,"color","gradient"],z(qe));Pe.elements[de].color.background=void 0,n(Pe)},ne=!0,ve=de!=="caption";me.push({key:de,label:Ae,hasValue:ke,resetValue:Se,isShownByDefault:i[de],indicators:ve?[ie,je??Ne]:[ie],tabs:[f&&ne&&{key:"text",label:m("Text"),inheritedValue:ie,setValue:se,userValue:pe},f&&ve&&{key:"background",label:m("Background"),inheritedValue:Ne,setValue:L,userValue:we},b&&ve&&{key:"gradient",label:m("Gradient"),inheritedValue:je,setValue:U,userValue:re,isGradient:!0}].filter(Boolean)})}),a.jsxs(e,{resetAllFilter:ce,value:t,onChange:n,panelId:s,children:[me.map(de=>{const{key:Ae,...ye}=de;return a.jsx(bEt,{...ye,colorGradientControlSettings:{colors:l,disableCustomColors:!d,gradients:u,disableCustomGradients:!p},panelId:s},Ae)}),c]})}const mv=[];function ote(e,{presetSetting:t,defaultSetting:n}){const o=!e?.color?.[n],r=e?.color?.[t]?.custom||mv,s=e?.color?.[t]?.theme||mv,i=e?.color?.[t]?.default||mv;return x.useMemo(()=>[...r,...s,...o?mv:i],[o,r,s,i])}function hEt(e){return yze(e)}function yze(e){return e.color.customDuotone||e.color.defaultDuotone||e.color.duotone.length>0}function mEt({resetAllFilter:e,onChange:t,value:n,panelId:o,children:r}){const s=dp(),i=()=>{const c=e(n);t(c)};return a.jsx(En,{label:We("Filters","Name for applying graphical effects"),resetAll:i,panelId:o,dropdownMenuProps:s,children:r})}const gEt={duotone:!0},MEt={placement:"left-start",offset:36,shift:!0,className:"block-editor-duotone-control__popover",headerTitle:m("Duotone")},zEt=({indicator:e,label:t})=>a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(y2e,{isLayered:!1,offset:-8,children:a.jsx(Yo,{expanded:!1,children:e==="unset"||!e?a.jsx(eb,{className:"block-editor-duotone-control__unset-indicator"}):a.jsx(Zbe,{values:e})})}),a.jsx(Tn,{title:t,children:t})]});function Aze({as:e=mEt,value:t,onChange:n,inheritedValue:o=t,settings:r,panelId:s,defaultControls:i=gEt}){const c=z=>ua({settings:r},"",z),l=yze(r),u=ote(r,{presetSetting:"duotone",defaultSetting:"defaultDuotone"}),d=ote(r,{presetSetting:"palette",defaultSetting:"defaultPalette"}),p=c(o?.filter?.duotone),f=z=>{const A=u.find(({colors:v})=>v===z),_=A?`var:preset|duotone|${A.slug}`:z;n(gn(t,["filter","duotone"],_))},b=()=>!!t?.filter?.duotone,h=()=>f(void 0),g=x.useCallback(z=>({...z,filter:{...z.filter,duotone:void 0}}),[]);return a.jsx(e,{resetAllFilter:g,value:t,onChange:n,panelId:s,children:l&&a.jsx(tt,{label:m("Duotone"),hasValue:b,onDeselect:h,isShownByDefault:i.duotone,panelId:s,children:a.jsx(so,{popoverProps:MEt,className:"block-editor-global-styles-filters-panel__dropdown",renderToggle:({onToggle:z,isOpen:A})=>{const _={onClick:z,className:oe({"is-open":A}),"aria-expanded":A};return a.jsx(tb,{isBordered:!0,isSeparated:!0,children:a.jsx(oO,{as:"button",..._,children:a.jsx(zEt,{indicator:p,label:m("Duotone")})})})},renderContent:()=>a.jsx($s,{paddingSize:"small",children:a.jsxs(Cn,{label:m("Duotone"),children:[a.jsx("p",{children:m("Create a two-tone color effect without losing your original image.")}),a.jsx(Ybe,{colorPalette:d,duotonePalette:u,disableCustomColors:!0,disableCustomDuotone:!0,value:p,onChange:f})]})})})})})}function OEt(e,t,n){return e==="core/image"&&n?.lightbox?.allowEditing||!!t?.lightbox}function yEt({onChange:e,value:t,inheritedValue:n,panelId:o}){const r=dp(),s=()=>{e(void 0)},i=l=>{e({enabled:l})};let c=!1;return n?.lightbox?.enabled&&(c=n.lightbox.enabled),a.jsx(a.Fragment,{children:a.jsx(En,{label:We("Settings","Image settings"),resetAll:s,panelId:o,dropdownMenuProps:r,children:a.jsx(tt,{hasValue:()=>!!t?.lightbox,label:m("Enlarge on click"),onDeselect:s,isShownByDefault:!0,panelId:o,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Enlarge on click"),checked:c,onChange:i})})})})}function AEt({value:e,onChange:t,inheritedValue:n=e}){const[o,r]=x.useState(null),s=n?.css;function i(l){if(t({...e,css:l}),o){const[u]=Vx([{css:l}],".for-validation-only");u&&r(null)}}function c(l){if(!l?.target?.value){r(null);return}const[u]=Vx([{css:l.target.value}],".for-validation-only");r(u===null?m("There is an error with your CSS structure."):null)}return a.jsxs(dt,{spacing:3,children:[o&&a.jsx(L1,{status:"error",onRemove:()=>r(null),children:o}),a.jsx(Li,{label:m("Additional CSS"),__nextHasNoMarginBottom:!0,value:s,onChange:l=>i(l),onBlur:c,className:"block-editor-global-styles-advanced-panel__custom-css-input",spellCheck:!1})]})}const gv=new Map,XW=[],tT={caption:m("Caption"),link:m("Link"),button:m("Button"),heading:m("Heading"),h1:m("H1"),h2:m("H2"),h3:m("H3"),h4:m("H4"),h5:m("H5"),h6:m("H6"),"settings.color":m("Color"),"settings.typography":m("Typography"),"styles.color":m("Colors"),"styles.spacing":m("Spacing"),"styles.background":m("Background"),"styles.typography":m("Typography")},vEt=Hs(()=>gs().reduce((e,{name:t,title:n})=>(e[t]=n,e),{})),Mv=e=>e!==null&&typeof e=="object";function xEt(e){if(tT[e])return tT[e];const t=e.split(".");if(t?.[0]==="blocks")return vEt()?.[t[1]]||t[1];if(t?.[0]==="elements")return tT[t[1]]||t[1]}function vze(e,t,n=""){if(!Mv(e)&&!Mv(t))return e!==t?n.split(".").slice(0,2).join("."):void 0;e=Mv(e)?e:{},t=Mv(t)?t:{};const o=new Set([...Object.keys(e),...Object.keys(t)]);let r=[];for(const s of o){const i=n?n+"."+s:s,c=vze(e[s],t[s],i);c&&(r=r.concat(c))}return r}function wEt(e,t){const n=JSON.stringify({next:e,previous:t});if(gv.has(n))return gv.get(n);const o=vze({styles:{background:e?.styles?.background,color:e?.styles?.color,typography:e?.styles?.typography,spacing:e?.styles?.spacing},blocks:e?.styles?.blocks,elements:e?.styles?.elements,settings:e?.settings},{styles:{background:t?.styles?.background,color:t?.styles?.color,typography:t?.styles?.typography,spacing:t?.styles?.spacing},blocks:t?.styles?.blocks,elements:t?.styles?.elements,settings:t?.settings});if(!o.length)return gv.set(n,XW),XW;const r=[...new Set(o)].reduce((s,i)=>{const c=xEt(i);return c&&s.push([i.split(".")[0],c]),s},[]);return gv.set(n,r),r}function _Et(e,t,n={}){let o=wEt(e,t);const r=o.length,{maxResults:s}=n;return r?(s&&r>s&&(o=o.slice(0,s)),Object.entries(o.reduce((i,c)=>{const l=i[c[0]]||[];return l.includes(c[1])||(i[c[0]]=[...l,c[1]]),i},{})).map(([i,c])=>{const l=c.length,u=c.join(m(", "));switch(i){case"blocks":return xe(Dn("%s block.","%s blocks.",l),u);case"elements":return xe(Dn("%s element.","%s elements.",l),u);case"settings":return xe(m("%s settings."),u);case"styles":return xe(m("%s styles."),u);default:return xe(m("%s."),u)}})):XW}const kEt=Object.freeze(Object.defineProperty({__proto__:null,AdvancedPanel:AEt,BackgroundPanel:zMe,BorderPanel:dze,ColorPanel:Oze,DimensionsPanel:GMe,FiltersPanel:Aze,GlobalStylesContext:lb,ImageSettingsPanel:yEt,TypographyPanel:BMe,areGlobalStyleConfigsEqual:LSt,getBlockCSSSelector:pd,getBlockSelectors:G_,getGlobalStylesChanges:_Et,getLayoutStyles:yMe,toStyles:X_,useGlobalSetting:lMe,useGlobalStyle:eRt,useGlobalStylesOutput:lTt,useGlobalStylesOutputWithConfig:AMe,useGlobalStylesReset:Jqt,useHasBackgroundPanel:sI,useHasBorderPanel:sze,useHasBorderPanelControls:uI,useHasColorPanel:bze,useHasDimensionsPanel:jMe,useHasFiltersPanel:hEt,useHasImageSettingsPanel:OEt,useHasTypographyPanel:wMe,useSettingsForBlockElement:uMe},Symbol.toStringTag,{value:"Module"})),GW="is-style-";function xze(e){return e?e.split(/\s+/).reduce((t,n)=>{if(n.startsWith(GW)){const o=n.slice(GW.length);o!=="default"&&t.push(o)}return t},[]):[]}function SEt(e,t=[]){const n=xze(e);if(!n)return null;for(const o of n)if(t.some(r=>r.name===o))return o;return null}function CEt({override:e}){Jz(e)}function qEt({config:e}){const{getBlockStyles:t,overrides:n}=G(s=>({getBlockStyles:s(kt).getBlockStyles,overrides:ct(s(Q)).getStyleOverrides()}),[]),{getBlockName:o}=G(Q),r=x.useMemo(()=>{if(!n?.length)return;const s=[],i=[];for(const[,c]of n)if(c?.variation&&c?.clientId&&!i.includes(c.clientId)){const l=o(c.clientId),u=e?.styles?.blocks?.[l]?.variations?.[c.variation];if(u){const d={settings:e?.settings,styles:{blocks:{[l]:{variations:{[`${c.variation}-${c.clientId}`]:u}}}}},p=G_(gs(),t,c.clientId),z=X_(d,p,!1,!0,!0,!0,{blockGap:!1,blockStyles:!0,layoutStyles:!1,marginReset:!1,presets:!1,rootPadding:!1,variationStyles:!0});s.push({id:`${c.variation}-${c.clientId}`,css:z,__unstableType:"variation",variation:c.variation,clientId:c.clientId}),i.push(c.clientId)}}return s},[e,n,t,o]);if(!(!r||!r.length))return a.jsx(a.Fragment,{children:r.map(s=>a.jsx(CEt,{override:s},s.id))})}function wze(e,t,n){if(!e?.styles?.blocks?.[t]?.variations?.[n])return;const o=s=>{Object.keys(s).forEach(i=>{const c=s[i];if(typeof c=="object"&&c!==null)if(c.ref!==void 0)if(typeof c.ref!="string"||c.ref.trim()==="")delete s[i];else{const l=fo(e,c.ref);l?s[i]=l:delete s[i]}else o(c),Object.keys(c).length===0&&delete s[i]})},r=JSON.parse(JSON.stringify(e.styles.blocks[t].variations[n]));return o(r),r}function REt(e,t,n){const{merged:o}=x.useContext(lb),{globalSettings:r,globalStyles:s}=G(i=>{const c=i(Q).getSettings();return{globalSettings:c.__experimentalFeatures,globalStyles:c[dO]}},[]);return x.useMemo(()=>{var i,c,l;const u=wze({settings:(i=o?.settings)!==null&&i!==void 0?i:r,styles:(c=o?.styles)!==null&&c!==void 0?c:s},e,t);return{settings:(l=o?.settings)!==null&&l!==void 0?l:r,styles:{blocks:{[e]:{variations:{[`${t}-${n}`]:u}}}}}},[o,r,s,t,n,e])}function TEt({name:e,className:t,clientId:n}){const{getBlockStyles:o}=G(kt),r=o(e),s=SEt(t,r),i=`${GW}${s}-${n}`,{settings:c,styles:l}=REt(e,s,n),u=x.useMemo(()=>{if(!s)return;const d={settings:c,styles:l},p=G_(gs(),o,n);return X_(d,p,!1,!0,!0,!0,{blockGap:!1,blockStyles:!0,layoutStyles:!1,marginReset:!1,presets:!1,rootPadding:!1,variationStyles:!0})},[s,c,l,o,n]);return Jz({id:`variation-${n}`,css:u,__unstableType:"variation",variation:s,clientId:n}),s?{className:i}:{}}const EEt={hasSupport:()=>!0,attributeKeys:["className"],isMatch:({className:e})=>xze(e).length>0,useBlockProps:TEt},WEt=a.jsxs(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:[a.jsx(he,{d:"M17.2 10.9c-.5-1-1.2-2.1-2.1-3.2-.6-.9-1.3-1.7-2.1-2.6L12 4l-1 1.1c-.6.9-1.3 1.7-2 2.6-.8 1.2-1.5 2.3-2 3.2-.6 1.2-1 2.2-1 3 0 3.4 2.7 6.1 6.1 6.1s6.1-2.7 6.1-6.1c0-.8-.3-1.8-1-3z"}),a.jsx(he,{stroke:"currentColor",strokeWidth:"1.5",d:"M17.2 10.9c-.5-1-1.2-2.1-2.1-3.2-.6-.9-1.3-1.7-2.1-2.6L12 4l-1 1.1c-.6.9-1.3 1.7-2 2.6-.8 1.2-1.5 2.3-2 3.2-.6 1.2-1 2.2-1 3 0 3.4 2.7 6.1 6.1 6.1s6.1-2.7 6.1-6.1c0-.8-.3-1.8-1-3z"})]});function NEt({clientId:e}){var t,n;const{stylesToRender:o,activeStyle:r,className:s}=tI({clientId:e}),{updateBlockAttributes:i}=Oe(Q),{merged:c}=x.useContext(lb),{globalSettings:l,globalStyles:u,blockName:d}=G(b=>{const h=b(Q).getSettings();return{globalSettings:h.__experimentalFeatures,globalStyles:h[dO],blockName:b(Q).getBlockName(e)}},[e]),p=r?.name?wze({settings:(t=c?.settings)!==null&&t!==void 0?t:l,styles:(n=c?.styles)!==null&&n!==void 0?n:u},d,r.name)?.color?.background:void 0;if(!o||o.length===0)return null;const f=()=>{const h=(o.findIndex(A=>A.name===r.name)+1)%o.length,g=o[h],z=eI(s,r,g);i(e,{className:z})};return a.jsx(Wn,{children:a.jsx(Vt,{onClick:f,label:m("Shuffle styles"),children:a.jsx(qo,{icon:WEt,style:{fill:p||"transparent"}})})})}function _ze({hideDragHandle:e,focusOnMount:t,__experimentalInitialIndex:n,__experimentalOnIndexChange:o,variant:r="unstyled"}){const{blockClientId:s,blockClientIds:i,isDefaultEditingMode:c,blockType:l,toolbarKey:u,shouldShowVisualToolbar:d,showParentSelector:p,isUsingBindings:f,hasParentPattern:b,hasContentOnlyLocking:h,showShuffleButton:g,showSlots:z,showGroupButtons:A,showLockButtons:_,showSwitchSectionStyleButton:v,hasFixedToolbar:M,isNavigationMode:y}=G(I=>{const{getBlockName:P,getBlockMode:$,getBlockParents:F,getSelectedBlockClientIds:X,isBlockValid:Z,getBlockEditingMode:V,getBlockAttributes:ee,getBlockParentsByBlockName:te,getTemplateLock:J,getSettings:ue,getParentSectionBlock:ce,isZoomOut:me,isNavigationMode:de}=ct(I(Q)),Ae=X(),ye=Ae[0],Ne=F(ye),je=ce(ye),ie=je??Ne[Ne.length-1],we=P(ie),re=on(we),pe=V(ye),ke=pe==="default",Se=P(ye),se=Ae.every(Pe=>Z(Pe)),L=Ae.every(Pe=>$(Pe)==="visual"),U=Ae.every(Pe=>!!ee(Pe)?.metadata?.bindings),ne=Ae.every(Pe=>te(Pe,"core/block",!0).length>0),ve=Ae.some(Pe=>J(Pe)==="contentOnly"),qe=me();return{blockClientId:ye,blockClientIds:Ae,isDefaultEditingMode:ke,blockType:ye&&on(Se),shouldShowVisualToolbar:se&&L,toolbarKey:`${ye}${ie}`,showParentSelector:!qe&&re&&pe!=="contentOnly"&&V(ie)!=="disabled"&&Et(re,"__experimentalParentSelector",!0)&&Ae.length===1,isUsingBindings:U,hasParentPattern:ne,hasContentOnlyLocking:ve,showShuffleButton:qe,showSlots:!qe,showGroupButtons:!qe,showLockButtons:!qe,showSwitchSectionStyleButton:qe,hasFixedToolbar:ue().hasFixedToolbar,isNavigationMode:de()}},[]),k=x.useRef(null),S=x.useRef(),C=J7({ref:S}),R=!Yn("medium","<");if(!cMe())return null;const E=i.length>1,B=Qd(l)||Hh(l),N=oe("block-editor-block-contextual-toolbar",{"has-parent":p,"is-inverted-toolbar":y&&!M}),j=oe("block-editor-block-toolbar",{"is-synced":B,"is-connected":f});return a.jsx(oI,{focusEditorOnEscape:!0,className:N,"aria-label":m("Block tools"),variant:r==="toolbar"?void 0:r,focusOnMount:t,__experimentalInitialIndex:n,__experimentalOnIndexChange:o,children:a.jsxs("div",{ref:k,className:j,children:[p&&!E&&R&&a.jsx(dCt,{}),(d||E)&&!b&&a.jsx("div",{ref:S,...C,children:a.jsxs(Wn,{className:"block-editor-block-toolbar__block-controls",children:[a.jsx(ECt,{clientIds:i}),!E&&c&&_&&a.jsx(Sqt,{clientId:s}),a.jsx(cCt,{clientIds:i,hideDragHandle:e})]})}),!h&&d&&E&&A&&a.jsx(vqt,{}),g&&a.jsx(Yqt,{clientId:i[0]}),v&&a.jsx(NEt,{clientId:i[0]}),d&&z&&a.jsxs(a.Fragment,{children:[a.jsx(bt.Slot,{group:"parent",className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{group:"block",className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{group:"inline",className:"block-editor-block-toolbar__slot"}),a.jsx(bt.Slot,{group:"other",className:"block-editor-block-toolbar__slot"}),a.jsx($qt.Provider,{value:l?.name,children:a.jsx(nI.Slot,{})})]}),a.jsx(Fqt,{clientIds:i}),a.jsx(Dqt,{clientIds:i})]})},u)}function dI({hideDragHandle:e,variant:t}){return a.jsx(_ze,{hideDragHandle:e,variant:t,focusOnMount:void 0,__experimentalInitialIndex:void 0,__experimentalOnIndexChange:void 0})}function BEt({clientId:e,isTyping:t,__unstableContentRef:n}){const{capturingClientId:o,isInsertionPointVisible:r,lastClientId:s}=Fge(e),i=x.useRef();x.useEffect(()=>{i.current=void 0},[e]);const{stopTyping:c}=Oe(Q),l=x.useRef(!1);p0("core/block-editor/focus-toolbar",()=>{l.current=!0,c(!0)}),x.useEffect(()=>{l.current=!1});const u=o||e,d=Dge({contentElement:n?.current,clientId:u});return!t&&a.jsx(E6t,{clientId:u,bottomClientId:s,className:oe("block-editor-block-list__block-popover",{"is-insertion-point-visible":r}),resize:!1,...d,children:a.jsx(_ze,{focusOnMount:l.current,__experimentalInitialIndex:i.current,__experimentalOnIndexChange:p=>{i.current=p},variant:"toolbar"})})}function LEt({onClick:e}){return a.jsx(Ce,{variant:"primary",icon:Fs,size:"compact",className:oe("block-editor-button-pattern-inserter__button","block-editor-block-tools__zoom-out-mode-inserter-button"),onClick:e,label:We("Add pattern","Generic label for pattern inserter button")})}function PEt(){const[e,t]=x.useState(!1),{hasSelection:n,blockOrder:o,setInserterIsOpened:r,sectionRootClientId:s,selectedBlockClientId:i,blockInsertionPoint:c,insertionPointVisible:l}=G(h=>{const{getSettings:g,getBlockOrder:z,getSelectionStart:A,getSelectedBlockClientId:_,getSectionRootClientId:v,getBlockInsertionPoint:M,isBlockInsertionPointVisible:y}=ct(h(Q)),k=v();return{hasSelection:!!A().clientId,blockOrder:z(k),sectionRootClientId:k,setInserterIsOpened:g().__experimentalSetIsInserterOpened,selectedBlockClientId:_(),blockInsertionPoint:M(),insertionPointVisible:y()}},[]),{showInsertionPoint:u}=ct(Oe(Q));if(x.useEffect(()=>{const h=setTimeout(()=>{t(!0)},500);return()=>{clearTimeout(h)}},[]),!e||!n)return null;const d=i,f=o.findIndex(h=>i===h)+1,b=o[f];return l&&c?.index===f?null:a.jsx(kge,{previousClientId:d,nextClientId:b,children:a.jsx(LEt,{onClick:()=>{r({rootClientId:s,insertionIndex:f,tab:"patterns",category:"all"}),u(s,f,{operation:"insert"})}})})}function jEt(){return G(e=>{const{getSelectedBlockClientId:t,getFirstMultiSelectedBlockClientId:n,getBlock:o,getBlockMode:r,getSettings:s,__unstableGetEditorMode:i,isTyping:c}=ct(e(Q)),l=t()||n(),u=o(l),d=i(),p=!!l&&!!u,f=p&&El(u)&&r(l)!=="html",b=l&&!c()&&d!=="navigation"&&f,h=!s().hasFixedToolbar&&!b&&p&&!f;return{showEmptyBlockSideInserter:b,showBlockToolbarPopover:h}},[])}function IEt(e){const{getSelectedBlockClientId:t,getFirstMultiSelectedBlockClientId:n,getSettings:o,isTyping:r,isDragging:s,isZoomOut:i}=ct(e(Q));return{clientId:t()||n(),hasFixedToolbar:o().hasFixedToolbar,isTyping:r(),isZoomOutMode:i(),isDragging:s()}}function rte({children:e,__unstableContentRef:t,...n}){const{clientId:o,hasFixedToolbar:r,isTyping:s,isZoomOutMode:i,isDragging:c}=G(IEt,[]),l=T_(),{getBlocksByClientId:u,getSelectedBlockClientIds:d,getBlockRootClientId:p,isGroupable:f}=G(Q),{getGroupingBlockName:b}=G(kt),{showEmptyBlockSideInserter:h,showBlockToolbarPopover:g}=jEt(),{duplicateBlocks:z,removeBlocks:A,replaceBlocks:_,insertAfterBlock:v,insertBeforeBlock:M,selectBlock:y,moveBlocksUp:k,moveBlocksDown:S,expandBlock:C}=ct(Oe(Q));function R(B){if(!B.defaultPrevented){if(l("core/block-editor/move-up",B)||l("core/block-editor/move-down",B)){const N=d();if(N.length){B.preventDefault();const j=p(N[0]);(l("core/block-editor/move-up",B)?"up":"down")==="up"?k(N,j):S(N,j);const P=Array.isArray(N)?N.length:1,$=xe(Dn("%d block moved.","%d blocks moved.",N.length),P);Yt($)}}else if(l("core/block-editor/duplicate",B)){const N=d();N.length&&(B.preventDefault(),z(N))}else if(l("core/block-editor/remove",B)){const N=d();N.length&&(B.preventDefault(),A(N))}else if(l("core/block-editor/insert-after",B)){const N=d();N.length&&(B.preventDefault(),v(N[N.length-1]))}else if(l("core/block-editor/insert-before",B)){const N=d();N.length&&(B.preventDefault(),M(N[0]))}else if(l("core/block-editor/unselect",B)){if(B.target.closest("[role=toolbar]"))return;const N=d();N.length>1&&(B.preventDefault(),y(N[0]))}else if(l("core/block-editor/collapse-list-view",B)){if(md(B.target)||md(B.target?.contentWindow?.document?.activeElement))return;B.preventDefault(),C(o)}else if(l("core/block-editor/group",B)){const N=d();if(N.length>1&&f(N)){B.preventDefault();const j=u(N),I=b(),P=Kr(j,I);_(N,P),Yt(m("Selected blocks are grouped."))}}}}const T=Ux(t),E=Ux(t);return a.jsx("div",{...n,onKeyDown:R,children:a.jsxs(K7.Provider,{value:x.useRef(!1),children:[!s&&!i&&a.jsx(P6t,{__unstableContentRef:t}),h&&a.jsx(tCt,{__unstableContentRef:t,clientId:o}),g&&a.jsx(BEt,{__unstableContentRef:t,clientId:o,isTyping:s}),!i&&!r&&a.jsx(Io.Slot,{name:"block-toolbar",ref:T}),e,a.jsx(Io.Slot,{name:"__unstable-block-tools-after",ref:E}),i&&!c&&a.jsx(PEt,{__unstableContentRef:t})]})})}function DEt(e={},t){switch(t.type){case"REGISTER_COMMAND":return{...e,[t.name]:{name:t.name,label:t.label,searchLabel:t.searchLabel,context:t.context,callback:t.callback,icon:t.icon}};case"UNREGISTER_COMMAND":{const{[t.name]:n,...o}=e;return o}}return e}function FEt(e={},t){switch(t.type){case"REGISTER_COMMAND_LOADER":return{...e,[t.name]:{name:t.name,context:t.context,hook:t.hook}};case"UNREGISTER_COMMAND_LOADER":{const{[t.name]:n,...o}=e;return o}}return e}function $Et(e=!1,t){switch(t.type){case"OPEN":return!0;case"CLOSE":return!1}return e}function VEt(e="root",t){switch(t.type){case"SET_CONTEXT":return t.context}return e}const HEt=J0({commands:DEt,commandLoaders:FEt,isOpen:$Et,context:VEt});function UEt(e){return{type:"REGISTER_COMMAND",...e}}function XEt(e){return{type:"UNREGISTER_COMMAND",name:e}}function GEt(e){return{type:"REGISTER_COMMAND_LOADER",...e}}function KEt(e){return{type:"UNREGISTER_COMMAND_LOADER",name:e}}function YEt(){return{type:"OPEN"}}function ZEt(){return{type:"CLOSE"}}const QEt=Object.freeze(Object.defineProperty({__proto__:null,close:ZEt,open:YEt,registerCommand:UEt,registerCommandLoader:GEt,unregisterCommand:XEt,unregisterCommandLoader:KEt},Symbol.toStringTag,{value:"Module"})),JEt=It((e,t=!1)=>Object.values(e.commands).filter(n=>{const o=n.context&&n.context===e.context;return t?o:!o}),e=>[e.commands,e.context]),e8t=It((e,t=!1)=>Object.values(e.commandLoaders).filter(n=>{const o=n.context&&n.context===e.context;return t?o:!o}),e=>[e.commandLoaders,e.context]);function t8t(e){return e.isOpen}function n8t(e){return e.context}const o8t=Object.freeze(Object.defineProperty({__proto__:null,getCommandLoaders:e8t,getCommands:JEt,getContext:n8t,isOpen:t8t},Symbol.toStringTag,{value:"Module"}));function r8t(e){return{type:"SET_CONTEXT",context:e}}const s8t=Object.freeze(Object.defineProperty({__proto__:null,setContext:r8t},Symbol.toStringTag,{value:"Module"})),{lock:i8t,unlock:kze}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/commands"),a8t="core/commands",Ef=x1(a8t,{reducer:HEt,actions:QEt,selectors:o8t});Us(Ef);kze(Ef).registerPrivateActions(s8t);m("Search commands and settings");function c8t(e){const{getContext:t}=G(Ef),n=x.useRef(t()),{setContext:o}=kze(Oe(Ef));x.useEffect(()=>{o(e)},[e,o]),x.useEffect(()=>{const r=n.current;return()=>o(r)},[o])}const Sze={};i8t(Sze,{useCommandContext:c8t});function l8t(e){const{registerCommand:t,unregisterCommand:n}=Oe(Ef),o=x.useRef(e.callback);x.useEffect(()=>{o.current=e.callback},[e.callback]),x.useEffect(()=>{if(!e.disabled)return t({name:e.name,context:e.context,label:e.label,searchLabel:e.searchLabel,icon:e.icon,callback:(...r)=>o.current(...r)}),()=>{n(e.name)}},[e.name,e.label,e.searchLabel,e.icon,e.context,e.disabled,t,n])}function xi(e){const{registerCommandLoader:t,unregisterCommandLoader:n}=Oe(Ef);x.useEffect(()=>{if(!e.disabled)return t({name:e.name,hook:e.hook,context:e.context}),()=>{n(e.name)}},[e.name,e.hook,e.context,e.disabled,t,n])}const u8t=()=>function(){const{replaceBlocks:t,multiSelect:n}=Oe(Q),{blocks:o,clientIds:r,canRemove:s,possibleBlockTransformations:i,invalidSelection:c}=G(b=>{const{getBlockRootClientId:h,getBlockTransformItems:g,getSelectedBlockClientIds:z,getBlocksByClientId:A,canRemoveBlocks:_}=b(Q),v=z(),M=A(v);if(M.filter(k=>!k).length>0)return{invalidSelection:!0};const y=h(v[0]);return{blocks:M,clientIds:v,possibleBlockTransformations:g(M,y),canRemove:_(v),invalidSelection:!1}},[]);if(c)return{isLoading:!1,commands:[]};const l=o.length===1&&Hh(o[0]);function u(b){b.length>1&&n(b[0].clientId,b[b.length-1].clientId)}function d(b){const h=Kr(o,b);t(r,h),u(h)}const p=!!i.length&&s&&!l;return!r||r.length<1||!p?{isLoading:!1,commands:[]}:{isLoading:!1,commands:i.map(b=>{const{name:h,title:g,icon:z}=b;return{name:"core/block-editor/transform-to-"+h.replace("/","-"),label:xe(m("Transform to %s"),g),icon:a.jsx(Zn,{icon:z}),callback:({close:A})=>{d(h),A()}}})}},d8t=()=>function(){const{clientIds:t,isUngroupable:n,isGroupable:o}=G(S=>{const{getSelectedBlockClientIds:C,isUngroupable:R,isGroupable:T}=S(Q);return{clientIds:C(),isUngroupable:R(),isGroupable:T()}},[]),{canInsertBlockType:r,getBlockRootClientId:s,getBlocksByClientId:i,canRemoveBlocks:c}=G(Q),{getDefaultBlockName:l,getGroupingBlockName:u}=G(kt),d=i(t),{removeBlocks:p,replaceBlocks:f,duplicateBlocks:b,insertAfterBlock:h,insertBeforeBlock:g}=Oe(Q),z=()=>{if(!d.length)return;const S=u(),C=Kr(d,S);C&&f(t,C)},A=()=>{if(!d.length)return;const S=d[0].innerBlocks;S.length&&f(t,S)};if(!t||t.length<1)return{isLoading:!1,commands:[]};const _=s(t[0]),v=r(l(),_),M=d.every(S=>!!S&&Et(S.name,"multiple",!0)&&r(S.name,_)),y=c(t),k=[];return M&&k.push({name:"duplicate",label:m("Duplicate"),callback:()=>b(t,!0),icon:H3}),v&&k.push({name:"add-before",label:m("Add before"),callback:()=>{const S=Array.isArray(t)?t[0]:S;g(S)},icon:Fs},{name:"add-after",label:m("Add after"),callback:()=>{const S=Array.isArray(t)?t[t.length-1]:S;h(S)},icon:Fs}),o&&k.push({name:"Group",label:m("Group"),callback:z,icon:Zf}),n&&k.push({name:"ungroup",label:m("Ungroup"),callback:A,icon:cJe}),y&&k.push({name:"remove",label:m("Delete"),callback:()=>p(t,!0),icon:K3}),{isLoading:!1,commands:k.map(S=>({...S,name:"core/block-editor/action-"+S.name,callback:({close:C})=>{S.callback(),C()}}))}},p8t=()=>{xi({name:"core/block-editor/blockTransforms",hook:u8t()}),xi({name:"core/block-editor/blockQuickActions",hook:d8t(),context:"block-selection-edit"})},f8t={ignoredSelectors:[/\.editor-styles-wrapper/gi]};function b8t({shouldIframe:e=!0,height:t="300px",children:n=a.jsx(j_,{}),styles:o,contentRef:r,iframeProps:s}){p8t();const i=Yn("medium","<"),c=Tge(),l=T7(),u=x.useRef(),d=xn([r,l,u]),p=G(b=>ct(b(Q)).getZoomLevel(),[]),f=p!==100&&!i?{scale:p,frameSize:"40px"}:{};return e?a.jsx(rte,{__unstableContentRef:u,className:"block-editor-block-canvas",style:{height:t,display:"flex"},children:a.jsxs(Eme,{...s,...f,ref:c,contentRef:d,style:{...s?.style},name:"editor-canvas",children:[a.jsx(Hx,{styles:o}),n]})}):a.jsxs(rte,{__unstableContentRef:u,className:"block-editor-block-canvas",style:{height:t},children:[a.jsx(Hx,{styles:o,scope:":where(.editor-styles-wrapper)",transformOptions:f8t}),a.jsx(iwt,{ref:d,className:"editor-styles-wrapper",tabIndex:-1,children:n})]})}const Cze=x.createContext({}),Q_=()=>x.useContext(Cze);function qze({children:e,...t}){const n=x.useRef();return x.useEffect(()=>{n.current&&(n.current.textContent=n.current.textContent)},[e]),a.jsx("div",{hidden:!0,...t,ref:n,children:e})}const Rze=x.forwardRef(({nestingLevel:e,blockCount:t,clientId:n,...o},r)=>{const{insertedBlock:s,setInsertedBlock:i}=Q_(),c=vt(Rze),l=G(b=>{const{getTemplateLock:h,isZoomOut:g}=ct(b(Q));return!!h(n)||g()},[n]),u=Fd({clientId:n,context:"list-view"}),d=Fd({clientId:s?.clientId,context:"list-view"});if(x.useEffect(()=>{d?.length&&Yt(xe(m("%s block inserted"),d),"assertive")},[d]),l)return null;const p=`list-view-appender__${c}`,f=xe(m("Append to %1$s block at position %2$d, Level %3$d"),u,t+1,e);return a.jsxs("div",{className:"list-view-appender",children:[a.jsx(xm,{ref:r,rootClientId:n,position:"bottom right",isAppender:!0,selectBlockOnInsert:!1,shouldDirectInsert:!1,__experimentalIsQuick:!0,...o,toggleProps:{"aria-describedby":p},onSelectOrClose:b=>{b?.clientId&&i(b)}}),a.jsx(qze,{id:p,children:f})]})}),h8t=pxt(z2e),m8t=x.forwardRef(({isDragged:e,isSelected:t,position:n,level:o,rowCount:r,children:s,className:i,path:c,...l},u)=>{const d=pme({clientId:l["data-block"],enableAnimation:!0,triggerAnimationOnChange:c}),p=xn([u,d]);return a.jsx(h8t,{ref:p,className:oe("block-editor-list-view-leaf",i),level:o,positionInSet:n,setSize:r,isExpanded:void 0,...l,children:s})});function g8t({isSelected:e,selectedClientIds:t,rowItemRef:n}){const o=t.length===1;x.useLayoutEffect(()=>{if(!e||!o||!n.current)return;const r=ps(n.current),{ownerDocument:s}=n.current;if(r===s.body||r===s.documentElement||!r)return;const c=n.current.getBoundingClientRect(),l=r.getBoundingClientRect();(c.top<l.top||c.bottom>l.bottom)&&n.current.scrollIntoView()},[e,o,n])}function Tze({onClick:e}){return a.jsx("span",{className:"block-editor-list-view__expander",onClick:t=>e(t,{forceToggle:!0}),"aria-hidden":"true","data-testid":"list-view-expander",children:a.jsx(wn,{icon:jt()?Ew:Af})})}const M8t=3;function Eze(e){if(e.name==="core/image"&&e.attributes?.url)return{url:e.attributes.url,alt:e.attributes.alt,clientId:e.clientId}}function z8t(e){if(e.name!=="core/gallery"||!e.innerBlocks)return[];const t=[];for(const n of e.innerBlocks){const o=Eze(n);if(o&&t.push(o),t.length>=M8t)return t}return t}function O8t(e,t){const n=Eze(e);return n?[n]:t?[]:z8t(e)}function y8t({clientId:e,isExpanded:t}){const{block:n}=G(r=>({block:r(Q).getBlock(e)}),[e]);return x.useMemo(()=>O8t(n,t),[n,t])}const{Badge:A8t}=ct(tr);function v8t({className:e,block:{clientId:t},onClick:n,onContextMenu:o,onMouseDown:r,onToggleExpanded:s,tabIndex:i,onFocus:c,onDragStart:l,onDragEnd:u,draggable:d,isExpanded:p,ariaDescribedBy:f},b){const h=ji(t),g=Fd({clientId:t,context:"list-view"}),{isLocked:z}=km(t),{isContentOnly:A}=G(S=>({isContentOnly:S(Q).getBlockEditingMode(t)==="contentOnly"}),[t]),_=z&&!A,v=h?.positionType==="sticky",M=y8t({clientId:t,isExpanded:p}),y=S=>{S.dataTransfer.clearData(),l?.(S)};function k(S){(S.keyCode===Gr||S.keyCode===$N)&&n(S)}return a.jsxs("a",{className:oe("block-editor-list-view-block-select-button",e),onClick:n,onContextMenu:o,onKeyDown:k,onMouseDown:r,ref:b,tabIndex:i,onFocus:c,onDragStart:y,onDragEnd:u,draggable:d,href:`#block-${t}`,"aria-describedby":f,"aria-expanded":p,children:[a.jsx(Tze,{onClick:s}),a.jsx(Zn,{icon:h?.icon,showColors:!0,context:"list-view"}),a.jsxs(Ot,{alignment:"center",className:"block-editor-list-view-block-select-button__label-wrapper",justify:"flex-start",spacing:1,children:[a.jsx("span",{className:"block-editor-list-view-block-select-button__title",children:a.jsx(zs,{ellipsizeMode:"auto",children:g})}),h?.anchor&&a.jsx("span",{className:"block-editor-list-view-block-select-button__anchor-wrapper",children:a.jsx(A8t,{className:"block-editor-list-view-block-select-button__anchor",children:h.anchor})}),v&&a.jsx("span",{className:"block-editor-list-view-block-select-button__sticky",children:a.jsx(wn,{icon:OQe})}),M.length?a.jsx("span",{className:"block-editor-list-view-block-select-button__images","aria-hidden":!0,children:M.map((S,C)=>a.jsx("span",{className:"block-editor-list-view-block-select-button__image",style:{backgroundImage:`url(${S.url})`,zIndex:M.length-C}},S.clientId))}):null,_&&a.jsx("span",{className:"block-editor-list-view-block-select-button__lock",children:a.jsx(wn,{icon:bde})})]})]})}const x8t=x.forwardRef(v8t),w8t=x.forwardRef(({onClick:e,onToggleExpanded:t,block:n,isSelected:o,position:r,siblingBlockCount:s,level:i,isExpanded:c,selectedClientIds:l,...u},d)=>{const{clientId:p}=n,{AdditionalBlockContent:f,insertedBlock:b,setInsertedBlock:h}=Q_(),g=l.includes(p)?l:[p];return a.jsxs(a.Fragment,{children:[f&&a.jsx(f,{block:n,insertedBlock:b,setInsertedBlock:h}),a.jsx(Vge,{appendToOwnerDocument:!0,clientIds:g,cloneClassname:"block-editor-list-view-draggable-chip",children:({draggable:z,onDragStart:A,onDragEnd:_})=>a.jsx(x8t,{ref:d,className:"block-editor-list-view-block-contents",block:n,onClick:e,onToggleExpanded:t,isSelected:o,position:r,siblingBlockCount:s,level:i,draggable:z,onDragStart:A,onDragEnd:_,isExpanded:c,...u})})]})}),_8t=(e,t,n)=>xe(m("Block %1$d of %2$d, Level %3$d."),e,t,n),k8t=(e,t)=>[e?.positionLabel?`${xe(m("Position: %s"),e.positionLabel)}.`:void 0,t?m("This block is locked."):void 0].filter(Boolean).join(" "),S8t=(e,t)=>Array.isArray(t)&&t.length?t.indexOf(e)!==-1:t===e;function C8t(e,t,n,o){const r=[...n,e],s=[...o,t],i=Math.min(r.length,s.length)-1,c=r[i],l=s[i];return{start:c,end:l}}function pI(e,t){const n=()=>{const r=t?.querySelector(`[role=row][data-block="${e}"]`);return r?Xr.focusable.find(r)[0]:null};let o=n();o?o.focus():window.requestAnimationFrame(()=>{o=n(),o&&o.focus()})}function q8t({blockIndexes:e,blockDropTargetIndex:t,blockDropPosition:n,clientId:o,firstDraggedBlockIndex:r,isDragged:s}){let i,c,l;if(!s){c=!1;const u=e[o];l=u>r,t!=null&&r!==void 0?u!==void 0&&(u>=r&&u<t?i="up":u<r&&u>=t?i="down":i="normal",c=typeof t=="number"&&t-1===u&&n==="inside"):t===null&&r!==void 0?u!==void 0&&u>=r?i="up":i="normal":t!=null&&r===void 0?u!==void 0&&(u<t?i="normal":i="down"):t===null&&(i="normal")}return{displacement:i,isNesting:c,isAfterDraggedBlocks:l}}function Wze({block:{clientId:e},displacement:t,isAfterDraggedBlocks:n,isDragged:o,isNesting:r,isSelected:s,isBranchSelected:i,selectBlock:c,position:l,level:u,rowCount:d,siblingBlockCount:p,showBlockMovers:f,path:b,isExpanded:h,selectedClientIds:g,isSyncedBranch:z}){const A=x.useRef(null),_=x.useRef(null),v=x.useRef(null),[M,y]=x.useState(!1),[k,S]=x.useState(),{isLocked:C,canEdit:R,canMove:T}=km(e),E=s&&g[0]===e,B=s&&g[g.length-1]===e,{toggleBlockHighlight:N,duplicateBlocks:j,multiSelect:I,replaceBlocks:P,removeBlocks:$,insertAfterBlock:F,insertBeforeBlock:X,setOpenedBlockSettingsMenu:Z}=ct(Oe(Q)),{canInsertBlockType:V,getSelectedBlockClientIds:ee,getPreviousBlockClientId:te,getBlockRootClientId:J,getBlockOrder:ue,getBlockParents:ce,getBlocksByClientId:me,canRemoveBlocks:de,isGroupable:Ae}=G(Q),{getGroupingBlockName:ye}=G(kt),Ne=ji(e),{block:je,blockName:ie,allowRightClickOverrides:we}=G(Rt=>{const{getBlock:Qe,getBlockName:xt,getSettings:Gt}=Rt(Q);return{block:Qe(e),blockName:xt(e),allowRightClickOverrides:Gt().allowRightClickOverrides}},[e]),re=Et(ie,"__experimentalToolbar",!0),ke=`list-view-block-select-button__description-${vt(Wze)}`,{expand:Se,collapse:se,collapseAll:L,BlockSettingsMenu:U,listViewInstanceId:ne,expandedState:ve,setInsertedBlock:qe,treeGridElementRef:Pe,rootClientId:rt}=Q_(),qt=T_();function wt(){const Rt=ee(),Qe=Rt.includes(e),xt=Qe?Rt[0]:e,Gt=J(xt);return{blocksToUpdate:Qe?Rt:[e],firstBlockClientId:xt,firstBlockRootClientId:Gt,selectedBlockClientIds:Rt}}async function Bt(Rt){if(Rt.defaultPrevented||Rt.target.closest("[role=dialog]"))return;const Qe=[Mc,zl].includes(Rt.keyCode);if(qt("core/block-editor/unselect",Rt)&&g.length>0)Rt.stopPropagation(),Rt.preventDefault(),c(Rt,void 0);else if(Qe||qt("core/block-editor/remove",Rt)){var xt;const{blocksToUpdate:Gt,firstBlockClientId:On,firstBlockRootClientId:$n,selectedBlockClientIds:Jn}=wt();if(!de(Gt))return;let pr=(xt=te(On))!==null&&xt!==void 0?xt:$n;$(Gt,!1);const O0=Jn.length>0&&ee().length===0;pr||(pr=ue()[0]),fe(pr,O0)}else if(qt("core/block-editor/duplicate",Rt)){Rt.preventDefault();const{blocksToUpdate:Gt,firstBlockRootClientId:On}=wt();if(me(Gt).every(Jn=>!!Jn&&Et(Jn.name,"multiple",!0)&&V(Jn.name,On))){const Jn=await j(Gt,!1);Jn?.length&&fe(Jn[0],!1)}}else if(qt("core/block-editor/insert-before",Rt)){Rt.preventDefault();const{blocksToUpdate:Gt}=wt();await X(Gt[0]);const On=ee();Z(void 0),fe(On[0],!1)}else if(qt("core/block-editor/insert-after",Rt)){Rt.preventDefault();const{blocksToUpdate:Gt}=wt();await F(Gt.at(-1));const On=ee();Z(void 0),fe(On[0],!1)}else if(qt("core/block-editor/select-all",Rt)){Rt.preventDefault();const{firstBlockRootClientId:Gt,selectedBlockClientIds:On}=wt(),$n=ue(Gt);if(!$n.length)return;if(ds(On,$n)&&Gt&&Gt!==rt){fe(Gt,!0);return}I($n[0],$n[$n.length-1],null)}else if(qt("core/block-editor/collapse-list-view",Rt)){Rt.preventDefault();const{firstBlockClientId:Gt}=wt(),On=ce(Gt,!1);L(),Se(On)}else if(qt("core/block-editor/group",Rt)){const{blocksToUpdate:Gt}=wt();if(Gt.length>1&&Ae(Gt)){Rt.preventDefault();const On=me(Gt),$n=ye(),Jn=Kr(On,$n);P(Gt,Jn),Yt(m("Selected blocks are grouped."));const pr=ee();Z(void 0),fe(pr[0],!1)}}}const ae=x.useCallback(()=>{y(!0),N(e,!0)},[e,y,N]),H=x.useCallback(()=>{y(!1),N(e,!1)},[e,y,N]),Y=x.useCallback(Rt=>{c(Rt,e),Rt.preventDefault()},[e,c]),fe=x.useCallback((Rt,Qe)=>{Qe&&c(void 0,Rt,null,null),pI(Rt,Pe?.current)},[c,Pe]),Re=x.useCallback(Rt=>{Rt.preventDefault(),Rt.stopPropagation(),h===!0?se(e):h===!1&&Se(e)},[e,Se,se,h]),be=x.useCallback(Rt=>{re&&we&&(v.current?.click(),S(new window.DOMRect(Rt.clientX,Rt.clientY,0,0)),Rt.preventDefault())},[we,v,re]),ze=x.useCallback(Rt=>{we&&Rt.button===2&&Rt.preventDefault()},[we]),nt=x.useMemo(()=>{const{ownerDocument:Rt}=_?.current||{};if(!(!k||!Rt))return{ownerDocument:Rt,getBoundingClientRect(){return k}}},[k]),Mt=x.useCallback(()=>{S(void 0)},[S]);if(g8t({isSelected:s,rowItemRef:_,selectedClientIds:g}),!je)return null;const ot=_8t(l,p,u),Ue=k8t(Ne,C),yt=p>0,fn=f&&yt,Ln=oe("block-editor-list-view-block__mover-cell",{"is-visible":M||s}),Mo=oe("block-editor-list-view-block__menu-cell",{"is-visible":M||E});let rr;fn?rr=2:re||(rr=3);const Jo=oe({"is-selected":s,"is-first-selected":E,"is-last-selected":B,"is-branch-selected":i,"is-synced-branch":z,"is-dragging":o,"has-single-cell":!re,"is-synced":Ne?.isSynced,"is-draggable":T,"is-displacement-normal":t==="normal","is-displacement-up":t==="up","is-displacement-down":t==="down","is-after-dragged-blocks":n,"is-nesting":r}),To=g.includes(e)?g:[e],Br=s&&g.length===1;return a.jsxs(m8t,{className:Jo,isDragged:o,onKeyDown:Bt,onMouseEnter:ae,onMouseLeave:H,onFocus:ae,onBlur:H,level:u,position:l,rowCount:d,path:b,id:`list-view-${ne}-block-${e}`,"data-block":e,"data-expanded":R?h:void 0,ref:_,children:[a.jsx(p4,{className:"block-editor-list-view-block__contents-cell",colSpan:rr,ref:A,"aria-selected":!!s,children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsxs("div",{className:"block-editor-list-view-block__contents-container",children:[a.jsx(w8t,{block:je,onClick:Y,onContextMenu:be,onMouseDown:ze,onToggleExpanded:Re,isSelected:s,position:l,siblingBlockCount:p,level:u,ref:Rt,tabIndex:Br?0:Qe,onFocus:xt,isExpanded:R?h:void 0,selectedClientIds:g,ariaDescribedBy:ke}),a.jsx(qze,{id:ke,children:[ot,Ue].filter(Boolean).join(" ")})]})}),fn&&a.jsx(a.Fragment,{children:a.jsxs(p4,{className:Ln,withoutGridItem:!0,children:[a.jsx(uW,{children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsx(Hge,{orientation:"vertical",clientIds:[e],ref:Rt,tabIndex:Qe,onFocus:xt})}),a.jsx(uW,{children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsx(Uge,{orientation:"vertical",clientIds:[e],ref:Rt,tabIndex:Qe,onFocus:xt})})]})}),re&&U&&a.jsx(p4,{className:Mo,"aria-selected":!!s,ref:v,children:({ref:Rt,tabIndex:Qe,onFocus:xt})=>a.jsx(U,{clientIds:To,block:je,icon:Wc,label:m("Options"),popoverProps:{anchor:nt},toggleProps:{ref:Rt,className:"block-editor-list-view-block__menu",tabIndex:Qe,onClick:Mt,onFocus:xt},disableOpenOnArrowDown:!0,expand:Se,expandedState:ve,setInsertedBlock:qe,__experimentalSelectBlock:fe})})]})}const R8t=x.memo(Wze);function Nze(e,t,n,o){var r;return n?.includes(e.clientId)?0:((r=t[e.clientId])!==null&&r!==void 0?r:o)?1+e.innerBlocks.reduce(T8t(t,n,o),0):1}const T8t=(e,t,n)=>(o,r)=>{var s;return t?.includes(r.clientId)?o:((s=e[r.clientId])!==null&&s!==void 0?s:n)&&r.innerBlocks.length>0?o+Nze(r,e,t,n):o+1},E8t=()=>{};function Bze(e){const{blocks:t,selectBlock:n=E8t,showBlockMovers:o,selectedClientIds:r,level:s=1,path:i="",isBranchSelected:c=!1,listPosition:l=0,fixedListWindow:u,isExpanded:d,parentId:p,shouldShowInnerBlocks:f=!0,isSyncedBranch:b=!1,showAppender:h=!0}=e,g=ji(p),z=b||!!g?.isSynced,A=G(N=>p?N(Q).canEditBlock(p):!0,[p]),{blockDropPosition:_,blockDropTargetIndex:v,firstDraggedBlockIndex:M,blockIndexes:y,expandedState:k,draggedClientIds:S}=Q_(),C=x.useRef();if(!A)return null;const R=h&&s===1,T=t.filter(Boolean),E=T.length,B=R?E+1:E;return C.current=l,a.jsxs(a.Fragment,{children:[T.map((N,j)=>{var I;const{clientId:P,innerBlocks:$}=N;j>0&&(C.current+=Nze(T[j-1],k,S,d));const F=!!S?.includes(P),{displacement:X,isAfterDraggedBlocks:Z,isNesting:V}=q8t({blockIndexes:y,blockDropTargetIndex:v,blockDropPosition:_,clientId:P,firstDraggedBlockIndex:M,isDragged:F}),{itemInView:ee}=u,te=ee(C.current),J=j+1,ue=i.length>0?`${i}_${J}`:`${J}`,ce=!!$?.length,me=ce&&f?(I=k[P])!==null&&I!==void 0?I:d:void 0,de=S8t(P,r),Ae=c||de&&ce,ye=F||te||de&&P===r[0]||j===0||j===E-1;return a.jsxs(N5,{value:!de,children:[ye&&a.jsx(R8t,{block:N,selectBlock:n,isSelected:de,isBranchSelected:Ae,isDragged:F,level:s,position:J,rowCount:B,siblingBlockCount:E,showBlockMovers:o,path:ue,isExpanded:F?!1:me,listPosition:C.current,selectedClientIds:r,isSyncedBranch:z,displacement:X,isAfterDraggedBlocks:Z,isNesting:V}),!ye&&a.jsx("tr",{children:a.jsx("td",{className:"block-editor-list-view-placeholder"})}),ce&&me&&!F&&a.jsx(Bze,{parentId:P,blocks:$,selectBlock:n,showBlockMovers:o,level:s+1,path:ue,listPosition:C.current+1,fixedListWindow:u,isBranchSelected:Ae,selectedClientIds:r,isExpanded:d,isSyncedBranch:z})]},P)}),R&&a.jsx(z2e,{level:s,setSize:B,positionInSet:B,isExpanded:!0,children:a.jsx(p4,{children:N=>a.jsx(Rze,{clientId:p,nestingLevel:s,blockCount:E,...N})})})]})}const W8t=x.memo(Bze);function N8t({draggedBlockClientId:e,listViewRef:t,blockDropTarget:n}){const o=ji(e),r=Fd({clientId:e,context:"list-view"}),{rootClientId:s,clientId:i,dropPosition:c}=n||{},[l,u]=x.useMemo(()=>{if(!t.current)return[];const _=s?t.current.querySelector(`[data-block="${s}"]`):void 0,v=i?t.current.querySelector(`[data-block="${i}"]`):void 0;return[_,v]},[t,s,i]),d=u||l,p=jt(),f=x.useCallback((_,v)=>{if(!d)return 0;let M=d.offsetWidth;const y=ps(d,"horizontal"),k=d.ownerDocument,S=y===k.body||y===k.documentElement;if(y&&!S){const C=y.getBoundingClientRect(),R=jt()?C.right-_.right:_.left-C.left,T=y.clientWidth;if(T<M+R&&(M=T-R),!p&&_.left+v<C.left)return M-=C.left-_.left,M;if(p&&_.right-v>C.right)return M-=_.right-C.right,M}return M-v},[p,d]),b=x.useMemo(()=>{if(!d)return{};const _=d.getBoundingClientRect();return{width:f(_,0)}},[f,d]),h=x.useMemo(()=>{if(!d)return{};const _=ps(d),v=d.ownerDocument,M=_===v.body||_===v.documentElement;if(_&&!M){const y=_.getBoundingClientRect(),k=d.getBoundingClientRect(),S=p?y.right-k.right:k.left-y.left;if(!p&&y.left>k.left)return{transform:`translateX( ${S}px )`};if(p&&y.right<k.right)return{transform:`translateX( ${S*-1}px )`}}return{}},[p,d]),g=x.useMemo(()=>{if(!l)return 1;const _=parseInt(l.getAttribute("aria-level"),10);return _?_+1:1},[l]),z=x.useMemo(()=>d?d.classList.contains("is-branch-selected"):!1,[d]),A=x.useMemo(()=>{if(!(!d||!(c==="top"||c==="bottom"||c==="inside")))return{contextElement:d,getBoundingClientRect(){const v=d.getBoundingClientRect();let M=v.left,y=0;const k=ps(d,"horizontal"),S=d.ownerDocument,C=k===S.body||k===S.documentElement;if(k&&!C){const E=k.getBoundingClientRect(),B=p?k.offsetWidth-k.clientWidth:0;M<E.left+B&&(M=E.left+B)}c==="top"?y=v.top-v.height*2:y=v.top;const R=f(v,0),T=v.height;return new window.DOMRect(M,y,R,T)}}},[d,c,f,p]);return d?a.jsx(Io,{animate:!1,anchor:A,focusOnMount:!1,className:"block-editor-list-view-drop-indicator--preview",variant:"unstyled",flip:!1,resize:!0,children:a.jsx("div",{style:b,className:oe("block-editor-list-view-drop-indicator__line",{"block-editor-list-view-drop-indicator__line--darker":z}),children:a.jsxs("div",{className:"block-editor-list-view-leaf","aria-level":g,children:[a.jsxs("div",{className:oe("block-editor-list-view-block-select-button","block-editor-list-view-block-contents"),style:h,children:[a.jsx(Tze,{onClick:()=>{}}),a.jsx(Zn,{icon:o?.icon,showColors:!0,context:"list-view"}),a.jsx(Ot,{alignment:"center",className:"block-editor-list-view-block-select-button__label-wrapper",justify:"flex-start",spacing:1,children:a.jsx("span",{className:"block-editor-list-view-block-select-button__title",children:a.jsx(zs,{ellipsizeMode:"auto",children:r})})})]}),a.jsx("div",{className:"block-editor-list-view-block__menu-cell"})]})})}):null}function B8t(){const{clearSelectedBlock:e,multiSelect:t,selectBlock:n}=Oe(Q),{getBlockName:o,getBlockParents:r,getBlockSelectionStart:s,getSelectedBlockClientIds:i,hasMultiSelection:c,hasSelectedBlock:l}=G(Q),{getBlockType:u}=G(kt);return{updateBlockSelection:x.useCallback(async(p,f,b,h)=>{if(!p?.shiftKey&&p?.keyCode!==gd){n(f,h);return}p.preventDefault();const g=p.type==="keydown"&&p.keyCode===gd,z=p.type==="keydown"&&(p.keyCode===cc||p.keyCode===Ps||p.keyCode===S2||p.keyCode===FM);if(!z&&!l()&&!c()){n(f,null);return}const A=i(),_=[...r(f),f];if((g||z&&!A.some(k=>_.includes(k)))&&await e(),!g){let k=s(),S=f;z&&(!l()&&!c()&&(k=f),b&&(S=b));const C=r(k),R=r(S),{start:T,end:E}=C8t(k,S,C,R);await t(T,E,null)}const v=i();if((p.keyCode===S2||p.keyCode===FM)&&v.length>1)return;const M=A.filter(k=>!v.includes(k));let y;if(M.length===1){const k=u(o(M[0]))?.title;k&&(y=xe(m("%s deselected."),k))}else M.length>1&&(y=xe(m("%s blocks deselected."),M.length));y&&Yt(y,"assertive")},[e,o,u,r,s,i,c,l,t,n])}}function L8t(e){return x.useMemo(()=>{const n={};let o=0;const r=s=>{s.forEach(i=>{n[i.clientId]=o,o++,i.innerBlocks.length>0&&r(i.innerBlocks)})};return r(e),n},[e])}function P8t({blocks:e,rootClientId:t}){return G(n=>{const{getDraggedBlockClientIds:o,getSelectedBlockClientIds:r,getEnabledClientIdsTree:s}=ct(n(Q));return{selectedClientIds:r(),draggedClientIds:o(),clientIdsTree:e??s(t)}},[e,t])}function j8t({collapseAll:e,expand:t}){const{expandedBlock:n,getBlockParents:o}=G(r=>{const{getBlockParents:s,getExpandedBlock:i}=ct(r(Q));return{expandedBlock:i(),getBlockParents:s}},[]);x.useEffect(()=>{if(n){const r=o(n,!1);e(),t(r)}},[e,t,n,o])}const Ml=24;function I8t(e,t,n=1,o=!1){const r=o?t.right-n*Ml:t.left+n*Ml;return o?e.x>r:e.x<r}function D8t(e,t,n=1,o=!1){const r=o?t.right-n*Ml:t.left+n*Ml,s=o?r-e.x:e.x-r,i=Math.round(s/Ml);return Math.abs(i)}function F8t(e,t){const n=[];let o=e;for(;o;)n.push({...o}),o=t.find(r=>r.clientId===o.rootClientId);return n}function Lze(e,t){const n=e[t+1];return n&&n.isDraggedBlock?Lze(e,t+1):n}function $8t(e,t,n=1,o=!1){const r=o?t.right-n*Ml:t.left+n*Ml;return(o?e.x<r-Ml:e.x>r+Ml)&&e.y<t.bottom}const V8t=["top","bottom"];function H8t(e,t,n=!1){let o,r,s,i,c;for(let p=0;p<e.length;p++){const f=e[p];if(f.isDraggedBlock)continue;const b=f.element.getBoundingClientRect(),[h,g]=pM(t,b,V8t),z=qge(t,b);if(s===void 0||h<s||z){s=h;const A=e.indexOf(f),_=e[A-1];if(g==="top"&&_&&_.rootClientId===f.rootClientId&&!_.isDraggedBlock?(r=_,o="bottom",i=_.element.getBoundingClientRect(),c=A-1):(r=f,o=g,i=b,c=A),z)break}}if(!r)return;const l=F8t(r,e),u=o==="bottom";if(u&&r.canInsertDraggedBlocksAsChild&&(r.innerBlockCount>0&&r.isExpanded||$8t(t,i,l.length,n))){const p=r.isExpanded?0:r.innerBlockCount||0;return{rootClientId:r.clientId,clientId:r.clientId,blockIndex:p,dropPosition:"inside"}}if(u&&r.rootClientId&&I8t(t,i,l.length,n)){const p=Lze(e,c),f=r.nestingLevel,b=p?p.nestingLevel:1;if(f&&b){const h=D8t(t,i,l.length,n),g=Math.max(Math.min(h,f-b),0);if(l[g]){let z=r.blockIndex;if(l[g].nestingLevel===p?.nestingLevel)z=p?.blockIndex;else for(let A=c;A>=0;A--){const _=e[A];if(_.rootClientId===l[g].rootClientId){z=_.blockIndex+1;break}}return{rootClientId:l[g].rootClientId,clientId:r.clientId,blockIndex:z,dropPosition:o}}}}if(!r.canInsertDraggedBlocksAsSibling)return;const d=u?1:0;return{rootClientId:r.rootClientId,clientId:r.clientId,blockIndex:r.blockIndex+d,dropPosition:o}}const U8t={leading:!1,trailing:!0};function X8t({dropZoneElement:e,expandedState:t,setExpandedState:n}){const{getBlockRootClientId:o,getBlockIndex:r,getBlockCount:s,getDraggedBlockClientIds:i,canInsertBlocks:c}=G(Q),[l,u]=x.useState(),{rootClientId:d,blockIndex:p}=l||{},f=Cge(d,p),b=jt(),h=Fr(d),g=x.useCallback((M,y)=>{const{rootClientId:k}=y||{};k&&y?.dropPosition==="inside"&&!M[k]&&n({type:"expand",clientIds:[k]})},[n]),z=_E(g,500,U8t);x.useEffect(()=>{if(l?.dropPosition!=="inside"||h!==l?.rootClientId){z.cancel();return}z(t,l)},[t,h,l,z]);const A=i(),_=_E(x.useCallback((M,y)=>{const k={x:M.clientX,y:M.clientY},S=!!A?.length,R=Array.from(y.querySelectorAll("[data-block]")).map(E=>{const B=E.dataset.block,N=E.dataset.expanded==="true",j=E.classList.contains("is-dragging"),I=parseInt(E.getAttribute("aria-level"),10),P=o(B);return{clientId:B,isExpanded:N,rootClientId:P,blockIndex:r(B),element:E,nestingLevel:I||void 0,isDraggedBlock:S?j:!1,innerBlockCount:s(B),canInsertDraggedBlocksAsSibling:S?c(A,P):!0,canInsertDraggedBlocksAsChild:S?c(A,B):!0}}),T=H8t(R,k,b);T&&u(T)},[c,A,s,r,o,b]),50);return{ref:E5({dropZoneElement:e,onDrop(M){_.cancel(),l&&f(M),u(void 0)},onDragLeave(){_.cancel(),u(null)},onDragOver(M){_(M,M.currentTarget)},onDragEnd(){_.cancel(),u(void 0)}}),target:l}}function G8t({firstSelectedBlockClientId:e,setExpandedState:t}){const[n,o]=x.useState(null),{selectedBlockParentClientIds:r}=G(s=>{const{getBlockParents:i}=s(Q);return{selectedBlockParentClientIds:i(e,!1)}},[e]);return x.useEffect(()=>{n!==e&&r?.length&&t({type:"expand",clientIds:r})},[e,r,n,t]),{setSelectedTreeId:o}}function K8t({selectBlock:e}){const t=Fn(),{getBlockOrder:n,getBlockRootClientId:o,getBlocksByClientId:r,getPreviousBlockClientId:s,getSelectedBlockClientIds:i,getSettings:c,canInsertBlockType:l,canRemoveBlocks:u}=G(Q),{flashBlock:d,removeBlocks:p,replaceBlocks:f,insertBlocks:b}=Oe(Q),h=E7();return Mn(g=>{function z(v,M){M&&e(void 0,v,null,null),pI(v,g)}function A(v){const M=i(),y=M.includes(v),k=y?M[0]:v,S=o(k);return{blocksToUpdate:y?M:[v],firstBlockClientId:k,firstBlockRootClientId:S,originallySelectedBlockClientIds:M}}function _(v){if(v.defaultPrevented||!g.contains(v.target.ownerDocument.activeElement))return;const y=v.target.ownerDocument.activeElement?.closest("[role=row]")?.dataset?.block;if(!y)return;const{blocksToUpdate:k,firstBlockClientId:S,firstBlockRootClientId:C,originallySelectedBlockClientIds:R}=A(y);if(k.length!==0){if(v.preventDefault(),v.type==="copy"||v.type==="cut"){k.length===1&&d(k[0]),h(v.type,k);const E=r(k);qme(v,E,t)}if(v.type==="cut"){var T;if(!u(k))return;let E=(T=s(S))!==null&&T!==void 0?T:C;p(k,!1);const B=R.length>0&&i().length===0;E||(E=n()[0]),z(E,B)}else if(v.type==="paste"){const{__experimentalCanUserUseUnfilteredHTML:E}=c(),B=nwt(v,E);if(k.length===1){const[N]=k;if(B.every(j=>l(j.name,N))){b(B,void 0,N),z(B[0]?.clientId,!1);return}}f(k,B,B.length-1,-1),z(B[0]?.clientId,!1)}}}return g.ownerDocument.addEventListener("copy",_),g.ownerDocument.addEventListener("cut",_),g.ownerDocument.addEventListener("paste",_),()=>{g.ownerDocument.removeEventListener("copy",_),g.ownerDocument.removeEventListener("cut",_),g.ownerDocument.removeEventListener("paste",_)}},[])}const Y8t=(e,t)=>t.type==="clear"?{}:Array.isArray(t.clientIds)?{...e,...t.clientIds.reduce((n,o)=>({...n,[o]:t.type==="expand"}),{})}:e,ste=32;function Pze({id:e,blocks:t,dropZoneElement:n,showBlockMovers:o=!1,isExpanded:r=!1,showAppender:s=!1,blockSettingsMenu:i=iMe,rootClientId:c,description:l,onSelect:u,additionalBlockContent:d},p){t&&Ke("`blocks` property in `wp.blockEditor.__experimentalListView`",{since:"6.3",alternative:"`rootClientId` property"});const f=vt(Pze),{clientIdsTree:b,draggedClientIds:h,selectedClientIds:g}=P8t({blocks:t,rootClientId:c}),z=L8t(b),{getBlock:A}=G(Q),{visibleBlockCount:_}=G(de=>{const{getGlobalBlockCount:Ae,getClientIdsOfDescendants:ye}=de(Q),Ne=h?.length>0?ye(h).length+1:0;return{visibleBlockCount:Ae()-Ne}},[h]),{updateBlockSelection:v}=B8t(),[M,y]=x.useReducer(Y8t,{}),[k,S]=x.useState(null),{setSelectedTreeId:C}=G8t({firstSelectedBlockClientId:g[0],setExpandedState:y}),R=x.useCallback((de,Ae,ye)=>{v(de,Ae,null,ye),C(Ae),u&&u(A(Ae))},[C,v,u,A]),{ref:T,target:E}=X8t({dropZoneElement:n,expandedState:M,setExpandedState:y}),B=x.useRef(),N=K8t({selectBlock:R}),j=xn([N,B,T,p]);x.useEffect(()=>{g?.length&&pI(g[0],B?.current)},[]);const I=x.useCallback(de=>{if(!de)return;const Ae=Array.isArray(de)?de:[de];y({type:"expand",clientIds:Ae})},[y]),P=x.useCallback(de=>{de&&y({type:"collapse",clientIds:[de]})},[y]),$=x.useCallback(()=>{y({type:"clear"})},[y]),F=x.useCallback(de=>{I(de?.dataset?.block)},[I]),X=x.useCallback(de=>{P(de?.dataset?.block)},[P]),Z=x.useCallback((de,Ae,ye)=>{de.shiftKey&&v(de,Ae?.dataset?.block,ye?.dataset?.block)},[v]);j8t({collapseAll:$,expand:I});const V=h?.[0],{blockDropTargetIndex:ee,blockDropPosition:te,firstDraggedBlockIndex:J}=x.useMemo(()=>{let de,Ae;if(E?.clientId){const ye=z[E.clientId];de=ye===void 0||E?.dropPosition==="top"?ye:ye+1}else E===null&&(de=null);if(V){const ye=z[V];Ae=ye===void 0||E?.dropPosition==="top"?ye:ye+1}return{blockDropTargetIndex:de,blockDropPosition:E?.dropPosition,firstDraggedBlockIndex:Ae}},[E,z,V]),ue=x.useMemo(()=>({blockDropPosition:te,blockDropTargetIndex:ee,blockIndexes:z,draggedClientIds:h,expandedState:M,expand:I,firstDraggedBlockIndex:J,collapse:P,collapseAll:$,BlockSettingsMenu:i,listViewInstanceId:f,AdditionalBlockContent:d,insertedBlock:k,setInsertedBlock:S,treeGridElementRef:B,rootClientId:c}),[te,ee,z,h,M,I,J,P,$,i,f,d,k,S,c]),[ce]=tCe(B,ste,_,{expandedState:M,useWindowing:!0,windowOverscan:40});if(!b.length&&!s)return null;const me=l&&`block-editor-list-view-description-${f}`;return a.jsxs(N5,{value:!0,children:[a.jsx(N8t,{draggedBlockClientId:V,listViewRef:B,blockDropTarget:E}),l&&a.jsx(qn,{id:me,children:l}),a.jsx(Yht,{id:e,className:oe("block-editor-list-view-tree",{"is-dragging":h?.length>0&&ee!==void 0}),"aria-label":m("Block navigation structure"),ref:j,onCollapseRow:X,onExpandRow:F,onFocusRow:Z,applicationAriaLabel:m("Block navigation structure"),"aria-describedby":me,style:{"--wp-admin--list-view-dragged-items-height":h?.length?`${ste*(h.length-1)}px`:null},children:a.jsx(Cze.Provider,{value:ue,children:a.jsx(W8t,{blocks:b,parentId:c,selectBlock:R,showBlockMovers:o,fixedListWindow:ce,selectedClientIds:g,isExpanded:r,showAppender:s})})})]})}const jze=x.forwardRef(Pze),Z8t=x.forwardRef((e,t)=>a.jsx(jze,{ref:t,...e,showAppender:!1,rootClientId:null,onSelect:null,additionalBlockContent:null,blockSettingsMenu:void 0}));function Q8t({genericPreviewBlock:e,style:t,className:n,activeStyle:o}){const r=on(e.name)?.example,s=eI(n,o,t),i=x.useMemo(()=>({...e,title:t.label||t.name,description:t.description,initialAttributes:{...e.attributes,className:s+" block-editor-block-styles__block-preview-container"},example:r}),[e,s]);return a.jsx(uge,{item:i})}const ite=()=>{};function Ize({clientId:e,onSwitch:t=ite,onHoverClassName:n=ite}){const{onSelect:o,stylesToRender:r,activeStyle:s,genericPreviewBlock:i,className:c}=tI({clientId:e,onSwitch:t}),[l,u]=x.useState(null),d=Yn("medium","<");if(!r||r.length===0)return null;const p=F1(u,250),f=h=>{o(h),n(null),u(null),p.cancel()},b=h=>{var g;if(l===h){p.cancel();return}p(h),n((g=h?.name)!==null&&g!==void 0?g:null)};return a.jsxs("div",{className:"block-editor-block-styles",children:[a.jsx("div",{className:"block-editor-block-styles__variants",children:r.map(h=>{const g=h.label||h.name;return a.jsx(Ce,{__next40pxDefaultSize:!0,className:oe("block-editor-block-styles__item",{"is-active":s.name===h.name}),variant:"secondary",label:g,onMouseEnter:()=>b(h),onFocus:()=>b(h),onMouseLeave:()=>b(null),onBlur:()=>b(null),onClick:()=>f(h),"aria-current":s.name===h.name,children:a.jsx(zs,{numberOfLines:1,className:"block-editor-block-styles__item-text",children:g})},h.name)})}),l&&!d&&a.jsx(Io,{placement:"left-start",offset:34,focusOnMount:!1,children:a.jsx("div",{className:"block-editor-block-styles__preview-panel",onMouseLeave:()=>b(null),children:a.jsx(Q8t,{activeStyle:s,className:c,genericPreviewBlock:i,style:l})})})]})}const ate={0:zde,1:XZe,2:GZe,3:KZe,4:YZe,5:ZZe,6:QZe};function cte({level:e}){return ate[e]?a.jsx(qo,{icon:ate[e]}):null}const lte=[1,2,3,4,5,6],J8t={className:"block-library-heading-level-dropdown"};function Cm({options:e=lte,value:t,onChange:n}){const o=e.filter(r=>r===0||lte.includes(r)).sort((r,s)=>r-s);return a.jsx(Lc,{popoverProps:J8t,icon:a.jsx(cte,{level:t}),label:m("Change level"),controls:o.map(r=>{const s=r===t;return{icon:a.jsx(cte,{level:r}),title:r===0?m("Paragraph"):xe(m("Heading %d"),r),isActive:s,onClick(){n(r)},role:"menuitemradio"}})})}function Dze({icon:e=nu,label:t=m("Choose variation"),instructions:n=m("Select a variation to start with:"),variations:o,onSelect:r,allowSkip:s}){const i=oe("block-editor-block-variation-picker",{"has-many-variations":o.length>4});return a.jsxs(vo,{icon:e,label:t,instructions:n,className:i,children:[a.jsx("ul",{className:"block-editor-block-variation-picker__variations",role:"list","aria-label":m("Block variations"),children:o.map(c=>a.jsxs("li",{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",icon:c.icon&&c.icon.src?c.icon.src:c.icon,iconSize:48,onClick:()=>r(c),className:"block-editor-block-variation-picker__variation",label:c.description||c.title}),a.jsx("span",{className:"block-editor-block-variation-picker__variation-label",children:c.title})]},c.name))}),s&&a.jsx("div",{className:"block-editor-block-variation-picker__skip",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>r(),children:m("Skip")})})]})}function eWt({className:e,onSelectVariation:t,selectedValue:n,variations:o}){return a.jsxs("fieldset",{className:e,children:[a.jsx(qn,{as:"legend",children:m("Transform to variation")}),o.map(r=>a.jsx(Ce,{__next40pxDefaultSize:!0,size:"compact",icon:a.jsx(Zn,{icon:r.icon,showColors:!0}),isPressed:n===r.name,label:n===r.name?r.title:xe(m("Transform to %s"),r.title),onClick:()=>t(r.name),"aria-label":r.title,showTooltip:!0},r.name))]})}function tWt({className:e,onSelectVariation:t,selectedValue:n,variations:o}){const r=o.map(({name:s,title:i,description:c})=>({value:s,label:i,info:c}));return a.jsx(c0,{className:e,label:m("Transform to variation"),text:m("Transform to variation"),popoverProps:{position:"bottom center",className:`${e}__popover`},icon:tu,toggleProps:{iconPosition:"right"},children:()=>a.jsx("div",{className:`${e}__container`,children:a.jsx(Cn,{children:a.jsx(kf,{choices:r,value:n,onSelect:t})})})})}function nWt({className:e,onSelectVariation:t,selectedValue:n,variations:o}){return a.jsx("div",{className:e,children:a.jsx(Do,{label:m("Transform to variation"),value:n,hideLabelFromVision:!0,onChange:t,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:o.map(r=>a.jsx(ga,{icon:a.jsx(Zn,{icon:r.icon,showColors:!0}),value:r.name,label:n===r.name?r.title:xe(m("Transform to %s"),r.title)},r.name))})})}function oWt({blockClientId:e}){const{updateBlockAttributes:t}=Oe(Q),{activeBlockVariation:n,variations:o,isContentOnly:r}=G(f=>{const{getActiveBlockVariation:b,getBlockVariations:h}=f(kt),{getBlockName:g,getBlockAttributes:z,getBlockEditingMode:A}=f(Q),_=e&&g(e),{hasContentRoleAttribute:v}=ct(f(kt)),M=v(_);return{activeBlockVariation:b(_,z(e)),variations:_&&h(_,"transform"),isContentOnly:A(e)==="contentOnly"&&!M}},[e]),s=n?.name,i=x.useMemo(()=>{const f=new Set;return o?(o.forEach(b=>{b.icon&&f.add(b.icon?.src||b.icon)}),f.size===o.length):!1},[o]),c=f=>{t(e,{...o.find(({name:b})=>b===f).attributes})};if(!o?.length||r)return null;const l="block-editor-block-variation-transforms",d=o.length>5?eWt:nWt,p=i?d:tWt;return a.jsx(p,{className:l,onSelectVariation:c,selectedValue:s,variations:o})}const nT={top:{icon:iQe,title:We("Align top","Block vertical alignment setting")},center:{icon:oQe,title:We("Align middle","Block vertical alignment setting")},bottom:{icon:nQe,title:We("Align bottom","Block vertical alignment setting")},stretch:{icon:sQe,title:We("Stretch to fill","Block vertical alignment setting")},"space-between":{icon:rQe,title:We("Space between","Block vertical alignment setting")}},rWt=["top","center","bottom"],sWt="top";function Fze({value:e,onChange:t,controls:n=rWt,isCollapsed:o=!0,isToolbar:r}){function s(d){return()=>t(e===d?void 0:d)}const i=nT[e],c=nT[sWt],l=r?Wn:Lc,u=r?{isCollapsed:o}:{};return a.jsx(l,{icon:i?i.icon:c.icon,label:We("Change vertical alignment","Block vertical alignment setting label"),controls:n.map(d=>({...nT[d],isActive:e===d,role:o?"menuitemradio":void 0,onClick:s(d)})),...u})}const $ze=e=>a.jsx(Fze,{...e,isToolbar:!1}),Vze=e=>a.jsx(Fze,{...e,isToolbar:!0}),iWt=Or(e=>t=>{const[n,o,r,s,i]=Un("color.palette.default","color.palette.theme","color.palette.custom","color.custom","color.defaultPalette"),c=i?[...o||[],...n||[],...r||[]]:[...o||[],...r||[]],{colors:l=c,disableCustomColors:u=!s}=t,d=l&&l.length>0||!u;return a.jsx(e,{...t,colors:l,disableCustomColors:u,hasColorsToChoose:d})},"withColorContext"),Hze=iWt(Gw);Xs([Gs,Uf]);function Qx({backgroundColor:e,fallbackBackgroundColor:t,fallbackTextColor:n,fallbackLinkColor:o,fontSize:r,isLargeText:s,textColor:i,linkColor:c,enableAlphaChecker:l=!1}){const u=e||t;if(!u)return null;const d=i||n,p=c||o;if(!d&&!p)return null;const f=[{color:d,description:m("text color")},{color:p,description:m("link color")}],b=an(u),h=b.alpha()<1,g=b.brightness(),z={level:"AA",size:s||s!==!1&&r>=24?"large":"small"};let A="",_="";for(const v of f){if(!v.color)continue;const M=an(v.color),y=M.isReadable(b,z),k=M.alpha()<1;if(!y){if(h||k)continue;A=g<M.brightness()?xe(m("This color combination may be hard for people to read. Try using a darker background color and/or a brighter %s."),v.description):xe(m("This color combination may be hard for people to read. Try using a brighter background color and/or a darker %s."),v.description),_=m("This color combination may be hard for people to read.");break}k&&l&&(A=m("Transparent text may be hard for people to read."),_=m("Transparent text may be hard for people to read."))}return A?(Yt(_),a.jsx("div",{className:"block-editor-contrast-checker",children:a.jsx(L1,{spokenMessage:null,status:"warning",isDismissible:!1,children:A})})):null}const Ud=new Date;Ud.setDate(20);Ud.setMonth(Ud.getMonth()-3);Ud.getMonth()===4&&Ud.setMonth(3);function Uze({format:e,defaultFormat:t,onChange:n}){return a.jsxs(dt,{as:"fieldset",spacing:4,className:"block-editor-date-format-picker",children:[a.jsx(qn,{as:"legend",children:m("Date format")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Default format"),help:`${m("Example:")} ${r0(t,Ud)}`,checked:!e,onChange:o=>n(o?null:t)}),e&&a.jsx(aWt,{format:e,onChange:n})]})}function aWt({format:e,onChange:t}){var n;const r=[...[...new Set(["Y-m-d",We("n/j/Y","short date format"),We("n/j/Y g:i A","short date format with time"),We("M j, Y","medium date format"),We("M j, Y g:i A","medium date format with time"),We("F j, Y","long date format"),We("M j","short date format without the year")])].map((l,u)=>({key:`suggested-${u}`,name:r0(l,Ud),format:l})),{key:"human-diff",name:a_(Ud),format:"human-diff"}],s={key:"custom",name:m("Custom"),className:"block-editor-date-format-picker__custom-format-select-control__custom-option",hint:m("Enter your own date format")},[i,c]=x.useState(()=>!!e&&!r.some(l=>l.format===e));return a.jsxs(dt,{children:[a.jsx(ob,{__next40pxDefaultSize:!0,label:m("Choose a format"),options:[...r,s],value:i?s:(n=r.find(l=>l.format===e))!==null&&n!==void 0?n:s,onChange:({selectedItem:l})=>{l===s?c(!0):(c(!1),t(l.format))}}),i&&a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Custom format"),hideLabelFromVision:!0,help:cr(m("Enter a date or time <Link>format string</Link>."),{Link:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/customize-date-and-time-format/")})}),value:e,onChange:l=>t(l)})]})}function Xze({id:e,colorPalette:t,duotonePalette:n,disableCustomColors:o,disableCustomDuotone:r,value:s,onChange:i}){let c;s==="unset"?c=a.jsx(eb,{className:"block-editor-duotone-control__unset-indicator"}):s?c=a.jsx(Zbe,{values:s}):c=a.jsx(wn,{icon:NZe});const l=m("Apply duotone filter"),d=`${vt(Xze,"duotone-control",e)}__description`;return a.jsx(so,{popoverProps:{className:"block-editor-duotone-control__popover",headerTitle:m("Duotone")},renderToggle:({isOpen:p,onToggle:f})=>{const b=h=>{!p&&h.keyCode===Ps&&(h.preventDefault(),f())};return a.jsx(Vt,{showTooltip:!0,onClick:f,"aria-haspopup":"true","aria-expanded":p,onKeyDown:b,label:l,icon:c})},renderContent:()=>a.jsxs(Cn,{label:m("Duotone"),children:[a.jsx("p",{children:m("Create a two-tone color effect without losing your original image.")}),a.jsx(Ybe,{"aria-label":l,"aria-describedby":d,colorPalette:t,duotonePalette:n,disableCustomColors:o,disableCustomDuotone:r,value:s,onChange:i})]})})}const cWt=({setting:e,children:t,panelId:n,...o})=>{const r=()=>{e.colorValue?e.onColorChange():e.gradientValue&&e.onGradientChange()};return a.jsx(tt,{hasValue:()=>!!e.colorValue||!!e.gradientValue,label:e.label,onDeselect:r,isShownByDefault:e.isShownByDefault!==void 0?e.isShownByDefault:!0,...o,className:"block-editor-tools-panel-color-gradient-settings__item",panelId:n,resetAllFilter:e.resetAllFilter,children:t})},lWt=({colorValue:e,label:t})=>a.jsxs(Ot,{justify:"flex-start",children:[a.jsx(eb,{className:"block-editor-panel-color-gradient-settings__color-indicator",colorValue:e}),a.jsx(Tn,{className:"block-editor-panel-color-gradient-settings__color-name",title:t,children:t})]}),uWt=e=>({onToggle:t,isOpen:n})=>{const{clearable:o,colorValue:r,gradientValue:s,onColorChange:i,onGradientChange:c,label:l}=e,u=x.useRef(void 0),d={onClick:t,className:oe("block-editor-panel-color-gradient-settings__dropdown",{"is-open":n}),"aria-expanded":n,ref:u},p=()=>{r?i():s&&c()},f=r??s;return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,...d,children:a.jsx(lWt,{colorValue:f,label:l})}),o&&f&&a.jsx(Ce,{__next40pxDefaultSize:!0,label:m("Reset"),className:"block-editor-panel-color-gradient-settings__reset",size:"small",icon:am,onClick:()=>{p(),n&&t(),u.current?.focus()}})]})};function J_({colors:e,disableCustomColors:t,disableCustomGradients:n,enableAlpha:o,gradients:r,settings:s,__experimentalIsRenderedInSidebar:i,...c}){let l;return i&&(l={placement:"left-start",offset:36,shift:!0}),a.jsx(a.Fragment,{children:s.map((u,d)=>{const p={clearable:!1,colorValue:u.colorValue,colors:e,disableCustomColors:t,disableCustomGradients:n,enableAlpha:o,gradientValue:u.gradientValue,gradients:r,label:u.label,onColorChange:u.onColorChange,onGradientChange:u.onGradientChange,showTitle:!1,__experimentalIsRenderedInSidebar:i,...u},f={clearable:u.clearable,label:u.label,colorValue:u.colorValue,gradientValue:u.gradientValue,onColorChange:u.onColorChange,onGradientChange:u.onGradientChange};return u&&a.jsx(cWt,{setting:u,...c,children:a.jsx(so,{popoverProps:l,className:"block-editor-tools-panel-color-gradient-settings__dropdown",renderToggle:uWt(f),renderContent:()=>a.jsx($s,{paddingSize:"none",children:a.jsx("div",{className:"block-editor-panel-color-gradient-settings__dropdown-content",children:a.jsx(fze,{...p})})})})},d)})})}const Gze=100,Kze=300,Yze={placement:"bottom-start"},dWt={crop:m("Image cropped."),rotate:m("Image rotated."),cropAndRotate:m("Image cropped and rotated.")};function pWt({crop:e,rotation:t,url:n,id:o,onSaveImage:r,onFinishEditing:s}){const{createErrorNotice:i,createSuccessNotice:c}=Oe(mt),[l,u]=x.useState(!1),d=x.useCallback(()=>{u(!1),s()},[s]),p=x.useCallback(()=>{u(!0);const f=[];if(t>0&&f.push({type:"rotate",args:{angle:t}}),(e.width<99.9||e.height<99.9)&&f.push({type:"crop",args:{left:e.x,top:e.y,width:e.width,height:e.height}}),f.length===0){u(!1),s();return}const b=f.length===1?f[0].type:"cropAndRotate";Tt({path:`/wp/v2/media/${o}/edit`,method:"POST",data:{src:n,modifiers:f}}).then(h=>{r({id:h.id,url:h.source_url}),c(dWt[b],{type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{r({id:o,url:n})}}]})}).catch(h=>{i(xe(m("Could not edit image. %s"),v1(h.message)),{id:"image-editing-error",type:"snackbar"})}).finally(()=>{u(!1),s()})},[e,t,o,n,r,i,c,s]);return x.useMemo(()=>({isInProgress:l,apply:p,cancel:d}),[l,p,d])}function fWt({url:e,naturalWidth:t,naturalHeight:n}){const[o,r]=x.useState(),[s,i]=x.useState(),[c,l]=x.useState({x:0,y:0}),[u,d]=x.useState(100),[p,f]=x.useState(0),b=t/n,[h,g]=x.useState(b),z=x.useCallback(()=>{const A=(p+90)%360;let _=b;if(p%180===90&&(_=1/b),A===0){r(),f(A),g(b),l(k=>({x:-(k.y*_),y:k.x*_}));return}function v(k){const S=document.createElement("canvas");let C=0,R=0;A%180?(S.width=k.target.height,S.height=k.target.width):(S.width=k.target.width,S.height=k.target.height),(A===90||A===180)&&(C=S.width),(A===270||A===180)&&(R=S.height);const T=S.getContext("2d");T.translate(C,R),T.rotate(A*Math.PI/180),T.drawImage(k.target,0,0),S.toBlob(E=>{r(URL.createObjectURL(E)),f(A),g(S.width/S.height),l(B=>({x:-(B.y*_),y:B.x*_}))})}const M=new window.Image;M.src=e,M.onload=v;const y=gr("media.crossOrigin",void 0,e);typeof y=="string"&&(M.crossOrigin=y)},[p,b,e]);return x.useMemo(()=>({editedUrl:o,setEditedUrl:r,crop:s,setCrop:i,position:c,setPosition:l,zoom:u,setZoom:d,rotation:p,setRotation:f,rotateClockwise:z,aspect:h,setAspect:g,defaultAspect:b}),[o,s,c,u,p,z,h,b])}const Zze=x.createContext({}),RO=()=>x.useContext(Zze);function bWt({id:e,url:t,naturalWidth:n,naturalHeight:o,onFinishEditing:r,onSaveImage:s,children:i}){const c=fWt({url:t,naturalWidth:n,naturalHeight:o}),l=pWt({id:e,url:t,onSaveImage:s,onFinishEditing:r,...c}),u=x.useMemo(()=>({...c,...l}),[c,l]);return a.jsx(Zze.Provider,{value:u,children:i})}function zv({aspectRatios:e,isDisabled:t,label:n,onClick:o,value:r}){return a.jsx(Cn,{label:n,children:e.map(({name:s,slug:i,ratio:c})=>a.jsx(Ct,{disabled:t,onClick:()=>{o(c)},role:"menuitemradio",isSelected:c===r,icon:c===r?M0:void 0,children:s},i))})}function hWt(e){const[t,n,...o]=e.split("/").map(Number);return t<=0||n<=0||Number.isNaN(t)||Number.isNaN(n)||o.length?NaN:n?t/n:t}function oT({ratio:e,...t}){return{ratio:hWt(e),...t}}function mWt({toggleProps:e}){const{isInProgress:t,aspect:n,setAspect:o,defaultAspect:r}=RO(),[s,i,c]=Un("dimensions.aspectRatios.default","dimensions.aspectRatios.theme","dimensions.defaultAspectRatios");return a.jsx(c0,{icon:gZe,label:m("Aspect Ratio"),popoverProps:Yze,toggleProps:e,children:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsx(zv,{isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:[{slug:"original",name:m("Original"),aspect:r},...c?s.map(oT).filter(({ratio:u})=>u===1):[]]}),i?.length>0&&a.jsx(zv,{label:m("Theme"),isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:i}),c&&a.jsx(zv,{label:m("Landscape"),isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:s.map(oT).filter(({ratio:u})=>u>1)}),c&&a.jsx(zv,{label:m("Portrait"),isDisabled:t,onClick:u=>{o(u),l()},value:n,aspectRatios:s.map(oT).filter(({ratio:u})=>u<1)})]})})}var rT,ute;function gWt(){if(ute)return rT;ute=1;var e=!1,t,n,o,r,s,i,c,l,u,d,p,f,b,h,g;function z(){if(!e){e=!0;var _=navigator.userAgent,v=/(?:MSIE.(\d+\.\d+))|(?:(?:Firefox|GranParadiso|Iceweasel).(\d+\.\d+))|(?:Opera(?:.+Version.|.)(\d+\.\d+))|(?:AppleWebKit.(\d+(?:\.\d+)?))|(?:Trident\/\d+\.\d+.*rv:(\d+\.\d+))/.exec(_),M=/(Mac OS X)|(Windows)|(Linux)/.exec(_);if(f=/\b(iPhone|iP[ao]d)/.exec(_),b=/\b(iP[ao]d)/.exec(_),d=/Android/i.exec(_),h=/FBAN\/\w+;/i.exec(_),g=/Mobile/i.exec(_),p=!!/Win64/.exec(_),v){t=v[1]?parseFloat(v[1]):v[5]?parseFloat(v[5]):NaN,t&&document&&document.documentMode&&(t=document.documentMode);var y=/(?:Trident\/(\d+.\d+))/.exec(_);i=y?parseFloat(y[1])+4:t,n=v[2]?parseFloat(v[2]):NaN,o=v[3]?parseFloat(v[3]):NaN,r=v[4]?parseFloat(v[4]):NaN,r?(v=/(?:Chrome\/(\d+\.\d+))/.exec(_),s=v&&v[1]?parseFloat(v[1]):NaN):s=NaN}else t=n=o=s=r=NaN;if(M){if(M[1]){var k=/(?:Mac OS X (\d+(?:[._]\d+)?))/.exec(_);c=k?parseFloat(k[1].replace("_",".")):!0}else c=!1;l=!!M[2],u=!!M[3]}else c=l=u=!1}}var A={ie:function(){return z()||t},ieCompatibilityMode:function(){return z()||i>t},ie64:function(){return A.ie()&&p},firefox:function(){return z()||n},opera:function(){return z()||o},webkit:function(){return z()||r},safari:function(){return A.webkit()},chrome:function(){return z()||s},windows:function(){return z()||l},osx:function(){return z()||c},linux:function(){return z()||u},iphone:function(){return z()||f},mobile:function(){return z()||f||b||d||g},nativeApp:function(){return z()||h},android:function(){return z()||d},ipad:function(){return z()||b}};return rT=A,rT}var sT,dte;function MWt(){if(dte)return sT;dte=1;var e=!!(typeof window<"u"&&window.document&&window.document.createElement),t={canUseDOM:e,canUseWorkers:typeof Worker<"u",canUseEventListeners:e&&!!(window.addEventListener||window.attachEvent),canUseViewport:e&&!!window.screen,isInWorker:!e};return sT=t,sT}var iT,pte;function zWt(){if(pte)return iT;pte=1;var e=MWt(),t;e.canUseDOM&&(t=document.implementation&&document.implementation.hasFeature&&document.implementation.hasFeature("","")!==!0);/** * Checks if an event is supported in the current execution environment. * * NOTE: This will not work correctly for non-generic events such as `change`, @@ -612,7 +612,7 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen * @return {boolean} True if the event is supported. * @internal * @license Modernizr 3.0.0pre (Custom Build) | MIT - */function n(o,r){if(!e.canUseDOM||r&&!("addEventListener"in document))return!1;var s="on"+o,i=s in document;if(!i){var c=document.createElement("div");c.setAttribute(s,"return;"),i=typeof c[s]=="function"}return!i&&t&&o==="wheel"&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}return aT=n,aT}var cT,fte;function yWt(){if(fte)return cT;fte=1;var e=MWt(),t=OWt(),n=10,o=40,r=800;function s(i){var c=0,l=0,u=0,d=0;return"detail"in i&&(l=i.detail),"wheelDelta"in i&&(l=-i.wheelDelta/120),"wheelDeltaY"in i&&(l=-i.wheelDeltaY/120),"wheelDeltaX"in i&&(c=-i.wheelDeltaX/120),"axis"in i&&i.axis===i.HORIZONTAL_AXIS&&(c=l,l=0),u=c*n,d=l*n,"deltaY"in i&&(d=i.deltaY),"deltaX"in i&&(u=i.deltaX),(u||d)&&i.deltaMode&&(i.deltaMode==1?(u*=o,d*=o):(u*=r,d*=r)),u&&!c&&(c=u<1?-1:1),d&&!l&&(l=d<1?-1:1),{spinX:c,spinY:l,pixelX:u,pixelY:d}}return s.getEventType=function(){return e.firefox()?"DOMMouseScroll":t("wheel")?"wheel":"mousewheel"},cT=s,cT}var lT,bte;function AWt(){return bte||(bte=1,lT=yWt()),lT}var vWt=AWt();const xWt=Zr(vWt);function wWt(e,t,n,o,r,s){s===void 0&&(s=0);var i=Ch(e,t,s),c=i.width,l=i.height,u=Math.min(c,n),d=Math.min(l,o);return u>d*r?{width:d*r,height:d}:{width:u,height:u/r}}function _Wt(e){return e.width>e.height?e.width/e.naturalWidth:e.height/e.naturalHeight}function $g(e,t,n,o,r){r===void 0&&(r=0);var s=Ch(t.width,t.height,r),i=s.width,c=s.height;return{x:hte(e.x,i,n.width,o),y:hte(e.y,c,n.height,o)}}function hte(e,t,n,o){var r=t*o/2-n/2;return tk(e,-r,r)}function mte(e,t){return Math.sqrt(Math.pow(e.y-t.y,2)+Math.pow(e.x-t.x,2))}function gte(e,t){return Math.atan2(t.y-e.y,t.x-e.x)*180/Math.PI}function kWt(e,t,n,o,r,s,i){s===void 0&&(s=0),i===void 0&&(i=!0);var c=i?SWt:CWt,l=Ch(t.width,t.height,s),u=Ch(t.naturalWidth,t.naturalHeight,s),d={x:c(100,((l.width-n.width/r)/2-e.x/r)/l.width*100),y:c(100,((l.height-n.height/r)/2-e.y/r)/l.height*100),width:c(100,n.width/l.width*100/r),height:c(100,n.height/l.height*100/r)},p=Math.round(c(u.width,d.width*u.width/100)),f=Math.round(c(u.height,d.height*u.height/100)),b=u.width>=u.height*o,h=b?{width:Math.round(f*o),height:f}:{width:p,height:Math.round(p/o)},g=Pr(Pr({},h),{x:Math.round(c(u.width-h.width,d.x*u.width/100)),y:Math.round(c(u.height-h.height,d.y*u.height/100))});return{croppedAreaPercentages:d,croppedAreaPixels:g}}function SWt(e,t){return Math.min(e,Math.max(0,t))}function CWt(e,t){return t}function qWt(e,t,n,o,r,s){var i=Ch(t.width,t.height,n),c=tk(o.width/i.width*(100/e.width),r,s),l={x:c*i.width/2-o.width/2-i.width*c*(e.x/100),y:c*i.height/2-o.height/2-i.height*c*(e.y/100)};return{crop:l,zoom:c}}function RWt(e,t,n){var o=_Wt(t);return n.height>n.width?n.height/(e.height*o):n.width/(e.width*o)}function TWt(e,t,n,o,r,s){n===void 0&&(n=0);var i=Ch(t.naturalWidth,t.naturalHeight,n),c=tk(RWt(e,t,o),r,s),l=o.height>o.width?o.height/e.height:o.width/e.width,u={x:((i.width-e.width)/2-e.x)*l,y:((i.height-e.height)/2-e.y)*l};return{crop:u,zoom:c}}function Mte(e,t){return{x:(t.x+e.x)/2,y:(t.y+e.y)/2}}function EWt(e){return e*Math.PI/180}function Ch(e,t,n){var o=EWt(n);return{width:Math.abs(Math.cos(o)*e)+Math.abs(Math.sin(o)*t),height:Math.abs(Math.sin(o)*e)+Math.abs(Math.cos(o)*t)}}function tk(e,t,n){return Math.min(Math.max(e,t),n)}function yv(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return e.filter(function(n){return typeof n=="string"&&n.length>0}).join(" ").trim()}var WWt=`.reactEasyCrop_Container { + */function n(o,r){if(!e.canUseDOM||r&&!("addEventListener"in document))return!1;var s="on"+o,i=s in document;if(!i){var c=document.createElement("div");c.setAttribute(s,"return;"),i=typeof c[s]=="function"}return!i&&t&&o==="wheel"&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}return iT=n,iT}var aT,fte;function OWt(){if(fte)return aT;fte=1;var e=gWt(),t=zWt(),n=10,o=40,r=800;function s(i){var c=0,l=0,u=0,d=0;return"detail"in i&&(l=i.detail),"wheelDelta"in i&&(l=-i.wheelDelta/120),"wheelDeltaY"in i&&(l=-i.wheelDeltaY/120),"wheelDeltaX"in i&&(c=-i.wheelDeltaX/120),"axis"in i&&i.axis===i.HORIZONTAL_AXIS&&(c=l,l=0),u=c*n,d=l*n,"deltaY"in i&&(d=i.deltaY),"deltaX"in i&&(u=i.deltaX),(u||d)&&i.deltaMode&&(i.deltaMode==1?(u*=o,d*=o):(u*=r,d*=r)),u&&!c&&(c=u<1?-1:1),d&&!l&&(l=d<1?-1:1),{spinX:c,spinY:l,pixelX:u,pixelY:d}}return s.getEventType=function(){return e.firefox()?"DOMMouseScroll":t("wheel")?"wheel":"mousewheel"},aT=s,aT}var cT,bte;function yWt(){return bte||(bte=1,cT=OWt()),cT}var AWt=yWt();const vWt=Zr(AWt);function xWt(e,t,n,o,r,s){s===void 0&&(s=0);var i=Ch(e,t,s),c=i.width,l=i.height,u=Math.min(c,n),d=Math.min(l,o);return u>d*r?{width:d*r,height:d}:{width:u,height:u/r}}function wWt(e){return e.width>e.height?e.width/e.naturalWidth:e.height/e.naturalHeight}function $g(e,t,n,o,r){r===void 0&&(r=0);var s=Ch(t.width,t.height,r),i=s.width,c=s.height;return{x:hte(e.x,i,n.width,o),y:hte(e.y,c,n.height,o)}}function hte(e,t,n,o){var r=t*o/2-n/2;return ek(e,-r,r)}function mte(e,t){return Math.sqrt(Math.pow(e.y-t.y,2)+Math.pow(e.x-t.x,2))}function gte(e,t){return Math.atan2(t.y-e.y,t.x-e.x)*180/Math.PI}function _Wt(e,t,n,o,r,s,i){s===void 0&&(s=0),i===void 0&&(i=!0);var c=i?kWt:SWt,l=Ch(t.width,t.height,s),u=Ch(t.naturalWidth,t.naturalHeight,s),d={x:c(100,((l.width-n.width/r)/2-e.x/r)/l.width*100),y:c(100,((l.height-n.height/r)/2-e.y/r)/l.height*100),width:c(100,n.width/l.width*100/r),height:c(100,n.height/l.height*100/r)},p=Math.round(c(u.width,d.width*u.width/100)),f=Math.round(c(u.height,d.height*u.height/100)),b=u.width>=u.height*o,h=b?{width:Math.round(f*o),height:f}:{width:p,height:Math.round(p/o)},g=Pr(Pr({},h),{x:Math.round(c(u.width-h.width,d.x*u.width/100)),y:Math.round(c(u.height-h.height,d.y*u.height/100))});return{croppedAreaPercentages:d,croppedAreaPixels:g}}function kWt(e,t){return Math.min(e,Math.max(0,t))}function SWt(e,t){return t}function CWt(e,t,n,o,r,s){var i=Ch(t.width,t.height,n),c=ek(o.width/i.width*(100/e.width),r,s),l={x:c*i.width/2-o.width/2-i.width*c*(e.x/100),y:c*i.height/2-o.height/2-i.height*c*(e.y/100)};return{crop:l,zoom:c}}function qWt(e,t,n){var o=wWt(t);return n.height>n.width?n.height/(e.height*o):n.width/(e.width*o)}function RWt(e,t,n,o,r,s){n===void 0&&(n=0);var i=Ch(t.naturalWidth,t.naturalHeight,n),c=ek(qWt(e,t,o),r,s),l=o.height>o.width?o.height/e.height:o.width/e.width,u={x:((i.width-e.width)/2-e.x)*l,y:((i.height-e.height)/2-e.y)*l};return{crop:u,zoom:c}}function Mte(e,t){return{x:(t.x+e.x)/2,y:(t.y+e.y)/2}}function TWt(e){return e*Math.PI/180}function Ch(e,t,n){var o=TWt(n);return{width:Math.abs(Math.cos(o)*e)+Math.abs(Math.sin(o)*t),height:Math.abs(Math.sin(o)*e)+Math.abs(Math.cos(o)*t)}}function ek(e,t,n){return Math.min(Math.max(e,t),n)}function Ov(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return e.filter(function(n){return typeof n=="string"&&n.length>0}).join(" ").trim()}var EWt=`.reactEasyCrop_Container { position: absolute; top: 0; left: 0; @@ -692,15 +692,15 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen border-left: 0; border-right: 0; } -`,NWt=1,BWt=3,LWt=1,PWt=function(e){bke(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.imageRef=x.createRef(),n.videoRef=x.createRef(),n.containerPosition={x:0,y:0},n.containerRef=null,n.styleRef=null,n.containerRect=null,n.mediaSize={width:0,height:0,naturalWidth:0,naturalHeight:0},n.dragStartPosition={x:0,y:0},n.dragStartCrop={x:0,y:0},n.gestureZoomStart=0,n.gestureRotationStart=0,n.isTouching=!1,n.lastPinchDistance=0,n.lastPinchRotation=0,n.rafDragTimeout=null,n.rafPinchTimeout=null,n.wheelTimer=null,n.currentDoc=typeof document<"u"?document:null,n.currentWindow=typeof window<"u"?window:null,n.resizeObserver=null,n.state={cropSize:null,hasWheelJustStarted:!1,mediaObjectFit:void 0},n.initResizeObserver=function(){if(!(typeof window.ResizeObserver>"u"||!n.containerRef)){var o=!0;n.resizeObserver=new window.ResizeObserver(function(r){if(o){o=!1;return}n.computeSizes()}),n.resizeObserver.observe(n.containerRef)}},n.preventZoomSafari=function(o){return o.preventDefault()},n.cleanEvents=function(){n.currentDoc&&(n.currentDoc.removeEventListener("mousemove",n.onMouseMove),n.currentDoc.removeEventListener("mouseup",n.onDragStopped),n.currentDoc.removeEventListener("touchmove",n.onTouchMove),n.currentDoc.removeEventListener("touchend",n.onDragStopped),n.currentDoc.removeEventListener("gesturemove",n.onGestureMove),n.currentDoc.removeEventListener("gestureend",n.onGestureEnd),n.currentDoc.removeEventListener("scroll",n.onScroll))},n.clearScrollEvent=function(){n.containerRef&&n.containerRef.removeEventListener("wheel",n.onWheel),n.wheelTimer&&clearTimeout(n.wheelTimer)},n.onMediaLoad=function(){var o=n.computeSizes();o&&(n.emitCropData(),n.setInitialCrop(o)),n.props.onMediaLoaded&&n.props.onMediaLoaded(n.mediaSize)},n.setInitialCrop=function(o){if(n.props.initialCroppedAreaPercentages){var r=qWt(n.props.initialCroppedAreaPercentages,n.mediaSize,n.props.rotation,o,n.props.minZoom,n.props.maxZoom),s=r.crop,i=r.zoom;n.props.onCropChange(s),n.props.onZoomChange&&n.props.onZoomChange(i)}else if(n.props.initialCroppedAreaPixels){var c=TWt(n.props.initialCroppedAreaPixels,n.mediaSize,n.props.rotation,o,n.props.minZoom,n.props.maxZoom),s=c.crop,i=c.zoom;n.props.onCropChange(s),n.props.onZoomChange&&n.props.onZoomChange(i)}},n.computeSizes=function(){var o,r,s,i,c,l,u=n.imageRef.current||n.videoRef.current;if(u&&n.containerRef){n.containerRect=n.containerRef.getBoundingClientRect(),n.saveContainerPosition();var d=n.containerRect.width/n.containerRect.height,p=((o=n.imageRef.current)===null||o===void 0?void 0:o.naturalWidth)||((r=n.videoRef.current)===null||r===void 0?void 0:r.videoWidth)||0,f=((s=n.imageRef.current)===null||s===void 0?void 0:s.naturalHeight)||((i=n.videoRef.current)===null||i===void 0?void 0:i.videoHeight)||0,b=u.offsetWidth<p||u.offsetHeight<f,h=p/f,g=void 0;if(b)switch(n.state.mediaObjectFit){default:case"contain":g=d>h?{width:n.containerRect.height*h,height:n.containerRect.height}:{width:n.containerRect.width,height:n.containerRect.width/h};break;case"horizontal-cover":g={width:n.containerRect.width,height:n.containerRect.width/h};break;case"vertical-cover":g={width:n.containerRect.height*h,height:n.containerRect.height};break}else g={width:u.offsetWidth,height:u.offsetHeight};n.mediaSize=Pr(Pr({},g),{naturalWidth:p,naturalHeight:f}),n.props.setMediaSize&&n.props.setMediaSize(n.mediaSize);var z=n.props.cropSize?n.props.cropSize:wWt(n.mediaSize.width,n.mediaSize.height,n.containerRect.width,n.containerRect.height,n.props.aspect,n.props.rotation);return(((c=n.state.cropSize)===null||c===void 0?void 0:c.height)!==z.height||((l=n.state.cropSize)===null||l===void 0?void 0:l.width)!==z.width)&&n.props.onCropSizeChange&&n.props.onCropSizeChange(z),n.setState({cropSize:z},n.recomputeCropPosition),n.props.setCropSize&&n.props.setCropSize(z),z}},n.saveContainerPosition=function(){if(n.containerRef){var o=n.containerRef.getBoundingClientRect();n.containerPosition={x:o.left,y:o.top}}},n.onMouseDown=function(o){n.currentDoc&&(o.preventDefault(),n.currentDoc.addEventListener("mousemove",n.onMouseMove),n.currentDoc.addEventListener("mouseup",n.onDragStopped),n.saveContainerPosition(),n.onDragStart(t.getMousePoint(o)))},n.onMouseMove=function(o){return n.onDrag(t.getMousePoint(o))},n.onScroll=function(o){n.currentDoc&&(o.preventDefault(),n.saveContainerPosition())},n.onTouchStart=function(o){n.currentDoc&&(n.isTouching=!0,!(n.props.onTouchRequest&&!n.props.onTouchRequest(o))&&(n.currentDoc.addEventListener("touchmove",n.onTouchMove,{passive:!1}),n.currentDoc.addEventListener("touchend",n.onDragStopped),n.saveContainerPosition(),o.touches.length===2?n.onPinchStart(o):o.touches.length===1&&n.onDragStart(t.getTouchPoint(o.touches[0]))))},n.onTouchMove=function(o){o.preventDefault(),o.touches.length===2?n.onPinchMove(o):o.touches.length===1&&n.onDrag(t.getTouchPoint(o.touches[0]))},n.onGestureStart=function(o){n.currentDoc&&(o.preventDefault(),n.currentDoc.addEventListener("gesturechange",n.onGestureMove),n.currentDoc.addEventListener("gestureend",n.onGestureEnd),n.gestureZoomStart=n.props.zoom,n.gestureRotationStart=n.props.rotation)},n.onGestureMove=function(o){if(o.preventDefault(),!n.isTouching){var r=t.getMousePoint(o),s=n.gestureZoomStart-1+o.scale;if(n.setNewZoom(s,r,{shouldUpdatePosition:!0}),n.props.onRotationChange){var i=n.gestureRotationStart+o.rotation;n.props.onRotationChange(i)}}},n.onGestureEnd=function(o){n.cleanEvents()},n.onDragStart=function(o){var r,s,i=o.x,c=o.y;n.dragStartPosition={x:i,y:c},n.dragStartCrop=Pr({},n.props.crop),(s=(r=n.props).onInteractionStart)===null||s===void 0||s.call(r)},n.onDrag=function(o){var r=o.x,s=o.y;n.currentWindow&&(n.rafDragTimeout&&n.currentWindow.cancelAnimationFrame(n.rafDragTimeout),n.rafDragTimeout=n.currentWindow.requestAnimationFrame(function(){if(n.state.cropSize&&!(r===void 0||s===void 0)){var i=r-n.dragStartPosition.x,c=s-n.dragStartPosition.y,l={x:n.dragStartCrop.x+i,y:n.dragStartCrop.y+c},u=n.props.restrictPosition?$g(l,n.mediaSize,n.state.cropSize,n.props.zoom,n.props.rotation):l;n.props.onCropChange(u)}}))},n.onDragStopped=function(){var o,r;n.isTouching=!1,n.cleanEvents(),n.emitCropData(),(r=(o=n.props).onInteractionEnd)===null||r===void 0||r.call(o)},n.onWheel=function(o){if(n.currentWindow&&!(n.props.onWheelRequest&&!n.props.onWheelRequest(o))){o.preventDefault();var r=t.getMousePoint(o),s=xWt(o).pixelY,i=n.props.zoom-s*n.props.zoomSpeed/200;n.setNewZoom(i,r,{shouldUpdatePosition:!0}),n.state.hasWheelJustStarted||n.setState({hasWheelJustStarted:!0},function(){var c,l;return(l=(c=n.props).onInteractionStart)===null||l===void 0?void 0:l.call(c)}),n.wheelTimer&&clearTimeout(n.wheelTimer),n.wheelTimer=n.currentWindow.setTimeout(function(){return n.setState({hasWheelJustStarted:!1},function(){var c,l;return(l=(c=n.props).onInteractionEnd)===null||l===void 0?void 0:l.call(c)})},250)}},n.getPointOnContainer=function(o,r){var s=o.x,i=o.y;if(!n.containerRect)throw new Error("The Cropper is not mounted");return{x:n.containerRect.width/2-(s-r.x),y:n.containerRect.height/2-(i-r.y)}},n.getPointOnMedia=function(o){var r=o.x,s=o.y,i=n.props,c=i.crop,l=i.zoom;return{x:(r+c.x)/l,y:(s+c.y)/l}},n.setNewZoom=function(o,r,s){var i=s===void 0?{}:s,c=i.shouldUpdatePosition,l=c===void 0?!0:c;if(!(!n.state.cropSize||!n.props.onZoomChange)){var u=tk(o,n.props.minZoom,n.props.maxZoom);if(l){var d=n.getPointOnContainer(r,n.containerPosition),p=n.getPointOnMedia(d),f={x:p.x*u-d.x,y:p.y*u-d.y},b=n.props.restrictPosition?$g(f,n.mediaSize,n.state.cropSize,u,n.props.rotation):f;n.props.onCropChange(b)}n.props.onZoomChange(u)}},n.getCropData=function(){if(!n.state.cropSize)return null;var o=n.props.restrictPosition?$g(n.props.crop,n.mediaSize,n.state.cropSize,n.props.zoom,n.props.rotation):n.props.crop;return kWt(o,n.mediaSize,n.state.cropSize,n.getAspect(),n.props.zoom,n.props.rotation,n.props.restrictPosition)},n.emitCropData=function(){var o=n.getCropData();if(o){var r=o.croppedAreaPercentages,s=o.croppedAreaPixels;n.props.onCropComplete&&n.props.onCropComplete(r,s),n.props.onCropAreaChange&&n.props.onCropAreaChange(r,s)}},n.emitCropAreaChange=function(){var o=n.getCropData();if(o){var r=o.croppedAreaPercentages,s=o.croppedAreaPixels;n.props.onCropAreaChange&&n.props.onCropAreaChange(r,s)}},n.recomputeCropPosition=function(){if(n.state.cropSize){var o=n.props.restrictPosition?$g(n.props.crop,n.mediaSize,n.state.cropSize,n.props.zoom,n.props.rotation):n.props.crop;n.props.onCropChange(o),n.emitCropData()}},n.onKeyDown=function(o){var r=n.props,s=r.crop,i=r.onCropChange,c=r.keyboardStep,l=r.zoom,u=r.rotation,d=c;if(n.state.cropSize){var p=Pr({},s);switch(o.key){case"ArrowUp":p.y-=d;break;case"ArrowDown":p.y+=d;break;case"ArrowLeft":p.x-=d;break;case"ArrowRight":p.x+=d;break;default:return}n.props.restrictPosition&&(p=$g(p,n.mediaSize,n.state.cropSize,l,u)),i(p)}},n}return t.prototype.componentDidMount=function(){!this.currentDoc||!this.currentWindow||(this.containerRef&&(this.containerRef.ownerDocument&&(this.currentDoc=this.containerRef.ownerDocument),this.currentDoc.defaultView&&(this.currentWindow=this.currentDoc.defaultView),this.initResizeObserver(),typeof window.ResizeObserver>"u"&&this.currentWindow.addEventListener("resize",this.computeSizes),this.props.zoomWithScroll&&this.containerRef.addEventListener("wheel",this.onWheel,{passive:!1}),this.containerRef.addEventListener("gesturestart",this.onGestureStart)),this.currentDoc.addEventListener("scroll",this.onScroll),this.props.disableAutomaticStylesInjection||(this.styleRef=this.currentDoc.createElement("style"),this.styleRef.setAttribute("type","text/css"),this.props.nonce&&this.styleRef.setAttribute("nonce",this.props.nonce),this.styleRef.innerHTML=WWt,this.currentDoc.head.appendChild(this.styleRef)),this.imageRef.current&&this.imageRef.current.complete&&this.onMediaLoad(),this.props.setImageRef&&this.props.setImageRef(this.imageRef),this.props.setVideoRef&&this.props.setVideoRef(this.videoRef))},t.prototype.componentWillUnmount=function(){var n,o;!this.currentDoc||!this.currentWindow||(typeof window.ResizeObserver>"u"&&this.currentWindow.removeEventListener("resize",this.computeSizes),(n=this.resizeObserver)===null||n===void 0||n.disconnect(),this.containerRef&&this.containerRef.removeEventListener("gesturestart",this.preventZoomSafari),this.styleRef&&((o=this.styleRef.parentNode)===null||o===void 0||o.removeChild(this.styleRef)),this.cleanEvents(),this.props.zoomWithScroll&&this.clearScrollEvent())},t.prototype.componentDidUpdate=function(n){var o,r,s,i,c,l,u,d,p;n.rotation!==this.props.rotation?(this.computeSizes(),this.recomputeCropPosition()):n.aspect!==this.props.aspect?this.computeSizes():n.objectFit!==this.props.objectFit?this.computeSizes():n.zoom!==this.props.zoom?this.recomputeCropPosition():((o=n.cropSize)===null||o===void 0?void 0:o.height)!==((r=this.props.cropSize)===null||r===void 0?void 0:r.height)||((s=n.cropSize)===null||s===void 0?void 0:s.width)!==((i=this.props.cropSize)===null||i===void 0?void 0:i.width)?this.computeSizes():(((c=n.crop)===null||c===void 0?void 0:c.x)!==((l=this.props.crop)===null||l===void 0?void 0:l.x)||((u=n.crop)===null||u===void 0?void 0:u.y)!==((d=this.props.crop)===null||d===void 0?void 0:d.y))&&this.emitCropAreaChange(),n.zoomWithScroll!==this.props.zoomWithScroll&&this.containerRef&&(this.props.zoomWithScroll?this.containerRef.addEventListener("wheel",this.onWheel,{passive:!1}):this.clearScrollEvent()),n.video!==this.props.video&&((p=this.videoRef.current)===null||p===void 0||p.load());var f=this.getObjectFit();f!==this.state.mediaObjectFit&&this.setState({mediaObjectFit:f},this.computeSizes)},t.prototype.getAspect=function(){var n=this.props,o=n.cropSize,r=n.aspect;return o?o.width/o.height:r},t.prototype.getObjectFit=function(){var n,o,r,s;if(this.props.objectFit==="cover"){var i=this.imageRef.current||this.videoRef.current;if(i&&this.containerRef){this.containerRect=this.containerRef.getBoundingClientRect();var c=this.containerRect.width/this.containerRect.height,l=((n=this.imageRef.current)===null||n===void 0?void 0:n.naturalWidth)||((o=this.videoRef.current)===null||o===void 0?void 0:o.videoWidth)||0,u=((r=this.imageRef.current)===null||r===void 0?void 0:r.naturalHeight)||((s=this.videoRef.current)===null||s===void 0?void 0:s.videoHeight)||0,d=l/u;return d<c?"horizontal-cover":"vertical-cover"}return"horizontal-cover"}return this.props.objectFit},t.prototype.onPinchStart=function(n){var o=t.getTouchPoint(n.touches[0]),r=t.getTouchPoint(n.touches[1]);this.lastPinchDistance=mte(o,r),this.lastPinchRotation=gte(o,r),this.onDragStart(Mte(o,r))},t.prototype.onPinchMove=function(n){var o=this;if(!(!this.currentDoc||!this.currentWindow)){var r=t.getTouchPoint(n.touches[0]),s=t.getTouchPoint(n.touches[1]),i=Mte(r,s);this.onDrag(i),this.rafPinchTimeout&&this.currentWindow.cancelAnimationFrame(this.rafPinchTimeout),this.rafPinchTimeout=this.currentWindow.requestAnimationFrame(function(){var c=mte(r,s),l=o.props.zoom*(c/o.lastPinchDistance);o.setNewZoom(l,i,{shouldUpdatePosition:!1}),o.lastPinchDistance=c;var u=gte(r,s),d=o.props.rotation+(u-o.lastPinchRotation);o.props.onRotationChange&&o.props.onRotationChange(d),o.lastPinchRotation=u})}},t.prototype.render=function(){var n=this,o,r=this.props,s=r.image,i=r.video,c=r.mediaProps,l=r.transform,u=r.crop,d=u.x,p=u.y,f=r.rotation,b=r.zoom,h=r.cropShape,g=r.showGrid,z=r.style,A=z.containerStyle,_=z.cropAreaStyle,v=z.mediaStyle,M=r.classes,y=M.containerClassName,k=M.cropAreaClassName,S=M.mediaClassName,C=(o=this.state.mediaObjectFit)!==null&&o!==void 0?o:this.getObjectFit();return x.createElement("div",{onMouseDown:this.onMouseDown,onTouchStart:this.onTouchStart,ref:function(T){return n.containerRef=T},"data-testid":"container",style:A,className:yv("reactEasyCrop_Container",y)},s?x.createElement("img",Pr({alt:"",className:yv("reactEasyCrop_Image",C==="contain"&&"reactEasyCrop_Contain",C==="horizontal-cover"&&"reactEasyCrop_Cover_Horizontal",C==="vertical-cover"&&"reactEasyCrop_Cover_Vertical",S)},c,{src:s,ref:this.imageRef,style:Pr(Pr({},v),{transform:l||"translate(".concat(d,"px, ").concat(p,"px) rotate(").concat(f,"deg) scale(").concat(b,")")}),onLoad:this.onMediaLoad})):i&&x.createElement("video",Pr({autoPlay:!0,playsInline:!0,loop:!0,muted:!0,className:yv("reactEasyCrop_Video",C==="contain"&&"reactEasyCrop_Contain",C==="horizontal-cover"&&"reactEasyCrop_Cover_Horizontal",C==="vertical-cover"&&"reactEasyCrop_Cover_Vertical",S)},c,{ref:this.videoRef,onLoadedMetadata:this.onMediaLoad,style:Pr(Pr({},v),{transform:l||"translate(".concat(d,"px, ").concat(p,"px) rotate(").concat(f,"deg) scale(").concat(b,")")}),controls:!1}),(Array.isArray(i)?i:[{src:i}]).map(function(R){return x.createElement("source",Pr({key:R.src},R))})),this.state.cropSize&&x.createElement("div",{style:Pr(Pr({},_),{width:this.state.cropSize.width,height:this.state.cropSize.height}),tabIndex:0,onKeyDown:this.onKeyDown,"data-testid":"cropper",className:yv("reactEasyCrop_CropArea",h==="round"&&"reactEasyCrop_CropAreaRound",g&&"reactEasyCrop_CropAreaGrid",k)}))},t.defaultProps={zoom:1,rotation:0,aspect:4/3,maxZoom:BWt,minZoom:NWt,cropShape:"rect",objectFit:"contain",showGrid:!0,style:{},classes:{},mediaProps:{},zoomSpeed:1,restrictPosition:!0,zoomWithScroll:!0,keyboardStep:LWt},t.getMousePoint=function(n){return{x:Number(n.clientX),y:Number(n.clientY)}},t.getTouchPoint=function(n){return{x:Number(n.clientX),y:Number(n.clientY)}},t}(x.Component);function jWt({url:e,width:t,height:n,naturalHeight:o,naturalWidth:r,borderProps:s}){const{isInProgress:i,editedUrl:c,position:l,zoom:u,aspect:d,setPosition:p,setCrop:f,setZoom:b,rotation:h}=RO(),[g,{width:z}]=js();let A=n||z*o/r;h%180===90&&(A=z*r/o);const _=a.jsxs("div",{className:oe("wp-block-image__crop-area",s?.className,{"is-applying":i}),style:{...s?.style,width:t||z,height:A},children:[a.jsx(PWt,{image:c||e,disabled:i,minZoom:Gze/100,maxZoom:Kze/100,crop:l,zoom:u/100,aspect:d,onCropChange:v=>{p(v)},onCropComplete:v=>{f(v)},onZoomChange:v=>{b(v*100)}}),i&&a.jsx(Xn,{})]});return a.jsxs(a.Fragment,{children:[g,_]})}function IWt(){const{isInProgress:e,zoom:t,setZoom:n}=RO();return a.jsx(so,{contentClassName:"wp-block-image__zoom",popoverProps:Yze,renderToggle:({isOpen:o,onToggle:r})=>a.jsx(Vt,{icon:Fw,label:m("Zoom"),onClick:r,"aria-expanded":o,disabled:e}),renderContent:()=>a.jsx($s,{paddingSize:"medium",children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Zoom"),min:Gze,max:Kze,value:Math.round(t),onChange:n})})})}function DWt(){const{isInProgress:e,rotateClockwise:t}=RO();return a.jsx(Vt,{icon:Bde,label:m("Rotate"),onClick:t,disabled:e})}function FWt(){const{isInProgress:e,apply:t,cancel:n}=RO();return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{onClick:t,disabled:e,children:m("Apply")}),a.jsx(Vt,{onClick:n,children:m("Cancel")})]})}function Qze({id:e,url:t,width:n,height:o,naturalHeight:r,naturalWidth:s,onSaveImage:i,onFinishEditing:c,borderProps:l}){return a.jsxs(hWt,{id:e,url:t,naturalWidth:s,naturalHeight:r,onSaveImage:i,onFinishEditing:c,children:[a.jsx(jWt,{borderProps:l,url:t,width:n,height:o,naturalHeight:r,naturalWidth:s}),a.jsxs(bt,{children:[a.jsxs(Wn,{children:[a.jsx(IWt,{}),a.jsx(bs,{children:u=>a.jsx(gWt,{toggleProps:u})}),a.jsx(DWt,{})]}),a.jsx(Wn,{children:a.jsx(FWt,{})})]})]})}function $Wt(e,t,n,o,r){var s,i;const[c,l]=x.useState((s=t??o)!==null&&s!==void 0?s:""),[u,d]=x.useState((i=e??n)!==null&&i!==void 0?i:"");return x.useEffect(()=>{t===void 0&&o!==void 0&&l(o),e===void 0&&n!==void 0&&d(n)},[o,n]),x.useEffect(()=>{t!==void 0&&Number.parseInt(t)!==Number.parseInt(c)&&l(t),e!==void 0&&Number.parseInt(e)!==Number.parseInt(u)&&d(e)},[t,e]),{currentHeight:u,currentWidth:c,updateDimension:(b,h)=>{const g=h===""?void 0:parseInt(h,10);b==="width"?l(g):d(g),r({[b]:g})},updateDimensions:(b,h)=>{d(b??n),l(h??o),r({height:b,width:h})}}}const zte=[25,50,75,100],VWt=()=>{};function Ote(e,t,n){const o=Math.round(t*(e/100)),r=Math.round(n*(e/100));return{scaledWidth:o,scaledHeight:r}}function HWt({imageSizeHelp:e,imageWidth:t,imageHeight:n,imageSizeOptions:o=[],isResizable:r=!0,slug:s,width:i,height:c,onChange:l,onChangeImage:u=VWt}){const{currentHeight:d,currentWidth:p,updateDimension:f,updateDimensions:b}=$Wt(c,i,n,t,l),h=z=>{if(z===void 0){b();return}const{scaledWidth:A,scaledHeight:_}=Ote(z,t,n);b(_,A)},g=zte.find(z=>{const{scaledWidth:A,scaledHeight:_}=Ote(z,t,n);return p===A&&d===_});return a.jsxs(a.Fragment,{children:[o&&o.length>0&&a.jsx(jn,{__nextHasNoMarginBottom:!0,label:m("Resolution"),value:s,options:o,onChange:u,help:e,size:"__unstable-large"}),r&&a.jsxs("div",{className:"block-editor-image-size-control",children:[a.jsxs(Ot,{align:"baseline",spacing:"3",children:[a.jsx(g0,{className:"block-editor-image-size-control__width",label:m("Width"),value:p,min:1,onChange:z=>f("width",z),size:"__unstable-large"}),a.jsx(g0,{className:"block-editor-image-size-control__height",label:m("Height"),value:d,min:1,onChange:z=>f("height",z),size:"__unstable-large"})]}),a.jsx(Do,{label:m("Image size presets"),hideLabelFromVision:!0,onChange:h,value:g,isBlock:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:zte.map(z=>a.jsx(Kn,{value:z,label:xe(m("%d%%"),z)},z))})]})]})}const yte={left:Bw,center:Lw,right:Pw,"space-between":PP,stretch:jP};function UWt({allowedControls:e=["left","center","right","space-between"],isCollapsed:t=!0,onChange:n,value:o,popoverProps:r,isToolbar:s}){const i=p=>{n(p===o?void 0:p)},c=o?yte[o]:yte.left,l=[{name:"left",icon:Bw,title:m("Justify items left"),isActive:o==="left",onClick:()=>i("left")},{name:"center",icon:Lw,title:m("Justify items center"),isActive:o==="center",onClick:()=>i("center")},{name:"right",icon:Pw,title:m("Justify items right"),isActive:o==="right",onClick:()=>i("right")},{name:"space-between",icon:PP,title:m("Space between items"),isActive:o==="space-between",onClick:()=>i("space-between")},{name:"stretch",icon:jP,title:m("Stretch items"),isActive:o==="stretch",onClick:()=>i("stretch")}],u=s?Wn:Lc,d=s?{isCollapsed:t}:{};return a.jsx(u,{icon:c,popoverProps:r,label:m("Change items justification"),controls:l.filter(p=>e.includes(p.name)),...d})}const Jze=e=>a.jsx(UWt,{...e,isToolbar:!1});function XWt({url:e,urlLabel:t,className:n}){const o=oe(n,"block-editor-url-popover__link-viewer-url");return e?a.jsx(hr,{className:o,href:e,children:t||Ph(c3(e))}):a.jsx("span",{className:o})}function GWt({className:e,linkClassName:t,onEditLinkClick:n,url:o,urlLabel:r,...s}){return a.jsxs("div",{className:oe("block-editor-url-popover__link-viewer",e),...s,children:[a.jsx(XWt,{url:o,urlLabel:r,className:t}),n&&a.jsx(Ce,{icon:Nd,label:m("Edit"),onClick:n,size:"compact"})]})}function e3e(e){return typeof e=="function"}class KWt extends x.Component{constructor(t){super(t),this.onChange=this.onChange.bind(this),this.onFocus=this.onFocus.bind(this),this.onKeyDown=this.onKeyDown.bind(this),this.selectLink=this.selectLink.bind(this),this.handleOnClick=this.handleOnClick.bind(this),this.bindSuggestionNode=this.bindSuggestionNode.bind(this),this.autocompleteRef=t.autocompleteRef||x.createRef(),this.inputRef=x.createRef(),this.updateSuggestions=F1(this.updateSuggestions.bind(this),200),this.suggestionNodes=[],this.suggestionsRequest=null,this.state={suggestions:[],showSuggestions:!1,suggestionsValue:null,selectedSuggestion:null,suggestionsListboxId:"",suggestionOptionIdPrefix:""}}componentDidUpdate(t){const{showSuggestions:n,selectedSuggestion:o}=this.state,{value:r,__experimentalShowInitialSuggestions:s=!1}=this.props;n&&o!==null&&this.suggestionNodes[o]&&this.suggestionNodes[o].scrollIntoView({behavior:"instant",block:"nearest",inline:"nearest"}),t.value!==r&&!this.props.disableSuggestions&&(r?.length?this.updateSuggestions(r):s&&this.updateSuggestions())}componentDidMount(){this.shouldShowInitialSuggestions()&&this.updateSuggestions()}componentWillUnmount(){this.suggestionsRequest?.cancel?.(),this.suggestionsRequest=null}bindSuggestionNode(t){return n=>{this.suggestionNodes[t]=n}}shouldShowInitialSuggestions(){const{__experimentalShowInitialSuggestions:t=!1,value:n}=this.props;return t&&!(n&&n.length)}updateSuggestions(t=""){const{__experimentalFetchLinkSuggestions:n,__experimentalHandleURLSuggestions:o}=this.props;if(!n)return;const r=!t?.length;if(t=t.trim(),!r&&(t.length<2||!o&&Pf(t))){this.suggestionsRequest?.cancel?.(),this.suggestionsRequest=null,this.setState({suggestions:[],showSuggestions:!1,suggestionsValue:t,selectedSuggestion:null,loading:!1});return}this.setState({selectedSuggestion:null,loading:!0});const s=n(t,{isInitialSuggestions:r});s.then(i=>{this.suggestionsRequest===s&&(this.setState({suggestions:i,suggestionsValue:t,loading:!1,showSuggestions:!!i.length}),i.length?this.props.debouncedSpeak(xe(Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",i.length),i.length),"assertive"):this.props.debouncedSpeak(m("No results."),"assertive"))}).catch(()=>{this.suggestionsRequest===s&&this.setState({loading:!1})}).finally(()=>{this.suggestionsRequest===s&&(this.suggestionsRequest=null)}),this.suggestionsRequest=s}onChange(t){this.props.onChange(t)}onFocus(){const{suggestions:t}=this.state,{disableSuggestions:n,value:o}=this.props;o&&!n&&!(t&&t.length)&&this.suggestionsRequest===null&&this.updateSuggestions(o)}onKeyDown(t){this.props.onKeyDown?.(t);const{showSuggestions:n,selectedSuggestion:o,suggestions:r,loading:s}=this.state;if(!n||!r.length||s){switch(t.keyCode){case cc:{t.target.selectionStart!==0&&(t.preventDefault(),t.target.setSelectionRange(0,0));break}case Ps:{this.props.value.length!==t.target.selectionStart&&(t.preventDefault(),t.target.setSelectionRange(this.props.value.length,this.props.value.length));break}case Gr:{this.props.onSubmit&&(t.preventDefault(),this.props.onSubmit(null,t));break}}return}const i=this.state.suggestions[this.state.selectedSuggestion];switch(t.keyCode){case cc:{t.preventDefault();const c=o?o-1:r.length-1;this.setState({selectedSuggestion:c});break}case Ps:{t.preventDefault();const c=o===null||o===r.length-1?0:o+1;this.setState({selectedSuggestion:c});break}case Z2:{this.state.selectedSuggestion!==null&&(this.selectLink(i),this.props.speak(m("Link selected.")));break}case Gr:{t.preventDefault(),this.state.selectedSuggestion!==null?(this.selectLink(i),this.props.onSubmit&&this.props.onSubmit(i,t)):this.props.onSubmit&&this.props.onSubmit(null,t);break}}}selectLink(t){this.props.onChange(t.url,t),this.setState({selectedSuggestion:null,showSuggestions:!1})}handleOnClick(t){this.selectLink(t),this.inputRef.current.focus()}static getDerivedStateFromProps({value:t,instanceId:n,disableSuggestions:o,__experimentalShowInitialSuggestions:r=!1},{showSuggestions:s}){let i=s;const c=t&&t.length;return!r&&!c&&(i=!1),o===!0&&(i=!1),{showSuggestions:i,suggestionsListboxId:`block-editor-url-input-suggestions-${n}`,suggestionOptionIdPrefix:`block-editor-url-input-suggestion-${n}`}}render(){return a.jsxs(a.Fragment,{children:[this.renderControl(),this.renderSuggestions()]})}renderControl(){const{label:t=null,className:n,isFullWidth:o,instanceId:r,placeholder:s=m("Paste URL or type to search"),__experimentalRenderControl:i,value:c="",hideLabelFromVision:l=!1}=this.props,{loading:u,showSuggestions:d,selectedSuggestion:p,suggestionsListboxId:f,suggestionOptionIdPrefix:b}=this.state,h=`url-input-control-${r}`,g={id:h,label:t,className:oe("block-editor-url-input",n,{"is-full-width":o}),hideLabelFromVision:l},z={id:h,value:c,required:!0,type:"text",onChange:this.onChange,onFocus:this.onFocus,placeholder:s,onKeyDown:this.onKeyDown,role:"combobox","aria-label":t?void 0:m("URL"),"aria-expanded":d,"aria-autocomplete":"list","aria-owns":f,"aria-activedescendant":p!==null?`${b}-${p}`:void 0,ref:this.inputRef,suffix:this.props.suffix};return i?i(g,z,u):a.jsxs(no,{__nextHasNoMarginBottom:!0,...g,children:[a.jsx(N1,{...z,__next40pxDefaultSize:!0}),u&&a.jsx(Xn,{})]})}renderSuggestions(){const{className:t,__experimentalRenderSuggestions:n}=this.props,{showSuggestions:o,suggestions:r,suggestionsValue:s,selectedSuggestion:i,suggestionsListboxId:c,suggestionOptionIdPrefix:l,loading:u}=this.state;if(!o||r.length===0)return null;const d={id:c,ref:this.autocompleteRef,role:"listbox"},p=(f,b)=>({role:"option",tabIndex:"-1",id:`${l}-${b}`,ref:this.bindSuggestionNode(b),"aria-selected":b===i?!0:void 0});return e3e(n)?n({suggestions:r,selectedSuggestion:i,suggestionsListProps:d,buildSuggestionItemProps:p,isLoading:u,handleSuggestionClick:this.handleOnClick,isInitialSuggestions:!s?.length,currentInputValue:s}):a.jsx(Io,{placement:"bottom",focusOnMount:!1,children:a.jsx("div",{...d,className:oe("block-editor-url-input__suggestions",{[`${t}__suggestions`]:t}),children:r.map((f,b)=>x.createElement(Ce,{__next40pxDefaultSize:!0,...p(f,b),key:f.id,className:oe("block-editor-url-input__suggestion",{"is-selected":b===i}),onClick:()=>this.handleOnClick(f)},f.title))})})}}const bI=Co(sSe,fbt,rSe,Xl((e,t)=>{if(e3e(t.__experimentalFetchLinkSuggestions))return;const{getSettings:n}=e(Q);return{__experimentalFetchLinkSuggestions:n().__experimentalFetchLinkSuggestions}}))(KWt);function YWt({autocompleteRef:e,className:t,onChangeInputValue:n,value:o,...r}){return a.jsxs("form",{className:oe("block-editor-url-popover__link-editor",t),...r,children:[a.jsx(bI,{value:o,onChange:n,autocompleteRef:e}),a.jsx(Ce,{icon:jw,label:m("Apply"),type:"submit",size:"compact"})]})}const{__experimentalPopoverLegacyPositionToPlacement:ZWt}=ct(tr),QWt="bottom",lf=x.forwardRef(({additionalControls:e,children:t,renderSettings:n,placement:o,focusOnMount:r="firstElement",position:s,...i},c)=>{s!==void 0&&Ke("`position` prop in wp.blockEditor.URLPopover",{since:"6.2",alternative:"`placement` prop"});let l;o!==void 0?l=o:s!==void 0&&(l=ZWt(s)),l=l||QWt;const[u,d]=x.useState(!1),p=!!n&&u,f=()=>{d(!u)};return a.jsxs(Io,{ref:c,role:"dialog","aria-modal":"true","aria-label":m("Edit URL"),className:"block-editor-url-popover",focusOnMount:r,placement:l,shift:!0,variant:"toolbar",...i,children:[a.jsx("div",{className:"block-editor-url-popover__input-container",children:a.jsxs("div",{className:"block-editor-url-popover__row",children:[t,!!n&&a.jsx(Ce,{className:"block-editor-url-popover__settings-toggle",icon:nu,label:m("Link settings"),onClick:f,"aria-expanded":u,size:"compact"})]})}),p&&a.jsx("div",{className:"block-editor-url-popover__settings",children:n()}),e&&!p&&a.jsx("div",{className:"block-editor-url-popover__additional-controls",children:e})]})});lf.LinkEditor=YWt;lf.LinkViewer=GWt;const JWt=()=>{},eNt=({src:e,onChange:t,onSubmit:n,onClose:o,popoverAnchor:r})=>a.jsx(lf,{anchor:r,onClose:o,children:a.jsx("form",{className:"block-editor-media-placeholder__url-input-form",onSubmit:n,children:a.jsx(N1,{__next40pxDefaultSize:!0,label:m("URL"),type:"url",hideLabelFromVision:!0,placeholder:m("Paste or type URL"),onChange:t,value:e,suffix:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{size:"small",icon:jw,label:m("Apply"),type:"submit"})})})})}),tNt=({src:e,onChangeSrc:t,onSelectURL:n})=>{const[o,r]=x.useState(null),[s,i]=x.useState(!1),c=()=>{i(!0)},l=()=>{i(!1),o?.focus()},u=d=>{d.preventDefault(),e&&n&&(n(e),l())};return a.jsxs("div",{className:"block-editor-media-placeholder__url-input-container",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-media-placeholder__button",onClick:c,isPressed:s,variant:"secondary","aria-haspopup":"dialog",ref:r,children:m("Insert from URL")}),s&&a.jsx(eNt,{src:e,onChange:t,onSubmit:u,onClose:l,popoverAnchor:o})]})};function nNt({value:e={},allowedTypes:t,className:n,icon:o,labels:r={},mediaPreview:s,notices:i,isAppender:c,accept:l,addToGallery:u,multiple:d=!1,handleUpload:p=!0,disableDropZone:f,disableMediaButtons:b,onError:h,onSelect:g,onCancel:z,onSelectURL:A,onToggleFeaturedImage:_,onDoubleClick:v,onFilesPreUpload:M=JWt,onHTMLDrop:y,children:k,mediaLibraryButton:S,placeholder:C,style:R}){y&&Ke("wp.blockEditor.MediaPlaceholder onHTMLDrop prop",{since:"6.2",version:"6.4"});const T=G(J=>{const{getSettings:ue}=J(Q);return ue().mediaUpload},[]),[E,B]=x.useState("");x.useEffect(()=>{var J;B((J=e?.src)!==null&&J!==void 0?J:"")},[e?.src]);const N=()=>!t||t.length===0?!1:t.every(J=>J==="image"||J.startsWith("image/")),j=J=>{if(!p||typeof p=="function"&&!p(J))return g(J);M(J);let ue;if(d)if(u){let ce=[];ue=me=>{const de=(e??[]).filter(Ae=>Ae.id?!ce.some(({id:ye})=>Number(ye)===Number(Ae.id)):!ce.some(({urlSlug:ye})=>Ae.url.includes(ye)));g(de.concat(me)),ce=me.map(Ae=>{const ye=Ae.url.lastIndexOf("."),Ne=Ae.url.slice(0,ye);return{id:Ae.id,urlSlug:Ne}})}}else ue=g;else ue=([ce])=>g(ce);T({allowedTypes:t,filesList:J,onFileChange:ue,onError:h})};async function I(J){const{blocks:ue}=Sge(J);if(!ue?.length)return;const ce=await Promise.all(ue.map(me=>{const de=me.name.split("/")[1];return me.attributes.id?(me.attributes.type=de,me.attributes):new Promise((Ae,ye)=>{window.fetch(me.attributes.url).then(Ne=>Ne.blob()).then(Ne=>T({filesList:[Ne],additionalData:{title:me.attributes.title,alt_text:me.attributes.alt,caption:me.attributes.caption,type:de},onFileChange:([je])=>{je.id&&Ae(je)},allowedTypes:t,onError:ye})).catch(()=>Ae(me.attributes.url))})})).catch(me=>h(me));g(d?ce:ce[0])}const P=J=>{j(J.target.files)},F=C??(J=>{let{instructions:ue,title:ce}=r;if(!T&&!A&&(ue=m("To edit this block, you need permission to upload media.")),ue===void 0||ce===void 0){const de=t??[],[Ae]=de,ye=de.length===1,Ne=ye&&Ae==="audio",je=ye&&Ae==="image",ie=ye&&Ae==="video";ue===void 0&&T&&(ue=m("Drag and drop an image or video, upload, or choose from your library."),Ne?ue=m("Drag and drop an audio file, upload, or choose from your library."):je?ue=m("Drag and drop an image, upload, or choose from your library."):ie&&(ue=m("Drag and drop a video, upload, or choose from your library."))),ce===void 0&&(ce=m("Media"),Ne?ce=m("Audio"):je?ce=m("Image"):ie&&(ce=m("Video")))}const me=oe("block-editor-media-placeholder",n,{"is-appender":c});return a.jsxs(vo,{icon:o,label:ce,instructions:ue,className:me,notices:i,onDoubleClick:v,preview:s,style:R,children:[J,k]})}),X=()=>f?null:a.jsx(Tz,{onFilesDrop:j,onDrop:I,isEligible:J=>{const ue="wp-block:core/",ce=[];for(const me of J.types)me.startsWith(ue)&&ce.push(me.slice(ue.length));return ce.every(me=>t.includes(me))&&(d?!0:ce.length===1)}}),Z=()=>z&&a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-media-placeholder__cancel-button",title:m("Cancel"),variant:"link",onClick:z,children:m("Cancel")}),V=()=>A&&a.jsx(tNt,{src:E,onChangeSrc:B,onSelectURL:A}),ee=()=>_&&a.jsx("div",{className:"block-editor-media-placeholder__url-input-container",children:a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-media-placeholder__button",onClick:_,variant:"secondary",children:m("Use featured image")})}),te=()=>{const ue=S??(({open:me})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>{me()},children:m("Media Library")})),ce=a.jsx(ab,{addToGallery:u,gallery:d&&N(),multiple:d,onSelect:g,allowedTypes:t,mode:"browse",value:Array.isArray(e)?e.map(({id:me})=>me):e.id,render:ue});if(T&&c)return a.jsxs(a.Fragment,{children:[X(),a.jsx(qx,{onChange:P,accept:l,multiple:!!d,render:({openFileDialog:me})=>{const de=a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",className:oe("block-editor-media-placeholder__button","block-editor-media-placeholder__upload-button"),onClick:me,children:We("Upload","verb")}),ce,V(),ee(),Z()]});return F(de)}})]});if(T){const me=a.jsxs(a.Fragment,{children:[X(),a.jsx(qx,{render:({openFileDialog:de})=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:de,variant:"primary",className:oe("block-editor-media-placeholder__button","block-editor-media-placeholder__upload-button"),children:We("Upload","verb")}),onChange:P,accept:l,multiple:!!d}),ce,V(),ee(),Z()]});return F(me)}return F(ce)};return b?a.jsx(Hd,{children:X()}):a.jsx(Hd,{fallback:F(V()),children:te()})}const au=ap("editor.MediaPlaceholder")(nNt),oNt={placement:"bottom-start"},t3e=()=>a.jsxs(a.Fragment,{children:[["bold","italic","link","unknown"].map(e=>a.jsx(xf,{name:`RichText.ToolbarControls.${e}`},e)),a.jsx(xf,{name:"RichText.ToolbarControls",children:e=>{if(!e.length)return null;const n=e.map(([{props:o}])=>o).some(({isActive:o})=>o);return a.jsx(bs,{children:o=>a.jsx(c0,{icon:nu,label:m("More"),toggleProps:{...o,className:oe(o.className,{"is-pressed":n}),description:m("Displays more block tools")},controls:hO(e.map(([{props:r}])=>r),"title"),popoverProps:oNt})})}})]});function rNt({popoverAnchor:e}){return a.jsx(Io,{placement:"top",focusOnMount:!1,anchor:e,className:"block-editor-rich-text__inline-format-toolbar",__unstableSlotName:"block-toolbar",children:a.jsx(rI,{className:"block-editor-rich-text__inline-format-toolbar-group","aria-label":m("Format tools"),children:a.jsx(Wn,{children:a.jsx(t3e,{})})})})}const sNt=({inline:e,editableContentElement:t})=>e?a.jsx(rNt,{popoverAnchor:t}):a.jsx(bt,{group:"inline",children:a.jsx(t3e,{})});function iNt({html:e,value:t}){const n=x.useRef(),o=!!t.activeFormats?.length,{__unstableMarkLastChangeAsPersistent:r}=Oe(Q);x.useLayoutEffect(()=>{if(!n.current){n.current=t.text;return}if(n.current!==t.text){const s=window.setTimeout(()=>{r()},1e3);return n.current=t.text,()=>{window.clearTimeout(s)}}r()},[e,o])}function aNt(e){return e(dl).getFormatTypes()}const cNt=new Set(["a","audio","button","details","embed","iframe","input","label","select","textarea","video"]);function lNt(e,t){return typeof e!="object"?{[t]:e}:Object.fromEntries(Object.entries(e).map(([n,o])=>[`${t}.${n}`,o]))}function Ate(e,t){return e[t]?e[t]:Object.keys(e).filter(n=>n.startsWith(t+".")).reduce((n,o)=>(n[o.slice(t.length+1)]=e[o],n),{})}function uNt({clientId:e,identifier:t,withoutInteractiveFormatting:n,allowedFormats:o}){const r=G(aNt,[]),s=x.useMemo(()=>r.filter(({name:f,interactive:b,tagName:h})=>!(o&&!o.includes(f)||n&&(b||cNt.has(h)))),[r,o,n]),i=G(f=>s.reduce((b,h)=>h.__experimentalGetPropsForEditableTreePreparation?{...b,...lNt(h.__experimentalGetPropsForEditableTreePreparation(f,{richTextIdentifier:t,blockClientId:e}),h.name)}:b,{}),[s,e,t]),c=Oe(),l=[],u=[],d=[],p=[];for(const f in i)p.push(i[f]);return s.forEach(f=>{if(f.__experimentalCreatePrepareEditableTree){const b=f.__experimentalCreatePrepareEditableTree(Ate(i,f.name),{richTextIdentifier:t,blockClientId:e});f.__experimentalCreateOnChangeEditableValue?u.push(b):l.push(b)}if(f.__experimentalCreateOnChangeEditableValue){let b={};f.__experimentalGetPropsForEditableTreeChangeHandler&&(b=f.__experimentalGetPropsForEditableTreeChangeHandler(c,{richTextIdentifier:t,blockClientId:e}));const h=Ate(i,f.name);d.push(f.__experimentalCreateOnChangeEditableValue({...typeof h=="object"?h:{},...b},{richTextIdentifier:t,blockClientId:e}))}}),{formatTypes:s,prepareHandlers:l,valueHandlers:u,changeHandlers:d,dependencies:p}}const dNt=["`",'"',"'","“”","‘’"],pNt=e=>t=>{function n(o){const{inputType:r,data:s}=o,{value:i,onChange:c,registry:l}=e.current;if(r!=="insertText"||Gl(i))return;const u=gr("blockEditor.wrapSelectionSettings",dNt).find(([y,k])=>y===s||k===s);if(!u)return;const[d,p=d]=u,f=i.start,b=i.end+d.length;let h=E0(i,d,f,f);h=E0(h,p,b,b);const{__unstableMarkLastChangeAsPersistent:g,__unstableMarkAutomaticChange:z}=l.dispatch(Q);g(),c(h),z();const A={};for(const y in o)A[y]=o[y];A.data=p;const{ownerDocument:_}=t,{defaultView:v}=_,M=new v.InputEvent("input",A);window.queueMicrotask(()=>{o.target.dispatchEvent(M)}),o.preventDefault()}return t.addEventListener("beforeinput",n),()=>{t.removeEventListener("beforeinput",n)}};function fNt(e){const t="tales of gutenberg",n=" 🐡🐢🦀🐤🦋🐘🐧🐹🦁🦄🦍🐼🐿🎃🐴🐝🐆🦕🦔🌱🍇π🍌🐉💧🥨🌌🍂🍠🥦🥚🥝🎟🥥🥒🛵🥖🍒🍯🎾🎲🐺🐚🐮⌛️",{start:o,text:r}=e;return o<t.length||r.slice(o-t.length,o).toLowerCase()!==t?e:E0(e,n)}function n3e(e){let t=e.length;for(;t--;){const n=l7(e[t].attributes);if(n)return e[t].attributes[n]=e[t].attributes[n].toString().replace(qf,""),[e[t].clientId,n,0,0];const o=n3e(e[t].innerBlocks);if(o)return o}return[]}const bNt=e=>t=>{function n(){const{getValue:r,onReplace:s,selectionChange:i,registry:c}=e.current;if(!s)return;const l=r(),{start:u,text:d}=l;if(d.slice(u-1,u)!==" ")return;const f=d.slice(0,u).trim(),b=Ei("from").filter(({type:A})=>A==="prefix"),h=xc(b,({prefix:A})=>f===A);if(!h)return;const g=T0({value:E0(l,qf,0,u)}),z=h.transform(g);return i(...n3e([z])),s([z]),c.dispatch(Q).__unstableMarkAutomaticChange(),!0}function o(r){const{inputType:s,type:i}=r,{getValue:c,onChange:l,__unstableAllowPrefixTransformations:u,formatTypes:d,registry:p}=e.current;if(s!=="insertText"&&i!=="compositionend"||u&&n())return;const f=c(),b=d.reduce((z,{__unstableInputRule:A})=>(A&&(z=A(z)),z),fNt(f)),{__unstableMarkLastChangeAsPersistent:h,__unstableMarkAutomaticChange:g}=p.dispatch(Q);b!==f&&(h(),l({...b,activeFormats:f.activeFormats}),g())}return t.addEventListener("input",o),t.addEventListener("compositionend",o),()=>{t.removeEventListener("input",o),t.removeEventListener("compositionend",o)}},hNt=e=>t=>{function n(o){if(o.inputType!=="insertReplacementText")return;const{registry:r}=e.current;r.dispatch(Q).__unstableMarkLastChangeAsPersistent()}return t.addEventListener("beforeinput",n),()=>{t.removeEventListener("beforeinput",n)}},mNt=()=>e=>{function t(n){(lc.primary(n,"z")||lc.primary(n,"y")||lc.primaryShift(n,"z"))&&n.preventDefault()}return e.addEventListener("keydown",t),()=>{e.removeEventListener("keydown",t)}},gNt=e=>t=>{const{keyboardShortcuts:n}=e.current;function o(r){for(const s of n.current)s(r)}return t.addEventListener("keydown",o),()=>{t.removeEventListener("keydown",o)}},MNt=e=>t=>{const{inputEvents:n}=e.current;function o(r){for(const s of n.current)s(r)}return t.addEventListener("input",o),()=>{t.removeEventListener("input",o)}},zNt=e=>t=>{function n(o){const{keyCode:r}=o;if(o.defaultPrevented||r!==Mc&&r!==gd)return;const{registry:s}=e.current,{didAutomaticChange:i,getSettings:c}=s.select(Q),{__experimentalUndo:l}=c();l&&i()&&(o.preventDefault(),l())}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}};function ONt(e,t){if(t?.length){let n=e.formats.length;for(;n--;)e.formats[n]=[...t,...e.formats[n]||[]]}}function o3e(e){if(!(e!==!0&&e!=="p"&&e!=="li"))return e===!0?"p":e}function hI({allowedFormats:e,disableFormats:t}){return t?hI.EMPTY_ARRAY:e}hI.EMPTY_ARRAY=[];const yNt=e=>t=>{function n(r){const{disableFormats:s,onChange:i,value:c,formatTypes:l,tagName:u,onReplace:d,__unstableEmbedURLOnPaste:p,preserveWhiteSpace:f,pastePlainText:b}=e.current;if(!t.contains(r.target)||r.defaultPrevented)return;const{plainText:h,html:g}=N7(r);if(r.preventDefault(),window.console.log(`Received HTML: +`,WWt=1,NWt=3,BWt=1,LWt=function(e){fke(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.imageRef=x.createRef(),n.videoRef=x.createRef(),n.containerPosition={x:0,y:0},n.containerRef=null,n.styleRef=null,n.containerRect=null,n.mediaSize={width:0,height:0,naturalWidth:0,naturalHeight:0},n.dragStartPosition={x:0,y:0},n.dragStartCrop={x:0,y:0},n.gestureZoomStart=0,n.gestureRotationStart=0,n.isTouching=!1,n.lastPinchDistance=0,n.lastPinchRotation=0,n.rafDragTimeout=null,n.rafPinchTimeout=null,n.wheelTimer=null,n.currentDoc=typeof document<"u"?document:null,n.currentWindow=typeof window<"u"?window:null,n.resizeObserver=null,n.state={cropSize:null,hasWheelJustStarted:!1,mediaObjectFit:void 0},n.initResizeObserver=function(){if(!(typeof window.ResizeObserver>"u"||!n.containerRef)){var o=!0;n.resizeObserver=new window.ResizeObserver(function(r){if(o){o=!1;return}n.computeSizes()}),n.resizeObserver.observe(n.containerRef)}},n.preventZoomSafari=function(o){return o.preventDefault()},n.cleanEvents=function(){n.currentDoc&&(n.currentDoc.removeEventListener("mousemove",n.onMouseMove),n.currentDoc.removeEventListener("mouseup",n.onDragStopped),n.currentDoc.removeEventListener("touchmove",n.onTouchMove),n.currentDoc.removeEventListener("touchend",n.onDragStopped),n.currentDoc.removeEventListener("gesturemove",n.onGestureMove),n.currentDoc.removeEventListener("gestureend",n.onGestureEnd),n.currentDoc.removeEventListener("scroll",n.onScroll))},n.clearScrollEvent=function(){n.containerRef&&n.containerRef.removeEventListener("wheel",n.onWheel),n.wheelTimer&&clearTimeout(n.wheelTimer)},n.onMediaLoad=function(){var o=n.computeSizes();o&&(n.emitCropData(),n.setInitialCrop(o)),n.props.onMediaLoaded&&n.props.onMediaLoaded(n.mediaSize)},n.setInitialCrop=function(o){if(n.props.initialCroppedAreaPercentages){var r=CWt(n.props.initialCroppedAreaPercentages,n.mediaSize,n.props.rotation,o,n.props.minZoom,n.props.maxZoom),s=r.crop,i=r.zoom;n.props.onCropChange(s),n.props.onZoomChange&&n.props.onZoomChange(i)}else if(n.props.initialCroppedAreaPixels){var c=RWt(n.props.initialCroppedAreaPixels,n.mediaSize,n.props.rotation,o,n.props.minZoom,n.props.maxZoom),s=c.crop,i=c.zoom;n.props.onCropChange(s),n.props.onZoomChange&&n.props.onZoomChange(i)}},n.computeSizes=function(){var o,r,s,i,c,l,u=n.imageRef.current||n.videoRef.current;if(u&&n.containerRef){n.containerRect=n.containerRef.getBoundingClientRect(),n.saveContainerPosition();var d=n.containerRect.width/n.containerRect.height,p=((o=n.imageRef.current)===null||o===void 0?void 0:o.naturalWidth)||((r=n.videoRef.current)===null||r===void 0?void 0:r.videoWidth)||0,f=((s=n.imageRef.current)===null||s===void 0?void 0:s.naturalHeight)||((i=n.videoRef.current)===null||i===void 0?void 0:i.videoHeight)||0,b=u.offsetWidth<p||u.offsetHeight<f,h=p/f,g=void 0;if(b)switch(n.state.mediaObjectFit){default:case"contain":g=d>h?{width:n.containerRect.height*h,height:n.containerRect.height}:{width:n.containerRect.width,height:n.containerRect.width/h};break;case"horizontal-cover":g={width:n.containerRect.width,height:n.containerRect.width/h};break;case"vertical-cover":g={width:n.containerRect.height*h,height:n.containerRect.height};break}else g={width:u.offsetWidth,height:u.offsetHeight};n.mediaSize=Pr(Pr({},g),{naturalWidth:p,naturalHeight:f}),n.props.setMediaSize&&n.props.setMediaSize(n.mediaSize);var z=n.props.cropSize?n.props.cropSize:xWt(n.mediaSize.width,n.mediaSize.height,n.containerRect.width,n.containerRect.height,n.props.aspect,n.props.rotation);return(((c=n.state.cropSize)===null||c===void 0?void 0:c.height)!==z.height||((l=n.state.cropSize)===null||l===void 0?void 0:l.width)!==z.width)&&n.props.onCropSizeChange&&n.props.onCropSizeChange(z),n.setState({cropSize:z},n.recomputeCropPosition),n.props.setCropSize&&n.props.setCropSize(z),z}},n.saveContainerPosition=function(){if(n.containerRef){var o=n.containerRef.getBoundingClientRect();n.containerPosition={x:o.left,y:o.top}}},n.onMouseDown=function(o){n.currentDoc&&(o.preventDefault(),n.currentDoc.addEventListener("mousemove",n.onMouseMove),n.currentDoc.addEventListener("mouseup",n.onDragStopped),n.saveContainerPosition(),n.onDragStart(t.getMousePoint(o)))},n.onMouseMove=function(o){return n.onDrag(t.getMousePoint(o))},n.onScroll=function(o){n.currentDoc&&(o.preventDefault(),n.saveContainerPosition())},n.onTouchStart=function(o){n.currentDoc&&(n.isTouching=!0,!(n.props.onTouchRequest&&!n.props.onTouchRequest(o))&&(n.currentDoc.addEventListener("touchmove",n.onTouchMove,{passive:!1}),n.currentDoc.addEventListener("touchend",n.onDragStopped),n.saveContainerPosition(),o.touches.length===2?n.onPinchStart(o):o.touches.length===1&&n.onDragStart(t.getTouchPoint(o.touches[0]))))},n.onTouchMove=function(o){o.preventDefault(),o.touches.length===2?n.onPinchMove(o):o.touches.length===1&&n.onDrag(t.getTouchPoint(o.touches[0]))},n.onGestureStart=function(o){n.currentDoc&&(o.preventDefault(),n.currentDoc.addEventListener("gesturechange",n.onGestureMove),n.currentDoc.addEventListener("gestureend",n.onGestureEnd),n.gestureZoomStart=n.props.zoom,n.gestureRotationStart=n.props.rotation)},n.onGestureMove=function(o){if(o.preventDefault(),!n.isTouching){var r=t.getMousePoint(o),s=n.gestureZoomStart-1+o.scale;if(n.setNewZoom(s,r,{shouldUpdatePosition:!0}),n.props.onRotationChange){var i=n.gestureRotationStart+o.rotation;n.props.onRotationChange(i)}}},n.onGestureEnd=function(o){n.cleanEvents()},n.onDragStart=function(o){var r,s,i=o.x,c=o.y;n.dragStartPosition={x:i,y:c},n.dragStartCrop=Pr({},n.props.crop),(s=(r=n.props).onInteractionStart)===null||s===void 0||s.call(r)},n.onDrag=function(o){var r=o.x,s=o.y;n.currentWindow&&(n.rafDragTimeout&&n.currentWindow.cancelAnimationFrame(n.rafDragTimeout),n.rafDragTimeout=n.currentWindow.requestAnimationFrame(function(){if(n.state.cropSize&&!(r===void 0||s===void 0)){var i=r-n.dragStartPosition.x,c=s-n.dragStartPosition.y,l={x:n.dragStartCrop.x+i,y:n.dragStartCrop.y+c},u=n.props.restrictPosition?$g(l,n.mediaSize,n.state.cropSize,n.props.zoom,n.props.rotation):l;n.props.onCropChange(u)}}))},n.onDragStopped=function(){var o,r;n.isTouching=!1,n.cleanEvents(),n.emitCropData(),(r=(o=n.props).onInteractionEnd)===null||r===void 0||r.call(o)},n.onWheel=function(o){if(n.currentWindow&&!(n.props.onWheelRequest&&!n.props.onWheelRequest(o))){o.preventDefault();var r=t.getMousePoint(o),s=vWt(o).pixelY,i=n.props.zoom-s*n.props.zoomSpeed/200;n.setNewZoom(i,r,{shouldUpdatePosition:!0}),n.state.hasWheelJustStarted||n.setState({hasWheelJustStarted:!0},function(){var c,l;return(l=(c=n.props).onInteractionStart)===null||l===void 0?void 0:l.call(c)}),n.wheelTimer&&clearTimeout(n.wheelTimer),n.wheelTimer=n.currentWindow.setTimeout(function(){return n.setState({hasWheelJustStarted:!1},function(){var c,l;return(l=(c=n.props).onInteractionEnd)===null||l===void 0?void 0:l.call(c)})},250)}},n.getPointOnContainer=function(o,r){var s=o.x,i=o.y;if(!n.containerRect)throw new Error("The Cropper is not mounted");return{x:n.containerRect.width/2-(s-r.x),y:n.containerRect.height/2-(i-r.y)}},n.getPointOnMedia=function(o){var r=o.x,s=o.y,i=n.props,c=i.crop,l=i.zoom;return{x:(r+c.x)/l,y:(s+c.y)/l}},n.setNewZoom=function(o,r,s){var i=s===void 0?{}:s,c=i.shouldUpdatePosition,l=c===void 0?!0:c;if(!(!n.state.cropSize||!n.props.onZoomChange)){var u=ek(o,n.props.minZoom,n.props.maxZoom);if(l){var d=n.getPointOnContainer(r,n.containerPosition),p=n.getPointOnMedia(d),f={x:p.x*u-d.x,y:p.y*u-d.y},b=n.props.restrictPosition?$g(f,n.mediaSize,n.state.cropSize,u,n.props.rotation):f;n.props.onCropChange(b)}n.props.onZoomChange(u)}},n.getCropData=function(){if(!n.state.cropSize)return null;var o=n.props.restrictPosition?$g(n.props.crop,n.mediaSize,n.state.cropSize,n.props.zoom,n.props.rotation):n.props.crop;return _Wt(o,n.mediaSize,n.state.cropSize,n.getAspect(),n.props.zoom,n.props.rotation,n.props.restrictPosition)},n.emitCropData=function(){var o=n.getCropData();if(o){var r=o.croppedAreaPercentages,s=o.croppedAreaPixels;n.props.onCropComplete&&n.props.onCropComplete(r,s),n.props.onCropAreaChange&&n.props.onCropAreaChange(r,s)}},n.emitCropAreaChange=function(){var o=n.getCropData();if(o){var r=o.croppedAreaPercentages,s=o.croppedAreaPixels;n.props.onCropAreaChange&&n.props.onCropAreaChange(r,s)}},n.recomputeCropPosition=function(){if(n.state.cropSize){var o=n.props.restrictPosition?$g(n.props.crop,n.mediaSize,n.state.cropSize,n.props.zoom,n.props.rotation):n.props.crop;n.props.onCropChange(o),n.emitCropData()}},n.onKeyDown=function(o){var r=n.props,s=r.crop,i=r.onCropChange,c=r.keyboardStep,l=r.zoom,u=r.rotation,d=c;if(n.state.cropSize){var p=Pr({},s);switch(o.key){case"ArrowUp":p.y-=d;break;case"ArrowDown":p.y+=d;break;case"ArrowLeft":p.x-=d;break;case"ArrowRight":p.x+=d;break;default:return}n.props.restrictPosition&&(p=$g(p,n.mediaSize,n.state.cropSize,l,u)),i(p)}},n}return t.prototype.componentDidMount=function(){!this.currentDoc||!this.currentWindow||(this.containerRef&&(this.containerRef.ownerDocument&&(this.currentDoc=this.containerRef.ownerDocument),this.currentDoc.defaultView&&(this.currentWindow=this.currentDoc.defaultView),this.initResizeObserver(),typeof window.ResizeObserver>"u"&&this.currentWindow.addEventListener("resize",this.computeSizes),this.props.zoomWithScroll&&this.containerRef.addEventListener("wheel",this.onWheel,{passive:!1}),this.containerRef.addEventListener("gesturestart",this.onGestureStart)),this.currentDoc.addEventListener("scroll",this.onScroll),this.props.disableAutomaticStylesInjection||(this.styleRef=this.currentDoc.createElement("style"),this.styleRef.setAttribute("type","text/css"),this.props.nonce&&this.styleRef.setAttribute("nonce",this.props.nonce),this.styleRef.innerHTML=EWt,this.currentDoc.head.appendChild(this.styleRef)),this.imageRef.current&&this.imageRef.current.complete&&this.onMediaLoad(),this.props.setImageRef&&this.props.setImageRef(this.imageRef),this.props.setVideoRef&&this.props.setVideoRef(this.videoRef))},t.prototype.componentWillUnmount=function(){var n,o;!this.currentDoc||!this.currentWindow||(typeof window.ResizeObserver>"u"&&this.currentWindow.removeEventListener("resize",this.computeSizes),(n=this.resizeObserver)===null||n===void 0||n.disconnect(),this.containerRef&&this.containerRef.removeEventListener("gesturestart",this.preventZoomSafari),this.styleRef&&((o=this.styleRef.parentNode)===null||o===void 0||o.removeChild(this.styleRef)),this.cleanEvents(),this.props.zoomWithScroll&&this.clearScrollEvent())},t.prototype.componentDidUpdate=function(n){var o,r,s,i,c,l,u,d,p;n.rotation!==this.props.rotation?(this.computeSizes(),this.recomputeCropPosition()):n.aspect!==this.props.aspect?this.computeSizes():n.objectFit!==this.props.objectFit?this.computeSizes():n.zoom!==this.props.zoom?this.recomputeCropPosition():((o=n.cropSize)===null||o===void 0?void 0:o.height)!==((r=this.props.cropSize)===null||r===void 0?void 0:r.height)||((s=n.cropSize)===null||s===void 0?void 0:s.width)!==((i=this.props.cropSize)===null||i===void 0?void 0:i.width)?this.computeSizes():(((c=n.crop)===null||c===void 0?void 0:c.x)!==((l=this.props.crop)===null||l===void 0?void 0:l.x)||((u=n.crop)===null||u===void 0?void 0:u.y)!==((d=this.props.crop)===null||d===void 0?void 0:d.y))&&this.emitCropAreaChange(),n.zoomWithScroll!==this.props.zoomWithScroll&&this.containerRef&&(this.props.zoomWithScroll?this.containerRef.addEventListener("wheel",this.onWheel,{passive:!1}):this.clearScrollEvent()),n.video!==this.props.video&&((p=this.videoRef.current)===null||p===void 0||p.load());var f=this.getObjectFit();f!==this.state.mediaObjectFit&&this.setState({mediaObjectFit:f},this.computeSizes)},t.prototype.getAspect=function(){var n=this.props,o=n.cropSize,r=n.aspect;return o?o.width/o.height:r},t.prototype.getObjectFit=function(){var n,o,r,s;if(this.props.objectFit==="cover"){var i=this.imageRef.current||this.videoRef.current;if(i&&this.containerRef){this.containerRect=this.containerRef.getBoundingClientRect();var c=this.containerRect.width/this.containerRect.height,l=((n=this.imageRef.current)===null||n===void 0?void 0:n.naturalWidth)||((o=this.videoRef.current)===null||o===void 0?void 0:o.videoWidth)||0,u=((r=this.imageRef.current)===null||r===void 0?void 0:r.naturalHeight)||((s=this.videoRef.current)===null||s===void 0?void 0:s.videoHeight)||0,d=l/u;return d<c?"horizontal-cover":"vertical-cover"}return"horizontal-cover"}return this.props.objectFit},t.prototype.onPinchStart=function(n){var o=t.getTouchPoint(n.touches[0]),r=t.getTouchPoint(n.touches[1]);this.lastPinchDistance=mte(o,r),this.lastPinchRotation=gte(o,r),this.onDragStart(Mte(o,r))},t.prototype.onPinchMove=function(n){var o=this;if(!(!this.currentDoc||!this.currentWindow)){var r=t.getTouchPoint(n.touches[0]),s=t.getTouchPoint(n.touches[1]),i=Mte(r,s);this.onDrag(i),this.rafPinchTimeout&&this.currentWindow.cancelAnimationFrame(this.rafPinchTimeout),this.rafPinchTimeout=this.currentWindow.requestAnimationFrame(function(){var c=mte(r,s),l=o.props.zoom*(c/o.lastPinchDistance);o.setNewZoom(l,i,{shouldUpdatePosition:!1}),o.lastPinchDistance=c;var u=gte(r,s),d=o.props.rotation+(u-o.lastPinchRotation);o.props.onRotationChange&&o.props.onRotationChange(d),o.lastPinchRotation=u})}},t.prototype.render=function(){var n=this,o,r=this.props,s=r.image,i=r.video,c=r.mediaProps,l=r.transform,u=r.crop,d=u.x,p=u.y,f=r.rotation,b=r.zoom,h=r.cropShape,g=r.showGrid,z=r.style,A=z.containerStyle,_=z.cropAreaStyle,v=z.mediaStyle,M=r.classes,y=M.containerClassName,k=M.cropAreaClassName,S=M.mediaClassName,C=(o=this.state.mediaObjectFit)!==null&&o!==void 0?o:this.getObjectFit();return x.createElement("div",{onMouseDown:this.onMouseDown,onTouchStart:this.onTouchStart,ref:function(T){return n.containerRef=T},"data-testid":"container",style:A,className:Ov("reactEasyCrop_Container",y)},s?x.createElement("img",Pr({alt:"",className:Ov("reactEasyCrop_Image",C==="contain"&&"reactEasyCrop_Contain",C==="horizontal-cover"&&"reactEasyCrop_Cover_Horizontal",C==="vertical-cover"&&"reactEasyCrop_Cover_Vertical",S)},c,{src:s,ref:this.imageRef,style:Pr(Pr({},v),{transform:l||"translate(".concat(d,"px, ").concat(p,"px) rotate(").concat(f,"deg) scale(").concat(b,")")}),onLoad:this.onMediaLoad})):i&&x.createElement("video",Pr({autoPlay:!0,playsInline:!0,loop:!0,muted:!0,className:Ov("reactEasyCrop_Video",C==="contain"&&"reactEasyCrop_Contain",C==="horizontal-cover"&&"reactEasyCrop_Cover_Horizontal",C==="vertical-cover"&&"reactEasyCrop_Cover_Vertical",S)},c,{ref:this.videoRef,onLoadedMetadata:this.onMediaLoad,style:Pr(Pr({},v),{transform:l||"translate(".concat(d,"px, ").concat(p,"px) rotate(").concat(f,"deg) scale(").concat(b,")")}),controls:!1}),(Array.isArray(i)?i:[{src:i}]).map(function(R){return x.createElement("source",Pr({key:R.src},R))})),this.state.cropSize&&x.createElement("div",{style:Pr(Pr({},_),{width:this.state.cropSize.width,height:this.state.cropSize.height}),tabIndex:0,onKeyDown:this.onKeyDown,"data-testid":"cropper",className:Ov("reactEasyCrop_CropArea",h==="round"&&"reactEasyCrop_CropAreaRound",g&&"reactEasyCrop_CropAreaGrid",k)}))},t.defaultProps={zoom:1,rotation:0,aspect:4/3,maxZoom:NWt,minZoom:WWt,cropShape:"rect",objectFit:"contain",showGrid:!0,style:{},classes:{},mediaProps:{},zoomSpeed:1,restrictPosition:!0,zoomWithScroll:!0,keyboardStep:BWt},t.getMousePoint=function(n){return{x:Number(n.clientX),y:Number(n.clientY)}},t.getTouchPoint=function(n){return{x:Number(n.clientX),y:Number(n.clientY)}},t}(x.Component);function PWt({url:e,width:t,height:n,naturalHeight:o,naturalWidth:r,borderProps:s}){const{isInProgress:i,editedUrl:c,position:l,zoom:u,aspect:d,setPosition:p,setCrop:f,setZoom:b,rotation:h}=RO(),[g,{width:z}]=js();let A=n||z*o/r;h%180===90&&(A=z*r/o);const _=a.jsxs("div",{className:oe("wp-block-image__crop-area",s?.className,{"is-applying":i}),style:{...s?.style,width:t||z,height:A},children:[a.jsx(LWt,{image:c||e,disabled:i,minZoom:Gze/100,maxZoom:Kze/100,crop:l,zoom:u/100,aspect:d,onCropChange:v=>{p(v)},onCropComplete:v=>{f(v)},onZoomChange:v=>{b(v*100)}}),i&&a.jsx(Xn,{})]});return a.jsxs(a.Fragment,{children:[g,_]})}function jWt(){const{isInProgress:e,zoom:t,setZoom:n}=RO();return a.jsx(so,{contentClassName:"wp-block-image__zoom",popoverProps:Yze,renderToggle:({isOpen:o,onToggle:r})=>a.jsx(Vt,{icon:Dw,label:m("Zoom"),onClick:r,"aria-expanded":o,disabled:e}),renderContent:()=>a.jsx($s,{paddingSize:"medium",children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Zoom"),min:Gze,max:Kze,value:Math.round(t),onChange:n})})})}function IWt(){const{isInProgress:e,rotateClockwise:t}=RO();return a.jsx(Vt,{icon:Bde,label:m("Rotate"),onClick:t,disabled:e})}function DWt(){const{isInProgress:e,apply:t,cancel:n}=RO();return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{onClick:t,disabled:e,children:m("Apply")}),a.jsx(Vt,{onClick:n,children:m("Cancel")})]})}function Qze({id:e,url:t,width:n,height:o,naturalHeight:r,naturalWidth:s,onSaveImage:i,onFinishEditing:c,borderProps:l}){return a.jsxs(bWt,{id:e,url:t,naturalWidth:s,naturalHeight:r,onSaveImage:i,onFinishEditing:c,children:[a.jsx(PWt,{borderProps:l,url:t,width:n,height:o,naturalHeight:r,naturalWidth:s}),a.jsxs(bt,{children:[a.jsxs(Wn,{children:[a.jsx(jWt,{}),a.jsx(bs,{children:u=>a.jsx(mWt,{toggleProps:u})}),a.jsx(IWt,{})]}),a.jsx(Wn,{children:a.jsx(DWt,{})})]})]})}function FWt(e,t,n,o,r){var s,i;const[c,l]=x.useState((s=t??o)!==null&&s!==void 0?s:""),[u,d]=x.useState((i=e??n)!==null&&i!==void 0?i:"");return x.useEffect(()=>{t===void 0&&o!==void 0&&l(o),e===void 0&&n!==void 0&&d(n)},[o,n]),x.useEffect(()=>{t!==void 0&&Number.parseInt(t)!==Number.parseInt(c)&&l(t),e!==void 0&&Number.parseInt(e)!==Number.parseInt(u)&&d(e)},[t,e]),{currentHeight:u,currentWidth:c,updateDimension:(b,h)=>{const g=h===""?void 0:parseInt(h,10);b==="width"?l(g):d(g),r({[b]:g})},updateDimensions:(b,h)=>{d(b??n),l(h??o),r({height:b,width:h})}}}const zte=[25,50,75,100],$Wt=()=>{};function Ote(e,t,n){const o=Math.round(t*(e/100)),r=Math.round(n*(e/100));return{scaledWidth:o,scaledHeight:r}}function VWt({imageSizeHelp:e,imageWidth:t,imageHeight:n,imageSizeOptions:o=[],isResizable:r=!0,slug:s,width:i,height:c,onChange:l,onChangeImage:u=$Wt}){const{currentHeight:d,currentWidth:p,updateDimension:f,updateDimensions:b}=FWt(c,i,n,t,l),h=z=>{if(z===void 0){b();return}const{scaledWidth:A,scaledHeight:_}=Ote(z,t,n);b(_,A)},g=zte.find(z=>{const{scaledWidth:A,scaledHeight:_}=Ote(z,t,n);return p===A&&d===_});return a.jsxs(a.Fragment,{children:[o&&o.length>0&&a.jsx(Pn,{__nextHasNoMarginBottom:!0,label:m("Resolution"),value:s,options:o,onChange:u,help:e,size:"__unstable-large"}),r&&a.jsxs("div",{className:"block-editor-image-size-control",children:[a.jsxs(Ot,{align:"baseline",spacing:"3",children:[a.jsx(g0,{className:"block-editor-image-size-control__width",label:m("Width"),value:p,min:1,onChange:z=>f("width",z),size:"__unstable-large"}),a.jsx(g0,{className:"block-editor-image-size-control__height",label:m("Height"),value:d,min:1,onChange:z=>f("height",z),size:"__unstable-large"})]}),a.jsx(Do,{label:m("Image size presets"),hideLabelFromVision:!0,onChange:h,value:g,isBlock:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:zte.map(z=>a.jsx(Kn,{value:z,label:xe(m("%d%%"),z)},z))})]})]})}const yte={left:Nw,center:Bw,right:Lw,"space-between":LP,stretch:PP};function HWt({allowedControls:e=["left","center","right","space-between"],isCollapsed:t=!0,onChange:n,value:o,popoverProps:r,isToolbar:s}){const i=p=>{n(p===o?void 0:p)},c=o?yte[o]:yte.left,l=[{name:"left",icon:Nw,title:m("Justify items left"),isActive:o==="left",onClick:()=>i("left")},{name:"center",icon:Bw,title:m("Justify items center"),isActive:o==="center",onClick:()=>i("center")},{name:"right",icon:Lw,title:m("Justify items right"),isActive:o==="right",onClick:()=>i("right")},{name:"space-between",icon:LP,title:m("Space between items"),isActive:o==="space-between",onClick:()=>i("space-between")},{name:"stretch",icon:PP,title:m("Stretch items"),isActive:o==="stretch",onClick:()=>i("stretch")}],u=s?Wn:Lc,d=s?{isCollapsed:t}:{};return a.jsx(u,{icon:c,popoverProps:r,label:m("Change items justification"),controls:l.filter(p=>e.includes(p.name)),...d})}const Jze=e=>a.jsx(HWt,{...e,isToolbar:!1});function UWt({url:e,urlLabel:t,className:n}){const o=oe(n,"block-editor-url-popover__link-viewer-url");return e?a.jsx(hr,{className:o,href:e,children:t||Ph(c3(e))}):a.jsx("span",{className:o})}function XWt({className:e,linkClassName:t,onEditLinkClick:n,url:o,urlLabel:r,...s}){return a.jsxs("div",{className:oe("block-editor-url-popover__link-viewer",e),...s,children:[a.jsx(UWt,{url:o,urlLabel:r,className:t}),n&&a.jsx(Ce,{icon:Nd,label:m("Edit"),onClick:n,size:"compact"})]})}function e3e(e){return typeof e=="function"}class GWt extends x.Component{constructor(t){super(t),this.onChange=this.onChange.bind(this),this.onFocus=this.onFocus.bind(this),this.onKeyDown=this.onKeyDown.bind(this),this.selectLink=this.selectLink.bind(this),this.handleOnClick=this.handleOnClick.bind(this),this.bindSuggestionNode=this.bindSuggestionNode.bind(this),this.autocompleteRef=t.autocompleteRef||x.createRef(),this.inputRef=x.createRef(),this.updateSuggestions=F1(this.updateSuggestions.bind(this),200),this.suggestionNodes=[],this.suggestionsRequest=null,this.state={suggestions:[],showSuggestions:!1,suggestionsValue:null,selectedSuggestion:null,suggestionsListboxId:"",suggestionOptionIdPrefix:""}}componentDidUpdate(t){const{showSuggestions:n,selectedSuggestion:o}=this.state,{value:r,__experimentalShowInitialSuggestions:s=!1}=this.props;n&&o!==null&&this.suggestionNodes[o]&&this.suggestionNodes[o].scrollIntoView({behavior:"instant",block:"nearest",inline:"nearest"}),t.value!==r&&!this.props.disableSuggestions&&(r?.length?this.updateSuggestions(r):s&&this.updateSuggestions())}componentDidMount(){this.shouldShowInitialSuggestions()&&this.updateSuggestions()}componentWillUnmount(){this.suggestionsRequest?.cancel?.(),this.suggestionsRequest=null}bindSuggestionNode(t){return n=>{this.suggestionNodes[t]=n}}shouldShowInitialSuggestions(){const{__experimentalShowInitialSuggestions:t=!1,value:n}=this.props;return t&&!(n&&n.length)}updateSuggestions(t=""){const{__experimentalFetchLinkSuggestions:n,__experimentalHandleURLSuggestions:o}=this.props;if(!n)return;const r=!t?.length;if(t=t.trim(),!r&&(t.length<2||!o&&Pf(t))){this.suggestionsRequest?.cancel?.(),this.suggestionsRequest=null,this.setState({suggestions:[],showSuggestions:!1,suggestionsValue:t,selectedSuggestion:null,loading:!1});return}this.setState({selectedSuggestion:null,loading:!0});const s=n(t,{isInitialSuggestions:r});s.then(i=>{this.suggestionsRequest===s&&(this.setState({suggestions:i,suggestionsValue:t,loading:!1,showSuggestions:!!i.length}),i.length?this.props.debouncedSpeak(xe(Dn("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",i.length),i.length),"assertive"):this.props.debouncedSpeak(m("No results."),"assertive"))}).catch(()=>{this.suggestionsRequest===s&&this.setState({loading:!1})}).finally(()=>{this.suggestionsRequest===s&&(this.suggestionsRequest=null)}),this.suggestionsRequest=s}onChange(t){this.props.onChange(t)}onFocus(){const{suggestions:t}=this.state,{disableSuggestions:n,value:o}=this.props;o&&!n&&!(t&&t.length)&&this.suggestionsRequest===null&&this.updateSuggestions(o)}onKeyDown(t){this.props.onKeyDown?.(t);const{showSuggestions:n,selectedSuggestion:o,suggestions:r,loading:s}=this.state;if(!n||!r.length||s){switch(t.keyCode){case cc:{t.target.selectionStart!==0&&(t.preventDefault(),t.target.setSelectionRange(0,0));break}case Ps:{this.props.value.length!==t.target.selectionStart&&(t.preventDefault(),t.target.setSelectionRange(this.props.value.length,this.props.value.length));break}case Gr:{this.props.onSubmit&&(t.preventDefault(),this.props.onSubmit(null,t));break}}return}const i=this.state.suggestions[this.state.selectedSuggestion];switch(t.keyCode){case cc:{t.preventDefault();const c=o?o-1:r.length-1;this.setState({selectedSuggestion:c});break}case Ps:{t.preventDefault();const c=o===null||o===r.length-1?0:o+1;this.setState({selectedSuggestion:c});break}case Z2:{this.state.selectedSuggestion!==null&&(this.selectLink(i),this.props.speak(m("Link selected.")));break}case Gr:{t.preventDefault(),this.state.selectedSuggestion!==null?(this.selectLink(i),this.props.onSubmit&&this.props.onSubmit(i,t)):this.props.onSubmit&&this.props.onSubmit(null,t);break}}}selectLink(t){this.props.onChange(t.url,t),this.setState({selectedSuggestion:null,showSuggestions:!1})}handleOnClick(t){this.selectLink(t),this.inputRef.current.focus()}static getDerivedStateFromProps({value:t,instanceId:n,disableSuggestions:o,__experimentalShowInitialSuggestions:r=!1},{showSuggestions:s}){let i=s;const c=t&&t.length;return!r&&!c&&(i=!1),o===!0&&(i=!1),{showSuggestions:i,suggestionsListboxId:`block-editor-url-input-suggestions-${n}`,suggestionOptionIdPrefix:`block-editor-url-input-suggestion-${n}`}}render(){return a.jsxs(a.Fragment,{children:[this.renderControl(),this.renderSuggestions()]})}renderControl(){const{label:t=null,className:n,isFullWidth:o,instanceId:r,placeholder:s=m("Paste URL or type to search"),__experimentalRenderControl:i,value:c="",hideLabelFromVision:l=!1}=this.props,{loading:u,showSuggestions:d,selectedSuggestion:p,suggestionsListboxId:f,suggestionOptionIdPrefix:b}=this.state,h=`url-input-control-${r}`,g={id:h,label:t,className:oe("block-editor-url-input",n,{"is-full-width":o}),hideLabelFromVision:l},z={id:h,value:c,required:!0,type:"text",onChange:this.onChange,onFocus:this.onFocus,placeholder:s,onKeyDown:this.onKeyDown,role:"combobox","aria-label":t?void 0:m("URL"),"aria-expanded":d,"aria-autocomplete":"list","aria-owns":f,"aria-activedescendant":p!==null?`${b}-${p}`:void 0,ref:this.inputRef,suffix:this.props.suffix};return i?i(g,z,u):a.jsxs(no,{__nextHasNoMarginBottom:!0,...g,children:[a.jsx(N1,{...z,__next40pxDefaultSize:!0}),u&&a.jsx(Xn,{})]})}renderSuggestions(){const{className:t,__experimentalRenderSuggestions:n}=this.props,{showSuggestions:o,suggestions:r,suggestionsValue:s,selectedSuggestion:i,suggestionsListboxId:c,suggestionOptionIdPrefix:l,loading:u}=this.state;if(!o||r.length===0)return null;const d={id:c,ref:this.autocompleteRef,role:"listbox"},p=(f,b)=>({role:"option",tabIndex:"-1",id:`${l}-${b}`,ref:this.bindSuggestionNode(b),"aria-selected":b===i?!0:void 0});return e3e(n)?n({suggestions:r,selectedSuggestion:i,suggestionsListProps:d,buildSuggestionItemProps:p,isLoading:u,handleSuggestionClick:this.handleOnClick,isInitialSuggestions:!s?.length,currentInputValue:s}):a.jsx(Io,{placement:"bottom",focusOnMount:!1,children:a.jsx("div",{...d,className:oe("block-editor-url-input__suggestions",{[`${t}__suggestions`]:t}),children:r.map((f,b)=>x.createElement(Ce,{__next40pxDefaultSize:!0,...p(f,b),key:f.id,className:oe("block-editor-url-input__suggestion",{"is-selected":b===i}),onClick:()=>this.handleOnClick(f)},f.title))})})}}const fI=Co(rSe,pbt,oSe,Ul((e,t)=>{if(e3e(t.__experimentalFetchLinkSuggestions))return;const{getSettings:n}=e(Q);return{__experimentalFetchLinkSuggestions:n().__experimentalFetchLinkSuggestions}}))(GWt);function KWt({autocompleteRef:e,className:t,onChangeInputValue:n,value:o,...r}){return a.jsxs("form",{className:oe("block-editor-url-popover__link-editor",t),...r,children:[a.jsx(fI,{value:o,onChange:n,autocompleteRef:e}),a.jsx(Ce,{icon:Pw,label:m("Apply"),type:"submit",size:"compact"})]})}const{__experimentalPopoverLegacyPositionToPlacement:YWt}=ct(tr),ZWt="bottom",lf=x.forwardRef(({additionalControls:e,children:t,renderSettings:n,placement:o,focusOnMount:r="firstElement",position:s,...i},c)=>{s!==void 0&&Ke("`position` prop in wp.blockEditor.URLPopover",{since:"6.2",alternative:"`placement` prop"});let l;o!==void 0?l=o:s!==void 0&&(l=YWt(s)),l=l||ZWt;const[u,d]=x.useState(!1),p=!!n&&u,f=()=>{d(!u)};return a.jsxs(Io,{ref:c,role:"dialog","aria-modal":"true","aria-label":m("Edit URL"),className:"block-editor-url-popover",focusOnMount:r,placement:l,shift:!0,variant:"toolbar",...i,children:[a.jsx("div",{className:"block-editor-url-popover__input-container",children:a.jsxs("div",{className:"block-editor-url-popover__row",children:[t,!!n&&a.jsx(Ce,{className:"block-editor-url-popover__settings-toggle",icon:tu,label:m("Link settings"),onClick:f,"aria-expanded":u,size:"compact"})]})}),p&&a.jsx("div",{className:"block-editor-url-popover__settings",children:n()}),e&&!p&&a.jsx("div",{className:"block-editor-url-popover__additional-controls",children:e})]})});lf.LinkEditor=KWt;lf.LinkViewer=XWt;const QWt=()=>{},JWt=({src:e,onChange:t,onSubmit:n,onClose:o,popoverAnchor:r})=>a.jsx(lf,{anchor:r,onClose:o,children:a.jsx("form",{className:"block-editor-media-placeholder__url-input-form",onSubmit:n,children:a.jsx(N1,{__next40pxDefaultSize:!0,label:m("URL"),type:"url",hideLabelFromVision:!0,placeholder:m("Paste or type URL"),onChange:t,value:e,suffix:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{size:"small",icon:Pw,label:m("Apply"),type:"submit"})})})})}),eNt=({src:e,onChangeSrc:t,onSelectURL:n})=>{const[o,r]=x.useState(null),[s,i]=x.useState(!1),c=()=>{i(!0)},l=()=>{i(!1),o?.focus()},u=d=>{d.preventDefault(),e&&n&&(n(e),l())};return a.jsxs("div",{className:"block-editor-media-placeholder__url-input-container",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-media-placeholder__button",onClick:c,isPressed:s,variant:"secondary","aria-haspopup":"dialog",ref:r,children:m("Insert from URL")}),s&&a.jsx(JWt,{src:e,onChange:t,onSubmit:u,onClose:l,popoverAnchor:o})]})};function tNt({value:e={},allowedTypes:t,className:n,icon:o,labels:r={},mediaPreview:s,notices:i,isAppender:c,accept:l,addToGallery:u,multiple:d=!1,handleUpload:p=!0,disableDropZone:f,disableMediaButtons:b,onError:h,onSelect:g,onCancel:z,onSelectURL:A,onToggleFeaturedImage:_,onDoubleClick:v,onFilesPreUpload:M=QWt,onHTMLDrop:y,children:k,mediaLibraryButton:S,placeholder:C,style:R}){y&&Ke("wp.blockEditor.MediaPlaceholder onHTMLDrop prop",{since:"6.2",version:"6.4"});const T=G(J=>{const{getSettings:ue}=J(Q);return ue().mediaUpload},[]),[E,B]=x.useState("");x.useEffect(()=>{var J;B((J=e?.src)!==null&&J!==void 0?J:"")},[e?.src]);const N=()=>!t||t.length===0?!1:t.every(J=>J==="image"||J.startsWith("image/")),j=J=>{if(!p||typeof p=="function"&&!p(J))return g(J);M(J);let ue;if(d)if(u){let ce=[];ue=me=>{const de=(e??[]).filter(Ae=>Ae.id?!ce.some(({id:ye})=>Number(ye)===Number(Ae.id)):!ce.some(({urlSlug:ye})=>Ae.url.includes(ye)));g(de.concat(me)),ce=me.map(Ae=>{const ye=Ae.url.lastIndexOf("."),Ne=Ae.url.slice(0,ye);return{id:Ae.id,urlSlug:Ne}})}}else ue=g;else ue=([ce])=>g(ce);T({allowedTypes:t,filesList:J,onFileChange:ue,onError:h})};async function I(J){const{blocks:ue}=Sge(J);if(!ue?.length)return;const ce=await Promise.all(ue.map(me=>{const de=me.name.split("/")[1];return me.attributes.id?(me.attributes.type=de,me.attributes):new Promise((Ae,ye)=>{window.fetch(me.attributes.url).then(Ne=>Ne.blob()).then(Ne=>T({filesList:[Ne],additionalData:{title:me.attributes.title,alt_text:me.attributes.alt,caption:me.attributes.caption,type:de},onFileChange:([je])=>{je.id&&Ae(je)},allowedTypes:t,onError:ye})).catch(()=>Ae(me.attributes.url))})})).catch(me=>h(me));g(d?ce:ce[0])}const P=J=>{j(J.target.files)},F=C??(J=>{let{instructions:ue,title:ce}=r;if(!T&&!A&&(ue=m("To edit this block, you need permission to upload media.")),ue===void 0||ce===void 0){const de=t??[],[Ae]=de,ye=de.length===1,Ne=ye&&Ae==="audio",je=ye&&Ae==="image",ie=ye&&Ae==="video";ue===void 0&&T&&(ue=m("Drag and drop an image or video, upload, or choose from your library."),Ne?ue=m("Drag and drop an audio file, upload, or choose from your library."):je?ue=m("Drag and drop an image, upload, or choose from your library."):ie&&(ue=m("Drag and drop a video, upload, or choose from your library."))),ce===void 0&&(ce=m("Media"),Ne?ce=m("Audio"):je?ce=m("Image"):ie&&(ce=m("Video")))}const me=oe("block-editor-media-placeholder",n,{"is-appender":c});return a.jsxs(vo,{icon:o,label:ce,instructions:ue,className:me,notices:i,onDoubleClick:v,preview:s,style:R,children:[J,k]})}),X=()=>f?null:a.jsx(Tz,{onFilesDrop:j,onDrop:I,isEligible:J=>{const ue="wp-block:core/",ce=[];for(const me of J.types)me.startsWith(ue)&&ce.push(me.slice(ue.length));return ce.every(me=>t.includes(me))&&(d?!0:ce.length===1)}}),Z=()=>z&&a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-media-placeholder__cancel-button",title:m("Cancel"),variant:"link",onClick:z,children:m("Cancel")}),V=()=>A&&a.jsx(eNt,{src:E,onChangeSrc:B,onSelectURL:A}),ee=()=>_&&a.jsx("div",{className:"block-editor-media-placeholder__url-input-container",children:a.jsx(Ce,{__next40pxDefaultSize:!0,className:"block-editor-media-placeholder__button",onClick:_,variant:"secondary",children:m("Use featured image")})}),te=()=>{const ue=S??(({open:me})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>{me()},children:m("Media Library")})),ce=a.jsx(ab,{addToGallery:u,gallery:d&&N(),multiple:d,onSelect:g,allowedTypes:t,mode:"browse",value:Array.isArray(e)?e.map(({id:me})=>me):e.id,render:ue});if(T&&c)return a.jsxs(a.Fragment,{children:[X(),a.jsx(Cx,{onChange:P,accept:l,multiple:!!d,render:({openFileDialog:me})=>{const de=a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",className:oe("block-editor-media-placeholder__button","block-editor-media-placeholder__upload-button"),onClick:me,children:We("Upload","verb")}),ce,V(),ee(),Z()]});return F(de)}})]});if(T){const me=a.jsxs(a.Fragment,{children:[X(),a.jsx(Cx,{render:({openFileDialog:de})=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:de,variant:"primary",className:oe("block-editor-media-placeholder__button","block-editor-media-placeholder__upload-button"),children:We("Upload","verb")}),onChange:P,accept:l,multiple:!!d}),ce,V(),ee(),Z()]});return F(me)}return F(ce)};return b?a.jsx(Hd,{children:X()}):a.jsx(Hd,{fallback:F(V()),children:te()})}const iu=ap("editor.MediaPlaceholder")(tNt),nNt={placement:"bottom-start"},t3e=()=>a.jsxs(a.Fragment,{children:[["bold","italic","link","unknown"].map(e=>a.jsx(xf,{name:`RichText.ToolbarControls.${e}`},e)),a.jsx(xf,{name:"RichText.ToolbarControls",children:e=>{if(!e.length)return null;const n=e.map(([{props:o}])=>o).some(({isActive:o})=>o);return a.jsx(bs,{children:o=>a.jsx(c0,{icon:tu,label:m("More"),toggleProps:{...o,className:oe(o.className,{"is-pressed":n}),description:m("Displays more block tools")},controls:hO(e.map(([{props:r}])=>r),"title"),popoverProps:nNt})})}})]});function oNt({popoverAnchor:e}){return a.jsx(Io,{placement:"top",focusOnMount:!1,anchor:e,className:"block-editor-rich-text__inline-format-toolbar",__unstableSlotName:"block-toolbar",children:a.jsx(oI,{className:"block-editor-rich-text__inline-format-toolbar-group","aria-label":m("Format tools"),children:a.jsx(Wn,{children:a.jsx(t3e,{})})})})}const rNt=({inline:e,editableContentElement:t})=>e?a.jsx(oNt,{popoverAnchor:t}):a.jsx(bt,{group:"inline",children:a.jsx(t3e,{})});function sNt({html:e,value:t}){const n=x.useRef(),o=!!t.activeFormats?.length,{__unstableMarkLastChangeAsPersistent:r}=Oe(Q);x.useLayoutEffect(()=>{if(!n.current){n.current=t.text;return}if(n.current!==t.text){const s=window.setTimeout(()=>{r()},1e3);return n.current=t.text,()=>{window.clearTimeout(s)}}r()},[e,o])}function iNt(e){return e(ul).getFormatTypes()}const aNt=new Set(["a","audio","button","details","embed","iframe","input","label","select","textarea","video"]);function cNt(e,t){return typeof e!="object"?{[t]:e}:Object.fromEntries(Object.entries(e).map(([n,o])=>[`${t}.${n}`,o]))}function Ate(e,t){return e[t]?e[t]:Object.keys(e).filter(n=>n.startsWith(t+".")).reduce((n,o)=>(n[o.slice(t.length+1)]=e[o],n),{})}function lNt({clientId:e,identifier:t,withoutInteractiveFormatting:n,allowedFormats:o}){const r=G(iNt,[]),s=x.useMemo(()=>r.filter(({name:f,interactive:b,tagName:h})=>!(o&&!o.includes(f)||n&&(b||aNt.has(h)))),[r,o,n]),i=G(f=>s.reduce((b,h)=>h.__experimentalGetPropsForEditableTreePreparation?{...b,...cNt(h.__experimentalGetPropsForEditableTreePreparation(f,{richTextIdentifier:t,blockClientId:e}),h.name)}:b,{}),[s,e,t]),c=Oe(),l=[],u=[],d=[],p=[];for(const f in i)p.push(i[f]);return s.forEach(f=>{if(f.__experimentalCreatePrepareEditableTree){const b=f.__experimentalCreatePrepareEditableTree(Ate(i,f.name),{richTextIdentifier:t,blockClientId:e});f.__experimentalCreateOnChangeEditableValue?u.push(b):l.push(b)}if(f.__experimentalCreateOnChangeEditableValue){let b={};f.__experimentalGetPropsForEditableTreeChangeHandler&&(b=f.__experimentalGetPropsForEditableTreeChangeHandler(c,{richTextIdentifier:t,blockClientId:e}));const h=Ate(i,f.name);d.push(f.__experimentalCreateOnChangeEditableValue({...typeof h=="object"?h:{},...b},{richTextIdentifier:t,blockClientId:e}))}}),{formatTypes:s,prepareHandlers:l,valueHandlers:u,changeHandlers:d,dependencies:p}}const uNt=["`",'"',"'","“”","‘’"],dNt=e=>t=>{function n(o){const{inputType:r,data:s}=o,{value:i,onChange:c,registry:l}=e.current;if(r!=="insertText"||Xl(i))return;const u=gr("blockEditor.wrapSelectionSettings",uNt).find(([y,k])=>y===s||k===s);if(!u)return;const[d,p=d]=u,f=i.start,b=i.end+d.length;let h=E0(i,d,f,f);h=E0(h,p,b,b);const{__unstableMarkLastChangeAsPersistent:g,__unstableMarkAutomaticChange:z}=l.dispatch(Q);g(),c(h),z();const A={};for(const y in o)A[y]=o[y];A.data=p;const{ownerDocument:_}=t,{defaultView:v}=_,M=new v.InputEvent("input",A);window.queueMicrotask(()=>{o.target.dispatchEvent(M)}),o.preventDefault()}return t.addEventListener("beforeinput",n),()=>{t.removeEventListener("beforeinput",n)}};function pNt(e){const t="tales of gutenberg",n=" 🐡🐢🦀🐤🦋🐘🐧🐹🦁🦄🦍🐼🐿🎃🐴🐝🐆🦕🦔🌱🍇π🍌🐉💧🥨🌌🍂🍠🥦🥚🥝🎟🥥🥒🛵🥖🍒🍯🎾🎲🐺🐚🐮⌛️",{start:o,text:r}=e;return o<t.length||r.slice(o-t.length,o).toLowerCase()!==t?e:E0(e,n)}function n3e(e){let t=e.length;for(;t--;){const n=c7(e[t].attributes);if(n)return e[t].attributes[n]=e[t].attributes[n].toString().replace(qf,""),[e[t].clientId,n,0,0];const o=n3e(e[t].innerBlocks);if(o)return o}return[]}const fNt=e=>t=>{function n(){const{getValue:r,onReplace:s,selectionChange:i,registry:c}=e.current;if(!s)return;const l=r(),{start:u,text:d}=l;if(d.slice(u-1,u)!==" ")return;const f=d.slice(0,u).trim(),b=Ei("from").filter(({type:A})=>A==="prefix"),h=xc(b,({prefix:A})=>f===A);if(!h)return;const g=T0({value:E0(l,qf,0,u)}),z=h.transform(g);return i(...n3e([z])),s([z]),c.dispatch(Q).__unstableMarkAutomaticChange(),!0}function o(r){const{inputType:s,type:i}=r,{getValue:c,onChange:l,__unstableAllowPrefixTransformations:u,formatTypes:d,registry:p}=e.current;if(s!=="insertText"&&i!=="compositionend"||u&&n())return;const f=c(),b=d.reduce((z,{__unstableInputRule:A})=>(A&&(z=A(z)),z),pNt(f)),{__unstableMarkLastChangeAsPersistent:h,__unstableMarkAutomaticChange:g}=p.dispatch(Q);b!==f&&(h(),l({...b,activeFormats:f.activeFormats}),g())}return t.addEventListener("input",o),t.addEventListener("compositionend",o),()=>{t.removeEventListener("input",o),t.removeEventListener("compositionend",o)}},bNt=e=>t=>{function n(o){if(o.inputType!=="insertReplacementText")return;const{registry:r}=e.current;r.dispatch(Q).__unstableMarkLastChangeAsPersistent()}return t.addEventListener("beforeinput",n),()=>{t.removeEventListener("beforeinput",n)}},hNt=()=>e=>{function t(n){(lc.primary(n,"z")||lc.primary(n,"y")||lc.primaryShift(n,"z"))&&n.preventDefault()}return e.addEventListener("keydown",t),()=>{e.removeEventListener("keydown",t)}},mNt=e=>t=>{const{keyboardShortcuts:n}=e.current;function o(r){for(const s of n.current)s(r)}return t.addEventListener("keydown",o),()=>{t.removeEventListener("keydown",o)}},gNt=e=>t=>{const{inputEvents:n}=e.current;function o(r){for(const s of n.current)s(r)}return t.addEventListener("input",o),()=>{t.removeEventListener("input",o)}},MNt=e=>t=>{function n(o){const{keyCode:r}=o;if(o.defaultPrevented||r!==Mc&&r!==gd)return;const{registry:s}=e.current,{didAutomaticChange:i,getSettings:c}=s.select(Q),{__experimentalUndo:l}=c();l&&i()&&(o.preventDefault(),l())}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}};function zNt(e,t){if(t?.length){let n=e.formats.length;for(;n--;)e.formats[n]=[...t,...e.formats[n]||[]]}}function o3e(e){if(!(e!==!0&&e!=="p"&&e!=="li"))return e===!0?"p":e}function bI({allowedFormats:e,disableFormats:t}){return t?bI.EMPTY_ARRAY:e}bI.EMPTY_ARRAY=[];const ONt=e=>t=>{function n(r){const{disableFormats:s,onChange:i,value:c,formatTypes:l,tagName:u,onReplace:d,__unstableEmbedURLOnPaste:p,preserveWhiteSpace:f,pastePlainText:b}=e.current;if(!t.contains(r.target)||r.defaultPrevented)return;const{plainText:h,html:g}=W7(r);if(r.preventDefault(),window.console.log(`Received HTML: `,g),window.console.log(`Received plain text: -`,h),s){i(E0(c,h));return}const z=r.clipboardData.getData("rich-text")==="true";function A(y){const k=l.reduce((S,{__unstablePasteRule:C})=>(C&&S===c&&(S=C(c,{html:g,plainText:h})),S),c);if(k!==c)i(k);else{const S=eo({html:y});ONt(S,c.activeFormats),i(E0(c,S))}}if(z){A(g);return}if(b){i(E0(c,eo({text:h})));return}let _="INLINE";const v=h.trim();p&&CE(c)&&Pf(v)&&/^https?:/.test(v)&&(_="BLOCKS");const M=Xh({HTML:g,plainText:h,mode:_,tagName:u,preserveWhiteSpace:f});typeof M=="string"?A(M):M.length>0&&d&&CE(c)&&d(M,M.length-1,-1)}const{defaultView:o}=t.ownerDocument;return o.addEventListener("paste",n),()=>{o.removeEventListener("paste",n)}},ANt=e=>t=>{function n(o){const{keyCode:r,shiftKey:s}=o;if(o.defaultPrevented)return;const{value:i,onMerge:c,onRemove:l}=e.current;if(r===Ol||r===Mc){const{start:u,end:d,text:p}=i,f=r===Mc,b=i.activeFormats&&!!i.activeFormats.length;if(!Gl(i)||b||f&&u!==0||!f&&d!==p.length||s)return;c?c(!f):l&&CE(i)&&f&&l(!f),o.preventDefault()}}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}},vNt=e=>t=>{function n(s){if(s.keyCode!==Gr)return;const{onReplace:i,onSplit:c}=e.current;i&&c&&(s.__deprecatedOnSplit=!0)}function o(s){if(s.defaultPrevented||s.target!==t||s.keyCode!==Gr)return;const{value:i,onChange:c,disableLineBreaks:l,onSplitAtEnd:u,onSplitAtDoubleLineEnd:d,registry:p}=e.current;s.preventDefault();const{text:f,start:b,end:h}=i;s.shiftKey?l||c(E0(i,` +`,h),s){i(E0(c,h));return}const z=r.clipboardData.getData("rich-text")==="true";function A(y){const k=l.reduce((S,{__unstablePasteRule:C})=>(C&&S===c&&(S=C(c,{html:g,plainText:h})),S),c);if(k!==c)i(k);else{const S=eo({html:y});zNt(S,c.activeFormats),i(E0(c,S))}}if(z){A(g);return}if(b){i(E0(c,eo({text:h})));return}let _="INLINE";const v=h.trim();p&&SE(c)&&Pf(v)&&/^https?:/.test(v)&&(_="BLOCKS");const M=Xh({HTML:g,plainText:h,mode:_,tagName:u,preserveWhiteSpace:f});typeof M=="string"?A(M):M.length>0&&d&&SE(c)&&d(M,M.length-1,-1)}const{defaultView:o}=t.ownerDocument;return o.addEventListener("paste",n),()=>{o.removeEventListener("paste",n)}},yNt=e=>t=>{function n(o){const{keyCode:r,shiftKey:s}=o;if(o.defaultPrevented)return;const{value:i,onMerge:c,onRemove:l}=e.current;if(r===zl||r===Mc){const{start:u,end:d,text:p}=i,f=r===Mc,b=i.activeFormats&&!!i.activeFormats.length;if(!Xl(i)||b||f&&u!==0||!f&&d!==p.length||s)return;c?c(!f):l&&SE(i)&&f&&l(!f),o.preventDefault()}}return t.addEventListener("keydown",n),()=>{t.removeEventListener("keydown",n)}},ANt=e=>t=>{function n(s){if(s.keyCode!==Gr)return;const{onReplace:i,onSplit:c}=e.current;i&&c&&(s.__deprecatedOnSplit=!0)}function o(s){if(s.defaultPrevented||s.target!==t||s.keyCode!==Gr)return;const{value:i,onChange:c,disableLineBreaks:l,onSplitAtEnd:u,onSplitAtDoubleLineEnd:d,registry:p}=e.current;s.preventDefault();const{text:f,start:b,end:h}=i;s.shiftKey?l||c(E0(i,` `)):u&&b===h&&h===f.length?u():d&&b===h&&h===f.length&&f.slice(-2)===` -`?p.batch(()=>{const g={...i};g.start=g.end-2,c(fa(g)),d()}):l||c(E0(i,` -`))}const{defaultView:r}=t.ownerDocument;return r.addEventListener("keydown",o),t.addEventListener("keydown",n),()=>{r.removeEventListener("keydown",o),t.removeEventListener("keydown",n)}},xNt=e=>t=>{function n(){const{registry:o}=e.current;if(!o.select(Q).isMultiSelecting())return;const r=t.parentElement.closest('[contenteditable="true"]');r&&r.focus()}return t.addEventListener("focus",n),()=>{t.removeEventListener("focus",n)}},wNt=[pNt,bNt,hNt,mNt,gNt,MNt,zNt,yNt,ANt,vNt,xNt];function _Nt(e){const t=x.useRef(e);x.useInsertionEffect(()=>{t.current=e});const n=x.useMemo(()=>wNt.map(o=>o(t)),[t]);return Mn(o=>{if(!e.isSelected)return;const r=n.map(s=>s(o));return()=>{r.forEach(s=>s())}},[n,e.isSelected])}const kNt={},r3e=Symbol("usesContext");function SNt({onChange:e,onFocus:t,value:n,forwardedRef:o,settings:r}){const{name:s,edit:i,[r3e]:c}=r,l=x.useContext(Cf),u=x.useMemo(()=>c?Object.fromEntries(Object.entries(l).filter(([h])=>c.includes(h))):kNt,[c,l]);if(!i)return null;const d=tB(n,s),p=d!==void 0,f=Lqe(n),b=f!==void 0&&f.type===s;return a.jsx(i,{isActive:p,activeAttributes:p?d.attributes||{}:{},isObjectActive:b,activeObjectAttributes:b?f.attributes||{}:{},value:n,onChange:e,onFocus:t,contentRef:o,context:u},s)}function CNt({formatTypes:e,...t}){return e.map(n=>x.createElement(SNt,{settings:n,...t,key:n.name}))}function s3e(e,t){if(Ie.isEmpty(e)){const n=o3e(t);return n?`<${n}></${n}>`:""}return Array.isArray(e)?(Ke("wp.blockEditor.RichText value prop as children type",{since:"6.1",version:"6.3",alternative:"value prop as string",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),n8.toHTML(e)):typeof e=="string"?e:e.toHTMLString()}function mI({value:e,tagName:t,multiline:n,format:o,...r}){return e=a.jsx(i0,{children:s3e(e,n)}),t?a.jsx(t,{...r,children:e}):e}function qNt({children:e,identifier:t,tagName:n="div",value:o="",onChange:r,multiline:s,...i},c){Ke("wp.blockEditor.RichText multiline prop",{since:"6.1",version:"6.3",alternative:"nested blocks (InnerBlocks)",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/nested-blocks-inner-blocks/"});const{clientId:l}=j0(),{getSelectionStart:u,getSelectionEnd:d}=G(Q),{selectionChange:p}=Oe(Q),f=o3e(s);o=o||`<${f}></${f}>`;const h=`</${f}>${o}<${f}>`.split(`</${f}><${f}>`);h.shift(),h.pop();function g(z){r(`<${f}>${z.join(`</${f}><${f}>`)}</${f}>`)}return a.jsx(n,{ref:c,children:h.map((z,A)=>a.jsx(MI,{identifier:`${t}-${A}`,tagName:f,value:z,onChange:_=>{const v=h.slice();v[A]=_,g(v)},isSelected:void 0,onKeyDown:_=>{if(_.keyCode!==Gr)return;_.preventDefault();const{offset:v}=u(),{offset:M}=d();if(typeof v!="number"||typeof M!="number")return;const y=eo({html:z});y.start=v,y.end=M;const k=nB(y).map(C=>T0({value:C})),S=h.slice();S.splice(A,1,...k),g(S),p(l,`${t}-${A+1}`,0,0)},onMerge:_=>{const v=h.slice();let M=0;if(_){if(!v[A+1])return;v.splice(A,2,v[A]+v[A+1]),M=v[A].length-1}else{if(!v[A-1])return;v.splice(A-1,2,v[A-1]+v[A]),M=v[A-1].length-1}g(v),p(l,`${t}-${A-(_?0:1)}`,M,M)},...i},A))})}const RNt=x.forwardRef(qNt);function TNt(e){return x.forwardRef((t,n)=>{let o=t.value,r=t.onChange;Array.isArray(o)&&(Ke("wp.blockEditor.RichText value prop as children type",{since:"6.1",version:"6.3",alternative:"value prop as string",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),o=n8.toHTML(t.value),r=i=>t.onChange(n8.fromDOM(pl(document,i).childNodes)));const s=t.multiline?RNt:e;return a.jsx(s,{...t,value:o,onChange:r,ref:n})})}function Xd({character:e,type:t,onUse:n}){const o=x.useContext(i3e),r=x.useRef();return r.current=n,x.useEffect(()=>{function s(i){lc[t](i,e)&&(r.current(),i.preventDefault())}return o.current.add(s),()=>{o.current.delete(s)}},[e,t]),null}function Zs({name:e,shortcutType:t,shortcutCharacter:n,...o}){let r,s="RichText.ToolbarControls";return e&&(s+=`.${e}`),t&&n&&(r=j1[t](n)),a.jsx(um,{name:s,children:a.jsx(Vt,{...o,shortcut:r})})}function gI({inputType:e,onInput:t}){const n=x.useContext(a3e),o=x.useRef();return o.current=t,x.useEffect(()=>{function r(s){s.inputType===e&&(o.current(),s.preventDefault())}return n.current.add(r),()=>{n.current.delete(r)}},[e]),null}const i3e=x.createContext(),a3e=x.createContext(),vte=Symbol("instanceId");function c3e(e){const{__unstableMobileNoFocusOnMount:t,deleteEnter:n,placeholderTextColor:o,textAlign:r,selectionColor:s,tagsToEliminate:i,disableEditingMenu:c,fontSize:l,fontFamily:u,fontWeight:d,fontStyle:p,minWidth:f,maxWidth:b,disableSuggestions:h,disableAutocorrection:g,...z}=e;return z}function MI({children:e,tagName:t="div",value:n="",onChange:o,isSelected:r,multiline:s,inlineToolbar:i,wrapperClassName:c,autocompleters:l,onReplace:u,placeholder:d,allowedFormats:p,withoutInteractiveFormatting:f,onRemove:b,onMerge:h,onSplit:g,__unstableOnSplitAtEnd:z,__unstableOnSplitAtDoubleLineEnd:A,identifier:_,preserveWhiteSpace:v,__unstablePastePlainText:M,__unstableEmbedURLOnPaste:y,__unstableDisableFormats:k,disableLineBreaks:S,__unstableAllowPrefixTransformations:C,readOnly:R,...T},E){T=c3e(T),g&&Ke("wp.blockEditor.RichText onSplit prop",{since:"6.4",alternative:'block.json support key: "splitting"'});const B=vt(MI),N=x.useRef(),j=j0(),{clientId:I,isSelected:P,name:$}=j,F=j[QB],X=x.useContext(Cf),Z=Fn(),V=fe=>{if(!P)return{isSelected:!1};const{getSelectionStart:Re,getSelectionEnd:be}=fe(Q),ze=Re(),nt=be();let Mt;return r===void 0?Mt=ze.clientId===I&&nt.clientId===I&&(_?ze.attributeKey===_:ze[vte]===B):r&&(Mt=ze.clientId===I),{selectionStart:Mt?ze.offset:void 0,selectionEnd:Mt?nt.offset:void 0,isSelected:Mt}},{selectionStart:ee,selectionEnd:te,isSelected:J}=G(V,[I,_,B,r,P]),{disableBoundBlock:ue,bindingsPlaceholder:ce,bindingsLabel:me}=G(fe=>{var Re;if(!F?.[_]||!u7($))return{};const be=F[_],ze=xl(be.source),nt={};if(ze?.usesContext?.length)for(const rr of ze.usesContext)nt[rr]=X[rr];const Mt=!ze?.canUserEditValue?.({select:fe,context:nt,args:be.args});if(n.length>0)return{disableBoundBlock:Mt,bindingsPlaceholder:null,bindingsLabel:null};const{getBlockAttributes:ot}=fe(Q),Ue=ot(I),fn=(Re=ze?.getFieldsList?.({select:fe,context:nt})?.[be?.args?.key]?.label)!==null&&Re!==void 0?Re:ze?.label,Pn=Mt?fn:xe(m("Add %s"),fn),Mo=Mt?be?.args?.key||ze?.label:xe(m("Empty %s; start writing to edit its value"),be?.args?.key||ze?.label);return{disableBoundBlock:Mt,bindingsPlaceholder:Ue?.placeholder||Pn,bindingsLabel:Mo}},[F,_,$,n,I,X]),de=R||ue,{getSelectionStart:Ae,getSelectionEnd:ye,getBlockRootClientId:Ne}=G(Q),{selectionChange:je}=Oe(Q),ie=hI({allowedFormats:p,disableFormats:k}),we=!ie||ie.length>0,re=x.useCallback((fe,Re)=>{const be={},ze=fe===void 0&&Re===void 0,nt={clientId:I,[_?"attributeKey":vte]:_||B};if(typeof fe=="number"||ze){if(Re===void 0&&Ne(I)!==Ne(ye().clientId))return;be.start={...nt,offset:fe}}if(typeof Re=="number"||ze){if(fe===void 0&&Ne(I)!==Ne(Ae().clientId))return;be.end={...nt,offset:Re}}je(be)},[I,Ne,ye,Ae,_,B,je]),{formatTypes:pe,prepareHandlers:ke,valueHandlers:Se,changeHandlers:se,dependencies:L}=uNt({clientId:I,identifier:_,withoutInteractiveFormatting:f,allowedFormats:ie});function U(fe){return Se.reduce((Re,be)=>be(Re,fe.text),fe.formats)}function ne(fe){return pe.forEach(Re=>{Re.__experimentalCreatePrepareEditableTree&&(fe=Yd(fe,Re.name,0,fe.text.length))}),fe.formats}function ve(fe){return ke.reduce((Re,be)=>be(Re,fe.text),fe.formats)}const{value:qe,getValue:Pe,onChange:rt,ref:qt}=o1e({value:n,onChange(fe,{__unstableFormats:Re,__unstableText:be}){o(fe),Object.values(se).forEach(ze=>{ze(Re,be)})},selectionStart:ee,selectionEnd:te,onSelectionChange:re,placeholder:ce||d,__unstableIsSelected:J,__unstableDisableFormats:k,preserveWhiteSpace:v,__unstableDependencies:[...L,t],__unstableAfterParse:U,__unstableBeforeSerialize:ne,__unstableAddInvisibleFormats:ve}),wt=Qyt({onReplace:u,completers:l,record:qe,onChange:rt});iNt({html:n,value:qe});const Bt=x.useRef(new Set),ae=x.useRef(new Set);function H(){N.current?.focus()}const Y=t;return a.jsxs(a.Fragment,{children:[J&&a.jsx(i3e.Provider,{value:Bt,children:a.jsx(a3e.Provider,{value:ae,children:a.jsxs(Io.__unstableSlotNameProvider,{value:"__unstable-block-tools-after",children:[e&&e({value:qe,onChange:rt,onFocus:H}),a.jsx(CNt,{value:qe,onChange:rt,onFocus:H,formatTypes:pe,forwardedRef:N})]})})}),J&&we&&a.jsx(sNt,{inline:i,editableContentElement:N.current}),a.jsx(Y,{role:"textbox","aria-multiline":!S,"aria-readonly":de,...T,draggable:void 0,"aria-label":me||T["aria-label"]||d,...wt,ref:xn([qt,E,wt.ref,T.ref,_Nt({registry:Z,getValue:Pe,onChange:rt,__unstableAllowPrefixTransformations:C,formatTypes:pe,onReplace:u,selectionChange:je,isSelected:J,disableFormats:k,value:qe,tagName:t,onSplit:g,__unstableEmbedURLOnPaste:y,pastePlainText:M,onMerge:h,onRemove:b,removeEditorOnlyFormats:ne,disableLineBreaks:S,onSplitAtEnd:z,onSplitAtDoubleLineEnd:A,keyboardShortcuts:Bt,inputEvents:ae}),N]),contentEditable:!de,suppressContentEditableWarning:!0,className:oe("block-editor-rich-text__editable",T.className,"rich-text"),tabIndex:T.tabIndex===0&&!de?null:T.tabIndex,"data-wp-block-attribute-key":_})]})}const nk=TNt(x.forwardRef(MI));nk.Content=mI;nk.isEmpty=e=>!e||e.length===0;const Ie=x.forwardRef((e,t)=>{if(j0()[iae]){const{children:r,tagName:s="div",value:i,onChange:c,isSelected:l,multiline:u,inlineToolbar:d,wrapperClassName:p,autocompleters:f,onReplace:b,placeholder:h,allowedFormats:g,withoutInteractiveFormatting:z,onRemove:A,onMerge:_,onSplit:v,__unstableOnSplitAtEnd:M,__unstableOnSplitAtDoubleLineEnd:y,identifier:k,preserveWhiteSpace:S,__unstablePastePlainText:C,__unstableEmbedURLOnPaste:R,__unstableDisableFormats:T,disableLineBreaks:E,__unstableAllowPrefixTransformations:B,readOnly:N,...j}=c3e(e);return a.jsx(s,{...j,dangerouslySetInnerHTML:{__html:s3e(i,u)}})}return a.jsx(nk,{ref:t,...e,readOnly:!1})});Ie.Content=mI;Ie.isEmpty=e=>!e||e.length===0;const l3e=x.forwardRef((e,t)=>a.jsx(Ie,{ref:t,...e,__unstableDisableFormats:!0}));l3e.Content=({value:e="",tagName:t="div",...n})=>a.jsx(t,{...n,children:e});const Gd=x.forwardRef(({__experimentalVersion:e,...t},n)=>{if(e===2)return a.jsx(l3e,{ref:n,...t});const{className:o,onChange:r,...s}=t;return a.jsx(g7,{ref:n,className:oe("block-editor-plain-text",o),onChange:i=>r(i.target.value),...s})}),xte=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9.4 20.5L5.2 3.8l14.6 9-2 .3c-.2 0-.4.1-.7.1-.9.2-1.6.3-2.2.5-.8.3-1.4.5-1.8.8-.4.3-.8.8-1.3 1.5-.4.5-.8 1.2-1.2 2l-.3.6-.9 1.9zM7.6 7.1l2.4 9.3c.2-.4.5-.8.7-1.1.6-.8 1.1-1.4 1.6-1.8.5-.4 1.3-.8 2.2-1.1l1.2-.3-8.1-5z"})});function ENt(e,t){const n=G(r=>r(Q).__unstableGetEditorMode(),[]),{__unstableSetEditorMode:o}=Oe(Q);return a.jsx(so,{renderToggle:({isOpen:r,onToggle:s})=>a.jsx(Ce,{size:"compact",...e,ref:t,icon:n==="navigation"?Nd:xte,"aria-expanded":r,"aria-haspopup":"true",onClick:s,label:m("Tools")}),popoverProps:{placement:"bottom-start"},renderContent:()=>a.jsxs(a.Fragment,{children:[a.jsx(pm,{className:"block-editor-tool-selector__menu",role:"menu","aria-label":m("Tools"),children:a.jsx(kf,{value:n==="navigation"?"navigation":"edit",onSelect:r=>{o(r)},choices:[{value:"navigation",label:a.jsxs(a.Fragment,{children:[a.jsx(wn,{icon:Nd}),m("Write")]}),info:m("Focus on content."),"aria-label":m("Write")},{value:"edit",label:a.jsxs(a.Fragment,{children:[xte,m("Design")]}),info:m("Edit layout and styles."),"aria-label":m("Design")}]})}),a.jsx("div",{className:"block-editor-tool-selector__help",children:m("Tools provide different sets of interactions for blocks. Toggle between simplified content tools (Write) and advanced visual editing tools (Design).")})]})})}const WNt=x.forwardRef(ENt),uT="none",wte="custom",_te="media",kte="attachment",Ste=["noreferrer","noopener"],u3e=({linkDestination:e,onChangeUrl:t,url:n,mediaType:o="image",mediaUrl:r,mediaLink:s,linkTarget:i,linkClass:c,rel:l,showLightboxSetting:u,lightboxEnabled:d,onSetLightbox:p,resetLightbox:f})=>{const[b,h]=x.useState(!1),[g,z]=x.useState(null),A=()=>{h(!0)},[_,v]=x.useState(!1),[M,y]=x.useState(null),k=x.useRef(null),S=x.useRef();x.useEffect(()=>{if(!S.current)return;(Xr.focusable.find(S.current)[0]||S.current).focus()},[_,n,d]);const C=()=>{(e===_te||e===kte)&&y(""),v(!0)},R=()=>{v(!1)},T=()=>{y(null),R(),h(!1)},E=ce=>{const me=ce?"_blank":void 0;let de;if(me){const Ae=(l??"").split(" ");Ste.forEach(ye=>{Ae.includes(ye)||Ae.push(ye)}),de=Ae.join(" ")}else{const Ae=(l??"").split(" ").filter(ye=>Ste.includes(ye)===!1);de=Ae.length?Ae.join(" "):void 0}return{linkTarget:me,rel:de}},B=()=>ce=>{const me=k.current;me&&me.contains(ce.target)||(h(!1),y(null),R())},N=()=>ce=>{if(M){const me=I().find(de=>de.url===M)?.linkDestination||wte;t({href:M,linkDestination:me,lightbox:{enabled:!1}})}R(),y(null),ce.preventDefault()},j=()=>{t({linkDestination:uT,href:""})},I=()=>{const ce=[{linkDestination:_te,title:m("Link to image file"),url:o==="image"?r:void 0,icon:Oz}];return o==="image"&&s&&ce.push({linkDestination:kte,title:m("Link to attachment page"),url:o==="image"?s:void 0,icon:wa}),ce},P=ce=>{const me=I();let de;ce?de=(me.find(Ae=>Ae.url===ce)||{linkDestination:wte}).linkDestination:de=uT,t({linkDestination:de,href:ce})},$=ce=>{const me=E(ce);t(me)},F=ce=>{t({rel:ce})},X=ce=>{t({linkClass:ce})},Z=a.jsxs(dt,{spacing:"3",children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:$,checked:i==="_blank"}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:l??"",onChange:F}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link CSS class"),value:c||"",onChange:X})]}),V=M!==null?M:n,ee=!d||d&&!u,te=!V&&ee,J=(I().find(ce=>ce.linkDestination===e)||{}).title,ue=()=>{if(d&&u&&!n&&!_)return a.jsxs("div",{className:"block-editor-url-popover__expand-on-click",children:[a.jsx(wn,{icon:zz}),a.jsxs("div",{className:"text",children:[a.jsx("p",{children:m("Enlarge on click")}),a.jsx("p",{className:"description",children:m("Scales the image with a lightbox effect")})]}),a.jsx(Ce,{icon:jl,label:m("Disable enlarge on click"),onClick:()=>{p?.(!1)},size:"compact"})]});if(!n||_)return a.jsx(lf.LinkEditor,{className:"block-editor-format-toolbar__link-container-content",value:V,onChangeInputValue:y,onSubmit:N(),autocompleteRef:k});if(n&&!_)return a.jsxs(a.Fragment,{children:[a.jsx(lf.LinkViewer,{className:"block-editor-format-toolbar__link-container-content",url:n,onEditLinkClick:C,urlLabel:J}),a.jsx(Ce,{icon:jl,label:m("Remove link"),onClick:()=>{j(),f?.()},size:"compact"})]})};return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{icon:xa,className:"components-toolbar__control",label:m("Link"),"aria-expanded":b,onClick:A,ref:z,isActive:!!n||d&&u}),b&&a.jsx(lf,{ref:S,anchor:g,onFocusOutside:B(),onClose:T,renderSettings:ee?()=>Z:null,additionalControls:te&&a.jsxs(pm,{children:[I().map(ce=>a.jsx(Ct,{icon:ce.icon,iconPosition:"left",onClick:()=>{y(null),P(ce.url),R()},children:ce.title},ce.linkDestination)),u&&a.jsx(Ct,{className:"block-editor-url-popover__expand-on-click",icon:zz,info:m("Scale the image with a lightbox effect."),iconPosition:"left",onClick:()=>{y(null),t({linkDestination:uT,href:""}),p?.(!0),R()},children:m("Enlarge on click")},"expand-on-click")]}),offset:13,children:ue()})]})};function NNt(e){const[t,n]=x.useState(window.innerWidth);x.useEffect(()=>{if(e==="Desktop")return;const s=()=>n(window.innerWidth);return window.addEventListener("resize",s),()=>{window.removeEventListener("resize",s)}},[e]);const o=s=>{let i;switch(s){case"Tablet":i=780;break;case"Mobile":i=360;break;default:return null}return i<t?i:t};return(s=>{const i=s==="Mobile"?"768px":"1024px",c="40px",l="auto";switch(s){case"Tablet":case"Mobile":return{width:o(s),marginTop:c,marginBottom:c,marginLeft:l,marginRight:l,height:i,maxWidth:"100%"};default:return{marginLeft:l,marginRight:l}}})(e)}function BNt(){const e=G(o=>o(Q).getBlockSelectionStart(),[]),t=x.useRef();m7(e,t);const n=()=>{t.current?.focus()};return e?a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",className:"block-editor-skip-to-selected-block",onClick:n,children:m("Skip to the selected block")}):null}function LNt(){const e=G(t=>t(Q).getSelectedBlockCount(),[]);return a.jsxs(Ot,{justify:"flex-start",spacing:2,className:"block-editor-multi-selection-inspector__card",children:[a.jsx(Zn,{icon:H3,showColors:!0}),a.jsx("div",{className:"block-editor-multi-selection-inspector__card-title",children:xe(Dn("%d Block","%d Blocks",e),e)})]})}const d3e={name:"settings",title:m("Settings"),value:"settings",icon:ede},p3e={name:"styles",title:m("Styles"),value:"styles",icon:Fde},YW={name:"list",title:m("List View"),value:"list-view",icon:IP},f3e=()=>{const e=H0($_.slotName);return!(e&&e.length)?null:a.jsx(Qt,{className:"block-editor-block-inspector__advanced",title:m("Advanced"),initialOpen:!1,children:a.jsx(et.Slot,{group:"advanced"})})},PNt=()=>{const[e,t]=x.useState(),{multiSelectedBlocks:n}=G(o=>{const{getBlocksByClientId:r,getSelectedBlockClientIds:s}=o(Q),i=s();return{multiSelectedBlocks:r(i)}},[]);return x.useLayoutEffect(()=>{e===void 0&&t(n.some(({attributes:o})=>!!o?.style?.position?.type))},[e,n,t]),a.jsx(Qt,{className:"block-editor-block-inspector__position",title:m("Position"),initialOpen:e??!1,children:a.jsx(et.Slot,{group:"position"})})},b3e=()=>{const e=H0(D_.position.name);return!(e&&e.length)?null:a.jsx(PNt,{})},jNt=({showAdvancedControls:e=!1})=>a.jsxs(a.Fragment,{children:[a.jsx(et.Slot,{}),a.jsx(b3e,{}),a.jsx(et.Slot,{group:"bindings"}),e&&a.jsx("div",{children:a.jsx(f3e,{})})]}),INt=({blockName:e,clientId:t,hasBlockStyles:n})=>{const o=Q_({blockName:e});return a.jsxs(a.Fragment,{children:[n&&a.jsx("div",{children:a.jsx(Qt,{title:m("Styles"),children:a.jsx(Ize,{clientId:t})})}),a.jsx(et.Slot,{group:"color",label:m("Color"),className:"color-block-support-panel__inner-wrapper"}),a.jsx(et.Slot,{group:"background",label:m("Background image")}),a.jsx(et.Slot,{group:"filter"}),a.jsx(et.Slot,{group:"typography",label:m("Typography")}),a.jsx(et.Slot,{group:"dimensions",label:m("Dimensions")}),a.jsx(et.Slot,{group:"border",label:o}),a.jsx(et.Slot,{group:"styles"})]})},DNt=["core/navigation"],h3e=e=>!DNt.includes(e),{Tabs:Np}=ct(tr);function m3e({blockName:e,clientId:t,hasBlockStyles:n,tabs:o}){const r=G(i=>i(ht).get("core","showIconLabels"),[]),s=h3e(e)?void 0:YW.name;return a.jsx("div",{className:"block-editor-block-inspector__tabs",children:a.jsxs(Np,{defaultTabId:s,children:[a.jsx(Np.TabList,{children:o.map(i=>r?a.jsx(Np.Tab,{tabId:i.name,children:i.title},i.name):a.jsx(B0,{text:i.title,children:a.jsx(Np.Tab,{tabId:i.name,"aria-label":i.title,children:a.jsx(qo,{icon:i.icon})})},i.name))}),a.jsx(Np.TabPanel,{tabId:d3e.name,focusable:!1,children:a.jsx(jNt,{showAdvancedControls:!!e})}),a.jsx(Np.TabPanel,{tabId:p3e.name,focusable:!1,children:a.jsx(INt,{blockName:e,clientId:t,hasBlockStyles:n})}),a.jsx(Np.TabPanel,{tabId:YW.name,focusable:!1,children:a.jsx(et.Slot,{group:"list"})})]},t)})}const FNt=[];function $Nt(e,t={}){return t[e]!==void 0?t[e]:t.default!==void 0?t.default:!0}function g3e(e){const t=[],{bindings:n,border:o,color:r,default:s,dimensions:i,list:c,position:l,styles:u,typography:d,effects:p}=D_,f=h3e(e),b=H0(c.name),h=!f&&!!b&&b.length,z=[...H0(o.name)||[],...H0(r.name)||[],...H0(i.name)||[],...H0(u.name)||[],...H0(d.name)||[],...H0(p.name)||[]].length,A=[...H0($_.slotName)||[],...H0(n.name)||[]],_=[...H0(s.name)||[],...H0(l.name)||[],...h&&z>1?A:[]];h&&t.push(YW),_.length&&t.push(d3e),z&&t.push(p3e);const v=G(y=>y(Q).getSettings().blockInspectorTabs,[]);return $Nt(e,v)?t:FNt}function VNt(e){return G(t=>{if(e){const n=t(Q).getSettings().blockInspectorAnimation,o=n?.animationParent,{getSelectedBlockClientId:r,getBlockParentsByBlockName:s}=t(Q),i=r();return!s(i,o,!0)[0]&&e.name!==o?null:n?.[e.name]}return null},[e])}function M3e({clientIds:e,onSelect:t}){return e.length?a.jsx(dt,{spacing:1,children:e.map(n=>a.jsx(HNt,{onSelect:t,clientId:n},n))}):null}function HNt({clientId:e,onSelect:t}){const n=Ii(e),o=Fd({clientId:e,context:"list-view"}),{isSelected:r}=G(i=>{const{isBlockSelected:c,hasSelectedInnerBlock:l}=i(Q);return{isSelected:c(e)||l(e,!0)}},[e]),{selectBlock:s}=Oe(Q);return a.jsx(Ce,{__next40pxDefaultSize:!0,isPressed:r,onClick:async()=>{await s(e),t&&t(e)},children:a.jsxs(Yo,{children:[a.jsx(Tn,{children:a.jsx(Zn,{icon:n?.icon})}),a.jsx(tu,{style:{textAlign:"left"},children:a.jsx(zs,{children:o})})]})})}function UNt({clientId:e}){return a.jsx(Qt,{title:m("Styles"),children:a.jsx(Ize,{clientId:e})})}function z3e(){const{count:e,selectedBlockName:t,selectedBlockClientId:n,blockType:o,isSectionBlock:r}=G(d=>{const{getSelectedBlockClientId:p,getSelectedBlockCount:f,getBlockName:b,getParentSectionBlock:h,isSectionBlock:g}=ct(d(Q)),z=p(),A=h(z)||p(),_=A&&b(A),v=_&&on(_);return{count:f(),selectedBlockClientId:A,selectedBlockName:_,blockType:v,isSectionBlock:g(A)}},[]),s=g3e(o?.name),i=s?.length>1,c=VNt(o),l=Q_({blockName:t});if(e>1&&!r)return a.jsxs("div",{className:"block-editor-block-inspector",children:[a.jsx(LNt,{}),i?a.jsx(m3e,{tabs:s}):a.jsxs(a.Fragment,{children:[a.jsx(et.Slot,{}),a.jsx(et.Slot,{group:"color",label:m("Color"),className:"color-block-support-panel__inner-wrapper"}),a.jsx(et.Slot,{group:"background",label:m("Background image")}),a.jsx(et.Slot,{group:"typography",label:m("Typography")}),a.jsx(et.Slot,{group:"dimensions",label:m("Dimensions")}),a.jsx(et.Slot,{group:"border",label:l}),a.jsx(et.Slot,{group:"styles"})]})]});const u=t===g3();return!o||!n||u?a.jsx("span",{className:"block-editor-block-inspector__no-blocks",children:m("No block selected.")}):a.jsx(XNt,{animate:c,wrapper:d=>a.jsx(GNt,{blockInspectorAnimationSettings:c,selectedBlockClientId:n,children:d}),children:a.jsx(KNt,{clientId:n,blockName:o.name,isSectionBlock:r})})}const XNt=({animate:e,wrapper:t,children:n})=>e?t(n):n,GNt=({blockInspectorAnimationSettings:e,selectedBlockClientId:t,children:n})=>{const o=e&&e.enterDirection==="leftToRight"?-50:50;return a.jsx(Rr.div,{animate:{x:0,opacity:1,transition:{ease:"easeInOut",duration:.14}},initial:{x:o,opacity:0},children:n},t)},KNt=({clientId:e,blockName:t,isSectionBlock:n})=>{const o=g3e(t),r=!n&&o?.length>1,s=G(u=>{const{getBlockStyles:d}=u(kt),p=d(t);return p&&p.length>0},[t]),i=Ii(e),c=Q_({blockName:t}),l=G(u=>{if(!n)return;const{getClientIdsOfDescendants:d,getBlockName:p,getBlockEditingMode:f}=u(Q);return d(e).filter(b=>p(b)!=="core/list-item"&&f(b)==="contentOnly")},[n,e]);return a.jsxs("div",{className:"block-editor-block-inspector",children:[a.jsx(Mme,{...i,className:i.isSynced&&"is-synced"}),a.jsx(rWt,{blockClientId:e}),r&&a.jsx(m3e,{hasBlockStyles:s,clientId:e,blockName:t,tabs:o}),!r&&a.jsxs(a.Fragment,{children:[s&&a.jsx(UNt,{clientId:e}),l&&l?.length>0&&a.jsx(Qt,{title:m("Content"),children:a.jsx(M3e,{clientIds:l})}),!n&&a.jsxs(a.Fragment,{children:[a.jsx(et.Slot,{}),a.jsx(et.Slot,{group:"list"}),a.jsx(et.Slot,{group:"color",label:m("Color"),className:"color-block-support-panel__inner-wrapper"}),a.jsx(et.Slot,{group:"background",label:m("Background image")}),a.jsx(et.Slot,{group:"typography",label:m("Typography")}),a.jsx(et.Slot,{group:"dimensions",label:m("Dimensions")}),a.jsx(et.Slot,{group:"border",label:c}),a.jsx(et.Slot,{group:"styles"}),a.jsx(b3e,{}),a.jsx(et.Slot,{group:"bindings"}),a.jsx("div",{children:a.jsx(f3e,{})})]})]}),a.jsx(BNt,{},"back")]})},YNt=()=>{};function ZNt({rootClientId:e,clientId:t,isAppender:n,showInserterHelpPanel:o,showMostUsedBlocks:r=!1,__experimentalInsertionIndex:s,__experimentalInitialTab:i,__experimentalInitialCategory:c,__experimentalFilterValue:l,onPatternCategorySelection:u,onSelect:d=YNt,shouldFocusBlock:p=!1,onClose:f},b){const{destinationRootClientId:h}=G(g=>{const{getBlockRootClientId:z}=g(Q);return{destinationRootClientId:e||z(t)||void 0}},[t,e]);return a.jsx(vge,{onSelect:d,rootClientId:h,clientId:t,isAppender:n,showInserterHelpPanel:o,showMostUsedBlocks:r,__experimentalInsertionIndex:s,__experimentalFilterValue:l,onPatternCategorySelection:u,__experimentalInitialTab:i,__experimentalInitialCategory:c,shouldFocusBlock:p,ref:b,onClose:f})}const O3e=x.forwardRef(ZNt);function QNt(e,t){return a.jsx(O3e,{...e,onPatternCategorySelection:void 0,ref:t})}x.forwardRef(QNt);window.navigator.userAgent.indexOf("Trident");const JNt=new Set([cc,Ps,wi,_i]),eBt=.75;function tBt(){const e=G(t=>t(Q).hasSelectedBlock(),[]);return Mn(t=>{if(!e)return;const{ownerDocument:n}=t,{defaultView:o}=n;let r,s,i;function c(){r||(r=o.requestAnimationFrame(()=>{f(),r=null}))}function l(g){s&&o.cancelAnimationFrame(s),s=o.requestAnimationFrame(()=>{u(g),s=null})}function u({keyCode:g}){if(!b())return;const z=wE(o);if(!z)return;if(!i){i=z;return}if(JNt.has(g)){i=z;return}const A=z.top-i.top;if(A===0)return;const _=ps(t);if(!_)return;const v=_===n.body||_===n.documentElement,M=v?o.scrollY:_.scrollTop,y=v?0:_.getBoundingClientRect().top,k=v?i.top/o.innerHeight:(i.top-y)/(o.innerHeight-y);if(M===0&&k<eBt&&h()){i=z;return}const S=v?o.innerHeight:_.clientHeight;if(i.top+i.height>y+S||i.top<y){i=z;return}v?o.scrollBy(0,A):_.scrollTop+=A}function d(){n.addEventListener("selectionchange",p)}function p(){n.removeEventListener("selectionchange",p),f()}function f(){b()&&(i=wE(o))}function b(){return t.contains(n.activeElement)&&n.activeElement.isContentEditable}function h(){const g=t.querySelectorAll('[contenteditable="true"]');return g[g.length-1]===n.activeElement}return o.addEventListener("scroll",c,!0),o.addEventListener("resize",c,!0),t.addEventListener("keydown",l),t.addEventListener("keyup",u),t.addEventListener("mousedown",d),t.addEventListener("touchstart",d),()=>{o.removeEventListener("scroll",c,!0),o.removeEventListener("resize",c,!0),t.removeEventListener("keydown",l),t.removeEventListener("keyup",u),t.removeEventListener("mousedown",d),t.removeEventListener("touchstart",d),n.removeEventListener("selectionchange",p),o.cancelAnimationFrame(r),o.cancelAnimationFrame(s)}},[e])}const ZW=x.createContext({});function nBt(e,t,n){const o={...e,[t]:e[t]?new Set(e[t]):new Set};return o[t].add(n),o}function TO({children:e,uniqueId:t,blockName:n=""}){const o=x.useContext(ZW),{name:r}=j0();n=n||r;const s=x.useMemo(()=>nBt(o,n,t),[o,n,t]);return a.jsx(ZW.Provider,{value:s,children:e})}function ok(e,t=""){const n=x.useContext(ZW),{name:o}=j0();return t=t||o,!!n[t]?.has(e)}function Qs({title:e,help:t,actions:n=[],onClose:o}){return a.jsxs(dt,{className:"block-editor-inspector-popover-header",spacing:4,children:[a.jsxs(Ot,{alignment:"center",children:[a.jsx(_a,{className:"block-editor-inspector-popover-header__heading",level:2,size:13,children:e}),a.jsx(t1,{}),n.map(({label:r,icon:s,onClick:i})=>a.jsx(Ce,{size:"small",className:"block-editor-inspector-popover-header__action",label:r,icon:s,variant:!s&&"tertiary",onClick:i,children:!s&&r},r)),o&&a.jsx(Ce,{size:"small",className:"block-editor-inspector-popover-header__action",label:m("Close"),icon:rp,onClick:o})]}),t&&a.jsx(Sn,{children:t})]})}function oBt({onClose:e,onChange:t,showPopoverHeaderActions:n,isCompact:o,currentDate:r,...s},i){const c={startOfWeek:Sa().l10n.startOfWeek,onChange:t,currentDate:o?void 0:r,currentTime:o?r:void 0,...s},l=o?lO:uft;return a.jsxs("div",{ref:i,className:"block-editor-publish-date-time-picker",children:[a.jsx(Qs,{title:m("Publish"),actions:n?[{label:m("Now"),onClick:()=>t?.(null)}]:void 0,onClose:e}),a.jsx(l,{...c})]})}const y3e=x.forwardRef(oBt);function rBt(e,t){return a.jsx(y3e,{...e,showPopoverHeaderActions:!0,isCompact:!1,ref:t})}const sBt=x.forwardRef(rBt);function Jr(e){const t=j0(),{clientId:n=""}=t,{setBlockEditingMode:o,unsetBlockEditingMode:r}=Oe(Q),s=G(i=>n?null:i(Q).getBlockEditingMode(),[n]);return x.useEffect(()=>(e&&o(n,e),()=>{e&&r(n)}),[n,e,o,r]),n?t[sae]:s}const Di=e=>{if(e===null||typeof e!="object"||Array.isArray(e))return e;const t=Object.entries(e).map(([n,o])=>[n,Di(o)]).filter(([,n])=>n!==void 0);return t.length?Object.fromEntries(t):void 0};function A3e(e,t,n,o,r,s){if(Object.values(e??{}).every(l=>!l)||s.length===1&&n.innerBlocks.length===o.length)return n;let i=o[0]?.attributes;if(s.length>1&&o.length>1)if(o[r])i=o[r]?.attributes;else return n;let c=n;return Object.entries(e).forEach(([l,u])=>{u&&t[l].forEach(d=>{const p=fo(i,d);p&&(c={...c,attributes:gn(c.attributes,d,p)})})}),c}function W0(e,t,n){const r=An(e,t)?.__experimentalSkipSerialization;return Array.isArray(r)?r.includes(n):r}const nl=new WeakMap;function EO({id:e,css:t}){return Jz({id:e,css:t})}function Jz({id:e,css:t,assets:n,__unstableType:o,variation:r,clientId:s}={}){const{setStyleOverride:i,deleteStyleOverride:c}=ct(Oe(Q)),l=Fn(),u=x.useId();x.useEffect(()=>{if(!t&&!n)return;const d=e||u,p={id:e,css:t,assets:n,__unstableType:o,variation:r,clientId:s};return nl.get(l)||nl.set(l,[]),nl.get(l).push([d,p]),window.queueMicrotask(()=>{nl.get(l)?.length&&l.batch(()=>{nl.get(l).forEach(f=>{i(...f)}),nl.set(l,[])})}),()=>{nl.get(l)?.find(([b])=>b===d)?nl.set(l,nl.get(l).filter(([b])=>b!==d)):c(d)}},[e,t,s,n,o,u,i,c,l])}function WO(e,t){const[n,o,r,s,i,c,l,u,d,p,f,b,h,g,z,A,_,v,M,y,k,S,C,R,T,E,B,N,j,I,P,$,F,X,Z,V,ee,te,J,ue,ce,me,de,Ae,ye,Ne,je,ie,we,re,pe,ke,Se,se,L,U]=Un("background.backgroundImage","background.backgroundSize","typography.fontFamilies.custom","typography.fontFamilies.default","typography.fontFamilies.theme","typography.defaultFontSizes","typography.fontSizes.custom","typography.fontSizes.default","typography.fontSizes.theme","typography.customFontSize","typography.fontStyle","typography.fontWeight","typography.lineHeight","typography.textAlign","typography.textColumns","typography.textDecoration","typography.writingMode","typography.textTransform","typography.letterSpacing","spacing.padding","spacing.margin","spacing.blockGap","spacing.defaultSpacingSizes","spacing.customSpacingSize","spacing.spacingSizes.custom","spacing.spacingSizes.default","spacing.spacingSizes.theme","spacing.units","dimensions.aspectRatio","dimensions.minHeight","layout","border.color","border.radius","border.style","border.width","color.custom","color.palette.custom","color.customDuotone","color.palette.theme","color.palette.default","color.defaultPalette","color.defaultDuotone","color.duotone.custom","color.duotone.theme","color.duotone.default","color.gradients.custom","color.gradients.theme","color.gradients.default","color.defaultGradients","color.customGradient","color.background","color.link","color.text","color.heading","color.button","shadow"),ne=x.useMemo(()=>({background:{backgroundImage:n,backgroundSize:o},color:{palette:{custom:ee,theme:J,default:ue},gradients:{custom:Ne,theme:je,default:ie},duotone:{custom:de,theme:Ae,default:ye},defaultGradients:we,defaultPalette:ce,defaultDuotone:me,custom:V,customGradient:re,customDuotone:te,background:pe,link:ke,heading:se,button:L,text:Se},typography:{fontFamilies:{custom:r,default:s,theme:i},fontSizes:{custom:l,default:u,theme:d},customFontSize:p,defaultFontSizes:c,fontStyle:f,fontWeight:b,lineHeight:h,textAlign:g,textColumns:z,textDecoration:A,textTransform:v,letterSpacing:M,writingMode:_},spacing:{spacingSizes:{custom:T,default:E,theme:B},customSpacingSize:R,defaultSpacingSizes:C,padding:y,margin:k,blockGap:S,units:N},border:{color:$,radius:F,style:X,width:Z},dimensions:{aspectRatio:j,minHeight:I},layout:P,parentLayout:t,shadow:U}),[n,o,r,s,i,c,l,u,d,p,f,b,h,g,z,A,v,M,_,y,k,S,C,R,T,E,B,N,j,I,P,t,$,F,X,Z,V,ee,te,J,ue,ce,me,de,Ae,ye,Ne,je,ie,we,re,pe,ke,Se,se,L,U]);return uMe(ne,e)}function iBt(e){e=e.map(n=>({...n,Edit:x.memo(n.edit)}));const t=Or(n=>o=>{const r=j0();return[...e.map((s,i)=>{const{Edit:c,hasSupport:l,attributeKeys:u=[],shareWithChildBlocks:d}=s;if(!(r[ow]||r[ZB]&&d)||!l(o.name))return null;const f={};for(const b of u)o.attributes[b]&&(f[b]=o.attributes[b]);return a.jsx(c,{name:o.name,isSelected:o.isSelected,clientId:o.clientId,setAttributes:o.setAttributes,__unstableParentLayout:o.__unstableParentLayout,...f},i)}),a.jsx(n,{...o},"edit")]},"withBlockEditHooks");Bn("editor.BlockEdit","core/editor/hooks",t)}function aBt({index:e,useBlockProps:t,setAllWrapperProps:n,...o}){const r=t(o),s=i=>n(c=>{const l=[...c];return l[e]=i,l});return x.useEffect(()=>(s(r),()=>{s(void 0)})),null}const cBt=x.memo(aBt);function lBt(e){const t=Or(n=>o=>{const[r,s]=x.useState(Array(e.length).fill(void 0));return[...e.map((i,c)=>{const{hasSupport:l,attributeKeys:u=[],useBlockProps:d,isMatch:p}=i,f={};for(const b of u)o.attributes[b]&&(f[b]=o.attributes[b]);return!Object.keys(f).length||!l(o.name)||p&&!p(f)?null:a.jsx(cBt,{index:c,useBlockProps:d,setAllWrapperProps:s,name:o.name,clientId:o.clientId,...f},c)}),a.jsx(n,{...o,wrapperProps:r.filter(Boolean).reduce((i,c)=>({...i,...c,className:oe(i.className,c.className),style:{...i.style,...c.style}}),o.wrapperProps||{})},"edit")]},"withBlockListBlockHooks");Bn("editor.BlockListBlock","core/editor/hooks",t)}function uBt(e){function t(n,o,r){return e.reduce((s,i)=>{const{hasSupport:c,attributeKeys:l=[],addSaveProps:u}=i,d={};for(const p of l)r[p]&&(d[p]=r[p]);return!Object.keys(d).length||!c(o)?s:u(s,o,d)},n)}Bn("blocks.getSaveContent.extraProps","core/editor/hooks",t,0),Bn("blocks.getSaveContent.extraProps","core/editor/hooks",n=>(n.hasOwnProperty("className")&&!n.className&&delete n.className,n))}function dBt(e){const{apiVersion:t=1}=e;return t<2&&Et(e,"lightBlockWrapper",!1)&&(e.apiVersion=2),e}Bn("blocks.registerBlockType","core/compat/migrateLightBlockWrapper",dBt);const QW=["left","center","right","wide","full"],pBt=["wide","full"];function zI(e,t=!0,n=!0){let o;return Array.isArray(e)?o=QW.filter(r=>e.includes(r)):e===!0?o=[...QW]:o=[],!n||e===!0&&!t?o.filter(r=>!pBt.includes(r)):o}function fBt(e){var t;return"type"in((t=e.attributes?.align)!==null&&t!==void 0?t:{})||Et(e,"align")&&(e.attributes={...e.attributes,align:{type:"string",enum:[...QW,""]}}),e}function bBt({name:e,align:t,setAttributes:n}){const o=zI(An(e,"align"),Et(e,"alignWide",!0)),r=b7(o).map(({name:c})=>c),s=Jr();if(!r.length||s!=="default")return null;const i=c=>{c||on(e)?.attributes?.align?.default&&(c=""),n({align:c})};return a.jsx(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:a.jsx(Ovt,{value:t,onChange:i,controls:r})})}const OI={shareWithChildBlocks:!0,edit:bBt,useBlockProps:hBt,addSaveProps:mBt,attributeKeys:["align"],hasSupport(e){return Et(e,"align",!1)}};function hBt({name:e,align:t}){const n=zI(An(e,"align"),Et(e,"alignWide",!0));return b7(n).some(r=>r.name===t)?{"data-align":t}:{}}function mBt(e,t,n){const{align:o}=n,r=An(t,"align"),s=Et(t,"alignWide",!0);return zI(r,s).includes(o)&&(e.className=oe(`align${o}`,e.className)),e}Bn("blocks.registerBlockType","core/editor/align/addAttribute",fBt);function gBt(e){var t;return"type"in((t=e.attributes?.lock)!==null&&t!==void 0?t:{})||(e.attributes={...e.attributes,lock:{type:"object"}}),e}Bn("blocks.registerBlockType","core/lock/addAttribute",gBt);const MBt=/[\s#]/g,zBt={type:"string",source:"attribute",attribute:"id",selector:"*"};function OBt(e){var t;return"type"in((t=e.attributes?.anchor)!==null&&t!==void 0?t:{})||Et(e,"anchor")&&(e.attributes={...e.attributes,anchor:zBt}),e}function yBt({anchor:e,setAttributes:t}){return Jr()!=="default"?null:a.jsx(et,{group:"advanced",children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,className:"html-anchor-control",label:m("HTML anchor"),help:a.jsxs(a.Fragment,{children:[m("Enter a word or two — without spaces — to make a unique web address just for this block, called an “anchor”. Then, you’ll be able to link directly to this section of your page."),a.jsxs(a.Fragment,{children:[" ",a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-jumps/"),children:m("Learn more about anchors")})]})]}),value:e||"",placeholder:null,onChange:o=>{o=o.replace(MBt,"-"),t({anchor:o})},autoCapitalize:"none",autoComplete:"off"})})}const v3e={addSaveProps:ABt,edit:yBt,attributeKeys:["anchor"],hasSupport(e){return Et(e,"anchor")}};function ABt(e,t,n){return Et(t,"anchor")&&(e.id=n.anchor===""?null:n.anchor),e}Bn("blocks.registerBlockType","core/anchor/attribute",OBt);const vBt={type:"string",source:"attribute",attribute:"aria-label",selector:"*"};function xBt(e){return e?.attributes?.ariaLabel?.type||Et(e,"ariaLabel")&&(e.attributes={...e.attributes,ariaLabel:vBt}),e}function wBt(e,t,n){return Et(t,"ariaLabel")&&(e["aria-label"]=n.ariaLabel===""?null:n.ariaLabel),e}const _Bt={addSaveProps:wBt,attributeKeys:["ariaLabel"],hasSupport(e){return Et(e,"ariaLabel")}};Bn("blocks.registerBlockType","core/ariaLabel/attribute",xBt);function kBt(e){return Et(e,"customClassName",!0)&&(e.attributes={...e.attributes,className:{type:"string"}}),e}function SBt({className:e,setAttributes:t}){return Jr()!=="default"?null:a.jsx(et,{group:"advanced",children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,autoComplete:"off",label:m("Additional CSS class(es)"),value:e||"",onChange:o=>{t({className:o!==""?o:void 0})},help:m("Separate multiple classes with spaces.")})})}const x3e={edit:SBt,addSaveProps:CBt,attributeKeys:["className"],hasSupport(e){return Et(e,"customClassName",!0)}};function CBt(e,t,n){return Et(t,"customClassName",!0)&&n.className&&(e.className=oe(e.className,n.className)),e}function qBt(e,t,n,o){if(!Et(e.name,"customClassName",!0)||o.length===1&&e.innerBlocks.length===t.length||o.length===1&&t.length>1||o.length>1&&t.length===1)return e;if(t[n]){const r=t[n]?.attributes.className;if(r)return{...e,attributes:{...e.attributes,className:r}}}return e}Bn("blocks.registerBlockType","core/editor/custom-class-name/attribute",kBt);Bn("blocks.switchToBlockType.transformedBlock","core/color/addTransforms",qBt);function RBt(e,t){return Et(t,"className",!0)&&(typeof e.className=="string"?e.className=[...new Set([Z4(t.name),...e.className.split(" ")])].join(" ").trim():e.className=Z4(t.name)),e}Bn("blocks.getSaveContent.extraProps","core/generated-class-name/save-props",RBt);function Av(e){return e.ownerDocument.defaultView.getComputedStyle(e)}function TBt({clientId:e}){const[t,n]=x.useState(),[o,r]=x.useState(),[s,i]=x.useState(),c=Wi(e);return x.useEffect(()=>{if(!c)return;r(Av(c).color);const l=c.querySelector("a");l&&l.innerText&&i(Av(l).color);let u=c,d=Av(u).backgroundColor;for(;d==="rgba(0, 0, 0, 0)"&&u.parentNode&&u.parentNode.nodeType===u.parentNode.ELEMENT_NODE;)u=u.parentNode,d=Av(u).backgroundColor;n(d)},[c]),a.jsx(Jx,{backgroundColor:t,textColor:o,enableAlphaChecker:!0,linkColor:s})}const Q0="color",rk=e=>{const t=An(e,Q0);return t&&(t.link===!0||t.gradient===!0||t.background!==!1||t.text!==!1)},EBt=e=>{const t=An(e,Q0);return t!==null&&typeof t=="object"&&!!t.link},yI=e=>{const t=An(e,Q0);return t!==null&&typeof t=="object"&&!!t.gradients},WBt=e=>{const t=An(e,Q0);return t&&t.background!==!1},NBt=e=>{const t=An(e,Q0);return t&&t.text!==!1};function BBt(e){return rk(e)&&(e.attributes.backgroundColor||Object.assign(e.attributes,{backgroundColor:{type:"string"}}),e.attributes.textColor||Object.assign(e.attributes,{textColor:{type:"string"}}),yI(e)&&!e.attributes.gradient&&Object.assign(e.attributes,{gradient:{type:"string"}})),e}function w3e(e,t,n){if(!rk(t)||W0(t,Q0))return e;const o=yI(t),{backgroundColor:r,textColor:s,gradient:i,style:c}=n,l=g=>!W0(t,Q0,g),u=l("text")?Pt("color",s):void 0,d=l("gradients")?R1(i):void 0,p=l("background")?Pt("background-color",r):void 0,f=l("background")||l("gradients"),b=r||c?.color?.background||o&&(i||c?.color?.gradient),h=oe(e.className,u,d,{[p]:(!o||!c?.color?.gradient)&&!!p,"has-text-color":l("text")&&(s||c?.color?.text),"has-background":f&&b,"has-link-color":l("link")&&c?.elements?.link?.color});return e.className=h||void 0,e}function _3e(e){const t=e?.color?.text,n=t?.startsWith("var:preset|color|")?t.substring(17):void 0,o=e?.color?.background,r=o?.startsWith("var:preset|color|")?o.substring(17):void 0,s=e?.color?.gradient,i=s?.startsWith("var:preset|gradient|")?s.substring(20):void 0,c={...e};return c.color={...c.color,text:n?void 0:t,background:r?void 0:o,gradient:i?void 0:s},{style:Di(c),textColor:n,backgroundColor:r,gradient:i}}function k3e(e){return{...e.style,color:{...e.style?.color,text:e.textColor?"var:preset|color|"+e.textColor:e.style?.color?.text,background:e.backgroundColor?"var:preset|color|"+e.backgroundColor:e.style?.color?.background,gradient:e.gradient?"var:preset|gradient|"+e.gradient:e.style?.color?.gradient}}}function LBt({children:e,resetAllFilter:t}){const n=x.useCallback(o=>{const r=k3e(o),s=t(r);return{...o,..._3e(s)}},[t]);return a.jsx(et,{group:"color",resetAllFilter:n,children:e})}function PBt({clientId:e,name:t,setAttributes:n,settings:o}){const r=bze(o);function s(h){const{style:g,textColor:z,backgroundColor:A,gradient:_}=h(Q).getBlockAttributes(e)||{};return{style:g,textColor:z,backgroundColor:A,gradient:_}}const{style:i,textColor:c,backgroundColor:l,gradient:u}=G(s,[e]),d=x.useMemo(()=>k3e({style:i,textColor:c,backgroundColor:l,gradient:u}),[i,c,l,u]),p=h=>{n(_3e(h))};if(!r)return null;const f=An(t,[Q0,"__experimentalDefaultControls"]),b=!d?.color?.gradient&&(o?.color?.text||o?.color?.link)&&An(t,[Q0,"enableContrastChecker"])!==!1;return a.jsx(Oze,{as:LBt,panelId:e,settings:o,value:d,onChange:p,defaultControls:f,enableContrastChecker:An(t,[Q0,"enableContrastChecker"])!==!1,children:b&&a.jsx(TBt,{clientId:e})})}function jBt({name:e,backgroundColor:t,textColor:n,gradient:o,style:r}){const[s,i,c]=Un("color.palette.custom","color.palette.theme","color.palette.default"),l=x.useMemo(()=>[...s||[],...i||[],...c||[]],[s,i,c]);if(!rk(e)||W0(e,Q0))return{};const u={};n&&!W0(e,Q0,"text")&&(u.color=Sf(l,n)?.color),t&&!W0(e,Q0,"background")&&(u.backgroundColor=Sf(l,t)?.color);const d=w3e({style:u},e,{textColor:n,backgroundColor:t,gradient:o,style:r}),p=t||r?.color?.background||o||r?.color?.gradient;return{...d,className:oe(d.className,!p&&GRt(r))}}const S3e={useBlockProps:jBt,addSaveProps:w3e,attributeKeys:["backgroundColor","textColor","gradient","style"],hasSupport:rk},IBt={linkColor:[["style","elements","link","color","text"]],textColor:[["textColor"],["style","color","text"]],backgroundColor:[["backgroundColor"],["style","color","background"]],gradient:[["gradient"],["style","color","gradient"]]};function DBt(e,t,n,o){const r=e.name,s={linkColor:EBt(r),textColor:NBt(r),backgroundColor:WBt(r),gradient:yI(r)};return A3e(s,IBt,e,t,n,o)}Bn("blocks.registerBlockType","core/color/addAttribute",BBt);Bn("blocks.switchToBlockType.transformedBlock","core/color/addTransforms",DBt);const FBt="typography.lineHeight",sk="typography.__experimentalFontFamily",{kebabCase:$Bt}=ct(tr);function VBt(e){return Et(e,sk)&&(e.attributes.fontFamily||Object.assign(e.attributes,{fontFamily:{type:"string"}})),e}function C3e(e,t,n){if(!Et(t,sk)||W0(t,Kd,"fontFamily")||!n?.fontFamily)return e;const o=new V_(e.className);o.add(`has-${$Bt(n?.fontFamily)}-font-family`);const r=o.value;return e.className=r||void 0,e}function HBt({name:e,fontFamily:t}){return C3e({},e,{fontFamily:t})}const q3e={useBlockProps:HBt,addSaveProps:C3e,attributeKeys:["fontFamily"],hasSupport(e){return Et(e,sk)}};Bn("blocks.registerBlockType","core/fontFamily/addAttribute",VBt);const qm="typography.fontSize";function UBt(e){return Et(e,qm)&&(e.attributes.fontSize||Object.assign(e.attributes,{fontSize:{type:"string"}})),e}function R3e(e,t,n){if(!Et(t,qm)||W0(t,Kd,"fontSize"))return e;const o=new V_(e.className);o.add(Nx(n.fontSize));const r=o.value;return e.className=r||void 0,e}function XBt({name:e,fontSize:t,style:n}){const[o,r,s]=Un("typography.fontSizes","typography.fluid","layout");if(!Et(e,qm)||W0(e,Kd,"fontSize")||!t&&!n?.typography?.fontSize)return;let i;if(n?.typography?.fontSize&&(i={style:{fontSize:F_({size:n.typography.fontSize},{typography:{fluid:r},layout:s})}}),t&&(i={style:{fontSize:Ayt(o,t,n?.typography?.fontSize).size}}),!!i)return R3e(i,e,{fontSize:t})}const T3e={useBlockProps:XBt,addSaveProps:R3e,attributeKeys:["fontSize","style"],hasSupport(e){return Et(e,qm)}},GBt={fontSize:[["fontSize"],["style","typography","fontSize"]]};function KBt(e,t,n,o){const r=e.name,s={fontSize:Et(r,qm)};return A3e(s,GBt,e,t,n,o)}Bn("blocks.registerBlockType","core/font/addAttribute",UBt);Bn("blocks.switchToBlockType.transformedBlock","core/font-size/addTransforms",KBt);const NO="typography.textAlign",YBt=[{icon:$3,title:m("Align text left"),align:"left"},{icon:Rw,title:m("Align text center"),align:"center"},{icon:V3,title:m("Align text right"),align:"right"}],Cte=["left","center","right"],ZBt=[];function AI(e){return Array.isArray(e)?Cte.filter(t=>e.includes(t)):e===!0?Cte:ZBt}function QBt({style:e,name:t,setAttributes:n}){const r=WO(t)?.typography?.textAlign,s=Jr();if(!r||s!=="default")return null;const i=AI(An(t,NO));if(!i.length)return null;const c=YBt.filter(u=>i.includes(u.align)),l=u=>{const d={...e,typography:{...e?.typography,textAlign:u}};n({style:Di(d)})};return a.jsx(bt,{group:"block",children:a.jsx(nr,{value:e?.typography?.textAlign,onChange:l,alignmentControls:c})})}const vI={edit:QBt,useBlockProps:JBt,addSaveProps:eLt,attributeKeys:["style"],hasSupport(e){return Et(e,NO,!1)}};function JBt({name:e,style:t}){if(!t?.typography?.textAlign||!AI(An(e,NO)).length||W0(e,Kd,"textAlign"))return null;const o=t.typography.textAlign;return{className:oe({[`has-text-align-${o}`]:o})}}function eLt(e,t,n){if(!n?.style?.typography?.textAlign)return e;const{textAlign:o}=n.style.typography,r=An(t,NO);return AI(r).includes(o)&&!W0(t,Kd,"textAlign")&&(e.className=oe(`has-text-align-${o}`,e.className)),e}function qte(e,t){return Object.fromEntries(Object.entries(e).filter(([n])=>!t.includes(n)))}const tLt="typography.__experimentalLetterSpacing",nLt="typography.__experimentalTextTransform",oLt="typography.__experimentalTextDecoration",rLt="typography.textColumns",sLt="typography.__experimentalFontStyle",iLt="typography.__experimentalFontWeight",aLt="typography.__experimentalWritingMode",Kd="typography",cLt=[FBt,qm,sLt,iLt,sk,NO,rLt,oLt,aLt,nLt,tLt];function E3e(e){const t={...qte(e,["fontFamily"])},n=e?.typography?.fontSize,o=e?.typography?.fontFamily,r=n?.startsWith("var:preset|font-size|")?n.substring(21):void 0,s=o?.startsWith("var:preset|font-family|")?o.substring(23):void 0;return t.typography={...qte(t.typography,["fontFamily"]),fontSize:r?void 0:n},{style:Di(t),fontFamily:s,fontSize:r}}function W3e(e){return{...e.style,typography:{...e.style?.typography,fontFamily:e.fontFamily?"var:preset|font-family|"+e.fontFamily:void 0,fontSize:e.fontSize?"var:preset|font-size|"+e.fontSize:e.style?.typography?.fontSize}}}function lLt({children:e,resetAllFilter:t}){const n=x.useCallback(o=>{const r=W3e(o),s=t(r);return{...o,...E3e(s)}},[t]);return a.jsx(et,{group:"typography",resetAllFilter:n,children:e})}function uLt({clientId:e,name:t,setAttributes:n,settings:o}){function r(f){const{style:b,fontFamily:h,fontSize:g}=f(Q).getBlockAttributes(e)||{};return{style:b,fontFamily:h,fontSize:g}}const{style:s,fontFamily:i,fontSize:c}=G(r,[e]),l=wMe(o),u=x.useMemo(()=>W3e({style:s,fontFamily:i,fontSize:c}),[s,c,i]),d=f=>{n(E3e(f))};if(!l)return null;const p=An(t,[Kd,"__experimentalDefaultControls"]);return a.jsx(BMe,{as:lLt,panelId:e,settings:o,value:u,onChange:d,defaultControls:p})}function N3e({clientId:e,value:t,computeStyle:n,forceShow:o}){const r=Wi(e),[s,i]=x.useReducer(()=>n(r));x.useLayoutEffect(()=>{r&&window.requestAnimationFrame(()=>window.requestAnimationFrame(i))},[r,t]);const c=x.useRef(t),[l,u]=x.useState(!1);return x.useEffect(()=>{if(ds(t,c.current)||o)return;u(!0),c.current=t;const d=setTimeout(()=>{u(!1)},400);return()=>{u(!1),clearTimeout(d)}},[t,o]),!l&&!o?null:a.jsx(wm,{clientId:e,__unstablePopoverSlot:"block-toolbar",children:a.jsx("div",{className:"block-editor__spacing-visualizer",style:s})})}function sd(e,t){return e.ownerDocument.defaultView.getComputedStyle(e).getPropertyValue(t)}function dLt({clientId:e,value:t,forceShow:n}){return a.jsx(N3e,{clientId:e,value:t?.spacing?.margin,computeStyle:o=>{const r=sd(o,"margin-top"),s=sd(o,"margin-right"),i=sd(o,"margin-bottom"),c=sd(o,"margin-left");return{borderTopWidth:r,borderRightWidth:s,borderBottomWidth:i,borderLeftWidth:c,top:r?`-${r}`:0,right:s?`-${s}`:0,bottom:i?`-${i}`:0,left:c?`-${c}`:0}},forceShow:n})}function pLt({clientId:e,value:t,forceShow:n}){return a.jsx(N3e,{clientId:e,value:t?.spacing?.padding,computeStyle:o=>({borderTopWidth:sd(o,"padding-top"),borderRightWidth:sd(o,"padding-right"),borderBottomWidth:sd(o,"padding-bottom"),borderLeftWidth:sd(o,"padding-left")}),forceShow:n})}const $l="dimensions",e5="spacing";function fLt(){const[e,t]=x.useState(!1),{hideBlockInterface:n,showBlockInterface:o}=ct(Oe(Q));return x.useEffect(()=>{e?n():o()},[e,o,n]),[e,t]}function bLt({children:e,resetAllFilter:t}){const n=x.useCallback(o=>{const r=o.style,s=t(r);return{...o,style:s}},[t]);return a.jsx(et,{group:"dimensions",resetAllFilter:n,children:e})}function hLt({clientId:e,name:t,setAttributes:n,settings:o}){const r=jMe(o),s=G(f=>f(Q).getBlockAttributes(e)?.style,[e]),[i,c]=fLt(),l=f=>{n({style:Di(f)})};if(!r)return null;const u=An(t,[$l,"__experimentalDefaultControls"]),d=An(t,[e5,"__experimentalDefaultControls"]),p={...u,...d};return a.jsxs(a.Fragment,{children:[a.jsx(GMe,{as:bLt,panelId:e,settings:o,value:s,onChange:l,defaultControls:p,onVisualize:c}),!!o?.spacing?.padding&&a.jsx(pLt,{forceShow:i==="padding",clientId:e,value:s}),!!o?.spacing?.margin&&a.jsx(dLt,{forceShow:i==="margin",clientId:e,value:s})]})}function B3e(e,t="any"){const n=An(e,$l);return n===!0?!0:t==="any"?!!(n?.aspectRatio||n?.minHeight):!!n?.[t]}const mLt={useBlockProps:gLt,attributeKeys:["minHeight","style"],hasSupport(e){return B3e(e,"aspectRatio")}};function gLt({name:e,minHeight:t,style:n}){if(!B3e(e,"aspectRatio")||W0(e,$l,"aspectRatio"))return{};const o=oe({"has-aspect-ratio":!!n?.dimensions?.aspectRatio}),r={};return n?.dimensions?.aspectRatio?r.minHeight="unset":(t||n?.dimensions?.minHeight)&&(r.aspectRatio="unset"),{className:o,style:r}}const MLt=[...cLt,Sm,Q0,$l,Sh,e5,Qx],xI=e=>MLt.some(t=>Et(e,t));function Rm(e={}){const t={};return x_(e).forEach(n=>{t[n.key]=n.value}),t}function zLt(e){return xI(e)&&(e.attributes.style||Object.assign(e.attributes,{style:{type:"object"}})),e}const L3e={[`${Sm}.__experimentalSkipSerialization`]:["border"],[`${Q0}.__experimentalSkipSerialization`]:[Q0],[`${Kd}.__experimentalSkipSerialization`]:[Kd],[`${$l}.__experimentalSkipSerialization`]:[$l],[`${e5}.__experimentalSkipSerialization`]:[e5],[`${Qx}.__experimentalSkipSerialization`]:[Qx]},OLt={...L3e,[`${$l}.aspectRatio`]:[`${$l}.aspectRatio`],[`${Sh}`]:[Sh]},yLt={[`${$l}.aspectRatio`]:!0,[`${Sh}`]:!0},ALt={gradients:"gradient"};function JW(e,t,n=!1){if(!e)return e;let o=e;return n||(o=JSON.parse(JSON.stringify(e))),Array.isArray(t)||(t=[t]),t.forEach(r=>{if(Array.isArray(r)||(r=r.split(".")),r.length>1){const[s,...i]=r;JW(o[s],[i],!0)}else r.length===1&&delete o[r[0]]}),o}function P3e(e,t,n,o=OLt){if(!xI(t))return e;let{style:r}=n;return Object.entries(o).forEach(([s,i])=>{const c=yLt[s]||An(t,s);c===!0&&(r=JW(r,i)),Array.isArray(c)&&c.forEach(l=>{const u=ALt[l]||l;r=JW(r,[[...i,u]])})}),e.style={...Rm(r),...e.style},e}function vLt({clientId:e,name:t,setAttributes:n,__unstableParentLayout:o}){const r=WO(t,o),s=Jr(),i={clientId:e,name:t,setAttributes:n,settings:{...r,typography:{...r.typography,textAlign:!1}}};return s!=="default"?null:a.jsxs(a.Fragment,{children:[a.jsx(PBt,{...i}),a.jsx(YRt,{...i}),a.jsx(uLt,{...i}),a.jsx(JTt,{...i}),a.jsx(hLt,{...i})]})}const wI={edit:vLt,hasSupport:xI,addSaveProps:P3e,attributeKeys:["style"],useBlockProps:_Lt},xLt=[{elementType:"button"},{elementType:"link",pseudo:[":hover"]},{elementType:"heading",elements:["h1","h2","h3","h4","h5","h6"]}],wLt={};function _Lt({name:e,style:t}){const n=vt(wLt,"wp-elements"),o=`.${n}`,r=t?.elements,s=x.useMemo(()=>{if(!r)return;const i=[];return xLt.forEach(({elementType:c,pseudo:l,elements:u})=>{if(W0(e,Q0,c))return;const p=r?.[c];if(p){const f=Ws(o,Za[c]);i.push(cq(p,{selector:f})),l&&l.forEach(b=>{p[b]&&i.push(cq(p[b],{selector:Ws(o,`${Za[c]}${b}`)}))})}u&&u.forEach(f=>{r[f]&&i.push(cq(r[f],{selector:Ws(o,Za[f])}))})}),i.length>0?i.join(""):void 0},[o,r,e]);return EO({css:s}),P3e({className:n},e,{style:t},L3e)}Bn("blocks.registerBlockType","core/style/addAttribute",zLt);const kLt=e=>Et(e,"__experimentalSettings",!1);function SLt(e){return kLt(e)&&(e?.attributes?.settings||(e.attributes={...e.attributes,settings:{type:"object"}})),e}Bn("blocks.registerBlockType","core/settings/addAttribute",SLt);const dT=[],CLt=window?.navigator.userAgent&&window.navigator.userAgent.includes("Safari")&&!window.navigator.userAgent.includes("Chrome")&&!window.navigator.userAgent.includes("Chromium");Xs([Gs]);function eN({presetSetting:e,defaultSetting:t}){const[n,o,r,s]=Un(t,`${e}.custom`,`${e}.theme`,`${e}.default`);return x.useMemo(()=>[...o||dT,...r||dT,...n&&s||dT],[n,o,r,s])}function j3e(e,t){if(!e)return;const n=t?.find(({slug:o})=>e===`var:preset|duotone|${o}`);return n?n.colors:void 0}function qLt(e,t){if(!e||!Array.isArray(e))return;const n=t?.find(o=>o?.colors?.every((r,s)=>r===e[s]));return n?`var:preset|duotone|${n.slug}`:void 0}function RLt({style:e,setAttributes:t,name:n}){const o=e?.color?.duotone,r=WO(n),s=Jr(),i=eN({presetSetting:"color.duotone",defaultSetting:"color.defaultDuotone"}),c=eN({presetSetting:"color.palette",defaultSetting:"color.defaultPalette"}),[l,u]=Un("color.custom","color.customDuotone"),d=!l,p=!u||c?.length===0&&d;if(i?.length===0&&p||s!=="default")return null;const f=Array.isArray(o)?o:j3e(o,i);return a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"filter",children:a.jsx(Aze,{value:{filter:{duotone:f}},onChange:b=>{const h={...e,color:{...b?.filter}};t({style:h})},settings:r})}),a.jsx(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:a.jsx(Xze,{duotonePalette:i,colorPalette:c,disableCustomDuotone:p,disableCustomColors:d,value:f,onChange:b=>{const h=qLt(b,i),g={...e,color:{...e?.color,duotone:h??b}};t({style:g})},settings:r})})]})}const I3e={shareWithChildBlocks:!0,edit:RLt,useBlockProps:NLt,attributeKeys:["style"],hasSupport(e){return Et(e,"filter.duotone")}};function TLt(e){return Et(e,"filter.duotone")&&(e.attributes.style||Object.assign(e.attributes,{style:{type:"object"}})),e}function ELt({clientId:e,id:t,selector:n,attribute:o}){const r=eN({presetSetting:"color.duotone",defaultSetting:"color.defaultDuotone"}),s=Array.isArray(o),i=s?void 0:j3e(o,r),c=typeof o=="string"&&i,l=typeof o=="string"&&!c;let u=null;c?u=i:(l||s)&&(u=o);const f=n.split(",").map(g=>`.${t}${g.trim()}`).join(", "),b=Array.isArray(u)||u==="unset";Jz(b?{css:u!=="unset"?rRt(f,t):oRt(f),__unstableType:"presets"}:void 0),Jz(b?{assets:u!=="unset"?sI(t,u):"",__unstableType:"svgs"}:void 0);const h=Wi(e);x.useEffect(()=>{if(b&&h&&CLt){const g=h.style.display;h.style.setProperty("display","inline-block"),h.offsetHeight,h.style.setProperty("display",g)}},[b,h,u])}const WLt={};function NLt({clientId:e,name:t,style:n}){const o=vt(WLt),r=x.useMemo(()=>{const l=on(t);if(l){if(!An(l,"filter.duotone",!1))return null;const d=An(l,"color.__experimentalDuotone",!1);if(d){const p=pd(l);return typeof d=="string"?Ws(p,d):p}return pd(l,"filter.duotone",{fallback:!0})}},[t]),s=n?.color?.duotone,i=`wp-duotone-${o}`,c=r&&s;return ELt({clientId:e,id:i,selector:r,attribute:s}),{className:c?i:""}}Bn("blocks.registerBlockType","core/editor/duotone/add-attributes",TLt);const _I="layout",{kebabCase:tN}=ct(tr);function kI(e){return Et(e,"layout")||Et(e,"__experimentalLayout")}function D3e(e={},t=""){const{layout:n}=e,{default:o}=An(t,_I)||{},r=n?.inherit||n?.contentSize||n?.wideSize?{...n,type:"constrained"}:n||o||{},s=[];if(Dd[r?.type||"default"]?.className){const c=Dd[r?.type||"default"]?.className,l=t.split("/"),d=`wp-block-${l[0]==="core"?l.pop():l.join("-")}-${c}`;s.push(c,d)}return G(c=>(r?.inherit||r?.contentSize||r?.type==="constrained")&&c(Q).getSettings().__experimentalFeatures?.useRootPaddingAwareAlignments,[r?.contentSize,r?.inherit,r?.type])&&s.push("has-global-padding"),r?.orientation&&s.push(`is-${tN(r.orientation)}`),r?.justifyContent&&s.push(`is-content-justification-${tN(r.justifyContent)}`),r?.flexWrap&&r.flexWrap==="nowrap"&&s.push("is-nowrap"),s}function BLt(e={},t,n){const{layout:o={},style:r={}}=e,s=o?.inherit||o?.contentSize||o?.wideSize?{...o,type:"constrained"}:o||{},i=Rf(s?.type||"default"),[c]=Un("spacing.blockGap"),l=c!==null;return i?.getLayoutStyle?.({blockName:t,selector:n,layout:o,style:r,hasBlockGapSupport:l})}function LLt({layout:e,setAttributes:t,name:n,clientId:o}){const r=WO(n),{layout:s}=r,{themeSupportsLayout:i}=G(B=>{const{getSettings:N}=B(Q);return{themeSupportsLayout:N().supportsLayout}},[]);if(Jr()!=="default")return null;const l=An(n,_I,{}),u={...s,...l},{allowSwitching:d,allowEditing:p=!0,allowInheriting:f=!0,default:b}=u;if(!p)return null;const h={...l,...e},{type:g,default:{type:z="default"}={}}=h,A=g||z,_=!!(f&&(!A||A==="default"||A==="constrained"||h.inherit)),v=e||b||{},{inherit:M=!1,contentSize:y=null}=v;if((A==="default"||A==="constrained")&&!i)return null;const k=Rf(A),S=Rf("constrained"),C=!v.type&&(y||M),R=!!M||!!y,T=B=>t({layout:{type:B}}),E=B=>t({layout:B});return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Layout"),children:[_&&a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Inner blocks use content width"),checked:k?.name==="constrained"||R,onChange:()=>t({layout:{type:k?.name==="constrained"||R?"default":"constrained"}}),help:k?.name==="constrained"||R?m("Nested blocks use content width with options for full and wide widths."):m("Nested blocks will fill the width of this container. Toggle to constrain.")})}),!M&&d&&a.jsx(jLt,{type:A,onChange:T}),k&&k.name!=="default"&&a.jsx(k.inspectorControls,{layout:v,onChange:E,layoutBlockSupport:u,name:n,clientId:o}),S&&C&&a.jsx(S.inspectorControls,{layout:v,onChange:E,layoutBlockSupport:u,name:n,clientId:o})]})}),!M&&k&&a.jsx(k.toolBarControls,{layout:v,onChange:E,layoutBlockSupport:l,name:n,clientId:o})]})}const PLt={shareWithChildBlocks:!0,edit:LLt,attributeKeys:["layout"],hasSupport(e){return kI(e)}};function jLt({type:e,onChange:t}){return a.jsx(Do,{__next40pxDefaultSize:!0,isBlock:!0,label:m("Layout type"),__nextHasNoMarginBottom:!0,hideLabelFromVision:!0,isAdaptiveWidth:!0,value:e,onChange:t,children:hvt().map(({name:n,label:o})=>a.jsx(Kn,{value:n,label:o},n))})}function ILt(e){var t;return"type"in((t=e.attributes?.layout)!==null&&t!==void 0?t:{})||kI(e)&&(e.attributes={...e.attributes,layout:{type:"object"}}),e}function DLt({block:e,props:t,blockGapSupport:n,layoutClasses:o}){const{name:r,attributes:s}=t,i=vt(e),{layout:c}=s,{default:l}=An(r,_I)||{},u=c?.inherit||c?.contentSize||c?.wideSize?{...c,type:"constrained"}:c||l||{},d=`wp-container-${tN(r)}-is-layout-`,p=`.${d}${i}`,f=n!==null,h=Rf(u?.type||"default")?.getLayoutStyle?.({blockName:r,selector:p,layout:u,style:s?.style,hasBlockGapSupport:f}),g=oe({[`${d}${i}`]:!!h},o);return EO({css:h}),a.jsx(e,{...t,__unstableLayoutClassNames:g})}const FLt=Or(e=>t=>{const{clientId:n,name:o,attributes:r}=t,s=kI(o),i=D3e(r,o),c=G(l=>{if(!s)return;const{getSettings:u,getBlockSettings:d}=ct(l(Q)),{disableLayoutStyles:p}=u();if(p)return;const[f]=d(n,"spacing.blockGap");return{blockGapSupport:f}},[s,n]);return c?a.jsx(DLt,{block:e,props:t,layoutClasses:i,...c}):a.jsx(e,{...t,__unstableLayoutClassNames:s?i:void 0})},"withLayoutStyles");Bn("blocks.registerBlockType","core/layout/addAttribute",ILt);Bn("editor.BlockListBlock","core/editor/layout/with-layout-styles",FLt);function Rte(e,t){return Array.from({length:t},(n,o)=>e+o)}class bd{constructor({columnStart:t,rowStart:n,columnEnd:o,rowEnd:r,columnSpan:s,rowSpan:i}={}){this.columnStart=t??1,this.rowStart=n??1,s!==void 0?this.columnEnd=this.columnStart+s-1:this.columnEnd=o??this.columnStart,i!==void 0?this.rowEnd=this.rowStart+i-1:this.rowEnd=r??this.rowStart}get columnSpan(){return this.columnEnd-this.columnStart+1}get rowSpan(){return this.rowEnd-this.rowStart+1}contains(t,n){return t>=this.columnStart&&t<=this.columnEnd&&n>=this.rowStart&&n<=this.rowEnd}containsRect(t){return this.contains(t.columnStart,t.rowStart)&&this.contains(t.columnEnd,t.rowEnd)}intersectsRect(t){return this.columnStart<=t.columnEnd&&this.columnEnd>=t.columnStart&&this.rowStart<=t.rowEnd&&this.rowEnd>=t.rowStart}}function d1(e,t){return e.ownerDocument.defaultView.getComputedStyle(e).getPropertyValue(t)}function Tte(e,t){const n=[];for(const o of e.split(" ")){const r=n[n.length-1],s=r?r.end+t:0,i=s+parseFloat(o);n.push({start:s,end:i})}return n}function vv(e,t,n="start"){return e.reduce((o,r,s)=>Math.abs(r[n]-t)<Math.abs(e[o][n]-t)?s:o,0)}function pT(e){const t=d1(e,"grid-template-columns"),n=d1(e,"grid-template-rows"),o=d1(e,"border-top-width"),r=d1(e,"border-right-width"),s=d1(e,"border-bottom-width"),i=d1(e,"border-left-width"),c=d1(e,"padding-top"),l=d1(e,"padding-right"),u=d1(e,"padding-bottom"),d=d1(e,"padding-left"),p=t.split(" ").length,f=n.split(" ").length,b=p*f;return{numColumns:p,numRows:f,numItems:b,currentColor:d1(e,"color"),style:{gridTemplateColumns:t,gridTemplateRows:n,gap:d1(e,"gap"),paddingTop:`calc(${c} + ${o})`,paddingRight:`calc(${l} + ${r})`,paddingBottom:`calc(${u} + ${s})`,paddingLeft:`calc(${d} + ${i})`}}}function F3e({clientId:e,contentRef:t,parentLayout:n}){const o=G(i=>i(Q).getSettings().isDistractionFree,[]),r=Wi(e);if(o||!r)return null;const s=n?.isManualPlacement&&window.__experimentalEnableGridInteractivity;return a.jsx($Lt,{gridClientId:e,gridElement:r,isManualGrid:s,ref:t})}const $Lt=x.forwardRef(({gridClientId:e,gridElement:t,isManualGrid:n},o)=>{const[r,s]=x.useState(()=>pT(t)),[i,c]=x.useState(!1);return x.useEffect(()=>{const l=[];for(const d of[t,...t.children]){const p=new window.ResizeObserver(()=>{s(pT(t))});p.observe(d),l.push(p)}const u=new window.MutationObserver(()=>{s(pT(t))});return u.observe(t,{attributeFilter:["style","class"],childList:!0,subtree:!0}),l.push(u),()=>{for(const d of l)d.disconnect()}},[t]),x.useEffect(()=>{function l(){c(!0)}function u(){c(!1)}return document.addEventListener("drag",l),document.addEventListener("dragend",u),()=>{document.removeEventListener("drag",l),document.removeEventListener("dragend",u)}},[]),a.jsx(wm,{className:oe("block-editor-grid-visualizer",{"is-dropping-allowed":i}),clientId:e,__unstablePopoverSlot:"__unstable-block-tools-after",children:a.jsx("div",{ref:o,className:"block-editor-grid-visualizer__grid",style:r.style,children:n?a.jsx(VLt,{gridClientId:e,gridInfo:r}):Array.from({length:r.numItems},(l,u)=>a.jsx($3e,{color:r.currentColor},u))})})});function VLt({gridClientId:e,gridInfo:t}){const[n,o]=x.useState(null),r=G(i=>{const{getBlockOrder:c,getBlockStyles:l}=ct(i(Q)),u=c(e);return l(u)},[e]),s=x.useMemo(()=>{const i=[];for(const l of Object.values(r)){var c;const{columnStart:u,rowStart:d,columnSpan:p=1,rowSpan:f=1}=(c=l?.layout)!==null&&c!==void 0?c:{};!u||!d||i.push(new bd({columnStart:u,rowStart:d,columnSpan:p,rowSpan:f}))}return i},[r]);return Rte(1,t.numRows).map(i=>Rte(1,t.numColumns).map(c=>{var l;const u=s.some(p=>p.contains(c,i)),d=(l=n?.contains(c,i))!==null&&l!==void 0?l:!1;return a.jsx($3e,{color:t.currentColor,className:d&&"is-highlighted",children:u?a.jsx(HLt,{column:c,row:i,gridClientId:e,gridInfo:t,setHighlightedRect:o}):a.jsx(ULt,{column:c,row:i,gridClientId:e,gridInfo:t,setHighlightedRect:o})},`${i}-${c}`)}))}function $3e({color:e,children:t,className:n}){return a.jsx("div",{className:oe("block-editor-grid-visualizer__cell",n),style:{boxShadow:`inset 0 0 0 1px color-mix(in srgb, ${e} 20%, #0000)`,color:e},children:t})}function V3e(e,t,n,o,r){const{getBlockAttributes:s,getBlockRootClientId:i,canInsertBlockType:c,getBlockName:l}=G(Q),{updateBlockAttributes:u,moveBlocksToPosition:d,__unstableMarkNextChangeAsNotPersistent:p}=Oe(Q),f=Y_(n,o.numColumns);return XLt({validateDrag(b){const h=l(b);if(!c(h,n))return!1;const g=s(b),z=new bd({columnStart:e,rowStart:t,columnSpan:g.style?.layout?.columnSpan,rowSpan:g.style?.layout?.rowSpan});return new bd({columnSpan:o.numColumns,rowSpan:o.numRows}).containsRect(z)},onDragEnter(b){const h=s(b);r(new bd({columnStart:e,rowStart:t,columnSpan:h.style?.layout?.columnSpan,rowSpan:h.style?.layout?.rowSpan}))},onDragLeave(){r(b=>b?.columnStart===e&&b?.rowStart===t?null:b)},onDrop(b){r(null);const h=s(b);u(b,{style:{...h.style,layout:{...h.style?.layout,columnStart:e,rowStart:t}}}),p(),d([b],i(b),n,f(e,t))}})}function HLt({column:e,row:t,gridClientId:n,gridInfo:o,setHighlightedRect:r}){return a.jsx("div",{className:"block-editor-grid-visualizer__drop-zone",ref:V3e(e,t,n,o,r)})}function ULt({column:e,row:t,gridClientId:n,gridInfo:o,setHighlightedRect:r}){const{updateBlockAttributes:s,moveBlocksToPosition:i,__unstableMarkNextChangeAsNotPersistent:c}=Oe(Q),l=Y_(n,o.numColumns);return a.jsx(j_,{rootClientId:n,className:"block-editor-grid-visualizer__appender",ref:V3e(e,t,n,o,r),style:{color:o.currentColor},onSelect:u=>{u&&(s(u.clientId,{style:{layout:{columnStart:e,rowStart:t}}}),c(),i([u.clientId],n,n,l(e,t)))}})}function XLt({validateDrag:e,onDragEnter:t,onDragLeave:n,onDrop:o}){const{getDraggedBlockClientIds:r}=G(Q);return W5({onDragEnter(){const[s]=r();s&&e(s)&&t(s)},onDragLeave(){n()},onDrop(){const[s]=r();s&&e(s)&&o(s)}})}function GLt({clientId:e,bounds:t,onChange:n,parentLayout:o}){const r=Wi(e),s=r?.parentElement,{isManualPlacement:i}=o;return!r||!s?null:a.jsx(KLt,{clientId:e,bounds:t,blockElement:r,rootBlockElement:s,onChange:n,isManualGrid:i&&window.__experimentalEnableGridInteractivity})}function KLt({clientId:e,bounds:t,blockElement:n,rootBlockElement:o,onChange:r,isManualGrid:s}){const[i,c]=x.useState(null),[l,u]=x.useState({top:!1,bottom:!1,left:!1,right:!1});x.useEffect(()=>{const b=new window.ResizeObserver(()=>{const h=n.getBoundingClientRect(),g=o.getBoundingClientRect();u({top:h.top>g.top,bottom:h.bottom<g.bottom,left:h.left>g.left,right:h.right<g.right})});return b.observe(n),()=>b.disconnect()},[n,o]);const d={right:"left",left:"right"},p={top:"flex-end",bottom:"flex-start"},f={display:"flex",justifyContent:"center",alignItems:"center",...d[i]&&{justifyContent:d[i]},...p[i]&&{alignItems:p[i]}};return a.jsx(wm,{className:"block-editor-grid-item-resizer",clientId:e,__unstablePopoverSlot:"__unstable-block-tools-after",additionalStyles:f,children:a.jsx(Ca,{className:"block-editor-grid-item-resizer__box",size:{width:"100%",height:"100%"},enable:{bottom:l.bottom,bottomLeft:!1,bottomRight:!1,left:l.left,right:l.right,top:l.top,topLeft:!1,topRight:!1},bounds:t,boundsByDirection:!0,onPointerDown:({target:b,pointerId:h})=>{b.setPointerCapture(h)},onResizeStart:(b,h)=>{c(h)},onResizeStop:(b,h,g)=>{const z=parseFloat(d1(o,"column-gap")),A=parseFloat(d1(o,"row-gap")),_=Tte(d1(o,"grid-template-columns"),z),v=Tte(d1(o,"grid-template-rows"),A),M=new window.DOMRect(n.offsetLeft+g.offsetLeft,n.offsetTop+g.offsetTop,g.offsetWidth,g.offsetHeight),y=vv(_,M.left)+1,k=vv(v,M.top)+1,S=vv(_,M.right,"end")+1,C=vv(v,M.bottom,"end")+1;r({columnSpan:S-y+1,rowSpan:C-k+1,columnStart:s?y:void 0,rowStart:s?k:void 0})}})})}function YLt({layout:e,parentLayout:t,onChange:n,gridClientId:o,blockClientId:r}){var s,i,c,l;const{moveBlocksToPosition:u,__unstableMarkNextChangeAsNotPersistent:d}=Oe(Q),p=(s=e?.columnStart)!==null&&s!==void 0?s:1,f=(i=e?.rowStart)!==null&&i!==void 0?i:1,b=(c=e?.columnSpan)!==null&&c!==void 0?c:1,h=(l=e?.rowSpan)!==null&&l!==void 0?l:1,g=p+b-1,z=f+h-1,A=t?.columnCount,_=t?.rowCount,v=Y_(o,A);return a.jsx(bt,{group:"parent",children:a.jsxs(Wn,{className:"block-editor-grid-item-mover__move-button-container",children:[a.jsx("div",{className:"block-editor-grid-item-mover__move-horizontal-button-container is-left",children:a.jsx(fM,{icon:jt()?ga:Pl,label:m("Move left"),description:m("Move left"),isDisabled:p<=1,onClick:()=>{n({columnStart:p-1}),d(),u([r],o,o,v(p-1,f))}})}),a.jsxs("div",{className:"block-editor-grid-item-mover__move-vertical-button-container",children:[a.jsx(fM,{className:"is-up-button",icon:Nw,label:m("Move up"),description:m("Move up"),isDisabled:f<=1,onClick:()=>{n({rowStart:f-1}),d(),u([r],o,o,v(p,f-1))}}),a.jsx(fM,{className:"is-down-button",icon:nu,label:m("Move down"),description:m("Move down"),isDisabled:_&&z>=_,onClick:()=>{n({rowStart:f+1}),d(),u([r],o,o,v(p,f+1))}})]}),a.jsx("div",{className:"block-editor-grid-item-mover__move-horizontal-button-container is-right",children:a.jsx(fM,{icon:jt()?Pl:ga,label:m("Move right"),description:m("Move right"),isDisabled:A&&g>=A,onClick:()=>{n({columnStart:p+1}),d(),u([r],o,o,v(p+1,f))}})})]})})}function fM({className:e,icon:t,label:n,isDisabled:o,onClick:r,description:s}){const c=`block-editor-grid-item-mover-button__description-${vt(fM)}`;return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{className:oe("block-editor-grid-item-mover-button",e),icon:t,label:n,"aria-describedby":c,onClick:o?null:r,disabled:o,accessibleWhenDisabled:!0}),a.jsx(qn,{id:c,children:s})]})}function ZLt({clientId:e}){const{gridLayout:t,blockOrder:n,selectedBlockLayout:o}=G(f=>{var b;const{getBlockAttributes:h,getBlockOrder:g}=f(Q),z=f(Q).getSelectedBlock();return{gridLayout:(b=h(e).layout)!==null&&b!==void 0?b:{},blockOrder:g(e),selectedBlockLayout:z?.attributes.style?.layout}},[e]),{getBlockAttributes:r,getBlockRootClientId:s}=G(Q),{updateBlockAttributes:i,__unstableMarkNextChangeAsNotPersistent:c}=Oe(Q),l=x.useMemo(()=>o?new bd(o):null,[o]),u=Fr(l),d=Fr(t.isManualPlacement),p=Fr(n);x.useEffect(()=>{const f={};if(t.isManualPlacement){const A=[];for(const v of n){var b;const{columnStart:M,rowStart:y,columnSpan:k=1,rowSpan:S=1}=(b=r(v).style?.layout)!==null&&b!==void 0?b:{};!M||!y||A.push(new bd({columnStart:M,rowStart:y,columnSpan:k,rowSpan:S}))}for(const v of n){var h;const M=r(v),{columnStart:y,rowStart:k,columnSpan:S=1,rowSpan:C=1}=(h=M.style?.layout)!==null&&h!==void 0?h:{};if(y&&k)continue;const[R,T]=QLt(A,t.columnCount,S,C,u?.columnEnd,u?.rowEnd);A.push(new bd({columnStart:R,rowStart:T,columnSpan:S,rowSpan:C})),f[v]={style:{...M.style,layout:{...M.style?.layout,columnStart:R,rowStart:T}}}}const _=Math.max(...A.map(v=>v.rowEnd));(!t.rowCount||t.rowCount<_)&&(f[e]={layout:{...t,rowCount:_}});for(const v of p??[])if(!n.includes(v)){var g;const M=s(v);if(M===null||r(M)?.layout?.type==="grid")continue;const k=r(v),{columnStart:S,rowStart:C,columnSpan:R,rowSpan:T,...E}=(g=k.style?.layout)!==null&&g!==void 0?g:{};if(S||C||R||T){const B=Object.keys(E).length===0;f[v]=gn(k,["style","layout"],B?void 0:E)}}}else{if(d===!0)for(const A of n){var z;const _=r(A),{columnStart:v,rowStart:M,...y}=(z=_.style?.layout)!==null&&z!==void 0?z:{};if(v||M){const k=Object.keys(y).length===0;f[A]=gn(_,["style","layout"],k?void 0:y)}}t.rowCount&&(f[e]={layout:{...t,rowCount:void 0}})}Object.keys(f).length&&(c(),i(Object.keys(f),f,!0))},[e,t,p,n,u,d,c,r,s,i])}function QLt(e,t,n,o,r=1,s=1){for(let i=s;;i++)for(let c=i===s?r:1;c<=t;c++){const l=new bd({columnStart:c,rowStart:i,columnSpan:n,rowSpan:o});if(!e.some(u=>u.intersectsRect(l)))return[c,i]}}const JLt={};function ePt({style:e}){var t;const n=G(z=>!z(Q).getSettings().disableLayoutStyles),o=(t=e?.layout)!==null&&t!==void 0?t:{},{selfStretch:r,flexSize:s,columnStart:i,rowStart:c,columnSpan:l,rowSpan:u}=o,d=w_()||{},{columnCount:p,minimumColumnWidth:f}=d,b=vt(JLt),h=`.wp-container-content-${b}`;let g="";if(n&&(r==="fixed"&&s?g=`${h} { +`?p.batch(()=>{const g={...i};g.start=g.end-2,c(pa(g)),d()}):l||c(E0(i,` +`))}const{defaultView:r}=t.ownerDocument;return r.addEventListener("keydown",o),t.addEventListener("keydown",n),()=>{r.removeEventListener("keydown",o),t.removeEventListener("keydown",n)}},vNt=e=>t=>{function n(){const{registry:o}=e.current;if(!o.select(Q).isMultiSelecting())return;const r=t.parentElement.closest('[contenteditable="true"]');r&&r.focus()}return t.addEventListener("focus",n),()=>{t.removeEventListener("focus",n)}},xNt=[dNt,fNt,bNt,hNt,mNt,gNt,MNt,ONt,yNt,ANt,vNt];function wNt(e){const t=x.useRef(e);x.useInsertionEffect(()=>{t.current=e});const n=x.useMemo(()=>xNt.map(o=>o(t)),[t]);return Mn(o=>{if(!e.isSelected)return;const r=n.map(s=>s(o));return()=>{r.forEach(s=>s())}},[n,e.isSelected])}const _Nt={},r3e=Symbol("usesContext");function kNt({onChange:e,onFocus:t,value:n,forwardedRef:o,settings:r}){const{name:s,edit:i,[r3e]:c}=r,l=x.useContext(Cf),u=x.useMemo(()=>c?Object.fromEntries(Object.entries(l).filter(([h])=>c.includes(h))):_Nt,[c,l]);if(!i)return null;const d=eB(n,s),p=d!==void 0,f=Bqe(n),b=f!==void 0&&f.type===s;return a.jsx(i,{isActive:p,activeAttributes:p?d.attributes||{}:{},isObjectActive:b,activeObjectAttributes:b?f.attributes||{}:{},value:n,onChange:e,onFocus:t,contentRef:o,context:u},s)}function SNt({formatTypes:e,...t}){return e.map(n=>x.createElement(kNt,{settings:n,...t,key:n.name}))}function s3e(e,t){if(Ie.isEmpty(e)){const n=o3e(t);return n?`<${n}></${n}>`:""}return Array.isArray(e)?(Ke("wp.blockEditor.RichText value prop as children type",{since:"6.1",version:"6.3",alternative:"value prop as string",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),t8.toHTML(e)):typeof e=="string"?e:e.toHTMLString()}function hI({value:e,tagName:t,multiline:n,format:o,...r}){return e=a.jsx(i0,{children:s3e(e,n)}),t?a.jsx(t,{...r,children:e}):e}function CNt({children:e,identifier:t,tagName:n="div",value:o="",onChange:r,multiline:s,...i},c){Ke("wp.blockEditor.RichText multiline prop",{since:"6.1",version:"6.3",alternative:"nested blocks (InnerBlocks)",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/nested-blocks-inner-blocks/"});const{clientId:l}=j0(),{getSelectionStart:u,getSelectionEnd:d}=G(Q),{selectionChange:p}=Oe(Q),f=o3e(s);o=o||`<${f}></${f}>`;const h=`</${f}>${o}<${f}>`.split(`</${f}><${f}>`);h.shift(),h.pop();function g(z){r(`<${f}>${z.join(`</${f}><${f}>`)}</${f}>`)}return a.jsx(n,{ref:c,children:h.map((z,A)=>a.jsx(gI,{identifier:`${t}-${A}`,tagName:f,value:z,onChange:_=>{const v=h.slice();v[A]=_,g(v)},isSelected:void 0,onKeyDown:_=>{if(_.keyCode!==Gr)return;_.preventDefault();const{offset:v}=u(),{offset:M}=d();if(typeof v!="number"||typeof M!="number")return;const y=eo({html:z});y.start=v,y.end=M;const k=tB(y).map(C=>T0({value:C})),S=h.slice();S.splice(A,1,...k),g(S),p(l,`${t}-${A+1}`,0,0)},onMerge:_=>{const v=h.slice();let M=0;if(_){if(!v[A+1])return;v.splice(A,2,v[A]+v[A+1]),M=v[A].length-1}else{if(!v[A-1])return;v.splice(A-1,2,v[A-1]+v[A]),M=v[A-1].length-1}g(v),p(l,`${t}-${A-(_?0:1)}`,M,M)},...i},A))})}const qNt=x.forwardRef(CNt);function RNt(e){return x.forwardRef((t,n)=>{let o=t.value,r=t.onChange;Array.isArray(o)&&(Ke("wp.blockEditor.RichText value prop as children type",{since:"6.1",version:"6.3",alternative:"value prop as string",link:"https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/introducing-attributes-and-editable-fields/"}),o=t8.toHTML(t.value),r=i=>t.onChange(t8.fromDOM(dl(document,i).childNodes)));const s=t.multiline?qNt:e;return a.jsx(s,{...t,value:o,onChange:r,ref:n})})}function Xd({character:e,type:t,onUse:n}){const o=x.useContext(i3e),r=x.useRef();return r.current=n,x.useEffect(()=>{function s(i){lc[t](i,e)&&(r.current(),i.preventDefault())}return o.current.add(s),()=>{o.current.delete(s)}},[e,t]),null}function Zs({name:e,shortcutType:t,shortcutCharacter:n,...o}){let r,s="RichText.ToolbarControls";return e&&(s+=`.${e}`),t&&n&&(r=j1[t](n)),a.jsx(um,{name:s,children:a.jsx(Vt,{...o,shortcut:r})})}function mI({inputType:e,onInput:t}){const n=x.useContext(a3e),o=x.useRef();return o.current=t,x.useEffect(()=>{function r(s){s.inputType===e&&(o.current(),s.preventDefault())}return n.current.add(r),()=>{n.current.delete(r)}},[e]),null}const i3e=x.createContext(),a3e=x.createContext(),vte=Symbol("instanceId");function c3e(e){const{__unstableMobileNoFocusOnMount:t,deleteEnter:n,placeholderTextColor:o,textAlign:r,selectionColor:s,tagsToEliminate:i,disableEditingMenu:c,fontSize:l,fontFamily:u,fontWeight:d,fontStyle:p,minWidth:f,maxWidth:b,disableSuggestions:h,disableAutocorrection:g,...z}=e;return z}function gI({children:e,tagName:t="div",value:n="",onChange:o,isSelected:r,multiline:s,inlineToolbar:i,wrapperClassName:c,autocompleters:l,onReplace:u,placeholder:d,allowedFormats:p,withoutInteractiveFormatting:f,onRemove:b,onMerge:h,onSplit:g,__unstableOnSplitAtEnd:z,__unstableOnSplitAtDoubleLineEnd:A,identifier:_,preserveWhiteSpace:v,__unstablePastePlainText:M,__unstableEmbedURLOnPaste:y,__unstableDisableFormats:k,disableLineBreaks:S,__unstableAllowPrefixTransformations:C,readOnly:R,...T},E){T=c3e(T),g&&Ke("wp.blockEditor.RichText onSplit prop",{since:"6.4",alternative:'block.json support key: "splitting"'});const B=vt(gI),N=x.useRef(),j=j0(),{clientId:I,isSelected:P,name:$}=j,F=j[ZB],X=x.useContext(Cf),Z=Fn(),V=fe=>{if(!P)return{isSelected:!1};const{getSelectionStart:Re,getSelectionEnd:be}=fe(Q),ze=Re(),nt=be();let Mt;return r===void 0?Mt=ze.clientId===I&&nt.clientId===I&&(_?ze.attributeKey===_:ze[vte]===B):r&&(Mt=ze.clientId===I),{selectionStart:Mt?ze.offset:void 0,selectionEnd:Mt?nt.offset:void 0,isSelected:Mt}},{selectionStart:ee,selectionEnd:te,isSelected:J}=G(V,[I,_,B,r,P]),{disableBoundBlock:ue,bindingsPlaceholder:ce,bindingsLabel:me}=G(fe=>{var Re;if(!F?.[_]||!l7($))return{};const be=F[_],ze=vl(be.source),nt={};if(ze?.usesContext?.length)for(const rr of ze.usesContext)nt[rr]=X[rr];const Mt=!ze?.canUserEditValue?.({select:fe,context:nt,args:be.args});if(n.length>0)return{disableBoundBlock:Mt,bindingsPlaceholder:null,bindingsLabel:null};const{getBlockAttributes:ot}=fe(Q),Ue=ot(I),fn=(Re=ze?.getFieldsList?.({select:fe,context:nt})?.[be?.args?.key]?.label)!==null&&Re!==void 0?Re:ze?.label,Ln=Mt?fn:xe(m("Add %s"),fn),Mo=Mt?be?.args?.key||ze?.label:xe(m("Empty %s; start writing to edit its value"),be?.args?.key||ze?.label);return{disableBoundBlock:Mt,bindingsPlaceholder:Ue?.placeholder||Ln,bindingsLabel:Mo}},[F,_,$,n,I,X]),de=R||ue,{getSelectionStart:Ae,getSelectionEnd:ye,getBlockRootClientId:Ne}=G(Q),{selectionChange:je}=Oe(Q),ie=bI({allowedFormats:p,disableFormats:k}),we=!ie||ie.length>0,re=x.useCallback((fe,Re)=>{const be={},ze=fe===void 0&&Re===void 0,nt={clientId:I,[_?"attributeKey":vte]:_||B};if(typeof fe=="number"||ze){if(Re===void 0&&Ne(I)!==Ne(ye().clientId))return;be.start={...nt,offset:fe}}if(typeof Re=="number"||ze){if(fe===void 0&&Ne(I)!==Ne(Ae().clientId))return;be.end={...nt,offset:Re}}je(be)},[I,Ne,ye,Ae,_,B,je]),{formatTypes:pe,prepareHandlers:ke,valueHandlers:Se,changeHandlers:se,dependencies:L}=lNt({clientId:I,identifier:_,withoutInteractiveFormatting:f,allowedFormats:ie});function U(fe){return Se.reduce((Re,be)=>be(Re,fe.text),fe.formats)}function ne(fe){return pe.forEach(Re=>{Re.__experimentalCreatePrepareEditableTree&&(fe=Yd(fe,Re.name,0,fe.text.length))}),fe.formats}function ve(fe){return ke.reduce((Re,be)=>be(Re,fe.text),fe.formats)}const{value:qe,getValue:Pe,onChange:rt,ref:qt}=o1e({value:n,onChange(fe,{__unstableFormats:Re,__unstableText:be}){o(fe),Object.values(se).forEach(ze=>{ze(Re,be)})},selectionStart:ee,selectionEnd:te,onSelectionChange:re,placeholder:ce||d,__unstableIsSelected:J,__unstableDisableFormats:k,preserveWhiteSpace:v,__unstableDependencies:[...L,t],__unstableAfterParse:U,__unstableBeforeSerialize:ne,__unstableAddInvisibleFormats:ve}),wt=Zyt({onReplace:u,completers:l,record:qe,onChange:rt});sNt({html:n,value:qe});const Bt=x.useRef(new Set),ae=x.useRef(new Set);function H(){N.current?.focus()}const Y=t;return a.jsxs(a.Fragment,{children:[J&&a.jsx(i3e.Provider,{value:Bt,children:a.jsx(a3e.Provider,{value:ae,children:a.jsxs(Io.__unstableSlotNameProvider,{value:"__unstable-block-tools-after",children:[e&&e({value:qe,onChange:rt,onFocus:H}),a.jsx(SNt,{value:qe,onChange:rt,onFocus:H,formatTypes:pe,forwardedRef:N})]})})}),J&&we&&a.jsx(rNt,{inline:i,editableContentElement:N.current}),a.jsx(Y,{role:"textbox","aria-multiline":!S,"aria-readonly":de,...T,draggable:void 0,"aria-label":me||T["aria-label"]||d,...wt,ref:xn([qt,E,wt.ref,T.ref,wNt({registry:Z,getValue:Pe,onChange:rt,__unstableAllowPrefixTransformations:C,formatTypes:pe,onReplace:u,selectionChange:je,isSelected:J,disableFormats:k,value:qe,tagName:t,onSplit:g,__unstableEmbedURLOnPaste:y,pastePlainText:M,onMerge:h,onRemove:b,removeEditorOnlyFormats:ne,disableLineBreaks:S,onSplitAtEnd:z,onSplitAtDoubleLineEnd:A,keyboardShortcuts:Bt,inputEvents:ae}),N]),contentEditable:!de,suppressContentEditableWarning:!0,className:oe("block-editor-rich-text__editable",T.className,"rich-text"),tabIndex:T.tabIndex===0&&!de?null:T.tabIndex,"data-wp-block-attribute-key":_})]})}const tk=RNt(x.forwardRef(gI));tk.Content=hI;tk.isEmpty=e=>!e||e.length===0;const Ie=x.forwardRef((e,t)=>{if(j0()[iae]){const{children:r,tagName:s="div",value:i,onChange:c,isSelected:l,multiline:u,inlineToolbar:d,wrapperClassName:p,autocompleters:f,onReplace:b,placeholder:h,allowedFormats:g,withoutInteractiveFormatting:z,onRemove:A,onMerge:_,onSplit:v,__unstableOnSplitAtEnd:M,__unstableOnSplitAtDoubleLineEnd:y,identifier:k,preserveWhiteSpace:S,__unstablePastePlainText:C,__unstableEmbedURLOnPaste:R,__unstableDisableFormats:T,disableLineBreaks:E,__unstableAllowPrefixTransformations:B,readOnly:N,...j}=c3e(e);return a.jsx(s,{...j,dangerouslySetInnerHTML:{__html:s3e(i,u)}})}return a.jsx(tk,{ref:t,...e,readOnly:!1})});Ie.Content=hI;Ie.isEmpty=e=>!e||e.length===0;const l3e=x.forwardRef((e,t)=>a.jsx(Ie,{ref:t,...e,__unstableDisableFormats:!0}));l3e.Content=({value:e="",tagName:t="div",...n})=>a.jsx(t,{...n,children:e});const Gd=x.forwardRef(({__experimentalVersion:e,...t},n)=>{if(e===2)return a.jsx(l3e,{ref:n,...t});const{className:o,onChange:r,...s}=t;return a.jsx(m7,{ref:n,className:oe("block-editor-plain-text",o),onChange:i=>r(i.target.value),...s})}),xte=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M9.4 20.5L5.2 3.8l14.6 9-2 .3c-.2 0-.4.1-.7.1-.9.2-1.6.3-2.2.5-.8.3-1.4.5-1.8.8-.4.3-.8.8-1.3 1.5-.4.5-.8 1.2-1.2 2l-.3.6-.9 1.9zM7.6 7.1l2.4 9.3c.2-.4.5-.8.7-1.1.6-.8 1.1-1.4 1.6-1.8.5-.4 1.3-.8 2.2-1.1l1.2-.3-8.1-5z"})});function TNt(e,t){const n=G(r=>r(Q).__unstableGetEditorMode(),[]),{__unstableSetEditorMode:o}=Oe(Q);return a.jsx(so,{renderToggle:({isOpen:r,onToggle:s})=>a.jsx(Ce,{size:"compact",...e,ref:t,icon:n==="navigation"?Nd:xte,"aria-expanded":r,"aria-haspopup":"true",onClick:s,label:m("Tools")}),popoverProps:{placement:"bottom-start"},renderContent:()=>a.jsxs(a.Fragment,{children:[a.jsx(pm,{className:"block-editor-tool-selector__menu",role:"menu","aria-label":m("Tools"),children:a.jsx(kf,{value:n==="navigation"?"navigation":"edit",onSelect:r=>{o(r)},choices:[{value:"navigation",label:a.jsxs(a.Fragment,{children:[a.jsx(wn,{icon:Nd}),m("Write")]}),info:m("Focus on content."),"aria-label":m("Write")},{value:"edit",label:a.jsxs(a.Fragment,{children:[xte,m("Design")]}),info:m("Edit layout and styles."),"aria-label":m("Design")}]})}),a.jsx("div",{className:"block-editor-tool-selector__help",children:m("Tools provide different sets of interactions for blocks. Toggle between simplified content tools (Write) and advanced visual editing tools (Design).")})]})})}const ENt=x.forwardRef(TNt),lT="none",wte="custom",_te="media",kte="attachment",Ste=["noreferrer","noopener"],u3e=({linkDestination:e,onChangeUrl:t,url:n,mediaType:o="image",mediaUrl:r,mediaLink:s,linkTarget:i,linkClass:c,rel:l,showLightboxSetting:u,lightboxEnabled:d,onSetLightbox:p,resetLightbox:f})=>{const[b,h]=x.useState(!1),[g,z]=x.useState(null),A=()=>{h(!0)},[_,v]=x.useState(!1),[M,y]=x.useState(null),k=x.useRef(null),S=x.useRef();x.useEffect(()=>{if(!S.current)return;(Xr.focusable.find(S.current)[0]||S.current).focus()},[_,n,d]);const C=()=>{(e===_te||e===kte)&&y(""),v(!0)},R=()=>{v(!1)},T=()=>{y(null),R(),h(!1)},E=ce=>{const me=ce?"_blank":void 0;let de;if(me){const Ae=(l??"").split(" ");Ste.forEach(ye=>{Ae.includes(ye)||Ae.push(ye)}),de=Ae.join(" ")}else{const Ae=(l??"").split(" ").filter(ye=>Ste.includes(ye)===!1);de=Ae.length?Ae.join(" "):void 0}return{linkTarget:me,rel:de}},B=()=>ce=>{const me=k.current;me&&me.contains(ce.target)||(h(!1),y(null),R())},N=()=>ce=>{if(M){const me=I().find(de=>de.url===M)?.linkDestination||wte;t({href:M,linkDestination:me,lightbox:{enabled:!1}})}R(),y(null),ce.preventDefault()},j=()=>{t({linkDestination:lT,href:""})},I=()=>{const ce=[{linkDestination:_te,title:m("Link to image file"),url:o==="image"?r:void 0,icon:Oz}];return o==="image"&&s&&ce.push({linkDestination:kte,title:m("Link to attachment page"),url:o==="image"?s:void 0,icon:wa}),ce},P=ce=>{const me=I();let de;ce?de=(me.find(Ae=>Ae.url===ce)||{linkDestination:wte}).linkDestination:de=lT,t({linkDestination:de,href:ce})},$=ce=>{const me=E(ce);t(me)},F=ce=>{t({rel:ce})},X=ce=>{t({linkClass:ce})},Z=a.jsxs(dt,{spacing:"3",children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:$,checked:i==="_blank"}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:l??"",onChange:F}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link CSS class"),value:c||"",onChange:X})]}),V=M!==null?M:n,ee=!d||d&&!u,te=!V&&ee,J=(I().find(ce=>ce.linkDestination===e)||{}).title,ue=()=>{if(d&&u&&!n&&!_)return a.jsxs("div",{className:"block-editor-url-popover__expand-on-click",children:[a.jsx(wn,{icon:zz}),a.jsxs("div",{className:"text",children:[a.jsx("p",{children:m("Enlarge on click")}),a.jsx("p",{className:"description",children:m("Scales the image with a lightbox effect")})]}),a.jsx(Ce,{icon:Pl,label:m("Disable enlarge on click"),onClick:()=>{p?.(!1)},size:"compact"})]});if(!n||_)return a.jsx(lf.LinkEditor,{className:"block-editor-format-toolbar__link-container-content",value:V,onChangeInputValue:y,onSubmit:N(),autocompleteRef:k});if(n&&!_)return a.jsxs(a.Fragment,{children:[a.jsx(lf.LinkViewer,{className:"block-editor-format-toolbar__link-container-content",url:n,onEditLinkClick:C,urlLabel:J}),a.jsx(Ce,{icon:Pl,label:m("Remove link"),onClick:()=>{j(),f?.()},size:"compact"})]})};return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{icon:xa,className:"components-toolbar__control",label:m("Link"),"aria-expanded":b,onClick:A,ref:z,isActive:!!n||d&&u}),b&&a.jsx(lf,{ref:S,anchor:g,onFocusOutside:B(),onClose:T,renderSettings:ee?()=>Z:null,additionalControls:te&&a.jsxs(pm,{children:[I().map(ce=>a.jsx(Ct,{icon:ce.icon,iconPosition:"left",onClick:()=>{y(null),P(ce.url),R()},children:ce.title},ce.linkDestination)),u&&a.jsx(Ct,{className:"block-editor-url-popover__expand-on-click",icon:zz,info:m("Scale the image with a lightbox effect."),iconPosition:"left",onClick:()=>{y(null),t({linkDestination:lT,href:""}),p?.(!0),R()},children:m("Enlarge on click")},"expand-on-click")]}),offset:13,children:ue()})]})};function WNt(e){const[t,n]=x.useState(window.innerWidth);x.useEffect(()=>{if(e==="Desktop")return;const s=()=>n(window.innerWidth);return window.addEventListener("resize",s),()=>{window.removeEventListener("resize",s)}},[e]);const o=s=>{let i;switch(s){case"Tablet":i=780;break;case"Mobile":i=360;break;default:return null}return i<t?i:t};return(s=>{const i=s==="Mobile"?"768px":"1024px",c="40px",l="auto";switch(s){case"Tablet":case"Mobile":return{width:o(s),marginTop:c,marginBottom:c,marginLeft:l,marginRight:l,height:i,maxWidth:"100%"};default:return{marginLeft:l,marginRight:l}}})(e)}function NNt(){const e=G(o=>o(Q).getBlockSelectionStart(),[]),t=x.useRef();h7(e,t);const n=()=>{t.current?.focus()};return e?a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",className:"block-editor-skip-to-selected-block",onClick:n,children:m("Skip to the selected block")}):null}function BNt(){const e=G(t=>t(Q).getSelectedBlockCount(),[]);return a.jsxs(Ot,{justify:"flex-start",spacing:2,className:"block-editor-multi-selection-inspector__card",children:[a.jsx(Zn,{icon:H3,showColors:!0}),a.jsx("div",{className:"block-editor-multi-selection-inspector__card-title",children:xe(Dn("%d Block","%d Blocks",e),e)})]})}const d3e={name:"settings",title:m("Settings"),value:"settings",icon:ede},p3e={name:"styles",title:m("Styles"),value:"styles",icon:Fde},KW={name:"list",title:m("List View"),value:"list-view",icon:jP},f3e=()=>{const e=H0(F_.slotName);return!(e&&e.length)?null:a.jsx(Qt,{className:"block-editor-block-inspector__advanced",title:m("Advanced"),initialOpen:!1,children:a.jsx(et.Slot,{group:"advanced"})})},LNt=()=>{const[e,t]=x.useState(),{multiSelectedBlocks:n}=G(o=>{const{getBlocksByClientId:r,getSelectedBlockClientIds:s}=o(Q),i=s();return{multiSelectedBlocks:r(i)}},[]);return x.useLayoutEffect(()=>{e===void 0&&t(n.some(({attributes:o})=>!!o?.style?.position?.type))},[e,n,t]),a.jsx(Qt,{className:"block-editor-block-inspector__position",title:m("Position"),initialOpen:e??!1,children:a.jsx(et.Slot,{group:"position"})})},b3e=()=>{const e=H0(I_.position.name);return!(e&&e.length)?null:a.jsx(LNt,{})},PNt=({showAdvancedControls:e=!1})=>a.jsxs(a.Fragment,{children:[a.jsx(et.Slot,{}),a.jsx(b3e,{}),a.jsx(et.Slot,{group:"bindings"}),e&&a.jsx("div",{children:a.jsx(f3e,{})})]}),jNt=({blockName:e,clientId:t,hasBlockStyles:n})=>{const o=Z_({blockName:e});return a.jsxs(a.Fragment,{children:[n&&a.jsx("div",{children:a.jsx(Qt,{title:m("Styles"),children:a.jsx(Ize,{clientId:t})})}),a.jsx(et.Slot,{group:"color",label:m("Color"),className:"color-block-support-panel__inner-wrapper"}),a.jsx(et.Slot,{group:"background",label:m("Background image")}),a.jsx(et.Slot,{group:"filter"}),a.jsx(et.Slot,{group:"typography",label:m("Typography")}),a.jsx(et.Slot,{group:"dimensions",label:m("Dimensions")}),a.jsx(et.Slot,{group:"border",label:o}),a.jsx(et.Slot,{group:"styles"})]})},INt=["core/navigation"],h3e=e=>!INt.includes(e),{Tabs:Np}=ct(tr);function m3e({blockName:e,clientId:t,hasBlockStyles:n,tabs:o}){const r=G(i=>i(ht).get("core","showIconLabels"),[]),s=h3e(e)?void 0:KW.name;return a.jsx("div",{className:"block-editor-block-inspector__tabs",children:a.jsxs(Np,{defaultTabId:s,children:[a.jsx(Np.TabList,{children:o.map(i=>r?a.jsx(Np.Tab,{tabId:i.name,children:i.title},i.name):a.jsx(B0,{text:i.title,children:a.jsx(Np.Tab,{tabId:i.name,"aria-label":i.title,children:a.jsx(qo,{icon:i.icon})})},i.name))}),a.jsx(Np.TabPanel,{tabId:d3e.name,focusable:!1,children:a.jsx(PNt,{showAdvancedControls:!!e})}),a.jsx(Np.TabPanel,{tabId:p3e.name,focusable:!1,children:a.jsx(jNt,{blockName:e,clientId:t,hasBlockStyles:n})}),a.jsx(Np.TabPanel,{tabId:KW.name,focusable:!1,children:a.jsx(et.Slot,{group:"list"})})]},t)})}const DNt=[];function FNt(e,t={}){return t[e]!==void 0?t[e]:t.default!==void 0?t.default:!0}function g3e(e){const t=[],{bindings:n,border:o,color:r,default:s,dimensions:i,list:c,position:l,styles:u,typography:d,effects:p}=I_,f=h3e(e),b=H0(c.name),h=!f&&!!b&&b.length,z=[...H0(o.name)||[],...H0(r.name)||[],...H0(i.name)||[],...H0(u.name)||[],...H0(d.name)||[],...H0(p.name)||[]].length,A=[...H0(F_.slotName)||[],...H0(n.name)||[]],_=[...H0(s.name)||[],...H0(l.name)||[],...h&&z>1?A:[]];h&&t.push(KW),_.length&&t.push(d3e),z&&t.push(p3e);const v=G(y=>y(Q).getSettings().blockInspectorTabs,[]);return FNt(e,v)?t:DNt}function $Nt(e){return G(t=>{if(e){const n=t(Q).getSettings().blockInspectorAnimation,o=n?.animationParent,{getSelectedBlockClientId:r,getBlockParentsByBlockName:s}=t(Q),i=r();return!s(i,o,!0)[0]&&e.name!==o?null:n?.[e.name]}return null},[e])}function M3e({clientIds:e,onSelect:t}){return e.length?a.jsx(dt,{spacing:1,children:e.map(n=>a.jsx(VNt,{onSelect:t,clientId:n},n))}):null}function VNt({clientId:e,onSelect:t}){const n=ji(e),o=Fd({clientId:e,context:"list-view"}),{isSelected:r}=G(i=>{const{isBlockSelected:c,hasSelectedInnerBlock:l}=i(Q);return{isSelected:c(e)||l(e,!0)}},[e]),{selectBlock:s}=Oe(Q);return a.jsx(Ce,{__next40pxDefaultSize:!0,isPressed:r,onClick:async()=>{await s(e),t&&t(e)},children:a.jsxs(Yo,{children:[a.jsx(Tn,{children:a.jsx(Zn,{icon:n?.icon})}),a.jsx(eu,{style:{textAlign:"left"},children:a.jsx(zs,{children:o})})]})})}function HNt({clientId:e}){return a.jsx(Qt,{title:m("Styles"),children:a.jsx(Ize,{clientId:e})})}function z3e(){const{count:e,selectedBlockName:t,selectedBlockClientId:n,blockType:o,isSectionBlock:r}=G(d=>{const{getSelectedBlockClientId:p,getSelectedBlockCount:f,getBlockName:b,getParentSectionBlock:h,isSectionBlock:g}=ct(d(Q)),z=p(),A=h(z)||p(),_=A&&b(A),v=_&&on(_);return{count:f(),selectedBlockClientId:A,selectedBlockName:_,blockType:v,isSectionBlock:g(A)}},[]),s=g3e(o?.name),i=s?.length>1,c=$Nt(o),l=Z_({blockName:t});if(e>1&&!r)return a.jsxs("div",{className:"block-editor-block-inspector",children:[a.jsx(BNt,{}),i?a.jsx(m3e,{tabs:s}):a.jsxs(a.Fragment,{children:[a.jsx(et.Slot,{}),a.jsx(et.Slot,{group:"color",label:m("Color"),className:"color-block-support-panel__inner-wrapper"}),a.jsx(et.Slot,{group:"background",label:m("Background image")}),a.jsx(et.Slot,{group:"typography",label:m("Typography")}),a.jsx(et.Slot,{group:"dimensions",label:m("Dimensions")}),a.jsx(et.Slot,{group:"border",label:l}),a.jsx(et.Slot,{group:"styles"})]})]});const u=t===g3();return!o||!n||u?a.jsx("span",{className:"block-editor-block-inspector__no-blocks",children:m("No block selected.")}):a.jsx(UNt,{animate:c,wrapper:d=>a.jsx(XNt,{blockInspectorAnimationSettings:c,selectedBlockClientId:n,children:d}),children:a.jsx(GNt,{clientId:n,blockName:o.name,isSectionBlock:r})})}const UNt=({animate:e,wrapper:t,children:n})=>e?t(n):n,XNt=({blockInspectorAnimationSettings:e,selectedBlockClientId:t,children:n})=>{const o=e&&e.enterDirection==="leftToRight"?-50:50;return a.jsx(Rr.div,{animate:{x:0,opacity:1,transition:{ease:"easeInOut",duration:.14}},initial:{x:o,opacity:0},children:n},t)},GNt=({clientId:e,blockName:t,isSectionBlock:n})=>{const o=g3e(t),r=!n&&o?.length>1,s=G(u=>{const{getBlockStyles:d}=u(kt),p=d(t);return p&&p.length>0},[t]),i=ji(e),c=Z_({blockName:t}),l=G(u=>{if(!n)return;const{getClientIdsOfDescendants:d,getBlockName:p,getBlockEditingMode:f}=u(Q);return d(e).filter(b=>p(b)!=="core/list-item"&&f(b)==="contentOnly")},[n,e]);return a.jsxs("div",{className:"block-editor-block-inspector",children:[a.jsx(Mme,{...i,className:i.isSynced&&"is-synced"}),a.jsx(oWt,{blockClientId:e}),r&&a.jsx(m3e,{hasBlockStyles:s,clientId:e,blockName:t,tabs:o}),!r&&a.jsxs(a.Fragment,{children:[s&&a.jsx(HNt,{clientId:e}),l&&l?.length>0&&a.jsx(Qt,{title:m("Content"),children:a.jsx(M3e,{clientIds:l})}),!n&&a.jsxs(a.Fragment,{children:[a.jsx(et.Slot,{}),a.jsx(et.Slot,{group:"list"}),a.jsx(et.Slot,{group:"color",label:m("Color"),className:"color-block-support-panel__inner-wrapper"}),a.jsx(et.Slot,{group:"background",label:m("Background image")}),a.jsx(et.Slot,{group:"typography",label:m("Typography")}),a.jsx(et.Slot,{group:"dimensions",label:m("Dimensions")}),a.jsx(et.Slot,{group:"border",label:c}),a.jsx(et.Slot,{group:"styles"}),a.jsx(b3e,{}),a.jsx(et.Slot,{group:"bindings"}),a.jsx("div",{children:a.jsx(f3e,{})})]})]}),a.jsx(NNt,{},"back")]})},KNt=()=>{};function YNt({rootClientId:e,clientId:t,isAppender:n,showInserterHelpPanel:o,showMostUsedBlocks:r=!1,__experimentalInsertionIndex:s,__experimentalInitialTab:i,__experimentalInitialCategory:c,__experimentalFilterValue:l,onPatternCategorySelection:u,onSelect:d=KNt,shouldFocusBlock:p=!1,onClose:f},b){const{destinationRootClientId:h}=G(g=>{const{getBlockRootClientId:z}=g(Q);return{destinationRootClientId:e||z(t)||void 0}},[t,e]);return a.jsx(vge,{onSelect:d,rootClientId:h,clientId:t,isAppender:n,showInserterHelpPanel:o,showMostUsedBlocks:r,__experimentalInsertionIndex:s,__experimentalFilterValue:l,onPatternCategorySelection:u,__experimentalInitialTab:i,__experimentalInitialCategory:c,shouldFocusBlock:p,ref:b,onClose:f})}const O3e=x.forwardRef(YNt);function ZNt(e,t){return a.jsx(O3e,{...e,onPatternCategorySelection:void 0,ref:t})}x.forwardRef(ZNt);window.navigator.userAgent.indexOf("Trident");const QNt=new Set([cc,Ps,wi,_i]),JNt=.75;function eBt(){const e=G(t=>t(Q).hasSelectedBlock(),[]);return Mn(t=>{if(!e)return;const{ownerDocument:n}=t,{defaultView:o}=n;let r,s,i;function c(){r||(r=o.requestAnimationFrame(()=>{f(),r=null}))}function l(g){s&&o.cancelAnimationFrame(s),s=o.requestAnimationFrame(()=>{u(g),s=null})}function u({keyCode:g}){if(!b())return;const z=xE(o);if(!z)return;if(!i){i=z;return}if(QNt.has(g)){i=z;return}const A=z.top-i.top;if(A===0)return;const _=ps(t);if(!_)return;const v=_===n.body||_===n.documentElement,M=v?o.scrollY:_.scrollTop,y=v?0:_.getBoundingClientRect().top,k=v?i.top/o.innerHeight:(i.top-y)/(o.innerHeight-y);if(M===0&&k<JNt&&h()){i=z;return}const S=v?o.innerHeight:_.clientHeight;if(i.top+i.height>y+S||i.top<y){i=z;return}v?o.scrollBy(0,A):_.scrollTop+=A}function d(){n.addEventListener("selectionchange",p)}function p(){n.removeEventListener("selectionchange",p),f()}function f(){b()&&(i=xE(o))}function b(){return t.contains(n.activeElement)&&n.activeElement.isContentEditable}function h(){const g=t.querySelectorAll('[contenteditable="true"]');return g[g.length-1]===n.activeElement}return o.addEventListener("scroll",c,!0),o.addEventListener("resize",c,!0),t.addEventListener("keydown",l),t.addEventListener("keyup",u),t.addEventListener("mousedown",d),t.addEventListener("touchstart",d),()=>{o.removeEventListener("scroll",c,!0),o.removeEventListener("resize",c,!0),t.removeEventListener("keydown",l),t.removeEventListener("keyup",u),t.removeEventListener("mousedown",d),t.removeEventListener("touchstart",d),n.removeEventListener("selectionchange",p),o.cancelAnimationFrame(r),o.cancelAnimationFrame(s)}},[e])}const YW=x.createContext({});function tBt(e,t,n){const o={...e,[t]:e[t]?new Set(e[t]):new Set};return o[t].add(n),o}function TO({children:e,uniqueId:t,blockName:n=""}){const o=x.useContext(YW),{name:r}=j0();n=n||r;const s=x.useMemo(()=>tBt(o,n,t),[o,n,t]);return a.jsx(YW.Provider,{value:s,children:e})}function nk(e,t=""){const n=x.useContext(YW),{name:o}=j0();return t=t||o,!!n[t]?.has(e)}function Qs({title:e,help:t,actions:n=[],onClose:o}){return a.jsxs(dt,{className:"block-editor-inspector-popover-header",spacing:4,children:[a.jsxs(Ot,{alignment:"center",children:[a.jsx(_a,{className:"block-editor-inspector-popover-header__heading",level:2,size:13,children:e}),a.jsx(t1,{}),n.map(({label:r,icon:s,onClick:i})=>a.jsx(Ce,{size:"small",className:"block-editor-inspector-popover-header__action",label:r,icon:s,variant:!s&&"tertiary",onClick:i,children:!s&&r},r)),o&&a.jsx(Ce,{size:"small",className:"block-editor-inspector-popover-header__action",label:m("Close"),icon:rp,onClick:o})]}),t&&a.jsx(Sn,{children:t})]})}function nBt({onClose:e,onChange:t,showPopoverHeaderActions:n,isCompact:o,currentDate:r,...s},i){const c={startOfWeek:Sa().l10n.startOfWeek,onChange:t,currentDate:o?void 0:r,currentTime:o?r:void 0,...s},l=o?lO:lft;return a.jsxs("div",{ref:i,className:"block-editor-publish-date-time-picker",children:[a.jsx(Qs,{title:m("Publish"),actions:n?[{label:m("Now"),onClick:()=>t?.(null)}]:void 0,onClose:e}),a.jsx(l,{...c})]})}const y3e=x.forwardRef(nBt);function oBt(e,t){return a.jsx(y3e,{...e,showPopoverHeaderActions:!0,isCompact:!1,ref:t})}const rBt=x.forwardRef(oBt);function Jr(e){const t=j0(),{clientId:n=""}=t,{setBlockEditingMode:o,unsetBlockEditingMode:r}=Oe(Q),s=G(i=>n?null:i(Q).getBlockEditingMode(),[n]);return x.useEffect(()=>(e&&o(n,e),()=>{e&&r(n)}),[n,e,o,r]),n?t[sae]:s}const Ii=e=>{if(e===null||typeof e!="object"||Array.isArray(e))return e;const t=Object.entries(e).map(([n,o])=>[n,Ii(o)]).filter(([,n])=>n!==void 0);return t.length?Object.fromEntries(t):void 0};function A3e(e,t,n,o,r,s){if(Object.values(e??{}).every(l=>!l)||s.length===1&&n.innerBlocks.length===o.length)return n;let i=o[0]?.attributes;if(s.length>1&&o.length>1)if(o[r])i=o[r]?.attributes;else return n;let c=n;return Object.entries(e).forEach(([l,u])=>{u&&t[l].forEach(d=>{const p=fo(i,d);p&&(c={...c,attributes:gn(c.attributes,d,p)})})}),c}function W0(e,t,n){const r=An(e,t)?.__experimentalSkipSerialization;return Array.isArray(r)?r.includes(n):r}const tl=new WeakMap;function EO({id:e,css:t}){return Jz({id:e,css:t})}function Jz({id:e,css:t,assets:n,__unstableType:o,variation:r,clientId:s}={}){const{setStyleOverride:i,deleteStyleOverride:c}=ct(Oe(Q)),l=Fn(),u=x.useId();x.useEffect(()=>{if(!t&&!n)return;const d=e||u,p={id:e,css:t,assets:n,__unstableType:o,variation:r,clientId:s};return tl.get(l)||tl.set(l,[]),tl.get(l).push([d,p]),window.queueMicrotask(()=>{tl.get(l)?.length&&l.batch(()=>{tl.get(l).forEach(f=>{i(...f)}),tl.set(l,[])})}),()=>{tl.get(l)?.find(([b])=>b===d)?tl.set(l,tl.get(l).filter(([b])=>b!==d)):c(d)}},[e,t,s,n,o,u,i,c,l])}function WO(e,t){const[n,o,r,s,i,c,l,u,d,p,f,b,h,g,z,A,_,v,M,y,k,S,C,R,T,E,B,N,j,I,P,$,F,X,Z,V,ee,te,J,ue,ce,me,de,Ae,ye,Ne,je,ie,we,re,pe,ke,Se,se,L,U]=Un("background.backgroundImage","background.backgroundSize","typography.fontFamilies.custom","typography.fontFamilies.default","typography.fontFamilies.theme","typography.defaultFontSizes","typography.fontSizes.custom","typography.fontSizes.default","typography.fontSizes.theme","typography.customFontSize","typography.fontStyle","typography.fontWeight","typography.lineHeight","typography.textAlign","typography.textColumns","typography.textDecoration","typography.writingMode","typography.textTransform","typography.letterSpacing","spacing.padding","spacing.margin","spacing.blockGap","spacing.defaultSpacingSizes","spacing.customSpacingSize","spacing.spacingSizes.custom","spacing.spacingSizes.default","spacing.spacingSizes.theme","spacing.units","dimensions.aspectRatio","dimensions.minHeight","layout","border.color","border.radius","border.style","border.width","color.custom","color.palette.custom","color.customDuotone","color.palette.theme","color.palette.default","color.defaultPalette","color.defaultDuotone","color.duotone.custom","color.duotone.theme","color.duotone.default","color.gradients.custom","color.gradients.theme","color.gradients.default","color.defaultGradients","color.customGradient","color.background","color.link","color.text","color.heading","color.button","shadow"),ne=x.useMemo(()=>({background:{backgroundImage:n,backgroundSize:o},color:{palette:{custom:ee,theme:J,default:ue},gradients:{custom:Ne,theme:je,default:ie},duotone:{custom:de,theme:Ae,default:ye},defaultGradients:we,defaultPalette:ce,defaultDuotone:me,custom:V,customGradient:re,customDuotone:te,background:pe,link:ke,heading:se,button:L,text:Se},typography:{fontFamilies:{custom:r,default:s,theme:i},fontSizes:{custom:l,default:u,theme:d},customFontSize:p,defaultFontSizes:c,fontStyle:f,fontWeight:b,lineHeight:h,textAlign:g,textColumns:z,textDecoration:A,textTransform:v,letterSpacing:M,writingMode:_},spacing:{spacingSizes:{custom:T,default:E,theme:B},customSpacingSize:R,defaultSpacingSizes:C,padding:y,margin:k,blockGap:S,units:N},border:{color:$,radius:F,style:X,width:Z},dimensions:{aspectRatio:j,minHeight:I},layout:P,parentLayout:t,shadow:U}),[n,o,r,s,i,c,l,u,d,p,f,b,h,g,z,A,v,M,_,y,k,S,C,R,T,E,B,N,j,I,P,t,$,F,X,Z,V,ee,te,J,ue,ce,me,de,Ae,ye,Ne,je,ie,we,re,pe,ke,Se,se,L,U]);return uMe(ne,e)}function sBt(e){e=e.map(n=>({...n,Edit:x.memo(n.edit)}));const t=Or(n=>o=>{const r=j0();return[...e.map((s,i)=>{const{Edit:c,hasSupport:l,attributeKeys:u=[],shareWithChildBlocks:d}=s;if(!(r[nw]||r[YB]&&d)||!l(o.name))return null;const f={};for(const b of u)o.attributes[b]&&(f[b]=o.attributes[b]);return a.jsx(c,{name:o.name,isSelected:o.isSelected,clientId:o.clientId,setAttributes:o.setAttributes,__unstableParentLayout:o.__unstableParentLayout,...f},i)}),a.jsx(n,{...o},"edit")]},"withBlockEditHooks");Bn("editor.BlockEdit","core/editor/hooks",t)}function iBt({index:e,useBlockProps:t,setAllWrapperProps:n,...o}){const r=t(o),s=i=>n(c=>{const l=[...c];return l[e]=i,l});return x.useEffect(()=>(s(r),()=>{s(void 0)})),null}const aBt=x.memo(iBt);function cBt(e){const t=Or(n=>o=>{const[r,s]=x.useState(Array(e.length).fill(void 0));return[...e.map((i,c)=>{const{hasSupport:l,attributeKeys:u=[],useBlockProps:d,isMatch:p}=i,f={};for(const b of u)o.attributes[b]&&(f[b]=o.attributes[b]);return!Object.keys(f).length||!l(o.name)||p&&!p(f)?null:a.jsx(aBt,{index:c,useBlockProps:d,setAllWrapperProps:s,name:o.name,clientId:o.clientId,...f},c)}),a.jsx(n,{...o,wrapperProps:r.filter(Boolean).reduce((i,c)=>({...i,...c,className:oe(i.className,c.className),style:{...i.style,...c.style}}),o.wrapperProps||{})},"edit")]},"withBlockListBlockHooks");Bn("editor.BlockListBlock","core/editor/hooks",t)}function lBt(e){function t(n,o,r){return e.reduce((s,i)=>{const{hasSupport:c,attributeKeys:l=[],addSaveProps:u}=i,d={};for(const p of l)r[p]&&(d[p]=r[p]);return!Object.keys(d).length||!c(o)?s:u(s,o,d)},n)}Bn("blocks.getSaveContent.extraProps","core/editor/hooks",t,0),Bn("blocks.getSaveContent.extraProps","core/editor/hooks",n=>(n.hasOwnProperty("className")&&!n.className&&delete n.className,n))}function uBt(e){const{apiVersion:t=1}=e;return t<2&&Et(e,"lightBlockWrapper",!1)&&(e.apiVersion=2),e}Bn("blocks.registerBlockType","core/compat/migrateLightBlockWrapper",uBt);const ZW=["left","center","right","wide","full"],dBt=["wide","full"];function MI(e,t=!0,n=!0){let o;return Array.isArray(e)?o=ZW.filter(r=>e.includes(r)):e===!0?o=[...ZW]:o=[],!n||e===!0&&!t?o.filter(r=>!dBt.includes(r)):o}function pBt(e){var t;return"type"in((t=e.attributes?.align)!==null&&t!==void 0?t:{})||Et(e,"align")&&(e.attributes={...e.attributes,align:{type:"string",enum:[...ZW,""]}}),e}function fBt({name:e,align:t,setAttributes:n}){const o=MI(An(e,"align"),Et(e,"alignWide",!0)),r=f7(o).map(({name:c})=>c),s=Jr();if(!r.length||s!=="default")return null;const i=c=>{c||on(e)?.attributes?.align?.default&&(c=""),n({align:c})};return a.jsx(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:a.jsx(zvt,{value:t,onChange:i,controls:r})})}const zI={shareWithChildBlocks:!0,edit:fBt,useBlockProps:bBt,addSaveProps:hBt,attributeKeys:["align"],hasSupport(e){return Et(e,"align",!1)}};function bBt({name:e,align:t}){const n=MI(An(e,"align"),Et(e,"alignWide",!0));return f7(n).some(r=>r.name===t)?{"data-align":t}:{}}function hBt(e,t,n){const{align:o}=n,r=An(t,"align"),s=Et(t,"alignWide",!0);return MI(r,s).includes(o)&&(e.className=oe(`align${o}`,e.className)),e}Bn("blocks.registerBlockType","core/editor/align/addAttribute",pBt);function mBt(e){var t;return"type"in((t=e.attributes?.lock)!==null&&t!==void 0?t:{})||(e.attributes={...e.attributes,lock:{type:"object"}}),e}Bn("blocks.registerBlockType","core/lock/addAttribute",mBt);const gBt=/[\s#]/g,MBt={type:"string",source:"attribute",attribute:"id",selector:"*"};function zBt(e){var t;return"type"in((t=e.attributes?.anchor)!==null&&t!==void 0?t:{})||Et(e,"anchor")&&(e.attributes={...e.attributes,anchor:MBt}),e}function OBt({anchor:e,setAttributes:t}){return Jr()!=="default"?null:a.jsx(et,{group:"advanced",children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,className:"html-anchor-control",label:m("HTML anchor"),help:a.jsxs(a.Fragment,{children:[m("Enter a word or two — without spaces — to make a unique web address just for this block, called an “anchor”. Then, you’ll be able to link directly to this section of your page."),a.jsxs(a.Fragment,{children:[" ",a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-jumps/"),children:m("Learn more about anchors")})]})]}),value:e||"",placeholder:null,onChange:o=>{o=o.replace(gBt,"-"),t({anchor:o})},autoCapitalize:"none",autoComplete:"off"})})}const v3e={addSaveProps:yBt,edit:OBt,attributeKeys:["anchor"],hasSupport(e){return Et(e,"anchor")}};function yBt(e,t,n){return Et(t,"anchor")&&(e.id=n.anchor===""?null:n.anchor),e}Bn("blocks.registerBlockType","core/anchor/attribute",zBt);const ABt={type:"string",source:"attribute",attribute:"aria-label",selector:"*"};function vBt(e){return e?.attributes?.ariaLabel?.type||Et(e,"ariaLabel")&&(e.attributes={...e.attributes,ariaLabel:ABt}),e}function xBt(e,t,n){return Et(t,"ariaLabel")&&(e["aria-label"]=n.ariaLabel===""?null:n.ariaLabel),e}const wBt={addSaveProps:xBt,attributeKeys:["ariaLabel"],hasSupport(e){return Et(e,"ariaLabel")}};Bn("blocks.registerBlockType","core/ariaLabel/attribute",vBt);function _Bt(e){return Et(e,"customClassName",!0)&&(e.attributes={...e.attributes,className:{type:"string"}}),e}function kBt({className:e,setAttributes:t}){return Jr()!=="default"?null:a.jsx(et,{group:"advanced",children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,autoComplete:"off",label:m("Additional CSS class(es)"),value:e||"",onChange:o=>{t({className:o!==""?o:void 0})},help:m("Separate multiple classes with spaces.")})})}const x3e={edit:kBt,addSaveProps:SBt,attributeKeys:["className"],hasSupport(e){return Et(e,"customClassName",!0)}};function SBt(e,t,n){return Et(t,"customClassName",!0)&&n.className&&(e.className=oe(e.className,n.className)),e}function CBt(e,t,n,o){if(!Et(e.name,"customClassName",!0)||o.length===1&&e.innerBlocks.length===t.length||o.length===1&&t.length>1||o.length>1&&t.length===1)return e;if(t[n]){const r=t[n]?.attributes.className;if(r)return{...e,attributes:{...e.attributes,className:r}}}return e}Bn("blocks.registerBlockType","core/editor/custom-class-name/attribute",_Bt);Bn("blocks.switchToBlockType.transformedBlock","core/color/addTransforms",CBt);function qBt(e,t){return Et(t,"className",!0)&&(typeof e.className=="string"?e.className=[...new Set([Y4(t.name),...e.className.split(" ")])].join(" ").trim():e.className=Y4(t.name)),e}Bn("blocks.getSaveContent.extraProps","core/generated-class-name/save-props",qBt);function yv(e){return e.ownerDocument.defaultView.getComputedStyle(e)}function RBt({clientId:e}){const[t,n]=x.useState(),[o,r]=x.useState(),[s,i]=x.useState(),c=Wi(e);return x.useEffect(()=>{if(!c)return;r(yv(c).color);const l=c.querySelector("a");l&&l.innerText&&i(yv(l).color);let u=c,d=yv(u).backgroundColor;for(;d==="rgba(0, 0, 0, 0)"&&u.parentNode&&u.parentNode.nodeType===u.parentNode.ELEMENT_NODE;)u=u.parentNode,d=yv(u).backgroundColor;n(d)},[c]),a.jsx(Qx,{backgroundColor:t,textColor:o,enableAlphaChecker:!0,linkColor:s})}const Q0="color",ok=e=>{const t=An(e,Q0);return t&&(t.link===!0||t.gradient===!0||t.background!==!1||t.text!==!1)},TBt=e=>{const t=An(e,Q0);return t!==null&&typeof t=="object"&&!!t.link},OI=e=>{const t=An(e,Q0);return t!==null&&typeof t=="object"&&!!t.gradients},EBt=e=>{const t=An(e,Q0);return t&&t.background!==!1},WBt=e=>{const t=An(e,Q0);return t&&t.text!==!1};function NBt(e){return ok(e)&&(e.attributes.backgroundColor||Object.assign(e.attributes,{backgroundColor:{type:"string"}}),e.attributes.textColor||Object.assign(e.attributes,{textColor:{type:"string"}}),OI(e)&&!e.attributes.gradient&&Object.assign(e.attributes,{gradient:{type:"string"}})),e}function w3e(e,t,n){if(!ok(t)||W0(t,Q0))return e;const o=OI(t),{backgroundColor:r,textColor:s,gradient:i,style:c}=n,l=g=>!W0(t,Q0,g),u=l("text")?Pt("color",s):void 0,d=l("gradients")?R1(i):void 0,p=l("background")?Pt("background-color",r):void 0,f=l("background")||l("gradients"),b=r||c?.color?.background||o&&(i||c?.color?.gradient),h=oe(e.className,u,d,{[p]:(!o||!c?.color?.gradient)&&!!p,"has-text-color":l("text")&&(s||c?.color?.text),"has-background":f&&b,"has-link-color":l("link")&&c?.elements?.link?.color});return e.className=h||void 0,e}function _3e(e){const t=e?.color?.text,n=t?.startsWith("var:preset|color|")?t.substring(17):void 0,o=e?.color?.background,r=o?.startsWith("var:preset|color|")?o.substring(17):void 0,s=e?.color?.gradient,i=s?.startsWith("var:preset|gradient|")?s.substring(20):void 0,c={...e};return c.color={...c.color,text:n?void 0:t,background:r?void 0:o,gradient:i?void 0:s},{style:Ii(c),textColor:n,backgroundColor:r,gradient:i}}function k3e(e){return{...e.style,color:{...e.style?.color,text:e.textColor?"var:preset|color|"+e.textColor:e.style?.color?.text,background:e.backgroundColor?"var:preset|color|"+e.backgroundColor:e.style?.color?.background,gradient:e.gradient?"var:preset|gradient|"+e.gradient:e.style?.color?.gradient}}}function BBt({children:e,resetAllFilter:t}){const n=x.useCallback(o=>{const r=k3e(o),s=t(r);return{...o,..._3e(s)}},[t]);return a.jsx(et,{group:"color",resetAllFilter:n,children:e})}function LBt({clientId:e,name:t,setAttributes:n,settings:o}){const r=bze(o);function s(h){const{style:g,textColor:z,backgroundColor:A,gradient:_}=h(Q).getBlockAttributes(e)||{};return{style:g,textColor:z,backgroundColor:A,gradient:_}}const{style:i,textColor:c,backgroundColor:l,gradient:u}=G(s,[e]),d=x.useMemo(()=>k3e({style:i,textColor:c,backgroundColor:l,gradient:u}),[i,c,l,u]),p=h=>{n(_3e(h))};if(!r)return null;const f=An(t,[Q0,"__experimentalDefaultControls"]),b=!d?.color?.gradient&&(o?.color?.text||o?.color?.link)&&An(t,[Q0,"enableContrastChecker"])!==!1;return a.jsx(Oze,{as:BBt,panelId:e,settings:o,value:d,onChange:p,defaultControls:f,enableContrastChecker:An(t,[Q0,"enableContrastChecker"])!==!1,children:b&&a.jsx(RBt,{clientId:e})})}function PBt({name:e,backgroundColor:t,textColor:n,gradient:o,style:r}){const[s,i,c]=Un("color.palette.custom","color.palette.theme","color.palette.default"),l=x.useMemo(()=>[...s||[],...i||[],...c||[]],[s,i,c]);if(!ok(e)||W0(e,Q0))return{};const u={};n&&!W0(e,Q0,"text")&&(u.color=Sf(l,n)?.color),t&&!W0(e,Q0,"background")&&(u.backgroundColor=Sf(l,t)?.color);const d=w3e({style:u},e,{textColor:n,backgroundColor:t,gradient:o,style:r}),p=t||r?.color?.background||o||r?.color?.gradient;return{...d,className:oe(d.className,!p&&XRt(r))}}const S3e={useBlockProps:PBt,addSaveProps:w3e,attributeKeys:["backgroundColor","textColor","gradient","style"],hasSupport:ok},jBt={linkColor:[["style","elements","link","color","text"]],textColor:[["textColor"],["style","color","text"]],backgroundColor:[["backgroundColor"],["style","color","background"]],gradient:[["gradient"],["style","color","gradient"]]};function IBt(e,t,n,o){const r=e.name,s={linkColor:TBt(r),textColor:WBt(r),backgroundColor:EBt(r),gradient:OI(r)};return A3e(s,jBt,e,t,n,o)}Bn("blocks.registerBlockType","core/color/addAttribute",NBt);Bn("blocks.switchToBlockType.transformedBlock","core/color/addTransforms",IBt);const DBt="typography.lineHeight",rk="typography.__experimentalFontFamily",{kebabCase:FBt}=ct(tr);function $Bt(e){return Et(e,rk)&&(e.attributes.fontFamily||Object.assign(e.attributes,{fontFamily:{type:"string"}})),e}function C3e(e,t,n){if(!Et(t,rk)||W0(t,Kd,"fontFamily")||!n?.fontFamily)return e;const o=new $_(e.className);o.add(`has-${FBt(n?.fontFamily)}-font-family`);const r=o.value;return e.className=r||void 0,e}function VBt({name:e,fontFamily:t}){return C3e({},e,{fontFamily:t})}const q3e={useBlockProps:VBt,addSaveProps:C3e,attributeKeys:["fontFamily"],hasSupport(e){return Et(e,rk)}};Bn("blocks.registerBlockType","core/fontFamily/addAttribute",$Bt);const qm="typography.fontSize";function HBt(e){return Et(e,qm)&&(e.attributes.fontSize||Object.assign(e.attributes,{fontSize:{type:"string"}})),e}function R3e(e,t,n){if(!Et(t,qm)||W0(t,Kd,"fontSize"))return e;const o=new $_(e.className);o.add(Wx(n.fontSize));const r=o.value;return e.className=r||void 0,e}function UBt({name:e,fontSize:t,style:n}){const[o,r,s]=Un("typography.fontSizes","typography.fluid","layout");if(!Et(e,qm)||W0(e,Kd,"fontSize")||!t&&!n?.typography?.fontSize)return;let i;if(n?.typography?.fontSize&&(i={style:{fontSize:D_({size:n.typography.fontSize},{typography:{fluid:r},layout:s})}}),t&&(i={style:{fontSize:yyt(o,t,n?.typography?.fontSize).size}}),!!i)return R3e(i,e,{fontSize:t})}const T3e={useBlockProps:UBt,addSaveProps:R3e,attributeKeys:["fontSize","style"],hasSupport(e){return Et(e,qm)}},XBt={fontSize:[["fontSize"],["style","typography","fontSize"]]};function GBt(e,t,n,o){const r=e.name,s={fontSize:Et(r,qm)};return A3e(s,XBt,e,t,n,o)}Bn("blocks.registerBlockType","core/font/addAttribute",HBt);Bn("blocks.switchToBlockType.transformedBlock","core/font-size/addTransforms",GBt);const NO="typography.textAlign",KBt=[{icon:$3,title:m("Align text left"),align:"left"},{icon:qw,title:m("Align text center"),align:"center"},{icon:V3,title:m("Align text right"),align:"right"}],Cte=["left","center","right"],YBt=[];function yI(e){return Array.isArray(e)?Cte.filter(t=>e.includes(t)):e===!0?Cte:YBt}function ZBt({style:e,name:t,setAttributes:n}){const r=WO(t)?.typography?.textAlign,s=Jr();if(!r||s!=="default")return null;const i=yI(An(t,NO));if(!i.length)return null;const c=KBt.filter(u=>i.includes(u.align)),l=u=>{const d={...e,typography:{...e?.typography,textAlign:u}};n({style:Ii(d)})};return a.jsx(bt,{group:"block",children:a.jsx(nr,{value:e?.typography?.textAlign,onChange:l,alignmentControls:c})})}const AI={edit:ZBt,useBlockProps:QBt,addSaveProps:JBt,attributeKeys:["style"],hasSupport(e){return Et(e,NO,!1)}};function QBt({name:e,style:t}){if(!t?.typography?.textAlign||!yI(An(e,NO)).length||W0(e,Kd,"textAlign"))return null;const o=t.typography.textAlign;return{className:oe({[`has-text-align-${o}`]:o})}}function JBt(e,t,n){if(!n?.style?.typography?.textAlign)return e;const{textAlign:o}=n.style.typography,r=An(t,NO);return yI(r).includes(o)&&!W0(t,Kd,"textAlign")&&(e.className=oe(`has-text-align-${o}`,e.className)),e}function qte(e,t){return Object.fromEntries(Object.entries(e).filter(([n])=>!t.includes(n)))}const eLt="typography.__experimentalLetterSpacing",tLt="typography.__experimentalTextTransform",nLt="typography.__experimentalTextDecoration",oLt="typography.textColumns",rLt="typography.__experimentalFontStyle",sLt="typography.__experimentalFontWeight",iLt="typography.__experimentalWritingMode",Kd="typography",aLt=[DBt,qm,rLt,sLt,rk,NO,oLt,nLt,iLt,tLt,eLt];function E3e(e){const t={...qte(e,["fontFamily"])},n=e?.typography?.fontSize,o=e?.typography?.fontFamily,r=n?.startsWith("var:preset|font-size|")?n.substring(21):void 0,s=o?.startsWith("var:preset|font-family|")?o.substring(23):void 0;return t.typography={...qte(t.typography,["fontFamily"]),fontSize:r?void 0:n},{style:Ii(t),fontFamily:s,fontSize:r}}function W3e(e){return{...e.style,typography:{...e.style?.typography,fontFamily:e.fontFamily?"var:preset|font-family|"+e.fontFamily:void 0,fontSize:e.fontSize?"var:preset|font-size|"+e.fontSize:e.style?.typography?.fontSize}}}function cLt({children:e,resetAllFilter:t}){const n=x.useCallback(o=>{const r=W3e(o),s=t(r);return{...o,...E3e(s)}},[t]);return a.jsx(et,{group:"typography",resetAllFilter:n,children:e})}function lLt({clientId:e,name:t,setAttributes:n,settings:o}){function r(f){const{style:b,fontFamily:h,fontSize:g}=f(Q).getBlockAttributes(e)||{};return{style:b,fontFamily:h,fontSize:g}}const{style:s,fontFamily:i,fontSize:c}=G(r,[e]),l=wMe(o),u=x.useMemo(()=>W3e({style:s,fontFamily:i,fontSize:c}),[s,c,i]),d=f=>{n(E3e(f))};if(!l)return null;const p=An(t,[Kd,"__experimentalDefaultControls"]);return a.jsx(BMe,{as:cLt,panelId:e,settings:o,value:u,onChange:d,defaultControls:p})}function N3e({clientId:e,value:t,computeStyle:n,forceShow:o}){const r=Wi(e),[s,i]=x.useReducer(()=>n(r));x.useLayoutEffect(()=>{r&&window.requestAnimationFrame(()=>window.requestAnimationFrame(i))},[r,t]);const c=x.useRef(t),[l,u]=x.useState(!1);return x.useEffect(()=>{if(ds(t,c.current)||o)return;u(!0),c.current=t;const d=setTimeout(()=>{u(!1)},400);return()=>{u(!1),clearTimeout(d)}},[t,o]),!l&&!o?null:a.jsx(wm,{clientId:e,__unstablePopoverSlot:"block-toolbar",children:a.jsx("div",{className:"block-editor__spacing-visualizer",style:s})})}function sd(e,t){return e.ownerDocument.defaultView.getComputedStyle(e).getPropertyValue(t)}function uLt({clientId:e,value:t,forceShow:n}){return a.jsx(N3e,{clientId:e,value:t?.spacing?.margin,computeStyle:o=>{const r=sd(o,"margin-top"),s=sd(o,"margin-right"),i=sd(o,"margin-bottom"),c=sd(o,"margin-left");return{borderTopWidth:r,borderRightWidth:s,borderBottomWidth:i,borderLeftWidth:c,top:r?`-${r}`:0,right:s?`-${s}`:0,bottom:i?`-${i}`:0,left:c?`-${c}`:0}},forceShow:n})}function dLt({clientId:e,value:t,forceShow:n}){return a.jsx(N3e,{clientId:e,value:t?.spacing?.padding,computeStyle:o=>({borderTopWidth:sd(o,"padding-top"),borderRightWidth:sd(o,"padding-right"),borderBottomWidth:sd(o,"padding-bottom"),borderLeftWidth:sd(o,"padding-left")}),forceShow:n})}const Fl="dimensions",Jx="spacing";function pLt(){const[e,t]=x.useState(!1),{hideBlockInterface:n,showBlockInterface:o}=ct(Oe(Q));return x.useEffect(()=>{e?n():o()},[e,o,n]),[e,t]}function fLt({children:e,resetAllFilter:t}){const n=x.useCallback(o=>{const r=o.style,s=t(r);return{...o,style:s}},[t]);return a.jsx(et,{group:"dimensions",resetAllFilter:n,children:e})}function bLt({clientId:e,name:t,setAttributes:n,settings:o}){const r=jMe(o),s=G(f=>f(Q).getBlockAttributes(e)?.style,[e]),[i,c]=pLt(),l=f=>{n({style:Ii(f)})};if(!r)return null;const u=An(t,[Fl,"__experimentalDefaultControls"]),d=An(t,[Jx,"__experimentalDefaultControls"]),p={...u,...d};return a.jsxs(a.Fragment,{children:[a.jsx(GMe,{as:fLt,panelId:e,settings:o,value:s,onChange:l,defaultControls:p,onVisualize:c}),!!o?.spacing?.padding&&a.jsx(dLt,{forceShow:i==="padding",clientId:e,value:s}),!!o?.spacing?.margin&&a.jsx(uLt,{forceShow:i==="margin",clientId:e,value:s})]})}function B3e(e,t="any"){const n=An(e,Fl);return n===!0?!0:t==="any"?!!(n?.aspectRatio||n?.minHeight):!!n?.[t]}const hLt={useBlockProps:mLt,attributeKeys:["minHeight","style"],hasSupport(e){return B3e(e,"aspectRatio")}};function mLt({name:e,minHeight:t,style:n}){if(!B3e(e,"aspectRatio")||W0(e,Fl,"aspectRatio"))return{};const o=oe({"has-aspect-ratio":!!n?.dimensions?.aspectRatio}),r={};return n?.dimensions?.aspectRatio?r.minHeight="unset":(t||n?.dimensions?.minHeight)&&(r.aspectRatio="unset"),{className:o,style:r}}const gLt=[...aLt,Sm,Q0,Fl,Sh,Jx,Zx],vI=e=>gLt.some(t=>Et(e,t));function Rm(e={}){const t={};return v_(e).forEach(n=>{t[n.key]=n.value}),t}function MLt(e){return vI(e)&&(e.attributes.style||Object.assign(e.attributes,{style:{type:"object"}})),e}const L3e={[`${Sm}.__experimentalSkipSerialization`]:["border"],[`${Q0}.__experimentalSkipSerialization`]:[Q0],[`${Kd}.__experimentalSkipSerialization`]:[Kd],[`${Fl}.__experimentalSkipSerialization`]:[Fl],[`${Jx}.__experimentalSkipSerialization`]:[Jx],[`${Zx}.__experimentalSkipSerialization`]:[Zx]},zLt={...L3e,[`${Fl}.aspectRatio`]:[`${Fl}.aspectRatio`],[`${Sh}`]:[Sh]},OLt={[`${Fl}.aspectRatio`]:!0,[`${Sh}`]:!0},yLt={gradients:"gradient"};function QW(e,t,n=!1){if(!e)return e;let o=e;return n||(o=JSON.parse(JSON.stringify(e))),Array.isArray(t)||(t=[t]),t.forEach(r=>{if(Array.isArray(r)||(r=r.split(".")),r.length>1){const[s,...i]=r;QW(o[s],[i],!0)}else r.length===1&&delete o[r[0]]}),o}function P3e(e,t,n,o=zLt){if(!vI(t))return e;let{style:r}=n;return Object.entries(o).forEach(([s,i])=>{const c=OLt[s]||An(t,s);c===!0&&(r=QW(r,i)),Array.isArray(c)&&c.forEach(l=>{const u=yLt[l]||l;r=QW(r,[[...i,u]])})}),e.style={...Rm(r),...e.style},e}function ALt({clientId:e,name:t,setAttributes:n,__unstableParentLayout:o}){const r=WO(t,o),s=Jr(),i={clientId:e,name:t,setAttributes:n,settings:{...r,typography:{...r.typography,textAlign:!1}}};return s!=="default"?null:a.jsxs(a.Fragment,{children:[a.jsx(LBt,{...i}),a.jsx(KRt,{...i}),a.jsx(lLt,{...i}),a.jsx(QTt,{...i}),a.jsx(bLt,{...i})]})}const xI={edit:ALt,hasSupport:vI,addSaveProps:P3e,attributeKeys:["style"],useBlockProps:wLt},vLt=[{elementType:"button"},{elementType:"link",pseudo:[":hover"]},{elementType:"heading",elements:["h1","h2","h3","h4","h5","h6"]}],xLt={};function wLt({name:e,style:t}){const n=vt(xLt,"wp-elements"),o=`.${n}`,r=t?.elements,s=x.useMemo(()=>{if(!r)return;const i=[];return vLt.forEach(({elementType:c,pseudo:l,elements:u})=>{if(W0(e,Q0,c))return;const p=r?.[c];if(p){const f=Ws(o,Za[c]);i.push(aq(p,{selector:f})),l&&l.forEach(b=>{p[b]&&i.push(aq(p[b],{selector:Ws(o,`${Za[c]}${b}`)}))})}u&&u.forEach(f=>{r[f]&&i.push(aq(r[f],{selector:Ws(o,Za[f])}))})}),i.length>0?i.join(""):void 0},[o,r,e]);return EO({css:s}),P3e({className:n},e,{style:t},L3e)}Bn("blocks.registerBlockType","core/style/addAttribute",MLt);const _Lt=e=>Et(e,"__experimentalSettings",!1);function kLt(e){return _Lt(e)&&(e?.attributes?.settings||(e.attributes={...e.attributes,settings:{type:"object"}})),e}Bn("blocks.registerBlockType","core/settings/addAttribute",kLt);const uT=[],SLt=window?.navigator.userAgent&&window.navigator.userAgent.includes("Safari")&&!window.navigator.userAgent.includes("Chrome")&&!window.navigator.userAgent.includes("Chromium");Xs([Gs]);function JW({presetSetting:e,defaultSetting:t}){const[n,o,r,s]=Un(t,`${e}.custom`,`${e}.theme`,`${e}.default`);return x.useMemo(()=>[...o||uT,...r||uT,...n&&s||uT],[n,o,r,s])}function j3e(e,t){if(!e)return;const n=t?.find(({slug:o})=>e===`var:preset|duotone|${o}`);return n?n.colors:void 0}function CLt(e,t){if(!e||!Array.isArray(e))return;const n=t?.find(o=>o?.colors?.every((r,s)=>r===e[s]));return n?`var:preset|duotone|${n.slug}`:void 0}function qLt({style:e,setAttributes:t,name:n}){const o=e?.color?.duotone,r=WO(n),s=Jr(),i=JW({presetSetting:"color.duotone",defaultSetting:"color.defaultDuotone"}),c=JW({presetSetting:"color.palette",defaultSetting:"color.defaultPalette"}),[l,u]=Un("color.custom","color.customDuotone"),d=!l,p=!u||c?.length===0&&d;if(i?.length===0&&p||s!=="default")return null;const f=Array.isArray(o)?o:j3e(o,i);return a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"filter",children:a.jsx(Aze,{value:{filter:{duotone:f}},onChange:b=>{const h={...e,color:{...b?.filter}};t({style:h})},settings:r})}),a.jsx(bt,{group:"block",__experimentalShareWithChildBlocks:!0,children:a.jsx(Xze,{duotonePalette:i,colorPalette:c,disableCustomDuotone:p,disableCustomColors:d,value:f,onChange:b=>{const h=CLt(b,i),g={...e,color:{...e?.color,duotone:h??b}};t({style:g})},settings:r})})]})}const I3e={shareWithChildBlocks:!0,edit:qLt,useBlockProps:WLt,attributeKeys:["style"],hasSupport(e){return Et(e,"filter.duotone")}};function RLt(e){return Et(e,"filter.duotone")&&(e.attributes.style||Object.assign(e.attributes,{style:{type:"object"}})),e}function TLt({clientId:e,id:t,selector:n,attribute:o}){const r=JW({presetSetting:"color.duotone",defaultSetting:"color.defaultDuotone"}),s=Array.isArray(o),i=s?void 0:j3e(o,r),c=typeof o=="string"&&i,l=typeof o=="string"&&!c;let u=null;c?u=i:(l||s)&&(u=o);const f=n.split(",").map(g=>`.${t}${g.trim()}`).join(", "),b=Array.isArray(u)||u==="unset";Jz(b?{css:u!=="unset"?oRt(f,t):nRt(f),__unstableType:"presets"}:void 0),Jz(b?{assets:u!=="unset"?rI(t,u):"",__unstableType:"svgs"}:void 0);const h=Wi(e);x.useEffect(()=>{if(b&&h&&SLt){const g=h.style.display;h.style.setProperty("display","inline-block"),h.offsetHeight,h.style.setProperty("display",g)}},[b,h,u])}const ELt={};function WLt({clientId:e,name:t,style:n}){const o=vt(ELt),r=x.useMemo(()=>{const l=on(t);if(l){if(!An(l,"filter.duotone",!1))return null;const d=An(l,"color.__experimentalDuotone",!1);if(d){const p=pd(l);return typeof d=="string"?Ws(p,d):p}return pd(l,"filter.duotone",{fallback:!0})}},[t]),s=n?.color?.duotone,i=`wp-duotone-${o}`,c=r&&s;return TLt({clientId:e,id:i,selector:r,attribute:s}),{className:c?i:""}}Bn("blocks.registerBlockType","core/editor/duotone/add-attributes",RLt);const wI="layout",{kebabCase:eN}=ct(tr);function _I(e){return Et(e,"layout")||Et(e,"__experimentalLayout")}function D3e(e={},t=""){const{layout:n}=e,{default:o}=An(t,wI)||{},r=n?.inherit||n?.contentSize||n?.wideSize?{...n,type:"constrained"}:n||o||{},s=[];if(Dd[r?.type||"default"]?.className){const c=Dd[r?.type||"default"]?.className,l=t.split("/"),d=`wp-block-${l[0]==="core"?l.pop():l.join("-")}-${c}`;s.push(c,d)}return G(c=>(r?.inherit||r?.contentSize||r?.type==="constrained")&&c(Q).getSettings().__experimentalFeatures?.useRootPaddingAwareAlignments,[r?.contentSize,r?.inherit,r?.type])&&s.push("has-global-padding"),r?.orientation&&s.push(`is-${eN(r.orientation)}`),r?.justifyContent&&s.push(`is-content-justification-${eN(r.justifyContent)}`),r?.flexWrap&&r.flexWrap==="nowrap"&&s.push("is-nowrap"),s}function NLt(e={},t,n){const{layout:o={},style:r={}}=e,s=o?.inherit||o?.contentSize||o?.wideSize?{...o,type:"constrained"}:o||{},i=Rf(s?.type||"default"),[c]=Un("spacing.blockGap"),l=c!==null;return i?.getLayoutStyle?.({blockName:t,selector:n,layout:o,style:r,hasBlockGapSupport:l})}function BLt({layout:e,setAttributes:t,name:n,clientId:o}){const r=WO(n),{layout:s}=r,{themeSupportsLayout:i}=G(B=>{const{getSettings:N}=B(Q);return{themeSupportsLayout:N().supportsLayout}},[]);if(Jr()!=="default")return null;const l=An(n,wI,{}),u={...s,...l},{allowSwitching:d,allowEditing:p=!0,allowInheriting:f=!0,default:b}=u;if(!p)return null;const h={...l,...e},{type:g,default:{type:z="default"}={}}=h,A=g||z,_=!!(f&&(!A||A==="default"||A==="constrained"||h.inherit)),v=e||b||{},{inherit:M=!1,contentSize:y=null}=v;if((A==="default"||A==="constrained")&&!i)return null;const k=Rf(A),S=Rf("constrained"),C=!v.type&&(y||M),R=!!M||!!y,T=B=>t({layout:{type:B}}),E=B=>t({layout:B});return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Layout"),children:[_&&a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Inner blocks use content width"),checked:k?.name==="constrained"||R,onChange:()=>t({layout:{type:k?.name==="constrained"||R?"default":"constrained"}}),help:k?.name==="constrained"||R?m("Nested blocks use content width with options for full and wide widths."):m("Nested blocks will fill the width of this container. Toggle to constrain.")})}),!M&&d&&a.jsx(PLt,{type:A,onChange:T}),k&&k.name!=="default"&&a.jsx(k.inspectorControls,{layout:v,onChange:E,layoutBlockSupport:u,name:n,clientId:o}),S&&C&&a.jsx(S.inspectorControls,{layout:v,onChange:E,layoutBlockSupport:u,name:n,clientId:o})]})}),!M&&k&&a.jsx(k.toolBarControls,{layout:v,onChange:E,layoutBlockSupport:l,name:n,clientId:o})]})}const LLt={shareWithChildBlocks:!0,edit:BLt,attributeKeys:["layout"],hasSupport(e){return _I(e)}};function PLt({type:e,onChange:t}){return a.jsx(Do,{__next40pxDefaultSize:!0,isBlock:!0,label:m("Layout type"),__nextHasNoMarginBottom:!0,hideLabelFromVision:!0,isAdaptiveWidth:!0,value:e,onChange:t,children:bvt().map(({name:n,label:o})=>a.jsx(Kn,{value:n,label:o},n))})}function jLt(e){var t;return"type"in((t=e.attributes?.layout)!==null&&t!==void 0?t:{})||_I(e)&&(e.attributes={...e.attributes,layout:{type:"object"}}),e}function ILt({block:e,props:t,blockGapSupport:n,layoutClasses:o}){const{name:r,attributes:s}=t,i=vt(e),{layout:c}=s,{default:l}=An(r,wI)||{},u=c?.inherit||c?.contentSize||c?.wideSize?{...c,type:"constrained"}:c||l||{},d=`wp-container-${eN(r)}-is-layout-`,p=`.${d}${i}`,f=n!==null,h=Rf(u?.type||"default")?.getLayoutStyle?.({blockName:r,selector:p,layout:u,style:s?.style,hasBlockGapSupport:f}),g=oe({[`${d}${i}`]:!!h},o);return EO({css:h}),a.jsx(e,{...t,__unstableLayoutClassNames:g})}const DLt=Or(e=>t=>{const{clientId:n,name:o,attributes:r}=t,s=_I(o),i=D3e(r,o),c=G(l=>{if(!s)return;const{getSettings:u,getBlockSettings:d}=ct(l(Q)),{disableLayoutStyles:p}=u();if(p)return;const[f]=d(n,"spacing.blockGap");return{blockGapSupport:f}},[s,n]);return c?a.jsx(ILt,{block:e,props:t,layoutClasses:i,...c}):a.jsx(e,{...t,__unstableLayoutClassNames:s?i:void 0})},"withLayoutStyles");Bn("blocks.registerBlockType","core/layout/addAttribute",jLt);Bn("editor.BlockListBlock","core/editor/layout/with-layout-styles",DLt);function Rte(e,t){return Array.from({length:t},(n,o)=>e+o)}class bd{constructor({columnStart:t,rowStart:n,columnEnd:o,rowEnd:r,columnSpan:s,rowSpan:i}={}){this.columnStart=t??1,this.rowStart=n??1,s!==void 0?this.columnEnd=this.columnStart+s-1:this.columnEnd=o??this.columnStart,i!==void 0?this.rowEnd=this.rowStart+i-1:this.rowEnd=r??this.rowStart}get columnSpan(){return this.columnEnd-this.columnStart+1}get rowSpan(){return this.rowEnd-this.rowStart+1}contains(t,n){return t>=this.columnStart&&t<=this.columnEnd&&n>=this.rowStart&&n<=this.rowEnd}containsRect(t){return this.contains(t.columnStart,t.rowStart)&&this.contains(t.columnEnd,t.rowEnd)}intersectsRect(t){return this.columnStart<=t.columnEnd&&this.columnEnd>=t.columnStart&&this.rowStart<=t.rowEnd&&this.rowEnd>=t.rowStart}}function d1(e,t){return e.ownerDocument.defaultView.getComputedStyle(e).getPropertyValue(t)}function Tte(e,t){const n=[];for(const o of e.split(" ")){const r=n[n.length-1],s=r?r.end+t:0,i=s+parseFloat(o);n.push({start:s,end:i})}return n}function Av(e,t,n="start"){return e.reduce((o,r,s)=>Math.abs(r[n]-t)<Math.abs(e[o][n]-t)?s:o,0)}function dT(e){const t=d1(e,"grid-template-columns"),n=d1(e,"grid-template-rows"),o=d1(e,"border-top-width"),r=d1(e,"border-right-width"),s=d1(e,"border-bottom-width"),i=d1(e,"border-left-width"),c=d1(e,"padding-top"),l=d1(e,"padding-right"),u=d1(e,"padding-bottom"),d=d1(e,"padding-left"),p=t.split(" ").length,f=n.split(" ").length,b=p*f;return{numColumns:p,numRows:f,numItems:b,currentColor:d1(e,"color"),style:{gridTemplateColumns:t,gridTemplateRows:n,gap:d1(e,"gap"),paddingTop:`calc(${c} + ${o})`,paddingRight:`calc(${l} + ${r})`,paddingBottom:`calc(${u} + ${s})`,paddingLeft:`calc(${d} + ${i})`}}}function F3e({clientId:e,contentRef:t,parentLayout:n}){const o=G(i=>i(Q).getSettings().isDistractionFree,[]),r=Wi(e);if(o||!r)return null;const s=n?.isManualPlacement&&window.__experimentalEnableGridInteractivity;return a.jsx(FLt,{gridClientId:e,gridElement:r,isManualGrid:s,ref:t})}const FLt=x.forwardRef(({gridClientId:e,gridElement:t,isManualGrid:n},o)=>{const[r,s]=x.useState(()=>dT(t)),[i,c]=x.useState(!1);return x.useEffect(()=>{const l=[];for(const d of[t,...t.children]){const p=new window.ResizeObserver(()=>{s(dT(t))});p.observe(d),l.push(p)}const u=new window.MutationObserver(()=>{s(dT(t))});return u.observe(t,{attributeFilter:["style","class"],childList:!0,subtree:!0}),l.push(u),()=>{for(const d of l)d.disconnect()}},[t]),x.useEffect(()=>{function l(){c(!0)}function u(){c(!1)}return document.addEventListener("drag",l),document.addEventListener("dragend",u),()=>{document.removeEventListener("drag",l),document.removeEventListener("dragend",u)}},[]),a.jsx(wm,{className:oe("block-editor-grid-visualizer",{"is-dropping-allowed":i}),clientId:e,__unstablePopoverSlot:"__unstable-block-tools-after",children:a.jsx("div",{ref:o,className:"block-editor-grid-visualizer__grid",style:r.style,children:n?a.jsx($Lt,{gridClientId:e,gridInfo:r}):Array.from({length:r.numItems},(l,u)=>a.jsx($3e,{color:r.currentColor},u))})})});function $Lt({gridClientId:e,gridInfo:t}){const[n,o]=x.useState(null),r=G(i=>{const{getBlockOrder:c,getBlockStyles:l}=ct(i(Q)),u=c(e);return l(u)},[e]),s=x.useMemo(()=>{const i=[];for(const l of Object.values(r)){var c;const{columnStart:u,rowStart:d,columnSpan:p=1,rowSpan:f=1}=(c=l?.layout)!==null&&c!==void 0?c:{};!u||!d||i.push(new bd({columnStart:u,rowStart:d,columnSpan:p,rowSpan:f}))}return i},[r]);return Rte(1,t.numRows).map(i=>Rte(1,t.numColumns).map(c=>{var l;const u=s.some(p=>p.contains(c,i)),d=(l=n?.contains(c,i))!==null&&l!==void 0?l:!1;return a.jsx($3e,{color:t.currentColor,className:d&&"is-highlighted",children:u?a.jsx(VLt,{column:c,row:i,gridClientId:e,gridInfo:t,setHighlightedRect:o}):a.jsx(HLt,{column:c,row:i,gridClientId:e,gridInfo:t,setHighlightedRect:o})},`${i}-${c}`)}))}function $3e({color:e,children:t,className:n}){return a.jsx("div",{className:oe("block-editor-grid-visualizer__cell",n),style:{boxShadow:`inset 0 0 0 1px color-mix(in srgb, ${e} 20%, #0000)`,color:e},children:t})}function V3e(e,t,n,o,r){const{getBlockAttributes:s,getBlockRootClientId:i,canInsertBlockType:c,getBlockName:l}=G(Q),{updateBlockAttributes:u,moveBlocksToPosition:d,__unstableMarkNextChangeAsNotPersistent:p}=Oe(Q),f=K_(n,o.numColumns);return ULt({validateDrag(b){const h=l(b);if(!c(h,n))return!1;const g=s(b),z=new bd({columnStart:e,rowStart:t,columnSpan:g.style?.layout?.columnSpan,rowSpan:g.style?.layout?.rowSpan});return new bd({columnSpan:o.numColumns,rowSpan:o.numRows}).containsRect(z)},onDragEnter(b){const h=s(b);r(new bd({columnStart:e,rowStart:t,columnSpan:h.style?.layout?.columnSpan,rowSpan:h.style?.layout?.rowSpan}))},onDragLeave(){r(b=>b?.columnStart===e&&b?.rowStart===t?null:b)},onDrop(b){r(null);const h=s(b);u(b,{style:{...h.style,layout:{...h.style?.layout,columnStart:e,rowStart:t}}}),p(),d([b],i(b),n,f(e,t))}})}function VLt({column:e,row:t,gridClientId:n,gridInfo:o,setHighlightedRect:r}){return a.jsx("div",{className:"block-editor-grid-visualizer__drop-zone",ref:V3e(e,t,n,o,r)})}function HLt({column:e,row:t,gridClientId:n,gridInfo:o,setHighlightedRect:r}){const{updateBlockAttributes:s,moveBlocksToPosition:i,__unstableMarkNextChangeAsNotPersistent:c}=Oe(Q),l=K_(n,o.numColumns);return a.jsx(P_,{rootClientId:n,className:"block-editor-grid-visualizer__appender",ref:V3e(e,t,n,o,r),style:{color:o.currentColor},onSelect:u=>{u&&(s(u.clientId,{style:{layout:{columnStart:e,rowStart:t}}}),c(),i([u.clientId],n,n,l(e,t)))}})}function ULt({validateDrag:e,onDragEnter:t,onDragLeave:n,onDrop:o}){const{getDraggedBlockClientIds:r}=G(Q);return E5({onDragEnter(){const[s]=r();s&&e(s)&&t(s)},onDragLeave(){n()},onDrop(){const[s]=r();s&&e(s)&&o(s)}})}function XLt({clientId:e,bounds:t,onChange:n,parentLayout:o}){const r=Wi(e),s=r?.parentElement,{isManualPlacement:i}=o;return!r||!s?null:a.jsx(GLt,{clientId:e,bounds:t,blockElement:r,rootBlockElement:s,onChange:n,isManualGrid:i&&window.__experimentalEnableGridInteractivity})}function GLt({clientId:e,bounds:t,blockElement:n,rootBlockElement:o,onChange:r,isManualGrid:s}){const[i,c]=x.useState(null),[l,u]=x.useState({top:!1,bottom:!1,left:!1,right:!1});x.useEffect(()=>{const b=new window.ResizeObserver(()=>{const h=n.getBoundingClientRect(),g=o.getBoundingClientRect();u({top:h.top>g.top,bottom:h.bottom<g.bottom,left:h.left>g.left,right:h.right<g.right})});return b.observe(n),()=>b.disconnect()},[n,o]);const d={right:"left",left:"right"},p={top:"flex-end",bottom:"flex-start"},f={display:"flex",justifyContent:"center",alignItems:"center",...d[i]&&{justifyContent:d[i]},...p[i]&&{alignItems:p[i]}};return a.jsx(wm,{className:"block-editor-grid-item-resizer",clientId:e,__unstablePopoverSlot:"__unstable-block-tools-after",additionalStyles:f,children:a.jsx(Ca,{className:"block-editor-grid-item-resizer__box",size:{width:"100%",height:"100%"},enable:{bottom:l.bottom,bottomLeft:!1,bottomRight:!1,left:l.left,right:l.right,top:l.top,topLeft:!1,topRight:!1},bounds:t,boundsByDirection:!0,onPointerDown:({target:b,pointerId:h})=>{b.setPointerCapture(h)},onResizeStart:(b,h)=>{c(h)},onResizeStop:(b,h,g)=>{const z=parseFloat(d1(o,"column-gap")),A=parseFloat(d1(o,"row-gap")),_=Tte(d1(o,"grid-template-columns"),z),v=Tte(d1(o,"grid-template-rows"),A),M=new window.DOMRect(n.offsetLeft+g.offsetLeft,n.offsetTop+g.offsetTop,g.offsetWidth,g.offsetHeight),y=Av(_,M.left)+1,k=Av(v,M.top)+1,S=Av(_,M.right,"end")+1,C=Av(v,M.bottom,"end")+1;r({columnSpan:S-y+1,rowSpan:C-k+1,columnStart:s?y:void 0,rowStart:s?k:void 0})}})})}function KLt({layout:e,parentLayout:t,onChange:n,gridClientId:o,blockClientId:r}){var s,i,c,l;const{moveBlocksToPosition:u,__unstableMarkNextChangeAsNotPersistent:d}=Oe(Q),p=(s=e?.columnStart)!==null&&s!==void 0?s:1,f=(i=e?.rowStart)!==null&&i!==void 0?i:1,b=(c=e?.columnSpan)!==null&&c!==void 0?c:1,h=(l=e?.rowSpan)!==null&&l!==void 0?l:1,g=p+b-1,z=f+h-1,A=t?.columnCount,_=t?.rowCount,v=K_(o,A);return a.jsx(bt,{group:"parent",children:a.jsxs(Wn,{className:"block-editor-grid-item-mover__move-button-container",children:[a.jsx("div",{className:"block-editor-grid-item-mover__move-horizontal-button-container is-left",children:a.jsx(fM,{icon:jt()?ma:Ll,label:m("Move left"),description:m("Move left"),isDisabled:p<=1,onClick:()=>{n({columnStart:p-1}),d(),u([r],o,o,v(p-1,f))}})}),a.jsxs("div",{className:"block-editor-grid-item-mover__move-vertical-button-container",children:[a.jsx(fM,{className:"is-up-button",icon:Ww,label:m("Move up"),description:m("Move up"),isDisabled:f<=1,onClick:()=>{n({rowStart:f-1}),d(),u([r],o,o,v(p,f-1))}}),a.jsx(fM,{className:"is-down-button",icon:tu,label:m("Move down"),description:m("Move down"),isDisabled:_&&z>=_,onClick:()=>{n({rowStart:f+1}),d(),u([r],o,o,v(p,f+1))}})]}),a.jsx("div",{className:"block-editor-grid-item-mover__move-horizontal-button-container is-right",children:a.jsx(fM,{icon:jt()?Ll:ma,label:m("Move right"),description:m("Move right"),isDisabled:A&&g>=A,onClick:()=>{n({columnStart:p+1}),d(),u([r],o,o,v(p+1,f))}})})]})})}function fM({className:e,icon:t,label:n,isDisabled:o,onClick:r,description:s}){const c=`block-editor-grid-item-mover-button__description-${vt(fM)}`;return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{className:oe("block-editor-grid-item-mover-button",e),icon:t,label:n,"aria-describedby":c,onClick:o?null:r,disabled:o,accessibleWhenDisabled:!0}),a.jsx(qn,{id:c,children:s})]})}function YLt({clientId:e}){const{gridLayout:t,blockOrder:n,selectedBlockLayout:o}=G(f=>{var b;const{getBlockAttributes:h,getBlockOrder:g}=f(Q),z=f(Q).getSelectedBlock();return{gridLayout:(b=h(e).layout)!==null&&b!==void 0?b:{},blockOrder:g(e),selectedBlockLayout:z?.attributes.style?.layout}},[e]),{getBlockAttributes:r,getBlockRootClientId:s}=G(Q),{updateBlockAttributes:i,__unstableMarkNextChangeAsNotPersistent:c}=Oe(Q),l=x.useMemo(()=>o?new bd(o):null,[o]),u=Fr(l),d=Fr(t.isManualPlacement),p=Fr(n);x.useEffect(()=>{const f={};if(t.isManualPlacement){const A=[];for(const v of n){var b;const{columnStart:M,rowStart:y,columnSpan:k=1,rowSpan:S=1}=(b=r(v).style?.layout)!==null&&b!==void 0?b:{};!M||!y||A.push(new bd({columnStart:M,rowStart:y,columnSpan:k,rowSpan:S}))}for(const v of n){var h;const M=r(v),{columnStart:y,rowStart:k,columnSpan:S=1,rowSpan:C=1}=(h=M.style?.layout)!==null&&h!==void 0?h:{};if(y&&k)continue;const[R,T]=ZLt(A,t.columnCount,S,C,u?.columnEnd,u?.rowEnd);A.push(new bd({columnStart:R,rowStart:T,columnSpan:S,rowSpan:C})),f[v]={style:{...M.style,layout:{...M.style?.layout,columnStart:R,rowStart:T}}}}const _=Math.max(...A.map(v=>v.rowEnd));(!t.rowCount||t.rowCount<_)&&(f[e]={layout:{...t,rowCount:_}});for(const v of p??[])if(!n.includes(v)){var g;const M=s(v);if(M===null||r(M)?.layout?.type==="grid")continue;const k=r(v),{columnStart:S,rowStart:C,columnSpan:R,rowSpan:T,...E}=(g=k.style?.layout)!==null&&g!==void 0?g:{};if(S||C||R||T){const B=Object.keys(E).length===0;f[v]=gn(k,["style","layout"],B?void 0:E)}}}else{if(d===!0)for(const A of n){var z;const _=r(A),{columnStart:v,rowStart:M,...y}=(z=_.style?.layout)!==null&&z!==void 0?z:{};if(v||M){const k=Object.keys(y).length===0;f[A]=gn(_,["style","layout"],k?void 0:y)}}t.rowCount&&(f[e]={layout:{...t,rowCount:void 0}})}Object.keys(f).length&&(c(),i(Object.keys(f),f,!0))},[e,t,p,n,u,d,c,r,s,i])}function ZLt(e,t,n,o,r=1,s=1){for(let i=s;;i++)for(let c=i===s?r:1;c<=t;c++){const l=new bd({columnStart:c,rowStart:i,columnSpan:n,rowSpan:o});if(!e.some(u=>u.intersectsRect(l)))return[c,i]}}const QLt={};function JLt({style:e}){var t;const n=G(z=>!z(Q).getSettings().disableLayoutStyles),o=(t=e?.layout)!==null&&t!==void 0?t:{},{selfStretch:r,flexSize:s,columnStart:i,rowStart:c,columnSpan:l,rowSpan:u}=o,d=x_()||{},{columnCount:p,minimumColumnWidth:f}=d,b=vt(QLt),h=`.wp-container-content-${b}`;let g="";if(n&&(r==="fixed"&&s?g=`${h} { flex-basis: ${s}; box-sizing: border-box; }`:r==="fill"?g=`${h} { @@ -722,7 +722,7 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen grid-column: ${k}; grid-row: auto; } - }`}if(EO({css:g}),!!g)return{className:`wp-container-content-${b}`}}function tPt({clientId:e,style:t,setAttributes:n}){const o=w_()||{},{type:r="default",allowSizingOnChildren:s=!1,isManualPlacement:i}=o;return r!=="grid"?null:a.jsx(nPt,{clientId:e,style:t,setAttributes:n,allowSizingOnChildren:s,isManualPlacement:i,parentLayout:o})}function nPt({clientId:e,style:t,setAttributes:n,allowSizingOnChildren:o,isManualPlacement:r,parentLayout:s}){const{rootClientId:i,isVisible:c}=G(p=>{const{getBlockRootClientId:f,getBlockEditingMode:b,getTemplateLock:h}=p(Q),g=f(e);return h(g)||b(g)!=="default"?{rootClientId:g,isVisible:!1}:{rootClientId:g,isVisible:!0}},[e]),[l,u]=x.useState();if(!c)return null;function d(p){n({style:{...t,layout:{...t?.layout,...p}}})}return a.jsxs(a.Fragment,{children:[a.jsx(F3e,{clientId:i,contentRef:u,parentLayout:s}),o&&a.jsx(GLt,{clientId:e,bounds:l,onChange:d,parentLayout:s}),r&&window.__experimentalEnableGridInteractivity&&a.jsx(YLt,{layout:t?.layout,parentLayout:s,onChange:d,gridClientId:i,blockClientId:e})]})}const H3e={useBlockProps:ePt,edit:tPt,attributeKeys:["style"],hasSupport(){return!0}};function oPt({clientId:e}){const{templateLock:t,isLockedByParent:n,isEditingAsBlocks:o}=G(l=>{const{getContentLockingParent:u,getTemplateLock:d,getTemporarilyEditingAsBlocks:p}=ct(l(Q));return{templateLock:d(e),isLockedByParent:!!u(e),isEditingAsBlocks:p()===e}},[e]),{stopEditingAsBlocks:r}=ct(Oe(Q)),s=!n&&t==="contentOnly",i=x.useCallback(()=>{r(e)},[e,r]);return!s&&!o?null:o&&!s&&a.jsx(bt,{group:"other",children:a.jsx(Vt,{onClick:i,children:m("Done")})})}const rPt={edit:oPt,hasSupport(){return!0}},Ete="metadata";function sPt(e){return e?.attributes?.[Ete]?.type||(e.attributes={...e.attributes,[Ete]:{type:"object"}}),e}Bn("blocks.registerBlockType","core/metadata/addMetaAttribute",sPt);const iPt={};function aPt({name:e,clientId:t,metadata:{ignoredHookedBlocks:n=[]}={}}){const o=G(b=>b(kt).getBlockTypes(),[]),r=x.useMemo(()=>o?.filter(({name:b,blockHooks:h})=>h&&e in h||n.includes(b)),[o,e,n]),s=G(b=>{const{getBlocks:h,getBlockRootClientId:g,getGlobalBlockCount:z}=b(Q),A=g(t),_=r.reduce((v,M)=>{if(z(M.name)===0)return v;const y=M?.blockHooks?.[e];let k;switch(y){case"before":case"after":k=h(A);break;case"first_child":case"last_child":k=h(t);break;case void 0:k=[...h(A),...h(t)];break}const S=k?.find(C=>C.name===M.name);return S?{...v,[M.name]:S.clientId}:v},{});return Object.values(_).length>0?_:iPt},[r,e,t]),{getBlockIndex:i,getBlockCount:c,getBlockRootClientId:l}=G(Q),{insertBlock:u,removeBlock:d}=Oe(Q);if(!r.length)return null;const p=r.reduce((b,h)=>{const[g]=h.name.split("/");return b[g]||(b[g]=[]),b[g].push(h),b},{}),f=(b,h)=>{const g=i(t),z=c(t),A=l(t);switch(h){case"before":case"after":u(b,h==="after"?g+1:g,A,!1);break;case"first_child":case"last_child":u(b,h==="first_child"?0:z,t,!1);break;case void 0:u(b,g+1,A,!1);break}};return a.jsx(et,{children:a.jsxs(Qt,{className:"block-editor-hooks__block-hooks",title:m("Plugins"),initialOpen:!0,children:[a.jsx("p",{className:"block-editor-hooks__block-hooks-helptext",children:m("Manage the inclusion of blocks added automatically by plugins.")}),Object.keys(p).map(b=>a.jsxs(x.Fragment,{children:[a.jsx("h3",{children:b}),p[b].map(h=>{const g=h.name in s;return a.jsx(lt,{__nextHasNoMarginBottom:!0,checked:g,label:h.title,onChange:()=>{if(!g){const z=h.blockHooks[e];f(Ee(h.name),z);return}d(s[h.name],!1)}},h.title)})]},b))]})})}const cPt={edit:aPt,attributeKeys:["metadata"],hasSupport(){return!0}},{Menu:ll}=ct(tr),Wte={},lPt=()=>Yn("medium","<")?{}:{popoverProps:{placement:"left-start",offset:259}};function uPt({fieldsList:e,attribute:t,binding:n}){const{clientId:o}=j0(),r=aie(),{updateBlockBindings:s}=m_(),i=n?.args?.key,c=G(l=>{const{name:u}=l(Q).getBlock(o),d=on(u).attributes?.[t]?.type;return d==="rich-text"?"string":d},[o,t]);return a.jsx(a.Fragment,{children:Object.entries(e).map(([l,u],d)=>a.jsxs(x.Fragment,{children:[a.jsxs(ll.Group,{children:[Object.keys(e).length>1&&a.jsx(ll.GroupLabel,{children:r[l].label}),Object.entries(u).filter(([,p])=>p?.type===c).map(([p,f])=>a.jsxs(ll.RadioItem,{onChange:()=>s({[t]:{source:l,args:{key:p}}}),name:t+"-binding",value:p,checked:p===i,children:[a.jsx(ll.ItemLabel,{children:f?.label}),a.jsx(ll.ItemHelpText,{children:f?.value})]},p))]}),d!==Object.keys(e).length-1&&a.jsx(ll.Separator,{})]},l))})}function U3e({attribute:e,binding:t,fieldsList:n}){const{source:o,args:r}=t||{},s=xl(o),i=!s;return a.jsxs(dt,{className:"block-editor-bindings__item",spacing:0,children:[a.jsx(Sn,{truncate:!0,children:e}),!!t&&a.jsx(Sn,{truncate:!0,variant:!i&&"muted",isDestructive:i,children:i?m("Invalid source"):n?.[o]?.[r?.key]?.label||s?.label||o})]})}function dPt({bindings:e,fieldsList:t}){return a.jsx(a.Fragment,{children:Object.entries(e).map(([n,o])=>a.jsx(oO,{children:a.jsx(U3e,{attribute:n,binding:o,fieldsList:t})},n))})}function pPt({attributes:e,bindings:t,fieldsList:n}){const{updateBlockBindings:o}=m_(),r=Yn("medium","<");return a.jsx(a.Fragment,{children:e.map(s=>{const i=t[s];return a.jsx(tt,{hasValue:()=>!!i,label:s,onDeselect:()=>{o({[s]:void 0})},children:a.jsxs(ll,{placement:r?"bottom-start":"left-start",children:[a.jsx(ll.TriggerButton,{render:a.jsx(oO,{}),children:a.jsx(U3e,{attribute:s,binding:i,fieldsList:n})}),a.jsx(ll.Popover,{gutter:r?8:36,children:a.jsx(uPt,{fieldsList:n,attribute:s,binding:i})})]})},s)})})}const fPt=({name:e,metadata:t})=>{const n=x.useContext(Cf),{removeAllBlockBindings:o}=m_(),r=lyt(e),s=lPt(),i={},{fieldsList:c,canUpdateBlockBindings:l}=G(f=>{if(!r||r.length===0)return Wte;const b=aie();return Object.entries(b).forEach(([h,{getFieldsList:g,usesContext:z}])=>{if(g){const A={};if(z?.length)for(const v of z)A[v]=n[v];const _=g({select:f,context:A});Object.keys(_||{}).length&&(i[h]={..._})}}),{fieldsList:Object.values(i).length>0?i:Wte,canUpdateBlockBindings:f(Q).getSettings().canUpdateBlockBindings}},[n,r]);if(!r||r.length===0)return null;const{bindings:u}=t||{},d={...u};Object.keys(d).forEach(f=>{(!vW(e,f)||d[f].source==="core/pattern-overrides")&&delete d[f]});const p=!l||!Object.keys(c).length;return p&&Object.keys(d).length===0?null:a.jsx(et,{group:"bindings",children:a.jsxs(En,{label:m("Attributes"),resetAll:()=>{o()},dropdownMenuProps:s,className:"block-editor-bindings__panel",children:[a.jsx(tb,{isBordered:!0,isSeparated:!0,children:p?a.jsx(dPt,{bindings:d,fieldsList:c}):a.jsx(pPt,{attributes:r,bindings:d,fieldsList:c})}),a.jsx(Sn,{as:"div",variant:"muted",children:a.jsx("p",{children:m("Attributes connected to custom fields or other dynamic data.")})})]})})},bPt={edit:fPt,attributeKeys:["metadata"],hasSupport(){return!0}};function hPt(e){return e.__experimentalLabel||Et(e,"renaming",!0)&&(e.__experimentalLabel=(n,{context:o})=>{const{metadata:r}=n;if(o==="list-view"&&r?.name)return r.name}),e}Bn("blocks.registerBlockType","core/metadata/addLabelCallback",hPt);function mPt(e){ZLt(e)}function gPt({clientId:e,layout:t}){const n=G(o=>{const{isBlockSelected:r,isDraggingBlocks:s,getTemplateLock:i,getBlockEditingMode:c}=o(Q);return!(!s()&&!r(e)||i(e)||c(e)!=="default")},[e]);return a.jsxs(a.Fragment,{children:[a.jsx(mPt,{clientId:e}),n&&a.jsx(F3e,{clientId:e,parentLayout:t})]})}const MPt=Or(e=>t=>t.attributes.layout?.type!=="grid"?a.jsx(e,{...t},"edit"):a.jsxs(a.Fragment,{children:[a.jsx(gPt,{clientId:t.clientId,layout:t.attributes.layout}),a.jsx(e,{...t},"edit")]}),"addGridVisualizerToBlockEdit");Bn("editor.BlockEdit","core/editor/grid-visualizer",MPt);function X1(e){const t=e.style?.border||{};return{className:nze(e)||void 0,style:Rm({border:t})}}function cu(e){const{colors:t}=ub(),n=X1(e),{borderColor:o}=e;if(o){const r=a2({colors:t,namedColor:o});n.style.borderColor=r.color}return n}function db(e){const t=e.style?.shadow||"";return{style:Rm({shadow:t})}}function P1(e){const{backgroundColor:t,textColor:n,gradient:o,style:r}=e,s=Pt("background-color",t),i=Pt("color",n),c=R1(o),l=c||r?.color?.gradient,u=oe(i,c,{[s]:!l&&!!s,"has-text-color":n||r?.color?.text,"has-background":t||r?.color?.background||o||r?.color?.gradient,"has-link-color":r?.elements?.link?.color}),d=r?.color||{},p=Rm({color:d});return{className:u||void 0,style:p}}function BO(e){const{backgroundColor:t,textColor:n,gradient:o}=e,[r,s,i,c,l,u]=Un("color.palette.custom","color.palette.theme","color.palette.default","color.gradients.custom","color.gradients.theme","color.gradients.default"),d=x.useMemo(()=>[...r||[],...s||[],...i||[]],[r,s,i]),p=x.useMemo(()=>[...c||[],...l||[],...u||[]],[c,l,u]),f=P1(e);if(t){const b=Sf(d,t);f.style.backgroundColor=b.color}if(o&&(f.style.background=Ahe(p,o)),n){const b=Sf(d,n);f.style.color=b.color}return f}function Tm(e){const{style:t}=e,n=t?.spacing||{};return{style:Rm({spacing:n})}}const{kebabCase:zPt}=ct(tr);function SI(e,t){let n=e?.style?.typography||{};n={...n,fontSize:F_({size:e?.style?.typography?.fontSize},t)};const o=Rm({typography:n}),r=e?.fontFamily?`has-${zPt(e.fontFamily)}-font-family`:"",s=e?.style?.typography?.textAlign?`has-text-align-${e?.style?.typography?.textAlign}`:"";return{className:oe(r,s,Nx(e?.fontSize)),style:o}}iBt([OI,vI,v3e,x3e,wI,I3e,jge,PLt,rPt,cPt,bPt,H3e].filter(Boolean));lBt([OI,vI,ZRt,wI,S3e,mLt,I3e,q3e,T3e,oze,jge,WEt,H3e]);uBt([OI,vI,v3e,_Bt,x3e,oze,S3e,wI,q3e,T3e]);const Nte={button:"wp-element-button",caption:"wp-element-caption"},z0=e=>Nte[e]?Nte[e]:"";function CI(e,t,n){if(e==null||e===!1)return;if(Array.isArray(e))return fT(e,t,n);switch(typeof e){case"string":case"number":return}const{type:o,props:r}=e;switch(o){case x.StrictMode:case x.Fragment:return fT(r.children,t,n);case i0:return;case Ht.Content:return X3e(t,n);case mI:t.push(r.value);return}switch(typeof o){case"string":return typeof r.children<"u"?fT(r.children,t,n):void 0;case"function":const s=o.prototype&&typeof o.prototype.render=="function"?new o(r).render():o(r);return CI(s,t,n)}}function fT(e,...t){e=Array.isArray(e)?e:[e];for(let n=0;n<e.length;n++)CI(e[n],...t)}function X3e(e,t){for(let n=0;n<t.length;n++){const{name:o,attributes:r,innerBlocks:s}=t[n],i=Sie(o,r,a.jsx(Ht.Content,{}));CI(i,e,s)}}function OPt(e=[]){Q4.skipFilters=!0;const t=[];return X3e(t,e),Q4.skipFilters=!1,t.map(n=>n instanceof Xo?n:Xo.fromHTMLString(n))}function yPt({clientId:e,resizableBoxProps:t,...n}){return a.jsx(wm,{clientId:e,__unstablePopoverSlot:"block-toolbar",...n,children:a.jsx(Ca,{...t})})}function APt({blockTypes:e,value:t,onItemChange:n}){return a.jsx("ul",{className:"block-editor-block-manager__checklist",children:e.map(o=>a.jsxs("li",{className:"block-editor-block-manager__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:o.title,checked:t.includes(o.name),onChange:(...r)=>n(o,...r)}),a.jsx(Zn,{icon:o.icon})]},o.name))})}function nN({title:e,blockTypes:t,selectedBlockTypes:n,onChange:o}){const r=vt(nN),s=x.useCallback((p,f)=>{o(f?[...n,p]:n.filter(({name:b})=>b!==p.name))},[n,o]),i=x.useCallback(p=>{o(p?[...n,...t.filter(f=>!n.find(({name:b})=>b===f.name))]:n.filter(f=>!t.find(({name:b})=>b===f.name)))},[t,n,o]);if(!t.length)return null;const c=t.map(({name:p})=>p).filter(p=>(n??[]).some(f=>f.name===p)),l="block-editor-block-manager__category-title-"+r,u=c.length===t.length,d=!u&&c.length>0;return a.jsxs("div",{role:"group","aria-labelledby":l,className:"block-editor-block-manager__category",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,checked:u,onChange:i,className:"block-editor-block-manager__category-title",indeterminate:d,label:a.jsx("span",{id:l,children:e})}),a.jsx(APt,{blockTypes:t,value:c,onItemChange:s})]})}function vPt({blockTypes:e,selectedBlockTypes:t,onChange:n}){const o=C1(Yt,500),[r,s]=x.useState(""),{categories:i,isMatchingSearchTerm:c}=G(p=>({categories:p(kt).getCategories(),isMatchingSearchTerm:p(kt).isMatchingSearchTerm}),[]);function l(){n(e)}const u=e.filter(p=>!r||c(p,r)),d=e.length-t.length;return x.useEffect(()=>{if(!r)return;const p=u.length,f=xe(Dn("%d result found.","%d results found.",p),p);o(f)},[u?.length,r,o]),a.jsxs("div",{className:"block-editor-block-manager__content",children:[!!d&&a.jsxs("div",{className:"block-editor-block-manager__disabled-blocks-count",children:[xe(Dn("%d block is hidden.","%d blocks are hidden.",d),d),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:l,children:m("Reset")})]}),a.jsx(iu,{__nextHasNoMarginBottom:!0,label:m("Search for a block"),placeholder:m("Search for a block"),value:r,onChange:p=>s(p),className:"block-editor-block-manager__search"}),a.jsxs("div",{tabIndex:"0",role:"region","aria-label":m("Available block types"),className:"block-editor-block-manager__results",children:[u.length===0&&a.jsx("p",{className:"block-editor-block-manager__no-results",children:m("No blocks found.")}),i.map(p=>a.jsx(nN,{title:p.title,blockTypes:u.filter(f=>f.category===p.slug),selectedBlockTypes:t,onChange:n},p.slug)),a.jsx(nN,{title:m("Uncategorized"),blockTypes:u.filter(({category:p})=>!p),selectedBlockTypes:t,onChange:n})]})]})}function xPt({rules:e}){const{clientIds:t,selectPrevious:n,message:o}=G(l=>ct(l(Q)).getRemovalPromptData()),{clearBlockRemovalPrompt:r,setBlockRemovalRules:s,privateRemoveBlocks:i}=ct(Oe(Q));if(x.useEffect(()=>(s(e),()=>{s()}),[e,s]),!o)return;const c=()=>{i(t,n,!0),r()};return a.jsxs(Zo,{title:m("Be careful!"),onRequestClose:r,size:"medium",children:[a.jsx("p",{children:o}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{variant:"tertiary",onClick:r,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",onClick:c,__next40pxDefaultSize:!0,children:m("Delete")})]})]})}const Bte=[{value:"fill",label:We("Fill","Scale option for dimensions control"),help:m("Fill the space by stretching the content.")},{value:"contain",label:We("Contain","Scale option for dimensions control"),help:m("Fit the content to the space without clipping.")},{value:"cover",label:We("Cover","Scale option for dimensions control"),help:m("Fill the space by clipping what doesn't fit.")},{value:"none",label:We("None","Scale option for dimensions control"),help:m("Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding.")},{value:"scale-down",label:We("Scale down","Scale option for dimensions control"),help:m("Scale down the content to fit the space if it is too big. Content that is too small will have additional padding.")}];function wPt({panelId:e,value:t,onChange:n,options:o=Bte,defaultValue:r=Bte[0].value,isShownByDefault:s=!0}){const i=t??"fill",c=x.useMemo(()=>o.reduce((l,u)=>(l[u.value]=u.help,l),{}),[o]);return a.jsx(tt,{label:m("Scale"),isShownByDefault:s,hasValue:()=>i!==r,onDeselect:()=>n(r),panelId:e,children:a.jsx(Do,{__nextHasNoMarginBottom:!0,label:m("Scale"),isBlock:!0,help:c[i],value:i,onChange:n,size:"__unstable-large",children:o.map(l=>a.jsx(Kn,{...l},l.value))})})}const Lte=He(tt,{target:"ef8pe3d0"})({name:"957xgf",styles:"grid-column:span 1"});function _Pt({panelId:e,value:t={},onChange:n=()=>{},units:o,isShownByDefault:r=!0}){var s,i;const c=t.width==="auto"?"":(s=t.width)!==null&&s!==void 0?s:"",l=t.height==="auto"?"":(i=t.height)!==null&&i!==void 0?i:"",u=d=>p=>{const f={...t};p?f[d]=p:delete f[d],n(f)};return a.jsxs(a.Fragment,{children:[a.jsx(Lte,{label:m("Width"),isShownByDefault:r,hasValue:()=>c!=="",onDeselect:u("width"),panelId:e,children:a.jsx(Ro,{label:m("Width"),placeholder:m("Auto"),labelPosition:"top",units:o,min:0,value:c,onChange:u("width"),size:"__unstable-large"})}),a.jsx(Lte,{label:m("Height"),isShownByDefault:r,hasValue:()=>l!=="",onDeselect:u("height"),panelId:e,children:a.jsx(Ro,{label:m("Height"),placeholder:m("Auto"),labelPosition:"top",units:o,min:0,value:l,onChange:u("height"),size:"__unstable-large"})})]})}function kPt({panelId:e,value:t={},onChange:n=()=>{},aspectRatioOptions:o,defaultAspectRatio:r="auto",scaleOptions:s,defaultScale:i="fill",unitsOptions:c,tools:l=["aspectRatio","widthHeight","scale"]}){const u=t.width===void 0||t.width==="auto"?null:t.width,d=t.height===void 0||t.height==="auto"?null:t.height,p=t.aspectRatio===void 0||t.aspectRatio==="auto"?null:t.aspectRatio,f=t.scale===void 0||t.scale==="fill"?null:t.scale,[b,h]=x.useState(f),[g,z]=x.useState(p),A=u&&d?"custom":g,_=p||u&&d;return a.jsxs(a.Fragment,{children:[l.includes("aspectRatio")&&a.jsx(PMe,{panelId:e,options:o,defaultValue:r,value:A,onChange:v=>{const M={...t};v=v==="auto"?null:v,z(v),v?M.aspectRatio=v:delete M.aspectRatio,v?b?M.scale=b:(M.scale=i,h(i)):delete M.scale,v!=="custom"&&u&&d&&delete M.height,n(M)}}),l.includes("widthHeight")&&a.jsx(_Pt,{panelId:e,units:c,value:{width:u,height:d},onChange:({width:v,height:M})=>{const y={...t};v=v==="auto"?null:v,M=M==="auto"?null:M,v?y.width=v:delete y.width,M?y.height=M:delete y.height,v&&M?delete y.aspectRatio:g&&(y.aspectRatio=g),!g&&!!v!=!!M?delete y.scale:b?y.scale=b:(y.scale=i,h(i)),n(y)}}),l.includes("scale")&&_&&a.jsx(wPt,{panelId:e,options:s,defaultValue:i,value:b,onChange:v=>{const M={...t};v=v==="fill"?null:v,h(v),v?M.scale=v:delete M.scale,n(M)}})]})}const Pte=[{label:We("Thumbnail","Image size option for resolution control"),value:"thumbnail"},{label:We("Medium","Image size option for resolution control"),value:"medium"},{label:We("Large","Image size option for resolution control"),value:"large"},{label:We("Full Size","Image size option for resolution control"),value:"full"}];function SPt({panelId:e,value:t,onChange:n,options:o=Pte,defaultValue:r=Pte[0].value,isShownByDefault:s=!0,resetAllFilter:i}){const c=t??r;return a.jsx(tt,{hasValue:()=>c!==r,label:m("Resolution"),onDeselect:()=>n(r),isShownByDefault:s,panelId:e,resetAllFilter:i,children:a.jsx(jn,{__nextHasNoMarginBottom:!0,label:m("Resolution"),value:c,options:o,onChange:n,help:m("Select the size of the source image."),size:"__unstable-large"})})}const Ln={};rgt(Ln,{...SEt,ExperimentalBlockCanvas:h8t,ExperimentalBlockEditorProvider:W_,getDuotoneFilter:sI,getRichTextValues:OPt,PrivateQuickInserter:xge,extractWords:d7,getNormalizedSearchTerms:M_,normalizeString:Bx,PrivateListView:jze,ResizableBoxPopover:yPt,useHasBlockToolbar:cMe,cleanEmptyObject:Di,BlockQuickNavigation:M3e,LayoutStyle:gvt,BlockManager:vPt,BlockRemovalWarningModal:xPt,useLayoutClasses:D3e,useLayoutStyles:BLt,DimensionsTool:kPt,ResolutionTool:SPt,TabbedSidebar:yge,TextAlignmentControl:xMe,usesContextKey:r3e,useFlashEditableBlocks:hme,useZoomOut:Age,globalStylesDataKey:dO,globalStylesLinksDataKey:k2e,selectBlockPatternsKey:Wz,requiresWrapperOnCopy:Cme,PrivateRichText:nk,PrivateInserterLibrary:O3e,reusableBlocksSelectKey:S2e,PrivateBlockPopover:K7,PrivatePublishDateTimePicker:y3e,useSpacingSizes:LMe,useBlockDisplayTitle:Fd,__unstableBlockStyleVariationOverridesWithConfig:REt,setBackgroundStyleDefaults:aI,sectionRootClientIdKey:Nz,CommentIconSlotFill:oMe,CommentIconToolbarSlotFill:aMe});let bT;const hT=new WeakMap;function CPt(e){if(bT||(bT=eh(Ln)),!hT.has(e)){const t=bT.getRichTextValues([e]);hT.set(e,t)}return hT.get(e)}const mT=new WeakMap;function qPt(e){if(!mT.has(e)){const t=[];for(const n of CPt(e))n&&n.replacements.forEach(({type:o,attributes:r})=>{o==="core/footnote"&&t.push(r["data-fn"])});mT.set(e,t)}return mT.get(e)}function RPt(e){return e.flatMap(qPt)}let gT={};function jte(e,t){const n={blocks:e};if(!t||t.footnotes===void 0)return n;const o=RPt(e),r=t.footnotes?JSON.parse(t.footnotes):[];if(r.map(d=>d.id).join("")===o.join(""))return n;const i=o.map(d=>r.find(p=>p.id===d)||gT[d]||{id:d,content:""});function c(d){if(!d||Array.isArray(d)||typeof d!="object")return d;d={...d};for(const p in d){const f=d[p];if(Array.isArray(f)){d[p]=f.map(c);continue}if(typeof f!="string"&&!(f instanceof Xo))continue;const b=typeof f=="string"?Xo.fromHTMLString(f):new Xo(f);let h=!1;b.replacements.forEach(g=>{if(g.type==="core/footnote"){const z=g.attributes["data-fn"],A=o.indexOf(z),_=eo({html:g.innerHTML});_.text=String(A+1),_.formats=Array.from({length:_.text.length},()=>_.formats[0]),_.replacements=Array.from({length:_.text.length},()=>_.replacements[0]),g.innerHTML=T0({value:_}),h=!0}}),h&&(d[p]=typeof f=="string"?b.toHTMLString():b)}return d}function l(d){return d.map(p=>({...p,attributes:c(p.attributes),innerBlocks:l(p.innerBlocks)}))}const u=l(e);return gT={...gT,...r.reduce((d,p)=>(o.includes(p.id)||(d[p.id]=p),d),{})},{meta:{...t,footnotes:JSON.stringify(i)},blocks:u}}const TPt=[],Ite=new WeakMap;function Ni(e,t,{id:n}={}){const o=YB(e,t),r=n??o,{getEntityRecord:s,getEntityRecordEdits:i}=G(No),{content:c,editedBlocks:l,meta:u}=G(g=>{if(!r)return{};const{getEditedEntityRecord:z}=g(No),A=z(e,t,r);return{editedBlocks:A.blocks,content:A.content,meta:A.meta}},[e,t,r]),{__unstableCreateUndoLevel:d,editEntityRecord:p}=Oe(No),f=x.useMemo(()=>{if(!r)return;if(l)return l;if(!c||typeof c!="string")return TPt;const g=i(e,t,r),A=!g||!Object.keys(g).length?s(e,t,r):g;let _=Ite.get(A);return _||(_=Ko(c),Ite.set(A,_)),_},[e,t,r,l,c,s,i]),b=x.useCallback((g,z)=>{if(f===g)return d(e,t,r);const{selection:_,...v}=z,M={selection:_,content:({blocks:y=[]})=>Jd(y),...jte(g,u)};p(e,t,r,M,{isCached:!1,...v})},[e,t,r,f,u,d,p]),h=x.useCallback((g,z)=>{const{selection:A,..._}=z,v=jte(g,u),M={selection:A,...v};p(e,t,r,M,{isCached:!0,..._})},[e,t,r,u,p]);return[f,h,b]}function Ao(e,t,n,o){const r=YB(e,t),s=o??r,{value:i,fullValue:c}=G(d=>{const{getEntityRecord:p,getEditedEntityRecord:f}=d(No),b=p(e,t,s),h=f(e,t,s);return b&&h?{value:h[n],fullValue:b[n]}:{}},[e,t,s,n]),{editEntityRecord:l}=Oe(No),u=x.useCallback(d=>{l(e,t,s,{[n]:d})},[l,e,t,s,n]);return[i,u,c]}const G3e={};jTe(G3e,{useEntityRecordsWithPermissions:QBe,RECEIVE_INTERMEDIATE_RESULTS:F0e});const qI=[...r1e,...s1e.filter(e=>!!e.name)],EPt=qI.reduce((e,t)=>{const{kind:n,name:o,plural:r}=t;return e[J2(n,o)]=(s,i,c)=>Zd(s,n,o,i,c),r&&(e[J2(n,r,"get")]=(s,i)=>oB(s,n,o,i)),e},{}),WPt=qI.reduce((e,t)=>{const{kind:n,name:o,plural:r}=t;if(e[J2(n,o)]=(s,i)=>Zse(n,o,s,i),r){const s=J2(n,r,"get");e[s]=(...i)=>G4(n,o,...i),e[s].shouldInvalidate=i=>G4.shouldInvalidate(i,n,o)}return e},{}),NPt=qI.reduce((e,t)=>{const{kind:n,name:o}=t;return e[J2(n,o,"save")]=(r,s)=>Kse(n,o,r,s),e[J2(n,o,"delete")]=(r,s,i)=>Gse(n,o,r,s,i),e},{}),BPt=()=>({reducer:tTe,actions:{...XBe,...dBe,...NPt,...UBe()},selectors:{...GBe,...PTe,...EPt},resolvers:{...jBe,...WPt}}),Me=x1(No,BPt());eh(Me).registerPrivateSelectors(GTe);eh(Me).registerPrivateActions(fBe);Us(Me);const LPt={...mW,richEditingEnabled:!0,codeEditingEnabled:!0,fontLibraryEnabled:!0,enableCustomFields:void 0,defaultRenderingMode:"post-only"};function PPt(e={},t){switch(t.type){case"SET_IS_READY":return{...e,[t.kind]:{...e[t.kind],[t.name]:!0}}}return e}function jPt(e={},t){var n;switch(t.type){case"REGISTER_ENTITY_ACTION":return{...e,[t.kind]:{...e[t.kind],[t.name]:[...((n=e[t.kind]?.[t.name])!==null&&n!==void 0?n:[]).filter(r=>r.id!==t.config.id),t.config]}};case"UNREGISTER_ENTITY_ACTION":{var o;return{...e,[t.kind]:{...e[t.kind],[t.name]:((o=e[t.kind]?.[t.name])!==null&&o!==void 0?o:[]).filter(r=>r.id!==t.actionId)}}}}return e}function IPt(e={},t){var n,o;switch(t.type){case"REGISTER_ENTITY_FIELD":return{...e,[t.kind]:{...e[t.kind],[t.name]:[...((n=e[t.kind]?.[t.name])!==null&&n!==void 0?n:[]).filter(r=>r.id!==t.config.id),t.config]}};case"UNREGISTER_ENTITY_FIELD":return{...e,[t.kind]:{...e[t.kind],[t.name]:((o=e[t.kind]?.[t.name])!==null&&o!==void 0?o:[]).filter(r=>r.id!==t.fieldId)}}}return e}const DPt=J0({actions:jPt,fields:IPt,isReady:PPt});function RI(e){return e&&typeof e=="object"&&"raw"in e?e.raw:e}function FPt(e=null,t){switch(t.type){case"SET_EDITED_POST":return t.postId}return e}function $Pt(e=null,t){switch(t.type){case"SET_CURRENT_TEMPLATE_ID":return t.id}return e}function VPt(e=null,t){switch(t.type){case"SET_EDITED_POST":return t.postType}return e}function HPt(e={isValid:!0},t){switch(t.type){case"SET_TEMPLATE_VALIDITY":return{...e,isValid:t.isValid}}return e}function UPt(e={},t){switch(t.type){case"REQUEST_POST_UPDATE_START":case"REQUEST_POST_UPDATE_FINISH":return{pending:t.type==="REQUEST_POST_UPDATE_START",options:t.options||{}}}return e}function XPt(e={},t){switch(t.type){case"REQUEST_POST_DELETE_START":case"REQUEST_POST_DELETE_FINISH":return{pending:t.type==="REQUEST_POST_DELETE_START"}}return e}function GPt(e={isLocked:!1},t){switch(t.type){case"UPDATE_POST_LOCK":return t.lock}return e}function KPt(e={},t){switch(t.type){case"LOCK_POST_SAVING":return{...e,[t.lockName]:!0};case"UNLOCK_POST_SAVING":{const{[t.lockName]:n,...o}=e;return o}}return e}function YPt(e={},t){switch(t.type){case"LOCK_POST_AUTOSAVING":return{...e,[t.lockName]:!0};case"UNLOCK_POST_AUTOSAVING":{const{[t.lockName]:n,...o}=e;return o}}return e}function ZPt(e=LPt,t){switch(t.type){case"UPDATE_EDITOR_SETTINGS":return{...e,...t.settings}}return e}function QPt(e="post-only",t){switch(t.type){case"SET_RENDERING_MODE":return t.mode}return e}function JPt(e="Desktop",t){switch(t.type){case"SET_DEVICE_TYPE":return t.deviceType}return e}function ejt(e=[],t){switch(t.type){case"REMOVE_PANEL":if(!e.includes(t.panelName))return[...e,t.panelName]}return e}function tjt(e=!1,t){switch(t.type){case"SET_IS_LIST_VIEW_OPENED":return t.isOpen?!1:e;case"SET_IS_INSERTER_OPENED":return t.value}return e}function njt(e=!1,t){switch(t.type){case"SET_IS_INSERTER_OPENED":return t.value?!1:e;case"SET_IS_LIST_VIEW_OPENED":return t.isOpen}return e}function ojt(e={current:null}){return e}function rjt(e={current:null}){return e}function sjt(e=!1,t){switch(t.type){case"OPEN_PUBLISH_SIDEBAR":return!0;case"CLOSE_PUBLISH_SIDEBAR":return!1;case"TOGGLE_PUBLISH_SIDEBAR":return!e}return e}const ijt=J0({postId:FPt,postType:VPt,templateId:$Pt,saving:UPt,deleting:XPt,postLock:GPt,template:HPt,postSavingLock:KPt,editorSettings:ZPt,postAutosavingLock:YPt,renderingMode:QPt,deviceType:JPt,removedPanels:ejt,blockInserterPanel:tjt,inserterSidebarToggleRef:rjt,listViewPanel:njt,listViewToggleRef:ojt,publishSidebarActive:sjt,dataviews:DPt}),ajt=new Set(["meta"]),cjt="core/editor",K3e=/%(?:postname|pagename)%/,Y3e=60*1e3,ljt=["title","excerpt","content"],L0="wp_template",Fi="wp_template_part",Vl="wp_block",Wf="wp_navigation",Z3e={custom:"custom",theme:"theme",plugin:"plugin"},Q3e=["wp_template","wp_template_part"],ujt=[...Q3e,"wp_block","wp_navigation"];function TI(e){return e==="header"?YP:e==="footer"?KP:e==="sidebar"?ZP:Qf}const{lock:djt,unlock:St}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/editor"),Dte={},LO=e=>{var t;if(!e)return Dte;const{templateTypes:n,templateAreas:o,template:r}=e,{description:s,slug:i,title:c,area:l}=r,{title:u,description:d}=(t=Object.values(n).find(g=>g.slug===i))!==null&&t!==void 0?t:Dte,p=typeof c=="string"?c:c?.rendered,f=typeof s=="string"?s:s?.raw,h=o?.map(g=>({...g,icon:TI(g.icon)}))?.find(g=>l===g.area)?.icon||ou;return{title:p&&p!==i?p:u||i,description:f||d,icon:h}},e3={},pjt=At(e=>()=>e(Me).hasUndo()),fjt=At(e=>()=>e(Me).hasRedo());function J3e(e){return G1(e).status==="auto-draft"}function eOe(e){return"content"in t3(e)}const EI=At(e=>t=>{const n=$i(t),o=Vi(t);return e(Me).hasEditsForEntityRecord("postType",n,o)}),bjt=At(e=>t=>{const n=e(Me).__experimentalGetDirtyEntityRecords(),{type:o,id:r}=G1(t);return n.some(s=>s.kind!=="postType"||s.name!==o||s.key!==r)});function hjt(e){return!EI(e)&&J3e(e)}const G1=At(e=>t=>{const n=Vi(t),o=$i(t),r=e(Me).getRawEntityRecord("postType",o,n);return r||e3});function $i(e){return e.postType}function Vi(e){return e.postId}function mjt(e){return e.templateId}function gjt(e){var t;return(t=G1(e)._links?.["version-history"]?.[0]?.count)!==null&&t!==void 0?t:0}function Mjt(e){var t;return(t=G1(e)._links?.["predecessor-version"]?.[0]?.id)!==null&&t!==void 0?t:null}const t3=At(e=>t=>{const n=$i(t),o=Vi(t);return e(Me).getEntityRecordEdits("postType",n,o)||e3});function jM(e,t){switch(t){case"type":return $i(e);case"id":return Vi(e);default:const n=G1(e);if(!n.hasOwnProperty(t))break;return RI(n[t])}}const zjt=It((e,t)=>{const n=t3(e);return n.hasOwnProperty(t)?{...jM(e,t),...n[t]}:jM(e,t)},(e,t)=>[jM(e,t),t3(e)[t]]);function mr(e,t){switch(t){case"content":return n3(e)}const n=t3(e);return n.hasOwnProperty(t)?ajt.has(t)?zjt(e,t):n[t]:jM(e,t)}const tOe=At(e=>(t,n)=>{if(!ljt.includes(n)&&n!=="preview_link")return;const o=$i(t);if(o==="wp_template")return!1;const r=Vi(t),s=e(Me).getCurrentUser()?.id,i=e(Me).getAutosave(o,r,s);if(i)return RI(i[n])});function Ojt(e){return mr(e,"status")==="private"?"private":mr(e,"password")?"password":"public"}function yjt(e){return G1(e).status==="pending"}function WI(e,t){const n=t||G1(e);return["publish","private"].indexOf(n.status)!==-1||n.status==="future"&&!Vbe(new Date(Number(_f(n.date))-Y3e))}function Ajt(e){return G1(e).status==="future"&&!WI(e)}function vjt(e){const t=G1(e);return EI(e)||["publish","private","future"].indexOf(t.status)===-1}function nOe(e){return Em(e)?!1:!!mr(e,"title")||!!mr(e,"excerpt")||!oOe(e)||f0.OS==="native"}const oOe=At(e=>t=>{const n=Vi(t),o=$i(t),r=e(Me).getEditedEntityRecord("postType",o,n);if(typeof r.content!="function")return!r.content;const s=mr(t,"blocks");if(s.length===0)return!0;if(s.length>1)return!1;const i=s[0].name;return i!==Mr()&&i!==yd()?!1:!n3(t)}),xjt=At(e=>t=>{if(!nOe(t)||iOe(t))return!1;const n=$i(t);if(n==="wp_template")return!1;const o=Vi(t),r=e(Me).hasFetchedAutosaves(n,o),s=e(Me).getCurrentUser()?.id,i=e(Me).getAutosave(n,o,s);return r?!i||eOe(t)?!0:["title","excerpt","meta"].some(c=>RI(i[c])!==mr(t,c)):!1});function wjt(e){const t=mr(e,"date"),n=new Date(Number(_f(t))-Y3e);return Vbe(n)}function _jt(e){const t=mr(e,"date"),n=mr(e,"modified"),o=G1(e).status;return o==="draft"||o==="auto-draft"||o==="pending"?t===n||t===null:!1}function kjt(e){return!!e.deleting.pending}function Em(e){return!!e.saving.pending}const Sjt=At(e=>t=>{const n=e(Me).__experimentalGetEntitiesBeingSaved(),{type:o,id:r}=G1(t);return n.some(s=>s.kind!=="postType"||s.name!==o||s.key!==r)}),Cjt=At(e=>t=>{const n=$i(t),o=Vi(t);return!e(Me).getLastEntitySaveError("postType",n,o)}),qjt=At(e=>t=>{const n=$i(t),o=Vi(t);return!!e(Me).getLastEntitySaveError("postType",n,o)});function Rjt(e){return Em(e)&&!!e.saving.options?.isAutosave}function Tjt(e){return Em(e)&&!!e.saving.options?.isPreview}function Ejt(e){if(e.saving.pending||Em(e))return;let t=tOe(e,"preview_link");(!t||G1(e).status==="draft")&&(t=mr(e,"link"),t&&(t=tn(t,{preview:!0})));const n=mr(e,"featured_media");return t&&n?tn(t,{_thumbnail_id:n}):t}const Wjt=At(e=>()=>{const t=e(Q).getBlocks();if(t.length>2)return null;let n;if(t.length===1&&(n=t[0].name,n==="core/embed")){const o=t[0].attributes?.providerNameSlug;["youtube","vimeo"].includes(o)?n="core/video":["spotify","soundcloud"].includes(o)&&(n="core/audio")}switch(t.length===2&&t[1].name==="core/paragraph"&&(n=t[0].name),n){case"core/image":return"image";case"core/quote":case"core/pullquote":return"quote";case"core/gallery":return"gallery";case"core/video":return"video";case"core/audio":return"audio";default:return null}}),n3=At(e=>t=>{const n=Vi(t),o=$i(t),r=e(Me).getEditedEntityRecord("postType",o,n);if(r){if(typeof r.content=="function")return r.content(r);if(r.blocks)return Jd(r.blocks);if(r.content)return r.content}return""});function Njt(e){return Em(e)&&!WI(e)&&mr(e,"status")==="publish"}function rOe(e){const t=mr(e,"permalink_template");return K3e.test(t)}function Bjt(e){const t=sOe(e);if(!t)return null;const{prefix:n,postName:o,suffix:r}=t;return rOe(e)?n+o+r:n}function Ljt(e){return mr(e,"slug")||_5(mr(e,"title"))||Vi(e)}function sOe(e){const t=mr(e,"permalink_template");if(!t)return null;const n=mr(e,"slug")||mr(e,"generated_slug"),[o,r]=t.split(K3e);return{prefix:o,postName:n,suffix:r}}function Pjt(e){return e.postLock.isLocked}function jjt(e){return Object.keys(e.postSavingLock).length>0}function iOe(e){return Object.keys(e.postAutosavingLock).length>0}function Ijt(e){return e.postLock.isTakeover}function Djt(e){return e.postLock.user}function Fjt(e){return e.postLock.activePostLock}function $jt(e){return!!G1(e)._links?.hasOwnProperty("wp:action-unfiltered-html")}const Vjt=At(e=>()=>!!e(ht).get("core","isPublishSidebarEnabled")),Hjt=It(e=>mr(e,"blocks")||Ko(n3(e)),e=>[mr(e,"blocks"),n3(e)]);function aOe(e,t){return e.removedPanels.includes(t)}const Ujt=At(e=>(t,n)=>{const o=e(ht).get("core","inactivePanels");return!aOe(t,n)&&!o?.includes(n)}),Xjt=At(e=>(t,n)=>!!e(ht).get("core","openPanels")?.includes(n));function Gjt(e){return Ke("select('core/editor').getEditorSelectionStart",{since:"5.8",alternative:"select('core/editor').getEditorSelection"}),mr(e,"selection")?.selectionStart}function Kjt(e){return Ke("select('core/editor').getEditorSelectionStart",{since:"5.8",alternative:"select('core/editor').getEditorSelection"}),mr(e,"selection")?.selectionEnd}function Yjt(e){return mr(e,"selection")}function Zjt(e){return!!e.postId}function Qjt(e){return e.editorSettings}function oN(e){return e.renderingMode}const Jjt=At(e=>t=>St(e(Q)).isZoomOut()?"Desktop":t.deviceType);function e7t(e){return e.listViewPanel}function t7t(e){return!!e.blockInserterPanel}const n7t=At(e=>()=>{var t;return(t=e(ht).get("core","editorMode"))!==null&&t!==void 0?t:"visual"});function o7t(){return Ke("select('core/editor').getStateBeforeOptimisticTransaction",{since:"5.7",hint:"No state history is kept on this store anymore"}),null}function r7t(){return Ke("select('core/editor').inSomeHistory",{since:"5.7",hint:"No state history is kept on this store anymore"}),!1}function pn(e){return At(t=>(n,...o)=>(Ke("`wp.data.select( 'core/editor' )."+e+"`",{since:"5.3",alternative:"`wp.data.select( 'core/block-editor' )."+e+"`",version:"6.2"}),t(Q)[e](...o)))}const s7t=pn("getBlockName"),i7t=pn("isBlockValid"),a7t=pn("getBlockAttributes"),c7t=pn("getBlock"),l7t=pn("getBlocks"),u7t=pn("getClientIdsOfDescendants"),d7t=pn("getClientIdsWithDescendants"),p7t=pn("getGlobalBlockCount"),f7t=pn("getBlocksByClientId"),b7t=pn("getBlockCount"),h7t=pn("getBlockSelectionStart"),m7t=pn("getBlockSelectionEnd"),g7t=pn("getSelectedBlockCount"),M7t=pn("hasSelectedBlock"),z7t=pn("getSelectedBlockClientId"),O7t=pn("getSelectedBlock"),y7t=pn("getBlockRootClientId"),A7t=pn("getBlockHierarchyRootClientId"),v7t=pn("getAdjacentBlockClientId"),x7t=pn("getPreviousBlockClientId"),w7t=pn("getNextBlockClientId"),_7t=pn("getSelectedBlocksInitialCaretPosition"),k7t=pn("getMultiSelectedBlockClientIds"),S7t=pn("getMultiSelectedBlocks"),C7t=pn("getFirstMultiSelectedBlockClientId"),q7t=pn("getLastMultiSelectedBlockClientId"),R7t=pn("isFirstMultiSelectedBlock"),T7t=pn("isBlockMultiSelected"),E7t=pn("isAncestorMultiSelected"),W7t=pn("getMultiSelectedBlocksStartClientId"),N7t=pn("getMultiSelectedBlocksEndClientId"),B7t=pn("getBlockOrder"),L7t=pn("getBlockIndex"),P7t=pn("isBlockSelected"),j7t=pn("hasSelectedInnerBlock"),I7t=pn("isBlockWithinSelection"),D7t=pn("hasMultiSelection"),F7t=pn("isMultiSelecting"),$7t=pn("isSelectionEnabled"),V7t=pn("getBlockMode"),H7t=pn("isTyping"),U7t=pn("isCaretWithinFormattedText"),X7t=pn("getBlockInsertionPoint"),G7t=pn("isBlockInsertionPointVisible"),K7t=pn("isValidTemplate"),Y7t=pn("getTemplate"),Z7t=pn("getTemplateLock"),Q7t=pn("canInsertBlockType"),J7t=pn("getInserterItems"),eIt=pn("hasInserterItems"),tIt=pn("getBlockListSettings"),nIt=At(e=>()=>(Ke("select('core/editor').__experimentalGetDefaultTemplateTypes",{since:"6.8",alternative:"select('core/core-data').getEntityRecord( 'root', '__unstableBase' )?.default_template_types"}),e(Me).getEntityRecord("root","__unstableBase")?.default_template_types)),oIt=At(e=>It(()=>(Ke("select('core/editor').__experimentalGetDefaultTemplatePartAreas",{since:"6.8",alternative:"select('core/core-data').getEntityRecord( 'root', '__unstableBase' )?.default_template_part_areas"}),(e(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[]).map(n=>({...n,icon:TI(n.icon)}))))),rIt=At(e=>It((t,n)=>{var o;Ke("select('core/editor').__experimentalGetDefaultTemplateType",{since:"6.8"});const r=e(Me).getEntityRecord("root","__unstableBase")?.default_template_types;return r&&(o=Object.values(r).find(s=>s.slug===n))!==null&&o!==void 0?o:e3})),sIt=At(e=>It((t,n)=>{if(Ke("select('core/editor').__experimentalGetTemplateInfo",{since:"6.8"}),!n)return e3;const o=e(Me).getEntityRecord("root","__unstableBase")?.default_template_types||[],r=e(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[];return LO({template:n,templateAreas:r,templateTypes:o})})),iIt=At(e=>t=>{const n=$i(t);return e(Me).getPostType(n)?.labels?.singular_name});function aIt(e){return e.publishSidebarActive}const cIt=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetDefaultTemplatePartAreas:oIt,__experimentalGetDefaultTemplateType:rIt,__experimentalGetDefaultTemplateTypes:nIt,__experimentalGetTemplateInfo:sIt,__unstableIsEditorReady:Zjt,canInsertBlockType:Q7t,canUserUseUnfilteredHTML:$jt,didPostSaveRequestFail:qjt,didPostSaveRequestSucceed:Cjt,getActivePostLock:Fjt,getAdjacentBlockClientId:v7t,getAutosaveAttribute:tOe,getBlock:c7t,getBlockAttributes:a7t,getBlockCount:b7t,getBlockHierarchyRootClientId:A7t,getBlockIndex:L7t,getBlockInsertionPoint:X7t,getBlockListSettings:tIt,getBlockMode:V7t,getBlockName:s7t,getBlockOrder:B7t,getBlockRootClientId:y7t,getBlockSelectionEnd:m7t,getBlockSelectionStart:h7t,getBlocks:l7t,getBlocksByClientId:f7t,getClientIdsOfDescendants:u7t,getClientIdsWithDescendants:d7t,getCurrentPost:G1,getCurrentPostAttribute:jM,getCurrentPostId:Vi,getCurrentPostLastRevisionId:Mjt,getCurrentPostRevisionsCount:gjt,getCurrentPostType:$i,getCurrentTemplateId:mjt,getDeviceType:Jjt,getEditedPostAttribute:mr,getEditedPostContent:n3,getEditedPostPreviewLink:Ejt,getEditedPostSlug:Ljt,getEditedPostVisibility:Ojt,getEditorBlocks:Hjt,getEditorMode:n7t,getEditorSelection:Yjt,getEditorSelectionEnd:Kjt,getEditorSelectionStart:Gjt,getEditorSettings:Qjt,getFirstMultiSelectedBlockClientId:C7t,getGlobalBlockCount:p7t,getInserterItems:J7t,getLastMultiSelectedBlockClientId:q7t,getMultiSelectedBlockClientIds:k7t,getMultiSelectedBlocks:S7t,getMultiSelectedBlocksEndClientId:N7t,getMultiSelectedBlocksStartClientId:W7t,getNextBlockClientId:w7t,getPermalink:Bjt,getPermalinkParts:sOe,getPostEdits:t3,getPostLockUser:Djt,getPostTypeLabel:iIt,getPreviousBlockClientId:x7t,getRenderingMode:oN,getSelectedBlock:O7t,getSelectedBlockClientId:z7t,getSelectedBlockCount:g7t,getSelectedBlocksInitialCaretPosition:_7t,getStateBeforeOptimisticTransaction:o7t,getSuggestedPostFormat:Wjt,getTemplate:Y7t,getTemplateLock:Z7t,hasChangedContent:eOe,hasEditorRedo:fjt,hasEditorUndo:pjt,hasInserterItems:eIt,hasMultiSelection:D7t,hasNonPostEntityChanges:bjt,hasSelectedBlock:M7t,hasSelectedInnerBlock:j7t,inSomeHistory:r7t,isAncestorMultiSelected:E7t,isAutosavingPost:Rjt,isBlockInsertionPointVisible:G7t,isBlockMultiSelected:T7t,isBlockSelected:P7t,isBlockValid:i7t,isBlockWithinSelection:I7t,isCaretWithinFormattedText:U7t,isCleanNewPost:hjt,isCurrentPostPending:yjt,isCurrentPostPublished:WI,isCurrentPostScheduled:Ajt,isDeletingPost:kjt,isEditedPostAutosaveable:xjt,isEditedPostBeingScheduled:wjt,isEditedPostDateFloating:_jt,isEditedPostDirty:EI,isEditedPostEmpty:oOe,isEditedPostNew:J3e,isEditedPostPublishable:vjt,isEditedPostSaveable:nOe,isEditorPanelEnabled:Ujt,isEditorPanelOpened:Xjt,isEditorPanelRemoved:aOe,isFirstMultiSelectedBlock:R7t,isInserterOpened:t7t,isListViewOpened:e7t,isMultiSelecting:F7t,isPermalinkEditable:rOe,isPostAutosavingLocked:iOe,isPostLockTakeover:Ijt,isPostLocked:Pjt,isPostSavingLocked:jjt,isPreviewingPost:Tjt,isPublishSidebarEnabled:Vjt,isPublishSidebarOpened:aIt,isPublishingPost:Njt,isSavingNonPostEntityChanges:Sjt,isSavingPost:Em,isSelectionEnabled:$7t,isTyping:H7t,isValidTemplate:K7t},Symbol.toStringTag,{value:"Module"}));function lIt(e,t){return`wp-autosave-block-editor-post-${t?"auto-draft":e}`}function uIt(e,t,n,o,r){window.sessionStorage.setItem(lIt(e,t),JSON.stringify({post_title:n,content:o,excerpt:r}))}function dIt(e){var t;const{previousPost:n,post:o,postType:r}=e;if(e.options?.isAutosave)return[];const s=["publish","private","future"],i=s.includes(n.status),c=s.includes(o.status),l=o.status==="trash"&&n.status!=="trash";let u,d=(t=r?.viewable)!==null&&t!==void 0?t:!1,p;l?(u=r.labels.item_trashed,d=!1):!i&&!c?(u=m("Draft saved."),p=!0):i&&!c?(u=r.labels.item_reverted_to_draft,d=!1):!i&&c?u={publish:r.labels.item_published,private:r.labels.item_published_privately,future:r.labels.item_scheduled}[o.status]:u=r.labels.item_updated;const f=[];return d&&f.push({label:p?m("View Preview"):r.labels.view_item,url:o.link}),[u,{id:"editor-save",type:"snackbar",actions:f}]}function pIt(e){const{post:t,edits:n,error:o}=e;if(o&&o.code==="rest_autosave_no_changes")return[];const r=["publish","private","future"],s=r.indexOf(t.status)!==-1,i={publish:m("Publishing failed."),private:m("Publishing failed."),future:m("Scheduling failed.")};let c=!s&&r.indexOf(n.status)!==-1?i[n.status]:m("Updating failed.");return o.message&&!/<\/?[^>]*>/.test(o.message)&&(c=[c,o.message].join(" ")),[c,{id:"editor-save"}]}function fIt(e){return[e.error.message&&e.error.code!=="unknown_error"?e.error.message:m("Trashing failed"),{id:"editor-trash-fail"}]}const bIt=(e,t,n)=>({dispatch:o})=>{if(o.setEditedPost(e.type,e.id),e.status==="auto-draft"&&n){let s;"content"in t?s=t.content:s=e.content.raw;let i=Ko(s);i=oz(i,n),o.resetEditorBlocks(i,{__unstableShouldCreateUndoLevel:!1})}t&&Object.values(t).some(([s,i])=>{var c;return i!==((c=e[s]?.raw)!==null&&c!==void 0?c:e[s])})&&o.editPost(t)};function hIt(){return Ke("wp.data.dispatch( 'core/editor' ).__experimentalTearDownEditor",{since:"6.5"}),{type:"DO_NOTHING"}}function mIt(){return Ke("wp.data.dispatch( 'core/editor' ).resetPost",{since:"6.0",version:"6.3",alternative:"Initialize the editor with the setupEditorState action"}),{type:"DO_NOTHING"}}function gIt(){return Ke("wp.data.dispatch( 'core/editor' ).updatePost",{since:"5.7",alternative:"Use the core entities store instead"}),{type:"DO_NOTHING"}}function MIt(e){return Ke("wp.data.dispatch( 'core/editor' ).setupEditorState",{since:"6.5",alternative:"wp.data.dispatch( 'core/editor' ).setEditedPost"}),cOe(e.type,e.id)}function cOe(e,t){return{type:"SET_EDITED_POST",postType:e,postId:t}}const zIt=(e,t)=>({select:n,registry:o})=>{const{id:r,type:s}=n.getCurrentPost();o.dispatch(Me).editEntityRecord("postType",s,r,e,t)},OIt=(e={})=>async({select:t,dispatch:n,registry:o})=>{if(!t.isEditedPostSaveable())return;const r=t.getEditedPostContent();e.isAutosave||n.editPost({content:r},{undoIgnore:!0});const s=t.getCurrentPost();let i={id:s.id,...o.select(Me).getEntityRecordNonTransientEdits("postType",s.type,s.id),content:r};n({type:"REQUEST_POST_UPDATE_START",options:e});let c=!1;try{i=await n6e("editor.preSavePost",i,e)}catch(l){c=l}if(!c)try{await o.dispatch(Me).saveEntityRecord("postType",s.type,i,e)}catch(l){c=l.message&&l.code!=="unknown_error"?l.message:m("An error occurred while updating.")}if(c||(c=o.select(Me).getLastEntitySaveError("postType",s.type,s.id)),!c)try{await gr("editor.__unstableSavePost",Promise.resolve(),e)}catch(l){c=l}if(!c)try{await t6e("editor.savePost",{id:s.id},e)}catch(l){c=l}if(n({type:"REQUEST_POST_UPDATE_FINISH",options:e}),c){const l=pIt({post:s,edits:i,error:c});l.length&&o.dispatch(mt).createErrorNotice(...l)}else{const l=t.getCurrentPost(),u=dIt({previousPost:s,post:l,postType:await o.resolveSelect(Me).getPostType(l.type),options:e});u.length&&o.dispatch(mt).createSuccessNotice(...u),e.isAutosave||o.dispatch(Q).__unstableMarkLastChangeAsPersistent()}};function yIt(){return Ke("wp.data.dispatch( 'core/editor' ).refreshPost",{since:"6.0",version:"6.3",alternative:"Use the core entities store instead"}),{type:"DO_NOTHING"}}const AIt=()=>async({select:e,dispatch:t,registry:n})=>{const o=e.getCurrentPostType(),r=await n.resolveSelect(Me).getPostType(o),{rest_base:s,rest_namespace:i="wp/v2"}=r;t({type:"REQUEST_POST_DELETE_START"});try{const c=e.getCurrentPost();await Tt({path:`/${i}/${s}/${c.id}`,method:"DELETE"}),await t.savePost()}catch(c){n.dispatch(mt).createErrorNotice(...fIt({error:c}))}t({type:"REQUEST_POST_DELETE_FINISH"})},vIt=({local:e=!1,...t}={})=>async({select:n,dispatch:o})=>{const r=n.getCurrentPost();if(r.type!=="wp_template")if(e){const s=n.isEditedPostNew(),i=n.getEditedPostAttribute("title"),c=n.getEditedPostAttribute("content"),l=n.getEditedPostAttribute("excerpt");uIt(r.id,s,i,c,l)}else await o.savePost({isAutosave:!0,...t})},xIt=({forceIsAutosaveable:e}={})=>async({select:t,dispatch:n})=>((e||t.isEditedPostAutosaveable())&&!t.isPostLocked()&&(["draft","auto-draft"].includes(t.getEditedPostAttribute("status"))?await n.savePost({isPreview:!0}):await n.autosave({isPreview:!0})),t.getEditedPostPreviewLink()),wIt=()=>({registry:e})=>{e.dispatch(Me).redo()},_It=()=>({registry:e})=>{e.dispatch(Me).undo()};function kIt(){return Ke("wp.data.dispatch( 'core/editor' ).createUndoLevel",{since:"6.0",version:"6.3",alternative:"Use the core entities store instead"}),{type:"DO_NOTHING"}}function SIt(e){return{type:"UPDATE_POST_LOCK",lock:e}}const CIt=()=>({registry:e})=>{e.dispatch(ht).set("core","isPublishSidebarEnabled",!0)},qIt=()=>({registry:e})=>{e.dispatch(ht).set("core","isPublishSidebarEnabled",!1)};function RIt(e){return{type:"LOCK_POST_SAVING",lockName:e}}function TIt(e){return{type:"UNLOCK_POST_SAVING",lockName:e}}function EIt(e){return{type:"LOCK_POST_AUTOSAVING",lockName:e}}function WIt(e){return{type:"UNLOCK_POST_AUTOSAVING",lockName:e}}const NIt=(e,t={})=>({select:n,dispatch:o,registry:r})=>{const{__unstableShouldCreateUndoLevel:s,selection:i}=t,c={blocks:e,selection:i};if(s!==!1){const{id:l,type:u}=n.getCurrentPost();if(r.select(Me).getEditedEntityRecord("postType",u,l).blocks===c.blocks){r.dispatch(Me).__unstableCreateUndoLevel("postType",u,l);return}c.content=({blocks:p=[]})=>Jd(p)}o.editPost(c)};function BIt(e){return{type:"UPDATE_EDITOR_SETTINGS",settings:e}}const LIt=e=>({dispatch:t,registry:n,select:o})=>{o.__unstableIsEditorReady()&&(n.dispatch(Q).clearSelectedBlock(),t.editPost({selection:void 0},{undoIgnore:!0})),t({type:"SET_RENDERING_MODE",mode:e})};function PIt(e){return{type:"SET_DEVICE_TYPE",deviceType:e}}const jIt=e=>({registry:t})=>{var n;const o=(n=t.select(ht).get("core","inactivePanels"))!==null&&n!==void 0?n:[],r=!!o?.includes(e);let s;r?s=o.filter(i=>i!==e):s=[...o,e],t.dispatch(ht).set("core","inactivePanels",s)},IIt=e=>({registry:t})=>{var n;const o=(n=t.select(ht).get("core","openPanels"))!==null&&n!==void 0?n:[],r=!!o?.includes(e);let s;r?s=o.filter(i=>i!==e):s=[...o,e],t.dispatch(ht).set("core","openPanels",s)};function DIt(e){return{type:"REMOVE_PANEL",panelName:e}}const FIt=e=>({dispatch:t,registry:n})=>{typeof e=="object"&&e.hasOwnProperty("rootClientId")&&e.hasOwnProperty("insertionIndex")&&St(n.dispatch(Q)).setInsertionPoint({rootClientId:e.rootClientId,index:e.insertionIndex}),t({type:"SET_IS_INSERTER_OPENED",value:e})};function $It(e){return{type:"SET_IS_LIST_VIEW_OPENED",isOpen:e}}const VIt=({createNotice:e=!0}={})=>({dispatch:t,registry:n})=>{const o=n.select(ht).get("core","distractionFree");o&&n.dispatch(ht).set("core","fixedToolbar",!1),o||n.batch(()=>{n.dispatch(ht).set("core","fixedToolbar",!0),t.setIsInserterOpened(!1),t.setIsListViewOpened(!1),St(n.dispatch(Q)).resetZoomLevel()}),n.batch(()=>{n.dispatch(ht).set("core","distractionFree",!o),e&&n.dispatch(mt).createInfoNotice(m(o?"Distraction free mode deactivated.":"Distraction free mode activated."),{id:"core/editor/distraction-free-mode/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{n.batch(()=>{n.dispatch(ht).set("core","fixedToolbar",o),n.dispatch(ht).toggle("core","distractionFree")})}}]})})},HIt=()=>({registry:e})=>{e.dispatch(ht).toggle("core","focusMode");const t=e.select(ht).get("core","focusMode");e.dispatch(mt).createInfoNotice(m(t?"Spotlight mode activated.":"Spotlight mode deactivated."),{id:"core/editor/toggle-spotlight-mode/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{e.dispatch(ht).toggle("core","focusMode")}}]})},UIt=()=>({registry:e})=>{e.dispatch(ht).toggle("core","fixedToolbar");const t=e.select(ht).get("core","fixedToolbar");e.dispatch(mt).createInfoNotice(m(t?"Top toolbar activated.":"Top toolbar deactivated."),{id:"core/editor/toggle-top-toolbar/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{e.dispatch(ht).toggle("core","fixedToolbar")}}]})},XIt=e=>({dispatch:t,registry:n})=>{n.dispatch(ht).set("core","editorMode",e),e!=="visual"&&(n.dispatch(Q).clearSelectedBlock(),St(n.dispatch(Q)).resetZoomLevel()),e==="visual"?Yt(m("Visual editor selected"),"assertive"):e==="text"&&(n.select(ht).get("core","distractionFree")&&t.toggleDistractionFree(),Yt(m("Code editor selected"),"assertive"))};function GIt(){return{type:"OPEN_PUBLISH_SIDEBAR"}}function KIt(){return{type:"CLOSE_PUBLISH_SIDEBAR"}}function YIt(){return{type:"TOGGLE_PUBLISH_SIDEBAR"}}const _o=e=>(...t)=>({registry:n})=>{Ke("`wp.data.dispatch( 'core/editor' )."+e+"`",{since:"5.3",alternative:"`wp.data.dispatch( 'core/block-editor' )."+e+"`",version:"6.2"}),n.dispatch(Q)[e](...t)},ZIt=_o("resetBlocks"),QIt=_o("receiveBlocks"),JIt=_o("updateBlock"),e9t=_o("updateBlockAttributes"),t9t=_o("selectBlock"),n9t=_o("startMultiSelect"),o9t=_o("stopMultiSelect"),r9t=_o("multiSelect"),s9t=_o("clearSelectedBlock"),i9t=_o("toggleSelection"),a9t=_o("replaceBlocks"),c9t=_o("replaceBlock"),l9t=_o("moveBlocksDown"),u9t=_o("moveBlocksUp"),d9t=_o("moveBlockToPosition"),p9t=_o("insertBlock"),f9t=_o("insertBlocks"),b9t=_o("showInsertionPoint"),h9t=_o("hideInsertionPoint"),m9t=_o("setTemplateValidity"),g9t=_o("synchronizeTemplate"),M9t=_o("mergeBlocks"),z9t=_o("removeBlocks"),O9t=_o("removeBlock"),y9t=_o("toggleBlockMode"),A9t=_o("startTyping"),v9t=_o("stopTyping"),x9t=_o("enterFormattedText"),w9t=_o("exitFormattedText"),_9t=_o("insertDefaultBlock"),k9t=_o("updateBlockListSettings"),S9t=Object.freeze(Object.defineProperty({__proto__:null,__experimentalTearDownEditor:hIt,__unstableSaveForPreview:xIt,autosave:vIt,clearSelectedBlock:s9t,closePublishSidebar:KIt,createUndoLevel:kIt,disablePublishSidebar:qIt,editPost:zIt,enablePublishSidebar:CIt,enterFormattedText:x9t,exitFormattedText:w9t,hideInsertionPoint:h9t,insertBlock:p9t,insertBlocks:f9t,insertDefaultBlock:_9t,lockPostAutosaving:EIt,lockPostSaving:RIt,mergeBlocks:M9t,moveBlockToPosition:d9t,moveBlocksDown:l9t,moveBlocksUp:u9t,multiSelect:r9t,openPublishSidebar:GIt,receiveBlocks:QIt,redo:wIt,refreshPost:yIt,removeBlock:O9t,removeBlocks:z9t,removeEditorPanel:DIt,replaceBlock:c9t,replaceBlocks:a9t,resetBlocks:ZIt,resetEditorBlocks:NIt,resetPost:mIt,savePost:OIt,selectBlock:t9t,setDeviceType:PIt,setEditedPost:cOe,setIsInserterOpened:FIt,setIsListViewOpened:$It,setRenderingMode:LIt,setTemplateValidity:m9t,setupEditor:bIt,setupEditorState:MIt,showInsertionPoint:b9t,startMultiSelect:n9t,startTyping:A9t,stopMultiSelect:o9t,stopTyping:v9t,switchEditorMode:XIt,synchronizeTemplate:g9t,toggleBlockMode:y9t,toggleDistractionFree:VIt,toggleEditorPanelEnabled:jIt,toggleEditorPanelOpened:IIt,togglePublishSidebar:YIt,toggleSelection:i9t,toggleSpotlightMode:HIt,toggleTopToolbar:UIt,trashPost:AIt,undo:_It,unlockPostAutosaving:WIt,unlockPostSaving:TIt,updateBlock:JIt,updateBlockAttributes:e9t,updateBlockListSettings:k9t,updateEditorSettings:BIt,updatePost:gIt,updatePostLock:SIt},Symbol.toStringTag,{value:"Module"}));function lOe(e){return e?e.source===Z3e.custom&&(!!e?.plugin||e?.has_theme_file):!1}function C9t(e){return e.type==="wp_template"}function q9t(e){return e.type==="wp_template_part"}function qh(e){return e.type==="wp_template"||e.type==="wp_template_part"}function Wr(e){return typeof e.title=="string"?Lt(e.title):e.title&&"rendered"in e.title?Lt(e.title.rendered):e.title&&"raw"in e.title?Lt(e.title.raw):""}function uOe(e){return e?[e.source,e.source].includes("custom")&&!(e.type==="wp_template"&&e?.plugin)&&!e.has_theme_file:!1}const dOe=e=>typeof e!="object"?"":e.slug||_5(Wr(e))||e.id.toString(),pOe=({field:e,onChange:t,data:n})=>{const{id:o}=e,r=e.getValue({item:n})||dOe(n),s=n.permalink_template||"",i=/%(?:postname|pagename)%/,[c,l]=s.split(i),u=c,d=l,p=i.test(s),f=x.useRef(r),b=r||f.current,h=p?`${u}${b}${d}`:Y2(n.link||"");x.useEffect(()=>{r&&f.current===void 0&&(f.current=r)},[r]);const g=x.useCallback(v=>t({[o]:v}),[o,t]),{createNotice:z}=Oe(mt),A=Ul(h,()=>{z("info",m("Copied Permalink to clipboard."),{isDismissible:!0,type:"snackbar"})}),_="editor-post-url__slug-description-"+vt(pOe);return a.jsxs("fieldset",{className:"fields-controls__slug",children:[p&&a.jsxs(dt,{children:[a.jsxs(dt,{spacing:"0px",children:[a.jsx("span",{children:m("Customize the last part of the Permalink.")}),a.jsx(hr,{href:"https://wordpress.org/documentation/article/page-post-settings-sidebar/#permalink",children:m("Learn more")})]}),a.jsx(N1,{__next40pxDefaultSize:!0,prefix:a.jsx(Ld,{children:"/"}),suffix:a.jsx(Ce,{__next40pxDefaultSize:!0,icon:WP,ref:A,label:m("Copy")}),label:m("Link"),hideLabelFromVision:!0,value:r,autoComplete:"off",spellCheck:"false",type:"text",className:"fields-controls__slug-input",onChange:v=>{g(v)},onBlur:()=>{r===""&&g(f.current)},"aria-describedby":_}),a.jsxs("div",{className:"fields-controls__slug-help",children:[a.jsx("span",{className:"fields-controls__slug-help-visual-label",children:m("Permalink:")}),a.jsxs(hr,{className:"fields-controls__slug-help-link",href:h,children:[a.jsx("span",{className:"fields-controls__slug-help-prefix",children:u}),a.jsx("span",{className:"fields-controls__slug-help-slug",children:b}),a.jsx("span",{className:"fields-controls__slug-help-suffix",children:d})]})]})]}),!p&&a.jsx(hr,{className:"fields-controls__slug-help",href:h,children:h})]})},R9t=({item:e})=>{const t=dOe(e),n=x.useRef(t);return x.useEffect(()=>{t&&n.current===void 0&&(n.current=t)},[t]),`${t||n.current}`},T9t={id:"slug",type:"text",label:m("Slug"),Edit:pOe,render:R9t};function NI({item:e,className:t,children:n}){const o=Wr(e);return a.jsxs(Ot,{className:oe("fields-field__title",t),alignment:"center",justify:"flex-start",children:[a.jsx("span",{children:o||m("(no title)")}),n]})}function fOe({item:e}){return a.jsx(NI,{item:e})}const bOe={type:"text",id:"title",label:m("Title"),placeholder:m("No title"),getValue:({item:e})=>Wr(e),render:fOe,enableHiding:!1,enableGlobalSearch:!0},{lock:agn,unlock:Wm}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/fields"),{Badge:E9t}=Wm(tr);function W9t({item:e}){const{frontPageId:t,postsPageId:n}=G(o=>{const{getEntityRecord:r}=o(Me),s=r("root","site");return{frontPageId:s?.page_on_front,postsPageId:s?.page_for_posts}},[]);return a.jsx(NI,{item:e,className:"fields-field__page-title",children:[t,n].includes(e.id)&&a.jsx(E9t,{children:e.id===t?m("Homepage"):m("Posts Page")})})}const N9t={type:"text",id:"title",label:m("Title"),placeholder:m("No title"),getValue:({item:e})=>Wr(e),render:W9t,enableHiding:!1,enableGlobalSearch:!0},B9t={type:"text",label:m("Template"),placeholder:m("No title"),id:"title",getValue:({item:e})=>Wr(e),render:fOe,enableHiding:!1,enableGlobalSearch:!0};function L9t(e={},t){return t?.type==="SET_EDITING_PATTERN"?{...e,[t.clientId]:t.isEditing}:e}const P9t=J0({isEditingPattern:L9t}),ik={theme:"pattern",user:"wp_block"},hOe="all-patterns",j9t="my-patterns",I9t=["core","pattern-directory/core","pattern-directory/featured"],ra={full:"fully",unsynced:"unsynced"},mOe={"core/paragraph":["content"],"core/heading":["content"],"core/button":["text","url","linkTarget","rel"],"core/image":["id","url","title","alt"]},O4="core/pattern-overrides",D9t=(e,t,n,o)=>async({registry:r})=>{const s=t===ra.unsynced?{wp_pattern_sync_status:t}:void 0,i={title:e,content:n,status:"publish",meta:s,wp_pattern_category:o};return await r.dispatch(Me).saveEntityRecord("postType","wp_block",i)},F9t=(e,t)=>async({dispatch:n})=>{const o=await e.text();let r;try{r=JSON.parse(o)}catch{throw new Error("Invalid JSON file")}if(r.__file!=="wp_block"||!r.title||!r.content||typeof r.title!="string"||typeof r.content!="string"||r.syncStatus&&typeof r.syncStatus!="string")throw new Error("Invalid pattern JSON file");return await n.createPattern(r.title,r.syncStatus,r.content,t)},$9t=e=>({registry:t})=>{const n=t.select(Q).getBlock(e),o=n.attributes?.content;function r(i){return i.map(c=>{let l=c.attributes.metadata;if(l&&(l={...l},delete l.id,delete l.bindings,o?.[l.name]))for(const[u,d]of Object.entries(o[l.name]))on(c.name)?.attributes[u]&&(c.attributes[u]=d);return jo(c,{metadata:l&&Object.keys(l).length>0?l:void 0},r(c.innerBlocks))})}const s=t.select(Q).getBlocks(n.clientId);t.dispatch(Q).replaceBlocks(n.clientId,r(s))};function V9t(e,t){return{type:"SET_EDITING_PATTERN",clientId:e,isEditing:t}}const H9t=Object.freeze(Object.defineProperty({__proto__:null,convertSyncedPatternToStatic:$9t,createPattern:D9t,createPatternFromFile:F9t,setEditingPattern:V9t},Symbol.toStringTag,{value:"Module"})),U9t="core/patterns";function X9t(e,t){return e.isEditingPattern[t]}const G9t=Object.freeze(Object.defineProperty({__proto__:null,isEditingPattern:X9t},Symbol.toStringTag,{value:"Module"})),{lock:K9t,unlock:pb}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/patterns"),Y9t={reducer:P9t},Nm=x1(U9t,{...Y9t});Us(Nm);pb(Nm).registerPrivateActions(H9t);pb(Nm).registerPrivateSelectors(G9t);function BI(e){return Object.keys(mOe).includes(e.name)&&!!e.attributes.metadata?.name&&!!e.attributes.metadata?.bindings&&Object.values(e.attributes.metadata.bindings).some(t=>t.source==="core/pattern-overrides")}function gOe(e){return e.some(t=>BI(t)?!0:gOe(t.innerBlocks))}const{BlockQuickNavigation:Z9t}=pb(Ln);function Q9t(){const e=G(o=>o(Q).getClientIdsWithDescendants(),[]),{getBlock:t}=G(Q),n=x.useMemo(()=>e.filter(o=>{const r=t(o);return BI(r)}),[e,t]);return n?.length?a.jsx(Qt,{title:m("Overrides"),children:a.jsx(Z9t,{clientIds:n})}):null}const J9t=e=>Lt(e),MOe="wp_pattern_category";function eDt({categoryTerms:e,onChange:t,categoryMap:n}){const[o,r]=x.useState(""),s=C1(r,500),i=x.useMemo(()=>Array.from(n.values()).map(l=>J9t(l.label)).filter(l=>o!==""?l.toLowerCase().includes(o.toLowerCase()):!0).sort((l,u)=>l.localeCompare(u)),[o,n]);function c(l){const u=l.reduce((d,p)=>(d.some(f=>f.toLowerCase()===p.toLowerCase())||d.push(p),d),[]);t(u)}return a.jsx(ip,{className:"patterns-menu-items__convert-modal-categories",value:e,suggestions:i,onChange:c,onInputChange:s,label:m("Categories"),tokenizeOnBlur:!0,__experimentalExpandOnFocus:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0})}function zOe(){const{saveEntityRecord:e,invalidateResolution:t}=Oe(Me),{corePatternCategories:n,userPatternCategories:o}=G(i=>{const{getUserPatternCategories:c,getBlockPatternCategories:l}=i(Me);return{corePatternCategories:l(),userPatternCategories:c()}},[]),r=x.useMemo(()=>{const i=new Map;return o.forEach(c=>{i.set(c.label.toLowerCase(),{label:c.label,name:c.name,id:c.id})}),n.forEach(c=>{!i.has(c.label.toLowerCase())&&c.name!=="query"&&i.set(c.label.toLowerCase(),{label:c.label,name:c.name})}),i},[o,n]);async function s(i){try{const c=r.get(i.toLowerCase());if(c?.id)return c.id;const l=c?{name:c.label,slug:c.name}:{name:i},u=await e("taxonomy",MOe,l,{throwOnError:!0});return t("getUserPatternCategories"),u.id}catch(c){if(c.code!=="term_exists")throw c;return c.data.term_id}}return{categoryMap:r,findOrCreateTerm:s}}function LI({className:e="patterns-menu-items__convert-modal",modalTitle:t,...n}){const o=G(r=>r(Me).getPostType(ik.user)?.labels?.add_new_item,[]);return a.jsx(Zo,{title:t||o,onRequestClose:n.onClose,overlayClassName:e,focusOnMount:"firstContentElement",size:"small",children:a.jsx(OOe,{...n})})}function OOe({confirmLabel:e=m("Add"),defaultCategories:t=[],content:n,onClose:o,onError:r,onSuccess:s,defaultSyncType:i=ra.full,defaultTitle:c=""}){const[l,u]=x.useState(i),[d,p]=x.useState(t),[f,b]=x.useState(c),[h,g]=x.useState(!1),{createPattern:z}=pb(Oe(Nm)),{createErrorNotice:A}=Oe(mt),{categoryMap:_,findOrCreateTerm:v}=zOe();async function M(y,k){if(!(!f||h))try{g(!0);const S=await Promise.all(d.map(R=>v(R))),C=await z(y,k,typeof n=="function"?n():n,S);s({pattern:C,categoryId:hOe})}catch(S){A(S.message,{type:"snackbar",id:"pattern-create"}),r?.()}finally{g(!1),p([]),b("")}}return a.jsx("form",{onSubmit:y=>{y.preventDefault(),M(f,l)},children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{label:m("Name"),value:f,onChange:b,placeholder:m("My pattern"),className:"patterns-create-modal__name-input",__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0}),a.jsx(eDt,{categoryTerms:d,onChange:p,categoryMap:_}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:We("Synced","pattern (singular)"),help:m("Sync this pattern across multiple locations."),checked:l===ra.full,onChange:()=>{u(l===ra.full?ra.unsynced:ra.full)}}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{o(),b("")},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit","aria-disabled":!f||h,isBusy:h,children:e})]})]})})}function tDt(e,t){return e.type!==ik.user?t.core?.filter(n=>e.categories?.includes(n.name)).map(n=>n.label):t.user?.filter(n=>e.wp_pattern_category?.includes(n.id)).map(n=>n.label)}function yOe({pattern:e,onSuccess:t}){const{createSuccessNotice:n}=Oe(mt),o=G(r=>{const{getUserPatternCategories:s,getBlockPatternCategories:i}=r(Me);return{core:i(),user:s()}});return e?{content:e.content,defaultCategories:tDt(e,o),defaultSyncType:e.type!==ik.user?ra.unsynced:e.wp_pattern_sync_status||ra.full,defaultTitle:xe(We("%s (Copy)","pattern"),typeof e.title=="string"?e.title:e.title.raw),onSuccess:({pattern:r})=>{n(xe(We('"%s" duplicated.',"pattern"),r.title.raw),{type:"snackbar",id:"patterns-create"}),t?.({pattern:r})}}:null}function nDt({pattern:e,onClose:t,onSuccess:n}){const o=yOe({pattern:e,onSuccess:n});return e?a.jsx(LI,{modalTitle:m("Duplicate pattern"),confirmLabel:m("Duplicate"),onClose:t,onError:t,...o}):null}function oDt({onClose:e,onError:t,onSuccess:n,pattern:o,...r}){const s=Lt(o.title),[i,c]=x.useState(s),[l,u]=x.useState(!1),{editEntityRecord:d,__experimentalSaveSpecifiedEntityEdits:p}=Oe(Me),{createSuccessNotice:f,createErrorNotice:b}=Oe(mt),h=async z=>{if(z.preventDefault(),!(!i||i===o.title||l))try{await d("postType",o.type,o.id,{title:i}),u(!0),c(""),e?.();const A=await p("postType",o.type,o.id,["title"],{throwOnError:!0});n?.(A),f(m("Pattern renamed"),{type:"snackbar",id:"pattern-update"})}catch(A){t?.();const _=A.message&&A.code!=="unknown_error"?A.message:m("An error occurred while renaming the pattern.");b(_,{type:"snackbar",id:"pattern-update"})}finally{u(!1),c("")}},g=()=>{e?.(),c("")};return a.jsx(Zo,{title:m("Rename"),...r,onRequestClose:e,focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{onSubmit:h,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Name"),value:i,onChange:c,required:!0}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:g,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Save")})]})]})})})}function rDt({clientIds:e,rootClientId:t,closeBlockSettingsMenu:n}){const{createSuccessNotice:o}=Oe(mt),{replaceBlocks:r}=Oe(Q),{setEditingPattern:s}=pb(Oe(Nm)),[i,c]=x.useState(!1),l=G(f=>{var b;const{canUser:h}=f(Me),{getBlocksByClientId:g,canInsertBlockType:z,getBlockRootClientId:A}=f(Q),_=t||(e.length>0?A(e[0]):void 0),v=(b=g(e))!==null&&b!==void 0?b:[],M=S=>{const C=on(S),R=C&&"parent"in C;return Et(S,"reusable",!R)};return!(v.length===1&&v[0]&&Qd(v[0])&&!!f(Me).getEntityRecord("postType","wp_block",v[0].attributes.ref))&&z("core/block",_)&&v.every(S=>!!S&&S.isValid&&M(S.name))&&!!h("create",{kind:"postType",name:"wp_block"})},[e,t]),{getBlocksByClientId:u}=G(Q),d=x.useCallback(()=>Ks(u(e)),[u,e]);if(!l)return null;const p=({pattern:f})=>{if(f.wp_pattern_sync_status!==ra.unsynced){const b=Ee("core/block",{ref:f.id});r(e,b),s(b.clientId,!0),n()}o(f.wp_pattern_sync_status===ra.unsynced?xe(m("Unsynced pattern created: %s"),f.title.raw):xe(m("Synced pattern created: %s"),f.title.raw),{type:"snackbar",id:"convert-to-pattern-success"}),c(!1)};return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{icon:Bd,onClick:()=>c(!0),"aria-expanded":i,"aria-haspopup":"dialog",children:m("Create pattern")}),i&&a.jsx(LI,{content:d,onSuccess:f=>{p(f)},onError:()=>{c(!1)},onClose:()=>{c(!1)}})]})}function sDt({clientId:e}){const{canRemove:t,isVisible:n,managePatternsUrl:o}=G(s=>{const{getBlock:i,canRemoveBlock:c,getBlockCount:l}=s(Q),{canUser:u}=s(Me),d=i(e);return{canRemove:c(e),isVisible:!!d&&Qd(d)&&!!u("update",{kind:"postType",name:"wp_block",id:d.attributes.ref}),innerBlockCount:l(e),managePatternsUrl:u("create",{kind:"postType",name:"wp_template"})?tn("site-editor.php",{path:"/patterns"}):tn("edit.php",{post_type:"wp_block"})}},[e]),{convertSyncedPatternToStatic:r}=pb(Oe(Nm));return n?a.jsxs(a.Fragment,{children:[t&&a.jsx(Ct,{onClick:()=>r(e),children:m("Detach")}),a.jsx(Ct,{href:o,children:m("Manage patterns")})]}):null}function iDt({rootClientId:e}){return a.jsx(cb,{children:({selectedClientIds:t,onClose:n})=>a.jsxs(a.Fragment,{children:[a.jsx(rDt,{clientIds:t,rootClientId:e,closeBlockSettingsMenu:n}),t.length===1&&a.jsx(sDt,{clientId:t[0]})]})})}function aDt({category:e,existingCategories:t,onClose:n,onError:o,onSuccess:r,...s}){const i=x.useId(),c=x.useRef(),[l,u]=x.useState(Lt(e.name)),[d,p]=x.useState(!1),[f,b]=x.useState(!1),h=f?`patterns-rename-pattern-category-modal__validation-message-${i}`:void 0,{saveEntityRecord:g,invalidateResolution:z}=Oe(Me),{createErrorNotice:A,createSuccessNotice:_}=Oe(mt),v=k=>{f&&b(void 0),u(k)},M=async k=>{if(k.preventDefault(),!d){if(!l||l===e.name){const S=m("Please enter a new name for this category.");Yt(S,"assertive"),b(S),c.current?.focus();return}if(t.patternCategories.find(S=>S.id!==e.id&&S.label.toLowerCase()===l.toLowerCase())){const S=m("This category already exists. Please use a different name.");Yt(S,"assertive"),b(S),c.current?.focus();return}try{p(!0);const S=await g("taxonomy",MOe,{id:e.id,slug:e.slug,name:l});z("getUserPatternCategories"),r?.(S),n(),_(m("Pattern category renamed."),{type:"snackbar",id:"pattern-category-update"})}catch(S){o?.(),A(S.message,{type:"snackbar",id:"pattern-category-update"})}finally{p(!1),u("")}}},y=()=>{n(),u("")};return a.jsx(Zo,{title:m("Rename"),onRequestClose:y,...s,children:a.jsx("form",{onSubmit:M,children:a.jsxs(dt,{spacing:"5",children:[a.jsxs(dt,{spacing:"2",children:[a.jsx(dn,{ref:c,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Name"),value:l,onChange:v,"aria-describedby":h,required:!0}),f&&a.jsx("span",{className:"patterns-rename-pattern-category-modal__validation-message",id:h,children:f})]}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:y,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit","aria-disabled":!l||l===e.name||d,isBusy:d,children:m("Save")})]})]})})})}function cDt({placeholder:e,initialName:t="",onClose:n,onSave:o}){const[r,s]=x.useState(t),i=x.useId(),c=!!r.trim(),l=()=>{if(r!==t){const u=xe(m('Block name changed to: "%s".'),r);Yt(u,"assertive")}o(r),n()};return a.jsx(Zo,{title:m("Enable overrides"),onRequestClose:n,focusOnMount:"firstContentElement",aria:{describedby:i},size:"small",children:a.jsx("form",{onSubmit:u=>{u.preventDefault(),c&&l()},children:a.jsxs(dt,{spacing:"6",children:[a.jsx(Sn,{id:i,children:m("Overrides are changes you make to a block within a synced pattern instance. Use overrides to customize a synced pattern instance to suit its new context. Name this block to specify an override.")}),a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:r,label:m("Name"),help:m('For example, if you are creating a recipe pattern, you use "Recipe Title", "Recipe Description", etc.'),placeholder:e,onChange:s}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:n,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,"aria-disabled":!c,variant:"primary",type:"submit",children:m("Enable")})]})]})})})}function lDt({onClose:e,onSave:t}){const n=x.useId();return a.jsx(Zo,{title:m("Disable overrides"),onRequestClose:e,aria:{describedby:n},size:"small",children:a.jsx("form",{onSubmit:o=>{o.preventDefault(),t(),e()},children:a.jsxs(dt,{spacing:"6",children:[a.jsx(Sn,{id:n,children:m("Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern.")}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:e,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Disable")})]})]})})})}function uDt({attributes:e,setAttributes:t,name:n}){const o=x.useId(),[r,s]=x.useState(!1),[i,c]=x.useState(!1),l=!!e.metadata?.name,u=e.metadata?.bindings?.__default,d=l&&u?.source===O4,p=u?.source&&u.source!==O4,{updateBlockBindings:f}=m_();function b(z,A){A&&t({metadata:{...e.metadata,name:A}}),f({__default:z?{source:O4}:void 0})}if(p)return null;const h=n==="core/image"&&(!!e.caption?.length||!!e.href?.length),g=m(!d&&h?"Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides.":"Allow changes to this block throughout instances of this pattern.");return a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"advanced",children:a.jsx(no,{__nextHasNoMarginBottom:!0,id:o,label:m("Overrides"),help:g,children:a.jsx(Ce,{__next40pxDefaultSize:!0,className:"pattern-overrides-control__allow-overrides-button",variant:"secondary","aria-haspopup":"dialog",onClick:()=>{d?c(!0):s(!0)},disabled:!d&&h,accessibleWhenDisabled:!0,children:m(d?"Disable overrides":"Enable overrides")})})}),r&&a.jsx(cDt,{initialName:e.metadata?.name,onClose:()=>s(!1),onSave:z=>{b(!0,z)}}),i&&a.jsx(lDt,{onClose:()=>c(!1),onSave:()=>b(!1)})]})}const MT="content";function dDt(e){const t=e.attributes.metadata?.name,n=Fn(),o=G(s=>{if(!t)return;const{getBlockAttributes:i,getBlockParentsByBlockName:c}=s(Q),[l]=c(e.clientId,"core/block",!0);if(!l)return;const u=i(l)[MT];if(u)return u.hasOwnProperty(t)},[e.clientId,t]);function r(){const{getBlockAttributes:s,getBlockParentsByBlockName:i}=n.select(Q),[c]=i(e.clientId,"core/block",!0);if(!c)return;const l=s(c)[MT];if(!l.hasOwnProperty(t))return;const{updateBlockAttributes:u,__unstableMarkLastChangeAsPersistent:d}=n.dispatch(Q);d();let p={...l};delete p[t],Object.keys(p).length||(p=void 0),u(c,{[MT]:p})}return a.jsx(oI,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:r,disabled:!o,children:m("Reset")})})})}const{useBlockDisplayTitle:pDt}=pb(Ln);function fDt({clientIds:e}){const t=e.length===1,{icon:n,firstBlockName:o}=G(c=>{const{getBlockAttributes:l,getBlockNamesByClientId:u}=c(Q),{getBlockType:d,getActiveBlockVariation:p}=c(kt),f=u(e),b=f[0],h=d(b);let g;return t?g=p(b,l(e[0]))?.icon||h.icon:g=new Set(f).size===1?h.icon:H3,{icon:g,firstBlockName:l(e[0]).metadata.name}},[e,t]),r=pDt({clientId:e[0],maximumLength:35}),s=t?xe(m('This %1$s is editable using the "%2$s" override.'),r.toLowerCase(),o):m("These blocks are editable using overrides."),i=x.useId();return a.jsx(bs,{children:c=>a.jsx(c0,{className:"patterns-pattern-overrides-toolbar-indicator",label:r,popoverProps:{placement:"bottom-start",className:"patterns-pattern-overrides-toolbar-indicator__popover"},icon:a.jsx(a.Fragment,{children:a.jsx(Zn,{icon:n,className:"patterns-pattern-overrides-toolbar-indicator-icon",showColors:!0})}),toggleProps:{description:s,...c},menuProps:{orientation:"both","aria-describedby":i},children:()=>a.jsx(Sn,{id:i,children:s})})})}function bDt(){const{clientIds:e,hasPatternOverrides:t,hasParentPattern:n}=G(o=>{const{getBlockAttributes:r,getSelectedBlockClientIds:s,getBlockParentsByBlockName:i}=o(Q),c=s(),l=c.every(d=>{var p;return Object.values((p=r(d)?.metadata?.bindings)!==null&&p!==void 0?p:{}).some(f=>f?.source===O4)}),u=c.every(d=>i(d,"core/block",!0).length>0);return{clientIds:c,hasPatternOverrides:l,hasParentPattern:u}},[]);return t&&n?a.jsx(bt,{group:"parent",children:a.jsx(fDt,{clientIds:e})}):null}const Hi={};K9t(Hi,{OverridesPanel:Q9t,CreatePatternModal:LI,CreatePatternModalContents:OOe,DuplicatePatternModal:nDt,isOverridableBlock:BI,hasOverridableBlocks:gOe,useDuplicatePatternProps:yOe,RenamePatternModal:oDt,PatternsMenuItems:iDt,RenamePatternCategoryModal:aDt,PatternOverridesControls:uDt,ResetOverridesControl:dDt,PatternOverridesBlockControls:bDt,useAddPatternCategory:zOe,PATTERN_TYPES:ik,PATTERN_DEFAULT_CATEGORY:hOe,PATTERN_USER_CATEGORY:j9t,EXCLUDED_PATTERN_SOURCES:I9t,PATTERN_SYNC_TYPES:ra,PARTIAL_SYNCING_SUPPORTED_BLOCKS:mOe});const{PATTERN_TYPES:hDt}=Wm(Hi);function mDt({item:e}){return a.jsx(NI,{item:e,className:"fields-field__pattern-title",children:e.type===hDt.theme&&a.jsx(B0,{placement:"top",text:m("This pattern cannot be edited."),children:a.jsx(wn,{icon:bde,size:24})})})}const gDt={type:"text",id:"title",label:m("Title"),placeholder:m("No title"),getValue:({item:e})=>Wr(e),render:mDt,enableHiding:!1,enableGlobalSearch:!0},MDt={id:"menu_order",type:"integer",label:m("Order"),description:m("Determines the order of pages.")},zDt=[],ODt=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Select.extend({featuredImageToolbar(t){this.createSelectToolbar(t,{text:e.media.view.l10n.setFeaturedImage,state:this.options.state})},editState(){const t=this.state("featured-image").get("selection"),n=new e.media.view.EditImage({model:t.single(),controller:this}).render();this.content.set(n),n.loadEditor()},createStates:function(){this.on("toolbar:create:featured-image",this.featuredImageToolbar,this),this.on("content:render:edit-image",this.editState,this),this.states.add([new e.media.controller.FeaturedImage,new e.media.controller.EditImage({model:this.options.editImage})])}})},yDt=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Select.extend({createStates(){const t=this.options;this.options.states||this.states.add([new e.media.controller.Library({library:e.media.query(t.library),multiple:t.multiple,title:t.title,priority:20,filterable:"uploaded"}),new e.media.controller.EditImage({model:t.editImage})])}})},ADt=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Post.extend({galleryToolbar(){const t=this.state().get("editing");this.toolbar.set(new e.media.view.Toolbar({controller:this,items:{insert:{style:"primary",text:t?e.media.view.l10n.updateGallery:e.media.view.l10n.insertGallery,priority:80,requires:{library:!0},click(){const n=this.controller,o=n.state();n.close(),o.trigger("update",o.get("library")),n.setState(n.options.state),n.reset()}}}}))},editState(){const t=this.state("gallery").get("selection"),n=new e.media.view.EditImage({model:t.single(),controller:this}).render();this.content.set(n),n.loadEditor()},createStates:function(){this.on("toolbar:create:main-gallery",this.galleryToolbar,this),this.on("content:render:edit-image",this.editState,this),this.states.add([new e.media.controller.Library({id:"gallery",title:e.media.view.l10n.createGalleryTitle,priority:40,toolbar:"main-gallery",filterable:"uploaded",multiple:"add",editable:!1,library:e.media.query({type:"image",...this.options.library})}),new e.media.controller.EditImage({model:this.options.editImage}),new e.media.controller.GalleryEdit({library:this.options.selection,editing:this.options.editing,menu:"gallery",displaySettings:!1,multiple:!0}),new e.media.controller.GalleryAdd])}})},Fte=e=>["sizes","mime","type","subtype","id","url","alt","link","caption"].reduce((n,o)=>(e?.hasOwnProperty(o)&&(n[o]=e[o]),n),{}),xv=e=>{const{wp:t}=window;return t.media.query({order:"ASC",orderby:"post__in",post__in:e,posts_per_page:-1,query:!0,type:"image"})};let AOe=class extends x.Component{constructor(){super(...arguments),this.openModal=this.openModal.bind(this),this.onOpen=this.onOpen.bind(this),this.onSelect=this.onSelect.bind(this),this.onUpdate=this.onUpdate.bind(this),this.onClose=this.onClose.bind(this)}initializeListeners(){this.frame.on("select",this.onSelect),this.frame.on("update",this.onUpdate),this.frame.on("open",this.onOpen),this.frame.on("close",this.onClose)}buildAndSetGalleryFrame(){const{addToGallery:t=!1,allowedTypes:n,multiple:o=!1,value:r=zDt}=this.props;if(r===this.lastGalleryValue)return;const{wp:s}=window;this.lastGalleryValue=r,this.frame&&this.frame.remove();let i;t?i="gallery-library":i=r&&r.length?"gallery-edit":"gallery",this.GalleryDetailsMediaFrame||(this.GalleryDetailsMediaFrame=ADt());const c=xv(r),l=new s.media.model.Selection(c.models,{props:c.props.toJSON(),multiple:o});this.frame=new this.GalleryDetailsMediaFrame({mimeType:n,state:i,multiple:o,selection:l,editing:!!r?.length}),s.media.frame=this.frame,this.initializeListeners()}buildAndSetFeatureImageFrame(){const{wp:t}=window,{value:n,multiple:o,allowedTypes:r}=this.props,s=ODt(),i=xv(n),c=new t.media.model.Selection(i.models,{props:i.props.toJSON()});this.frame=new s({mimeType:r,state:"featured-image",multiple:o,selection:c,editing:n}),t.media.frame=this.frame,t.media.view.settings.post={...t.media.view.settings.post,featuredImageId:n||-1}}buildAndSetSingleMediaFrame(){const{wp:t}=window,{allowedTypes:n,multiple:o=!1,title:r=m("Select or Upload Media"),value:s}=this.props,i={title:r,multiple:o};n&&(i.library={type:n}),this.frame&&this.frame.remove();const c=yDt(),l=xv(s),u=new t.media.model.Selection(l.models,{props:l.props.toJSON()});this.frame=new c({mimeType:n,multiple:o,selection:u,...i}),t.media.frame=this.frame}componentWillUnmount(){this.frame?.remove()}onUpdate(t){const{onSelect:n,multiple:o=!1}=this.props,r=this.frame.state(),s=t||r.get("selection");!s||!s.models.length||n(o?s.models.map(i=>Fte(i.toJSON())):Fte(s.models[0].toJSON()))}onSelect(){const{onSelect:t,multiple:n=!1}=this.props,o=this.frame.state().get("selection").toJSON();t(n?o:o[0])}onOpen(){const{wp:t}=window,{value:n}=this.props;if(this.updateCollection(),this.props.mode&&this.frame.content.mode(this.props.mode),!(Array.isArray(n)?!!n?.length:!!n))return;const r=this.props.gallery,s=this.frame.state().get("selection"),i=Array.isArray(n)?n:[n];r||i.forEach(l=>{s.add(t.media.attachment(l))});const c=xv(i);c.more().done(function(){r&&c?.models?.length&&s.add(c.models)})}onClose(){const{onClose:t}=this.props;t&&t(),this.frame.detach()}updateCollection(){const t=this.frame.content.get();if(t&&t.collection){const n=t.collection;n.toArray().forEach(o=>o.trigger("destroy",o)),n.mirroring._hasMore=!0,n.more()}}openModal(){const{gallery:t=!1,unstableFeaturedImageFlow:n=!1,modalClass:o}=this.props;t?this.buildAndSetGalleryFrame():this.buildAndSetSingleMediaFrame(),o&&this.frame.$el.addClass(o),n&&this.buildAndSetFeatureImageFrame(),this.initializeListeners(),this.frame.open()}render(){return this.props.render({open:this.openModal})}};function vDt(e){return e!==null&&typeof e=="object"&&Object.getPrototypeOf(e)===Object.prototype}function PI(e,t,n){if(vDt(n))for(const[o,r]of Object.entries(n))PI(e,`${t}[${o}]`,r);else n!==void 0&&e.append(t,String(n))}function vOe(e){var t;const{alt_text:n,source_url:o,...r}=e;return{...r,alt:e.alt_text,caption:(t=e.caption?.raw)!==null&&t!==void 0?t:"",title:e.title.raw,url:e.source_url,poster:e._embedded?.["wp:featuredmedia"]?.[0]?.source_url||void 0}}async function xDt(e,t={},n){const o=new FormData;o.append("file",e,e.name||e.type.replace("/","."));for(const[r,s]of Object.entries(t))PI(o,r,s);return vOe(await Tt({path:"/wp/v2/media?_embed=wp:featuredmedia",body:o,method:"POST",signal:n}))}class Rh extends Error{constructor({code:t,message:n,file:o,cause:r}){super(n,{cause:r}),Object.setPrototypeOf(this,new.target.prototype),this.code=t,this.file=o}}function wDt(e,t){if(!t)return;const n=t.some(o=>o.includes("/")?o===e.type:e.type.startsWith(`${o}/`));if(e.type&&!n)throw new Rh({code:"MIME_TYPE_NOT_SUPPORTED",message:xe(m("%s: Sorry, this file type is not supported here."),e.name),file:e})}function _Dt(e){return e?Object.entries(e).flatMap(([t,n])=>{const[o]=n.split("/"),r=t.split("|");return[n,...r.map(s=>`${o}/${s}`)]}):null}function kDt(e,t){const n=_Dt(t);if(!n)return;const o=n.includes(e.type);if(e.type&&!o)throw new Rh({code:"MIME_TYPE_NOT_ALLOWED_FOR_USER",message:xe(m("%s: Sorry, you are not allowed to upload this file type."),e.name),file:e})}function SDt(e,t){if(e.size<=0)throw new Rh({code:"EMPTY_FILE",message:xe(m("%s: This file is empty."),e.name),file:e});if(t&&e.size>t)throw new Rh({code:"SIZE_ABOVE_LIMIT",message:xe(m("%s: This file exceeds the maximum upload size for this site."),e.name),file:e})}function CDt({wpAllowedMimeTypes:e,allowedTypes:t,additionalData:n={},filesList:o,maxUploadFileSize:r,onError:s,onFileChange:i,signal:c}){const l=[],u=[],d=(p,f)=>{window.__experimentalMediaProcessing||u[p]?.url&&nx(u[p].url),u[p]=f,i?.(u.filter(b=>b!==null))};for(const p of o){try{kDt(p,e)}catch(f){s?.(f);continue}try{wDt(p,t)}catch(f){s?.(f);continue}try{SDt(p,r)}catch(f){s?.(f);continue}l.push(p),window.__experimentalMediaProcessing||(u.push({url:ls(p)}),i?.(u))}l.map(async(p,f)=>{try{const b=await xDt(p,n,c);d(f,b)}catch(b){d(f,null);let h;b instanceof Error?h=b.message:h=xe(m("Error while uploading file %s to the media library."),p.name),s?.(new Rh({code:"GENERAL",message:h,file:p,cause:b instanceof Error?b:void 0}))}})}async function qDt(e,t,n={},o){const r=new FormData;r.append("file",e,e.name||e.type.replace("/","."));for(const[s,i]of Object.entries(n))PI(r,s,i);return vOe(await Tt({path:`/wp/v2/media/${t}/sideload`,body:r,method:"POST",signal:o}))}const RDt=()=>{};async function TDt({file:e,attachmentId:t,additionalData:n={},signal:o,onFileChange:r,onError:s=RDt}){try{const i=await qDt(e,t,n,o);r?.([i])}catch(i){let c;i instanceof Error?c=i.message:c=xe(m("Error while sideloading file %s to the server."),e.name),s(new Rh({code:"GENERAL",message:c,file:e,cause:i instanceof Error?i:void 0}))}}const{lock:EDt,unlock:lgn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/media-utils"),xOe={};EDt(xOe,{sideloadMedia:TDt});const WDt=({data:e,field:t,onChange:n})=>{const{id:o}=t,r=t.getValue({item:e}),s=G(d=>{const{getEntityRecord:p}=d(Me);return p("root","media",r)},[r]),i=x.useCallback(d=>n({[o]:d}),[o,n]),c=s?.source_url,l=s?.title?.rendered,u=x.useRef(null);return a.jsx("fieldset",{className:"fields-controls__featured-image",children:a.jsx("div",{className:"fields-controls__featured-image-container",children:a.jsx(AOe,{onSelect:d=>{i(d.id)},allowedTypes:["image"],render:({open:d})=>a.jsx("div",{ref:u,role:"button",tabIndex:-1,onClick:()=>{d()},onKeyDown:d,children:a.jsxs(nO,{rowGap:0,columnGap:8,templateColumns:"24px 1fr 24px",children:[c&&a.jsxs(a.Fragment,{children:[a.jsx("img",{className:"fields-controls__featured-image-image",alt:"",width:24,height:24,src:c}),a.jsx("span",{className:"fields-controls__featured-image-title",children:l})]}),!c&&a.jsxs(a.Fragment,{children:[a.jsx("span",{className:"fields-controls__featured-image-placeholder",style:{width:"24px",height:"24px"}}),a.jsx("span",{className:"fields-controls__featured-image-title",children:m("Choose an image…")})]}),c&&a.jsx(a.Fragment,{children:a.jsx(Ce,{size:"small",className:"fields-controls__featured-image-remove-button",icon:fde,onClick:p=>{p.stopPropagation(),i(0)}})})]})})})})})},NDt=({item:e})=>{const t=e.featured_media,o=G(r=>{const{getEntityRecord:s}=r(Me);return t?s("root","media",t):null},[t])?.source_url;return o?a.jsx("img",{className:"fields-controls__featured-image-image",src:o,alt:""}):a.jsx("span",{className:"fields-controls__featured-image-placeholder"})},BDt={id:"featured_media",type:"media",label:m("Featured Image"),Edit:WDt,render:NDt,enableSorting:!1},LDt=({data:e,field:t,onChange:n})=>{const{id:o}=t,r=e.type,s=typeof e.id=="number"?e.id:parseInt(e.id,10),i=e.slug,{availableTemplates:c,templates:l}=G(z=>{var A;const _=(A=z(Me).getEntityRecords("postType","wp_template",{per_page:-1,post_type:r}))!==null&&A!==void 0?A:[],{getHomePage:v,getPostsPageId:M}=Wm(z(Me)),y=M()===+s,k=r==="page"&&v()?.postId===+s;return{templates:_,availableTemplates:!y&&!k?_.filter(C=>C.is_custom&&C.slug!==e.template&&!!C.content.raw):[]}},[e.template,s,r]),u=x.useMemo(()=>c.map(z=>({name:z.slug,blocks:Ko(z.content.raw),title:Lt(z.title.rendered),id:z.id})),[c]),d=W4(u),p=t.getValue({item:e}),f=G(z=>{const A=l?.find(v=>v.slug===p);if(A)return A;let _;if(i?_=r==="page"?`${r}-${i}`:`single-${r}-${i}`:_=r==="page"?"page":`single-${r}`,r){const v=z(Me).getDefaultTemplateId({slug:_});return z(Me).getEntityRecord("postType","wp_template",v)}},[r,i,l,p]),[b,h]=x.useState(!1),g=x.useCallback(z=>n({[o]:z}),[o,n]);return a.jsxs("fieldset",{className:"fields-controls__template",children:[a.jsx(so,{popoverProps:{placement:"bottom-start"},renderToggle:({onToggle:z})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",size:"compact",onClick:z,children:f?Wr(f):""}),renderContent:({onToggle:z})=>a.jsxs(Cn,{children:[a.jsx(Ct,{onClick:()=>{h(!0),z()},children:m("Change template")}),p!==""&&a.jsx(Ct,{onClick:()=>{g(""),z()},children:m("Use default template")})]})}),b&&a.jsx(Zo,{title:m("Choose a template"),onRequestClose:()=>h(!1),overlayClassName:"fields-controls__template-modal",isFullScreen:!0,children:a.jsx("div",{className:"fields-controls__template-content",children:a.jsx(qa,{label:m("Templates"),blockPatterns:u,shownPatterns:d,onClickPattern:z=>{g(z.name),h(!1)}})})})]})},PDt={id:"template",type:"text",label:m("Template"),Edit:LDt,enableSorting:!1};function rN(e){return typeof e.title=="object"&&"rendered"in e.title&&e.title.rendered?Lt(e.title.rendered):`#${e?.id} (${m("no title")})`}function jDt(e){const t=e.map(r=>({children:[],...r}));if(t.some(({parent:r})=>r==null))return t;const n=t.reduce((r,s)=>{const{parent:i}=s;return r[i]||(r[i]=[]),r[i].push(s),r},{}),o=r=>r.map(s=>{const i=n[s.id];return{...s,children:i&&i.length?o(i):[]}});return o(n[0]||[])}const $te=(e,t)=>{const n=ms(e||"").toLowerCase(),o=ms(t||"").toLowerCase();return n===o?0:n.startsWith(o)?n.length:1/0};function IDt({data:e,onChangeControl:t}){const[n,o]=x.useState(null),r=e.parent,s=e.id,i=e.type,{parentPostTitle:c,pageItems:l,isHierarchical:u}=G(b=>{const{getEntityRecord:h,getEntityRecords:g,getPostType:z}=b(Me),A=z(i),_=A?.hierarchical&&A.viewable,v=r?h("postType",i,r):null,M={per_page:100,exclude:s,parent_exclude:s,orderby:"menu_order",order:"asc",_fields:"id,title,parent",...n!==null&&{search:n}};return{isHierarchical:_,parentPostTitle:v?rN(v):"",pageItems:_?g("postType",i,M):null}},[n,r,s,i]),d=x.useMemo(()=>{const b=(A,_=0)=>A.map(y=>[{value:y.id,label:"— ".repeat(_)+Lt(y.name),rawName:y.name},...b(y.children||[],_+1)]).sort(([y],[k])=>{const S=$te(y.rawName,n??""),C=$te(k.rawName,n??"");return S>=C?1:-1}).flat();if(!l)return[];let h=l.map(A=>{var _;return{id:A.id,parent:(_=A.parent)!==null&&_!==void 0?_:null,name:rN(A)}});n||(h=jDt(h));const g=b(h),z=g.find(A=>A.value===r);return r&&c&&!z&&g.unshift({value:r,label:c,rawName:""}),g.map(A=>({...A,value:A.value.toString()}))},[l,n,c,r]);if(!u)return null;const p=b=>{o(b)},f=b=>{if(b){var h;return t((h=parseInt(b,10))!==null&&h!==void 0?h:0)}t(0)};return a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Parent"),help:m("Choose a parent page."),value:r?.toString(),options:d,onFilterValueChange:F1(b=>p(b),300),onChange:f,hideLabelFromVision:!0})}const DDt=({data:e,field:t,onChange:n})=>{const{id:o}=t,r=G(i=>i(Me).getEntityRecord("root","__unstableBase")?.home,[]),s=x.useCallback(i=>n({[o]:i}),[o,n]);return a.jsx("fieldset",{className:"fields-controls__parent",children:a.jsxs("div",{children:[cr(xe(m('Child pages inherit characteristics from their parent, such as URL structure. For instance, if "Pricing" is a child of "Services", its URL would be %1$s<wbr />/services<wbr />/pricing.'),Ph(r).replace(/([/.])/g,"<wbr />$1")),{wbr:a.jsx("wbr",{})}),a.jsx("p",{children:cr(m("They also show up as sub-items in the default navigation menu. <a>Learn more.</a>"),{a:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#page-attributes"),children:void 0})})}),a.jsx(IDt,{data:e,onChangeControl:s})]})})},FDt=({item:e})=>{const t=G(n=>{const{getEntityRecord:o}=n(Me);return e?.parent?o("postType",e.type,e.parent):null},[e.parent,e.type]);return t?a.jsx(a.Fragment,{children:rN(t)}):a.jsx(a.Fragment,{children:m("None")})},$Dt={id:"parent",type:"text",label:m("Parent"),Edit:DDt,render:FDt,enableSorting:!0};function VDt({data:e,onChange:t,field:n}){const[o,r]=x.useState(!!n.getValue({item:e})),s=i=>{r(i),i||t({password:""})};return a.jsxs(dt,{as:"fieldset",spacing:4,className:"fields-controls__password",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Password protected"),help:m("Only visible to those who know the password"),checked:o,onChange:s}),o&&a.jsx("div",{className:"fields-controls__password-input",children:a.jsx(dn,{label:m("Password"),onChange:i=>t({password:i}),value:n.getValue({item:e})||"",placeholder:m("Use a secure password"),type:"text",__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,maxLength:255})})]})}const HDt={id:"password",type:"text",Edit:VDt,enableSorting:!1,enableHiding:!1,isVisible:e=>e.status!=="private"},wOe=[{value:"draft",label:m("Draft"),icon:L8,description:m("Not ready to publish.")},{value:"future",label:m("Scheduled"),icon:Pde,description:m("Publish automatically on a chosen date.")},{value:"pending",label:m("Pending Review"),icon:Ode,description:m("Waiting for review before publishing.")},{value:"private",label:m("Private"),icon:gde,description:m("Only visible to site admins and editors.")},{value:"publish",label:m("Published"),icon:Dw,description:m("Visible to everyone.")},{value:"trash",label:m("Trash"),icon:K3}];function UDt({item:e}){const t=wOe.find(({value:r})=>r===e.status),n=t?.label||e.status,o=t?.icon;return a.jsxs(Ot,{alignment:"left",spacing:0,children:[o&&a.jsx("div",{className:"edit-site-post-list__status-icon",children:a.jsx(qo,{icon:o})}),a.jsx("span",{children:n})]})}const XDt="isAny",GDt={label:m("Status"),id:"status",type:"text",elements:wOe,render:UDt,Edit:"radio",enableSorting:!1,filterBy:{operators:[XDt]}},KDt={id:"comment_status",label:m("Discussion"),type:"text",Edit:"radio",enableSorting:!1,filterBy:{operators:[]},elements:[{value:"open",label:m("Open"),description:m("Visitors can add new comments and replies.")},{value:"closed",label:m("Closed"),description:m("Visitors cannot add new comments or replies. Existing comments remain visible.")}]},Vg=e=>r0(Sa().formats.datetimeAbbreviated,_f(e)),YDt=({item:e})=>{var t,n,o,r;if(["draft","private"].includes((t=e.status)!==null&&t!==void 0?t:"")){var i;return cr(xe(m("<span>Modified: <time>%s</time></span>"),Vg((i=e.date)!==null&&i!==void 0?i:null)),{span:a.jsx("span",{}),time:a.jsx("time",{})})}if(e.status==="future"){var l;return cr(xe(m("<span>Scheduled: <time>%s</time></span>"),Vg((l=e.date)!==null&&l!==void 0?l:null)),{span:a.jsx("span",{}),time:a.jsx("time",{})})}if(e.status==="publish"){var d;return cr(xe(m("<span>Published: <time>%s</time></span>"),Vg((d=e.date)!==null&&d!==void 0?d:null)),{span:a.jsx("span",{}),time:a.jsx("time",{})})}const p=_f((n=e.modified)!==null&&n!==void 0?n:null)>_f((o=e.date)!==null&&o!==void 0?o:null)?e.modified:e.date;return e.status==="pending"?cr(xe(m("<span>Modified: <time>%s</time></span>"),Vg(p??null)),{span:a.jsx("span",{}),time:a.jsx("time",{})}):a.jsx("time",{children:Vg((r=e.date)!==null&&r!==void 0?r:null)})},ZDt={id:"date",type:"datetime",label:m("Date"),render:YDt};function QDt({item:e}){const{text:t,imageUrl:n}=G(s=>{const{getEntityRecord:i}=s(Me);let c;return e.author&&(c=i("root","user",e.author)),{imageUrl:c?.avatar_urls?.[48],text:c?.name}},[e]),[o,r]=x.useState(!1);return a.jsxs(Ot,{alignment:"left",spacing:0,children:[!!n&&a.jsx("div",{className:oe("page-templates-author-field__avatar",{"is-loaded":o}),children:a.jsx("img",{onLoad:()=>r(!0),alt:m("Author avatar"),src:n})}),!n&&a.jsx("div",{className:"page-templates-author-field__icon",children:a.jsx(qo,{icon:NP})}),a.jsx("span",{className:"page-templates-author-field__name",children:t})]})}const JDt={label:m("Author"),id:"author",type:"integer",elements:[],render:QDt,sort:(e,t,n)=>{const o=e._embedded?.author?.[0]?.name||"",r=t._embedded?.author?.[0]?.name||"";return n==="asc"?o.localeCompare(r):r.localeCompare(o)}},eFt={id:"view-post",label:We("View","verb"),isPrimary:!0,icon:vf,isEligible(e){return e.status!=="trash"},callback(e,{onActionPerformed:t}){const n=e[0];window.open(n?.link,"_blank"),t&&t(e)}};function tFt(e,t,n){return n==="asc"?e-t:t-e}function nFt(e,t){return!(e===""||!Number.isInteger(Number(e))||t?.elements&&!(t?.elements.map(o=>o.value)).includes(Number(e)))}const oFt={sort:tFt,isValid:nFt,Edit:"integer"};function rFt(e,t,n){return n==="asc"?e.localeCompare(t):t.localeCompare(e)}function sFt(e,t){return!(t?.elements&&!(t?.elements?.map(o=>o.value)).includes(e))}const iFt={sort:rFt,isValid:sFt,Edit:"text"};function aFt(e,t,n){const o=new Date(e).getTime(),r=new Date(t).getTime();return n==="asc"?o-r:r-o}function cFt(e,t){return!(t?.elements&&!(t?.elements.map(o=>o.value)).includes(e))}const lFt={sort:aFt,isValid:cFt,Edit:"datetime"};function uFt(e){return e==="integer"?oFt:e==="text"?iFt:e==="datetime"?lFt:{sort:(t,n,o)=>typeof t=="number"&&typeof n=="number"?o==="asc"?t-n:n-t:o==="asc"?t.localeCompare(n):n.localeCompare(t),isValid:(t,n)=>!(n?.elements&&!(n?.elements?.map(r=>r.value)).includes(t)),Edit:()=>null}}function dFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){const{id:r,label:s}=t,i=t.getValue({item:e}),c=x.useCallback(l=>n({[r]:l}),[r,n]);return a.jsxs("fieldset",{className:"dataviews-controls__datetime",children:[!o&&a.jsx(no.VisualLabel,{as:"legend",children:s}),o&&a.jsx(qn,{as:"legend",children:s}),a.jsx(lO,{currentTime:i,onChange:c,hideLabelFromVision:!0})]})}function pFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){var r;const{id:s,label:i,description:c}=t,l=(r=t.getValue({item:e}))!==null&&r!==void 0?r:"",u=x.useCallback(d=>n({[s]:Number(d)}),[s,n]);return a.jsx(g0,{label:i,help:c,value:l,onChange:u,__next40pxDefaultSize:!0,hideLabelFromVision:o})}function fFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){const{id:r,label:s}=t,i=t.getValue({item:e}),c=x.useCallback(l=>n({[r]:l}),[r,n]);return t.elements?a.jsx(sb,{label:s,onChange:c,options:t.elements,selected:i,hideLabelFromVision:o}):null}function bFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){var r,s;const{id:i,label:c}=t,l=(r=t.getValue({item:e}))!==null&&r!==void 0?r:"",u=x.useCallback(p=>n({[i]:p}),[i,n]),d=[{label:m("Select item"),value:""},...(s=t?.elements)!==null&&s!==void 0?s:[]];return a.jsx(jn,{label:c,value:l,options:d,onChange:u,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,hideLabelFromVision:o})}function hFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){const{id:r,label:s,placeholder:i}=t,c=t.getValue({item:e}),l=x.useCallback(u=>n({[r]:u}),[r,n]);return a.jsx(dn,{label:s,placeholder:i,value:c??"",onChange:l,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,hideLabelFromVision:o})}const Vte={datetime:dFt,integer:pFt,radio:fFt,select:bFt,text:hFt};function mFt(e,t){return typeof e.Edit=="function"?e.Edit:typeof e.Edit=="string"?zT(e.Edit):e.elements?zT("select"):typeof t.Edit=="string"?zT(t.Edit):t.Edit}function zT(e){if(Object.keys(Vte).includes(e))return Vte[e];throw"Control "+e+" not found"}const gFt=e=>({item:t})=>{const n=e.split(".");let o=t;for(const r of n)o.hasOwnProperty(r)?o=o[r]:o=void 0;return o};function _Oe(e){return e.map(t=>{var n,o,r,s;const i=uFt(t.type),c=t.getValue||gFt(t.id),l=(n=t.sort)!==null&&n!==void 0?n:function(h,g,z){return i.sort(c({item:h}),c({item:g}),z)},u=(o=t.isValid)!==null&&o!==void 0?o:function(h,g){return i.isValid(c({item:h}),g)},d=mFt(t,i),p=({item:b})=>{const h=c({item:b});return t?.elements?.find(g=>g.value===h)?.label||c({item:b})},f=t.render||(t.elements?p:c);return{...t,label:t.label||t.id,header:t.header||t.label||t.id,getValue:c,render:f,sort:l,isValid:u,Edit:d,enableHiding:(r=t.enableHiding)!==null&&r!==void 0?r:!0,enableSorting:(s=t.enableSorting)!==null&&s!==void 0?s:!0}})}const ak=x.createContext({fields:[]});function MFt({fields:e,children:t}){return a.jsx(ak.Provider,{value:{fields:e},children:t})}function hd(e){return e.children!==void 0}function zFt({title:e}){return a.jsx(dt,{className:"dataforms-layouts-regular__header",spacing:4,children:a.jsxs(Ot,{alignment:"center",children:[a.jsx(_a,{level:2,size:13,children:e}),a.jsx(t1,{})]})})}function OFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){var r;const{fields:s}=x.useContext(ak),i=x.useMemo(()=>hd(t)?{fields:t.children.map(u=>typeof u=="string"?{id:u}:u),type:"regular"}:{type:"regular",fields:[]},[t]);if(hd(t))return a.jsxs(a.Fragment,{children:[!o&&t.label&&a.jsx(zFt,{title:t.label}),a.jsx(jI,{data:e,form:i,onChange:n})]});const c=(r=t.labelPosition)!==null&&r!==void 0?r:"top",l=s.find(u=>u.id===t.id);return l?c==="side"?a.jsxs(Ot,{className:"dataforms-layouts-regular__field",children:[a.jsx("div",{className:"dataforms-layouts-regular__field-label",children:l.label}),a.jsx("div",{className:"dataforms-layouts-regular__field-control",children:a.jsx(l.Edit,{data:e,field:l,onChange:n,hideLabelFromVision:!0},l.id)})]}):a.jsx("div",{className:"dataforms-layouts-regular__field",children:a.jsx(l.Edit,{data:e,field:l,onChange:n,hideLabelFromVision:c==="none"?!0:o})}):null}function yFt({title:e,onClose:t}){return a.jsx(dt,{className:"dataforms-layouts-panel__dropdown-header",spacing:4,children:a.jsxs(Ot,{alignment:"center",children:[e&&a.jsx(_a,{level:2,size:13,children:e}),a.jsx(t1,{}),t&&a.jsx(Ce,{label:m("Close"),icon:rp,onClick:t,size:"small"})]})})}function OT({fieldDefinition:e,popoverAnchor:t,labelPosition:n="side",data:o,onChange:r,field:s}){const i=hd(s)?s.label:e?.label,c=x.useMemo(()=>hd(s)?{type:"regular",fields:s.children.map(u=>typeof u=="string"?{id:u}:u)}:{type:"regular",fields:[{id:s.id}]},[s]),l=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]);return a.jsx(so,{contentClassName:"dataforms-layouts-panel__field-dropdown",popoverProps:l,focusOnMount:!0,toggleProps:{size:"compact",variant:"tertiary",tooltipPosition:"middle left"},renderToggle:({isOpen:u,onToggle:d})=>a.jsx(Ce,{className:"dataforms-layouts-panel__field-control",size:"compact",variant:["none","top"].includes(n)?"link":"tertiary","aria-expanded":u,"aria-label":xe(We("Edit %s","field"),i),onClick:d,children:a.jsx(e.render,{item:o})}),renderContent:({onClose:u})=>a.jsxs(a.Fragment,{children:[a.jsx(yFt,{title:i,onClose:u}),a.jsx(jI,{data:o,form:c,onChange:r,children:(d,p)=>{var f;return a.jsx(d,{data:o,field:p,onChange:r,hideLabelFromVision:((f=c?.fields)!==null&&f!==void 0?f:[]).length<2},p.id)}})]})})}function AFt({data:e,field:t,onChange:n}){var o;const{fields:r}=x.useContext(ak),s=r.find(d=>{if(hd(t)){const p=t.children.filter(b=>typeof b=="string"||!hd(b)),f=typeof p[0]=="string"?p[0]:p[0].id;return d.id===f}return d.id===t.id}),i=(o=t.labelPosition)!==null&&o!==void 0?o:"side",[c,l]=x.useState(null);if(!s)return null;const u=hd(t)?t.label:s?.label;return i==="top"?a.jsxs(dt,{className:"dataforms-layouts-panel__field",spacing:0,children:[a.jsx("div",{className:"dataforms-layouts-panel__field-label",style:{paddingBottom:0},children:u}),a.jsx("div",{className:"dataforms-layouts-panel__field-control",children:a.jsx(OT,{field:t,popoverAnchor:c,fieldDefinition:s,data:e,onChange:n,labelPosition:i})})]}):i==="none"?a.jsx("div",{className:"dataforms-layouts-panel__field",children:a.jsx(OT,{field:t,popoverAnchor:c,fieldDefinition:s,data:e,onChange:n,labelPosition:i})}):a.jsxs(Ot,{ref:l,className:"dataforms-layouts-panel__field",children:[a.jsx("div",{className:"dataforms-layouts-panel__field-label",children:u}),a.jsx("div",{className:"dataforms-layouts-panel__field-control",children:a.jsx(OT,{field:t,popoverAnchor:c,fieldDefinition:s,data:e,onChange:n,labelPosition:i})})]})}const vFt=[{type:"regular",component:OFt},{type:"panel",component:AFt}];function xFt(e){return vFt.find(t=>t.type===e)}function wFt(e){var t,n,o;let r="regular";["regular","panel"].includes((t=e.type)!==null&&t!==void 0?t:"")&&(r=e.type);const s=(n=e.labelPosition)!==null&&n!==void 0?n:r==="regular"?"top":"side";return((o=e.fields)!==null&&o!==void 0?o:[]).map(i=>{var c,l;if(typeof i=="string")return{id:i,layout:r,labelPosition:s};const u=(c=i.layout)!==null&&c!==void 0?c:r,d=(l=i.labelPosition)!==null&&l!==void 0?l:u==="regular"?"top":"side";return{...i,layout:u,labelPosition:d}})}function jI({data:e,form:t,onChange:n,children:o}){const{fields:r}=x.useContext(ak);function s(c){const l=typeof c=="string"?c:c.id;return r.find(u=>u.id===l)}const i=x.useMemo(()=>wFt(t),[t]);return a.jsx(dt,{spacing:2,children:i.map(c=>{const l=xFt(c.layout)?.component;if(!l)return null;const u=hd(c)?void 0:s(c);return u&&u.isVisible&&!u.isVisible(e)?null:o?o(l,c):a.jsx(l,{data:e,field:c,onChange:n},c.id)})})}function kOe({data:e,form:t,fields:n,onChange:o}){const r=x.useMemo(()=>_Oe(n),[n]);return t.fields?a.jsx(MFt,{fields:r,children:a.jsx(jI,{data:e,form:t,onChange:o})}):null}function Hte(e,t,n){return _Oe(t.filter(({id:r})=>!!n.fields?.includes(r))).every(r=>r.isValid(e,{elements:r.elements}))}const yT=[MDt],AT={fields:["menu_order"]};function _Ft({items:e,closeModal:t,onActionPerformed:n}){const[o,r]=x.useState(e[0]),s=o.menu_order,{editEntityRecord:i,saveEditedEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(f){if(f.preventDefault(),!!Hte(o,yT,AT))try{await i("postType",o.type,o.id,{menu_order:s}),t?.(),await c("postType",o.type,o.id,{throwOnError:!0}),l(m("Order updated."),{type:"snackbar"}),n?.(e)}catch(b){const h=b,g=h.message&&h.code!=="unknown_error"?h.message:m("An error occurred while updating the order");u(g,{type:"snackbar"})}}const p=!Hte(o,yT,AT);return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx("div",{children:m("Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported.")}),a.jsx(kOe,{data:o,fields:yT,form:AT,onChange:f=>r({...o,...f})}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",accessibleWhenDisabled:!0,disabled:p,children:m("Save")})]})]})})}const kFt={id:"order-pages",label:m("Order"),isEligible({status:e}){return e!=="trash"},RenderModal:_Ft},SFt=[bOe],CFt={fields:["title"]},qFt={id:"duplicate-post",label:We("Duplicate","action label"),isEligible({status:e}){return e!=="trash"},RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState({...e[0],title:xe(We("%s (Copy)","post"),Wr(e[0]))}),[s,i]=x.useState(!1),{saveEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(p){if(p.preventDefault(),s)return;const f={status:"draft",title:o.title,slug:o.title||m("No title"),comment_status:o.comment_status,content:typeof o.content=="string"?o.content:o.content.raw,excerpt:typeof o.excerpt=="string"?o.excerpt:o.excerpt?.raw,meta:o.meta,parent:o.parent,password:o.password,template:o.template,format:o.format,featured_media:o.featured_media,menu_order:o.menu_order,ping_status:o.ping_status},b="wp:action-assign-";Object.keys(o?._links||{}).filter(g=>g.startsWith(b)).map(g=>g.slice(b.length)).forEach(g=>{o.hasOwnProperty(g)&&(f[g]=o[g])}),i(!0);try{const g=await c("postType",o.type,f,{throwOnError:!0});l(xe(m('"%s" successfully created.'),Lt(g.title?.rendered||o.title)),{id:"duplicate-post-action",type:"snackbar"}),n&&n([g])}catch(g){const z=g,A=z.message&&z.code!=="unknown_error"?z.message:m("An error occurred while duplicating the page.");u(A,{type:"snackbar"})}finally{i(!1),t?.()}}return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:3,children:[a.jsx(kOe,{data:o,fields:SFt,form:CFt,onChange:p=>r(f=>({...f,...p}))}),a.jsxs(Ot,{spacing:2,justify:"end",children:[a.jsx(Ce,{variant:"tertiary",onClick:t,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",type:"submit",isBusy:s,"aria-disabled":s,__next40pxDefaultSize:!0,children:We("Duplicate","action label")})]})]})})}},{PATTERN_TYPES:Ute}=Wm(Hi),RFt={id:"rename-post",label:m("Rename"),isEligible(e){return e.status==="trash"?!1:["wp_template","wp_template_part",...Object.values(Ute)].includes(e.type)?C9t(e)?uOe(e)&&e.is_custom&&e.permissions?.update:q9t(e)?e.source==="custom"&&!e?.has_theme_file&&e.permissions?.update:e.type===Ute.user&&e.permissions?.update:e.permissions?.update},RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o]=e,[r,s]=x.useState(()=>Wr(o)),{editEntityRecord:i,saveEditedEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(p){p.preventDefault();try{await i("postType",o.type,o.id,{title:r}),s(""),t?.(),await c("postType",o.type,o.id,{throwOnError:!0}),l(m("Name updated"),{type:"snackbar"}),n?.(e)}catch(f){const b=f,h=b.message&&b.code!=="unknown_error"?b.message:m("An error occurred while updating the name");u(h,{type:"snackbar"})}}return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Name"),value:r,onChange:s,required:!0}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Save")})]})]})})}},TFt=e=>e?e.source==="custom"&&(!!e?.plugin||e?.has_theme_file):!1,EFt=async(e,{allowUndo:t=!0}={})=>{const n="edit-site-template-reverted";if(kr(mt).removeNotice(n),!TFt(e)){kr(mt).createErrorNotice(m("This template is not revertable."),{type:"snackbar"});return}try{const o=uo(Me).getEntityConfig("postType",e.type);if(!o){kr(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const r=tn(`${o.baseURL}/${e.id}`,{context:"edit",source:e.origin}),s=await Tt({path:r});if(!s){kr(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const i=({blocks:u=[]})=>Jd(u),c=uo(Me).getEditedEntityRecord("postType",e.type,e.id);kr(Me).editEntityRecord("postType",e.type,e.id,{content:i,blocks:c.blocks,source:"custom"},{undoIgnore:!0});const l=Ko(s?.content?.raw);if(kr(Me).editEntityRecord("postType",e.type,s.id,{content:i,blocks:l,source:"theme"}),t){const u=()=>{kr(Me).editEntityRecord("postType",e.type,c.id,{content:i,blocks:c.blocks,source:"custom"})};kr(mt).createSuccessNotice(m("Template reset."),{type:"snackbar",id:n,actions:[{label:m("Undo"),onClick:u}]})}}catch(o){const r=o.message&&o.code!=="unknown_error"?o.message:m("Template revert failed. Please reload.");kr(mt).createErrorNotice(r,{type:"snackbar"})}},WFt={id:"reset-post",label:m("Reset"),isEligible:e=>qh(e)&&e?.source==="custom"&&(!!(e.type==="wp_template"&&e?.plugin)||e?.has_theme_file),icon:Yue,supportsBulk:!0,hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),{saveEditedEntityRecord:s}=Oe(Me),{createSuccessNotice:i,createErrorNotice:c}=Oe(mt),l=async()=>{try{for(const u of e)await EFt(u,{allowUndo:!1}),await s("postType",u.type,u.id);i(e.length>1?xe(m("%s items reset."),e.length):xe(m('"%s" reset.'),Wr(e[0])),{type:"snackbar",id:"revert-template-action"})}catch(u){let d;e[0].type==="wp_template"?d=e.length===1?m("An error occurred while reverting the template."):m("An error occurred while reverting the templates."):d=e.length===1?m("An error occurred while reverting the template part."):m("An error occurred while reverting the template parts.");const p=u,f=p.message&&p.code!=="unknown_error"?p.message:d;c(f,{type:"snackbar"})}};return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:m("Reset to default and clear all customizations?")}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:async()=>{r(!0),await l(),n?.(e),r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,children:m("Reset")})]})]})}},{CreatePatternModalContents:NFt,useDuplicatePatternProps:BFt}=Wm(Hi),LFt={id:"duplicate-pattern",label:We("Duplicate","action label"),isEligible:e=>e.type!=="wp_template_part",modalHeader:We("Duplicate pattern","action label"),RenderModal:({items:e,closeModal:t})=>{const[n]=e,o=BFt({pattern:n,onSuccess:()=>t?.()});return a.jsx(NFt,{onClose:t,confirmLabel:We("Duplicate","action label"),...o})}};"stream"in Blob.prototype||Object.defineProperty(Blob.prototype,"stream",{value(){return new Response(this).body}}),"setBigUint64"in DataView.prototype||Object.defineProperty(DataView.prototype,"setBigUint64",{value(e,t,n){const o=Number(0xffffffffn&t),r=Number(t>>32n);this.setUint32(e+(n?0:4),o,n),this.setUint32(e+(n?4:0),r,n)}});var Th=e=>new DataView(new ArrayBuffer(e)),Hl=e=>new Uint8Array(e.buffer||e),v2=e=>new TextEncoder().encode(String(e)),uf=e=>Math.min(4294967295,Number(e)),Xte=e=>Math.min(65535,Number(e));function PFt(e,t){if(t===void 0||t instanceof Date||(t=new Date(t)),e instanceof File)return{isFile:1,t:t||new Date(e.lastModified),i:e.stream()};if(e instanceof Response)return{isFile:1,t:t||new Date(e.headers.get("Last-Modified")||Date.now()),i:e.body};if(t===void 0)t=new Date;else if(isNaN(t))throw new Error("Invalid modification date.");if(e===void 0)return{isFile:0,t};if(typeof e=="string")return{isFile:1,t,i:v2(e)};if(e instanceof Blob)return{isFile:1,t,i:e.stream()};if(e instanceof Uint8Array||e instanceof ReadableStream)return{isFile:1,t,i:e};if(e instanceof ArrayBuffer||ArrayBuffer.isView(e))return{isFile:1,t,i:Hl(e)};if(Symbol.asyncIterator in e)return{isFile:1,t,i:SOe(e[Symbol.asyncIterator]())};throw new TypeError("Unsupported input format.")}function SOe(e,t=e){return new ReadableStream({async pull(n){let o=0;for(;n.desiredSize>o;){const r=await e.next();if(!r.value){n.close();break}{const s=jFt(r.value);n.enqueue(s),o+=s.byteLength}}},cancel(n){t.throw?.(n)}})}function jFt(e){return typeof e=="string"?v2(e):e instanceof Uint8Array?e:Hl(e)}function COe(e,t,n){let[o,r]=function(s){return s?s instanceof Uint8Array?[s,1]:ArrayBuffer.isView(s)||s instanceof ArrayBuffer?[Hl(s),1]:[v2(s),0]:[void 0,0]}(t);if(e instanceof File)return{o:vT(o||v2(e.name)),u:BigInt(e.size),l:r};if(e instanceof Response){const s=e.headers.get("content-disposition"),i=s&&s.match(/;\s*filename\*?\s*=\s*(?:UTF-\d+''|)["']?([^;"'\r\n]*)["']?(?:;|$)/i),c=i&&i[1]||e.url&&new URL(e.url).pathname.split("/").findLast(Boolean),l=c&&decodeURIComponent(c),u=n||+e.headers.get("content-length");return{o:vT(o||v2(l)),u:BigInt(u),l:r}}return o=vT(o,e!==void 0||n!==void 0),typeof e=="string"?{o,u:BigInt(v2(e).length),l:r}:e instanceof Blob?{o,u:BigInt(e.size),l:r}:e instanceof ArrayBuffer||ArrayBuffer.isView(e)?{o,u:BigInt(e.byteLength),l:r}:{o,u:IFt(e,n),l:r}}function IFt(e,t){return t>-1?BigInt(t):e?void 0:0n}function vT(e,t=1){if(!e||e.every(n=>n===47))throw new Error("The file must have a name.");if(t)for(;e[e.length-1]===47;)e=e.subarray(0,-1);else e[e.length-1]!==47&&(e=new Uint8Array([...e,47]));return e}var qOe=new Uint32Array(256);for(let e=0;e<256;++e){let t=e;for(let n=0;n<8;++n)t=t>>>1^(1&t&&3988292384);qOe[e]=t}function Gte(e,t=0){t^=-1;for(var n=0,o=e.length;n<o;n++)t=t>>>8^qOe[255&t^e[n]];return(-1^t)>>>0}function ROe(e,t,n=0){const o=e.getSeconds()>>1|e.getMinutes()<<5|e.getHours()<<11,r=e.getDate()|e.getMonth()+1<<5|e.getFullYear()-1980<<9;t.setUint16(n,o,1),t.setUint16(n+2,r,1)}function DFt({o:e,l:t},n){return 8*(!t||(n??function(o){try{FFt.decode(o)}catch{return 0}return 1}(e)))}var FFt=new TextDecoder("utf8",{fatal:1});function $Ft(e,t=0){const n=Th(30);return n.setUint32(0,1347093252),n.setUint32(4,754976768|t),ROe(e.t,n,10),n.setUint16(26,e.o.length,1),Hl(n)}async function*VFt(e){let{i:t}=e;if("then"in t&&(t=await t),t instanceof Uint8Array)yield t,e.m=Gte(t,0),e.u=BigInt(t.length);else{e.u=0n;const n=t.getReader();for(;;){const{value:o,done:r}=await n.read();if(r)break;e.m=Gte(o,e.m),e.u+=BigInt(o.length),yield o}}}function HFt(e,t){const n=Th(16+(t?8:0));return n.setUint32(0,1347094280),n.setUint32(4,e.isFile?e.m:0,1),t?(n.setBigUint64(8,e.u,1),n.setBigUint64(16,e.u,1)):(n.setUint32(8,uf(e.u),1),n.setUint32(12,uf(e.u),1)),Hl(n)}function UFt(e,t,n=0,o=0){const r=Th(46);return r.setUint32(0,1347092738),r.setUint32(4,755182848),r.setUint16(8,2048|n),ROe(e.t,r,12),r.setUint32(16,e.isFile?e.m:0,1),r.setUint32(20,uf(e.u),1),r.setUint32(24,uf(e.u),1),r.setUint16(28,e.o.length,1),r.setUint16(30,o,1),r.setUint16(40,e.isFile?33204:16893,1),r.setUint32(42,uf(t),1),Hl(r)}function XFt(e,t,n){const o=Th(n);return o.setUint16(0,1,1),o.setUint16(2,n-4,1),16&n&&(o.setBigUint64(4,e.u,1),o.setBigUint64(12,e.u,1)),o.setBigUint64(n-8,t,1),Hl(o)}function TOe(e){return e instanceof File||e instanceof Response?[[e],[e]]:[[e.input,e.name,e.size],[e.input,e.lastModified]]}var GFt=e=>function(t){let n=BigInt(22),o=0n,r=0;for(const s of t){if(!s.o)throw new Error("Every file must have a non-empty name.");if(s.u===void 0)throw new Error(`Missing size for file "${new TextDecoder().decode(s.o)}".`);const i=s.u>=0xffffffffn,c=o>=0xffffffffn;o+=BigInt(46+s.o.length+(i&&8))+s.u,n+=BigInt(s.o.length+46+(12*c|28*i)),r||(r=i)}return(r||o>=0xffffffffn)&&(n+=BigInt(76)),n+o}(function*(t){for(const n of t)yield COe(...TOe(n)[0])}(e));function KFt(e,t={}){const n={"Content-Type":"application/zip","Content-Disposition":"attachment"};return(typeof t.length=="bigint"||Number.isInteger(t.length))&&t.length>0&&(n["Content-Length"]=String(t.length)),t.metadata&&(n["Content-Length"]=String(GFt(t.metadata))),new Response(YFt(e,t),{headers:n})}function YFt(e,t={}){const n=function(o){const r=o[Symbol.iterator in o?Symbol.iterator:Symbol.asyncIterator]();return{async next(){const s=await r.next();if(s.done)return s;const[i,c]=TOe(s.value);return{done:0,value:Object.assign(PFt(...c),COe(...i))}},throw:r.throw?.bind(r),[Symbol.asyncIterator](){return this}}}(e);return SOe(async function*(o,r){const s=[];let i=0n,c=0n,l=0;for await(const p of o){const f=DFt(p,r.buffersAreUTF8);yield $Ft(p,f),yield new Uint8Array(p.o),p.isFile&&(yield*VFt(p));const b=p.u>=0xffffffffn,h=12*(i>=0xffffffffn)|28*b;yield HFt(p,b),s.push(UFt(p,i,f,h)),s.push(p.o),h&&s.push(XFt(p,i,h)),b&&(i+=8n),c++,i+=BigInt(46+p.o.length)+p.u,l||(l=b)}let u=0n;for(const p of s)yield p,u+=BigInt(p.length);if(l||i>=0xffffffffn){const p=Th(76);p.setUint32(0,1347094022),p.setBigUint64(4,BigInt(44),1),p.setUint32(12,755182848),p.setBigUint64(24,c,1),p.setBigUint64(32,c,1),p.setBigUint64(40,u,1),p.setBigUint64(48,i,1),p.setUint32(56,1347094023),p.setBigUint64(64,i+u,1),p.setUint32(72,1,1),yield Hl(p)}const d=Th(22);d.setUint32(0,1347093766),d.setUint16(8,Xte(c),1),d.setUint16(10,Xte(c),1),d.setUint32(12,uf(u),1),d.setUint32(16,uf(i),1),yield Hl(d)}(n,t),n)}function Kte(e){return JSON.stringify({__file:e.type,title:Wr(e),content:typeof e.content=="string"?e.content:e.content?.raw,syncStatus:e.wp_pattern_sync_status},null,2)}const ZFt={id:"export-pattern",label:m("Export as JSON"),icon:WZe,supportsBulk:!0,isEligible:e=>e.type==="wp_block",callback:async e=>{if(e.length===1)return OX(`${Ti(Wr(e[0])||e[0].slug)}.json`,Kte(e[0]),"application/json");const t={},n=e.map(o=>{const r=Ti(Wr(o)||o.slug);return t[r]=(t[r]||0)+1,{name:`${r+(t[r]>1?"-"+(t[r]-1):"")}.json`,lastModified:new Date,input:Kte(o)}});return OX(m("patterns-export")+".zip",await KFt(n).blob(),"application/zip")}},QFt={id:"view-post-revisions",context:"list",label(e){var t;const n=(t=e[0]._links?.["version-history"]?.[0]?.count)!==null&&t!==void 0?t:0;return xe(m("View revisions (%s)"),n)},isEligible(e){var t,n;if(e.status==="trash")return!1;const o=(t=e?._links?.["predecessor-version"]?.[0]?.id)!==null&&t!==void 0?t:null,r=(n=e?._links?.["version-history"]?.[0]?.count)!==null&&n!==void 0?n:0;return!!o&&r>1},callback(e,{onActionPerformed:t}){const n=e[0],o=tn("revision.php",{revision:n?._links?.["predecessor-version"]?.[0]?.id});document.location.href=o,t&&t(e)}},JFt={id:"permanently-delete",label:m("Permanently delete"),supportsBulk:!0,icon:K3,isEligible(e){if(qh(e)||e.type==="wp_block")return!1;const{status:t,permissions:n}=e;return t==="trash"&&n?.delete},hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),{createSuccessNotice:s,createErrorNotice:i}=Oe(mt),{deleteEntityRecord:c}=Oe(Me);return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:e.length>1?xe(Dn("Are you sure you want to permanently delete %d item?","Are you sure you want to permanently delete %d items?",e.length),e.length):xe(m('Are you sure you want to permanently delete "%s"?'),Lt(Wr(e[0])))}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",onClick:async()=>{r(!0);const l=await Promise.allSettled(e.map(u=>c("postType",u.type,u.id,{force:!0},{throwOnError:!0})));if(l.every(({status:u})=>u==="fulfilled")){let u;l.length===1?u=xe(m('"%s" permanently deleted.'),Wr(e[0])):u=m("The items were permanently deleted."),s(u,{type:"snackbar",id:"permanently-delete-post-action"}),n?.(e)}else{let u;if(l.length===1){const d=l[0];d.reason?.message?u=d.reason.message:u=m("An error occurred while permanently deleting the item.")}else{const d=new Set,p=l.filter(({status:f})=>f==="rejected");for(const f of p){const b=f;b.reason?.message&&d.add(b.reason.message)}d.size===0?u=m("An error occurred while permanently deleting the items."):d.size===1?u=xe(m("An error occurred while permanently deleting the items: %s"),[...d][0]):u=xe(m("Some errors occurred while permanently deleting the items: %s"),[...d].join(","))}i(u,{type:"snackbar"})}r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Delete permanently")})]})]})}},e$t={id:"restore",label:m("Restore"),isPrimary:!0,icon:Yue,supportsBulk:!0,isEligible(e){return!qh(e)&&e.type!=="wp_block"&&e.status==="trash"&&e.permissions?.update},async callback(e,{registry:t,onActionPerformed:n}){const{createSuccessNotice:o,createErrorNotice:r}=t.dispatch(mt),{editEntityRecord:s,saveEditedEntityRecord:i}=t.dispatch(Me);await Promise.allSettled(e.map(l=>s("postType",l.type,l.id,{status:"draft"})));const c=await Promise.allSettled(e.map(l=>i("postType",l.type,l.id,{throwOnError:!0})));if(c.every(({status:l})=>l==="fulfilled")){let l;e.length===1?l=xe(m('"%s" has been restored.'),Wr(e[0])):e[0].type==="page"?l=xe(m("%d pages have been restored."),e.length):l=xe(m("%d posts have been restored."),e.length),o(l,{type:"snackbar",id:"restore-post-action"}),n&&n(e)}else{let l;if(c.length===1){const u=c[0];u.reason?.message?l=u.reason.message:l=m("An error occurred while restoring the post.")}else{const u=new Set,d=c.filter(({status:p})=>p==="rejected");for(const p of d){const f=p;f.reason?.message&&u.add(f.reason.message)}u.size===0?l=m("An error occurred while restoring the posts."):u.size===1?l=xe(m("An error occurred while restoring the posts: %s"),[...u][0]):l=xe(m("Some errors occurred while restoring the posts: %s"),[...u].join(","))}r(l,{type:"snackbar"})}}},t$t={id:"move-to-trash",label:m("Move to trash"),isPrimary:!0,icon:K3,isEligible(e){return qh(e)||e.type==="wp_block"?!1:!!e.status&&!["auto-draft","trash"].includes(e.status)&&e.permissions?.delete},supportsBulk:!0,hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),{createSuccessNotice:s,createErrorNotice:i}=Oe(mt),{deleteEntityRecord:c}=Oe(Me);return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:e.length===1?xe(m('Are you sure you want to move "%s" to the trash?'),Wr(e[0])):xe(Dn("Are you sure you want to move %d item to the trash ?","Are you sure you want to move %d items to the trash ?",e.length),e.length)}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:async()=>{r(!0);const l=await Promise.allSettled(e.map(u=>c("postType",u.type,u.id.toString(),{},{throwOnError:!0})));if(l.every(({status:u})=>u==="fulfilled")){let u;l.length===1?u=xe(m('"%s" moved to the trash.'),Wr(e[0])):u=xe(Dn("%s item moved to the trash.","%s items moved to the trash.",e.length),e.length),s(u,{type:"snackbar",id:"move-to-trash-action"})}else{let u;if(l.length===1){const d=l[0];d.reason?.message?u=d.reason.message:u=m("An error occurred while moving the item to the trash.")}else{const d=new Set,p=l.filter(({status:f})=>f==="rejected");for(const f of p){const b=f;b.reason?.message&&d.add(b.reason.message)}d.size===0?u=m("An error occurred while moving the items to the trash."):d.size===1?u=xe(m("An error occurred while moving the item to the trash: %s"),[...d][0]):u=xe(m("Some errors occurred while moving the items to the trash: %s"),[...d].join(","))}i(u,{type:"snackbar"})}n&&n(e),r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,children:We("Trash","verb")})]})]})}};function n$t(e){const t=new Set;if(e.length===1){const n=e[0];n.reason?.message&&t.add(n.reason.message)}else{const n=e.filter(({status:o})=>o==="rejected");for(const o of n){const r=o;r.reason?.message&&t.add(r.reason.message)}}return t}const o$t=async(e,t,n)=>{const{createSuccessNotice:o,createErrorNotice:r}=kr(mt),{deleteEntityRecord:s}=kr(Me),i=await Promise.allSettled(e.map(u=>s("postType",u.type,u.id,{force:!0},{throwOnError:!0})));if(i.every(({status:u})=>u==="fulfilled")){var c;let u;i.length===1?u=t.success.messages.getMessage(e[0]):u=t.success.messages.getBatchMessage(e),o(u,{type:(c=t.success.type)!==null&&c!==void 0?c:"snackbar",id:t.success.id}),n.onActionPerformed?.(e)}else{var l;const u=n$t(i);let d="";i.length===1?d=t.error.messages.getMessage(u):d=t.error.messages.getBatchMessage(u),r(d,{type:(l=t.error.type)!==null&&l!==void 0?l:"snackbar",id:t.error.id}),n.onActionError?.()}},{PATTERN_TYPES:r$t}=Wm(Hi),s$t={id:"delete-post",label:m("Delete"),isPrimary:!0,icon:K3,isEligible(e){return qh(e)?uOe(e):e.type===r$t.user},supportsBulk:!0,hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),s=e.every(i=>qh(i)&&i?.has_theme_file);return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:e.length>1?xe(Dn("Delete %d item?","Delete %d items?",e.length),e.length):xe(We('Delete "%s"?',"template part"),Wr(e[0]))}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",onClick:async()=>{r(!0),await o$t(e,{success:{messages:{getMessage:c=>xe(s?m('"%s" reset.'):We('"%s" deleted.',"template part"),Lt(Wr(c))),getBatchMessage:()=>m(s?"Items reset.":"Items deleted.")}},error:{messages:{getMessage:c=>c.size===1?[...c][0]:m(s?"An error occurred while reverting the item.":"An error occurred while deleting the item."),getBatchMessage:c=>c.size===0?m(s?"An error occurred while reverting the items.":"An error occurred while deleting the items."):c.size===1?s?xe(m("An error occurred while reverting the items: %s"),[...c][0]):xe(m("An error occurred while deleting the items: %s"),[...c][0]):s?xe(m("Some errors occurred while reverting the items: %s"),[...c].join(",")):xe(m("Some errors occurred while deleting the items: %s"),[...c].join(","))}}},{onActionPerformed:n}),r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Delete")})]})]})}},i$t=()=>{var e;return(e=G(t=>t(Me).getEntityRecords("postType","wp_template_part",{per_page:-1}),[]))!==null&&e!==void 0?e:[]},a$t=(e,t)=>{const n=e.toLowerCase(),o=t.map(s=>s.title.rendered.toLowerCase());if(!o.includes(n))return e;let r=2;for(;o.includes(`${n} ${r}`);)r++;return`${e} ${r}`},c$t=e=>Ti(e).replace(/[^\w-]+/g,"")||"wp-custom-part";function Yte(e,t){return`fields-create-template-part-modal__area-option-${e}-${t}`}function Zte(e,t){return`fields-create-template-part-modal__area-option-description-${e}-${t}`}function II({modalTitle:e,...t}){const n=G(o=>o(Me).getPostType("wp_template_part")?.labels?.add_new_item,[]);return a.jsx(Zo,{title:e||n,onRequestClose:t.closeModal,overlayClassName:"fields-create-template-part-modal",focusOnMount:"firstContentElement",size:"medium",children:a.jsx(EOe,{...t})})}const l$t=e=>e==="header"?YP:e==="footer"?KP:e==="sidebar"?ZP:Qf;function EOe({defaultArea:e="uncategorized",blocks:t=[],confirmLabel:n=m("Add"),closeModal:o,onCreate:r,onError:s,defaultTitle:i=""}){const{createErrorNotice:c}=Oe(mt),{saveEntityRecord:l}=Oe(Me),u=i$t(),[d,p]=x.useState(i),[f,b]=x.useState(e),[h,g]=x.useState(!1),z=vt(II),A=G(v=>v(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas,[]);async function _(){if(!(!d||h))try{g(!0);const v=a$t(d,u),M=c$t(v),y=await l("postType","wp_template_part",{slug:M,title:v,content:Ks(t),area:f},{throwOnError:!0});await r(y)}catch(v){const M=v instanceof Error&&"code"in v&&v.message&&v.code!=="unknown_error"?v.message:m("An error occurred while creating the template part.");c(M,{type:"snackbar"}),s?.()}finally{g(!1)}}return a.jsx("form",{onSubmit:async v=>{v.preventDefault(),await _()},children:a.jsxs(dt,{spacing:"4",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Name"),value:d,onChange:p,required:!0}),a.jsxs("fieldset",{children:[a.jsx(no.VisualLabel,{as:"legend",children:m("Area")}),a.jsx("div",{className:"fields-create-template-part-modal__area-radio-group",children:(A??[]).map(v=>{const M=l$t(v.icon);return a.jsxs("div",{className:"fields-create-template-part-modal__area-radio-wrapper",children:[a.jsx("input",{type:"radio",id:Yte(v.area,z),name:`fields-create-template-part-modal__area-${z}`,value:v.area,checked:f===v.area,onChange:()=>{b(v.area)},"aria-describedby":Zte(v.area,z)}),a.jsx(qo,{icon:M,className:"fields-create-template-part-modal__area-radio-icon"}),a.jsx("label",{htmlFor:Yte(v.area,z),className:"fields-create-template-part-modal__area-radio-label",children:v.label}),a.jsx(qo,{icon:M0,className:"fields-create-template-part-modal__area-radio-checkmark"}),a.jsx("p",{className:"fields-create-template-part-modal__area-radio-description",id:Zte(v.area,z),children:v.description})]},v.area)})})]}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{o()},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit","aria-disabled":!d||h,isBusy:h,children:n})]})]})})}const u$t={id:"duplicate-template-part",label:We("Duplicate","action label"),isEligible:e=>e.type==="wp_template_part",modalHeader:We("Duplicate template part","action label"),RenderModal:({items:e,closeModal:t})=>{const[n]=e,o=x.useMemo(()=>{var i;return(i=n.blocks)!==null&&i!==void 0?i:Ko(typeof n.content=="string"?n.content:n.content.raw,{__unstableSkipMigrationLogs:!0})},[n.content,n.blocks]),{createSuccessNotice:r}=Oe(mt);function s(i){r(xe(We('"%s" duplicated.',"template part"),Wr(i)),{type:"snackbar",id:"edit-site-patterns-success"}),t?.()}return a.jsx(EOe,{blocks:o,defaultArea:n.area,defaultTitle:xe(We("%s (Copy)","template part"),Wr(n)),onCreate:s,onError:t,confirmLabel:We("Duplicate","action label"),closeModal:t??(()=>{})})}};function d$t(e,t,n){if(!n)return t;let o=e.get(t);return o||(o=N5({"core/block-editor":b_},t),o.registerStore("core/editor",GOe),e.set(t,o)),o}const p$t=Or(e=>({useSubRegistry:t=!0,...n})=>{const o=Fn(),[r]=x.useState(()=>new WeakMap),s=d$t(r,o,t);return s===o?a.jsx(e,{registry:o,...n}):a.jsx(YN,{value:s,children:a.jsx(e,{registry:s,...n})})},"withRegistryProvider"),Bu=(e,t)=>`<a ${sN(e)}>${t}</a>`,sN=e=>`href="${e}" target="_blank" rel="noreferrer noopener"`,f$t=(e,t)=>{let n=e.trim();return e!=="pdm"&&(n=e.toUpperCase().replace("SAMPLING","Sampling")),t&&(n+=` ${t}`),["pdm","cc0"].includes(e)||(n=`CC ${n}`),n},b$t=e=>{const{title:t,foreign_landing_url:n,creator:o,creator_url:r,license:s,license_version:i,license_url:c}=e,l=f$t(s,i),u=Lt(o);let d;return u?d=t?xe(We('"%1$s" by %2$s/ %3$s',"caption"),Bu(n,Lt(t)),r?Bu(r,u):u,c?Bu(`${c}?ref=openverse`,l):l):xe(We("<a %1$s>Work</a> by %2$s/ %3$s","caption"),sN(n),r?Bu(r,u):u,c?Bu(`${c}?ref=openverse`,l):l):d=t?xe(We('"%1$s"/ %2$s',"caption"),Bu(n,Lt(t)),c?Bu(`${c}?ref=openverse`,l):l):xe(We("<a %1$s>Work</a>/ %2$s","caption"),sN(n),c?Bu(`${c}?ref=openverse`,l):l),d.replace(/\s{2}/g," ")},xT=async(e={})=>(await j0e(Me).getMediaItems({...e,orderBy:e?.search?"relevance":"date"})).map(n=>({...n,alt:n.alt_text,url:n.source_url,previewUrl:n.media_details?.sizes?.medium?.source_url,caption:n.caption?.raw})),h$t=[{name:"images",labels:{name:m("Images"),search_items:m("Search images")},mediaType:"image",async fetch(e={}){return xT({...e,media_type:"image"})}},{name:"videos",labels:{name:m("Videos"),search_items:m("Search videos")},mediaType:"video",async fetch(e={}){return xT({...e,media_type:"video"})}},{name:"audio",labels:{name:m("Audio"),search_items:m("Search audio")},mediaType:"audio",async fetch(e={}){return xT({...e,media_type:"audio"})}},{name:"openverse",labels:{name:m("Openverse"),search_items:m("Search Openverse")},mediaType:"image",async fetch(e={}){const n={...e,...{mature:!1,excluded_source:"flickr,inaturalist,wikimedia",license:"pdm,cc0"}},o={per_page:"page_size",search:"q"},r=new URL("https://api.openverse.org/v1/images/");return Object.entries(n).forEach(([l,u])=>{const d=o[l]||l;r.searchParams.set(d,u)}),(await(await window.fetch(r,{headers:{"User-Agent":"WordPress/inserter-media-fetch"}})).json()).results.map(l=>({...l,title:l.title?.toLowerCase().startsWith("file:")?l.title.slice(5):l.title,sourceId:l.id,id:void 0,caption:b$t(l),previewUrl:l.thumbnail}))},getReportUrl:({sourceId:e})=>`https://wordpress.org/openverse/image/${e}/report/`,isExternalResource:!0}],m$t=()=>{};function WOe({additionalData:e={},allowedTypes:t,filesList:n,maxUploadFileSize:o,onError:r=m$t,onFileChange:s,onSuccess:i}){const{getCurrentPost:c,getEditorSettings:l}=uo(_e),{lockPostAutosaving:u,unlockPostAutosaving:d,lockPostSaving:p,unlockPostSaving:f}=kr(_e),b=l().allowedMimeTypes,h=`image-upload-${Is()}`;let g=!1;o=o||l().maxUploadFileSize;const z=c(),A=typeof z?.id=="number"?z.id:z?.wp_id,_=()=>{p(h),u(h),g=!0},v=A?{post:A}:{},M=()=>{f(h),d(h),g=!1};CDt({allowedTypes:t,filesList:n,onFileChange:y=>{g?M():_(),s?.(y)},onSuccess:i,additionalData:{...v,...e},maxUploadFileSize:o,onError:({message:y})=>{M(),r(y)},wpAllowedMimeTypes:b})}const{sideloadMedia:g$t}=St(xOe),{GlobalStylesContext:M$t,cleanEmptyObject:wT}=St(Ln);function NOe(e,t){return B0e(e,t,{isMergeableObject:a3,customMerge:n=>{if(n==="backgroundImage")return(o,r)=>r}})}function z$t(){const{globalStylesId:e,isReady:t,settings:n,styles:o,_links:r}=G(u=>{const{getEntityRecord:d,getEditedEntityRecord:p,hasFinishedResolution:f,canUser:b}=u(Me),h=u(Me).__experimentalGetCurrentGlobalStylesId();let g;const z=h?b("update",{kind:"root",name:"globalStyles",id:h}):null;h&&typeof z=="boolean"&&(z?g=p("root","globalStyles",h):g=d("root","globalStyles",h,{context:"view"}));let A=!1;return f("__experimentalGetCurrentGlobalStylesId")&&(h?A=z?f("getEditedEntityRecord",["root","globalStyles",h]):f("getEntityRecord",["root","globalStyles",h,{context:"view"}]):A=!0),{globalStylesId:h,isReady:A,settings:g?.settings,styles:g?.styles,_links:g?._links}},[]),{getEditedEntityRecord:s}=G(Me),{editEntityRecord:i}=Oe(Me),c=x.useMemo(()=>({settings:n??{},styles:o??{},_links:r??{}}),[n,o,r]),l=x.useCallback((u,d={})=>{var p,f,b;const h=s("root","globalStyles",e),g={styles:(p=h?.styles)!==null&&p!==void 0?p:{},settings:(f=h?.settings)!==null&&f!==void 0?f:{},_links:(b=h?._links)!==null&&b!==void 0?b:{}},z=typeof u=="function"?u(g):u;i("root","globalStyles",e,{styles:wT(z.styles)||{},settings:wT(z.settings)||{},_links:wT(z._links)||{}},d)},[e,i,s]);return[t,c,l]}function O$t(){const e=G(t=>t(Me).__experimentalGetCurrentThemeBaseGlobalStyles(),[]);return[!!e,e]}function DI(){const[e,t,n]=z$t(),[o,r]=O$t(),s=x.useMemo(()=>!r||!t?{}:NOe(r,t),[t,r]);return x.useMemo(()=>({isReady:e&&o,user:t,base:r,merged:s,setUserConfig:n}),[s,t,r,n,e,o])}function y$t({children:e}){const t=DI();return t.isReady?a.jsx(M$t.Provider,{value:t,children:e}):null}const Qte={};function A$t(e){const{RECEIVE_INTERMEDIATE_RESULTS:t}=St(G3e),{getEntityRecords:n}=e(Me);return n("postType","wp_block",{per_page:-1,[t]:!0})}const v$t=["__experimentalBlockDirectory","__experimentalDiscussionSettings","__experimentalFeatures","__experimentalGlobalStylesBaseStyles","alignWide","blockInspectorTabs","maxUploadFileSize","allowedMimeTypes","bodyPlaceholder","canLockBlocks","canUpdateBlockBindings","capabilities","clearBlockSelection","codeEditingEnabled","colors","disableCustomColors","disableCustomFontSizes","disableCustomSpacingSizes","disableCustomGradients","disableLayoutStyles","enableCustomLineHeight","enableCustomSpacing","enableCustomUnits","enableOpenverseMediaCategory","fontSizes","gradients","generateAnchors","onNavigateToEntityRecord","imageDefaultSize","imageDimensions","imageEditing","imageSizes","isPreviewMode","isRTL","locale","maxWidth","postContentAttributes","postsPerPage","readOnly","styles","titlePlaceholder","supportsLayout","widgetTypesToHideFromLegacyWidgetBlock","__unstableHasCustomAppender","__unstableResolvedAssets","__unstableIsBlockBasedTheme"],{globalStylesDataKey:x$t,globalStylesLinksDataKey:w$t,selectBlockPatternsKey:_$t,reusableBlocksSelectKey:k$t,sectionRootClientIdKey:S$t}=St(Ln);function BOe(e,t,n,o){var r,s,i,c;const l=Yn("medium"),{allowRightClickOverrides:u,blockTypes:d,focusMode:p,hasFixedToolbar:f,isDistractionFree:b,keepCaretInsideBlock:h,hasUploadPermissions:g,hiddenBlockTypes:z,canUseUnfilteredHTML:A,userCanCreatePages:_,pageOnFront:v,pageForPosts:M,userPatternCategories:y,restBlockPatternCategories:k,sectionRootClientId:S}=G(V=>{var ee;const{canUser:te,getRawEntityRecord:J,getEntityRecord:ue,getUserPatternCategories:ce,getBlockPatternCategories:me}=V(Me),{get:de}=V(ht),{getBlockTypes:Ae}=V(kt),{getBlocksByName:ye,getBlockAttributes:Ne}=V(Q),je=te("read",{kind:"root",name:"site"})?ue("root","site"):void 0;function ie(){var we;if(o==="template-locked"){var re;return(re=ye("core/post-content")?.[0])!==null&&re!==void 0?re:""}return(we=ye("core/group").find(pe=>Ne(pe)?.tagName==="main"))!==null&&we!==void 0?we:""}return{allowRightClickOverrides:de("core","allowRightClickOverrides"),blockTypes:Ae(),canUseUnfilteredHTML:J("postType",t,n)?._links?.hasOwnProperty("wp:action-unfiltered-html"),focusMode:de("core","focusMode"),hasFixedToolbar:de("core","fixedToolbar")||!l,hiddenBlockTypes:de("core","hiddenBlockTypes"),isDistractionFree:de("core","distractionFree"),keepCaretInsideBlock:de("core","keepCaretInsideBlock"),hasUploadPermissions:(ee=te("create",{kind:"root",name:"media"}))!==null&&ee!==void 0?ee:!0,userCanCreatePages:te("create",{kind:"postType",name:"page"}),pageOnFront:je?.page_on_front,pageForPosts:je?.page_for_posts,userPatternCategories:ce(),restBlockPatternCategories:me(),sectionRootClientId:ie()}},[t,n,l,o]),{merged:C}=DI(),R=(r=C.styles)!==null&&r!==void 0?r:Qte,T=(s=C._links)!==null&&s!==void 0?s:Qte,E=(i=e.__experimentalAdditionalBlockPatterns)!==null&&i!==void 0?i:e.__experimentalBlockPatterns,B=(c=e.__experimentalAdditionalBlockPatternCategories)!==null&&c!==void 0?c:e.__experimentalBlockPatternCategories,N=x.useMemo(()=>[...E||[]].filter(({postTypes:V})=>!V||Array.isArray(V)&&V.includes(t)),[E,t]),j=x.useMemo(()=>[...B||[],...k||[]].filter((V,ee,te)=>ee===te.findIndex(J=>V.name===J.name)),[B,k]),{undo:I,setIsInserterOpened:P}=Oe(_e),{saveEntityRecord:$}=Oe(Me),F=x.useCallback(V=>_?$("postType","page",V):Promise.reject({message:m("You do not have permission to create Pages.")}),[$,_]),X=x.useMemo(()=>z&&z.length>0?(e.allowedBlockTypes===!0?d.map(({name:ee})=>ee):e.allowedBlockTypes||[]).filter(ee=>!z.includes(ee)):e.allowedBlockTypes,[e.allowedBlockTypes,z,d]),Z=e.focusMode===!1;return x.useMemo(()=>({...Object.fromEntries(Object.entries(e).filter(([ee])=>v$t.includes(ee))),[x$t]:R,[w$t]:T,allowedBlockTypes:X,allowRightClickOverrides:u,focusMode:p&&!Z,hasFixedToolbar:f,isDistractionFree:b,keepCaretInsideBlock:h,mediaUpload:g?WOe:void 0,mediaSideload:g?g$t:void 0,__experimentalBlockPatterns:N,[_$t]:ee=>{const{hasFinishedResolution:te,getBlockPatternsForPostType:J}=St(ee(Me)),ue=J(t);return te("getBlockPatterns")?ue:void 0},[k$t]:A$t,__experimentalBlockPatternCategories:j,__experimentalUserPatternCategories:y,__experimentalFetchLinkSuggestions:(ee,te)=>bBe(ee,te,e),inserterMediaCategories:h$t,__experimentalFetchRichUrlData:mBe,__experimentalCanUserUseUnfilteredHTML:A,__experimentalUndo:I,outlineMode:!b&&t==="wp_template",__experimentalCreatePageEntity:F,__experimentalUserCanCreatePages:_,pageOnFront:v,pageForPosts:M,__experimentalPreferPatternsOnRoot:t==="wp_template",templateLock:t==="wp_navigation"?"insert":e.templateLock,template:t==="wp_navigation"?[["core/navigation",{},[]]]:e.template,__experimentalSetIsInserterOpened:P,[S$t]:S,editorTool:o==="post-only"&&t!=="wp_template"?"edit":void 0}),[X,u,p,Z,f,b,h,e,g,y,N,j,A,I,F,_,v,M,t,P,S,R,T,o])}const C$t=["core/post-title","core/post-featured-image","core/post-content"];function LOe(){const e=x.useMemo(()=>[...gr("editor.postContentBlockTypes",C$t)],[]);return G(n=>{const{getPostBlocksByName:o}=St(n(_e));return o(e)},[e])}function q$t(){const e=LOe(),{templateParts:t,isNavigationMode:n}=G(s=>{const{getBlocksByName:i,isNavigationMode:c}=s(Q);return{templateParts:i("core/template-part"),isNavigationMode:c()}},[]),o=G(s=>{const{getBlockOrder:i}=s(Q);return t.flatMap(c=>i(c))},[t]),r=Fn();return x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return s("","disabled"),()=>{i("")}},[r]),x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return r.batch(()=>{for(const c of e)s(c,"contentOnly")}),()=>{r.batch(()=>{for(const c of e)i(c)})}},[e,r]),x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return r.batch(()=>{if(!n)for(const c of t)s(c,"contentOnly")}),()=>{r.batch(()=>{if(!n)for(const c of t)i(c)})}},[t,n,r]),x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return r.batch(()=>{for(const c of o)s(c,"disabled")}),()=>{r.batch(()=>{for(const c of o)i(c)})}},[o,r]),null}function R$t(){const e=G(o=>o(Q).getBlockOrder()?.[0],[]),{setBlockEditingMode:t,unsetBlockEditingMode:n}=Oe(Q);x.useEffect(()=>{if(e)return t(e,"contentOnly"),()=>{n(e)}},[e,n,t])}const Jte=["wp_block","wp_template","wp_template_part"];function T$t(e,t){x.useEffect(()=>(Bn("blockEditor.__unstableCanInsertBlockType","removeTemplatePartsFromInserter",(n,o)=>!Jte.includes(e)&&o.name==="core/template-part"&&t==="post-only"?!1:n),Bn("blockEditor.__unstableCanInsertBlockType","removePostContentFromInserter",(n,o,r,{getBlockParentsByBlockName:s})=>!Jte.includes(e)&&o.name==="core/post-content"?s(r,"core/query").length>0:n),()=>{OE("blockEditor.__unstableCanInsertBlockType","removeTemplatePartsFromInserter"),OE("blockEditor.__unstableCanInsertBlockType","removePostContentFromInserter")}),[e,t])}function E$t(e={},t){switch(t.type){case"SET_IS_MATCHING":return t.values}return e}function W$t(e){return{type:"SET_IS_MATCHING",values:e}}const N$t=Object.freeze(Object.defineProperty({__proto__:null,setIsMatching:W$t},Symbol.toStringTag,{value:"Module"}));function B$t(e,t){return t.indexOf(" ")===-1&&(t=">= "+t),!!e[t]}const L$t=Object.freeze(Object.defineProperty({__proto__:null,isViewportMatch:B$t},Symbol.toStringTag,{value:"Module"})),P$t="core/viewport",t5=x1(P$t,{reducer:E$t,actions:N$t,selectors:L$t});Us(t5);const j$t=(e,t)=>{const n=F1(()=>{const s=Object.fromEntries(r.map(([i,c])=>[i,c.matches]));kr(t5).setIsMatching(s)},0,{leading:!0}),o=Object.entries(t),r=Object.entries(e).flatMap(([s,i])=>o.map(([c,l])=>{const u=window.matchMedia(`(${l}: ${i}px)`);return u.addEventListener("change",n),[`${c} ${s}`,u]}));window.addEventListener("orientationchange",n),n(),n.flush()},I$t={huge:1440,wide:1280,large:960,medium:782,small:600,mobile:480},D$t={"<":"max-width",">=":"min-width"};j$t(I$t,D$t);const POe=x.createContext({name:null,icon:null});POe.Provider;function PO(){return x.useContext(POe)}Hs((e,t)=>({icon:e,name:t}));function fp(e){return["core/edit-post","core/edit-site"].includes(e)?(Ke(`${e} interface scope`,{alternative:"core interface scope",hint:"core/edit-post and core/edit-site are merging.",version:"6.6"}),"core"):e}function jO(e,t){return e==="core"&&t==="edit-site/template"?(Ke("edit-site/template sidebar",{alternative:"edit-post/document",version:"6.6"}),"edit-post/document"):e==="core"&&t==="edit-site/block-inspector"?(Ke("edit-site/block-inspector sidebar",{alternative:"edit-post/block",version:"6.6"}),"edit-post/block"):t}const F$t=(e,t)=>(e=fp(e),t=jO(e,t),{type:"SET_DEFAULT_COMPLEMENTARY_AREA",scope:e,area:t}),$$t=(e,t)=>({registry:n,dispatch:o})=>{if(!t)return;e=fp(e),t=jO(e,t),n.select(ht).get(e,"isComplementaryAreaVisible")||n.dispatch(ht).set(e,"isComplementaryAreaVisible",!0),o({type:"ENABLE_COMPLEMENTARY_AREA",scope:e,area:t})},V$t=e=>({registry:t})=>{e=fp(e),t.select(ht).get(e,"isComplementaryAreaVisible")&&t.dispatch(ht).set(e,"isComplementaryAreaVisible",!1)},H$t=(e,t)=>({registry:n})=>{if(!t)return;e=fp(e),t=jO(e,t);const o=n.select(ht).get(e,"pinnedItems");o?.[t]!==!0&&n.dispatch(ht).set(e,"pinnedItems",{...o,[t]:!0})},U$t=(e,t)=>({registry:n})=>{if(!t)return;e=fp(e),t=jO(e,t);const o=n.select(ht).get(e,"pinnedItems");n.dispatch(ht).set(e,"pinnedItems",{...o,[t]:!1})};function X$t(e,t){return function({registry:n}){Ke("dispatch( 'core/interface' ).toggleFeature",{since:"6.0",alternative:"dispatch( 'core/preferences' ).toggle"}),n.dispatch(ht).toggle(e,t)}}function G$t(e,t,n){return function({registry:o}){Ke("dispatch( 'core/interface' ).setFeatureValue",{since:"6.0",alternative:"dispatch( 'core/preferences' ).set"}),o.dispatch(ht).set(e,t,!!n)}}function K$t(e,t){return function({registry:n}){Ke("dispatch( 'core/interface' ).setFeatureDefaults",{since:"6.0",alternative:"dispatch( 'core/preferences' ).setDefaults"}),n.dispatch(ht).setDefaults(e,t)}}function Y$t(e){return{type:"OPEN_MODAL",name:e}}function Z$t(){return{type:"CLOSE_MODAL"}}const Q$t=Object.freeze(Object.defineProperty({__proto__:null,closeModal:Z$t,disableComplementaryArea:V$t,enableComplementaryArea:$$t,openModal:Y$t,pinItem:H$t,setDefaultComplementaryArea:F$t,setFeatureDefaults:K$t,setFeatureValue:G$t,toggleFeature:X$t,unpinItem:U$t},Symbol.toStringTag,{value:"Module"})),J$t=At(e=>(t,n)=>{n=fp(n);const o=e(ht).get(n,"isComplementaryAreaVisible");if(o!==void 0)return o===!1?null:t?.complementaryAreas?.[n]}),eVt=At(e=>(t,n)=>{n=fp(n);const o=e(ht).get(n,"isComplementaryAreaVisible"),r=t?.complementaryAreas?.[n];return o&&r===void 0}),tVt=At(e=>(t,n,o)=>{var r;return n=fp(n),o=jO(n,o),(r=e(ht).get(n,"pinnedItems")?.[o])!==null&&r!==void 0?r:!0}),nVt=At(e=>(t,n,o)=>(Ke("select( 'core/interface' ).isFeatureActive( scope, featureName )",{since:"6.0",alternative:"select( 'core/preferences' ).get( scope, featureName )"}),!!e(ht).get(n,o)));function oVt(e,t){return e.activeModal===t}const rVt=Object.freeze(Object.defineProperty({__proto__:null,getActiveComplementaryArea:J$t,isComplementaryAreaLoading:eVt,isFeatureActive:nVt,isItemPinned:tVt,isModalActive:oVt},Symbol.toStringTag,{value:"Module"}));function sVt(e={},t){switch(t.type){case"SET_DEFAULT_COMPLEMENTARY_AREA":{const{scope:n,area:o}=t;return e[n]?e:{...e,[n]:o}}case"ENABLE_COMPLEMENTARY_AREA":{const{scope:n,area:o}=t;return{...e,[n]:o}}}return e}function iVt(e=null,t){switch(t.type){case"OPEN_MODAL":return t.name;case"CLOSE_MODAL":return null}return e}const aVt=J0({complementaryAreas:sVt,activeModal:iVt}),cVt="core/interface",xo=x1(cVt,{reducer:aVt,actions:Q$t,selectors:rVt});Us(xo);function lVt(e){return["checkbox","option","radio","switch","menuitemcheckbox","menuitemradio","treeitem"].includes(e)}function FI({as:e=Ce,scope:t,identifier:n,icon:o,selectedIcon:r,name:s,shortcut:i,...c}){const l=e,u=PO(),d=o||u.icon,p=n||`${u.name}/${s}`,f=G(g=>g(xo).getActiveComplementaryArea(t)===p,[p,t]),{enableComplementaryArea:b,disableComplementaryArea:h}=Oe(xo);return a.jsx(l,{icon:r&&f?r:d,"aria-controls":p.replace("/",":"),"aria-checked":lVt(c.role)?f:void 0,onClick:()=>{f?h(t):b(t,p)},shortcut:i,...c})}const uVt=({children:e,className:t,toggleButtonProps:n})=>{const o=a.jsx(FI,{icon:rp,...n});return a.jsxs("div",{className:oe("components-panel__header","interface-complementary-area-header",t),tabIndex:-1,children:[e,o]})},ene=()=>{};function dVt({name:e,as:t=Cn,fillProps:n={},bubblesVirtually:o,...r}){return a.jsx(xf,{name:e,bubblesVirtually:o,fillProps:n,children:s=>{if(!x.Children.toArray(s).length)return null;const i=[];x.Children.forEach(s,({props:{__unstableExplicitMenuItem:l,__unstableTarget:u}})=>{u&&l&&i.push(u)});const c=x.Children.map(s,l=>!l.props.__unstableExplicitMenuItem&&i.includes(l.props.__unstableTarget)?null:l);return a.jsx(t,{...r,children:c})}})}function IO({name:e,as:t=Ce,onClick:n,...o}){return a.jsx(um,{name:e,children:({onClick:r})=>a.jsx(t,{onClick:n||r?(...s)=>{(n||ene)(...s),(r||ene)(...s)}:void 0,...o})})}IO.Slot=dVt;const pVt=({__unstableExplicitMenuItem:e,__unstableTarget:t,...n})=>a.jsx(Ct,{...n});function jOe({scope:e,target:t,__unstableExplicitMenuItem:n,...o}){return a.jsx(FI,{as:r=>a.jsx(IO,{__unstableExplicitMenuItem:n,__unstableTarget:`${e}/${t}`,as:pVt,name:`${e}/plugin-more-menu`,...r}),role:"menuitemcheckbox",selectedIcon:M0,name:t,scope:e,...o})}function ck({scope:e,...t}){return a.jsx(um,{name:`PinnedItems/${e}`,...t})}function fVt({scope:e,className:t,...n}){return a.jsx(xf,{name:`PinnedItems/${e}`,...n,children:o=>o?.length>0&&a.jsx("div",{className:oe(t,"interface-pinned-items"),children:o})})}ck.Slot=fVt;const bVt=.3;function hVt({scope:e,...t}){return a.jsx(xf,{name:`ComplementaryArea/${e}`,...t})}const IOe=280,mVt={open:{width:IOe},closed:{width:0},mobileOpen:{width:"100vw"}};function gVt({activeArea:e,isActive:t,scope:n,children:o,className:r,id:s}){const i=$1(),c=Yn("medium","<"),l=Fr(e),u=Fr(t),[,d]=x.useState({});x.useEffect(()=>{d({})},[t]);const p={type:"tween",duration:i||c||l&&e&&e!==l?0:bVt,ease:[.6,0,.4,1]};return a.jsx(um,{name:`ComplementaryArea/${n}`,children:a.jsx(Wd,{initial:!1,children:(u||t)&&a.jsx(Rr.div,{variants:mVt,initial:"closed",animate:c?"mobileOpen":"open",exit:"closed",transition:p,className:"interface-complementary-area__fill",children:a.jsx("div",{id:s,className:r,style:{width:c?"100vw":IOe},children:o})})})})}function MVt(e,t,n,o,r){const s=x.useRef(!1),i=x.useRef(!1),{enableComplementaryArea:c,disableComplementaryArea:l}=Oe(xo);x.useEffect(()=>{o&&r&&!s.current?(l(e),i.current=!0):i.current&&!r&&s.current?(i.current=!1,c(e,t)):i.current&&n&&n!==t&&(i.current=!1),r!==s.current&&(s.current=r)},[o,r,e,t,n,l,c])}function lk({children:e,className:t,closeLabel:n=m("Close plugin"),identifier:o,header:r,headerClassName:s,icon:i,isPinnable:c=!0,panelClassName:l,scope:u,name:d,title:p,toggleShortcut:f,isActiveByDefault:b}){const h=PO(),g=i||h.icon,z=o||`${h.name}/${d}`,[A,_]=x.useState(!1),{isLoading:v,isActive:M,isPinned:y,activeArea:k,isSmall:S,isLarge:C,showIconLabels:R}=G(I=>{const{getActiveComplementaryArea:P,isComplementaryAreaLoading:$,isItemPinned:F}=I(xo),{get:X}=I(ht),Z=P(u);return{isLoading:$(u),isActive:Z===z,isPinned:F(u,z),activeArea:Z,isSmall:I(t5).isViewportMatch("< medium"),isLarge:I(t5).isViewportMatch("large"),showIconLabels:X("core","showIconLabels")}},[z,u]),T=Yn("medium","<");MVt(u,z,k,M,S);const{enableComplementaryArea:E,disableComplementaryArea:B,pinItem:N,unpinItem:j}=Oe(xo);if(x.useEffect(()=>{b&&k===void 0&&!S?E(u,z):k===void 0&&S&&B(u,z),_(!0)},[k,b,u,z,S,E,B]),!!A)return a.jsxs(a.Fragment,{children:[c&&a.jsx(ck,{scope:u,children:y&&a.jsx(FI,{scope:u,identifier:z,isPressed:M&&(!R||C),"aria-expanded":M,"aria-disabled":v,label:p,icon:R?M0:g,showTooltip:!R,variant:R?"tertiary":void 0,size:"compact",shortcut:f})}),d&&c&&a.jsx(jOe,{target:d,scope:u,icon:g,children:p}),a.jsxs(gVt,{activeArea:k,isActive:M,className:oe("interface-complementary-area",t),scope:u,id:z.replace("/",":"),children:[a.jsx(uVt,{className:s,closeLabel:n,onClose:()=>B(u),toggleButtonProps:{label:n,size:"compact",shortcut:f,scope:u,identifier:z},children:r||a.jsxs(a.Fragment,{children:[a.jsx("h2",{className:"interface-complementary-area-header__title",children:p}),c&&!T&&a.jsx(Ce,{className:"interface-complementary-area__pin-unpin-item",icon:y?IQe:jQe,label:m(y?"Unpin from toolbar":"Pin to toolbar"),onClick:()=>(y?j:N)(u,z),isPressed:y,"aria-expanded":y,size:"compact"})]})}),a.jsx(r2t,{className:l,children:e})]})]})}lk.Slot=hVt;const zVt=({isActive:e})=>(x.useEffect(()=>{let t=!1;return document.body.classList.contains("sticky-menu")&&(t=!0,document.body.classList.remove("sticky-menu")),()=>{t&&document.body.classList.add("sticky-menu")}},[]),x.useEffect(()=>(e?document.body.classList.add("is-fullscreen-mode"):document.body.classList.remove("is-fullscreen-mode"),()=>{e&&document.body.classList.remove("is-fullscreen-mode")}),[e]),null),$u=x.forwardRef(({children:e,className:t,ariaLabel:n,as:o="div",...r},s)=>a.jsx(o,{ref:s,className:oe("interface-navigable-region",t),"aria-label":n,role:"region",tabIndex:"-1",...r,children:e}));$u.displayName="NavigableRegion";const DOe=.25,tne={type:"tween",duration:DOe,ease:[.6,0,.4,1]};function OVt(e){x.useEffect(()=>{const t=document&&document.querySelector(`html:not(.${e})`);if(t)return t.classList.toggle(e),()=>{t.classList.toggle(e)}},[e])}const yVt={hidden:{opacity:1,marginTop:-60},visible:{opacity:1,marginTop:0},distractionFreeHover:{opacity:1,marginTop:0,transition:{...tne,delay:.2,delayChildren:.2}},distractionFreeHidden:{opacity:0,marginTop:-60},distractionFreeDisabled:{opacity:0,marginTop:0,transition:{...tne,delay:.8,delayChildren:.8}}};function AVt({isDistractionFree:e,footer:t,header:n,editorNotices:o,sidebar:r,secondarySidebar:s,content:i,actions:c,labels:l,className:u},d){const[p,f]=js(),b=Yn("medium","<"),g={type:"tween",duration:$1()?0:DOe,ease:[.6,0,.4,1]};OVt("interface-interface-skeleton__html-container");const A={...{header:We("Header","header landmark area"),body:m("Content"),secondarySidebar:m("Block Library"),sidebar:We("Settings","settings landmark area"),actions:m("Publish"),footer:m("Footer")},...l};return a.jsxs("div",{ref:d,className:oe(u,"interface-interface-skeleton",!!t&&"has-footer"),children:[a.jsxs("div",{className:"interface-interface-skeleton__editor",children:[a.jsx(Wd,{initial:!1,children:!!n&&a.jsx($u,{as:Rr.div,className:"interface-interface-skeleton__header","aria-label":A.header,initial:e&&!b?"distractionFreeHidden":"hidden",whileHover:e&&!b?"distractionFreeHover":"visible",animate:e&&!b?"distractionFreeDisabled":"visible",exit:e&&!b?"distractionFreeHidden":"hidden",variants:yVt,transition:g,children:n})}),e&&a.jsx("div",{className:"interface-interface-skeleton__header",children:o}),a.jsxs("div",{className:"interface-interface-skeleton__body",children:[a.jsx(Wd,{initial:!1,children:!!s&&a.jsx($u,{className:"interface-interface-skeleton__secondary-sidebar",ariaLabel:A.secondarySidebar,as:Rr.div,initial:"closed",animate:"open",exit:"closed",variants:{open:{width:f.width},closed:{width:0}},transition:g,children:a.jsxs(Rr.div,{style:{position:"absolute",width:b?"100vw":"fit-content",height:"100%",left:0},variants:{open:{x:0},closed:{x:"-100%"}},transition:g,children:[p,s]})})}),a.jsx($u,{className:"interface-interface-skeleton__content",ariaLabel:A.body,children:i}),!!r&&a.jsx($u,{className:"interface-interface-skeleton__sidebar",ariaLabel:A.sidebar,children:r}),!!c&&a.jsx($u,{className:"interface-interface-skeleton__actions",ariaLabel:A.actions,children:c})]})]}),!!t&&a.jsx($u,{className:"interface-interface-skeleton__footer",ariaLabel:A.footer,children:t})]})}const FOe=x.forwardRef(AVt),vVt=Object.freeze(Object.defineProperty({__proto__:null,ActionItem:IO,ComplementaryArea:lk,ComplementaryAreaMoreMenuItem:jOe,FullscreenMode:zVt,InterfaceSkeleton:FOe,NavigableRegion:$u,PinnedItems:ck,store:xo},Symbol.toStringTag,{value:"Module"})),{RenamePatternModal:xVt}=St(Hi),$Oe="editor/pattern-rename";function wVt(){const{record:e,postType:t}=G(r=>{const{getCurrentPostType:s,getCurrentPostId:i}=r(_e),{getEditedEntityRecord:c}=r(Me),l=s();return{record:c("postType",l,i()),postType:l}},[]),{closeModal:n}=Oe(xo);return!G(r=>r(xo).isModalActive($Oe))||t!==Vl?null:a.jsx(xVt,{onClose:n,pattern:e})}const{DuplicatePatternModal:_Vt}=St(Hi),VOe="editor/pattern-duplicate";function kVt(){const{record:e,postType:t}=G(r=>{const{getCurrentPostType:s,getCurrentPostId:i}=r(_e),{getEditedEntityRecord:c}=r(Me),l=s();return{record:c("postType",l,i()),postType:l}},[]),{closeModal:n}=Oe(xo);return!G(r=>r(xo).isModalActive(VOe))||t!==Vl?null:a.jsx(_Vt,{onClose:n,onSuccess:()=>n(),pattern:e})}const SVt=()=>function(){const{editorMode:t,isListViewOpen:n,showBlockBreadcrumbs:o,isDistractionFree:r,isFocusMode:s,isPreviewMode:i,isViewable:c,isCodeEditingEnabled:l,isRichEditingEnabled:u,isPublishSidebarEnabled:d}=G(B=>{var N,j;const{get:I}=B(ht),{isListViewOpened:P,getCurrentPostType:$,getEditorSettings:F}=B(_e),{getSettings:X}=B(Q),{getPostType:Z}=B(Me);return{editorMode:(N=I("core","editorMode"))!==null&&N!==void 0?N:"visual",isListViewOpen:P(),showBlockBreadcrumbs:I("core","showBlockBreadcrumbs"),isDistractionFree:I("core","distractionFree"),isFocusMode:I("core","focusMode"),isPreviewMode:X().isPreviewMode,isViewable:(j=Z($())?.viewable)!==null&&j!==void 0?j:!1,isCodeEditingEnabled:F().codeEditingEnabled,isRichEditingEnabled:F().richEditingEnabled,isPublishSidebarEnabled:B(_e).isPublishSidebarEnabled()}},[]),{getActiveComplementaryArea:p}=G(xo),{toggle:f}=Oe(ht),{createInfoNotice:b}=Oe(mt),{__unstableSaveForPreview:h,setIsListViewOpened:g,switchEditorMode:z,toggleDistractionFree:A,toggleSpotlightMode:_,toggleTopToolbar:v}=Oe(_e),{openModal:M,enableComplementaryArea:y,disableComplementaryArea:k}=Oe(xo),{getCurrentPostId:S}=G(_e),{isBlockBasedTheme:C,canCreateTemplate:R}=G(B=>({isBlockBasedTheme:B(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:B(Me).canUser("create",{kind:"postType",name:"wp_template"})}),[]),T=l&&u;if(i)return{commands:[],isLoading:!1};const E=[];return E.push({name:"core/open-shortcut-help",label:m("Keyboard shortcuts"),icon:cQe,callback:({close:B})=>{B(),M("editor/keyboard-shortcut-help")}}),E.push({name:"core/toggle-distraction-free",label:m(r?"Exit Distraction free":"Enter Distraction free"),callback:({close:B})=>{A(),B()}}),E.push({name:"core/open-preferences",label:m("Editor preferences"),callback:({close:B})=>{B(),M("editor/preferences")}}),E.push({name:"core/toggle-spotlight-mode",label:m(s?"Exit Spotlight mode":"Enter Spotlight mode"),callback:({close:B})=>{_(),B()}}),E.push({name:"core/toggle-list-view",label:m(n?"Close List View":"Open List View"),icon:IP,callback:({close:B})=>{g(!n),B(),b(m(n?"List View off.":"List View on."),{id:"core/editor/toggle-list-view/notice",type:"snackbar"})}}),E.push({name:"core/toggle-top-toolbar",label:m("Top toolbar"),callback:({close:B})=>{v(),B()}}),T&&E.push({name:"core/toggle-code-editor",label:m(t==="visual"?"Open code editor":"Exit code editor"),icon:EP,callback:({close:B})=>{z(t==="visual"?"text":"visual"),B()}}),E.push({name:"core/toggle-breadcrumbs",label:m(o?"Hide block breadcrumbs":"Show block breadcrumbs"),callback:({close:B})=>{f("core","showBlockBreadcrumbs"),B(),b(m(o?"Breadcrumbs hidden.":"Breadcrumbs visible."),{id:"core/editor/toggle-breadcrumbs/notice",type:"snackbar"})}}),E.push({name:"core/open-settings-sidebar",label:m("Show or hide the Settings panel."),icon:jt()?ode:rde,callback:({close:B})=>{const N=p("core");B(),N==="edit-post/document"?k("core"):y("core","edit-post/document")}}),E.push({name:"core/open-block-inspector",label:m("Show or hide the Block settings panel"),icon:Ew,callback:({close:B})=>{const N=p("core");B(),N==="edit-post/block"?k("core"):y("core","edit-post/block")}}),E.push({name:"core/toggle-publish-sidebar",label:m(d?"Disable pre-publish checks":"Enable pre-publish checks"),icon:sde,callback:({close:B})=>{B(),f("core","isPublishSidebarEnabled"),b(m(d?"Pre-publish checks disabled.":"Pre-publish checks enabled."),{id:"core/editor/publish-sidebar/notice",type:"snackbar"})}}),c&&E.push({name:"core/preview-link",label:m("Preview in a new tab"),icon:vf,callback:async({close:B})=>{B();const N=S(),j=await h();window.open(j,`wp-preview-${N}`)}}),R&&C&&(Aa(window.location.href)?.includes("site-editor.php")||E.push({name:"core/go-to-site-editor",label:m("Open Site Editor"),callback:({close:N})=>{N(),document.location="site-editor.php"}})),{commands:E,isLoading:!1}},CVt=()=>function(){const{postType:t}=G(r=>{const{getCurrentPostType:s}=r(_e);return{postType:s()}},[]),{openModal:n}=Oe(xo),o=[];return t===Vl&&(o.push({name:"core/rename-pattern",label:m("Rename pattern"),icon:Nd,callback:({close:r})=>{n($Oe),r()}}),o.push({name:"core/duplicate-pattern",label:m("Duplicate pattern"),icon:Bd,callback:({close:r})=>{n(VOe),r()}})),{isLoading:!1,commands:o}},qVt=()=>function(){const{onNavigateToEntityRecord:t,goBack:n,templateId:o,isPreviewMode:r}=G(l=>{const{getRenderingMode:u,getEditorSettings:d,getCurrentTemplateId:p}=St(l(_e)),f=d();return{isTemplateHidden:u()==="post-only",onNavigateToEntityRecord:f.onNavigateToEntityRecord,getEditorSettings:d,goBack:f.onNavigateToPreviousEntityRecord,templateId:p(),isPreviewMode:f.isPreviewMode}},[]),{editedRecord:s,hasResolved:i}=Z5("postType","wp_template",o);if(r)return{isLoading:!1,commands:[]};const c=[];return o&&i&&c.push({name:"core/switch-to-template-focus",label:xe(m("Edit template: %s"),Lt(s.title)),icon:ou,callback:({close:l})=>{t({postId:o,postType:"wp_template"}),l()}}),n&&c.push({name:"core/switch-to-previous-entity",label:m("Go back"),icon:wa,callback:({close:l})=>{n(),l()}}),{isLoading:!1,commands:c}},RVt=()=>function(){const{postType:t,postId:n}=G(c=>{const{getCurrentPostId:l,getCurrentPostType:u}=c(_e);return{postType:u(),postId:l()}},[]),{editedRecord:o,hasResolved:r}=Z5("postType",t,n),{revertTemplate:s}=St(Oe(_e));if(!r||![Fi,L0].includes(t))return{isLoading:!0,commands:[]};const i=[];if(lOe(o)){const c=o.type===L0?xe(m("Reset template: %s"),Lt(o.title)):xe(m("Reset template part: %s"),Lt(o.title));i.push({name:"core/reset-template",label:c,icon:jt()?Bde:NQe,callback:({close:l})=>{s(o),l()}})}return{isLoading:!r,commands:i}};function TVt(){xi({name:"core/editor/edit-ui",hook:SVt()}),xi({name:"core/editor/contextual-commands",hook:CVt(),context:"entity-edit"}),xi({name:"core/editor/page-content-focus",hook:qVt(),context:"entity-edit"}),xi({name:"core/edit-site/manipulate-document",hook:RVt()})}const{BlockRemovalWarningModal:nne}=St(Ln),EVt=["core/post-content","core/post-template","core/query"],WVt=[{postTypes:["wp_template","wp_template_part"],callback(e){if(e.filter(({name:n})=>EVt.includes(n)).length)return Dn("Deleting this block will stop your post or page content from displaying on this template. It is not recommended.","Some of the deleted blocks will stop your post or page content from displaying on this template. It is not recommended.",e.length)}},{postTypes:["wp_block"],callback(e){if(e.filter(({attributes:n})=>n?.metadata?.bindings&&Object.values(n.metadata.bindings).some(o=>o.source==="core/pattern-overrides")).length)return Dn("The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?","Some of the deleted blocks allow instance overrides. Removing them may result in content not displaying where this pattern is used. Are you sure you want to proceed?",e.length)}}];function NVt(){const e=G(n=>n(_e).getCurrentPostType(),[]),t=x.useMemo(()=>WVt.filter(n=>n.postTypes.includes(e)),[e]);return!nne||!t?null:a.jsx(nne,{rules:t})}function BVt(){const{postId:e,shouldEnable:t}=G(o=>{const{isEditedPostDirty:r,isEditedPostEmpty:s,getCurrentPostId:i,getCurrentPostType:c}=o(_e),l=o(xo).isModalActive("editor/preferences"),u=o(ht).get("core","enableChoosePatternModal");return{postId:i(),shouldEnable:u&&!l&&!r()&&s()&&c()==="page"}},[]),{setIsInserterOpened:n}=Oe(_e);return x.useEffect(()=>{t&&n({tab:"patterns",category:"core/starter-content"})},[e,t,n]),null}const LVt=[{keyCombination:{modifier:"primary",character:"b"},description:m("Make the selected text bold.")},{keyCombination:{modifier:"primary",character:"i"},description:m("Make the selected text italic.")},{keyCombination:{modifier:"primary",character:"k"},description:m("Convert the selected text into a link.")},{keyCombination:{modifier:"primaryShift",character:"k"},description:m("Remove a link.")},{keyCombination:{character:"[["},description:m("Insert a link to a post or page.")},{keyCombination:{modifier:"primary",character:"u"},description:m("Underline the selected text.")},{keyCombination:{modifier:"access",character:"d"},description:m("Strikethrough the selected text.")},{keyCombination:{modifier:"access",character:"x"},description:m("Make the selected text inline code.")},{keyCombination:{modifier:"access",character:"0"},aliases:[{modifier:"access",character:"7"}],description:m("Convert the current heading to a paragraph.")},{keyCombination:{modifier:"access",character:"1-6"},description:m("Convert the current paragraph or heading to a heading of level 1 to 6.")},{keyCombination:{modifier:"primaryShift",character:"SPACE"},description:m("Add non breaking space.")}];function one({keyCombination:e,forceAriaLabel:t}){const n=e.modifier?O0e[e.modifier](e.character):e.character,o=e.modifier?y0e[e.modifier](e.character):e.character;return a.jsx("kbd",{className:"editor-keyboard-shortcut-help-modal__shortcut-key-combination","aria-label":t||o,children:(Array.isArray(n)?n:[n]).map((r,s)=>r==="+"?a.jsx(x.Fragment,{children:r},s):a.jsx("kbd",{className:"editor-keyboard-shortcut-help-modal__shortcut-key",children:r},s))})}function HOe({description:e,keyCombination:t,aliases:n=[],ariaLabel:o}){return a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"editor-keyboard-shortcut-help-modal__shortcut-description",children:e}),a.jsxs("div",{className:"editor-keyboard-shortcut-help-modal__shortcut-term",children:[a.jsx(one,{keyCombination:t,forceAriaLabel:o}),n.map((r,s)=>a.jsx(one,{keyCombination:r,forceAriaLabel:o},s))]})]})}function PVt({name:e}){const{keyCombination:t,description:n,aliases:o}=G(r=>{const{getShortcutKeyCombination:s,getShortcutDescription:i,getShortcutAliases:c}=r(ji);return{keyCombination:s(e),aliases:c(e),description:i(e)}},[e]);return t?a.jsx(HOe,{keyCombination:t,description:n,aliases:o}):null}const rne="editor/keyboard-shortcut-help",jVt=({shortcuts:e})=>a.jsx("ul",{className:"editor-keyboard-shortcut-help-modal__shortcut-list",role:"list",children:e.map((t,n)=>a.jsx("li",{className:"editor-keyboard-shortcut-help-modal__shortcut",children:typeof t=="string"?a.jsx(PVt,{name:t}):a.jsx(HOe,{...t})},n))}),iN=({title:e,shortcuts:t,className:n})=>a.jsxs("section",{className:oe("editor-keyboard-shortcut-help-modal__section",n),children:[!!e&&a.jsx("h2",{className:"editor-keyboard-shortcut-help-modal__section-title",children:e}),a.jsx(jVt,{shortcuts:t})]}),wv=({title:e,categoryName:t,additionalShortcuts:n=[]})=>{const o=G(r=>r(ji).getCategoryShortcuts(t),[t]);return a.jsx(iN,{title:e,shortcuts:o.concat(n)})};function IVt(){const e=G(r=>r(xo).isModalActive(rne),[]),{openModal:t,closeModal:n}=Oe(xo),o=()=>{e?n():t(rne)};return p0("core/editor/keyboard-shortcuts",o),e?a.jsxs(Zo,{className:"editor-keyboard-shortcut-help-modal",title:m("Keyboard shortcuts"),closeButtonLabel:m("Close"),onRequestClose:o,children:[a.jsx(iN,{className:"editor-keyboard-shortcut-help-modal__main-shortcuts",shortcuts:["core/editor/keyboard-shortcuts"]}),a.jsx(wv,{title:m("Global shortcuts"),categoryName:"global"}),a.jsx(wv,{title:m("Selection shortcuts"),categoryName:"selection"}),a.jsx(wv,{title:m("Block shortcuts"),categoryName:"block",additionalShortcuts:[{keyCombination:{character:"/"},description:m("Change the block type after adding a new paragraph."),ariaLabel:m("Forward-slash")}]}),a.jsx(iN,{title:m("Text formatting"),shortcuts:LVt}),a.jsx(wv,{title:m("List View shortcuts"),categoryName:"list-view"})]}):null}function DVt({clientId:e,onClose:t}){const n=LOe(),{entity:o,onNavigateToEntityRecord:r,canEditTemplates:s}=G(l=>{const{getBlockParentsByBlockName:u,getSettings:d,getBlockAttributes:p,getBlockParents:f}=l(Q),{getCurrentTemplateId:b,getRenderingMode:h}=l(_e),g=u(e,"core/block",!0)[0];let z;return g?z=l(Me).getEntityRecord("postType","wp_block",p(g).ref):h()==="template-locked"&&!f(e).some(_=>n.includes(_))&&(z=l(Me).getEntityRecord("postType","wp_template",b())),z?{canEditTemplates:l(Me).canUser("create",{kind:"postType",name:"wp_template"}),entity:z,onNavigateToEntityRecord:d().onNavigateToEntityRecord}:{}},[e,n]);if(!o)return a.jsx(FVt,{clientId:e,onClose:t});const i=o.type==="wp_block";let c=m(i?"Edit the pattern to move, delete, or make further changes to this block.":"Edit the template to move, delete, or make further changes to this block.");return s||(c=m("Only users with permissions to edit the template can move or delete this block")),a.jsxs(a.Fragment,{children:[a.jsx(U_,{children:a.jsx(Ct,{onClick:()=>{r({postId:o.id,postType:o.type})},disabled:!s,children:m(i?"Edit pattern":"Edit template")})}),a.jsx(Sn,{variant:"muted",as:"p",className:"editor-content-only-settings-menu__description",children:c})]})}function FVt({clientId:e,onClose:t}){const{contentLockingParent:n}=G(i=>{const{getContentLockingParent:c}=St(i(Q));return{contentLockingParent:c(e)}},[e]),o=Ii(n),r=Oe(Q);if(!o?.title)return null;const{modifyContentLockBlock:s}=St(r);return a.jsxs(a.Fragment,{children:[a.jsx(U_,{children:a.jsx(Ct,{onClick:()=>{s(n),t()},children:We("Unlock","Unlock content locked blocks")})}),a.jsx(Sn,{variant:"muted",as:"p",className:"editor-content-only-settings-menu__description",children:m("Temporarily unlock the parent block to edit, delete or make further changes to this block.")})]})}function $Vt(){return a.jsx(cb,{children:({selectedClientIds:e,onClose:t})=>e.length===1&&a.jsx(DVt,{clientId:e[0],onClose:t})})}function VVt(e,t=!1){return G(n=>{const{getEntityRecord:o,getDefaultTemplateId:r}=n(Me),s=r({slug:e,is_custom:t,ignore_empty:!0});return s?o("postType",L0,s)?.content?.raw:void 0},[e,t])}function HVt(e){const{slug:t,patterns:n}=G(s=>{const{getCurrentPostType:i,getCurrentPostId:c}=s(_e),{getEntityRecord:l,getBlockPatterns:u}=s(Me),d=c(),p=i();return{slug:l("postType",p,d).slug,patterns:u()}},[]),o=G(s=>s(Me).getCurrentTheme().stylesheet);function r(s){return s.innerBlocks.find(i=>i.name==="core/template-part")&&(s.innerBlocks=s.innerBlocks.map(i=>(i.name==="core/template-part"&&i.attributes.theme===void 0&&(i.attributes.theme=o),i))),s.name==="core/template-part"&&s.attributes.theme===void 0&&(s.attributes.theme=o),s}return x.useMemo(()=>[{name:"fallback",blocks:Ko(e),title:m("Fallback content")},...n.filter(s=>Array.isArray(s.templateTypes)&&s.templateTypes.some(i=>t.startsWith(i))).map(s=>({...s,blocks:Ko(s.content).map(i=>r(i))}))],[e,t,n])}function UVt({fallbackContent:e,onChoosePattern:t,postType:n}){const[,,o]=Ni("postType",n),r=HVt(e);return a.jsx(qa,{blockPatterns:r,onClickPattern:(s,i)=>{o(i,{selection:void 0}),t()}})}function XVt({slug:e,isCustom:t,onClose:n,postType:o}){const r=VVt(e,t);return r?a.jsxs(Zo,{className:"editor-start-template-options__modal",title:m("Choose a pattern"),closeLabel:m("Cancel"),focusOnMount:"firstElement",onRequestClose:n,isFullScreen:!0,children:[a.jsx("div",{className:"editor-start-template-options__modal-content",children:a.jsx(UVt,{fallbackContent:r,slug:e,isCustom:t,postType:o,onChoosePattern:()=>{n()}})}),a.jsx(Yo,{className:"editor-start-template-options__modal__actions",justify:"flex-end",expanded:!1,children:a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:n,children:m("Skip")})})})]}):null}function GVt(){const[e,t]=x.useState(!1),{shouldOpenModal:n,slug:o,isCustom:r,postType:s,postId:i}=G(c=>{const{getCurrentPostType:l,getCurrentPostId:u}=c(_e),d=l(),p=u(),{getEditedEntityRecord:f,hasEditsForEntityRecord:b}=c(Me),h=f("postType",d,p);return{shouldOpenModal:!b("postType",d,p)&&h.content===""&&L0===d,slug:h.slug,isCustom:h.is_custom,postType:d,postId:p}},[]);return x.useEffect(()=>{t(!1)},[s,i]),!n||e?null:a.jsx(XVt,{slug:o,isCustom:r,postType:s,onClose:()=>t(!0)})}function KVt(){const e=G(g=>{const{richEditingEnabled:z,codeEditingEnabled:A}=g(_e).getEditorSettings();return!z||!A},[]),{getBlockSelectionStart:t}=G(Q),{getActiveComplementaryArea:n}=G(xo),{enableComplementaryArea:o,disableComplementaryArea:r}=Oe(xo),{redo:s,undo:i,savePost:c,setIsListViewOpened:l,switchEditorMode:u,toggleDistractionFree:d}=Oe(_e),{isEditedPostDirty:p,isPostSavingLocked:f,isListViewOpened:b,getEditorMode:h}=G(_e);return p0("core/editor/toggle-mode",()=>{u(h()==="visual"?"text":"visual")},{isDisabled:e}),p0("core/editor/toggle-distraction-free",()=>{d()}),p0("core/editor/undo",g=>{i(),g.preventDefault()}),p0("core/editor/redo",g=>{s(),g.preventDefault()}),p0("core/editor/save",g=>{g.preventDefault(),!f()&&p()&&c()}),p0("core/editor/toggle-list-view",g=>{b()||(g.preventDefault(),l(!0))}),p0("core/editor/toggle-sidebar",g=>{if(g.preventDefault(),["edit-post/document","edit-post/block"].includes(n("core")))r("core");else{const A=t()?"edit-post/block":"edit-post/document";o("core",A)}}),null}function YVt({clientId:e,onClose:t}){const{getBlocks:n}=G(Q),{replaceBlocks:o}=Oe(Q);return G(s=>s(Q).canRemoveBlock(e),[e])?a.jsx(Ct,{onClick:()=>{o(e,n(e)),t()},children:m("Detach")}):null}function ZVt({clientIds:e,blocks:t}){const[n,o]=x.useState(!1),{replaceBlocks:r}=Oe(Q),{createSuccessNotice:s}=Oe(mt),{canCreate:i}=G(l=>({canCreate:l(Q).canInsertBlockType("core/template-part")}),[]);if(!i)return null;const c=async l=>{r(e,Ee("core/template-part",{slug:l.slug,theme:l.theme})),s(m("Template part created."),{type:"snackbar"})};return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{icon:Qf,onClick:()=>{o(!0)},"aria-expanded":n,"aria-haspopup":"dialog",children:m("Create template part")}),n&&a.jsx(II,{closeModal:()=>{o(!1)},blocks:t,onCreate:c})]})}function QVt(){return a.jsx(cb,{children:({selectedClientIds:e,onClose:t})=>a.jsx(JVt,{clientIds:e,onClose:t})})}function JVt({clientIds:e,onClose:t}){const{blocks:n}=G(o=>{const{getBlocksByClientId:r}=o(Q);return{blocks:r(e)}},[e]);return n.length===1&&n[0]?.name==="core/template-part"?a.jsx(YVt,{clientId:e[0],onClose:t}):a.jsx(ZVt,{clientIds:e,blocks:n})}const{ExperimentalBlockEditorProvider:eHt}=St(Ln),{PatternsMenuItems:tHt}=St(Hi),sne=()=>{},nHt=["wp_block","wp_navigation","wp_template_part"],oHt=["post-only","template-locked"];function rHt(e,t,n){const o=n==="template-locked"?"template":"post",[r,s,i]=Ni("postType",e.type,{id:e.id}),[c,l,u]=Ni("postType",t?.type,{id:t?.id}),d=x.useMemo(()=>{if(e.type==="wp_navigation")return[Ee("core/navigation",{ref:e.id,templateLock:!1})]},[e.type,e.id]),p=x.useMemo(()=>d||(o==="template"?c:r),[d,o,c,r]);return!!t&&n==="template-locked"||e.type==="wp_navigation"?[p,sne,sne]:[p,o==="post"?s:l,o==="post"?i:u]}const UOe=p$t(({post:e,settings:t,recovery:n,initialEdits:o,children:r,BlockEditorProviderComponent:s=eHt,__unstableTemplate:i})=>{const c=!!i,{editorSettings:l,selection:u,isReady:d,mode:p,defaultMode:f,postTypeEntities:b}=G(j=>{const{getEditorSettings:I,getEditorSelection:P,getRenderingMode:$,__unstableIsEditorReady:F}=j(_e),{getEntitiesConfig:X,getPostType:Z,hasFinishedResolution:V}=j(Me),ee=Z(e.type)?.supports,te=V("getPostType",[e.type]),J=Array.isArray(ee?.editor)?ee.editor.find(ce=>"default_mode"in ce)?.default_mode:void 0,ue=oHt.includes(J);return{editorSettings:I(),isReady:F()&&te,mode:$(),defaultMode:c&&ue?J:"post-only",selection:P(),postTypeEntities:e.type==="wp_template"?X("postType"):null}},[e.type,c]),h=!!i&&p!=="post-only",g=h?i:e,z=x.useMemo(()=>{const j={};if(e.type==="wp_template"){if(e.slug==="page")j.postType="page";else if(e.slug==="single")j.postType="post";else if(e.slug.split("-")[0]==="single"){const I=b?.map($=>$.name)||[],P=e.slug.match(`^single-(${I.join("|")})(?:-.+)?$`);P&&(j.postType=P[1])}}else(!nHt.includes(g.type)||h)&&(j.postId=e.id,j.postType=e.type);return{...j,templateSlug:g.type==="wp_template"?g.slug:void 0}},[h,e.id,e.type,e.slug,g.type,g.slug,b]),{id:A,type:_}=g,v=BOe(l,_,A,p),[M,y,k]=rHt(e,i,p),{updatePostLock:S,setupEditor:C,updateEditorSettings:R,setCurrentTemplateId:T,setEditedPost:E,setRenderingMode:B}=St(Oe(_e)),{createWarningNotice:N}=Oe(mt);return x.useLayoutEffect(()=>{n||(S(t.postLock),C(e,o,t.template),t.autosave&&N(m("There is an autosave of this post that is more recent than the version below."),{id:"autosave-exists",actions:[{label:m("View the autosave"),url:t.autosave.editLink}]}))},[]),x.useEffect(()=>{E(e.type,e.id)},[e.type,e.id,E]),x.useEffect(()=>{R(t)},[t,R]),x.useEffect(()=>{T(i?.id)},[i?.id,T]),x.useEffect(()=>{B(f)},[f,B]),T$t(e.type,p),TVt(),!d||!p?null:a.jsx(KE,{kind:"root",type:"site",children:a.jsx(KE,{kind:"postType",type:e.type,id:e.id,children:a.jsx(uO,{value:z,children:a.jsxs(s,{value:M,onChange:k,onInput:y,selection:u,settings:v,useSubRegistry:!1,children:[r,!t.isPreviewMode&&a.jsxs(a.Fragment,{children:[a.jsx(tHt,{}),a.jsx(QVt,{}),a.jsx($Vt,{}),p==="template-locked"&&a.jsx(q$t,{}),_==="wp_navigation"&&a.jsx(R$t,{}),a.jsx(KVt,{}),a.jsx(IVt,{}),a.jsx(NVt,{}),a.jsx(BVt,{}),a.jsx(GVt,{}),a.jsx(wVt,{}),a.jsx(kVt,{})]})]})})})})});function sHt(e){return a.jsx(UOe,{...e,BlockEditorProviderComponent:I5t,children:e.children})}const{useGlobalStyle:iHt}=St(Ln);function aHt({template:e,post:t}){const[n="white"]=iHt("color.background"),[o]=Ni("postType",t.type,{id:t.id}),[r]=Ni("postType",e?.type,{id:e?.id}),s=e&&r?r:o,i=!s?.length;return a.jsxs("div",{className:"editor-fields-content-preview",style:{backgroundColor:n},children:[i&&a.jsx("span",{className:"editor-fields-content-preview__empty",children:m("Empty content")}),!i&&a.jsx(Vd.Async,{children:a.jsx(Vd,{blocks:s})})]})}function cHt({item:e}){const{settings:t,template:n}=G(o=>{var r;const{canUser:s,getPostType:i,getTemplateId:c,getEntityRecord:l}=St(o(Me)),u=s("read",{kind:"postType",name:"wp_template"}),d=o(_e).getEditorSettings(),p=d.supportsTemplateMode,f=(r=i(e.type)?.viewable)!==null&&r!==void 0?r:!1,b=p&&f&&u?c(e.type,e.id):null;return{settings:d,template:b?l("postType","wp_template",b):void 0}},[e.type,e.id]);return a.jsx(sHt,{post:e,settings:t,__unstableTemplate:n,children:a.jsx(aHt,{template:n,post:e})})}const lHt={type:"media",id:"content-preview",label:m("Content preview"),render:cHt,enableSorting:!1};function uHt(e,t,n){return{type:"REGISTER_ENTITY_ACTION",kind:e,name:t,config:n}}function dHt(e,t,n){return{type:"UNREGISTER_ENTITY_ACTION",kind:e,name:t,actionId:n}}function pHt(e,t,n){return{type:"REGISTER_ENTITY_FIELD",kind:e,name:t,config:n}}function fHt(e,t,n){return{type:"UNREGISTER_ENTITY_FIELD",kind:e,name:t,fieldId:n}}function bHt(e,t){return{type:"SET_IS_READY",kind:e,name:t}}const hHt=e=>async({registry:t})=>{if(St(t.select(_e)).isEntityReady("postType",e))return;St(t.dispatch(_e)).setIsReady("postType",e);const o=await t.resolveSelect(Me).getPostType(e),r=await t.resolveSelect(Me).canUser("create",{kind:"postType",name:e}),s=await t.resolveSelect(Me).getCurrentTheme(),i=[o.viewable?eFt:void 0,o.supports?.revisions?QFt:void 0,globalThis.IS_GUTENBERG_PLUGIN?!["wp_template","wp_block","wp_template_part"].includes(o.slug)&&r&&qFt:void 0,o.slug==="wp_template_part"&&r&&s?.is_block_theme?u$t:void 0,r&&o.slug==="wp_block"?LFt:void 0,o.supports?.title?RFt:void 0,o.supports?.["page-attributes"]?kFt:void 0,o.slug==="wp_block"?ZFt:void 0,e$t,WFt,s$t,t$t,JFt].filter(Boolean),c=[o.supports?.thumbnail&&s?.theme_supports?.["post-thumbnails"]&&BDt,o.supports?.author&&JDt,GDt,ZDt,T9t,o.supports?.["page-attributes"]&&$Dt,o.supports?.comments&&KDt,PDt,HDt,o.supports?.editor&&o.viewable&&lHt].filter(Boolean);if(o.supports?.title){let l;e==="page"?l=N9t:e==="wp_template"?l=B9t:e==="wp_block"?l=gDt:l=bOe,c.push(l)}t.batch(()=>{i.forEach(l=>{St(t.dispatch(_e)).registerEntityAction("postType",e,l)}),c.forEach(l=>{St(t.dispatch(_e)).registerEntityField("postType",e,l)})}),WN("core.registerPostTypeSchema",e)};function mHt(e){return{type:"SET_CURRENT_TEMPLATE_ID",id:e}}const gHt=e=>async({select:t,dispatch:n,registry:o})=>{const r=await o.dispatch(Me).saveEntityRecord("postType","wp_template",e);return o.dispatch(Me).editEntityRecord("postType",t.getCurrentPostType(),t.getCurrentPostId(),{template:r.slug}),o.dispatch(mt).createSuccessNotice(m("Custom template created. You're in template mode now."),{type:"snackbar",actions:[{label:m("Go back"),onClick:()=>n.setRenderingMode(t.getEditorSettings().defaultRenderingMode)}]}),r},MHt=e=>({registry:t})=>{var n;const r=((n=t.select(ht).get("core","hiddenBlockTypes"))!==null&&n!==void 0?n:[]).filter(s=>!(Array.isArray(e)?e:[e]).includes(s));t.dispatch(ht).set("core","hiddenBlockTypes",r)},zHt=e=>({registry:t})=>{var n;const o=(n=t.select(ht).get("core","hiddenBlockTypes"))!==null&&n!==void 0?n:[],r=new Set([...o,...Array.isArray(e)?e:[e]]);t.dispatch(ht).set("core","hiddenBlockTypes",[...r])},OHt=({onSave:e,dirtyEntityRecords:t=[],entitiesToSkip:n=[],close:o}={})=>({registry:r})=>{const s=[{kind:"postType",name:"wp_navigation"}],i="site-editor-save-success",c=r.select(Me).getEntityRecord("root","__unstableBase")?.home;r.dispatch(mt).removeNotice(i);const l=t.filter(({kind:p,name:f,key:b,property:h})=>!n.some(g=>g.kind===p&&g.name===f&&g.key===b&&g.property===h));o?.(l);const u=[],d=[];l.forEach(({kind:p,name:f,key:b,property:h})=>{p==="root"&&f==="site"?u.push(h):(s.some(g=>g.kind===p&&g.name===f)&&r.dispatch(Me).editEntityRecord(p,f,b,{status:"publish"}),d.push(r.dispatch(Me).saveEditedEntityRecord(p,f,b)))}),u.length&&d.push(r.dispatch(Me).__experimentalSaveSpecifiedEntityEdits("root","site",void 0,u)),r.dispatch(Q).__unstableMarkLastChangeAsPersistent(),Promise.all(d).then(p=>e?e(p):p).then(p=>{p.some(f=>typeof f>"u")?r.dispatch(mt).createErrorNotice(m("Saving failed.")):r.dispatch(mt).createSuccessNotice(m("Site updated."),{type:"snackbar",id:i,actions:[{label:m("View site"),url:c}]})}).catch(p=>r.dispatch(mt).createErrorNotice(`${m("Saving failed.")} ${p}`))},yHt=(e,{allowUndo:t=!0}={})=>async({registry:n})=>{const o="edit-site-template-reverted";if(n.dispatch(mt).removeNotice(o),!lOe(e)){n.dispatch(mt).createErrorNotice(m("This template is not revertable."),{type:"snackbar"});return}try{const r=n.select(Me).getEntityConfig("postType",e.type);if(!r){n.dispatch(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const s=tn(`${r.baseURL}/${e.id}`,{context:"edit",source:e.origin}),i=await Tt({path:s});if(!i){n.dispatch(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const c=({blocks:d=[]})=>Jd(d),l=n.select(Me).getEditedEntityRecord("postType",e.type,e.id);n.dispatch(Me).editEntityRecord("postType",e.type,e.id,{content:c,blocks:l.blocks,source:"custom"},{undoIgnore:!0});const u=Ko(i?.content?.raw);if(n.dispatch(Me).editEntityRecord("postType",e.type,i.id,{content:c,blocks:u,source:"theme"}),t){const d=()=>{n.dispatch(Me).editEntityRecord("postType",e.type,l.id,{content:c,blocks:l.blocks,source:"custom"})};n.dispatch(mt).createSuccessNotice(m("Template reset."),{type:"snackbar",id:o,actions:[{label:m("Undo"),onClick:d}]})}}catch(r){const s=r.message&&r.code!=="unknown_error"?r.message:m("Template revert failed. Please reload.");n.dispatch(mt).createErrorNotice(s,{type:"snackbar"})}},AHt=e=>async({registry:t})=>{const n=e.every(r=>r?.has_theme_file),o=await Promise.allSettled(e.map(r=>t.dispatch(Me).deleteEntityRecord("postType",r.type,r.id,{force:!0},{throwOnError:!0})));if(o.every(({status:r})=>r==="fulfilled")){let r;if(e.length===1){let s;typeof e[0].title=="string"?s=e[0].title:typeof e[0].title?.rendered=="string"?s=e[0].title?.rendered:typeof e[0].title?.raw=="string"&&(s=e[0].title?.raw),r=xe(n?m('"%s" reset.'):We('"%s" deleted.',"template part"),Lt(s))}else r=m(n?"Items reset.":"Items deleted.");t.dispatch(mt).createSuccessNotice(r,{type:"snackbar",id:"editor-template-deleted-success"})}else{let r;if(o.length===1)o[0].reason?.message?r=o[0].reason.message:r=m(n?"An error occurred while reverting the item.":"An error occurred while deleting the item.");else{const s=new Set,i=o.filter(({status:c})=>c==="rejected");for(const c of i)c.reason?.message&&s.add(c.reason.message);s.size===0?r=m("An error occurred while deleting the items."):s.size===1?r=n?xe(m("An error occurred while reverting the items: %s"),[...s][0]):xe(m("An error occurred while deleting the items: %s"),[...s][0]):r=n?xe(m("Some errors occurred while reverting the items: %s"),[...s].join(",")):xe(m("Some errors occurred while deleting the items: %s"),[...s].join(","))}t.dispatch(mt).createErrorNotice(r,{type:"snackbar"})}},vHt=Object.freeze(Object.defineProperty({__proto__:null,createTemplate:gHt,hideBlockTypes:zHt,registerEntityAction:uHt,registerEntityField:pHt,registerPostTypeSchema:hHt,removeTemplates:AHt,revertTemplate:yHt,saveDirtyEntities:OHt,setCurrentTemplateId:mHt,setIsReady:bHt,showBlockTypes:MHt,unregisterEntityAction:dHt,unregisterEntityField:fHt},Symbol.toStringTag,{value:"Module"})),XOe=[];function xHt(e,t,n){var o;return(o=e.actions[t]?.[n])!==null&&o!==void 0?o:XOe}function wHt(e,t,n){var o;return(o=e.fields[t]?.[n])!==null&&o!==void 0?o:XOe}function _Ht(e,t,n){return e.isReady[t]?.[n]}const kHt={rootClientId:void 0,insertionIndex:void 0,filterValue:void 0},SHt=At(e=>It(t=>{if(typeof t.blockInserterPanel=="object")return t.blockInserterPanel;if(oN(t)==="template-locked"){const[n]=e(Q).getBlocksByName("core/post-content");if(n)return{rootClientId:n,insertionIndex:void 0,filterValue:void 0}}return kHt},t=>{const[n]=e(Q).getBlocksByName("core/post-content");return[t.blockInserterPanel,oN(t),n]}));function CHt(e){return e.listViewToggleRef}function qHt(e){return e.inserterSidebarToggleRef}const ine={wp_block:Bd,wp_navigation:G3,page:wa,post:$w},RHt=At(e=>(t,n,o)=>{{if(n==="wp_template_part"||n==="wp_template"){const i=(e(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[]).find(c=>o.area===c.area);return i?.icon?TI(i.icon):ou}if(ine[n])return ine[n];const r=e(Me).getPostType(n);return typeof r?.icon=="string"&&r.icon.startsWith("dashicons-")?r.icon.slice(10):wa}}),THt=At(e=>(t,n,o)=>{const{type:r,id:s}=G1(t),i=e(Me).getEntityRecordNonTransientEdits("postType",n||r,o||s);if(!i?.meta)return!1;const c=e(Me).getEntityRecord("postType",n||r,o||s)?.meta;return!gMe({...c,footnotes:void 0},{...i.meta,footnotes:void 0})});function EHt(e,...t){return xHt(e.dataviews,...t)}function WHt(e,...t){return _Ht(e.dataviews,...t)}function NHt(e,...t){return wHt(e.dataviews,...t)}const BHt=At(e=>It((t,n)=>{n=Array.isArray(n)?n:[n];const{getBlocksByName:o,getBlockParents:r,getBlockName:s}=e(Q);return o(n).filter(i=>r(i).every(c=>{const l=s(c);return l!=="core/query"&&!n.includes(l)}))},()=>[e(Q).getBlocks()])),LHt=Object.freeze(Object.defineProperty({__proto__:null,getEntityActions:EHt,getEntityFields:NHt,getInserter:SHt,getInserterSidebarToggleRef:qHt,getListViewToggleRef:CHt,getPostBlocksByName:BHt,getPostIcon:RHt,hasPostMetaChanges:THt,isEntityReady:WHt},Symbol.toStringTag,{value:"Module"})),GOe={reducer:ijt,selectors:cIt,actions:S9t},_e=x1(cjt,{...GOe});Us(_e);St(_e).registerPrivateActions(vHt);St(_e).registerPrivateSelectors(LHt);const PHt=e=>Or(t=>({attributes:n,setAttributes:o,...r})=>{const s=G(u=>u(_e).getCurrentPostType(),[]),[i,c]=Ao("postType",s,"meta"),l=x.useMemo(()=>({...n,...Object.fromEntries(Object.entries(e).map(([u,d])=>[u,i[d]]))}),[n,i]);return a.jsx(t,{attributes:l,setAttributes:u=>{const d=Object.fromEntries(Object.entries(u??{}).filter(([p])=>p in e).map(([p,f])=>[e[p],f]));Object.entries(d).length&&c(d),o(u)},...r})},"withMetaAttributeSource");function jHt(e){var t;const n=Object.fromEntries(Object.entries((t=e.attributes)!==null&&t!==void 0?t:{}).filter(([,{source:o}])=>o==="meta").map(([o,{meta:r}])=>[o,r]));return Object.entries(n).length&&(e.edit=PHt(n)(e.edit)),e}Bn("blocks.registerBlockType","core/editor/custom-sources-backwards-compatibility/shim-attribute-source",jHt);function IHt(e){const t=e.avatar_urls&&e.avatar_urls[24]?a.jsx("img",{className:"editor-autocompleters__user-avatar",alt:"",src:e.avatar_urls[24]}):a.jsx("span",{className:"editor-autocompleters__no-avatar"});return a.jsxs(a.Fragment,{children:[t,a.jsx("span",{className:"editor-autocompleters__user-name",children:e.name}),a.jsx("span",{className:"editor-autocompleters__user-slug",children:e.slug})]})}const DHt={name:"users",className:"editor-autocompleters__user",triggerPrefix:"@",useItems(e){const t=G(o=>{const{getUsers:r}=o(Me);return r({context:"view",search:encodeURIComponent(e)})},[e]);return[x.useMemo(()=>t?t.map(o=>({key:`user-${o.slug}`,value:o,label:IHt(o)})):[],[t])]},getOptionCompletion(e){return`@${e.slug}`}};class FHt extends x.Component{constructor(t){super(t),this.needsAutosave=!!(t.isDirty&&t.isAutosaveable)}componentDidMount(){this.props.disableIntervalChecks||this.setAutosaveTimer()}componentDidUpdate(t){if(this.props.disableIntervalChecks){this.props.editsReference!==t.editsReference&&this.props.autosave();return}if(this.props.interval!==t.interval&&(clearTimeout(this.timerId),this.setAutosaveTimer()),!this.props.isDirty){this.needsAutosave=!1;return}if(this.props.isAutosaving&&!t.isAutosaving){this.needsAutosave=!1;return}this.props.editsReference!==t.editsReference&&(this.needsAutosave=!0)}componentWillUnmount(){clearTimeout(this.timerId)}setAutosaveTimer(t=this.props.interval*1e3){this.timerId=setTimeout(()=>{this.autosaveTimerHandler()},t)}autosaveTimerHandler(){if(!this.props.isAutosaveable){this.setAutosaveTimer(1e3);return}this.needsAutosave&&(this.needsAutosave=!1,this.props.autosave()),this.setAutosaveTimer()}render(){return null}}const $Ht=Co([Xl((e,t)=>{const{getReferenceByDistinctEdits:n}=e(Me),{isEditedPostDirty:o,isEditedPostAutosaveable:r,isAutosavingPost:s,getEditorSettings:i}=e(_e),{interval:c=i().autosaveInterval}=t;return{editsReference:n(),isDirty:o(),isAutosaveable:r(),isAutosaving:s(),interval:c}}),Ff((e,t)=>({autosave(){const{autosave:n=e(_e).autosave}=t;n()}}))])(FHt);function KOe(e){const{isFrontPage:t,isPostsPage:n}=G(o=>{const{canUser:r,getEditedEntityRecord:s}=o(Me),i=r("read",{kind:"root",name:"site"})?s("root","site"):void 0,c=parseInt(e,10);return{isFrontPage:i?.page_on_front===c,isPostsPage:i?.page_for_posts===c}});return t?m("Homepage"):n?m("Posts Page"):!1}const VHt=Rr(Ce);function HHt(e){const{postId:t,postType:n,postTypeLabel:o,documentTitle:r,isNotFound:s,templateTitle:i,onNavigateToPreviousEntityRecord:c,isTemplatePreview:l}=G(_=>{var v;const{getCurrentPostType:M,getCurrentPostId:y,getEditorSettings:k,getRenderingMode:S}=_(_e),{getEditedEntityRecord:C,getPostType:R,isResolving:T}=_(Me),E=M(),B=y(),N=C("postType",E,B),{default_template_types:j=[]}=(v=_(Me).getEntityRecord("root","__unstableBase"))!==null&&v!==void 0?v:{},I=LO({templateTypes:j,template:N}),P=R(E)?.labels?.singular_name;return{postId:B,postType:E,postTypeLabel:P,documentTitle:N.title,isNotFound:!N&&!T("getEditedEntityRecord","postType",E,B),templateTitle:I.title,onNavigateToPreviousEntityRecord:k().onNavigateToPreviousEntityRecord,isTemplatePreview:S()==="template-locked"}},[]),{open:u}=Oe(Ef),d=$1(),p=Q3e.includes(n),f=!!c,b=p?i:r,h=e.title||b,g=e.icon,z=KOe(t),A=x.useRef(!1);return x.useEffect(()=>{A.current=!0},[]),a.jsxs("div",{className:oe("editor-document-bar",{"has-back-button":f}),children:[a.jsx(Wd,{children:f&&a.jsx(VHt,{className:"editor-document-bar__back",icon:jt()?Af:Ww,onClick:_=>{_.stopPropagation(),c()},size:"compact",initial:A.current?{opacity:0,transform:"translateX(15%)"}:!1,animate:{opacity:1,transform:"translateX(0%)"},exit:{opacity:0,transform:"translateX(15%)"},transition:d?{duration:0}:void 0,children:m("Back")})}),!p&&l&&a.jsx(Zn,{icon:ou,className:"editor-document-bar__icon-layout"}),s?a.jsx(Sn,{children:m("Document not found")}):a.jsxs(Ce,{className:"editor-document-bar__command",onClick:()=>u(),size:"compact",children:[a.jsxs(Rr.div,{className:"editor-document-bar__title",initial:A.current?{opacity:0,transform:f?"translateX(15%)":"translateX(-15%)"}:!1,animate:{opacity:1,transform:"translateX(0%)"},transition:d?{duration:0}:void 0,children:[g&&a.jsx(Zn,{icon:g}),a.jsxs(Sn,{size:"body",as:"h1",children:[a.jsx("span",{className:"editor-document-bar__post-title",children:h?v1(h):m("No title")}),z&&a.jsx("span",{className:"editor-document-bar__post-type-label",children:`· ${z}`}),o&&!e.title&&!z&&a.jsx("span",{className:"editor-document-bar__post-type-label",children:`· ${Lt(o)}`})]})]},f),a.jsx("span",{className:"editor-document-bar__shortcut",children:j1.primary("k")})]})]})}const ane=({children:e,isValid:t,level:n,href:o,onSelect:r})=>a.jsx("li",{className:oe("document-outline__item",`is-${n.toLowerCase()}`,{"is-invalid":!t}),children:a.jsxs("a",{href:o,className:"document-outline__button",onClick:r,children:[a.jsx("span",{className:"document-outline__emdash","aria-hidden":"true"}),a.jsx("strong",{className:"document-outline__level",children:n}),a.jsx("span",{className:"document-outline__item-content",children:e})]})}),UHt=a.jsx("em",{children:m("(Empty heading)")}),XHt=[a.jsx("br",{},"incorrect-break"),a.jsx("em",{children:m("(Incorrect heading level)")},"incorrect-message")],GHt=[a.jsx("br",{},"incorrect-break-h1"),a.jsx("em",{children:m("(Your theme may already use a H1 for the post title)")},"incorrect-message-h1")],KHt=[a.jsx("br",{},"incorrect-break-multiple-h1"),a.jsx("em",{children:m("(Multiple H1 headings are not recommended)")},"incorrect-message-multiple-h1")];function YHt(){return a.jsxs(ge,{width:"138",height:"148",viewBox:"0 0 138 148",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(S0,{width:"138",height:"148",rx:"4",fill:"#F0F6FC"}),a.jsx(OA,{x1:"44",y1:"28",x2:"24",y2:"28",stroke:"#DDDDDD"}),a.jsx(S0,{x:"48",y:"16",width:"27",height:"23",rx:"4",fill:"#DDDDDD"}),a.jsx(he,{d:"M54.7585 32V23.2727H56.6037V26.8736H60.3494V23.2727H62.1903V32H60.3494V28.3949H56.6037V32H54.7585ZM67.4574 23.2727V32H65.6122V25.0241H65.5611L63.5625 26.277V24.6406L65.723 23.2727H67.4574Z",fill:"black"}),a.jsx(OA,{x1:"55",y1:"59",x2:"24",y2:"59",stroke:"#DDDDDD"}),a.jsx(S0,{x:"59",y:"47",width:"29",height:"23",rx:"4",fill:"#DDDDDD"}),a.jsx(he,{d:"M65.7585 63V54.2727H67.6037V57.8736H71.3494V54.2727H73.1903V63H71.3494V59.3949H67.6037V63H65.7585ZM74.6605 63V61.6705L77.767 58.794C78.0313 58.5384 78.2528 58.3082 78.4318 58.1037C78.6136 57.8991 78.7514 57.6989 78.8452 57.5028C78.9389 57.304 78.9858 57.0895 78.9858 56.8594C78.9858 56.6037 78.9276 56.3835 78.8111 56.1989C78.6946 56.0114 78.5355 55.8679 78.3338 55.7685C78.1321 55.6662 77.9034 55.6151 77.6477 55.6151C77.3807 55.6151 77.1477 55.669 76.9489 55.777C76.75 55.8849 76.5966 56.0398 76.4886 56.2415C76.3807 56.4432 76.3267 56.6832 76.3267 56.9616H74.5753C74.5753 56.3906 74.7045 55.8949 74.9631 55.4744C75.2216 55.054 75.5838 54.7287 76.0497 54.4986C76.5156 54.2685 77.0526 54.1534 77.6605 54.1534C78.2855 54.1534 78.8295 54.2642 79.2926 54.4858C79.7585 54.7045 80.1207 55.0085 80.3793 55.3977C80.6378 55.7869 80.767 56.233 80.767 56.7358C80.767 57.0653 80.7017 57.3906 80.571 57.7116C80.4432 58.0327 80.2145 58.3892 79.8849 58.7812C79.5554 59.1705 79.0909 59.6378 78.4915 60.1832L77.2173 61.4318V61.4915H80.8821V63H74.6605Z",fill:"black"}),a.jsx(OA,{x1:"80",y1:"90",x2:"24",y2:"90",stroke:"#DDDDDD"}),a.jsx(S0,{x:"84",y:"78",width:"30",height:"23",rx:"4",fill:"#F0B849"}),a.jsx(he,{d:"M90.7585 94V85.2727H92.6037V88.8736H96.3494V85.2727H98.1903V94H96.3494V90.3949H92.6037V94H90.7585ZM99.5284 92.4659V91.0128L103.172 85.2727H104.425V87.2841H103.683L101.386 90.919V90.9872H106.564V92.4659H99.5284ZM103.717 94V92.0227L103.751 91.3793V85.2727H105.482V94H103.717Z",fill:"black"}),a.jsx(OA,{x1:"66",y1:"121",x2:"24",y2:"121",stroke:"#DDDDDD"}),a.jsx(S0,{x:"70",y:"109",width:"29",height:"23",rx:"4",fill:"#DDDDDD"}),a.jsx(he,{d:"M76.7585 125V116.273H78.6037V119.874H82.3494V116.273H84.1903V125H82.3494V121.395H78.6037V125H76.7585ZM88.8864 125.119C88.25 125.119 87.6832 125.01 87.1861 124.791C86.6918 124.57 86.3011 124.266 86.0142 123.879C85.7301 123.49 85.5838 123.041 85.5753 122.533H87.4332C87.4446 122.746 87.5142 122.933 87.642 123.095C87.7727 123.254 87.946 123.378 88.1619 123.466C88.3778 123.554 88.6207 123.598 88.8906 123.598C89.1719 123.598 89.4205 123.548 89.6364 123.449C89.8523 123.349 90.0213 123.212 90.1435 123.036C90.2656 122.859 90.3267 122.656 90.3267 122.426C90.3267 122.193 90.2614 121.987 90.1307 121.808C90.0028 121.626 89.8182 121.484 89.5767 121.382C89.3381 121.28 89.054 121.229 88.7244 121.229H87.9105V119.874H88.7244C89.0028 119.874 89.2486 119.825 89.4616 119.729C89.6776 119.632 89.8452 119.499 89.9645 119.328C90.0838 119.155 90.1435 118.953 90.1435 118.723C90.1435 118.504 90.0909 118.312 89.9858 118.148C89.8835 117.98 89.7386 117.849 89.5511 117.756C89.3665 117.662 89.1506 117.615 88.9034 117.615C88.6534 117.615 88.4247 117.661 88.2173 117.751C88.0099 117.839 87.8438 117.966 87.7188 118.131C87.5938 118.295 87.527 118.489 87.5185 118.71H85.75C85.7585 118.207 85.902 117.764 86.1804 117.381C86.4588 116.997 86.8338 116.697 87.3054 116.482C87.7798 116.263 88.3153 116.153 88.9119 116.153C89.5142 116.153 90.0412 116.263 90.4929 116.482C90.9446 116.7 91.2955 116.996 91.5455 117.368C91.7983 117.737 91.9233 118.152 91.9205 118.612C91.9233 119.101 91.7713 119.509 91.4645 119.835C91.1605 120.162 90.7642 120.369 90.2756 120.457V120.526C90.9176 120.608 91.4063 120.831 91.7415 121.195C92.0795 121.555 92.2472 122.007 92.2443 122.55C92.2472 123.047 92.1037 123.489 91.8139 123.875C91.527 124.261 91.1307 124.565 90.625 124.787C90.1193 125.009 89.5398 125.119 88.8864 125.119Z",fill:"black"})]})}const YOe=(e=[])=>e.flatMap((t={})=>t.name==="core/heading"?{...t,level:t.attributes.level,isEmpty:ZHt(t)}:YOe(t.innerBlocks)),ZHt=e=>!e.attributes.content||e.attributes.content.trim().length===0;function QHt({onSelect:e,hasOutlineItemsDisabled:t}){const{selectBlock:n}=Oe(Q),{blocks:o,title:r,isTitleSupported:s}=G(f=>{var b;const{getBlocks:h}=f(Q),{getEditedPostAttribute:g}=f(_e),{getPostType:z}=f(Me),A=z(g("type"));return{title:g("title"),blocks:h(),isTitleSupported:(b=A?.supports?.title)!==null&&b!==void 0?b:!1}}),i=x.useRef(1),c=YOe(o);if(c.length<1)return a.jsxs("div",{className:"editor-document-outline has-no-headings",children:[a.jsx(YHt,{}),a.jsx("p",{children:m("Navigate the structure of your document and address issues like empty or incorrect heading levels.")})]});const l=document.querySelector(".editor-post-title__input"),u=s&&r&&l,p=c.reduce((f,b)=>({...f,[b.level]:(f[b.level]||0)+1}),{})[1]>1;return a.jsx("div",{className:"document-outline",children:a.jsxs("ul",{children:[u&&a.jsx(ane,{level:m("Title"),isValid:!0,onSelect:e,href:`#${l.id}`,isDisabled:t,children:r}),c.map(f=>{const b=f.level>i.current+1,h=!f.isEmpty&&!b&&!!f.level&&(f.level!==1||!p&&!u);return i.current=f.level,a.jsxs(ane,{level:`H${f.level}`,isValid:h,isDisabled:t,href:`#block-${f.clientId}`,onSelect:()=>{n(f.clientId),e?.()},children:[f.isEmpty?UHt:Jp(eo({html:f.attributes.content})),b&&XHt,f.level===1&&p&&KHt,u&&f.level===1&&!p&&GHt]},f.clientId)})]})})}function JHt(e,t){const n=pa()?j1.primaryShift("z"):j1.primary("y"),o=G(s=>s(_e).hasEditorRedo(),[]),{redo:r}=Oe(_e);return a.jsx(Ce,{__next40pxDefaultSize:!0,...e,ref:t,icon:jt()?Hde:Wde,label:m("Redo"),shortcut:n,"aria-disabled":!o,onClick:o?r:void 0,className:"editor-history__redo"})}const eUt=x.forwardRef(JHt);function tUt(e,t){const n=G(r=>r(_e).hasEditorUndo(),[]),{undo:o}=Oe(_e);return a.jsx(Ce,{__next40pxDefaultSize:!0,...e,ref:t,icon:jt()?Wde:Hde,label:m("Undo"),shortcut:j1.primary("z"),"aria-disabled":!n,onClick:n?o:void 0,className:"editor-history__undo"})}const nUt=x.forwardRef(tUt);function oUt(){const[e,t]=x.useState(!1),n=G(s=>s(Q).isValidTemplate(),[]),{setTemplateValidity:o,synchronizeTemplate:r}=Oe(Q);return n?null:a.jsxs(a.Fragment,{children:[a.jsx(L1,{className:"editor-template-validation-notice",isDismissible:!1,status:"warning",actions:[{label:m("Keep it as is"),onClick:()=>o(!0)},{label:m("Reset the template"),onClick:()=>t(!0)}],children:m("The content of your post doesn’t match the template assigned to your post type.")}),a.jsx(wf,{isOpen:e,confirmButtonText:m("Reset"),onConfirm:()=>{t(!1),r()},onCancel:()=>t(!1),size:"medium",children:m("Resetting the template may result in loss of content, do you want to continue?")})]})}function cne(){const{notices:e}=G(r=>({notices:r(mt).getNotices()}),[]),{removeNotice:t}=Oe(mt),n=e.filter(({isDismissible:r,type:s})=>r&&s==="default"),o=e.filter(({isDismissible:r,type:s})=>!r&&s==="default");return a.jsxs(a.Fragment,{children:[a.jsx(lW,{notices:o,className:"components-editor-notices__pinned"}),a.jsx(lW,{notices:n,className:"components-editor-notices__dismissible",onRemove:t,children:a.jsx(oUt,{})})]})}const rUt=-3;function sUt(){const e=G(o=>o(mt).getNotices(),[]),{removeNotice:t}=Oe(mt),n=e.filter(({type:o})=>o==="snackbar").slice(rUt);return a.jsx(Q2t,{notices:n,className:"components-editor-notices__snackbar",onRemove:t})}function iUt({record:e,checked:t,onChange:n}){const{name:o,kind:r,title:s,key:i}=e,{entityRecordTitle:c,hasPostMetaChanges:l}=G(u=>{var d;if(r!=="postType"||o!=="wp_template")return{entityRecordTitle:s,hasPostMetaChanges:St(u(_e)).hasPostMetaChanges(o,i)};const p=u(Me).getEditedEntityRecord(r,o,i),{default_template_types:f=[]}=(d=u(Me).getEntityRecord("root","__unstableBase"))!==null&&d!==void 0?d:{};return{entityRecordTitle:LO({template:p,templateTypes:f}).title,hasPostMetaChanges:St(u(_e)).hasPostMetaChanges(o,i)}},[o,r,s,i]);return a.jsxs(a.Fragment,{children:[a.jsx(d_,{children:a.jsx(K0,{__nextHasNoMarginBottom:!0,label:Lt(c)||m("Untitled"),checked:t,onChange:n})}),l&&a.jsx("ul",{className:"entities-saved-states__changes",children:a.jsx("li",{children:m("Post Meta.")})})]})}const{getGlobalStylesChanges:aUt,GlobalStylesContext:cUt}=St(Ln);function lUt(e,t){switch(e){case"site":return m(t===1?"This change will affect your whole site.":"These changes will affect your whole site.");case"wp_template":return m("This change will affect pages and posts that use this template.");case"page":case"post":return m("The following has been modified.")}}function uUt({record:e}){const{user:t}=x.useContext(cUt),n=G(r=>r(Me).getEntityRecord(e.kind,e.name,e.key),[e.kind,e.name,e.key]),o=aUt(t,n,{maxResults:10});return o.length?a.jsx("ul",{className:"entities-saved-states__changes",children:o.map(r=>a.jsx("li",{children:r},r))}):null}function dUt({record:e,count:t}){if(e?.name==="globalStyles")return null;const n=lUt(e?.name,t);return n?a.jsx(d_,{children:n}):null}function pUt({list:e,unselectedEntities:t,setUnselectedEntities:n}){const o=e.length,r=e[0];let i=G(c=>c(Me).getEntityConfig(r.kind,r.name),[r.kind,r.name]).label;return r?.name==="wp_template_part"&&(i=m(o===1?"Template Part":"Template Parts")),a.jsxs(Qt,{title:i,initialOpen:!0,children:[a.jsx(dUt,{record:r,count:o}),e.map(c=>a.jsx(iUt,{record:c,checked:!t.some(l=>l.kind===c.kind&&l.name===c.name&&l.key===c.key&&l.property===c.property),onChange:l=>n(c,l)},c.key||c.property)),r?.name==="globalStyles"&&a.jsx(uUt,{record:r})]})}const fUt=()=>{const{editedEntities:e,siteEdits:t,siteEntityConfig:n}=G(l=>{const{__experimentalGetDirtyEntityRecords:u,getEntityRecordEdits:d,getEntityConfig:p}=l(Me);return{editedEntities:u(),siteEdits:d("root","site"),siteEntityConfig:p("root","site")}},[]),o=x.useMemo(()=>{var l;const u=e.filter(f=>!(f.kind==="root"&&f.name==="site")),d=(l=n?.meta?.labels)!==null&&l!==void 0?l:{},p=[];for(const f in t)p.push({kind:"root",name:"site",title:d[f]||f,property:f});return[...u,...p]},[e,t,n]),[r,s]=x.useState([]),i=({kind:l,name:u,key:d,property:p},f)=>{s(f?r.filter(b=>b.kind!==l||b.name!==u||b.key!==d||b.property!==p):[...r,{kind:l,name:u,key:d,property:p}])},c=o.length-r.length>0;return{dirtyEntityRecords:o,isDirty:c,setUnselectedEntities:i,unselectedEntities:r}};function bUt(e){return e}function hUt({close:e,renderDialog:t}){const n=fUt();return a.jsx(n5,{close:e,renderDialog:t,...n})}function n5({additionalPrompt:e=void 0,close:t,onSave:n=bUt,saveEnabled:o=void 0,saveLabel:r=m("Save"),renderDialog:s,dirtyEntityRecords:i,isDirty:c,setUnselectedEntities:l,unselectedEntities:u}){const d=x.useRef(),{saveDirtyEntities:p}=St(Oe(_e)),f=i.reduce((R,T)=>{const{name:E}=T;return R[E]||(R[E]=[]),R[E].push(T),R},{}),{site:b,wp_template:h,wp_template_part:g,...z}=f,A=[b,h,g,...Object.values(z)].filter(Array.isArray),_=o??c,v=x.useCallback(()=>t(),[t]),[M,y]=v0e({onClose:()=>v()}),k=vt(n5,"label"),S=vt(n5,"description"),C=i.length?m("Select the items you want to save."):void 0;return a.jsxs("div",{ref:s?M:void 0,...s&&y,className:"entities-saved-states__panel",role:s?"dialog":void 0,"aria-labelledby":s?k:void 0,"aria-describedby":s?S:void 0,children:[a.jsxs(Yo,{className:"entities-saved-states__panel-header",gap:2,children:[a.jsx(Tn,{isBlock:!0,as:Ce,variant:"secondary",size:"compact",onClick:v,children:m("Cancel")}),a.jsx(Tn,{isBlock:!0,as:Ce,ref:d,variant:"primary",size:"compact",disabled:!_,accessibleWhenDisabled:!0,onClick:()=>p({onSave:n,dirtyEntityRecords:i,entitiesToSkip:u,close:t}),className:"editor-entities-saved-states__save-button",children:r})]}),a.jsxs("div",{className:"entities-saved-states__text-prompt",children:[a.jsxs("div",{className:"entities-saved-states__text-prompt--header-wrapper",id:s?k:void 0,children:[a.jsx("strong",{className:"entities-saved-states__text-prompt--header",children:m("Are you ready to save?")}),e]}),a.jsx("p",{id:s?S:void 0,children:c?cr(xe(Dn("There is <strong>%d site change</strong> waiting to be saved.","There are <strong>%d site changes</strong> waiting to be saved.",i.length),i.length),{strong:a.jsx("strong",{})}):C})]}),A.map(R=>a.jsx(pUt,{list:R,unselectedEntities:u,setUnselectedEntities:l},R[0].name))]})}function mUt(){try{return uo(_e).getEditedPostContent()}catch{}}function lne({text:e,children:t,variant:n="secondary"}){const o=Ul(e);return a.jsx(Ce,{__next40pxDefaultSize:!0,variant:n,ref:o,children:t})}class gUt extends x.Component{constructor(){super(...arguments),this.state={error:null}}componentDidCatch(t){WN("editor.ErrorBoundary.errorLogged",t)}static getDerivedStateFromError(t){return{error:t}}render(){const{error:t}=this.state,{canCopyContent:n=!1}=this.props;return t?a.jsxs(Ot,{className:"editor-error-boundary",alignment:"baseline",spacing:4,justify:"space-between",expanded:!1,wrap:!0,children:[a.jsx(Sn,{as:"p",children:m("The editor has encountered an unexpected error.")}),a.jsxs(Ot,{expanded:!1,children:[n&&a.jsx(lne,{text:mUt,children:m("Copy contents")}),a.jsx(lne,{variant:"primary",text:t?.stack,children:m("Copy error")})]})]}):this.props.children}}function ZOe({children:e}){return G(n=>{const{getEditedPostAttribute:o}=n(_e),{getPostType:r}=n(Me);return!!r(o("type"))?.supports?.["page-attributes"]},[])?e:null}function Sc({children:e,supportKeys:t}){const n=G(r=>{const{getEditedPostAttribute:s}=r(_e),{getPostType:i}=r(Me);return i(s("type"))},[]);let o=!!n;return n&&(o=(Array.isArray(t)?t:[t]).some(r=>!!n.supports[r])),o?e:null}const xs=x.forwardRef(({className:e,label:t,children:n},o)=>a.jsxs(Ot,{className:oe("editor-post-panel__row",e),ref:o,children:[t&&a.jsx("div",{className:"editor-post-panel__row-label",children:t}),a.jsx("div",{className:"editor-post-panel__row-control",children:n})]}));function QOe(e){const t=e.map(r=>({children:[],parent:void 0,...r}));if(t.some(({parent:r})=>r===void 0))return t;const n=t.reduce((r,s)=>{const{parent:i}=s;return r[i]||(r[i]=[]),r[i].push(s),r},{}),o=r=>r.map(s=>{const i=n[s.id];return{...s,children:i&&i.length?o(i):[]}});return o(n[0]||[])}const o3=e=>Lt(e),JOe=e=>({...e,name:o3(e.name)}),MUt=e=>(e??[]).map(JOe);function aN(e){return e?.title?.rendered?Lt(e.title.rendered):`#${e.id} (${m("no title")})`}const une=(e,t)=>{const n=ms(e||"").toLowerCase(),o=ms(t||"").toLowerCase();return n===o?0:n.startsWith(o)?n.length:1/0};function zUt(){const{editPost:e}=Oe(_e),[t,n]=x.useState(!1),{isHierarchical:o,parentPostId:r,parentPostTitle:s,pageItems:i}=G(d=>{var p;const{getPostType:f,getEntityRecords:b,getEntityRecord:h}=d(Me),{getCurrentPostId:g,getEditedPostAttribute:z}=d(_e),A=z("type"),_=z("parent"),v=f(A),M=g(),y=(p=v?.hierarchical)!==null&&p!==void 0?p:!1,k={per_page:100,exclude:M,parent_exclude:M,orderby:"menu_order",order:"asc",_fields:"id,title,parent"};t&&(k.search=t);const S=_?h("postType",A,_):null;return{isHierarchical:y,parentPostId:_,parentPostTitle:S?aN(S):"",pageItems:y?b("postType",A,k):null}},[t]),c=x.useMemo(()=>{const d=(h,g=0)=>h.map(_=>[{value:_.id,label:"— ".repeat(g)+Lt(_.name),rawName:_.name},...d(_.children||[],g+1)]).sort(([_],[v])=>{const M=une(_.rawName,t),y=une(v.rawName,t);return M>=y?1:-1}).flat();if(!i)return[];let p=i.map(h=>({id:h.id,parent:h.parent,name:aN(h)}));t||(p=QOe(p));const f=d(p),b=f.find(h=>h.value===r);return s&&!b&&f.unshift({value:r,label:s}),f},[i,t,s,r]);if(!o)return null;const l=d=>{n(d)},u=d=>{e({parent:d})};return a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,className:"editor-page-attributes__parent",label:m("Parent"),help:m("Choose a parent page."),value:r,options:c,onFilterValueChange:F1(l,300),onChange:u,hideLabelFromVision:!0})}function OUt({isOpen:e,onClick:t}){const n=G(r=>{const{getEditedPostAttribute:s}=r(_e),i=s("parent");if(!i)return null;const{getEntityRecord:c}=r(Me),l=s("type");return c("postType",l,i)},[]),o=x.useMemo(()=>n?aN(n):m("None"),[n]);return a.jsx(Ce,{size:"compact",className:"editor-post-parent__panel-toggle",variant:"tertiary","aria-expanded":e,"aria-label":xe(m("Change parent: %s"),o),onClick:t,children:o})}function yUt(){const e=G(r=>r(Me).getEntityRecord("root","__unstableBase")?.home,[]),[t,n]=x.useState(null),o=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]);return a.jsx(xs,{label:m("Parent"),ref:n,children:a.jsx(so,{popoverProps:o,className:"editor-post-parent__panel-dropdown",contentClassName:"editor-post-parent__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:r,onToggle:s})=>a.jsx(OUt,{isOpen:r,onClick:s}),renderContent:({onClose:r})=>a.jsxs("div",{className:"editor-post-parent",children:[a.jsx(Qs,{title:m("Parent"),onClose:r}),a.jsxs("div",{children:[cr(xe(m('Child pages inherit characteristics from their parent, such as URL structure. For instance, if "Pricing" is a child of "Services", its URL would be %s<wbr />/services<wbr />/pricing.'),Ph(e).replace(/([/.])/g,"<wbr />$1")),{wbr:a.jsx("wbr",{})}),a.jsx("p",{children:cr(m("They also show up as sub-items in the default navigation menu. <a>Learn more.</a>"),{a:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#page-attributes")})})})]}),a.jsx(zUt,{})]})})})}const AUt="page-attributes";function vUt(){const{isEnabled:e,postType:t}=G(n=>{const{getEditedPostAttribute:o,isEditorPanelEnabled:r}=n(_e),{getPostType:s}=n(Me);return{isEnabled:r(AUt),postType:s(o("type"))}},[]);return!e||!t?null:a.jsx(yUt,{})}function xUt(){return a.jsx(ZOe,{children:a.jsx(vUt,{})})}const _T=m("Custom Template");function eye({onClose:e}){const{defaultBlockTemplate:t,onNavigateToEntityRecord:n}=G(d=>{const{getEditorSettings:p,getCurrentTemplateId:f}=d(_e);return{defaultBlockTemplate:p().defaultBlockTemplate,onNavigateToEntityRecord:p().onNavigateToEntityRecord,getTemplateId:f}}),{createTemplate:o}=St(Oe(_e)),[r,s]=x.useState(""),[i,c]=x.useState(!1),l=()=>{s(""),e()},u=async d=>{if(d.preventDefault(),i)return;c(!0);const p=t??Ks([Ee("core/group",{tagName:"header",layout:{inherit:!0}},[Ee("core/site-title"),Ee("core/site-tagline")]),Ee("core/separator"),Ee("core/group",{tagName:"main"},[Ee("core/group",{layout:{inherit:!0}},[Ee("core/post-title")]),Ee("core/post-content",{layout:{inherit:!0}})])]),f=await o({slug:_5(r||_T),content:p,title:r||_T});c(!1),n({postId:f.id,postType:"wp_template"}),l()};return a.jsx(Zo,{title:m("Create custom template"),onRequestClose:l,focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{className:"editor-post-template__create-form",onSubmit:u,children:a.jsxs(dt,{spacing:"3",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Name"),value:r,onChange:s,placeholder:_T,disabled:i,help:m('Describe the template, e.g. "Post with sidebar". A custom template can be manually applied to any post or page.')}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:l,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",isBusy:i,"aria-disabled":i,children:m("Create")})]})]})})})}function uk(){return G(e=>{const{getCurrentPostId:t,getCurrentPostType:n}=e(_e);return{postId:t(),postType:n()}},[])}function dk(){const{postType:e,postId:t}=uk();return G(n=>{const{canUser:o,getEntityRecord:r,getEntityRecords:s}=n(Me),i=o("read",{kind:"root",name:"site"})?r("root","site"):void 0,c=s("postType","wp_template",{per_page:-1}),l=+t===i?.page_for_posts,u=e==="page"&&+t===i?.page_on_front&&c?.some(({slug:d})=>d==="front-page");return!l&&!u},[t,e])}function tye(e){return G(t=>t(Me).getEntityRecords("postType","wp_template",{per_page:-1,post_type:e}),[e])}function nye(e){const t=oye(),n=dk(),o=tye(e);return x.useMemo(()=>n&&o?.filter(r=>r.is_custom&&r.slug!==t&&!!r.content.raw),[o,t,n])}function oye(){const{postType:e,postId:t}=uk(),n=tye(e),o=G(r=>r(Me).getEditedEntityRecord("postType",e,t)?.template,[e,t]);if(o)return n?.find(r=>r.slug===o)?.slug}const wUt={className:"editor-post-template__dropdown",placement:"bottom-start"};function _Ut({isOpen:e,onClick:t}){const n=G(o=>{const r=o(_e).getEditedPostAttribute("template"),{supportsTemplateMode:s,availableTemplates:i}=o(_e).getEditorSettings();if(!s&&i[r])return i[r];const c=o(Me).canUser("create",{kind:"postType",name:"wp_template"})&&o(_e).getCurrentTemplateId();return c?.title||c?.slug||i?.[r]},[]);return a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary","aria-expanded":e,"aria-label":m("Template options"),onClick:t,children:n??m("Default template")})}function kUt({onClose:e}){var t,n;const o=dk(),{availableTemplates:r,fetchedTemplates:s,selectedTemplateSlug:i,canCreate:c,canEdit:l,currentTemplateId:u,onNavigateToEntityRecord:d,getEditorSettings:p}=G(_=>{const{canUser:v,getEntityRecords:M}=_(Me),y=_(_e).getEditorSettings(),k=v("create",{kind:"postType",name:"wp_template"}),S=_(_e).getCurrentTemplateId();return{availableTemplates:y.availableTemplates,fetchedTemplates:k?M("postType","wp_template",{post_type:_(_e).getCurrentPostType(),per_page:-1}):void 0,selectedTemplateSlug:_(_e).getEditedPostAttribute("template"),canCreate:o&&k&&y.supportsTemplateMode,canEdit:o&&k&&y.supportsTemplateMode&&!!S,currentTemplateId:S,onNavigateToEntityRecord:y.onNavigateToEntityRecord,getEditorSettings:_(_e).getEditorSettings}},[o]),f=x.useMemo(()=>Object.entries({...r,...Object.fromEntries((s??[]).map(({slug:_,title:v})=>[_,v.rendered]))}).map(([_,v])=>({value:_,label:v})),[r,s]),b=(t=f.find(_=>_.value===i))!==null&&t!==void 0?t:f.find(_=>!_.value),{editPost:h}=Oe(_e),{createSuccessNotice:g}=Oe(mt),[z,A]=x.useState(!1);return a.jsxs("div",{className:"editor-post-template__classic-theme-dropdown",children:[a.jsx(Qs,{title:m("Template"),help:m("Templates define the way content is displayed when viewing your site."),actions:c?[{icon:bZe,label:m("Add template"),onClick:()=>A(!0)}]:[],onClose:e}),o?a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,hideLabelFromVision:!0,label:m("Template"),value:(n=b?.value)!==null&&n!==void 0?n:"",options:f,onChange:_=>h({template:_||""})}):a.jsx(L1,{status:"warning",isDismissible:!1,children:m("The posts page template cannot be changed.")}),l&&d&&a.jsx("p",{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>{d({postId:u,postType:"wp_template"}),e(),g(m("Editing template. Changes made here affect all posts and pages that use the template."),{type:"snackbar",actions:[{label:m("Go back"),onClick:()=>p().onNavigateToPreviousEntityRecord()}]})},children:m("Edit template")})}),z&&a.jsx(eye,{onClose:()=>A(!1)})]})}function SUt(){return a.jsx(so,{popoverProps:wUt,focusOnMount:!0,renderToggle:({isOpen:e,onToggle:t})=>a.jsx(_Ut,{isOpen:e,onClick:t}),renderContent:({onClose:e})=>a.jsx(kUt,{onClose:e})})}const{PreferenceBaseOption:CUt}=St(cp);function c2(e){const{toggleEditorPanelEnabled:t}=Oe(_e),{isChecked:n,isRemoved:o}=G(r=>{const{isEditorPanelEnabled:s,isEditorPanelRemoved:i}=r(_e);return{isChecked:s(e.panelName),isRemoved:i(e.panelName)}},[e.panelName]);return o?null:a.jsx(CUt,{isChecked:n,onChange:()=>t(e.panelName),...e})}const{Fill:qUt,Slot:RUt}=Qn("EnablePluginDocumentSettingPanelOption"),$I=({label:e,panelName:t})=>a.jsx(qUt,{children:a.jsx(c2,{label:e,panelName:t})});$I.Slot=RUt;const{Fill:TUt,Slot:EUt}=Qn("PluginDocumentSettingPanel"),rye=({name:e,className:t,title:n,icon:o,children:r})=>{const{name:s}=PO(),i=`${s}/${e}`,{opened:c,isEnabled:l}=G(d=>{const{isEditorPanelOpened:p,isEditorPanelEnabled:f}=d(_e);return{opened:p(i),isEnabled:f(i)}},[i]),{toggleEditorPanelOpened:u}=Oe(_e);return e===void 0&&globalThis.SCRIPT_DEBUG===!0&&zn("PluginDocumentSettingPanel requires a name property."),a.jsxs(a.Fragment,{children:[a.jsx($I,{label:n,panelName:i}),a.jsx(TUt,{children:l&&a.jsx(Qt,{className:t,title:n,icon:o,opened:c,onToggle:()=>u(i),children:r})})]})};rye.Slot=EUt;const{Fill:WUt,Slot:NUt}=Qn("PluginPostPublishPanel"),sye=({children:e,className:t,title:n,initialOpen:o=!1,icon:r})=>{const{icon:s}=PO();return a.jsx(WUt,{children:a.jsx(Qt,{className:t,initialOpen:o||!n,title:n,icon:r??s,children:e})})};sye.Slot=NUt;const{Fill:BUt,Slot:LUt}=Qn("PluginPostStatusInfo"),iye=({children:e,className:t})=>a.jsx(BUt,{children:a.jsx(d_,{className:t,children:e})});iye.Slot=LUt;const{Fill:PUt,Slot:jUt}=Qn("PluginPrePublishPanel"),aye=({children:e,className:t,title:n,initialOpen:o=!1,icon:r})=>{const{icon:s}=PO();return a.jsx(PUt,{children:a.jsx(Qt,{className:t,initialOpen:o||!n,title:n,icon:r??s,children:e})})};aye.Slot=jUt;function cN({className:e,...t}){return a.jsx(lk,{panelClassName:e,className:"editor-sidebar",scope:"core",...t})}function IUt({onClick:e}){const[t,n]=x.useState(!1),{postType:o,postId:r}=uk(),s=nye(o),{editEntityRecord:i}=Oe(Me);if(!s?.length)return null;const c=async l=>{i("postType",o,r,{template:l.name},{undoIgnore:!0}),n(!1),e()};return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>n(!0),children:m("Change template")}),t&&a.jsx(Zo,{title:m("Choose a template"),onRequestClose:()=>n(!1),overlayClassName:"editor-post-template__swap-template-modal",isFullScreen:!0,children:a.jsx("div",{className:"editor-post-template__swap-template-modal-content",children:a.jsx(DUt,{postType:o,onSelect:c})})})]})}function DUt({postType:e,onSelect:t}){const n=nye(e),o=x.useMemo(()=>n.map(r=>({name:r.slug,blocks:Ko(r.content.raw),title:Lt(r.title.rendered),id:r.id})),[n]);return a.jsx(qa,{label:m("Templates"),blockPatterns:o,onClickPattern:t})}function FUt({onClick:e}){const t=oye(),n=dk(),{postType:o,postId:r}=uk(),{editEntityRecord:s}=Oe(Me);return!t||!n?null:a.jsx(Ct,{onClick:()=>{s("postType",o,r,{template:""},{undoIgnore:!0}),e()},children:m("Use default template")})}function $Ut({onClick:e}){const{canCreateTemplates:t}=G(s=>{const{canUser:i}=s(Me);return{canCreateTemplates:i("create",{kind:"postType",name:"wp_template"})}},[]),[n,o]=x.useState(!1),r=dk();return!t||!r?null:a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>{o(!0)},children:m("Create new template")}),n&&a.jsx(eye,{onClose:()=>{o(!1),e()}})]})}const VUt={className:"editor-post-template__dropdown",placement:"bottom-start"};function HUt({id:e}){const{isTemplateHidden:t,onNavigateToEntityRecord:n,getEditorSettings:o,hasGoBack:r}=G(b=>{const{getRenderingMode:h,getEditorSettings:g}=St(b(_e)),z=g();return{isTemplateHidden:h()==="post-only",onNavigateToEntityRecord:z.onNavigateToEntityRecord,getEditorSettings:g,hasGoBack:z.hasOwnProperty("onNavigateToPreviousEntityRecord")}},[]),{get:s}=G(ht),{editedRecord:i,hasResolved:c}=Z5("postType","wp_template",e),{createSuccessNotice:l}=Oe(mt),{setRenderingMode:u}=Oe(_e),d=G(b=>!!b(Me).canUser("create",{kind:"postType",name:"wp_template"}),[]);if(!c)return null;const p=r?[{label:m("Go back"),onClick:()=>o().onNavigateToPreviousEntityRecord()}]:void 0,f=()=>{s("core/edit-site","welcomeGuideTemplate")||l(m("Editing template. Changes made here affect all posts and pages that use the template."),{type:"snackbar",actions:p})};return a.jsx(c0,{popoverProps:VUt,focusOnMount:!0,toggleProps:{size:"compact",variant:"tertiary",tooltipPosition:"middle left"},label:m("Template options"),text:Lt(i.title),icon:null,children:({onClose:b})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{children:[d&&a.jsx(Ct,{onClick:()=>{n({postId:i.id,postType:"wp_template"}),b(),f()},children:m("Edit template")}),a.jsx(IUt,{onClick:b}),a.jsx(FUt,{onClick:b}),d&&a.jsx($Ut,{onClick:b})]}),a.jsx(Cn,{children:a.jsx(Ct,{icon:t?void 0:M0,isSelected:!t,role:"menuitemcheckbox",onClick:()=>{u(t?"template-locked":"post-only")},children:m("Show template")})})]})})}function UUt(){const{templateId:e,isBlockTheme:t}=G(r=>{const{getCurrentTemplateId:s,getEditorSettings:i}=r(_e);return{templateId:s(),isBlockTheme:i().__unstableIsBlockBasedTheme}},[]),n=G(r=>{var s;const i=r(_e).getCurrentPostType();if(!r(Me).getPostType(i)?.viewable)return!1;const l=r(_e).getEditorSettings();return!!l.availableTemplates&&Object.keys(l.availableTemplates).length>0?!0:l.supportsTemplateMode&&(s=r(Me).canUser("create",{kind:"postType",name:"wp_template"}))!==null&&s!==void 0?s:!1},[]),o=G(r=>{var s;return(s=r(Me).canUser("read",{kind:"postType",name:"wp_template"}))!==null&&s!==void 0?s:!1},[]);return(!t||!o)&&n?a.jsx(xs,{label:m("Template"),children:a.jsx(SUt,{})}):t&&e?a.jsx(xs,{label:m("Template"),children:a.jsx(HUt,{id:e})}):null}const cye={_fields:"id,name",context:"view"},VI={who:"authors",per_page:100,...cye};function HI(e){const{authorId:t,authors:n,postAuthor:o}=G(s=>{const{getUser:i,getUsers:c}=s(Me),{getEditedPostAttribute:l}=s(_e),u=l("author"),d={...VI};return e&&(d.search=e,d.search_columns=["name"]),{authorId:u,authors:c(d),postAuthor:i(u,cye)}},[e]),r=x.useMemo(()=>{const s=(n??[]).map(l=>({value:l.id,label:Lt(l.name)})),i=s.findIndex(({value:l})=>o?.id===l);let c=[];return i<0&&o?c=[{value:o.id,label:Lt(o.name)}]:i<0&&!o&&(c=[{value:0,label:m("(No author)")}]),[...c,...s]},[n,o]);return{authorId:t,authorOptions:r,postAuthor:o}}function XUt(){const[e,t]=x.useState(),{editPost:n}=Oe(_e),{authorId:o,authorOptions:r}=HI(e),s=c=>{c&&n({author:c})},i=c=>{t(c)};return a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Author"),options:r,value:o,onFilterValueChange:F1(i,300),onChange:s,allowReset:!1,hideLabelFromVision:!0})}function GUt(){const{editPost:e}=Oe(_e),{authorId:t,authorOptions:n}=HI(),o=r=>{const s=Number(r);e({author:s})};return a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"post-author-selector",label:m("Author"),options:n,onChange:o,value:t,hideLabelFromVision:!0})}const KUt=25;function YUt(){return G(t=>t(Me).getUsers(VI)?.length>=KUt,[])?a.jsx(XUt,{}):a.jsx(GUt,{})}function ZUt({children:e}){const{hasAssignAuthorAction:t,hasAuthors:n}=G(o=>{var r;const s=o(_e).getCurrentPost(),i=o(Me).getUsers(VI);return{hasAssignAuthorAction:(r=s._links?.["wp:action-assign-author"])!==null&&r!==void 0?r:!1,hasAuthors:i?.length>=1}},[]);return!t||!n?null:a.jsx(Sc,{supportKeys:"author",children:e})}function QUt({isOpen:e,onClick:t}){const{postAuthor:n}=HI(),o=Lt(n?.name)||m("(No author)");return a.jsx(Ce,{size:"compact",className:"editor-post-author__panel-toggle",variant:"tertiary","aria-expanded":e,"aria-label":xe(m("Change author: %s"),o),onClick:t,children:o})}function JUt(){const[e,t]=x.useState(null),n=x.useMemo(()=>({anchor:e,placement:"left-start",offset:36,shift:!0}),[e]);return a.jsx(ZUt,{children:a.jsx(xs,{label:m("Author"),ref:t,children:a.jsx(so,{popoverProps:n,contentClassName:"editor-post-author__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:o,onToggle:r})=>a.jsx(QUt,{isOpen:o,onClick:r}),renderContent:({onClose:o})=>a.jsxs("div",{className:"editor-post-author",children:[a.jsx(Qs,{title:m("Author"),onClose:o}),a.jsx(YUt,{onClose:o})]})})})})}const eXt=[{label:We("Open",'Adjective: e.g. "Comments are open"'),value:"open",description:m("Visitors can add new comments and replies.")},{label:m("Closed"),value:"closed",description:[m("Visitors cannot add new comments or replies."),m("Existing comments remain visible.")].join(" ")}];function tXt(){const e=G(o=>{var r;return(r=o(_e).getEditedPostAttribute("comment_status"))!==null&&r!==void 0?r:"open"},[]),{editPost:t}=Oe(_e),n=o=>t({comment_status:o});return a.jsx("form",{children:a.jsx(dt,{spacing:4,children:a.jsx(sb,{className:"editor-change-status__options",hideLabelFromVision:!0,label:m("Comment status"),options:eXt,onChange:n,selected:e})})})}function nXt(){const e=G(o=>{var r;return(r=o(_e).getEditedPostAttribute("ping_status"))!==null&&r!==void 0?r:"open"},[]),{editPost:t}=Oe(_e),n=()=>t({ping_status:e==="open"?"closed":"open"});return a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Enable pingbacks & trackbacks"),checked:e==="open",onChange:n,help:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/trackbacks-and-pingbacks/"),children:m("Learn more about pingbacks & trackbacks")})})}const oXt="discussion-panel";function rXt({onClose:e}){return a.jsxs("div",{className:"editor-post-discussion",children:[a.jsx(Qs,{title:m("Discussion"),onClose:e}),a.jsxs(dt,{spacing:4,children:[a.jsx(Sc,{supportKeys:"comments",children:a.jsx(tXt,{})}),a.jsx(Sc,{supportKeys:"trackbacks",children:a.jsx(nXt,{})})]})]})}function sXt({isOpen:e,onClick:t}){const{commentStatus:n,pingStatus:o,commentsSupported:r,trackbacksSupported:s}=G(c=>{var l,u;const{getEditedPostAttribute:d}=c(_e),{getPostType:p}=c(Me),f=p(d("type"));return{commentStatus:(l=d("comment_status"))!==null&&l!==void 0?l:"open",pingStatus:(u=d("ping_status"))!==null&&u!==void 0?u:"open",commentsSupported:!!f.supports.comments,trackbacksSupported:!!f.supports.trackbacks}},[]);let i;return n==="open"?o==="open"?i=We("Open",'Adjective: e.g. "Comments are open"'):i=s?m("Comments only"):We("Open",'Adjective: e.g. "Comments are open"'):o==="open"?i=m(r?"Pings only":"Pings enabled"):i=m("Closed"),a.jsx(Ce,{size:"compact",className:"editor-post-discussion__panel-toggle",variant:"tertiary","aria-label":m("Change discussion options"),"aria-expanded":e,onClick:t,children:i})}function iXt(){const{isEnabled:e}=G(r=>{const{isEditorPanelEnabled:s}=r(_e);return{isEnabled:s(oXt)}},[]),[t,n]=x.useState(null),o=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]);return e?a.jsx(Sc,{supportKeys:["comments","trackbacks"],children:a.jsx(xs,{label:m("Discussion"),ref:n,children:a.jsx(so,{popoverProps:o,className:"editor-post-discussion__panel-dropdown",contentClassName:"editor-post-discussion__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:r,onToggle:s})=>a.jsx(sXt,{isOpen:r,onClick:s}),renderContent:({onClose:r})=>a.jsx(rXt,{onClose:r})})})}):null}function aXt({hideLabelFromVision:e=!1,updateOnBlur:t=!1}){const{excerpt:n,shouldUseDescriptionLabel:o,usedAttribute:r}=G(d=>{const{getCurrentPostType:p,getEditedPostAttribute:f}=d(_e),b=p(),h=["wp_template","wp_template_part"].includes(b)?"description":"excerpt";return{excerpt:f(h),shouldUseDescriptionLabel:["wp_template","wp_template_part","wp_block"].includes(b),usedAttribute:h}},[]),{editPost:s}=Oe(_e),[i,c]=x.useState(Lt(n)),l=d=>{s({[r]:d})},u=m(o?"Write a description (optional)":"Write an excerpt (optional)");return a.jsx("div",{className:"editor-post-excerpt",children:a.jsx(Pi,{__nextHasNoMarginBottom:!0,label:u,hideLabelFromVision:e,className:"editor-post-excerpt__textarea",onChange:t?c:l,onBlur:t?()=>l(i):void 0,value:t?i:n,help:o?m("Write a description"):a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#excerpt"),children:m("Learn more about manual excerpts")})})})}function lye({children:e}){return a.jsx(Sc,{supportKeys:"excerpt",children:e})}const{Fill:cXt,Slot:lXt}=Qn("PluginPostExcerpt"),UI=({children:e,className:t})=>a.jsx(cXt,{children:a.jsx(d_,{className:t,children:e})});UI.Slot=lXt;const uXt="post-excerpt";function dXt(){return a.jsx(lye,{children:a.jsx(pXt,{})})}function pXt(){const{shouldRender:e,excerpt:t,shouldBeUsedAsDescription:n,allowEditing:o}=G(p=>{const{getCurrentPostType:f,getCurrentPostId:b,getEditedPostAttribute:h,isEditorPanelEnabled:g}=p(_e),z=f(),A=["wp_template","wp_template_part"].includes(z),_=z==="wp_block",v=A||_,M=A?"description":"excerpt",y=A&&p(Me).getEntityRecord("postType",z,b()),k=g(uXt)||v;return{excerpt:h(M),shouldRender:k,shouldBeUsedAsDescription:v,allowEditing:k&&(!v||_||y&&y.source===Z3e.custom&&!y.has_theme_file&&y.is_custom)}},[]),[r,s]=x.useState(null),i=m(n?"Description":"Excerpt"),c=x.useMemo(()=>({anchor:r,"aria-label":i,headerTitle:i,placement:"left-start",offset:36,shift:!0}),[r,i]);if(!e)return!1;const l=!!t&&a.jsx(Sn,{align:"left",numberOfLines:4,truncate:o,children:Lt(t)});if(!o)return l;const u=m(n?"Add a description…":"Add an excerpt…"),d=m(n?"Edit description":"Edit excerpt");return a.jsxs(dt,{children:[l,a.jsx(so,{className:"editor-post-excerpt__dropdown",contentClassName:"editor-post-excerpt__dropdown__content",popoverProps:c,focusOnMount:!0,ref:s,renderToggle:({onToggle:p})=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:p,variant:"link",children:l?d:u}),renderContent:({onClose:p})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:i,onClose:p}),a.jsx(dt,{spacing:4,children:a.jsx(UI.Slot,{children:f=>a.jsxs(a.Fragment,{children:[a.jsx(aXt,{hideLabelFromVision:!0,updateOnBlur:!0}),f]})})})]})})]})}function fXt({children:e,supportKeys:t}){const{postType:n,themeSupports:o}=G(s=>({postType:s(_e).getEditedPostAttribute("type"),themeSupports:s(Me).getThemeSupports()}),[]);return(Array.isArray(t)?t:[t]).some(s=>{var i;const c=(i=o?.[s])!==null&&i!==void 0?i:!1;return s==="post-thumbnails"&&Array.isArray(c)?c.includes(n):c})?e:null}function o5({children:e}){return a.jsx(fXt,{supportKeys:"post-thumbnails",children:a.jsx(Sc,{supportKeys:"thumbnail",children:e})})}const dne=["image"],bXt=m("Featured image"),hXt=m("Add a featured image"),mXt=a.jsx("p",{children:m("To edit the featured image, you need permission to upload media.")});function gXt(e,t){var n,o;if(!e)return{};const r=gr("editor.PostFeaturedImage.imageSize","large",e.id,t);if(r in((n=e?.media_details?.sizes)!==null&&n!==void 0?n:{}))return{mediaWidth:e.media_details.sizes[r].width,mediaHeight:e.media_details.sizes[r].height,mediaSourceUrl:e.media_details.sizes[r].source_url};const s=gr("editor.PostFeaturedImage.imageSize","thumbnail",e.id,t);return s in((o=e?.media_details?.sizes)!==null&&o!==void 0?o:{})?{mediaWidth:e.media_details.sizes[s].width,mediaHeight:e.media_details.sizes[s].height,mediaSourceUrl:e.media_details.sizes[s].source_url}:{mediaWidth:e.media_details.width,mediaHeight:e.media_details.height,mediaSourceUrl:e.source_url}}function MXt({currentPostId:e,featuredImageId:t,onUpdateImage:n,onRemoveImage:o,media:r,postType:s,noticeUI:i,noticeOperations:c,isRequestingFeaturedImageMedia:l}){const u=x.useRef(!1),[d,p]=x.useState(!1),{getSettings:f}=G(Q),{mediaSourceUrl:b}=gXt(r,e);function h(_){f().mediaUpload({allowedTypes:dne,filesList:_,onFileChange([v]){if(Nr(v?.url)){p(!0);return}v&&n(v),p(!1)},onError(v){c.removeAllNotices(),c.createErrorNotice(v)}})}function g(_){return _.alt_text?xe(m("Current image: %s"),_.alt_text):xe(m("The current image has no alternative text. The file name is: %s"),_.media_details.sizes?.full?.file||_.slug)}function z(_){u.current&&_&&(_.focus(),u.current=!1)}const A=!l&&!!t&&!r;return a.jsxs(o5,{children:[i,a.jsxs("div",{className:"editor-post-featured-image",children:[r&&a.jsx("div",{id:`editor-post-featured-image-${t}-describedby`,className:"hidden",children:g(r)}),a.jsx(Hd,{fallback:mXt,children:a.jsx(ab,{title:s?.labels?.featured_image||bXt,onSelect:n,unstableFeaturedImageFlow:!0,allowedTypes:dne,modalClass:"editor-post-featured-image__media-modal",render:({open:_})=>a.jsxs("div",{className:"editor-post-featured-image__container",children:[A?a.jsx(L1,{status:"warning",isDismissible:!1,children:m("Could not retrieve the featured image data.")}):a.jsxs(Ce,{__next40pxDefaultSize:!0,ref:z,className:t?"editor-post-featured-image__preview":"editor-post-featured-image__toggle",onClick:_,"aria-label":t?m("Edit or replace the featured image"):null,"aria-describedby":t?`editor-post-featured-image-${t}-describedby`:null,"aria-haspopup":"dialog",disabled:d,accessibleWhenDisabled:!0,children:[!!t&&r&&a.jsx("img",{className:"editor-post-featured-image__preview-image",src:b,alt:g(r)}),(d||l)&&a.jsx(Xn,{}),!t&&!d&&(s?.labels?.set_featured_image||hXt)]}),!!t&&a.jsxs(Ot,{className:oe("editor-post-featured-image__actions",{"editor-post-featured-image__actions-missing-image":A,"editor-post-featured-image__actions-is-requesting-image":l}),children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"editor-post-featured-image__action",onClick:_,"aria-haspopup":"dialog",variant:A?"secondary":void 0,children:m("Replace")}),a.jsx(Ce,{__next40pxDefaultSize:!0,className:"editor-post-featured-image__action",onClick:()=>{o(),u.current=!0},variant:A?"secondary":void 0,isDestructive:A,children:m("Remove")})]}),a.jsx(Tz,{onFilesDrop:h})]}),value:t})})]})]})}const zXt=Xl(e=>{const{getMedia:t,getPostType:n,hasFinishedResolution:o}=e(Me),{getCurrentPostId:r,getEditedPostAttribute:s}=e(_e),i=s("featured_media");return{media:i?t(i,{context:"view"}):null,currentPostId:r(),postType:n(s("type")),featuredImageId:i,isRequestingFeaturedImageMedia:!!i&&!o("getMedia",[i,{context:"view"}])}}),OXt=Ff((e,{noticeOperations:t},{select:n})=>{const{editPost:o}=e(_e);return{onUpdateImage(r){o({featured_media:r.id})},onDropImage(r){n(Q).getSettings().mediaUpload({allowedTypes:["image"],filesList:r,onFileChange([s]){o({featured_media:s.id})},onError(s){t.removeAllNotices(),t.createErrorNotice(s)}})},onRemoveImage(){o({featured_media:0})}}}),pne=Co(smt,zXt,OXt,ap("editor.PostFeaturedImage"))(MXt),kT="featured-image";function yXt({withPanelBody:e=!0}){var t;const{postType:n,isEnabled:o,isOpened:r}=G(i=>{const{getEditedPostAttribute:c,isEditorPanelEnabled:l,isEditorPanelOpened:u}=i(_e),{getPostType:d}=i(Me);return{postType:d(c("type")),isEnabled:l(kT),isOpened:u(kT)}},[]),{toggleEditorPanelOpened:s}=Oe(_e);return o?e?a.jsx(o5,{children:a.jsx(Qt,{title:(t=n?.labels?.featured_image)!==null&&t!==void 0?t:m("Featured image"),opened:r,onToggle:()=>s(kT),children:a.jsx(pne,{})})}):a.jsx(o5,{children:a.jsx(pne,{})}):null}function uye({children:e}){return G(n=>n(_e).getEditorSettings().disablePostFormats,[])?null:a.jsx(Sc,{supportKeys:"post-formats",children:e})}const XI=[{id:"aside",caption:m("Aside")},{id:"audio",caption:m("Audio")},{id:"chat",caption:m("Chat")},{id:"gallery",caption:m("Gallery")},{id:"image",caption:m("Image")},{id:"link",caption:m("Link")},{id:"quote",caption:m("Quote")},{id:"standard",caption:m("Standard")},{id:"status",caption:m("Status")},{id:"video",caption:m("Video")}].sort((e,t)=>{const n=e.caption.toUpperCase(),o=t.caption.toUpperCase();return n<o?-1:n>o?1:0});function dye(){const t=`post-format-selector-${vt(dye)}`,{postFormat:n,suggestedFormat:o,supportedFormats:r}=G(u=>{const{getEditedPostAttribute:d,getSuggestedPostFormat:p}=u(_e),f=d("format"),b=u(Me).getThemeSupports();return{postFormat:f??"standard",suggestedFormat:p(),supportedFormats:b.formats}},[]),s=XI.filter(u=>r?.includes(u.id)||n===u.id),i=s.find(u=>u.id===o),{editPost:c}=Oe(_e),l=u=>c({format:u});return a.jsx(uye,{children:a.jsxs("div",{className:"editor-post-format",children:[a.jsx(sb,{className:"editor-post-format__options",label:m("Post Format"),selected:n,onChange:u=>l(u),id:t,options:s.map(u=>({label:u.caption,value:u.id})),hideLabelFromVision:!0}),i&&i.id!==n&&a.jsx("p",{className:"editor-post-format__suggestion",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>l(i.id),children:xe(m("Apply suggested format: %s"),i.caption)})})]})})}function AXt({children:e}){const{lastRevisionId:t,revisionsCount:n}=G(o=>{const{getCurrentPostLastRevisionId:r,getCurrentPostRevisionsCount:s}=o(_e);return{lastRevisionId:r(),revisionsCount:s()}},[]);return!t||n<2?null:a.jsx(Sc,{supportKeys:"revisions",children:e})}function vXt(){return G(e=>{const{getCurrentPostLastRevisionId:t,getCurrentPostRevisionsCount:n}=e(_e);return{lastRevisionId:t(),revisionsCount:n()}},[])}function xXt(){const{lastRevisionId:e,revisionsCount:t}=vXt();return a.jsx(AXt,{children:a.jsx(xs,{label:m("Revisions"),children:a.jsx(Ce,{href:tn("revision.php",{revision:e}),className:"editor-private-post-last-revision__button",text:t,variant:"tertiary",size:"compact"})})})}function wXt(e){let t=M1(a.jsxs("div",{className:"editor-post-preview-button__interstitial-message",children:[a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 96 96",children:[a.jsx(he,{className:"outer",d:"M48 12c19.9 0 36 16.1 36 36S67.9 84 48 84 12 67.9 12 48s16.1-36 36-36",fill:"none"}),a.jsx(he,{className:"inner",d:"M69.5 46.4c0-3.9-1.4-6.7-2.6-8.8-1.6-2.6-3.1-4.9-3.1-7.5 0-2.9 2.2-5.7 5.4-5.7h.4C63.9 19.2 56.4 16 48 16c-11.2 0-21 5.7-26.7 14.4h2.1c3.3 0 8.5-.4 8.5-.4 1.7-.1 1.9 2.4.2 2.6 0 0-1.7.2-3.7.3L40 67.5l7-20.9L42 33c-1.7-.1-3.3-.3-3.3-.3-1.7-.1-1.5-2.7.2-2.6 0 0 5.3.4 8.4.4 3.3 0 8.5-.4 8.5-.4 1.7-.1 1.9 2.4.2 2.6 0 0-1.7.2-3.7.3l11.5 34.3 3.3-10.4c1.6-4.5 2.4-7.8 2.4-10.5zM16.1 48c0 12.6 7.3 23.5 18 28.7L18.8 35c-1.7 4-2.7 8.4-2.7 13zm32.5 2.8L39 78.6c2.9.8 5.9 1.3 9 1.3 3.7 0 7.3-.6 10.6-1.8-.1-.1-.2-.3-.2-.4l-9.8-26.9zM76.2 36c0 3.2-.6 6.9-2.4 11.4L64 75.6c9.5-5.5 15.9-15.8 15.9-27.6 0-5.5-1.4-10.8-3.9-15.3.1 1 .2 2.1.2 3.3z",fill:"none"})]}),a.jsx("p",{children:m("Generating preview…")})]}));t+=` + }`}if(EO({css:g}),!!g)return{className:`wp-container-content-${b}`}}function ePt({clientId:e,style:t,setAttributes:n}){const o=x_()||{},{type:r="default",allowSizingOnChildren:s=!1,isManualPlacement:i}=o;return r!=="grid"?null:a.jsx(tPt,{clientId:e,style:t,setAttributes:n,allowSizingOnChildren:s,isManualPlacement:i,parentLayout:o})}function tPt({clientId:e,style:t,setAttributes:n,allowSizingOnChildren:o,isManualPlacement:r,parentLayout:s}){const{rootClientId:i,isVisible:c}=G(p=>{const{getBlockRootClientId:f,getBlockEditingMode:b,getTemplateLock:h}=p(Q),g=f(e);return h(g)||b(g)!=="default"?{rootClientId:g,isVisible:!1}:{rootClientId:g,isVisible:!0}},[e]),[l,u]=x.useState();if(!c)return null;function d(p){n({style:{...t,layout:{...t?.layout,...p}}})}return a.jsxs(a.Fragment,{children:[a.jsx(F3e,{clientId:i,contentRef:u,parentLayout:s}),o&&a.jsx(XLt,{clientId:e,bounds:l,onChange:d,parentLayout:s}),r&&window.__experimentalEnableGridInteractivity&&a.jsx(KLt,{layout:t?.layout,parentLayout:s,onChange:d,gridClientId:i,blockClientId:e})]})}const H3e={useBlockProps:JLt,edit:ePt,attributeKeys:["style"],hasSupport(){return!0}};function nPt({clientId:e}){const{templateLock:t,isLockedByParent:n,isEditingAsBlocks:o}=G(l=>{const{getContentLockingParent:u,getTemplateLock:d,getTemporarilyEditingAsBlocks:p}=ct(l(Q));return{templateLock:d(e),isLockedByParent:!!u(e),isEditingAsBlocks:p()===e}},[e]),{stopEditingAsBlocks:r}=ct(Oe(Q)),s=!n&&t==="contentOnly",i=x.useCallback(()=>{r(e)},[e,r]);return!s&&!o?null:o&&!s&&a.jsx(bt,{group:"other",children:a.jsx(Vt,{onClick:i,children:m("Done")})})}const oPt={edit:nPt,hasSupport(){return!0}},Ete="metadata";function rPt(e){return e?.attributes?.[Ete]?.type||(e.attributes={...e.attributes,[Ete]:{type:"object"}}),e}Bn("blocks.registerBlockType","core/metadata/addMetaAttribute",rPt);const sPt={};function iPt({name:e,clientId:t,metadata:{ignoredHookedBlocks:n=[]}={}}){const o=G(b=>b(kt).getBlockTypes(),[]),r=x.useMemo(()=>o?.filter(({name:b,blockHooks:h})=>h&&e in h||n.includes(b)),[o,e,n]),s=G(b=>{const{getBlocks:h,getBlockRootClientId:g,getGlobalBlockCount:z}=b(Q),A=g(t),_=r.reduce((v,M)=>{if(z(M.name)===0)return v;const y=M?.blockHooks?.[e];let k;switch(y){case"before":case"after":k=h(A);break;case"first_child":case"last_child":k=h(t);break;case void 0:k=[...h(A),...h(t)];break}const S=k?.find(C=>C.name===M.name);return S?{...v,[M.name]:S.clientId}:v},{});return Object.values(_).length>0?_:sPt},[r,e,t]),{getBlockIndex:i,getBlockCount:c,getBlockRootClientId:l}=G(Q),{insertBlock:u,removeBlock:d}=Oe(Q);if(!r.length)return null;const p=r.reduce((b,h)=>{const[g]=h.name.split("/");return b[g]||(b[g]=[]),b[g].push(h),b},{}),f=(b,h)=>{const g=i(t),z=c(t),A=l(t);switch(h){case"before":case"after":u(b,h==="after"?g+1:g,A,!1);break;case"first_child":case"last_child":u(b,h==="first_child"?0:z,t,!1);break;case void 0:u(b,g+1,A,!1);break}};return a.jsx(et,{children:a.jsxs(Qt,{className:"block-editor-hooks__block-hooks",title:m("Plugins"),initialOpen:!0,children:[a.jsx("p",{className:"block-editor-hooks__block-hooks-helptext",children:m("Manage the inclusion of blocks added automatically by plugins.")}),Object.keys(p).map(b=>a.jsxs(x.Fragment,{children:[a.jsx("h3",{children:b}),p[b].map(h=>{const g=h.name in s;return a.jsx(lt,{__nextHasNoMarginBottom:!0,checked:g,label:h.title,onChange:()=>{if(!g){const z=h.blockHooks[e];f(Ee(h.name),z);return}d(s[h.name],!1)}},h.title)})]},b))]})})}const aPt={edit:iPt,attributeKeys:["metadata"],hasSupport(){return!0}},{Menu:cl}=ct(tr),Wte={},cPt=()=>Yn("medium","<")?{}:{popoverProps:{placement:"left-start",offset:259}};function lPt({fieldsList:e,attribute:t,binding:n}){const{clientId:o}=j0(),r=aie(),{updateBlockBindings:s}=h_(),i=n?.args?.key,c=G(l=>{const{name:u}=l(Q).getBlock(o),d=on(u).attributes?.[t]?.type;return d==="rich-text"?"string":d},[o,t]);return a.jsx(a.Fragment,{children:Object.entries(e).map(([l,u],d)=>a.jsxs(x.Fragment,{children:[a.jsxs(cl.Group,{children:[Object.keys(e).length>1&&a.jsx(cl.GroupLabel,{children:r[l].label}),Object.entries(u).filter(([,p])=>p?.type===c).map(([p,f])=>a.jsxs(cl.RadioItem,{onChange:()=>s({[t]:{source:l,args:{key:p}}}),name:t+"-binding",value:p,checked:p===i,children:[a.jsx(cl.ItemLabel,{children:f?.label}),a.jsx(cl.ItemHelpText,{children:f?.value})]},p))]}),d!==Object.keys(e).length-1&&a.jsx(cl.Separator,{})]},l))})}function U3e({attribute:e,binding:t,fieldsList:n}){const{source:o,args:r}=t||{},s=vl(o),i=!s;return a.jsxs(dt,{className:"block-editor-bindings__item",spacing:0,children:[a.jsx(Sn,{truncate:!0,children:e}),!!t&&a.jsx(Sn,{truncate:!0,variant:!i&&"muted",isDestructive:i,children:i?m("Invalid source"):n?.[o]?.[r?.key]?.label||s?.label||o})]})}function uPt({bindings:e,fieldsList:t}){return a.jsx(a.Fragment,{children:Object.entries(e).map(([n,o])=>a.jsx(oO,{children:a.jsx(U3e,{attribute:n,binding:o,fieldsList:t})},n))})}function dPt({attributes:e,bindings:t,fieldsList:n}){const{updateBlockBindings:o}=h_(),r=Yn("medium","<");return a.jsx(a.Fragment,{children:e.map(s=>{const i=t[s];return a.jsx(tt,{hasValue:()=>!!i,label:s,onDeselect:()=>{o({[s]:void 0})},children:a.jsxs(cl,{placement:r?"bottom-start":"left-start",children:[a.jsx(cl.TriggerButton,{render:a.jsx(oO,{}),children:a.jsx(U3e,{attribute:s,binding:i,fieldsList:n})}),a.jsx(cl.Popover,{gutter:r?8:36,children:a.jsx(lPt,{fieldsList:n,attribute:s,binding:i})})]})},s)})})}const pPt=({name:e,metadata:t})=>{const n=x.useContext(Cf),{removeAllBlockBindings:o}=h_(),r=cyt(e),s=cPt(),i={},{fieldsList:c,canUpdateBlockBindings:l}=G(f=>{if(!r||r.length===0)return Wte;const b=aie();return Object.entries(b).forEach(([h,{getFieldsList:g,usesContext:z}])=>{if(g){const A={};if(z?.length)for(const v of z)A[v]=n[v];const _=g({select:f,context:A});Object.keys(_||{}).length&&(i[h]={..._})}}),{fieldsList:Object.values(i).length>0?i:Wte,canUpdateBlockBindings:f(Q).getSettings().canUpdateBlockBindings}},[n,r]);if(!r||r.length===0)return null;const{bindings:u}=t||{},d={...u};Object.keys(d).forEach(f=>{(!AW(e,f)||d[f].source==="core/pattern-overrides")&&delete d[f]});const p=!l||!Object.keys(c).length;return p&&Object.keys(d).length===0?null:a.jsx(et,{group:"bindings",children:a.jsxs(En,{label:m("Attributes"),resetAll:()=>{o()},dropdownMenuProps:s,className:"block-editor-bindings__panel",children:[a.jsx(tb,{isBordered:!0,isSeparated:!0,children:p?a.jsx(uPt,{bindings:d,fieldsList:c}):a.jsx(dPt,{attributes:r,bindings:d,fieldsList:c})}),a.jsx(Sn,{as:"div",variant:"muted",children:a.jsx("p",{children:m("Attributes connected to custom fields or other dynamic data.")})})]})})},fPt={edit:pPt,attributeKeys:["metadata"],hasSupport(){return!0}};function bPt(e){return e.__experimentalLabel||Et(e,"renaming",!0)&&(e.__experimentalLabel=(n,{context:o})=>{const{metadata:r}=n;if(o==="list-view"&&r?.name)return r.name}),e}Bn("blocks.registerBlockType","core/metadata/addLabelCallback",bPt);function hPt(e){YLt(e)}function mPt({clientId:e,layout:t}){const n=G(o=>{const{isBlockSelected:r,isDraggingBlocks:s,getTemplateLock:i,getBlockEditingMode:c}=o(Q);return!(!s()&&!r(e)||i(e)||c(e)!=="default")},[e]);return a.jsxs(a.Fragment,{children:[a.jsx(hPt,{clientId:e}),n&&a.jsx(F3e,{clientId:e,parentLayout:t})]})}const gPt=Or(e=>t=>t.attributes.layout?.type!=="grid"?a.jsx(e,{...t},"edit"):a.jsxs(a.Fragment,{children:[a.jsx(mPt,{clientId:t.clientId,layout:t.attributes.layout}),a.jsx(e,{...t},"edit")]}),"addGridVisualizerToBlockEdit");Bn("editor.BlockEdit","core/editor/grid-visualizer",gPt);function X1(e){const t=e.style?.border||{};return{className:nze(e)||void 0,style:Rm({border:t})}}function au(e){const{colors:t}=ub(),n=X1(e),{borderColor:o}=e;if(o){const r=a2({colors:t,namedColor:o});n.style.borderColor=r.color}return n}function db(e){const t=e.style?.shadow||"";return{style:Rm({shadow:t})}}function P1(e){const{backgroundColor:t,textColor:n,gradient:o,style:r}=e,s=Pt("background-color",t),i=Pt("color",n),c=R1(o),l=c||r?.color?.gradient,u=oe(i,c,{[s]:!l&&!!s,"has-text-color":n||r?.color?.text,"has-background":t||r?.color?.background||o||r?.color?.gradient,"has-link-color":r?.elements?.link?.color}),d=r?.color||{},p=Rm({color:d});return{className:u||void 0,style:p}}function BO(e){const{backgroundColor:t,textColor:n,gradient:o}=e,[r,s,i,c,l,u]=Un("color.palette.custom","color.palette.theme","color.palette.default","color.gradients.custom","color.gradients.theme","color.gradients.default"),d=x.useMemo(()=>[...r||[],...s||[],...i||[]],[r,s,i]),p=x.useMemo(()=>[...c||[],...l||[],...u||[]],[c,l,u]),f=P1(e);if(t){const b=Sf(d,t);f.style.backgroundColor=b.color}if(o&&(f.style.background=Ahe(p,o)),n){const b=Sf(d,n);f.style.color=b.color}return f}function Tm(e){const{style:t}=e,n=t?.spacing||{};return{style:Rm({spacing:n})}}const{kebabCase:MPt}=ct(tr);function kI(e,t){let n=e?.style?.typography||{};n={...n,fontSize:D_({size:e?.style?.typography?.fontSize},t)};const o=Rm({typography:n}),r=e?.fontFamily?`has-${MPt(e.fontFamily)}-font-family`:"",s=e?.style?.typography?.textAlign?`has-text-align-${e?.style?.typography?.textAlign}`:"";return{className:oe(r,s,Wx(e?.fontSize)),style:o}}sBt([zI,AI,v3e,x3e,xI,I3e,jge,LLt,oPt,aPt,fPt,H3e].filter(Boolean));cBt([zI,AI,YRt,xI,S3e,hLt,I3e,q3e,T3e,oze,jge,EEt,H3e]);lBt([zI,AI,v3e,wBt,x3e,oze,S3e,xI,q3e,T3e]);const Nte={button:"wp-element-button",caption:"wp-element-caption"},z0=e=>Nte[e]?Nte[e]:"";function SI(e,t,n){if(e==null||e===!1)return;if(Array.isArray(e))return pT(e,t,n);switch(typeof e){case"string":case"number":return}const{type:o,props:r}=e;switch(o){case x.StrictMode:case x.Fragment:return pT(r.children,t,n);case i0:return;case Ht.Content:return X3e(t,n);case hI:t.push(r.value);return}switch(typeof o){case"string":return typeof r.children<"u"?pT(r.children,t,n):void 0;case"function":const s=o.prototype&&typeof o.prototype.render=="function"?new o(r).render():o(r);return SI(s,t,n)}}function pT(e,...t){e=Array.isArray(e)?e:[e];for(let n=0;n<e.length;n++)SI(e[n],...t)}function X3e(e,t){for(let n=0;n<t.length;n++){const{name:o,attributes:r,innerBlocks:s}=t[n],i=Sie(o,r,a.jsx(Ht.Content,{}));SI(i,e,s)}}function zPt(e=[]){Z4.skipFilters=!0;const t=[];return X3e(t,e),Z4.skipFilters=!1,t.map(n=>n instanceof Xo?n:Xo.fromHTMLString(n))}function OPt({clientId:e,resizableBoxProps:t,...n}){return a.jsx(wm,{clientId:e,__unstablePopoverSlot:"block-toolbar",...n,children:a.jsx(Ca,{...t})})}function yPt({blockTypes:e,value:t,onItemChange:n}){return a.jsx("ul",{className:"block-editor-block-manager__checklist",children:e.map(o=>a.jsxs("li",{className:"block-editor-block-manager__checklist-item",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:o.title,checked:t.includes(o.name),onChange:(...r)=>n(o,...r)}),a.jsx(Zn,{icon:o.icon})]},o.name))})}function tN({title:e,blockTypes:t,selectedBlockTypes:n,onChange:o}){const r=vt(tN),s=x.useCallback((p,f)=>{o(f?[...n,p]:n.filter(({name:b})=>b!==p.name))},[n,o]),i=x.useCallback(p=>{o(p?[...n,...t.filter(f=>!n.find(({name:b})=>b===f.name))]:n.filter(f=>!t.find(({name:b})=>b===f.name)))},[t,n,o]);if(!t.length)return null;const c=t.map(({name:p})=>p).filter(p=>(n??[]).some(f=>f.name===p)),l="block-editor-block-manager__category-title-"+r,u=c.length===t.length,d=!u&&c.length>0;return a.jsxs("div",{role:"group","aria-labelledby":l,className:"block-editor-block-manager__category",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,checked:u,onChange:i,className:"block-editor-block-manager__category-title",indeterminate:d,label:a.jsx("span",{id:l,children:e})}),a.jsx(yPt,{blockTypes:t,value:c,onItemChange:s})]})}function APt({blockTypes:e,selectedBlockTypes:t,onChange:n}){const o=C1(Yt,500),[r,s]=x.useState(""),{categories:i,isMatchingSearchTerm:c}=G(p=>({categories:p(kt).getCategories(),isMatchingSearchTerm:p(kt).isMatchingSearchTerm}),[]);function l(){n(e)}const u=e.filter(p=>!r||c(p,r)),d=e.length-t.length;return x.useEffect(()=>{if(!r)return;const p=u.length,f=xe(Dn("%d result found.","%d results found.",p),p);o(f)},[u?.length,r,o]),a.jsxs("div",{className:"block-editor-block-manager__content",children:[!!d&&a.jsxs("div",{className:"block-editor-block-manager__disabled-blocks-count",children:[xe(Dn("%d block is hidden.","%d blocks are hidden.",d),d),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:l,children:m("Reset")})]}),a.jsx(su,{__nextHasNoMarginBottom:!0,label:m("Search for a block"),placeholder:m("Search for a block"),value:r,onChange:p=>s(p),className:"block-editor-block-manager__search"}),a.jsxs("div",{tabIndex:"0",role:"region","aria-label":m("Available block types"),className:"block-editor-block-manager__results",children:[u.length===0&&a.jsx("p",{className:"block-editor-block-manager__no-results",children:m("No blocks found.")}),i.map(p=>a.jsx(tN,{title:p.title,blockTypes:u.filter(f=>f.category===p.slug),selectedBlockTypes:t,onChange:n},p.slug)),a.jsx(tN,{title:m("Uncategorized"),blockTypes:u.filter(({category:p})=>!p),selectedBlockTypes:t,onChange:n})]})]})}function vPt({rules:e}){const{clientIds:t,selectPrevious:n,message:o}=G(l=>ct(l(Q)).getRemovalPromptData()),{clearBlockRemovalPrompt:r,setBlockRemovalRules:s,privateRemoveBlocks:i}=ct(Oe(Q));if(x.useEffect(()=>(s(e),()=>{s()}),[e,s]),!o)return;const c=()=>{i(t,n,!0),r()};return a.jsxs(Zo,{title:m("Be careful!"),onRequestClose:r,size:"medium",children:[a.jsx("p",{children:o}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{variant:"tertiary",onClick:r,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",onClick:c,__next40pxDefaultSize:!0,children:m("Delete")})]})]})}const Bte=[{value:"fill",label:We("Fill","Scale option for dimensions control"),help:m("Fill the space by stretching the content.")},{value:"contain",label:We("Contain","Scale option for dimensions control"),help:m("Fit the content to the space without clipping.")},{value:"cover",label:We("Cover","Scale option for dimensions control"),help:m("Fill the space by clipping what doesn't fit.")},{value:"none",label:We("None","Scale option for dimensions control"),help:m("Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding.")},{value:"scale-down",label:We("Scale down","Scale option for dimensions control"),help:m("Scale down the content to fit the space if it is too big. Content that is too small will have additional padding.")}];function xPt({panelId:e,value:t,onChange:n,options:o=Bte,defaultValue:r=Bte[0].value,isShownByDefault:s=!0}){const i=t??"fill",c=x.useMemo(()=>o.reduce((l,u)=>(l[u.value]=u.help,l),{}),[o]);return a.jsx(tt,{label:m("Scale"),isShownByDefault:s,hasValue:()=>i!==r,onDeselect:()=>n(r),panelId:e,children:a.jsx(Do,{__nextHasNoMarginBottom:!0,label:m("Scale"),isBlock:!0,help:c[i],value:i,onChange:n,size:"__unstable-large",children:o.map(l=>a.jsx(Kn,{...l},l.value))})})}const Lte=He(tt,{target:"ef8pe3d0"})({name:"957xgf",styles:"grid-column:span 1"});function wPt({panelId:e,value:t={},onChange:n=()=>{},units:o,isShownByDefault:r=!0}){var s,i;const c=t.width==="auto"?"":(s=t.width)!==null&&s!==void 0?s:"",l=t.height==="auto"?"":(i=t.height)!==null&&i!==void 0?i:"",u=d=>p=>{const f={...t};p?f[d]=p:delete f[d],n(f)};return a.jsxs(a.Fragment,{children:[a.jsx(Lte,{label:m("Width"),isShownByDefault:r,hasValue:()=>c!=="",onDeselect:u("width"),panelId:e,children:a.jsx(Ro,{label:m("Width"),placeholder:m("Auto"),labelPosition:"top",units:o,min:0,value:c,onChange:u("width"),size:"__unstable-large"})}),a.jsx(Lte,{label:m("Height"),isShownByDefault:r,hasValue:()=>l!=="",onDeselect:u("height"),panelId:e,children:a.jsx(Ro,{label:m("Height"),placeholder:m("Auto"),labelPosition:"top",units:o,min:0,value:l,onChange:u("height"),size:"__unstable-large"})})]})}function _Pt({panelId:e,value:t={},onChange:n=()=>{},aspectRatioOptions:o,defaultAspectRatio:r="auto",scaleOptions:s,defaultScale:i="fill",unitsOptions:c,tools:l=["aspectRatio","widthHeight","scale"]}){const u=t.width===void 0||t.width==="auto"?null:t.width,d=t.height===void 0||t.height==="auto"?null:t.height,p=t.aspectRatio===void 0||t.aspectRatio==="auto"?null:t.aspectRatio,f=t.scale===void 0||t.scale==="fill"?null:t.scale,[b,h]=x.useState(f),[g,z]=x.useState(p),A=u&&d?"custom":g,_=p||u&&d;return a.jsxs(a.Fragment,{children:[l.includes("aspectRatio")&&a.jsx(PMe,{panelId:e,options:o,defaultValue:r,value:A,onChange:v=>{const M={...t};v=v==="auto"?null:v,z(v),v?M.aspectRatio=v:delete M.aspectRatio,v?b?M.scale=b:(M.scale=i,h(i)):delete M.scale,v!=="custom"&&u&&d&&delete M.height,n(M)}}),l.includes("widthHeight")&&a.jsx(wPt,{panelId:e,units:c,value:{width:u,height:d},onChange:({width:v,height:M})=>{const y={...t};v=v==="auto"?null:v,M=M==="auto"?null:M,v?y.width=v:delete y.width,M?y.height=M:delete y.height,v&&M?delete y.aspectRatio:g&&(y.aspectRatio=g),!g&&!!v!=!!M?delete y.scale:b?y.scale=b:(y.scale=i,h(i)),n(y)}}),l.includes("scale")&&_&&a.jsx(xPt,{panelId:e,options:s,defaultValue:i,value:b,onChange:v=>{const M={...t};v=v==="fill"?null:v,h(v),v?M.scale=v:delete M.scale,n(M)}})]})}const Pte=[{label:We("Thumbnail","Image size option for resolution control"),value:"thumbnail"},{label:We("Medium","Image size option for resolution control"),value:"medium"},{label:We("Large","Image size option for resolution control"),value:"large"},{label:We("Full Size","Image size option for resolution control"),value:"full"}];function kPt({panelId:e,value:t,onChange:n,options:o=Pte,defaultValue:r=Pte[0].value,isShownByDefault:s=!0,resetAllFilter:i}){const c=t??r;return a.jsx(tt,{hasValue:()=>c!==r,label:m("Resolution"),onDeselect:()=>n(r),isShownByDefault:s,panelId:e,resetAllFilter:i,children:a.jsx(Pn,{__nextHasNoMarginBottom:!0,label:m("Resolution"),value:c,options:o,onChange:n,help:m("Select the size of the source image."),size:"__unstable-large"})})}const jn={};ogt(jn,{...kEt,ExperimentalBlockCanvas:b8t,ExperimentalBlockEditorProvider:E_,getDuotoneFilter:rI,getRichTextValues:zPt,PrivateQuickInserter:xge,extractWords:u7,getNormalizedSearchTerms:g_,normalizeString:Nx,PrivateListView:jze,ResizableBoxPopover:OPt,useHasBlockToolbar:cMe,cleanEmptyObject:Ii,BlockQuickNavigation:M3e,LayoutStyle:mvt,BlockManager:APt,BlockRemovalWarningModal:vPt,useLayoutClasses:D3e,useLayoutStyles:NLt,DimensionsTool:_Pt,ResolutionTool:kPt,TabbedSidebar:yge,TextAlignmentControl:xMe,usesContextKey:r3e,useFlashEditableBlocks:hme,useZoomOut:Age,globalStylesDataKey:dO,globalStylesLinksDataKey:k2e,selectBlockPatternsKey:Wz,requiresWrapperOnCopy:Cme,PrivateRichText:tk,PrivateInserterLibrary:O3e,reusableBlocksSelectKey:S2e,PrivateBlockPopover:G7,PrivatePublishDateTimePicker:y3e,useSpacingSizes:LMe,useBlockDisplayTitle:Fd,__unstableBlockStyleVariationOverridesWithConfig:qEt,setBackgroundStyleDefaults:iI,sectionRootClientIdKey:Nz,CommentIconSlotFill:oMe,CommentIconToolbarSlotFill:aMe});let fT;const bT=new WeakMap;function SPt(e){if(fT||(fT=eh(jn)),!bT.has(e)){const t=fT.getRichTextValues([e]);bT.set(e,t)}return bT.get(e)}const hT=new WeakMap;function CPt(e){if(!hT.has(e)){const t=[];for(const n of SPt(e))n&&n.replacements.forEach(({type:o,attributes:r})=>{o==="core/footnote"&&t.push(r["data-fn"])});hT.set(e,t)}return hT.get(e)}function qPt(e){return e.flatMap(CPt)}let mT={};function jte(e,t){const n={blocks:e};if(!t||t.footnotes===void 0)return n;const o=qPt(e),r=t.footnotes?JSON.parse(t.footnotes):[];if(r.map(d=>d.id).join("")===o.join(""))return n;const i=o.map(d=>r.find(p=>p.id===d)||mT[d]||{id:d,content:""});function c(d){if(!d||Array.isArray(d)||typeof d!="object")return d;d={...d};for(const p in d){const f=d[p];if(Array.isArray(f)){d[p]=f.map(c);continue}if(typeof f!="string"&&!(f instanceof Xo))continue;const b=typeof f=="string"?Xo.fromHTMLString(f):new Xo(f);let h=!1;b.replacements.forEach(g=>{if(g.type==="core/footnote"){const z=g.attributes["data-fn"],A=o.indexOf(z),_=eo({html:g.innerHTML});_.text=String(A+1),_.formats=Array.from({length:_.text.length},()=>_.formats[0]),_.replacements=Array.from({length:_.text.length},()=>_.replacements[0]),g.innerHTML=T0({value:_}),h=!0}}),h&&(d[p]=typeof f=="string"?b.toHTMLString():b)}return d}function l(d){return d.map(p=>({...p,attributes:c(p.attributes),innerBlocks:l(p.innerBlocks)}))}const u=l(e);return mT={...mT,...r.reduce((d,p)=>(o.includes(p.id)||(d[p.id]=p),d),{})},{meta:{...t,footnotes:JSON.stringify(i)},blocks:u}}const RPt=[],Ite=new WeakMap;function ya(e,t,{id:n}={}){const o=KB(e,t),r=n??o,{getEntityRecord:s,getEntityRecordEdits:i}=G(No),{content:c,editedBlocks:l,meta:u}=G(g=>{if(!r)return{};const{getEditedEntityRecord:z}=g(No),A=z(e,t,r);return{editedBlocks:A.blocks,content:A.content,meta:A.meta}},[e,t,r]),{__unstableCreateUndoLevel:d,editEntityRecord:p}=Oe(No),f=x.useMemo(()=>{if(!r)return;if(l)return l;if(!c||typeof c!="string")return RPt;const g=i(e,t,r),A=!g||!Object.keys(g).length?s(e,t,r):g;let _=Ite.get(A);return _||(_=Ko(c),Ite.set(A,_)),_},[e,t,r,l,c,s,i]),b=x.useCallback((g,z)=>{if(f===g)return d(e,t,r);const{selection:_,...v}=z,M={selection:_,content:({blocks:y=[]})=>Jd(y),...jte(g,u)};p(e,t,r,M,{isCached:!1,...v})},[e,t,r,f,u,d,p]),h=x.useCallback((g,z)=>{const{selection:A,..._}=z,v=jte(g,u),M={selection:A,...v};p(e,t,r,M,{isCached:!0,..._})},[e,t,r,u,p]);return[f,h,b]}function Ao(e,t,n,o){const r=KB(e,t),s=o??r,{value:i,fullValue:c}=G(d=>{const{getEntityRecord:p,getEditedEntityRecord:f}=d(No),b=p(e,t,s),h=f(e,t,s);return b&&h?{value:h[n],fullValue:b[n]}:{}},[e,t,s,n]),{editEntityRecord:l}=Oe(No),u=x.useCallback(d=>{l(e,t,s,{[n]:d})},[l,e,t,s,n]);return[i,u,c]}const G3e={};PTe(G3e,{useEntityRecordsWithPermissions:ZBe,RECEIVE_INTERMEDIATE_RESULTS:F0e});const CI=[...r1e,...s1e.filter(e=>!!e.name)],TPt=CI.reduce((e,t)=>{const{kind:n,name:o,plural:r}=t;return e[J2(n,o)]=(s,i,c)=>Zd(s,n,o,i,c),r&&(e[J2(n,r,"get")]=(s,i)=>nB(s,n,o,i)),e},{}),EPt=CI.reduce((e,t)=>{const{kind:n,name:o,plural:r}=t;if(e[J2(n,o)]=(s,i)=>Zse(n,o,s,i),r){const s=J2(n,r,"get");e[s]=(...i)=>X4(n,o,...i),e[s].shouldInvalidate=i=>X4.shouldInvalidate(i,n,o)}return e},{}),WPt=CI.reduce((e,t)=>{const{kind:n,name:o}=t;return e[J2(n,o,"save")]=(r,s)=>Kse(n,o,r,s),e[J2(n,o,"delete")]=(r,s,i)=>Gse(n,o,r,s,i),e},{}),NPt=()=>({reducer:eTe,actions:{...UBe,...uBe,...WPt,...HBe()},selectors:{...XBe,...LTe,...TPt},resolvers:{...PBe,...EPt}}),Me=x1(No,NPt());eh(Me).registerPrivateSelectors(XTe);eh(Me).registerPrivateActions(pBe);Us(Me);const BPt={...hW,richEditingEnabled:!0,codeEditingEnabled:!0,fontLibraryEnabled:!0,enableCustomFields:void 0,defaultRenderingMode:"post-only"};function LPt(e={},t){switch(t.type){case"SET_IS_READY":return{...e,[t.kind]:{...e[t.kind],[t.name]:!0}}}return e}function PPt(e={},t){var n;switch(t.type){case"REGISTER_ENTITY_ACTION":return{...e,[t.kind]:{...e[t.kind],[t.name]:[...((n=e[t.kind]?.[t.name])!==null&&n!==void 0?n:[]).filter(r=>r.id!==t.config.id),t.config]}};case"UNREGISTER_ENTITY_ACTION":{var o;return{...e,[t.kind]:{...e[t.kind],[t.name]:((o=e[t.kind]?.[t.name])!==null&&o!==void 0?o:[]).filter(r=>r.id!==t.actionId)}}}}return e}function jPt(e={},t){var n,o;switch(t.type){case"REGISTER_ENTITY_FIELD":return{...e,[t.kind]:{...e[t.kind],[t.name]:[...((n=e[t.kind]?.[t.name])!==null&&n!==void 0?n:[]).filter(r=>r.id!==t.config.id),t.config]}};case"UNREGISTER_ENTITY_FIELD":return{...e,[t.kind]:{...e[t.kind],[t.name]:((o=e[t.kind]?.[t.name])!==null&&o!==void 0?o:[]).filter(r=>r.id!==t.fieldId)}}}return e}const IPt=J0({actions:PPt,fields:jPt,isReady:LPt});function qI(e){return e&&typeof e=="object"&&"raw"in e?e.raw:e}function DPt(e=null,t){switch(t.type){case"SET_EDITED_POST":return t.postId}return e}function FPt(e=null,t){switch(t.type){case"SET_CURRENT_TEMPLATE_ID":return t.id}return e}function $Pt(e=null,t){switch(t.type){case"SET_EDITED_POST":return t.postType}return e}function VPt(e={isValid:!0},t){switch(t.type){case"SET_TEMPLATE_VALIDITY":return{...e,isValid:t.isValid}}return e}function HPt(e={},t){switch(t.type){case"REQUEST_POST_UPDATE_START":case"REQUEST_POST_UPDATE_FINISH":return{pending:t.type==="REQUEST_POST_UPDATE_START",options:t.options||{}}}return e}function UPt(e={},t){switch(t.type){case"REQUEST_POST_DELETE_START":case"REQUEST_POST_DELETE_FINISH":return{pending:t.type==="REQUEST_POST_DELETE_START"}}return e}function XPt(e={isLocked:!1},t){switch(t.type){case"UPDATE_POST_LOCK":return t.lock}return e}function GPt(e={},t){switch(t.type){case"LOCK_POST_SAVING":return{...e,[t.lockName]:!0};case"UNLOCK_POST_SAVING":{const{[t.lockName]:n,...o}=e;return o}}return e}function KPt(e={},t){switch(t.type){case"LOCK_POST_AUTOSAVING":return{...e,[t.lockName]:!0};case"UNLOCK_POST_AUTOSAVING":{const{[t.lockName]:n,...o}=e;return o}}return e}function YPt(e=BPt,t){switch(t.type){case"UPDATE_EDITOR_SETTINGS":return{...e,...t.settings}}return e}function ZPt(e="post-only",t){switch(t.type){case"SET_RENDERING_MODE":return t.mode}return e}function QPt(e="Desktop",t){switch(t.type){case"SET_DEVICE_TYPE":return t.deviceType}return e}function JPt(e=[],t){switch(t.type){case"REMOVE_PANEL":if(!e.includes(t.panelName))return[...e,t.panelName]}return e}function ejt(e=!1,t){switch(t.type){case"SET_IS_LIST_VIEW_OPENED":return t.isOpen?!1:e;case"SET_IS_INSERTER_OPENED":return t.value}return e}function tjt(e=!1,t){switch(t.type){case"SET_IS_INSERTER_OPENED":return t.value?!1:e;case"SET_IS_LIST_VIEW_OPENED":return t.isOpen}return e}function njt(e={current:null}){return e}function ojt(e={current:null}){return e}function rjt(e=!1,t){switch(t.type){case"OPEN_PUBLISH_SIDEBAR":return!0;case"CLOSE_PUBLISH_SIDEBAR":return!1;case"TOGGLE_PUBLISH_SIDEBAR":return!e}return e}const sjt=J0({postId:DPt,postType:$Pt,templateId:FPt,saving:HPt,deleting:UPt,postLock:XPt,template:VPt,postSavingLock:GPt,editorSettings:YPt,postAutosavingLock:KPt,renderingMode:ZPt,deviceType:QPt,removedPanels:JPt,blockInserterPanel:ejt,inserterSidebarToggleRef:ojt,listViewPanel:tjt,listViewToggleRef:njt,publishSidebarActive:rjt,dataviews:IPt}),ijt=new Set(["meta"]),ajt="core/editor",K3e=/%(?:postname|pagename)%/,Y3e=60*1e3,cjt=["title","excerpt","content"],L0="wp_template",Di="wp_template_part",$l="wp_block",Wf="wp_navigation",Z3e={custom:"custom",theme:"theme",plugin:"plugin"},Q3e=["wp_template","wp_template_part"],ljt=[...Q3e,"wp_block","wp_navigation"];function RI(e){return e==="header"?KP:e==="footer"?GP:e==="sidebar"?YP:Qf}const{lock:ujt,unlock:St}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/editor"),Dte={},LO=e=>{var t;if(!e)return Dte;const{templateTypes:n,templateAreas:o,template:r}=e,{description:s,slug:i,title:c,area:l}=r,{title:u,description:d}=(t=Object.values(n).find(g=>g.slug===i))!==null&&t!==void 0?t:Dte,p=typeof c=="string"?c:c?.rendered,f=typeof s=="string"?s:s?.raw,h=o?.map(g=>({...g,icon:RI(g.icon)}))?.find(g=>l===g.area)?.icon||nu;return{title:p&&p!==i?p:u||i,description:f||d,icon:h}},e3={},djt=At(e=>()=>e(Me).hasUndo()),pjt=At(e=>()=>e(Me).hasRedo());function J3e(e){return G1(e).status==="auto-draft"}function eOe(e){return"content"in t3(e)}const TI=At(e=>t=>{const n=Fi(t),o=$i(t);return e(Me).hasEditsForEntityRecord("postType",n,o)}),fjt=At(e=>t=>{const n=e(Me).__experimentalGetDirtyEntityRecords(),{type:o,id:r}=G1(t);return n.some(s=>s.kind!=="postType"||s.name!==o||s.key!==r)});function bjt(e){return!TI(e)&&J3e(e)}const G1=At(e=>t=>{const n=$i(t),o=Fi(t),r=e(Me).getRawEntityRecord("postType",o,n);return r||e3});function Fi(e){return e.postType}function $i(e){return e.postId}function hjt(e){return e.templateId}function mjt(e){var t;return(t=G1(e)._links?.["version-history"]?.[0]?.count)!==null&&t!==void 0?t:0}function gjt(e){var t;return(t=G1(e)._links?.["predecessor-version"]?.[0]?.id)!==null&&t!==void 0?t:null}const t3=At(e=>t=>{const n=Fi(t),o=$i(t);return e(Me).getEntityRecordEdits("postType",n,o)||e3});function jM(e,t){switch(t){case"type":return Fi(e);case"id":return $i(e);default:const n=G1(e);if(!n.hasOwnProperty(t))break;return qI(n[t])}}const Mjt=It((e,t)=>{const n=t3(e);return n.hasOwnProperty(t)?{...jM(e,t),...n[t]}:jM(e,t)},(e,t)=>[jM(e,t),t3(e)[t]]);function mr(e,t){switch(t){case"content":return n3(e)}const n=t3(e);return n.hasOwnProperty(t)?ijt.has(t)?Mjt(e,t):n[t]:jM(e,t)}const tOe=At(e=>(t,n)=>{if(!cjt.includes(n)&&n!=="preview_link")return;const o=Fi(t);if(o==="wp_template")return!1;const r=$i(t),s=e(Me).getCurrentUser()?.id,i=e(Me).getAutosave(o,r,s);if(i)return qI(i[n])});function zjt(e){return mr(e,"status")==="private"?"private":mr(e,"password")?"password":"public"}function Ojt(e){return G1(e).status==="pending"}function EI(e,t){const n=t||G1(e);return["publish","private"].indexOf(n.status)!==-1||n.status==="future"&&!Vbe(new Date(Number(_f(n.date))-Y3e))}function yjt(e){return G1(e).status==="future"&&!EI(e)}function Ajt(e){const t=G1(e);return TI(e)||["publish","private","future"].indexOf(t.status)===-1}function nOe(e){return Em(e)?!1:!!mr(e,"title")||!!mr(e,"excerpt")||!oOe(e)||f0.OS==="native"}const oOe=At(e=>t=>{const n=$i(t),o=Fi(t),r=e(Me).getEditedEntityRecord("postType",o,n);if(typeof r.content!="function")return!r.content;const s=mr(t,"blocks");if(s.length===0)return!0;if(s.length>1)return!1;const i=s[0].name;return i!==Mr()&&i!==yd()?!1:!n3(t)}),vjt=At(e=>t=>{if(!nOe(t)||iOe(t))return!1;const n=Fi(t);if(n==="wp_template")return!1;const o=$i(t),r=e(Me).hasFetchedAutosaves(n,o),s=e(Me).getCurrentUser()?.id,i=e(Me).getAutosave(n,o,s);return r?!i||eOe(t)?!0:["title","excerpt","meta"].some(c=>qI(i[c])!==mr(t,c)):!1});function xjt(e){const t=mr(e,"date"),n=new Date(Number(_f(t))-Y3e);return Vbe(n)}function wjt(e){const t=mr(e,"date"),n=mr(e,"modified"),o=G1(e).status;return o==="draft"||o==="auto-draft"||o==="pending"?t===n||t===null:!1}function _jt(e){return!!e.deleting.pending}function Em(e){return!!e.saving.pending}const kjt=At(e=>t=>{const n=e(Me).__experimentalGetEntitiesBeingSaved(),{type:o,id:r}=G1(t);return n.some(s=>s.kind!=="postType"||s.name!==o||s.key!==r)}),Sjt=At(e=>t=>{const n=Fi(t),o=$i(t);return!e(Me).getLastEntitySaveError("postType",n,o)}),Cjt=At(e=>t=>{const n=Fi(t),o=$i(t);return!!e(Me).getLastEntitySaveError("postType",n,o)});function qjt(e){return Em(e)&&!!e.saving.options?.isAutosave}function Rjt(e){return Em(e)&&!!e.saving.options?.isPreview}function Tjt(e){if(e.saving.pending||Em(e))return;let t=tOe(e,"preview_link");(!t||G1(e).status==="draft")&&(t=mr(e,"link"),t&&(t=tn(t,{preview:!0})));const n=mr(e,"featured_media");return t&&n?tn(t,{_thumbnail_id:n}):t}const Ejt=At(e=>()=>{const t=e(Q).getBlocks();if(t.length>2)return null;let n;if(t.length===1&&(n=t[0].name,n==="core/embed")){const o=t[0].attributes?.providerNameSlug;["youtube","vimeo"].includes(o)?n="core/video":["spotify","soundcloud"].includes(o)&&(n="core/audio")}switch(t.length===2&&t[1].name==="core/paragraph"&&(n=t[0].name),n){case"core/image":return"image";case"core/quote":case"core/pullquote":return"quote";case"core/gallery":return"gallery";case"core/video":return"video";case"core/audio":return"audio";default:return null}}),n3=At(e=>t=>{const n=$i(t),o=Fi(t),r=e(Me).getEditedEntityRecord("postType",o,n);if(r){if(typeof r.content=="function")return r.content(r);if(r.blocks)return Jd(r.blocks);if(r.content)return r.content}return""});function Wjt(e){return Em(e)&&!EI(e)&&mr(e,"status")==="publish"}function rOe(e){const t=mr(e,"permalink_template");return K3e.test(t)}function Njt(e){const t=sOe(e);if(!t)return null;const{prefix:n,postName:o,suffix:r}=t;return rOe(e)?n+o+r:n}function Bjt(e){return mr(e,"slug")||w5(mr(e,"title"))||$i(e)}function sOe(e){const t=mr(e,"permalink_template");if(!t)return null;const n=mr(e,"slug")||mr(e,"generated_slug"),[o,r]=t.split(K3e);return{prefix:o,postName:n,suffix:r}}function Ljt(e){return e.postLock.isLocked}function Pjt(e){return Object.keys(e.postSavingLock).length>0}function iOe(e){return Object.keys(e.postAutosavingLock).length>0}function jjt(e){return e.postLock.isTakeover}function Ijt(e){return e.postLock.user}function Djt(e){return e.postLock.activePostLock}function Fjt(e){return!!G1(e)._links?.hasOwnProperty("wp:action-unfiltered-html")}const $jt=At(e=>()=>!!e(ht).get("core","isPublishSidebarEnabled")),Vjt=It(e=>mr(e,"blocks")||Ko(n3(e)),e=>[mr(e,"blocks"),n3(e)]);function aOe(e,t){return e.removedPanels.includes(t)}const Hjt=At(e=>(t,n)=>{const o=e(ht).get("core","inactivePanels");return!aOe(t,n)&&!o?.includes(n)}),Ujt=At(e=>(t,n)=>!!e(ht).get("core","openPanels")?.includes(n));function Xjt(e){return Ke("select('core/editor').getEditorSelectionStart",{since:"5.8",alternative:"select('core/editor').getEditorSelection"}),mr(e,"selection")?.selectionStart}function Gjt(e){return Ke("select('core/editor').getEditorSelectionStart",{since:"5.8",alternative:"select('core/editor').getEditorSelection"}),mr(e,"selection")?.selectionEnd}function Kjt(e){return mr(e,"selection")}function Yjt(e){return!!e.postId}function Zjt(e){return e.editorSettings}function nN(e){return e.renderingMode}const Qjt=At(e=>t=>St(e(Q)).isZoomOut()?"Desktop":t.deviceType);function Jjt(e){return e.listViewPanel}function e7t(e){return!!e.blockInserterPanel}const t7t=At(e=>()=>{var t;return(t=e(ht).get("core","editorMode"))!==null&&t!==void 0?t:"visual"});function n7t(){return Ke("select('core/editor').getStateBeforeOptimisticTransaction",{since:"5.7",hint:"No state history is kept on this store anymore"}),null}function o7t(){return Ke("select('core/editor').inSomeHistory",{since:"5.7",hint:"No state history is kept on this store anymore"}),!1}function pn(e){return At(t=>(n,...o)=>(Ke("`wp.data.select( 'core/editor' )."+e+"`",{since:"5.3",alternative:"`wp.data.select( 'core/block-editor' )."+e+"`",version:"6.2"}),t(Q)[e](...o)))}const r7t=pn("getBlockName"),s7t=pn("isBlockValid"),i7t=pn("getBlockAttributes"),a7t=pn("getBlock"),c7t=pn("getBlocks"),l7t=pn("getClientIdsOfDescendants"),u7t=pn("getClientIdsWithDescendants"),d7t=pn("getGlobalBlockCount"),p7t=pn("getBlocksByClientId"),f7t=pn("getBlockCount"),b7t=pn("getBlockSelectionStart"),h7t=pn("getBlockSelectionEnd"),m7t=pn("getSelectedBlockCount"),g7t=pn("hasSelectedBlock"),M7t=pn("getSelectedBlockClientId"),z7t=pn("getSelectedBlock"),O7t=pn("getBlockRootClientId"),y7t=pn("getBlockHierarchyRootClientId"),A7t=pn("getAdjacentBlockClientId"),v7t=pn("getPreviousBlockClientId"),x7t=pn("getNextBlockClientId"),w7t=pn("getSelectedBlocksInitialCaretPosition"),_7t=pn("getMultiSelectedBlockClientIds"),k7t=pn("getMultiSelectedBlocks"),S7t=pn("getFirstMultiSelectedBlockClientId"),C7t=pn("getLastMultiSelectedBlockClientId"),q7t=pn("isFirstMultiSelectedBlock"),R7t=pn("isBlockMultiSelected"),T7t=pn("isAncestorMultiSelected"),E7t=pn("getMultiSelectedBlocksStartClientId"),W7t=pn("getMultiSelectedBlocksEndClientId"),N7t=pn("getBlockOrder"),B7t=pn("getBlockIndex"),L7t=pn("isBlockSelected"),P7t=pn("hasSelectedInnerBlock"),j7t=pn("isBlockWithinSelection"),I7t=pn("hasMultiSelection"),D7t=pn("isMultiSelecting"),F7t=pn("isSelectionEnabled"),$7t=pn("getBlockMode"),V7t=pn("isTyping"),H7t=pn("isCaretWithinFormattedText"),U7t=pn("getBlockInsertionPoint"),X7t=pn("isBlockInsertionPointVisible"),G7t=pn("isValidTemplate"),K7t=pn("getTemplate"),Y7t=pn("getTemplateLock"),Z7t=pn("canInsertBlockType"),Q7t=pn("getInserterItems"),J7t=pn("hasInserterItems"),eIt=pn("getBlockListSettings"),tIt=At(e=>()=>(Ke("select('core/editor').__experimentalGetDefaultTemplateTypes",{since:"6.8",alternative:"select('core/core-data').getEntityRecord( 'root', '__unstableBase' )?.default_template_types"}),e(Me).getEntityRecord("root","__unstableBase")?.default_template_types)),nIt=At(e=>It(()=>(Ke("select('core/editor').__experimentalGetDefaultTemplatePartAreas",{since:"6.8",alternative:"select('core/core-data').getEntityRecord( 'root', '__unstableBase' )?.default_template_part_areas"}),(e(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[]).map(n=>({...n,icon:RI(n.icon)}))))),oIt=At(e=>It((t,n)=>{var o;Ke("select('core/editor').__experimentalGetDefaultTemplateType",{since:"6.8"});const r=e(Me).getEntityRecord("root","__unstableBase")?.default_template_types;return r&&(o=Object.values(r).find(s=>s.slug===n))!==null&&o!==void 0?o:e3})),rIt=At(e=>It((t,n)=>{if(Ke("select('core/editor').__experimentalGetTemplateInfo",{since:"6.8"}),!n)return e3;const o=e(Me).getEntityRecord("root","__unstableBase")?.default_template_types||[],r=e(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[];return LO({template:n,templateAreas:r,templateTypes:o})})),sIt=At(e=>t=>{const n=Fi(t);return e(Me).getPostType(n)?.labels?.singular_name});function iIt(e){return e.publishSidebarActive}const aIt=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetDefaultTemplatePartAreas:nIt,__experimentalGetDefaultTemplateType:oIt,__experimentalGetDefaultTemplateTypes:tIt,__experimentalGetTemplateInfo:rIt,__unstableIsEditorReady:Yjt,canInsertBlockType:Z7t,canUserUseUnfilteredHTML:Fjt,didPostSaveRequestFail:Cjt,didPostSaveRequestSucceed:Sjt,getActivePostLock:Djt,getAdjacentBlockClientId:A7t,getAutosaveAttribute:tOe,getBlock:a7t,getBlockAttributes:i7t,getBlockCount:f7t,getBlockHierarchyRootClientId:y7t,getBlockIndex:B7t,getBlockInsertionPoint:U7t,getBlockListSettings:eIt,getBlockMode:$7t,getBlockName:r7t,getBlockOrder:N7t,getBlockRootClientId:O7t,getBlockSelectionEnd:h7t,getBlockSelectionStart:b7t,getBlocks:c7t,getBlocksByClientId:p7t,getClientIdsOfDescendants:l7t,getClientIdsWithDescendants:u7t,getCurrentPost:G1,getCurrentPostAttribute:jM,getCurrentPostId:$i,getCurrentPostLastRevisionId:gjt,getCurrentPostRevisionsCount:mjt,getCurrentPostType:Fi,getCurrentTemplateId:hjt,getDeviceType:Qjt,getEditedPostAttribute:mr,getEditedPostContent:n3,getEditedPostPreviewLink:Tjt,getEditedPostSlug:Bjt,getEditedPostVisibility:zjt,getEditorBlocks:Vjt,getEditorMode:t7t,getEditorSelection:Kjt,getEditorSelectionEnd:Gjt,getEditorSelectionStart:Xjt,getEditorSettings:Zjt,getFirstMultiSelectedBlockClientId:S7t,getGlobalBlockCount:d7t,getInserterItems:Q7t,getLastMultiSelectedBlockClientId:C7t,getMultiSelectedBlockClientIds:_7t,getMultiSelectedBlocks:k7t,getMultiSelectedBlocksEndClientId:W7t,getMultiSelectedBlocksStartClientId:E7t,getNextBlockClientId:x7t,getPermalink:Njt,getPermalinkParts:sOe,getPostEdits:t3,getPostLockUser:Ijt,getPostTypeLabel:sIt,getPreviousBlockClientId:v7t,getRenderingMode:nN,getSelectedBlock:z7t,getSelectedBlockClientId:M7t,getSelectedBlockCount:m7t,getSelectedBlocksInitialCaretPosition:w7t,getStateBeforeOptimisticTransaction:n7t,getSuggestedPostFormat:Ejt,getTemplate:K7t,getTemplateLock:Y7t,hasChangedContent:eOe,hasEditorRedo:pjt,hasEditorUndo:djt,hasInserterItems:J7t,hasMultiSelection:I7t,hasNonPostEntityChanges:fjt,hasSelectedBlock:g7t,hasSelectedInnerBlock:P7t,inSomeHistory:o7t,isAncestorMultiSelected:T7t,isAutosavingPost:qjt,isBlockInsertionPointVisible:X7t,isBlockMultiSelected:R7t,isBlockSelected:L7t,isBlockValid:s7t,isBlockWithinSelection:j7t,isCaretWithinFormattedText:H7t,isCleanNewPost:bjt,isCurrentPostPending:Ojt,isCurrentPostPublished:EI,isCurrentPostScheduled:yjt,isDeletingPost:_jt,isEditedPostAutosaveable:vjt,isEditedPostBeingScheduled:xjt,isEditedPostDateFloating:wjt,isEditedPostDirty:TI,isEditedPostEmpty:oOe,isEditedPostNew:J3e,isEditedPostPublishable:Ajt,isEditedPostSaveable:nOe,isEditorPanelEnabled:Hjt,isEditorPanelOpened:Ujt,isEditorPanelRemoved:aOe,isFirstMultiSelectedBlock:q7t,isInserterOpened:e7t,isListViewOpened:Jjt,isMultiSelecting:D7t,isPermalinkEditable:rOe,isPostAutosavingLocked:iOe,isPostLockTakeover:jjt,isPostLocked:Ljt,isPostSavingLocked:Pjt,isPreviewingPost:Rjt,isPublishSidebarEnabled:$jt,isPublishSidebarOpened:iIt,isPublishingPost:Wjt,isSavingNonPostEntityChanges:kjt,isSavingPost:Em,isSelectionEnabled:F7t,isTyping:V7t,isValidTemplate:G7t},Symbol.toStringTag,{value:"Module"}));function cIt(e,t){return`wp-autosave-block-editor-post-${t?"auto-draft":e}`}function lIt(e,t,n,o,r){window.sessionStorage.setItem(cIt(e,t),JSON.stringify({post_title:n,content:o,excerpt:r}))}function uIt(e){var t;const{previousPost:n,post:o,postType:r}=e;if(e.options?.isAutosave)return[];const s=["publish","private","future"],i=s.includes(n.status),c=s.includes(o.status),l=o.status==="trash"&&n.status!=="trash";let u,d=(t=r?.viewable)!==null&&t!==void 0?t:!1,p;l?(u=r.labels.item_trashed,d=!1):!i&&!c?(u=m("Draft saved."),p=!0):i&&!c?(u=r.labels.item_reverted_to_draft,d=!1):!i&&c?u={publish:r.labels.item_published,private:r.labels.item_published_privately,future:r.labels.item_scheduled}[o.status]:u=r.labels.item_updated;const f=[];return d&&f.push({label:p?m("View Preview"):r.labels.view_item,url:o.link}),[u,{id:"editor-save",type:"snackbar",actions:f}]}function dIt(e){const{post:t,edits:n,error:o}=e;if(o&&o.code==="rest_autosave_no_changes")return[];const r=["publish","private","future"],s=r.indexOf(t.status)!==-1,i={publish:m("Publishing failed."),private:m("Publishing failed."),future:m("Scheduling failed.")};let c=!s&&r.indexOf(n.status)!==-1?i[n.status]:m("Updating failed.");return o.message&&!/<\/?[^>]*>/.test(o.message)&&(c=[c,o.message].join(" ")),[c,{id:"editor-save"}]}function pIt(e){return[e.error.message&&e.error.code!=="unknown_error"?e.error.message:m("Trashing failed"),{id:"editor-trash-fail"}]}const fIt=(e,t,n)=>({dispatch:o})=>{if(o.setEditedPost(e.type,e.id),e.status==="auto-draft"&&n){let s;"content"in t?s=t.content:s=e.content.raw;let i=Ko(s);i=oz(i,n),o.resetEditorBlocks(i,{__unstableShouldCreateUndoLevel:!1})}t&&Object.values(t).some(([s,i])=>{var c;return i!==((c=e[s]?.raw)!==null&&c!==void 0?c:e[s])})&&o.editPost(t)};function bIt(){return Ke("wp.data.dispatch( 'core/editor' ).__experimentalTearDownEditor",{since:"6.5"}),{type:"DO_NOTHING"}}function hIt(){return Ke("wp.data.dispatch( 'core/editor' ).resetPost",{since:"6.0",version:"6.3",alternative:"Initialize the editor with the setupEditorState action"}),{type:"DO_NOTHING"}}function mIt(){return Ke("wp.data.dispatch( 'core/editor' ).updatePost",{since:"5.7",alternative:"Use the core entities store instead"}),{type:"DO_NOTHING"}}function gIt(e){return Ke("wp.data.dispatch( 'core/editor' ).setupEditorState",{since:"6.5",alternative:"wp.data.dispatch( 'core/editor' ).setEditedPost"}),cOe(e.type,e.id)}function cOe(e,t){return{type:"SET_EDITED_POST",postType:e,postId:t}}const MIt=(e,t)=>({select:n,registry:o})=>{const{id:r,type:s}=n.getCurrentPost();o.dispatch(Me).editEntityRecord("postType",s,r,e,t)},zIt=(e={})=>async({select:t,dispatch:n,registry:o})=>{if(!t.isEditedPostSaveable())return;const r=t.getEditedPostContent();e.isAutosave||n.editPost({content:r},{undoIgnore:!0});const s=t.getCurrentPost();let i={id:s.id,...o.select(Me).getEntityRecordNonTransientEdits("postType",s.type,s.id),content:r};n({type:"REQUEST_POST_UPDATE_START",options:e});let c=!1;try{i=await t6e("editor.preSavePost",i,e)}catch(l){c=l}if(!c)try{await o.dispatch(Me).saveEntityRecord("postType",s.type,i,e)}catch(l){c=l.message&&l.code!=="unknown_error"?l.message:m("An error occurred while updating.")}if(c||(c=o.select(Me).getLastEntitySaveError("postType",s.type,s.id)),!c)try{await gr("editor.__unstableSavePost",Promise.resolve(),e)}catch(l){c=l}if(!c)try{await e6e("editor.savePost",{id:s.id},e)}catch(l){c=l}if(n({type:"REQUEST_POST_UPDATE_FINISH",options:e}),c){const l=dIt({post:s,edits:i,error:c});l.length&&o.dispatch(mt).createErrorNotice(...l)}else{const l=t.getCurrentPost(),u=uIt({previousPost:s,post:l,postType:await o.resolveSelect(Me).getPostType(l.type),options:e});u.length&&o.dispatch(mt).createSuccessNotice(...u),e.isAutosave||o.dispatch(Q).__unstableMarkLastChangeAsPersistent()}};function OIt(){return Ke("wp.data.dispatch( 'core/editor' ).refreshPost",{since:"6.0",version:"6.3",alternative:"Use the core entities store instead"}),{type:"DO_NOTHING"}}const yIt=()=>async({select:e,dispatch:t,registry:n})=>{const o=e.getCurrentPostType(),r=await n.resolveSelect(Me).getPostType(o),{rest_base:s,rest_namespace:i="wp/v2"}=r;t({type:"REQUEST_POST_DELETE_START"});try{const c=e.getCurrentPost();await Tt({path:`/${i}/${s}/${c.id}`,method:"DELETE"}),await t.savePost()}catch(c){n.dispatch(mt).createErrorNotice(...pIt({error:c}))}t({type:"REQUEST_POST_DELETE_FINISH"})},AIt=({local:e=!1,...t}={})=>async({select:n,dispatch:o})=>{const r=n.getCurrentPost();if(r.type!=="wp_template")if(e){const s=n.isEditedPostNew(),i=n.getEditedPostAttribute("title"),c=n.getEditedPostAttribute("content"),l=n.getEditedPostAttribute("excerpt");lIt(r.id,s,i,c,l)}else await o.savePost({isAutosave:!0,...t})},vIt=({forceIsAutosaveable:e}={})=>async({select:t,dispatch:n})=>((e||t.isEditedPostAutosaveable())&&!t.isPostLocked()&&(["draft","auto-draft"].includes(t.getEditedPostAttribute("status"))?await n.savePost({isPreview:!0}):await n.autosave({isPreview:!0})),t.getEditedPostPreviewLink()),xIt=()=>({registry:e})=>{e.dispatch(Me).redo()},wIt=()=>({registry:e})=>{e.dispatch(Me).undo()};function _It(){return Ke("wp.data.dispatch( 'core/editor' ).createUndoLevel",{since:"6.0",version:"6.3",alternative:"Use the core entities store instead"}),{type:"DO_NOTHING"}}function kIt(e){return{type:"UPDATE_POST_LOCK",lock:e}}const SIt=()=>({registry:e})=>{e.dispatch(ht).set("core","isPublishSidebarEnabled",!0)},CIt=()=>({registry:e})=>{e.dispatch(ht).set("core","isPublishSidebarEnabled",!1)};function qIt(e){return{type:"LOCK_POST_SAVING",lockName:e}}function RIt(e){return{type:"UNLOCK_POST_SAVING",lockName:e}}function TIt(e){return{type:"LOCK_POST_AUTOSAVING",lockName:e}}function EIt(e){return{type:"UNLOCK_POST_AUTOSAVING",lockName:e}}const WIt=(e,t={})=>({select:n,dispatch:o,registry:r})=>{const{__unstableShouldCreateUndoLevel:s,selection:i}=t,c={blocks:e,selection:i};if(s!==!1){const{id:l,type:u}=n.getCurrentPost();if(r.select(Me).getEditedEntityRecord("postType",u,l).blocks===c.blocks){r.dispatch(Me).__unstableCreateUndoLevel("postType",u,l);return}c.content=({blocks:p=[]})=>Jd(p)}o.editPost(c)};function NIt(e){return{type:"UPDATE_EDITOR_SETTINGS",settings:e}}const BIt=e=>({dispatch:t,registry:n,select:o})=>{o.__unstableIsEditorReady()&&(n.dispatch(Q).clearSelectedBlock(),t.editPost({selection:void 0},{undoIgnore:!0})),t({type:"SET_RENDERING_MODE",mode:e})};function LIt(e){return{type:"SET_DEVICE_TYPE",deviceType:e}}const PIt=e=>({registry:t})=>{var n;const o=(n=t.select(ht).get("core","inactivePanels"))!==null&&n!==void 0?n:[],r=!!o?.includes(e);let s;r?s=o.filter(i=>i!==e):s=[...o,e],t.dispatch(ht).set("core","inactivePanels",s)},jIt=e=>({registry:t})=>{var n;const o=(n=t.select(ht).get("core","openPanels"))!==null&&n!==void 0?n:[],r=!!o?.includes(e);let s;r?s=o.filter(i=>i!==e):s=[...o,e],t.dispatch(ht).set("core","openPanels",s)};function IIt(e){return{type:"REMOVE_PANEL",panelName:e}}const DIt=e=>({dispatch:t,registry:n})=>{typeof e=="object"&&e.hasOwnProperty("rootClientId")&&e.hasOwnProperty("insertionIndex")&&St(n.dispatch(Q)).setInsertionPoint({rootClientId:e.rootClientId,index:e.insertionIndex}),t({type:"SET_IS_INSERTER_OPENED",value:e})};function FIt(e){return{type:"SET_IS_LIST_VIEW_OPENED",isOpen:e}}const $It=({createNotice:e=!0}={})=>({dispatch:t,registry:n})=>{const o=n.select(ht).get("core","distractionFree");o&&n.dispatch(ht).set("core","fixedToolbar",!1),o||n.batch(()=>{n.dispatch(ht).set("core","fixedToolbar",!0),t.setIsInserterOpened(!1),t.setIsListViewOpened(!1),St(n.dispatch(Q)).resetZoomLevel()}),n.batch(()=>{n.dispatch(ht).set("core","distractionFree",!o),e&&n.dispatch(mt).createInfoNotice(m(o?"Distraction free mode deactivated.":"Distraction free mode activated."),{id:"core/editor/distraction-free-mode/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{n.batch(()=>{n.dispatch(ht).set("core","fixedToolbar",o),n.dispatch(ht).toggle("core","distractionFree")})}}]})})},VIt=()=>({registry:e})=>{e.dispatch(ht).toggle("core","focusMode");const t=e.select(ht).get("core","focusMode");e.dispatch(mt).createInfoNotice(m(t?"Spotlight mode activated.":"Spotlight mode deactivated."),{id:"core/editor/toggle-spotlight-mode/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{e.dispatch(ht).toggle("core","focusMode")}}]})},HIt=()=>({registry:e})=>{e.dispatch(ht).toggle("core","fixedToolbar");const t=e.select(ht).get("core","fixedToolbar");e.dispatch(mt).createInfoNotice(m(t?"Top toolbar activated.":"Top toolbar deactivated."),{id:"core/editor/toggle-top-toolbar/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{e.dispatch(ht).toggle("core","fixedToolbar")}}]})},UIt=e=>({dispatch:t,registry:n})=>{n.dispatch(ht).set("core","editorMode",e),e!=="visual"&&(n.dispatch(Q).clearSelectedBlock(),St(n.dispatch(Q)).resetZoomLevel()),e==="visual"?Yt(m("Visual editor selected"),"assertive"):e==="text"&&(n.select(ht).get("core","distractionFree")&&t.toggleDistractionFree(),Yt(m("Code editor selected"),"assertive"))};function XIt(){return{type:"OPEN_PUBLISH_SIDEBAR"}}function GIt(){return{type:"CLOSE_PUBLISH_SIDEBAR"}}function KIt(){return{type:"TOGGLE_PUBLISH_SIDEBAR"}}const _o=e=>(...t)=>({registry:n})=>{Ke("`wp.data.dispatch( 'core/editor' )."+e+"`",{since:"5.3",alternative:"`wp.data.dispatch( 'core/block-editor' )."+e+"`",version:"6.2"}),n.dispatch(Q)[e](...t)},YIt=_o("resetBlocks"),ZIt=_o("receiveBlocks"),QIt=_o("updateBlock"),JIt=_o("updateBlockAttributes"),e9t=_o("selectBlock"),t9t=_o("startMultiSelect"),n9t=_o("stopMultiSelect"),o9t=_o("multiSelect"),r9t=_o("clearSelectedBlock"),s9t=_o("toggleSelection"),i9t=_o("replaceBlocks"),a9t=_o("replaceBlock"),c9t=_o("moveBlocksDown"),l9t=_o("moveBlocksUp"),u9t=_o("moveBlockToPosition"),d9t=_o("insertBlock"),p9t=_o("insertBlocks"),f9t=_o("showInsertionPoint"),b9t=_o("hideInsertionPoint"),h9t=_o("setTemplateValidity"),m9t=_o("synchronizeTemplate"),g9t=_o("mergeBlocks"),M9t=_o("removeBlocks"),z9t=_o("removeBlock"),O9t=_o("toggleBlockMode"),y9t=_o("startTyping"),A9t=_o("stopTyping"),v9t=_o("enterFormattedText"),x9t=_o("exitFormattedText"),w9t=_o("insertDefaultBlock"),_9t=_o("updateBlockListSettings"),k9t=Object.freeze(Object.defineProperty({__proto__:null,__experimentalTearDownEditor:bIt,__unstableSaveForPreview:vIt,autosave:AIt,clearSelectedBlock:r9t,closePublishSidebar:GIt,createUndoLevel:_It,disablePublishSidebar:CIt,editPost:MIt,enablePublishSidebar:SIt,enterFormattedText:v9t,exitFormattedText:x9t,hideInsertionPoint:b9t,insertBlock:d9t,insertBlocks:p9t,insertDefaultBlock:w9t,lockPostAutosaving:TIt,lockPostSaving:qIt,mergeBlocks:g9t,moveBlockToPosition:u9t,moveBlocksDown:c9t,moveBlocksUp:l9t,multiSelect:o9t,openPublishSidebar:XIt,receiveBlocks:ZIt,redo:xIt,refreshPost:OIt,removeBlock:z9t,removeBlocks:M9t,removeEditorPanel:IIt,replaceBlock:a9t,replaceBlocks:i9t,resetBlocks:YIt,resetEditorBlocks:WIt,resetPost:hIt,savePost:zIt,selectBlock:e9t,setDeviceType:LIt,setEditedPost:cOe,setIsInserterOpened:DIt,setIsListViewOpened:FIt,setRenderingMode:BIt,setTemplateValidity:h9t,setupEditor:fIt,setupEditorState:gIt,showInsertionPoint:f9t,startMultiSelect:t9t,startTyping:y9t,stopMultiSelect:n9t,stopTyping:A9t,switchEditorMode:UIt,synchronizeTemplate:m9t,toggleBlockMode:O9t,toggleDistractionFree:$It,toggleEditorPanelEnabled:PIt,toggleEditorPanelOpened:jIt,togglePublishSidebar:KIt,toggleSelection:s9t,toggleSpotlightMode:VIt,toggleTopToolbar:HIt,trashPost:yIt,undo:wIt,unlockPostAutosaving:EIt,unlockPostSaving:RIt,updateBlock:QIt,updateBlockAttributes:JIt,updateBlockListSettings:_9t,updateEditorSettings:NIt,updatePost:mIt,updatePostLock:kIt},Symbol.toStringTag,{value:"Module"}));function lOe(e){return e?e.source===Z3e.custom&&(!!e?.plugin||e?.has_theme_file):!1}function S9t(e){return e.type==="wp_template"}function C9t(e){return e.type==="wp_template_part"}function qh(e){return e.type==="wp_template"||e.type==="wp_template_part"}function Wr(e){return typeof e.title=="string"?Lt(e.title):e.title&&"rendered"in e.title?Lt(e.title.rendered):e.title&&"raw"in e.title?Lt(e.title.raw):""}function uOe(e){return e?[e.source,e.source].includes("custom")&&!(e.type==="wp_template"&&e?.plugin)&&!e.has_theme_file:!1}const dOe=e=>typeof e!="object"?"":e.slug||w5(Wr(e))||e.id.toString(),pOe=({field:e,onChange:t,data:n})=>{const{id:o}=e,r=e.getValue({item:n})||dOe(n),s=n.permalink_template||"",i=/%(?:postname|pagename)%/,[c,l]=s.split(i),u=c,d=l,p=i.test(s),f=x.useRef(r),b=r||f.current,h=p?`${u}${b}${d}`:Y2(n.link||"");x.useEffect(()=>{r&&f.current===void 0&&(f.current=r)},[r]);const g=x.useCallback(v=>t({[o]:v}),[o,t]),{createNotice:z}=Oe(mt),A=Hl(h,()=>{z("info",m("Copied Permalink to clipboard."),{isDismissible:!0,type:"snackbar"})}),_="editor-post-url__slug-description-"+vt(pOe);return a.jsxs("fieldset",{className:"fields-controls__slug",children:[p&&a.jsxs(dt,{children:[a.jsxs(dt,{spacing:"0px",children:[a.jsx("span",{children:m("Customize the last part of the Permalink.")}),a.jsx(hr,{href:"https://wordpress.org/documentation/article/page-post-settings-sidebar/#permalink",children:m("Learn more")})]}),a.jsx(N1,{__next40pxDefaultSize:!0,prefix:a.jsx(Ld,{children:"/"}),suffix:a.jsx(Ce,{__next40pxDefaultSize:!0,icon:EP,ref:A,label:m("Copy")}),label:m("Link"),hideLabelFromVision:!0,value:r,autoComplete:"off",spellCheck:"false",type:"text",className:"fields-controls__slug-input",onChange:v=>{g(v)},onBlur:()=>{r===""&&g(f.current)},"aria-describedby":_}),a.jsxs("div",{className:"fields-controls__slug-help",children:[a.jsx("span",{className:"fields-controls__slug-help-visual-label",children:m("Permalink:")}),a.jsxs(hr,{className:"fields-controls__slug-help-link",href:h,children:[a.jsx("span",{className:"fields-controls__slug-help-prefix",children:u}),a.jsx("span",{className:"fields-controls__slug-help-slug",children:b}),a.jsx("span",{className:"fields-controls__slug-help-suffix",children:d})]})]})]}),!p&&a.jsx(hr,{className:"fields-controls__slug-help",href:h,children:h})]})},q9t=({item:e})=>{const t=dOe(e),n=x.useRef(t);return x.useEffect(()=>{t&&n.current===void 0&&(n.current=t)},[t]),`${t||n.current}`},R9t={id:"slug",type:"text",label:m("Slug"),Edit:pOe,render:q9t};function WI({item:e,className:t,children:n}){const o=Wr(e);return a.jsxs(Ot,{className:oe("fields-field__title",t),alignment:"center",justify:"flex-start",children:[a.jsx("span",{children:o||m("(no title)")}),n]})}function fOe({item:e}){return a.jsx(WI,{item:e})}const bOe={type:"text",id:"title",label:m("Title"),placeholder:m("No title"),getValue:({item:e})=>Wr(e),render:fOe,enableHiding:!1,enableGlobalSearch:!0},{lock:sgn,unlock:Wm}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/fields"),{Badge:T9t}=Wm(tr);function E9t({item:e}){const{frontPageId:t,postsPageId:n}=G(o=>{const{getEntityRecord:r}=o(Me),s=r("root","site");return{frontPageId:s?.page_on_front,postsPageId:s?.page_for_posts}},[]);return a.jsx(WI,{item:e,className:"fields-field__page-title",children:[t,n].includes(e.id)&&a.jsx(T9t,{children:e.id===t?m("Homepage"):m("Posts Page")})})}const W9t={type:"text",id:"title",label:m("Title"),placeholder:m("No title"),getValue:({item:e})=>Wr(e),render:E9t,enableHiding:!1,enableGlobalSearch:!0},N9t={type:"text",label:m("Template"),placeholder:m("No title"),id:"title",getValue:({item:e})=>Wr(e),render:fOe,enableHiding:!1,enableGlobalSearch:!0};function B9t(e={},t){return t?.type==="SET_EDITING_PATTERN"?{...e,[t.clientId]:t.isEditing}:e}const L9t=J0({isEditingPattern:B9t}),sk={theme:"pattern",user:"wp_block"},hOe="all-patterns",P9t="my-patterns",j9t=["core","pattern-directory/core","pattern-directory/featured"],oa={full:"fully",unsynced:"unsynced"},mOe={"core/paragraph":["content"],"core/heading":["content"],"core/button":["text","url","linkTarget","rel"],"core/image":["id","url","title","alt"]},z4="core/pattern-overrides",I9t=(e,t,n,o)=>async({registry:r})=>{const s=t===oa.unsynced?{wp_pattern_sync_status:t}:void 0,i={title:e,content:n,status:"publish",meta:s,wp_pattern_category:o};return await r.dispatch(Me).saveEntityRecord("postType","wp_block",i)},D9t=(e,t)=>async({dispatch:n})=>{const o=await e.text();let r;try{r=JSON.parse(o)}catch{throw new Error("Invalid JSON file")}if(r.__file!=="wp_block"||!r.title||!r.content||typeof r.title!="string"||typeof r.content!="string"||r.syncStatus&&typeof r.syncStatus!="string")throw new Error("Invalid pattern JSON file");return await n.createPattern(r.title,r.syncStatus,r.content,t)},F9t=e=>({registry:t})=>{const n=t.select(Q).getBlock(e),o=n.attributes?.content;function r(i){return i.map(c=>{let l=c.attributes.metadata;if(l&&(l={...l},delete l.id,delete l.bindings,o?.[l.name]))for(const[u,d]of Object.entries(o[l.name]))on(c.name)?.attributes[u]&&(c.attributes[u]=d);return jo(c,{metadata:l&&Object.keys(l).length>0?l:void 0},r(c.innerBlocks))})}const s=t.select(Q).getBlocks(n.clientId);t.dispatch(Q).replaceBlocks(n.clientId,r(s))};function $9t(e,t){return{type:"SET_EDITING_PATTERN",clientId:e,isEditing:t}}const V9t=Object.freeze(Object.defineProperty({__proto__:null,convertSyncedPatternToStatic:F9t,createPattern:I9t,createPatternFromFile:D9t,setEditingPattern:$9t},Symbol.toStringTag,{value:"Module"})),H9t="core/patterns";function U9t(e,t){return e.isEditingPattern[t]}const X9t=Object.freeze(Object.defineProperty({__proto__:null,isEditingPattern:U9t},Symbol.toStringTag,{value:"Module"})),{lock:G9t,unlock:pb}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/patterns"),K9t={reducer:L9t},Nm=x1(H9t,{...K9t});Us(Nm);pb(Nm).registerPrivateActions(V9t);pb(Nm).registerPrivateSelectors(X9t);function NI(e){return Object.keys(mOe).includes(e.name)&&!!e.attributes.metadata?.name&&!!e.attributes.metadata?.bindings&&Object.values(e.attributes.metadata.bindings).some(t=>t.source==="core/pattern-overrides")}function gOe(e){return e.some(t=>NI(t)?!0:gOe(t.innerBlocks))}const{BlockQuickNavigation:Y9t}=pb(jn);function Z9t(){const e=G(o=>o(Q).getClientIdsWithDescendants(),[]),{getBlock:t}=G(Q),n=x.useMemo(()=>e.filter(o=>{const r=t(o);return NI(r)}),[e,t]);return n?.length?a.jsx(Qt,{title:m("Overrides"),children:a.jsx(Y9t,{clientIds:n})}):null}const Q9t=e=>Lt(e),MOe="wp_pattern_category";function J9t({categoryTerms:e,onChange:t,categoryMap:n}){const[o,r]=x.useState(""),s=C1(r,500),i=x.useMemo(()=>Array.from(n.values()).map(l=>Q9t(l.label)).filter(l=>o!==""?l.toLowerCase().includes(o.toLowerCase()):!0).sort((l,u)=>l.localeCompare(u)),[o,n]);function c(l){const u=l.reduce((d,p)=>(d.some(f=>f.toLowerCase()===p.toLowerCase())||d.push(p),d),[]);t(u)}return a.jsx(ip,{className:"patterns-menu-items__convert-modal-categories",value:e,suggestions:i,onChange:c,onInputChange:s,label:m("Categories"),tokenizeOnBlur:!0,__experimentalExpandOnFocus:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0})}function zOe(){const{saveEntityRecord:e,invalidateResolution:t}=Oe(Me),{corePatternCategories:n,userPatternCategories:o}=G(i=>{const{getUserPatternCategories:c,getBlockPatternCategories:l}=i(Me);return{corePatternCategories:l(),userPatternCategories:c()}},[]),r=x.useMemo(()=>{const i=new Map;return o.forEach(c=>{i.set(c.label.toLowerCase(),{label:c.label,name:c.name,id:c.id})}),n.forEach(c=>{!i.has(c.label.toLowerCase())&&c.name!=="query"&&i.set(c.label.toLowerCase(),{label:c.label,name:c.name})}),i},[o,n]);async function s(i){try{const c=r.get(i.toLowerCase());if(c?.id)return c.id;const l=c?{name:c.label,slug:c.name}:{name:i},u=await e("taxonomy",MOe,l,{throwOnError:!0});return t("getUserPatternCategories"),u.id}catch(c){if(c.code!=="term_exists")throw c;return c.data.term_id}}return{categoryMap:r,findOrCreateTerm:s}}function BI({className:e="patterns-menu-items__convert-modal",modalTitle:t,...n}){const o=G(r=>r(Me).getPostType(sk.user)?.labels?.add_new_item,[]);return a.jsx(Zo,{title:t||o,onRequestClose:n.onClose,overlayClassName:e,focusOnMount:"firstContentElement",size:"small",children:a.jsx(OOe,{...n})})}function OOe({confirmLabel:e=m("Add"),defaultCategories:t=[],content:n,onClose:o,onError:r,onSuccess:s,defaultSyncType:i=oa.full,defaultTitle:c=""}){const[l,u]=x.useState(i),[d,p]=x.useState(t),[f,b]=x.useState(c),[h,g]=x.useState(!1),{createPattern:z}=pb(Oe(Nm)),{createErrorNotice:A}=Oe(mt),{categoryMap:_,findOrCreateTerm:v}=zOe();async function M(y,k){if(!(!f||h))try{g(!0);const S=await Promise.all(d.map(R=>v(R))),C=await z(y,k,typeof n=="function"?n():n,S);s({pattern:C,categoryId:hOe})}catch(S){A(S.message,{type:"snackbar",id:"pattern-create"}),r?.()}finally{g(!1),p([]),b("")}}return a.jsx("form",{onSubmit:y=>{y.preventDefault(),M(f,l)},children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{label:m("Name"),value:f,onChange:b,placeholder:m("My pattern"),className:"patterns-create-modal__name-input",__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0}),a.jsx(J9t,{categoryTerms:d,onChange:p,categoryMap:_}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:We("Synced","pattern (singular)"),help:m("Sync this pattern across multiple locations."),checked:l===oa.full,onChange:()=>{u(l===oa.full?oa.unsynced:oa.full)}}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{o(),b("")},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit","aria-disabled":!f||h,isBusy:h,children:e})]})]})})}function eDt(e,t){return e.type!==sk.user?t.core?.filter(n=>e.categories?.includes(n.name)).map(n=>n.label):t.user?.filter(n=>e.wp_pattern_category?.includes(n.id)).map(n=>n.label)}function yOe({pattern:e,onSuccess:t}){const{createSuccessNotice:n}=Oe(mt),o=G(r=>{const{getUserPatternCategories:s,getBlockPatternCategories:i}=r(Me);return{core:i(),user:s()}});return e?{content:e.content,defaultCategories:eDt(e,o),defaultSyncType:e.type!==sk.user?oa.unsynced:e.wp_pattern_sync_status||oa.full,defaultTitle:xe(We("%s (Copy)","pattern"),typeof e.title=="string"?e.title:e.title.raw),onSuccess:({pattern:r})=>{n(xe(We('"%s" duplicated.',"pattern"),r.title.raw),{type:"snackbar",id:"patterns-create"}),t?.({pattern:r})}}:null}function tDt({pattern:e,onClose:t,onSuccess:n}){const o=yOe({pattern:e,onSuccess:n});return e?a.jsx(BI,{modalTitle:m("Duplicate pattern"),confirmLabel:m("Duplicate"),onClose:t,onError:t,...o}):null}function nDt({onClose:e,onError:t,onSuccess:n,pattern:o,...r}){const s=Lt(o.title),[i,c]=x.useState(s),[l,u]=x.useState(!1),{editEntityRecord:d,__experimentalSaveSpecifiedEntityEdits:p}=Oe(Me),{createSuccessNotice:f,createErrorNotice:b}=Oe(mt),h=async z=>{if(z.preventDefault(),!(!i||i===o.title||l))try{await d("postType",o.type,o.id,{title:i}),u(!0),c(""),e?.();const A=await p("postType",o.type,o.id,["title"],{throwOnError:!0});n?.(A),f(m("Pattern renamed"),{type:"snackbar",id:"pattern-update"})}catch(A){t?.();const _=A.message&&A.code!=="unknown_error"?A.message:m("An error occurred while renaming the pattern.");b(_,{type:"snackbar",id:"pattern-update"})}finally{u(!1),c("")}},g=()=>{e?.(),c("")};return a.jsx(Zo,{title:m("Rename"),...r,onRequestClose:e,focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{onSubmit:h,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Name"),value:i,onChange:c,required:!0}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:g,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Save")})]})]})})})}function oDt({clientIds:e,rootClientId:t,closeBlockSettingsMenu:n}){const{createSuccessNotice:o}=Oe(mt),{replaceBlocks:r}=Oe(Q),{setEditingPattern:s}=pb(Oe(Nm)),[i,c]=x.useState(!1),l=G(f=>{var b;const{canUser:h}=f(Me),{getBlocksByClientId:g,canInsertBlockType:z,getBlockRootClientId:A}=f(Q),_=t||(e.length>0?A(e[0]):void 0),v=(b=g(e))!==null&&b!==void 0?b:[],M=S=>{const C=on(S),R=C&&"parent"in C;return Et(S,"reusable",!R)};return!(v.length===1&&v[0]&&Qd(v[0])&&!!f(Me).getEntityRecord("postType","wp_block",v[0].attributes.ref))&&z("core/block",_)&&v.every(S=>!!S&&S.isValid&&M(S.name))&&!!h("create",{kind:"postType",name:"wp_block"})},[e,t]),{getBlocksByClientId:u}=G(Q),d=x.useCallback(()=>Ks(u(e)),[u,e]);if(!l)return null;const p=({pattern:f})=>{if(f.wp_pattern_sync_status!==oa.unsynced){const b=Ee("core/block",{ref:f.id});r(e,b),s(b.clientId,!0),n()}o(f.wp_pattern_sync_status===oa.unsynced?xe(m("Unsynced pattern created: %s"),f.title.raw):xe(m("Synced pattern created: %s"),f.title.raw),{type:"snackbar",id:"convert-to-pattern-success"}),c(!1)};return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{icon:Bd,onClick:()=>c(!0),"aria-expanded":i,"aria-haspopup":"dialog",children:m("Create pattern")}),i&&a.jsx(BI,{content:d,onSuccess:f=>{p(f)},onError:()=>{c(!1)},onClose:()=>{c(!1)}})]})}function rDt({clientId:e}){const{canRemove:t,isVisible:n,managePatternsUrl:o}=G(s=>{const{getBlock:i,canRemoveBlock:c,getBlockCount:l}=s(Q),{canUser:u}=s(Me),d=i(e);return{canRemove:c(e),isVisible:!!d&&Qd(d)&&!!u("update",{kind:"postType",name:"wp_block",id:d.attributes.ref}),innerBlockCount:l(e),managePatternsUrl:u("create",{kind:"postType",name:"wp_template"})?tn("site-editor.php",{path:"/patterns"}):tn("edit.php",{post_type:"wp_block"})}},[e]),{convertSyncedPatternToStatic:r}=pb(Oe(Nm));return n?a.jsxs(a.Fragment,{children:[t&&a.jsx(Ct,{onClick:()=>r(e),children:m("Detach")}),a.jsx(Ct,{href:o,children:m("Manage patterns")})]}):null}function sDt({rootClientId:e}){return a.jsx(cb,{children:({selectedClientIds:t,onClose:n})=>a.jsxs(a.Fragment,{children:[a.jsx(oDt,{clientIds:t,rootClientId:e,closeBlockSettingsMenu:n}),t.length===1&&a.jsx(rDt,{clientId:t[0]})]})})}function iDt({category:e,existingCategories:t,onClose:n,onError:o,onSuccess:r,...s}){const i=x.useId(),c=x.useRef(),[l,u]=x.useState(Lt(e.name)),[d,p]=x.useState(!1),[f,b]=x.useState(!1),h=f?`patterns-rename-pattern-category-modal__validation-message-${i}`:void 0,{saveEntityRecord:g,invalidateResolution:z}=Oe(Me),{createErrorNotice:A,createSuccessNotice:_}=Oe(mt),v=k=>{f&&b(void 0),u(k)},M=async k=>{if(k.preventDefault(),!d){if(!l||l===e.name){const S=m("Please enter a new name for this category.");Yt(S,"assertive"),b(S),c.current?.focus();return}if(t.patternCategories.find(S=>S.id!==e.id&&S.label.toLowerCase()===l.toLowerCase())){const S=m("This category already exists. Please use a different name.");Yt(S,"assertive"),b(S),c.current?.focus();return}try{p(!0);const S=await g("taxonomy",MOe,{id:e.id,slug:e.slug,name:l});z("getUserPatternCategories"),r?.(S),n(),_(m("Pattern category renamed."),{type:"snackbar",id:"pattern-category-update"})}catch(S){o?.(),A(S.message,{type:"snackbar",id:"pattern-category-update"})}finally{p(!1),u("")}}},y=()=>{n(),u("")};return a.jsx(Zo,{title:m("Rename"),onRequestClose:y,...s,children:a.jsx("form",{onSubmit:M,children:a.jsxs(dt,{spacing:"5",children:[a.jsxs(dt,{spacing:"2",children:[a.jsx(dn,{ref:c,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Name"),value:l,onChange:v,"aria-describedby":h,required:!0}),f&&a.jsx("span",{className:"patterns-rename-pattern-category-modal__validation-message",id:h,children:f})]}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:y,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit","aria-disabled":!l||l===e.name||d,isBusy:d,children:m("Save")})]})]})})})}function aDt({placeholder:e,initialName:t="",onClose:n,onSave:o}){const[r,s]=x.useState(t),i=x.useId(),c=!!r.trim(),l=()=>{if(r!==t){const u=xe(m('Block name changed to: "%s".'),r);Yt(u,"assertive")}o(r),n()};return a.jsx(Zo,{title:m("Enable overrides"),onRequestClose:n,focusOnMount:"firstContentElement",aria:{describedby:i},size:"small",children:a.jsx("form",{onSubmit:u=>{u.preventDefault(),c&&l()},children:a.jsxs(dt,{spacing:"6",children:[a.jsx(Sn,{id:i,children:m("Overrides are changes you make to a block within a synced pattern instance. Use overrides to customize a synced pattern instance to suit its new context. Name this block to specify an override.")}),a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:r,label:m("Name"),help:m('For example, if you are creating a recipe pattern, you use "Recipe Title", "Recipe Description", etc.'),placeholder:e,onChange:s}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:n,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,"aria-disabled":!c,variant:"primary",type:"submit",children:m("Enable")})]})]})})})}function cDt({onClose:e,onSave:t}){const n=x.useId();return a.jsx(Zo,{title:m("Disable overrides"),onRequestClose:e,aria:{describedby:n},size:"small",children:a.jsx("form",{onSubmit:o=>{o.preventDefault(),t(),e()},children:a.jsxs(dt,{spacing:"6",children:[a.jsx(Sn,{id:n,children:m("Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern.")}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:e,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Disable")})]})]})})})}function lDt({attributes:e,setAttributes:t,name:n}){const o=x.useId(),[r,s]=x.useState(!1),[i,c]=x.useState(!1),l=!!e.metadata?.name,u=e.metadata?.bindings?.__default,d=l&&u?.source===z4,p=u?.source&&u.source!==z4,{updateBlockBindings:f}=h_();function b(z,A){A&&t({metadata:{...e.metadata,name:A}}),f({__default:z?{source:z4}:void 0})}if(p)return null;const h=n==="core/image"&&(!!e.caption?.length||!!e.href?.length),g=m(!d&&h?"Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides.":"Allow changes to this block throughout instances of this pattern.");return a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"advanced",children:a.jsx(no,{__nextHasNoMarginBottom:!0,id:o,label:m("Overrides"),help:g,children:a.jsx(Ce,{__next40pxDefaultSize:!0,className:"pattern-overrides-control__allow-overrides-button",variant:"secondary","aria-haspopup":"dialog",onClick:()=>{d?c(!0):s(!0)},disabled:!d&&h,accessibleWhenDisabled:!0,children:m(d?"Disable overrides":"Enable overrides")})})}),r&&a.jsx(aDt,{initialName:e.metadata?.name,onClose:()=>s(!1),onSave:z=>{b(!0,z)}}),i&&a.jsx(cDt,{onClose:()=>c(!1),onSave:()=>b(!1)})]})}const gT="content";function uDt(e){const t=e.attributes.metadata?.name,n=Fn(),o=G(s=>{if(!t)return;const{getBlockAttributes:i,getBlockParentsByBlockName:c}=s(Q),[l]=c(e.clientId,"core/block",!0);if(!l)return;const u=i(l)[gT];if(u)return u.hasOwnProperty(t)},[e.clientId,t]);function r(){const{getBlockAttributes:s,getBlockParentsByBlockName:i}=n.select(Q),[c]=i(e.clientId,"core/block",!0);if(!c)return;const l=s(c)[gT];if(!l.hasOwnProperty(t))return;const{updateBlockAttributes:u,__unstableMarkLastChangeAsPersistent:d}=n.dispatch(Q);d();let p={...l};delete p[t],Object.keys(p).length||(p=void 0),u(c,{[gT]:p})}return a.jsx(nI,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:r,disabled:!o,children:m("Reset")})})})}const{useBlockDisplayTitle:dDt}=pb(jn);function pDt({clientIds:e}){const t=e.length===1,{icon:n,firstBlockName:o}=G(c=>{const{getBlockAttributes:l,getBlockNamesByClientId:u}=c(Q),{getBlockType:d,getActiveBlockVariation:p}=c(kt),f=u(e),b=f[0],h=d(b);let g;return t?g=p(b,l(e[0]))?.icon||h.icon:g=new Set(f).size===1?h.icon:H3,{icon:g,firstBlockName:l(e[0]).metadata.name}},[e,t]),r=dDt({clientId:e[0],maximumLength:35}),s=t?xe(m('This %1$s is editable using the "%2$s" override.'),r.toLowerCase(),o):m("These blocks are editable using overrides."),i=x.useId();return a.jsx(bs,{children:c=>a.jsx(c0,{className:"patterns-pattern-overrides-toolbar-indicator",label:r,popoverProps:{placement:"bottom-start",className:"patterns-pattern-overrides-toolbar-indicator__popover"},icon:a.jsx(a.Fragment,{children:a.jsx(Zn,{icon:n,className:"patterns-pattern-overrides-toolbar-indicator-icon",showColors:!0})}),toggleProps:{description:s,...c},menuProps:{orientation:"both","aria-describedby":i},children:()=>a.jsx(Sn,{id:i,children:s})})})}function fDt(){const{clientIds:e,hasPatternOverrides:t,hasParentPattern:n}=G(o=>{const{getBlockAttributes:r,getSelectedBlockClientIds:s,getBlockParentsByBlockName:i}=o(Q),c=s(),l=c.every(d=>{var p;return Object.values((p=r(d)?.metadata?.bindings)!==null&&p!==void 0?p:{}).some(f=>f?.source===z4)}),u=c.every(d=>i(d,"core/block",!0).length>0);return{clientIds:c,hasPatternOverrides:l,hasParentPattern:u}},[]);return t&&n?a.jsx(bt,{group:"parent",children:a.jsx(pDt,{clientIds:e})}):null}const Vi={};G9t(Vi,{OverridesPanel:Z9t,CreatePatternModal:BI,CreatePatternModalContents:OOe,DuplicatePatternModal:tDt,isOverridableBlock:NI,hasOverridableBlocks:gOe,useDuplicatePatternProps:yOe,RenamePatternModal:nDt,PatternsMenuItems:sDt,RenamePatternCategoryModal:iDt,PatternOverridesControls:lDt,ResetOverridesControl:uDt,PatternOverridesBlockControls:fDt,useAddPatternCategory:zOe,PATTERN_TYPES:sk,PATTERN_DEFAULT_CATEGORY:hOe,PATTERN_USER_CATEGORY:P9t,EXCLUDED_PATTERN_SOURCES:j9t,PATTERN_SYNC_TYPES:oa,PARTIAL_SYNCING_SUPPORTED_BLOCKS:mOe});const{PATTERN_TYPES:bDt}=Wm(Vi);function hDt({item:e}){return a.jsx(WI,{item:e,className:"fields-field__pattern-title",children:e.type===bDt.theme&&a.jsx(B0,{placement:"top",text:m("This pattern cannot be edited."),children:a.jsx(wn,{icon:bde,size:24})})})}const mDt={type:"text",id:"title",label:m("Title"),placeholder:m("No title"),getValue:({item:e})=>Wr(e),render:hDt,enableHiding:!1,enableGlobalSearch:!0},gDt={id:"menu_order",type:"integer",label:m("Order"),description:m("Determines the order of pages.")},MDt=[],zDt=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Select.extend({featuredImageToolbar(t){this.createSelectToolbar(t,{text:e.media.view.l10n.setFeaturedImage,state:this.options.state})},editState(){const t=this.state("featured-image").get("selection"),n=new e.media.view.EditImage({model:t.single(),controller:this}).render();this.content.set(n),n.loadEditor()},createStates:function(){this.on("toolbar:create:featured-image",this.featuredImageToolbar,this),this.on("content:render:edit-image",this.editState,this),this.states.add([new e.media.controller.FeaturedImage,new e.media.controller.EditImage({model:this.options.editImage})])}})},ODt=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Select.extend({createStates(){const t=this.options;this.options.states||this.states.add([new e.media.controller.Library({library:e.media.query(t.library),multiple:t.multiple,title:t.title,priority:20,filterable:"uploaded"}),new e.media.controller.EditImage({model:t.editImage})])}})},yDt=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Post.extend({galleryToolbar(){const t=this.state().get("editing");this.toolbar.set(new e.media.view.Toolbar({controller:this,items:{insert:{style:"primary",text:t?e.media.view.l10n.updateGallery:e.media.view.l10n.insertGallery,priority:80,requires:{library:!0},click(){const n=this.controller,o=n.state();n.close(),o.trigger("update",o.get("library")),n.setState(n.options.state),n.reset()}}}}))},editState(){const t=this.state("gallery").get("selection"),n=new e.media.view.EditImage({model:t.single(),controller:this}).render();this.content.set(n),n.loadEditor()},createStates:function(){this.on("toolbar:create:main-gallery",this.galleryToolbar,this),this.on("content:render:edit-image",this.editState,this),this.states.add([new e.media.controller.Library({id:"gallery",title:e.media.view.l10n.createGalleryTitle,priority:40,toolbar:"main-gallery",filterable:"uploaded",multiple:"add",editable:!1,library:e.media.query({type:"image",...this.options.library})}),new e.media.controller.EditImage({model:this.options.editImage}),new e.media.controller.GalleryEdit({library:this.options.selection,editing:this.options.editing,menu:"gallery",displaySettings:!1,multiple:!0}),new e.media.controller.GalleryAdd])}})},Fte=e=>["sizes","mime","type","subtype","id","url","alt","link","caption"].reduce((n,o)=>(e?.hasOwnProperty(o)&&(n[o]=e[o]),n),{}),vv=e=>{const{wp:t}=window;return t.media.query({order:"ASC",orderby:"post__in",post__in:e,posts_per_page:-1,query:!0,type:"image"})};let AOe=class extends x.Component{constructor(){super(...arguments),this.openModal=this.openModal.bind(this),this.onOpen=this.onOpen.bind(this),this.onSelect=this.onSelect.bind(this),this.onUpdate=this.onUpdate.bind(this),this.onClose=this.onClose.bind(this)}initializeListeners(){this.frame.on("select",this.onSelect),this.frame.on("update",this.onUpdate),this.frame.on("open",this.onOpen),this.frame.on("close",this.onClose)}buildAndSetGalleryFrame(){const{addToGallery:t=!1,allowedTypes:n,multiple:o=!1,value:r=MDt}=this.props;if(r===this.lastGalleryValue)return;const{wp:s}=window;this.lastGalleryValue=r,this.frame&&this.frame.remove();let i;t?i="gallery-library":i=r&&r.length?"gallery-edit":"gallery",this.GalleryDetailsMediaFrame||(this.GalleryDetailsMediaFrame=yDt());const c=vv(r),l=new s.media.model.Selection(c.models,{props:c.props.toJSON(),multiple:o});this.frame=new this.GalleryDetailsMediaFrame({mimeType:n,state:i,multiple:o,selection:l,editing:!!r?.length}),s.media.frame=this.frame,this.initializeListeners()}buildAndSetFeatureImageFrame(){const{wp:t}=window,{value:n,multiple:o,allowedTypes:r}=this.props,s=zDt(),i=vv(n),c=new t.media.model.Selection(i.models,{props:i.props.toJSON()});this.frame=new s({mimeType:r,state:"featured-image",multiple:o,selection:c,editing:n}),t.media.frame=this.frame,t.media.view.settings.post={...t.media.view.settings.post,featuredImageId:n||-1}}buildAndSetSingleMediaFrame(){const{wp:t}=window,{allowedTypes:n,multiple:o=!1,title:r=m("Select or Upload Media"),value:s}=this.props,i={title:r,multiple:o};n&&(i.library={type:n}),this.frame&&this.frame.remove();const c=ODt(),l=vv(s),u=new t.media.model.Selection(l.models,{props:l.props.toJSON()});this.frame=new c({mimeType:n,multiple:o,selection:u,...i}),t.media.frame=this.frame}componentWillUnmount(){this.frame?.remove()}onUpdate(t){const{onSelect:n,multiple:o=!1}=this.props,r=this.frame.state(),s=t||r.get("selection");!s||!s.models.length||n(o?s.models.map(i=>Fte(i.toJSON())):Fte(s.models[0].toJSON()))}onSelect(){const{onSelect:t,multiple:n=!1}=this.props,o=this.frame.state().get("selection").toJSON();t(n?o:o[0])}onOpen(){const{wp:t}=window,{value:n}=this.props;if(this.updateCollection(),this.props.mode&&this.frame.content.mode(this.props.mode),!(Array.isArray(n)?!!n?.length:!!n))return;const r=this.props.gallery,s=this.frame.state().get("selection"),i=Array.isArray(n)?n:[n];r||i.forEach(l=>{s.add(t.media.attachment(l))});const c=vv(i);c.more().done(function(){r&&c?.models?.length&&s.add(c.models)})}onClose(){const{onClose:t}=this.props;t&&t(),this.frame.detach()}updateCollection(){const t=this.frame.content.get();if(t&&t.collection){const n=t.collection;n.toArray().forEach(o=>o.trigger("destroy",o)),n.mirroring._hasMore=!0,n.more()}}openModal(){const{gallery:t=!1,unstableFeaturedImageFlow:n=!1,modalClass:o}=this.props;t?this.buildAndSetGalleryFrame():this.buildAndSetSingleMediaFrame(),o&&this.frame.$el.addClass(o),n&&this.buildAndSetFeatureImageFrame(),this.initializeListeners(),this.frame.open()}render(){return this.props.render({open:this.openModal})}};function ADt(e){return e!==null&&typeof e=="object"&&Object.getPrototypeOf(e)===Object.prototype}function LI(e,t,n){if(ADt(n))for(const[o,r]of Object.entries(n))LI(e,`${t}[${o}]`,r);else n!==void 0&&e.append(t,String(n))}function vOe(e){var t;const{alt_text:n,source_url:o,...r}=e;return{...r,alt:e.alt_text,caption:(t=e.caption?.raw)!==null&&t!==void 0?t:"",title:e.title.raw,url:e.source_url,poster:e._embedded?.["wp:featuredmedia"]?.[0]?.source_url||void 0}}async function vDt(e,t={},n){const o=new FormData;o.append("file",e,e.name||e.type.replace("/","."));for(const[r,s]of Object.entries(t))LI(o,r,s);return vOe(await Tt({path:"/wp/v2/media?_embed=wp:featuredmedia",body:o,method:"POST",signal:n}))}class Rh extends Error{constructor({code:t,message:n,file:o,cause:r}){super(n,{cause:r}),Object.setPrototypeOf(this,new.target.prototype),this.code=t,this.file=o}}function xDt(e,t){if(!t)return;const n=t.some(o=>o.includes("/")?o===e.type:e.type.startsWith(`${o}/`));if(e.type&&!n)throw new Rh({code:"MIME_TYPE_NOT_SUPPORTED",message:xe(m("%s: Sorry, this file type is not supported here."),e.name),file:e})}function wDt(e){return e?Object.entries(e).flatMap(([t,n])=>{const[o]=n.split("/"),r=t.split("|");return[n,...r.map(s=>`${o}/${s}`)]}):null}function _Dt(e,t){const n=wDt(t);if(!n)return;const o=n.includes(e.type);if(e.type&&!o)throw new Rh({code:"MIME_TYPE_NOT_ALLOWED_FOR_USER",message:xe(m("%s: Sorry, you are not allowed to upload this file type."),e.name),file:e})}function kDt(e,t){if(e.size<=0)throw new Rh({code:"EMPTY_FILE",message:xe(m("%s: This file is empty."),e.name),file:e});if(t&&e.size>t)throw new Rh({code:"SIZE_ABOVE_LIMIT",message:xe(m("%s: This file exceeds the maximum upload size for this site."),e.name),file:e})}function SDt({wpAllowedMimeTypes:e,allowedTypes:t,additionalData:n={},filesList:o,maxUploadFileSize:r,onError:s,onFileChange:i,signal:c}){const l=[],u=[],d=(p,f)=>{window.__experimentalMediaProcessing||u[p]?.url&&tx(u[p].url),u[p]=f,i?.(u.filter(b=>b!==null))};for(const p of o){try{_Dt(p,e)}catch(f){s?.(f);continue}try{xDt(p,t)}catch(f){s?.(f);continue}try{kDt(p,r)}catch(f){s?.(f);continue}l.push(p),window.__experimentalMediaProcessing||(u.push({url:ls(p)}),i?.(u))}l.map(async(p,f)=>{try{const b=await vDt(p,n,c);d(f,b)}catch(b){d(f,null);let h;b instanceof Error?h=b.message:h=xe(m("Error while uploading file %s to the media library."),p.name),s?.(new Rh({code:"GENERAL",message:h,file:p,cause:b instanceof Error?b:void 0}))}})}async function CDt(e,t,n={},o){const r=new FormData;r.append("file",e,e.name||e.type.replace("/","."));for(const[s,i]of Object.entries(n))LI(r,s,i);return vOe(await Tt({path:`/wp/v2/media/${t}/sideload`,body:r,method:"POST",signal:o}))}const qDt=()=>{};async function RDt({file:e,attachmentId:t,additionalData:n={},signal:o,onFileChange:r,onError:s=qDt}){try{const i=await CDt(e,t,n,o);r?.([i])}catch(i){let c;i instanceof Error?c=i.message:c=xe(m("Error while sideloading file %s to the server."),e.name),s(new Rh({code:"GENERAL",message:c,file:e,cause:i instanceof Error?i:void 0}))}}const{lock:TDt,unlock:agn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/media-utils"),xOe={};TDt(xOe,{sideloadMedia:RDt});const EDt=({data:e,field:t,onChange:n})=>{const{id:o}=t,r=t.getValue({item:e}),s=G(d=>{const{getEntityRecord:p}=d(Me);return p("root","media",r)},[r]),i=x.useCallback(d=>n({[o]:d}),[o,n]),c=s?.source_url,l=s?.title?.rendered,u=x.useRef(null);return a.jsx("fieldset",{className:"fields-controls__featured-image",children:a.jsx("div",{className:"fields-controls__featured-image-container",children:a.jsx(AOe,{onSelect:d=>{i(d.id)},allowedTypes:["image"],render:({open:d})=>a.jsx("div",{ref:u,role:"button",tabIndex:-1,onClick:()=>{d()},onKeyDown:d,children:a.jsxs(nO,{rowGap:0,columnGap:8,templateColumns:"24px 1fr 24px",children:[c&&a.jsxs(a.Fragment,{children:[a.jsx("img",{className:"fields-controls__featured-image-image",alt:"",width:24,height:24,src:c}),a.jsx("span",{className:"fields-controls__featured-image-title",children:l})]}),!c&&a.jsxs(a.Fragment,{children:[a.jsx("span",{className:"fields-controls__featured-image-placeholder",style:{width:"24px",height:"24px"}}),a.jsx("span",{className:"fields-controls__featured-image-title",children:m("Choose an image…")})]}),c&&a.jsx(a.Fragment,{children:a.jsx(Ce,{size:"small",className:"fields-controls__featured-image-remove-button",icon:fde,onClick:p=>{p.stopPropagation(),i(0)}})})]})})})})})},WDt=({item:e})=>{const t=e.featured_media,o=G(r=>{const{getEntityRecord:s}=r(Me);return t?s("root","media",t):null},[t])?.source_url;return o?a.jsx("img",{className:"fields-controls__featured-image-image",src:o,alt:""}):a.jsx("span",{className:"fields-controls__featured-image-placeholder"})},NDt={id:"featured_media",type:"media",label:m("Featured Image"),Edit:EDt,render:WDt,enableSorting:!1},BDt=({data:e,field:t,onChange:n})=>{const{id:o}=t,r=e.type,s=typeof e.id=="number"?e.id:parseInt(e.id,10),i=e.slug,{availableTemplates:c,templates:l}=G(z=>{var A;const _=(A=z(Me).getEntityRecords("postType","wp_template",{per_page:-1,post_type:r}))!==null&&A!==void 0?A:[],{getHomePage:v,getPostsPageId:M}=Wm(z(Me)),y=M()===+s,k=r==="page"&&v()?.postId===+s;return{templates:_,availableTemplates:!y&&!k?_.filter(C=>C.is_custom&&C.slug!==e.template&&!!C.content.raw):[]}},[e.template,s,r]),u=x.useMemo(()=>c.map(z=>({name:z.slug,blocks:Ko(z.content.raw),title:Lt(z.title.rendered),id:z.id})),[c]),d=E4(u),p=t.getValue({item:e}),f=G(z=>{const A=l?.find(v=>v.slug===p);if(A)return A;let _;if(i?_=r==="page"?`${r}-${i}`:`single-${r}-${i}`:_=r==="page"?"page":`single-${r}`,r){const v=z(Me).getDefaultTemplateId({slug:_});return z(Me).getEntityRecord("postType","wp_template",v)}},[r,i,l,p]),[b,h]=x.useState(!1),g=x.useCallback(z=>n({[o]:z}),[o,n]);return a.jsxs("fieldset",{className:"fields-controls__template",children:[a.jsx(so,{popoverProps:{placement:"bottom-start"},renderToggle:({onToggle:z})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",size:"compact",onClick:z,children:f?Wr(f):""}),renderContent:({onToggle:z})=>a.jsxs(Cn,{children:[a.jsx(Ct,{onClick:()=>{h(!0),z()},children:m("Change template")}),p!==""&&a.jsx(Ct,{onClick:()=>{g(""),z()},children:m("Use default template")})]})}),b&&a.jsx(Zo,{title:m("Choose a template"),onRequestClose:()=>h(!1),overlayClassName:"fields-controls__template-modal",isFullScreen:!0,children:a.jsx("div",{className:"fields-controls__template-content",children:a.jsx(qa,{label:m("Templates"),blockPatterns:u,shownPatterns:d,onClickPattern:z=>{g(z.name),h(!1)}})})})]})},LDt={id:"template",type:"text",label:m("Template"),Edit:BDt,enableSorting:!1};function oN(e){return typeof e.title=="object"&&"rendered"in e.title&&e.title.rendered?Lt(e.title.rendered):`#${e?.id} (${m("no title")})`}function PDt(e){const t=e.map(r=>({children:[],...r}));if(t.some(({parent:r})=>r==null))return t;const n=t.reduce((r,s)=>{const{parent:i}=s;return r[i]||(r[i]=[]),r[i].push(s),r},{}),o=r=>r.map(s=>{const i=n[s.id];return{...s,children:i&&i.length?o(i):[]}});return o(n[0]||[])}const $te=(e,t)=>{const n=ms(e||"").toLowerCase(),o=ms(t||"").toLowerCase();return n===o?0:n.startsWith(o)?n.length:1/0};function jDt({data:e,onChangeControl:t}){const[n,o]=x.useState(null),r=e.parent,s=e.id,i=e.type,{parentPostTitle:c,pageItems:l,isHierarchical:u}=G(b=>{const{getEntityRecord:h,getEntityRecords:g,getPostType:z}=b(Me),A=z(i),_=A?.hierarchical&&A.viewable,v=r?h("postType",i,r):null,M={per_page:100,exclude:s,parent_exclude:s,orderby:"menu_order",order:"asc",_fields:"id,title,parent",...n!==null&&{search:n}};return{isHierarchical:_,parentPostTitle:v?oN(v):"",pageItems:_?g("postType",i,M):null}},[n,r,s,i]),d=x.useMemo(()=>{const b=(A,_=0)=>A.map(y=>[{value:y.id,label:"— ".repeat(_)+Lt(y.name),rawName:y.name},...b(y.children||[],_+1)]).sort(([y],[k])=>{const S=$te(y.rawName,n??""),C=$te(k.rawName,n??"");return S>=C?1:-1}).flat();if(!l)return[];let h=l.map(A=>{var _;return{id:A.id,parent:(_=A.parent)!==null&&_!==void 0?_:null,name:oN(A)}});n||(h=PDt(h));const g=b(h),z=g.find(A=>A.value===r);return r&&c&&!z&&g.unshift({value:r,label:c,rawName:""}),g.map(A=>({...A,value:A.value.toString()}))},[l,n,c,r]);if(!u)return null;const p=b=>{o(b)},f=b=>{if(b){var h;return t((h=parseInt(b,10))!==null&&h!==void 0?h:0)}t(0)};return a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Parent"),help:m("Choose a parent page."),value:r?.toString(),options:d,onFilterValueChange:F1(b=>p(b),300),onChange:f,hideLabelFromVision:!0})}const IDt=({data:e,field:t,onChange:n})=>{const{id:o}=t,r=G(i=>i(Me).getEntityRecord("root","__unstableBase")?.home,[]),s=x.useCallback(i=>n({[o]:i}),[o,n]);return a.jsx("fieldset",{className:"fields-controls__parent",children:a.jsxs("div",{children:[cr(xe(m('Child pages inherit characteristics from their parent, such as URL structure. For instance, if "Pricing" is a child of "Services", its URL would be %1$s<wbr />/services<wbr />/pricing.'),Ph(r).replace(/([/.])/g,"<wbr />$1")),{wbr:a.jsx("wbr",{})}),a.jsx("p",{children:cr(m("They also show up as sub-items in the default navigation menu. <a>Learn more.</a>"),{a:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#page-attributes"),children:void 0})})}),a.jsx(jDt,{data:e,onChangeControl:s})]})})},DDt=({item:e})=>{const t=G(n=>{const{getEntityRecord:o}=n(Me);return e?.parent?o("postType",e.type,e.parent):null},[e.parent,e.type]);return t?a.jsx(a.Fragment,{children:oN(t)}):a.jsx(a.Fragment,{children:m("None")})},FDt={id:"parent",type:"text",label:m("Parent"),Edit:IDt,render:DDt,enableSorting:!0};function $Dt({data:e,onChange:t,field:n}){const[o,r]=x.useState(!!n.getValue({item:e})),s=i=>{r(i),i||t({password:""})};return a.jsxs(dt,{as:"fieldset",spacing:4,className:"fields-controls__password",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Password protected"),help:m("Only visible to those who know the password"),checked:o,onChange:s}),o&&a.jsx("div",{className:"fields-controls__password-input",children:a.jsx(dn,{label:m("Password"),onChange:i=>t({password:i}),value:n.getValue({item:e})||"",placeholder:m("Use a secure password"),type:"text",__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,maxLength:255})})]})}const VDt={id:"password",type:"text",Edit:$Dt,enableSorting:!1,enableHiding:!1,isVisible:e=>e.status!=="private"},wOe=[{value:"draft",label:m("Draft"),icon:B8,description:m("Not ready to publish.")},{value:"future",label:m("Scheduled"),icon:Pde,description:m("Publish automatically on a chosen date.")},{value:"pending",label:m("Pending Review"),icon:Ode,description:m("Waiting for review before publishing.")},{value:"private",label:m("Private"),icon:gde,description:m("Only visible to site admins and editors.")},{value:"publish",label:m("Published"),icon:Iw,description:m("Visible to everyone.")},{value:"trash",label:m("Trash"),icon:K3}];function HDt({item:e}){const t=wOe.find(({value:r})=>r===e.status),n=t?.label||e.status,o=t?.icon;return a.jsxs(Ot,{alignment:"left",spacing:0,children:[o&&a.jsx("div",{className:"edit-site-post-list__status-icon",children:a.jsx(qo,{icon:o})}),a.jsx("span",{children:n})]})}const UDt="isAny",XDt={label:m("Status"),id:"status",type:"text",elements:wOe,render:HDt,Edit:"radio",enableSorting:!1,filterBy:{operators:[UDt]}},GDt={id:"comment_status",label:m("Discussion"),type:"text",Edit:"radio",enableSorting:!1,filterBy:{operators:[]},elements:[{value:"open",label:m("Open"),description:m("Visitors can add new comments and replies.")},{value:"closed",label:m("Closed"),description:m("Visitors cannot add new comments or replies. Existing comments remain visible.")}]},Vg=e=>r0(Sa().formats.datetimeAbbreviated,_f(e)),KDt=({item:e})=>{var t,n,o,r;if(["draft","private"].includes((t=e.status)!==null&&t!==void 0?t:"")){var i;return cr(xe(m("<span>Modified: <time>%s</time></span>"),Vg((i=e.date)!==null&&i!==void 0?i:null)),{span:a.jsx("span",{}),time:a.jsx("time",{})})}if(e.status==="future"){var l;return cr(xe(m("<span>Scheduled: <time>%s</time></span>"),Vg((l=e.date)!==null&&l!==void 0?l:null)),{span:a.jsx("span",{}),time:a.jsx("time",{})})}if(e.status==="publish"){var d;return cr(xe(m("<span>Published: <time>%s</time></span>"),Vg((d=e.date)!==null&&d!==void 0?d:null)),{span:a.jsx("span",{}),time:a.jsx("time",{})})}const p=_f((n=e.modified)!==null&&n!==void 0?n:null)>_f((o=e.date)!==null&&o!==void 0?o:null)?e.modified:e.date;return e.status==="pending"?cr(xe(m("<span>Modified: <time>%s</time></span>"),Vg(p??null)),{span:a.jsx("span",{}),time:a.jsx("time",{})}):a.jsx("time",{children:Vg((r=e.date)!==null&&r!==void 0?r:null)})},YDt={id:"date",type:"datetime",label:m("Date"),render:KDt};function ZDt({item:e}){const{text:t,imageUrl:n}=G(s=>{const{getEntityRecord:i}=s(Me);let c;return e.author&&(c=i("root","user",e.author)),{imageUrl:c?.avatar_urls?.[48],text:c?.name}},[e]),[o,r]=x.useState(!1);return a.jsxs(Ot,{alignment:"left",spacing:0,children:[!!n&&a.jsx("div",{className:oe("page-templates-author-field__avatar",{"is-loaded":o}),children:a.jsx("img",{onLoad:()=>r(!0),alt:m("Author avatar"),src:n})}),!n&&a.jsx("div",{className:"page-templates-author-field__icon",children:a.jsx(qo,{icon:WP})}),a.jsx("span",{className:"page-templates-author-field__name",children:t})]})}const QDt={label:m("Author"),id:"author",type:"integer",elements:[],render:ZDt,sort:(e,t,n)=>{const o=e._embedded?.author?.[0]?.name||"",r=t._embedded?.author?.[0]?.name||"";return n==="asc"?o.localeCompare(r):r.localeCompare(o)}},JDt={id:"view-post",label:We("View","verb"),isPrimary:!0,icon:vf,isEligible(e){return e.status!=="trash"},callback(e,{onActionPerformed:t}){const n=e[0];window.open(n?.link,"_blank"),t&&t(e)}};function eFt(e,t,n){return n==="asc"?e-t:t-e}function tFt(e,t){return!(e===""||!Number.isInteger(Number(e))||t?.elements&&!(t?.elements.map(o=>o.value)).includes(Number(e)))}const nFt={sort:eFt,isValid:tFt,Edit:"integer"};function oFt(e,t,n){return n==="asc"?e.localeCompare(t):t.localeCompare(e)}function rFt(e,t){return!(t?.elements&&!(t?.elements?.map(o=>o.value)).includes(e))}const sFt={sort:oFt,isValid:rFt,Edit:"text"};function iFt(e,t,n){const o=new Date(e).getTime(),r=new Date(t).getTime();return n==="asc"?o-r:r-o}function aFt(e,t){return!(t?.elements&&!(t?.elements.map(o=>o.value)).includes(e))}const cFt={sort:iFt,isValid:aFt,Edit:"datetime"};function lFt(e){return e==="integer"?nFt:e==="text"?sFt:e==="datetime"?cFt:{sort:(t,n,o)=>typeof t=="number"&&typeof n=="number"?o==="asc"?t-n:n-t:o==="asc"?t.localeCompare(n):n.localeCompare(t),isValid:(t,n)=>!(n?.elements&&!(n?.elements?.map(r=>r.value)).includes(t)),Edit:()=>null}}function uFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){const{id:r,label:s}=t,i=t.getValue({item:e}),c=x.useCallback(l=>n({[r]:l}),[r,n]);return a.jsxs("fieldset",{className:"dataviews-controls__datetime",children:[!o&&a.jsx(no.VisualLabel,{as:"legend",children:s}),o&&a.jsx(qn,{as:"legend",children:s}),a.jsx(lO,{currentTime:i,onChange:c,hideLabelFromVision:!0})]})}function dFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){var r;const{id:s,label:i,description:c}=t,l=(r=t.getValue({item:e}))!==null&&r!==void 0?r:"",u=x.useCallback(d=>n({[s]:Number(d)}),[s,n]);return a.jsx(g0,{label:i,help:c,value:l,onChange:u,__next40pxDefaultSize:!0,hideLabelFromVision:o})}function pFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){const{id:r,label:s}=t,i=t.getValue({item:e}),c=x.useCallback(l=>n({[r]:l}),[r,n]);return t.elements?a.jsx(sb,{label:s,onChange:c,options:t.elements,selected:i,hideLabelFromVision:o}):null}function fFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){var r,s;const{id:i,label:c}=t,l=(r=t.getValue({item:e}))!==null&&r!==void 0?r:"",u=x.useCallback(p=>n({[i]:p}),[i,n]),d=[{label:m("Select item"),value:""},...(s=t?.elements)!==null&&s!==void 0?s:[]];return a.jsx(Pn,{label:c,value:l,options:d,onChange:u,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,hideLabelFromVision:o})}function bFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){const{id:r,label:s,placeholder:i}=t,c=t.getValue({item:e}),l=x.useCallback(u=>n({[r]:u}),[r,n]);return a.jsx(dn,{label:s,placeholder:i,value:c??"",onChange:l,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,hideLabelFromVision:o})}const Vte={datetime:uFt,integer:dFt,radio:pFt,select:fFt,text:bFt};function hFt(e,t){return typeof e.Edit=="function"?e.Edit:typeof e.Edit=="string"?MT(e.Edit):e.elements?MT("select"):typeof t.Edit=="string"?MT(t.Edit):t.Edit}function MT(e){if(Object.keys(Vte).includes(e))return Vte[e];throw"Control "+e+" not found"}const mFt=e=>({item:t})=>{const n=e.split(".");let o=t;for(const r of n)o.hasOwnProperty(r)?o=o[r]:o=void 0;return o};function _Oe(e){return e.map(t=>{var n,o,r,s;const i=lFt(t.type),c=t.getValue||mFt(t.id),l=(n=t.sort)!==null&&n!==void 0?n:function(h,g,z){return i.sort(c({item:h}),c({item:g}),z)},u=(o=t.isValid)!==null&&o!==void 0?o:function(h,g){return i.isValid(c({item:h}),g)},d=hFt(t,i),p=({item:b})=>{const h=c({item:b});return t?.elements?.find(g=>g.value===h)?.label||c({item:b})},f=t.render||(t.elements?p:c);return{...t,label:t.label||t.id,header:t.header||t.label||t.id,getValue:c,render:f,sort:l,isValid:u,Edit:d,enableHiding:(r=t.enableHiding)!==null&&r!==void 0?r:!0,enableSorting:(s=t.enableSorting)!==null&&s!==void 0?s:!0}})}const ik=x.createContext({fields:[]});function gFt({fields:e,children:t}){return a.jsx(ik.Provider,{value:{fields:e},children:t})}function hd(e){return e.children!==void 0}function MFt({title:e}){return a.jsx(dt,{className:"dataforms-layouts-regular__header",spacing:4,children:a.jsxs(Ot,{alignment:"center",children:[a.jsx(_a,{level:2,size:13,children:e}),a.jsx(t1,{})]})})}function zFt({data:e,field:t,onChange:n,hideLabelFromVision:o}){var r;const{fields:s}=x.useContext(ik),i=x.useMemo(()=>hd(t)?{fields:t.children.map(u=>typeof u=="string"?{id:u}:u),type:"regular"}:{type:"regular",fields:[]},[t]);if(hd(t))return a.jsxs(a.Fragment,{children:[!o&&t.label&&a.jsx(MFt,{title:t.label}),a.jsx(PI,{data:e,form:i,onChange:n})]});const c=(r=t.labelPosition)!==null&&r!==void 0?r:"top",l=s.find(u=>u.id===t.id);return l?c==="side"?a.jsxs(Ot,{className:"dataforms-layouts-regular__field",children:[a.jsx("div",{className:"dataforms-layouts-regular__field-label",children:l.label}),a.jsx("div",{className:"dataforms-layouts-regular__field-control",children:a.jsx(l.Edit,{data:e,field:l,onChange:n,hideLabelFromVision:!0},l.id)})]}):a.jsx("div",{className:"dataforms-layouts-regular__field",children:a.jsx(l.Edit,{data:e,field:l,onChange:n,hideLabelFromVision:c==="none"?!0:o})}):null}function OFt({title:e,onClose:t}){return a.jsx(dt,{className:"dataforms-layouts-panel__dropdown-header",spacing:4,children:a.jsxs(Ot,{alignment:"center",children:[e&&a.jsx(_a,{level:2,size:13,children:e}),a.jsx(t1,{}),t&&a.jsx(Ce,{label:m("Close"),icon:rp,onClick:t,size:"small"})]})})}function zT({fieldDefinition:e,popoverAnchor:t,labelPosition:n="side",data:o,onChange:r,field:s}){const i=hd(s)?s.label:e?.label,c=x.useMemo(()=>hd(s)?{type:"regular",fields:s.children.map(u=>typeof u=="string"?{id:u}:u)}:{type:"regular",fields:[{id:s.id}]},[s]),l=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]);return a.jsx(so,{contentClassName:"dataforms-layouts-panel__field-dropdown",popoverProps:l,focusOnMount:!0,toggleProps:{size:"compact",variant:"tertiary",tooltipPosition:"middle left"},renderToggle:({isOpen:u,onToggle:d})=>a.jsx(Ce,{className:"dataforms-layouts-panel__field-control",size:"compact",variant:["none","top"].includes(n)?"link":"tertiary","aria-expanded":u,"aria-label":xe(We("Edit %s","field"),i),onClick:d,children:a.jsx(e.render,{item:o})}),renderContent:({onClose:u})=>a.jsxs(a.Fragment,{children:[a.jsx(OFt,{title:i,onClose:u}),a.jsx(PI,{data:o,form:c,onChange:r,children:(d,p)=>{var f;return a.jsx(d,{data:o,field:p,onChange:r,hideLabelFromVision:((f=c?.fields)!==null&&f!==void 0?f:[]).length<2},p.id)}})]})})}function yFt({data:e,field:t,onChange:n}){var o;const{fields:r}=x.useContext(ik),s=r.find(d=>{if(hd(t)){const p=t.children.filter(b=>typeof b=="string"||!hd(b)),f=typeof p[0]=="string"?p[0]:p[0].id;return d.id===f}return d.id===t.id}),i=(o=t.labelPosition)!==null&&o!==void 0?o:"side",[c,l]=x.useState(null);if(!s)return null;const u=hd(t)?t.label:s?.label;return i==="top"?a.jsxs(dt,{className:"dataforms-layouts-panel__field",spacing:0,children:[a.jsx("div",{className:"dataforms-layouts-panel__field-label",style:{paddingBottom:0},children:u}),a.jsx("div",{className:"dataforms-layouts-panel__field-control",children:a.jsx(zT,{field:t,popoverAnchor:c,fieldDefinition:s,data:e,onChange:n,labelPosition:i})})]}):i==="none"?a.jsx("div",{className:"dataforms-layouts-panel__field",children:a.jsx(zT,{field:t,popoverAnchor:c,fieldDefinition:s,data:e,onChange:n,labelPosition:i})}):a.jsxs(Ot,{ref:l,className:"dataforms-layouts-panel__field",children:[a.jsx("div",{className:"dataforms-layouts-panel__field-label",children:u}),a.jsx("div",{className:"dataforms-layouts-panel__field-control",children:a.jsx(zT,{field:t,popoverAnchor:c,fieldDefinition:s,data:e,onChange:n,labelPosition:i})})]})}const AFt=[{type:"regular",component:zFt},{type:"panel",component:yFt}];function vFt(e){return AFt.find(t=>t.type===e)}function xFt(e){var t,n,o;let r="regular";["regular","panel"].includes((t=e.type)!==null&&t!==void 0?t:"")&&(r=e.type);const s=(n=e.labelPosition)!==null&&n!==void 0?n:r==="regular"?"top":"side";return((o=e.fields)!==null&&o!==void 0?o:[]).map(i=>{var c,l;if(typeof i=="string")return{id:i,layout:r,labelPosition:s};const u=(c=i.layout)!==null&&c!==void 0?c:r,d=(l=i.labelPosition)!==null&&l!==void 0?l:u==="regular"?"top":"side";return{...i,layout:u,labelPosition:d}})}function PI({data:e,form:t,onChange:n,children:o}){const{fields:r}=x.useContext(ik);function s(c){const l=typeof c=="string"?c:c.id;return r.find(u=>u.id===l)}const i=x.useMemo(()=>xFt(t),[t]);return a.jsx(dt,{spacing:2,children:i.map(c=>{const l=vFt(c.layout)?.component;if(!l)return null;const u=hd(c)?void 0:s(c);return u&&u.isVisible&&!u.isVisible(e)?null:o?o(l,c):a.jsx(l,{data:e,field:c,onChange:n},c.id)})})}function kOe({data:e,form:t,fields:n,onChange:o}){const r=x.useMemo(()=>_Oe(n),[n]);return t.fields?a.jsx(gFt,{fields:r,children:a.jsx(PI,{data:e,form:t,onChange:o})}):null}function Hte(e,t,n){return _Oe(t.filter(({id:r})=>!!n.fields?.includes(r))).every(r=>r.isValid(e,{elements:r.elements}))}const OT=[gDt],yT={fields:["menu_order"]};function wFt({items:e,closeModal:t,onActionPerformed:n}){const[o,r]=x.useState(e[0]),s=o.menu_order,{editEntityRecord:i,saveEditedEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(f){if(f.preventDefault(),!!Hte(o,OT,yT))try{await i("postType",o.type,o.id,{menu_order:s}),t?.(),await c("postType",o.type,o.id,{throwOnError:!0}),l(m("Order updated."),{type:"snackbar"}),n?.(e)}catch(b){const h=b,g=h.message&&h.code!=="unknown_error"?h.message:m("An error occurred while updating the order");u(g,{type:"snackbar"})}}const p=!Hte(o,OT,yT);return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx("div",{children:m("Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported.")}),a.jsx(kOe,{data:o,fields:OT,form:yT,onChange:f=>r({...o,...f})}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",accessibleWhenDisabled:!0,disabled:p,children:m("Save")})]})]})})}const _Ft={id:"order-pages",label:m("Order"),isEligible({status:e}){return e!=="trash"},RenderModal:wFt},kFt=[bOe],SFt={fields:["title"]},CFt={id:"duplicate-post",label:We("Duplicate","action label"),isEligible({status:e}){return e!=="trash"},RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState({...e[0],title:xe(We("%s (Copy)","post"),Wr(e[0]))}),[s,i]=x.useState(!1),{saveEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(p){if(p.preventDefault(),s)return;const f={status:"draft",title:o.title,slug:o.title||m("No title"),comment_status:o.comment_status,content:typeof o.content=="string"?o.content:o.content.raw,excerpt:typeof o.excerpt=="string"?o.excerpt:o.excerpt?.raw,meta:o.meta,parent:o.parent,password:o.password,template:o.template,format:o.format,featured_media:o.featured_media,menu_order:o.menu_order,ping_status:o.ping_status},b="wp:action-assign-";Object.keys(o?._links||{}).filter(g=>g.startsWith(b)).map(g=>g.slice(b.length)).forEach(g=>{o.hasOwnProperty(g)&&(f[g]=o[g])}),i(!0);try{const g=await c("postType",o.type,f,{throwOnError:!0});l(xe(m('"%s" successfully created.'),Lt(g.title?.rendered||o.title)),{id:"duplicate-post-action",type:"snackbar"}),n&&n([g])}catch(g){const z=g,A=z.message&&z.code!=="unknown_error"?z.message:m("An error occurred while duplicating the page.");u(A,{type:"snackbar"})}finally{i(!1),t?.()}}return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:3,children:[a.jsx(kOe,{data:o,fields:kFt,form:SFt,onChange:p=>r(f=>({...f,...p}))}),a.jsxs(Ot,{spacing:2,justify:"end",children:[a.jsx(Ce,{variant:"tertiary",onClick:t,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",type:"submit",isBusy:s,"aria-disabled":s,__next40pxDefaultSize:!0,children:We("Duplicate","action label")})]})]})})}},{PATTERN_TYPES:Ute}=Wm(Vi),qFt={id:"rename-post",label:m("Rename"),isEligible(e){return e.status==="trash"?!1:["wp_template","wp_template_part",...Object.values(Ute)].includes(e.type)?S9t(e)?uOe(e)&&e.is_custom&&e.permissions?.update:C9t(e)?e.source==="custom"&&!e?.has_theme_file&&e.permissions?.update:e.type===Ute.user&&e.permissions?.update:e.permissions?.update},RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o]=e,[r,s]=x.useState(()=>Wr(o)),{editEntityRecord:i,saveEditedEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(p){p.preventDefault();try{await i("postType",o.type,o.id,{title:r}),s(""),t?.(),await c("postType",o.type,o.id,{throwOnError:!0}),l(m("Name updated"),{type:"snackbar"}),n?.(e)}catch(f){const b=f,h=b.message&&b.code!=="unknown_error"?b.message:m("An error occurred while updating the name");u(h,{type:"snackbar"})}}return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Name"),value:r,onChange:s,required:!0}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Save")})]})]})})}},RFt=e=>e?e.source==="custom"&&(!!e?.plugin||e?.has_theme_file):!1,TFt=async(e,{allowUndo:t=!0}={})=>{const n="edit-site-template-reverted";if(kr(mt).removeNotice(n),!RFt(e)){kr(mt).createErrorNotice(m("This template is not revertable."),{type:"snackbar"});return}try{const o=uo(Me).getEntityConfig("postType",e.type);if(!o){kr(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const r=tn(`${o.baseURL}/${e.id}`,{context:"edit",source:e.origin}),s=await Tt({path:r});if(!s){kr(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const i=({blocks:u=[]})=>Jd(u),c=uo(Me).getEditedEntityRecord("postType",e.type,e.id);kr(Me).editEntityRecord("postType",e.type,e.id,{content:i,blocks:c.blocks,source:"custom"},{undoIgnore:!0});const l=Ko(s?.content?.raw);if(kr(Me).editEntityRecord("postType",e.type,s.id,{content:i,blocks:l,source:"theme"}),t){const u=()=>{kr(Me).editEntityRecord("postType",e.type,c.id,{content:i,blocks:c.blocks,source:"custom"})};kr(mt).createSuccessNotice(m("Template reset."),{type:"snackbar",id:n,actions:[{label:m("Undo"),onClick:u}]})}}catch(o){const r=o.message&&o.code!=="unknown_error"?o.message:m("Template revert failed. Please reload.");kr(mt).createErrorNotice(r,{type:"snackbar"})}},EFt={id:"reset-post",label:m("Reset"),isEligible:e=>qh(e)&&e?.source==="custom"&&(!!(e.type==="wp_template"&&e?.plugin)||e?.has_theme_file),icon:Yue,supportsBulk:!0,hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),{saveEditedEntityRecord:s}=Oe(Me),{createSuccessNotice:i,createErrorNotice:c}=Oe(mt),l=async()=>{try{for(const u of e)await TFt(u,{allowUndo:!1}),await s("postType",u.type,u.id);i(e.length>1?xe(m("%s items reset."),e.length):xe(m('"%s" reset.'),Wr(e[0])),{type:"snackbar",id:"revert-template-action"})}catch(u){let d;e[0].type==="wp_template"?d=e.length===1?m("An error occurred while reverting the template."):m("An error occurred while reverting the templates."):d=e.length===1?m("An error occurred while reverting the template part."):m("An error occurred while reverting the template parts.");const p=u,f=p.message&&p.code!=="unknown_error"?p.message:d;c(f,{type:"snackbar"})}};return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:m("Reset to default and clear all customizations?")}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:async()=>{r(!0),await l(),n?.(e),r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,children:m("Reset")})]})]})}},{CreatePatternModalContents:WFt,useDuplicatePatternProps:NFt}=Wm(Vi),BFt={id:"duplicate-pattern",label:We("Duplicate","action label"),isEligible:e=>e.type!=="wp_template_part",modalHeader:We("Duplicate pattern","action label"),RenderModal:({items:e,closeModal:t})=>{const[n]=e,o=NFt({pattern:n,onSuccess:()=>t?.()});return a.jsx(WFt,{onClose:t,confirmLabel:We("Duplicate","action label"),...o})}};"stream"in Blob.prototype||Object.defineProperty(Blob.prototype,"stream",{value(){return new Response(this).body}}),"setBigUint64"in DataView.prototype||Object.defineProperty(DataView.prototype,"setBigUint64",{value(e,t,n){const o=Number(0xffffffffn&t),r=Number(t>>32n);this.setUint32(e+(n?0:4),o,n),this.setUint32(e+(n?4:0),r,n)}});var Th=e=>new DataView(new ArrayBuffer(e)),Vl=e=>new Uint8Array(e.buffer||e),v2=e=>new TextEncoder().encode(String(e)),uf=e=>Math.min(4294967295,Number(e)),Xte=e=>Math.min(65535,Number(e));function LFt(e,t){if(t===void 0||t instanceof Date||(t=new Date(t)),e instanceof File)return{isFile:1,t:t||new Date(e.lastModified),i:e.stream()};if(e instanceof Response)return{isFile:1,t:t||new Date(e.headers.get("Last-Modified")||Date.now()),i:e.body};if(t===void 0)t=new Date;else if(isNaN(t))throw new Error("Invalid modification date.");if(e===void 0)return{isFile:0,t};if(typeof e=="string")return{isFile:1,t,i:v2(e)};if(e instanceof Blob)return{isFile:1,t,i:e.stream()};if(e instanceof Uint8Array||e instanceof ReadableStream)return{isFile:1,t,i:e};if(e instanceof ArrayBuffer||ArrayBuffer.isView(e))return{isFile:1,t,i:Vl(e)};if(Symbol.asyncIterator in e)return{isFile:1,t,i:SOe(e[Symbol.asyncIterator]())};throw new TypeError("Unsupported input format.")}function SOe(e,t=e){return new ReadableStream({async pull(n){let o=0;for(;n.desiredSize>o;){const r=await e.next();if(!r.value){n.close();break}{const s=PFt(r.value);n.enqueue(s),o+=s.byteLength}}},cancel(n){t.throw?.(n)}})}function PFt(e){return typeof e=="string"?v2(e):e instanceof Uint8Array?e:Vl(e)}function COe(e,t,n){let[o,r]=function(s){return s?s instanceof Uint8Array?[s,1]:ArrayBuffer.isView(s)||s instanceof ArrayBuffer?[Vl(s),1]:[v2(s),0]:[void 0,0]}(t);if(e instanceof File)return{o:AT(o||v2(e.name)),u:BigInt(e.size),l:r};if(e instanceof Response){const s=e.headers.get("content-disposition"),i=s&&s.match(/;\s*filename\*?\s*=\s*(?:UTF-\d+''|)["']?([^;"'\r\n]*)["']?(?:;|$)/i),c=i&&i[1]||e.url&&new URL(e.url).pathname.split("/").findLast(Boolean),l=c&&decodeURIComponent(c),u=n||+e.headers.get("content-length");return{o:AT(o||v2(l)),u:BigInt(u),l:r}}return o=AT(o,e!==void 0||n!==void 0),typeof e=="string"?{o,u:BigInt(v2(e).length),l:r}:e instanceof Blob?{o,u:BigInt(e.size),l:r}:e instanceof ArrayBuffer||ArrayBuffer.isView(e)?{o,u:BigInt(e.byteLength),l:r}:{o,u:jFt(e,n),l:r}}function jFt(e,t){return t>-1?BigInt(t):e?void 0:0n}function AT(e,t=1){if(!e||e.every(n=>n===47))throw new Error("The file must have a name.");if(t)for(;e[e.length-1]===47;)e=e.subarray(0,-1);else e[e.length-1]!==47&&(e=new Uint8Array([...e,47]));return e}var qOe=new Uint32Array(256);for(let e=0;e<256;++e){let t=e;for(let n=0;n<8;++n)t=t>>>1^(1&t&&3988292384);qOe[e]=t}function Gte(e,t=0){t^=-1;for(var n=0,o=e.length;n<o;n++)t=t>>>8^qOe[255&t^e[n]];return(-1^t)>>>0}function ROe(e,t,n=0){const o=e.getSeconds()>>1|e.getMinutes()<<5|e.getHours()<<11,r=e.getDate()|e.getMonth()+1<<5|e.getFullYear()-1980<<9;t.setUint16(n,o,1),t.setUint16(n+2,r,1)}function IFt({o:e,l:t},n){return 8*(!t||(n??function(o){try{DFt.decode(o)}catch{return 0}return 1}(e)))}var DFt=new TextDecoder("utf8",{fatal:1});function FFt(e,t=0){const n=Th(30);return n.setUint32(0,1347093252),n.setUint32(4,754976768|t),ROe(e.t,n,10),n.setUint16(26,e.o.length,1),Vl(n)}async function*$Ft(e){let{i:t}=e;if("then"in t&&(t=await t),t instanceof Uint8Array)yield t,e.m=Gte(t,0),e.u=BigInt(t.length);else{e.u=0n;const n=t.getReader();for(;;){const{value:o,done:r}=await n.read();if(r)break;e.m=Gte(o,e.m),e.u+=BigInt(o.length),yield o}}}function VFt(e,t){const n=Th(16+(t?8:0));return n.setUint32(0,1347094280),n.setUint32(4,e.isFile?e.m:0,1),t?(n.setBigUint64(8,e.u,1),n.setBigUint64(16,e.u,1)):(n.setUint32(8,uf(e.u),1),n.setUint32(12,uf(e.u),1)),Vl(n)}function HFt(e,t,n=0,o=0){const r=Th(46);return r.setUint32(0,1347092738),r.setUint32(4,755182848),r.setUint16(8,2048|n),ROe(e.t,r,12),r.setUint32(16,e.isFile?e.m:0,1),r.setUint32(20,uf(e.u),1),r.setUint32(24,uf(e.u),1),r.setUint16(28,e.o.length,1),r.setUint16(30,o,1),r.setUint16(40,e.isFile?33204:16893,1),r.setUint32(42,uf(t),1),Vl(r)}function UFt(e,t,n){const o=Th(n);return o.setUint16(0,1,1),o.setUint16(2,n-4,1),16&n&&(o.setBigUint64(4,e.u,1),o.setBigUint64(12,e.u,1)),o.setBigUint64(n-8,t,1),Vl(o)}function TOe(e){return e instanceof File||e instanceof Response?[[e],[e]]:[[e.input,e.name,e.size],[e.input,e.lastModified]]}var XFt=e=>function(t){let n=BigInt(22),o=0n,r=0;for(const s of t){if(!s.o)throw new Error("Every file must have a non-empty name.");if(s.u===void 0)throw new Error(`Missing size for file "${new TextDecoder().decode(s.o)}".`);const i=s.u>=0xffffffffn,c=o>=0xffffffffn;o+=BigInt(46+s.o.length+(i&&8))+s.u,n+=BigInt(s.o.length+46+(12*c|28*i)),r||(r=i)}return(r||o>=0xffffffffn)&&(n+=BigInt(76)),n+o}(function*(t){for(const n of t)yield COe(...TOe(n)[0])}(e));function GFt(e,t={}){const n={"Content-Type":"application/zip","Content-Disposition":"attachment"};return(typeof t.length=="bigint"||Number.isInteger(t.length))&&t.length>0&&(n["Content-Length"]=String(t.length)),t.metadata&&(n["Content-Length"]=String(XFt(t.metadata))),new Response(KFt(e,t),{headers:n})}function KFt(e,t={}){const n=function(o){const r=o[Symbol.iterator in o?Symbol.iterator:Symbol.asyncIterator]();return{async next(){const s=await r.next();if(s.done)return s;const[i,c]=TOe(s.value);return{done:0,value:Object.assign(LFt(...c),COe(...i))}},throw:r.throw?.bind(r),[Symbol.asyncIterator](){return this}}}(e);return SOe(async function*(o,r){const s=[];let i=0n,c=0n,l=0;for await(const p of o){const f=IFt(p,r.buffersAreUTF8);yield FFt(p,f),yield new Uint8Array(p.o),p.isFile&&(yield*$Ft(p));const b=p.u>=0xffffffffn,h=12*(i>=0xffffffffn)|28*b;yield VFt(p,b),s.push(HFt(p,i,f,h)),s.push(p.o),h&&s.push(UFt(p,i,h)),b&&(i+=8n),c++,i+=BigInt(46+p.o.length)+p.u,l||(l=b)}let u=0n;for(const p of s)yield p,u+=BigInt(p.length);if(l||i>=0xffffffffn){const p=Th(76);p.setUint32(0,1347094022),p.setBigUint64(4,BigInt(44),1),p.setUint32(12,755182848),p.setBigUint64(24,c,1),p.setBigUint64(32,c,1),p.setBigUint64(40,u,1),p.setBigUint64(48,i,1),p.setUint32(56,1347094023),p.setBigUint64(64,i+u,1),p.setUint32(72,1,1),yield Vl(p)}const d=Th(22);d.setUint32(0,1347093766),d.setUint16(8,Xte(c),1),d.setUint16(10,Xte(c),1),d.setUint32(12,uf(u),1),d.setUint32(16,uf(i),1),yield Vl(d)}(n,t),n)}function Kte(e){return JSON.stringify({__file:e.type,title:Wr(e),content:typeof e.content=="string"?e.content:e.content?.raw,syncStatus:e.wp_pattern_sync_status},null,2)}const YFt={id:"export-pattern",label:m("Export as JSON"),icon:EZe,supportsBulk:!0,isEligible:e=>e.type==="wp_block",callback:async e=>{if(e.length===1)return OX(`${Ti(Wr(e[0])||e[0].slug)}.json`,Kte(e[0]),"application/json");const t={},n=e.map(o=>{const r=Ti(Wr(o)||o.slug);return t[r]=(t[r]||0)+1,{name:`${r+(t[r]>1?"-"+(t[r]-1):"")}.json`,lastModified:new Date,input:Kte(o)}});return OX(m("patterns-export")+".zip",await GFt(n).blob(),"application/zip")}},ZFt={id:"view-post-revisions",context:"list",label(e){var t;const n=(t=e[0]._links?.["version-history"]?.[0]?.count)!==null&&t!==void 0?t:0;return xe(m("View revisions (%s)"),n)},isEligible(e){var t,n;if(e.status==="trash")return!1;const o=(t=e?._links?.["predecessor-version"]?.[0]?.id)!==null&&t!==void 0?t:null,r=(n=e?._links?.["version-history"]?.[0]?.count)!==null&&n!==void 0?n:0;return!!o&&r>1},callback(e,{onActionPerformed:t}){const n=e[0],o=tn("revision.php",{revision:n?._links?.["predecessor-version"]?.[0]?.id});document.location.href=o,t&&t(e)}},QFt={id:"permanently-delete",label:m("Permanently delete"),supportsBulk:!0,icon:K3,isEligible(e){if(qh(e)||e.type==="wp_block")return!1;const{status:t,permissions:n}=e;return t==="trash"&&n?.delete},hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),{createSuccessNotice:s,createErrorNotice:i}=Oe(mt),{deleteEntityRecord:c}=Oe(Me);return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:e.length>1?xe(Dn("Are you sure you want to permanently delete %d item?","Are you sure you want to permanently delete %d items?",e.length),e.length):xe(m('Are you sure you want to permanently delete "%s"?'),Lt(Wr(e[0])))}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",onClick:async()=>{r(!0);const l=await Promise.allSettled(e.map(u=>c("postType",u.type,u.id,{force:!0},{throwOnError:!0})));if(l.every(({status:u})=>u==="fulfilled")){let u;l.length===1?u=xe(m('"%s" permanently deleted.'),Wr(e[0])):u=m("The items were permanently deleted."),s(u,{type:"snackbar",id:"permanently-delete-post-action"}),n?.(e)}else{let u;if(l.length===1){const d=l[0];d.reason?.message?u=d.reason.message:u=m("An error occurred while permanently deleting the item.")}else{const d=new Set,p=l.filter(({status:f})=>f==="rejected");for(const f of p){const b=f;b.reason?.message&&d.add(b.reason.message)}d.size===0?u=m("An error occurred while permanently deleting the items."):d.size===1?u=xe(m("An error occurred while permanently deleting the items: %s"),[...d][0]):u=xe(m("Some errors occurred while permanently deleting the items: %s"),[...d].join(","))}i(u,{type:"snackbar"})}r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Delete permanently")})]})]})}},JFt={id:"restore",label:m("Restore"),isPrimary:!0,icon:Yue,supportsBulk:!0,isEligible(e){return!qh(e)&&e.type!=="wp_block"&&e.status==="trash"&&e.permissions?.update},async callback(e,{registry:t,onActionPerformed:n}){const{createSuccessNotice:o,createErrorNotice:r}=t.dispatch(mt),{editEntityRecord:s,saveEditedEntityRecord:i}=t.dispatch(Me);await Promise.allSettled(e.map(l=>s("postType",l.type,l.id,{status:"draft"})));const c=await Promise.allSettled(e.map(l=>i("postType",l.type,l.id,{throwOnError:!0})));if(c.every(({status:l})=>l==="fulfilled")){let l;e.length===1?l=xe(m('"%s" has been restored.'),Wr(e[0])):e[0].type==="page"?l=xe(m("%d pages have been restored."),e.length):l=xe(m("%d posts have been restored."),e.length),o(l,{type:"snackbar",id:"restore-post-action"}),n&&n(e)}else{let l;if(c.length===1){const u=c[0];u.reason?.message?l=u.reason.message:l=m("An error occurred while restoring the post.")}else{const u=new Set,d=c.filter(({status:p})=>p==="rejected");for(const p of d){const f=p;f.reason?.message&&u.add(f.reason.message)}u.size===0?l=m("An error occurred while restoring the posts."):u.size===1?l=xe(m("An error occurred while restoring the posts: %s"),[...u][0]):l=xe(m("Some errors occurred while restoring the posts: %s"),[...u].join(","))}r(l,{type:"snackbar"})}}},e$t={id:"move-to-trash",label:m("Move to trash"),isPrimary:!0,icon:K3,isEligible(e){return qh(e)||e.type==="wp_block"?!1:!!e.status&&!["auto-draft","trash"].includes(e.status)&&e.permissions?.delete},supportsBulk:!0,hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),{createSuccessNotice:s,createErrorNotice:i}=Oe(mt),{deleteEntityRecord:c}=Oe(Me);return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:e.length===1?xe(m('Are you sure you want to move "%s" to the trash?'),Wr(e[0])):xe(Dn("Are you sure you want to move %d item to the trash ?","Are you sure you want to move %d items to the trash ?",e.length),e.length)}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:async()=>{r(!0);const l=await Promise.allSettled(e.map(u=>c("postType",u.type,u.id.toString(),{},{throwOnError:!0})));if(l.every(({status:u})=>u==="fulfilled")){let u;l.length===1?u=xe(m('"%s" moved to the trash.'),Wr(e[0])):u=xe(Dn("%s item moved to the trash.","%s items moved to the trash.",e.length),e.length),s(u,{type:"snackbar",id:"move-to-trash-action"})}else{let u;if(l.length===1){const d=l[0];d.reason?.message?u=d.reason.message:u=m("An error occurred while moving the item to the trash.")}else{const d=new Set,p=l.filter(({status:f})=>f==="rejected");for(const f of p){const b=f;b.reason?.message&&d.add(b.reason.message)}d.size===0?u=m("An error occurred while moving the items to the trash."):d.size===1?u=xe(m("An error occurred while moving the item to the trash: %s"),[...d][0]):u=xe(m("Some errors occurred while moving the items to the trash: %s"),[...d].join(","))}i(u,{type:"snackbar"})}n&&n(e),r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,children:We("Trash","verb")})]})]})}};function t$t(e){const t=new Set;if(e.length===1){const n=e[0];n.reason?.message&&t.add(n.reason.message)}else{const n=e.filter(({status:o})=>o==="rejected");for(const o of n){const r=o;r.reason?.message&&t.add(r.reason.message)}}return t}const n$t=async(e,t,n)=>{const{createSuccessNotice:o,createErrorNotice:r}=kr(mt),{deleteEntityRecord:s}=kr(Me),i=await Promise.allSettled(e.map(u=>s("postType",u.type,u.id,{force:!0},{throwOnError:!0})));if(i.every(({status:u})=>u==="fulfilled")){var c;let u;i.length===1?u=t.success.messages.getMessage(e[0]):u=t.success.messages.getBatchMessage(e),o(u,{type:(c=t.success.type)!==null&&c!==void 0?c:"snackbar",id:t.success.id}),n.onActionPerformed?.(e)}else{var l;const u=t$t(i);let d="";i.length===1?d=t.error.messages.getMessage(u):d=t.error.messages.getBatchMessage(u),r(d,{type:(l=t.error.type)!==null&&l!==void 0?l:"snackbar",id:t.error.id}),n.onActionError?.()}},{PATTERN_TYPES:o$t}=Wm(Vi),r$t={id:"delete-post",label:m("Delete"),isPrimary:!0,icon:K3,isEligible(e){return qh(e)?uOe(e):e.type===o$t.user},supportsBulk:!0,hideModalHeader:!0,RenderModal:({items:e,closeModal:t,onActionPerformed:n})=>{const[o,r]=x.useState(!1),s=e.every(i=>qh(i)&&i?.has_theme_file);return a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:e.length>1?xe(Dn("Delete %d item?","Delete %d items?",e.length),e.length):xe(We('Delete "%s"?',"template part"),Wr(e[0]))}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{variant:"tertiary",onClick:t,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Cancel")}),a.jsx(Ce,{variant:"primary",onClick:async()=>{r(!0),await n$t(e,{success:{messages:{getMessage:c=>xe(s?m('"%s" reset.'):We('"%s" deleted.',"template part"),Lt(Wr(c))),getBatchMessage:()=>m(s?"Items reset.":"Items deleted.")}},error:{messages:{getMessage:c=>c.size===1?[...c][0]:m(s?"An error occurred while reverting the item.":"An error occurred while deleting the item."),getBatchMessage:c=>c.size===0?m(s?"An error occurred while reverting the items.":"An error occurred while deleting the items."):c.size===1?s?xe(m("An error occurred while reverting the items: %s"),[...c][0]):xe(m("An error occurred while deleting the items: %s"),[...c][0]):s?xe(m("Some errors occurred while reverting the items: %s"),[...c].join(",")):xe(m("Some errors occurred while deleting the items: %s"),[...c].join(","))}}},{onActionPerformed:n}),r(!1),t?.()},isBusy:o,disabled:o,accessibleWhenDisabled:!0,__next40pxDefaultSize:!0,children:m("Delete")})]})]})}},s$t=()=>{var e;return(e=G(t=>t(Me).getEntityRecords("postType","wp_template_part",{per_page:-1}),[]))!==null&&e!==void 0?e:[]},i$t=(e,t)=>{const n=e.toLowerCase(),o=t.map(s=>s.title.rendered.toLowerCase());if(!o.includes(n))return e;let r=2;for(;o.includes(`${n} ${r}`);)r++;return`${e} ${r}`},a$t=e=>Ti(e).replace(/[^\w-]+/g,"")||"wp-custom-part";function Yte(e,t){return`fields-create-template-part-modal__area-option-${e}-${t}`}function Zte(e,t){return`fields-create-template-part-modal__area-option-description-${e}-${t}`}function jI({modalTitle:e,...t}){const n=G(o=>o(Me).getPostType("wp_template_part")?.labels?.add_new_item,[]);return a.jsx(Zo,{title:e||n,onRequestClose:t.closeModal,overlayClassName:"fields-create-template-part-modal",focusOnMount:"firstContentElement",size:"medium",children:a.jsx(EOe,{...t})})}const c$t=e=>e==="header"?KP:e==="footer"?GP:e==="sidebar"?YP:Qf;function EOe({defaultArea:e="uncategorized",blocks:t=[],confirmLabel:n=m("Add"),closeModal:o,onCreate:r,onError:s,defaultTitle:i=""}){const{createErrorNotice:c}=Oe(mt),{saveEntityRecord:l}=Oe(Me),u=s$t(),[d,p]=x.useState(i),[f,b]=x.useState(e),[h,g]=x.useState(!1),z=vt(jI),A=G(v=>v(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas,[]);async function _(){if(!(!d||h))try{g(!0);const v=i$t(d,u),M=a$t(v),y=await l("postType","wp_template_part",{slug:M,title:v,content:Ks(t),area:f},{throwOnError:!0});await r(y)}catch(v){const M=v instanceof Error&&"code"in v&&v.message&&v.code!=="unknown_error"?v.message:m("An error occurred while creating the template part.");c(M,{type:"snackbar"}),s?.()}finally{g(!1)}}return a.jsx("form",{onSubmit:async v=>{v.preventDefault(),await _()},children:a.jsxs(dt,{spacing:"4",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Name"),value:d,onChange:p,required:!0}),a.jsxs("fieldset",{children:[a.jsx(no.VisualLabel,{as:"legend",children:m("Area")}),a.jsx("div",{className:"fields-create-template-part-modal__area-radio-group",children:(A??[]).map(v=>{const M=c$t(v.icon);return a.jsxs("div",{className:"fields-create-template-part-modal__area-radio-wrapper",children:[a.jsx("input",{type:"radio",id:Yte(v.area,z),name:`fields-create-template-part-modal__area-${z}`,value:v.area,checked:f===v.area,onChange:()=>{b(v.area)},"aria-describedby":Zte(v.area,z)}),a.jsx(qo,{icon:M,className:"fields-create-template-part-modal__area-radio-icon"}),a.jsx("label",{htmlFor:Yte(v.area,z),className:"fields-create-template-part-modal__area-radio-label",children:v.label}),a.jsx(qo,{icon:M0,className:"fields-create-template-part-modal__area-radio-checkmark"}),a.jsx("p",{className:"fields-create-template-part-modal__area-radio-description",id:Zte(v.area,z),children:v.description})]},v.area)})})]}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{o()},children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit","aria-disabled":!d||h,isBusy:h,children:n})]})]})})}const l$t={id:"duplicate-template-part",label:We("Duplicate","action label"),isEligible:e=>e.type==="wp_template_part",modalHeader:We("Duplicate template part","action label"),RenderModal:({items:e,closeModal:t})=>{const[n]=e,o=x.useMemo(()=>{var i;return(i=n.blocks)!==null&&i!==void 0?i:Ko(typeof n.content=="string"?n.content:n.content.raw,{__unstableSkipMigrationLogs:!0})},[n.content,n.blocks]),{createSuccessNotice:r}=Oe(mt);function s(i){r(xe(We('"%s" duplicated.',"template part"),Wr(i)),{type:"snackbar",id:"edit-site-patterns-success"}),t?.()}return a.jsx(EOe,{blocks:o,defaultArea:n.area,defaultTitle:xe(We("%s (Copy)","template part"),Wr(n)),onCreate:s,onError:t,confirmLabel:We("Duplicate","action label"),closeModal:t??(()=>{})})}};function u$t(e,t,n){if(!n)return t;let o=e.get(t);return o||(o=W5({"core/block-editor":f_},t),o.registerStore("core/editor",XOe),e.set(t,o)),o}const d$t=Or(e=>({useSubRegistry:t=!0,...n})=>{const o=Fn(),[r]=x.useState(()=>new WeakMap),s=u$t(r,o,t);return s===o?a.jsx(e,{registry:o,...n}):a.jsx(KN,{value:s,children:a.jsx(e,{registry:s,...n})})},"withRegistryProvider"),Bu=(e,t)=>`<a ${rN(e)}>${t}</a>`,rN=e=>`href="${e}" target="_blank" rel="noreferrer noopener"`,p$t=(e,t)=>{let n=e.trim();return e!=="pdm"&&(n=e.toUpperCase().replace("SAMPLING","Sampling")),t&&(n+=` ${t}`),["pdm","cc0"].includes(e)||(n=`CC ${n}`),n},f$t=e=>{const{title:t,foreign_landing_url:n,creator:o,creator_url:r,license:s,license_version:i,license_url:c}=e,l=p$t(s,i),u=Lt(o);let d;return u?d=t?xe(We('"%1$s" by %2$s/ %3$s',"caption"),Bu(n,Lt(t)),r?Bu(r,u):u,c?Bu(`${c}?ref=openverse`,l):l):xe(We("<a %1$s>Work</a> by %2$s/ %3$s","caption"),rN(n),r?Bu(r,u):u,c?Bu(`${c}?ref=openverse`,l):l):d=t?xe(We('"%1$s"/ %2$s',"caption"),Bu(n,Lt(t)),c?Bu(`${c}?ref=openverse`,l):l):xe(We("<a %1$s>Work</a>/ %2$s","caption"),rN(n),c?Bu(`${c}?ref=openverse`,l):l),d.replace(/\s{2}/g," ")},vT=async(e={})=>(await j0e(Me).getMediaItems({...e,orderBy:e?.search?"relevance":"date"})).map(n=>({...n,alt:n.alt_text,url:n.source_url,previewUrl:n.media_details?.sizes?.medium?.source_url,caption:n.caption?.raw})),b$t=[{name:"images",labels:{name:m("Images"),search_items:m("Search images")},mediaType:"image",async fetch(e={}){return vT({...e,media_type:"image"})}},{name:"videos",labels:{name:m("Videos"),search_items:m("Search videos")},mediaType:"video",async fetch(e={}){return vT({...e,media_type:"video"})}},{name:"audio",labels:{name:m("Audio"),search_items:m("Search audio")},mediaType:"audio",async fetch(e={}){return vT({...e,media_type:"audio"})}},{name:"openverse",labels:{name:m("Openverse"),search_items:m("Search Openverse")},mediaType:"image",async fetch(e={}){const n={...e,...{mature:!1,excluded_source:"flickr,inaturalist,wikimedia",license:"pdm,cc0"}},o={per_page:"page_size",search:"q"},r=new URL("https://api.openverse.org/v1/images/");return Object.entries(n).forEach(([l,u])=>{const d=o[l]||l;r.searchParams.set(d,u)}),(await(await window.fetch(r,{headers:{"User-Agent":"WordPress/inserter-media-fetch"}})).json()).results.map(l=>({...l,title:l.title?.toLowerCase().startsWith("file:")?l.title.slice(5):l.title,sourceId:l.id,id:void 0,caption:f$t(l),previewUrl:l.thumbnail}))},getReportUrl:({sourceId:e})=>`https://wordpress.org/openverse/image/${e}/report/`,isExternalResource:!0}],h$t=()=>{};function m$t({additionalData:e={},allowedTypes:t,filesList:n,maxUploadFileSize:o,onError:r=h$t,onFileChange:s,onSuccess:i}){const{getCurrentPost:c,getEditorSettings:l}=uo(_e),{lockPostAutosaving:u,unlockPostAutosaving:d,lockPostSaving:p,unlockPostSaving:f}=kr(_e),b=l().allowedMimeTypes,h=`image-upload-${Is()}`;let g=!1;o=o||l().maxUploadFileSize;const z=c(),A=typeof z?.id=="number"?z.id:z?.wp_id,_=()=>{p(h),u(h),g=!0},v=A?{post:A}:{},M=()=>{f(h),d(h),g=!1};SDt({allowedTypes:t,filesList:n,onFileChange:y=>{g?M():_(),s?.(y)},onSuccess:i,additionalData:{...v,...e},maxUploadFileSize:o,onError:({message:y})=>{M(),r(y)},wpAllowedMimeTypes:b})}const{sideloadMedia:g$t}=St(xOe),{GlobalStylesContext:M$t,cleanEmptyObject:xT}=St(jn);function WOe(e,t){return B0e(e,t,{isMergeableObject:a3,customMerge:n=>{if(n==="backgroundImage")return(o,r)=>r}})}function z$t(){const{globalStylesId:e,isReady:t,settings:n,styles:o,_links:r}=G(u=>{const{getEntityRecord:d,getEditedEntityRecord:p,hasFinishedResolution:f,canUser:b}=u(Me),h=u(Me).__experimentalGetCurrentGlobalStylesId();let g;const z=h?b("update",{kind:"root",name:"globalStyles",id:h}):null;h&&typeof z=="boolean"&&(z?g=p("root","globalStyles",h):g=d("root","globalStyles",h,{context:"view"}));let A=!1;return f("__experimentalGetCurrentGlobalStylesId")&&(h?A=z?f("getEditedEntityRecord",["root","globalStyles",h]):f("getEntityRecord",["root","globalStyles",h,{context:"view"}]):A=!0),{globalStylesId:h,isReady:A,settings:g?.settings,styles:g?.styles,_links:g?._links}},[]),{getEditedEntityRecord:s}=G(Me),{editEntityRecord:i}=Oe(Me),c=x.useMemo(()=>({settings:n??{},styles:o??{},_links:r??{}}),[n,o,r]),l=x.useCallback((u,d={})=>{var p,f,b;const h=s("root","globalStyles",e),g={styles:(p=h?.styles)!==null&&p!==void 0?p:{},settings:(f=h?.settings)!==null&&f!==void 0?f:{},_links:(b=h?._links)!==null&&b!==void 0?b:{}},z=typeof u=="function"?u(g):u;i("root","globalStyles",e,{styles:xT(z.styles)||{},settings:xT(z.settings)||{},_links:xT(z._links)||{}},d)},[e,i,s]);return[t,c,l]}function O$t(){const e=G(t=>t(Me).__experimentalGetCurrentThemeBaseGlobalStyles(),[]);return[!!e,e]}function II(){const[e,t,n]=z$t(),[o,r]=O$t(),s=x.useMemo(()=>!r||!t?{}:WOe(r,t),[t,r]);return x.useMemo(()=>({isReady:e&&o,user:t,base:r,merged:s,setUserConfig:n}),[s,t,r,n,e,o])}function y$t({children:e}){const t=II();return t.isReady?a.jsx(M$t.Provider,{value:t,children:e}):null}const Qte={};function A$t(e){const{RECEIVE_INTERMEDIATE_RESULTS:t}=St(G3e),{getEntityRecords:n}=e(Me);return n("postType","wp_block",{per_page:-1,[t]:!0})}const v$t=["__experimentalBlockDirectory","__experimentalDiscussionSettings","__experimentalFeatures","__experimentalGlobalStylesBaseStyles","alignWide","blockInspectorTabs","maxUploadFileSize","allowedMimeTypes","bodyPlaceholder","canLockBlocks","canUpdateBlockBindings","capabilities","clearBlockSelection","codeEditingEnabled","colors","disableCustomColors","disableCustomFontSizes","disableCustomSpacingSizes","disableCustomGradients","disableLayoutStyles","enableCustomLineHeight","enableCustomSpacing","enableCustomUnits","enableOpenverseMediaCategory","fontSizes","gradients","generateAnchors","onNavigateToEntityRecord","imageDefaultSize","imageDimensions","imageEditing","imageSizes","isPreviewMode","isRTL","locale","maxWidth","postContentAttributes","postsPerPage","readOnly","styles","titlePlaceholder","supportsLayout","widgetTypesToHideFromLegacyWidgetBlock","__unstableHasCustomAppender","__unstableResolvedAssets","__unstableIsBlockBasedTheme"],{globalStylesDataKey:x$t,globalStylesLinksDataKey:w$t,selectBlockPatternsKey:_$t,reusableBlocksSelectKey:k$t,sectionRootClientIdKey:S$t}=St(jn);function C$t(e,t,n,o){var r,s,i,c;const l=Yn("medium"),{allowRightClickOverrides:u,blockTypes:d,focusMode:p,hasFixedToolbar:f,isDistractionFree:b,keepCaretInsideBlock:h,hasUploadPermissions:g,hiddenBlockTypes:z,canUseUnfilteredHTML:A,userCanCreatePages:_,pageOnFront:v,pageForPosts:M,userPatternCategories:y,restBlockPatternCategories:k,sectionRootClientId:S}=G(V=>{var ee;const{canUser:te,getRawEntityRecord:J,getEntityRecord:ue,getUserPatternCategories:ce,getBlockPatternCategories:me}=V(Me),{get:de}=V(ht),{getBlockTypes:Ae}=V(kt),{getBlocksByName:ye,getBlockAttributes:Ne}=V(Q),je=te("read",{kind:"root",name:"site"})?ue("root","site"):void 0;function ie(){var we;if(o==="template-locked"){var re;return(re=ye("core/post-content")?.[0])!==null&&re!==void 0?re:""}return(we=ye("core/group").find(pe=>Ne(pe)?.tagName==="main"))!==null&&we!==void 0?we:""}return{allowRightClickOverrides:de("core","allowRightClickOverrides"),blockTypes:Ae(),canUseUnfilteredHTML:J("postType",t,n)?._links?.hasOwnProperty("wp:action-unfiltered-html"),focusMode:de("core","focusMode"),hasFixedToolbar:de("core","fixedToolbar")||!l,hiddenBlockTypes:de("core","hiddenBlockTypes"),isDistractionFree:de("core","distractionFree"),keepCaretInsideBlock:de("core","keepCaretInsideBlock"),hasUploadPermissions:(ee=te("create",{kind:"root",name:"media"}))!==null&&ee!==void 0?ee:!0,userCanCreatePages:te("create",{kind:"postType",name:"page"}),pageOnFront:je?.page_on_front,pageForPosts:je?.page_for_posts,userPatternCategories:ce(),restBlockPatternCategories:me(),sectionRootClientId:ie()}},[t,n,l,o]),{merged:C}=II(),R=(r=C.styles)!==null&&r!==void 0?r:Qte,T=(s=C._links)!==null&&s!==void 0?s:Qte,E=(i=e.__experimentalAdditionalBlockPatterns)!==null&&i!==void 0?i:e.__experimentalBlockPatterns,B=(c=e.__experimentalAdditionalBlockPatternCategories)!==null&&c!==void 0?c:e.__experimentalBlockPatternCategories,N=x.useMemo(()=>[...E||[]].filter(({postTypes:V})=>!V||Array.isArray(V)&&V.includes(t)),[E,t]),j=x.useMemo(()=>[...B||[],...k||[]].filter((V,ee,te)=>ee===te.findIndex(J=>V.name===J.name)),[B,k]),{undo:I,setIsInserterOpened:P}=Oe(_e),{saveEntityRecord:$}=Oe(Me),F=x.useCallback(V=>_?$("postType","page",V):Promise.reject({message:m("You do not have permission to create Pages.")}),[$,_]),X=x.useMemo(()=>z&&z.length>0?(e.allowedBlockTypes===!0?d.map(({name:ee})=>ee):e.allowedBlockTypes||[]).filter(ee=>!z.includes(ee)):e.allowedBlockTypes,[e.allowedBlockTypes,z,d]),Z=e.focusMode===!1;return x.useMemo(()=>({...Object.fromEntries(Object.entries(e).filter(([ee])=>v$t.includes(ee))),[x$t]:R,[w$t]:T,allowedBlockTypes:X,allowRightClickOverrides:u,focusMode:p&&!Z,hasFixedToolbar:f,isDistractionFree:b,keepCaretInsideBlock:h,mediaUpload:g?m$t:void 0,mediaSideload:g?g$t:void 0,__experimentalBlockPatterns:N,[_$t]:ee=>{const{hasFinishedResolution:te,getBlockPatternsForPostType:J}=St(ee(Me)),ue=J(t);return te("getBlockPatterns")?ue:void 0},[k$t]:A$t,__experimentalBlockPatternCategories:j,__experimentalUserPatternCategories:y,__experimentalFetchLinkSuggestions:(ee,te)=>fBe(ee,te,e),inserterMediaCategories:b$t,__experimentalFetchRichUrlData:hBe,__experimentalCanUserUseUnfilteredHTML:A,__experimentalUndo:I,outlineMode:!b&&t==="wp_template",__experimentalCreatePageEntity:F,__experimentalUserCanCreatePages:_,pageOnFront:v,pageForPosts:M,__experimentalPreferPatternsOnRoot:t==="wp_template",templateLock:t==="wp_navigation"?"insert":e.templateLock,template:t==="wp_navigation"?[["core/navigation",{},[]]]:e.template,__experimentalSetIsInserterOpened:P,[S$t]:S,editorTool:o==="post-only"&&t!=="wp_template"?"edit":void 0}),[X,u,p,Z,f,b,h,e,g,y,N,j,A,I,F,_,v,M,t,P,S,R,T,o])}const q$t=["core/post-title","core/post-featured-image","core/post-content"];function NOe(){const e=x.useMemo(()=>[...gr("editor.postContentBlockTypes",q$t)],[]);return G(n=>{const{getPostBlocksByName:o}=St(n(_e));return o(e)},[e])}function R$t(){const e=NOe(),{templateParts:t,isNavigationMode:n}=G(s=>{const{getBlocksByName:i,isNavigationMode:c}=s(Q);return{templateParts:i("core/template-part"),isNavigationMode:c()}},[]),o=G(s=>{const{getBlockOrder:i}=s(Q);return t.flatMap(c=>i(c))},[t]),r=Fn();return x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return s("","disabled"),()=>{i("")}},[r]),x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return r.batch(()=>{for(const c of e)s(c,"contentOnly")}),()=>{r.batch(()=>{for(const c of e)i(c)})}},[e,r]),x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return r.batch(()=>{if(!n)for(const c of t)s(c,"contentOnly")}),()=>{r.batch(()=>{if(!n)for(const c of t)i(c)})}},[t,n,r]),x.useEffect(()=>{const{setBlockEditingMode:s,unsetBlockEditingMode:i}=r.dispatch(Q);return r.batch(()=>{for(const c of o)s(c,"disabled")}),()=>{r.batch(()=>{for(const c of o)i(c)})}},[o,r]),null}function T$t(){const e=G(o=>o(Q).getBlockOrder()?.[0],[]),{setBlockEditingMode:t,unsetBlockEditingMode:n}=Oe(Q);x.useEffect(()=>{if(e)return t(e,"contentOnly"),()=>{n(e)}},[e,n,t])}const Jte=["wp_block","wp_template","wp_template_part"];function E$t(e,t){x.useEffect(()=>(Bn("blockEditor.__unstableCanInsertBlockType","removeTemplatePartsFromInserter",(n,o)=>!Jte.includes(e)&&o.name==="core/template-part"&&t==="post-only"?!1:n),Bn("blockEditor.__unstableCanInsertBlockType","removePostContentFromInserter",(n,o,r,{getBlockParentsByBlockName:s})=>!Jte.includes(e)&&o.name==="core/post-content"?s(r,"core/query").length>0:n),()=>{zE("blockEditor.__unstableCanInsertBlockType","removeTemplatePartsFromInserter"),zE("blockEditor.__unstableCanInsertBlockType","removePostContentFromInserter")}),[e,t])}function W$t(e={},t){switch(t.type){case"SET_IS_MATCHING":return t.values}return e}function N$t(e){return{type:"SET_IS_MATCHING",values:e}}const B$t=Object.freeze(Object.defineProperty({__proto__:null,setIsMatching:N$t},Symbol.toStringTag,{value:"Module"}));function L$t(e,t){return t.indexOf(" ")===-1&&(t=">= "+t),!!e[t]}const P$t=Object.freeze(Object.defineProperty({__proto__:null,isViewportMatch:L$t},Symbol.toStringTag,{value:"Module"})),j$t="core/viewport",e5=x1(j$t,{reducer:W$t,actions:B$t,selectors:P$t});Us(e5);const I$t=(e,t)=>{const n=F1(()=>{const s=Object.fromEntries(r.map(([i,c])=>[i,c.matches]));kr(e5).setIsMatching(s)},0,{leading:!0}),o=Object.entries(t),r=Object.entries(e).flatMap(([s,i])=>o.map(([c,l])=>{const u=window.matchMedia(`(${l}: ${i}px)`);return u.addEventListener("change",n),[`${c} ${s}`,u]}));window.addEventListener("orientationchange",n),n(),n.flush()},D$t={huge:1440,wide:1280,large:960,medium:782,small:600,mobile:480},F$t={"<":"max-width",">=":"min-width"};I$t(D$t,F$t);const BOe=x.createContext({name:null,icon:null});BOe.Provider;function PO(){return x.useContext(BOe)}Hs((e,t)=>({icon:e,name:t}));function fp(e){return["core/edit-post","core/edit-site"].includes(e)?(Ke(`${e} interface scope`,{alternative:"core interface scope",hint:"core/edit-post and core/edit-site are merging.",version:"6.6"}),"core"):e}function jO(e,t){return e==="core"&&t==="edit-site/template"?(Ke("edit-site/template sidebar",{alternative:"edit-post/document",version:"6.6"}),"edit-post/document"):e==="core"&&t==="edit-site/block-inspector"?(Ke("edit-site/block-inspector sidebar",{alternative:"edit-post/block",version:"6.6"}),"edit-post/block"):t}const $$t=(e,t)=>(e=fp(e),t=jO(e,t),{type:"SET_DEFAULT_COMPLEMENTARY_AREA",scope:e,area:t}),V$t=(e,t)=>({registry:n,dispatch:o})=>{if(!t)return;e=fp(e),t=jO(e,t),n.select(ht).get(e,"isComplementaryAreaVisible")||n.dispatch(ht).set(e,"isComplementaryAreaVisible",!0),o({type:"ENABLE_COMPLEMENTARY_AREA",scope:e,area:t})},H$t=e=>({registry:t})=>{e=fp(e),t.select(ht).get(e,"isComplementaryAreaVisible")&&t.dispatch(ht).set(e,"isComplementaryAreaVisible",!1)},U$t=(e,t)=>({registry:n})=>{if(!t)return;e=fp(e),t=jO(e,t);const o=n.select(ht).get(e,"pinnedItems");o?.[t]!==!0&&n.dispatch(ht).set(e,"pinnedItems",{...o,[t]:!0})},X$t=(e,t)=>({registry:n})=>{if(!t)return;e=fp(e),t=jO(e,t);const o=n.select(ht).get(e,"pinnedItems");n.dispatch(ht).set(e,"pinnedItems",{...o,[t]:!1})};function G$t(e,t){return function({registry:n}){Ke("dispatch( 'core/interface' ).toggleFeature",{since:"6.0",alternative:"dispatch( 'core/preferences' ).toggle"}),n.dispatch(ht).toggle(e,t)}}function K$t(e,t,n){return function({registry:o}){Ke("dispatch( 'core/interface' ).setFeatureValue",{since:"6.0",alternative:"dispatch( 'core/preferences' ).set"}),o.dispatch(ht).set(e,t,!!n)}}function Y$t(e,t){return function({registry:n}){Ke("dispatch( 'core/interface' ).setFeatureDefaults",{since:"6.0",alternative:"dispatch( 'core/preferences' ).setDefaults"}),n.dispatch(ht).setDefaults(e,t)}}function Z$t(e){return{type:"OPEN_MODAL",name:e}}function Q$t(){return{type:"CLOSE_MODAL"}}const J$t=Object.freeze(Object.defineProperty({__proto__:null,closeModal:Q$t,disableComplementaryArea:H$t,enableComplementaryArea:V$t,openModal:Z$t,pinItem:U$t,setDefaultComplementaryArea:$$t,setFeatureDefaults:Y$t,setFeatureValue:K$t,toggleFeature:G$t,unpinItem:X$t},Symbol.toStringTag,{value:"Module"})),eVt=At(e=>(t,n)=>{n=fp(n);const o=e(ht).get(n,"isComplementaryAreaVisible");if(o!==void 0)return o===!1?null:t?.complementaryAreas?.[n]}),tVt=At(e=>(t,n)=>{n=fp(n);const o=e(ht).get(n,"isComplementaryAreaVisible"),r=t?.complementaryAreas?.[n];return o&&r===void 0}),nVt=At(e=>(t,n,o)=>{var r;return n=fp(n),o=jO(n,o),(r=e(ht).get(n,"pinnedItems")?.[o])!==null&&r!==void 0?r:!0}),oVt=At(e=>(t,n,o)=>(Ke("select( 'core/interface' ).isFeatureActive( scope, featureName )",{since:"6.0",alternative:"select( 'core/preferences' ).get( scope, featureName )"}),!!e(ht).get(n,o)));function rVt(e,t){return e.activeModal===t}const sVt=Object.freeze(Object.defineProperty({__proto__:null,getActiveComplementaryArea:eVt,isComplementaryAreaLoading:tVt,isFeatureActive:oVt,isItemPinned:nVt,isModalActive:rVt},Symbol.toStringTag,{value:"Module"}));function iVt(e={},t){switch(t.type){case"SET_DEFAULT_COMPLEMENTARY_AREA":{const{scope:n,area:o}=t;return e[n]?e:{...e,[n]:o}}case"ENABLE_COMPLEMENTARY_AREA":{const{scope:n,area:o}=t;return{...e,[n]:o}}}return e}function aVt(e=null,t){switch(t.type){case"OPEN_MODAL":return t.name;case"CLOSE_MODAL":return null}return e}const cVt=J0({complementaryAreas:iVt,activeModal:aVt}),lVt="core/interface",xo=x1(lVt,{reducer:cVt,actions:J$t,selectors:sVt});Us(xo);function uVt(e){return["checkbox","option","radio","switch","menuitemcheckbox","menuitemradio","treeitem"].includes(e)}function DI({as:e=Ce,scope:t,identifier:n,icon:o,selectedIcon:r,name:s,shortcut:i,...c}){const l=e,u=PO(),d=o||u.icon,p=n||`${u.name}/${s}`,f=G(g=>g(xo).getActiveComplementaryArea(t)===p,[p,t]),{enableComplementaryArea:b,disableComplementaryArea:h}=Oe(xo);return a.jsx(l,{icon:r&&f?r:d,"aria-controls":p.replace("/",":"),"aria-checked":uVt(c.role)?f:void 0,onClick:()=>{f?h(t):b(t,p)},shortcut:i,...c})}const dVt=({children:e,className:t,toggleButtonProps:n})=>{const o=a.jsx(DI,{icon:rp,...n});return a.jsxs("div",{className:oe("components-panel__header","interface-complementary-area-header",t),tabIndex:-1,children:[e,o]})},ene=()=>{};function pVt({name:e,as:t=Cn,fillProps:n={},bubblesVirtually:o,...r}){return a.jsx(xf,{name:e,bubblesVirtually:o,fillProps:n,children:s=>{if(!x.Children.toArray(s).length)return null;const i=[];x.Children.forEach(s,({props:{__unstableExplicitMenuItem:l,__unstableTarget:u}})=>{u&&l&&i.push(u)});const c=x.Children.map(s,l=>!l.props.__unstableExplicitMenuItem&&i.includes(l.props.__unstableTarget)?null:l);return a.jsx(t,{...r,children:c})}})}function IO({name:e,as:t=Ce,onClick:n,...o}){return a.jsx(um,{name:e,children:({onClick:r})=>a.jsx(t,{onClick:n||r?(...s)=>{(n||ene)(...s),(r||ene)(...s)}:void 0,...o})})}IO.Slot=pVt;const fVt=({__unstableExplicitMenuItem:e,__unstableTarget:t,...n})=>a.jsx(Ct,{...n});function LOe({scope:e,target:t,__unstableExplicitMenuItem:n,...o}){return a.jsx(DI,{as:r=>a.jsx(IO,{__unstableExplicitMenuItem:n,__unstableTarget:`${e}/${t}`,as:fVt,name:`${e}/plugin-more-menu`,...r}),role:"menuitemcheckbox",selectedIcon:M0,name:t,scope:e,...o})}function ak({scope:e,...t}){return a.jsx(um,{name:`PinnedItems/${e}`,...t})}function bVt({scope:e,className:t,...n}){return a.jsx(xf,{name:`PinnedItems/${e}`,...n,children:o=>o?.length>0&&a.jsx("div",{className:oe(t,"interface-pinned-items"),children:o})})}ak.Slot=bVt;const hVt=.3;function mVt({scope:e,...t}){return a.jsx(xf,{name:`ComplementaryArea/${e}`,...t})}const POe=280,gVt={open:{width:POe},closed:{width:0},mobileOpen:{width:"100vw"}};function MVt({activeArea:e,isActive:t,scope:n,children:o,className:r,id:s}){const i=$1(),c=Yn("medium","<"),l=Fr(e),u=Fr(t),[,d]=x.useState({});x.useEffect(()=>{d({})},[t]);const p={type:"tween",duration:i||c||l&&e&&e!==l?0:hVt,ease:[.6,0,.4,1]};return a.jsx(um,{name:`ComplementaryArea/${n}`,children:a.jsx(Wd,{initial:!1,children:(u||t)&&a.jsx(Rr.div,{variants:gVt,initial:"closed",animate:c?"mobileOpen":"open",exit:"closed",transition:p,className:"interface-complementary-area__fill",children:a.jsx("div",{id:s,className:r,style:{width:c?"100vw":POe},children:o})})})})}function zVt(e,t,n,o,r){const s=x.useRef(!1),i=x.useRef(!1),{enableComplementaryArea:c,disableComplementaryArea:l}=Oe(xo);x.useEffect(()=>{o&&r&&!s.current?(l(e),i.current=!0):i.current&&!r&&s.current?(i.current=!1,c(e,t)):i.current&&n&&n!==t&&(i.current=!1),r!==s.current&&(s.current=r)},[o,r,e,t,n,l,c])}function ck({children:e,className:t,closeLabel:n=m("Close plugin"),identifier:o,header:r,headerClassName:s,icon:i,isPinnable:c=!0,panelClassName:l,scope:u,name:d,title:p,toggleShortcut:f,isActiveByDefault:b}){const h=PO(),g=i||h.icon,z=o||`${h.name}/${d}`,[A,_]=x.useState(!1),{isLoading:v,isActive:M,isPinned:y,activeArea:k,isSmall:S,isLarge:C,showIconLabels:R}=G(I=>{const{getActiveComplementaryArea:P,isComplementaryAreaLoading:$,isItemPinned:F}=I(xo),{get:X}=I(ht),Z=P(u);return{isLoading:$(u),isActive:Z===z,isPinned:F(u,z),activeArea:Z,isSmall:I(e5).isViewportMatch("< medium"),isLarge:I(e5).isViewportMatch("large"),showIconLabels:X("core","showIconLabels")}},[z,u]),T=Yn("medium","<");zVt(u,z,k,M,S);const{enableComplementaryArea:E,disableComplementaryArea:B,pinItem:N,unpinItem:j}=Oe(xo);if(x.useEffect(()=>{b&&k===void 0&&!S?E(u,z):k===void 0&&S&&B(u,z),_(!0)},[k,b,u,z,S,E,B]),!!A)return a.jsxs(a.Fragment,{children:[c&&a.jsx(ak,{scope:u,children:y&&a.jsx(DI,{scope:u,identifier:z,isPressed:M&&(!R||C),"aria-expanded":M,"aria-disabled":v,label:p,icon:R?M0:g,showTooltip:!R,variant:R?"tertiary":void 0,size:"compact",shortcut:f})}),d&&c&&a.jsx(LOe,{target:d,scope:u,icon:g,children:p}),a.jsxs(MVt,{activeArea:k,isActive:M,className:oe("interface-complementary-area",t),scope:u,id:z.replace("/",":"),children:[a.jsx(dVt,{className:s,closeLabel:n,onClose:()=>B(u),toggleButtonProps:{label:n,size:"compact",shortcut:f,scope:u,identifier:z},children:r||a.jsxs(a.Fragment,{children:[a.jsx("h2",{className:"interface-complementary-area-header__title",children:p}),c&&!T&&a.jsx(Ce,{className:"interface-complementary-area__pin-unpin-item",icon:y?jQe:PQe,label:m(y?"Unpin from toolbar":"Pin to toolbar"),onClick:()=>(y?j:N)(u,z),isPressed:y,"aria-expanded":y,size:"compact"})]})}),a.jsx(o2t,{className:l,children:e})]})]})}ck.Slot=mVt;const OVt=({isActive:e})=>(x.useEffect(()=>{let t=!1;return document.body.classList.contains("sticky-menu")&&(t=!0,document.body.classList.remove("sticky-menu")),()=>{t&&document.body.classList.add("sticky-menu")}},[]),x.useEffect(()=>(e?document.body.classList.add("is-fullscreen-mode"):document.body.classList.remove("is-fullscreen-mode"),()=>{e&&document.body.classList.remove("is-fullscreen-mode")}),[e]),null),$u=x.forwardRef(({children:e,className:t,ariaLabel:n,as:o="div",...r},s)=>a.jsx(o,{ref:s,className:oe("interface-navigable-region",t),"aria-label":n,role:"region",tabIndex:"-1",...r,children:e}));$u.displayName="NavigableRegion";const jOe=.25,tne={type:"tween",duration:jOe,ease:[.6,0,.4,1]};function yVt(e){x.useEffect(()=>{const t=document&&document.querySelector(`html:not(.${e})`);if(t)return t.classList.toggle(e),()=>{t.classList.toggle(e)}},[e])}const AVt={hidden:{opacity:1,marginTop:-60},visible:{opacity:1,marginTop:0},distractionFreeHover:{opacity:1,marginTop:0,transition:{...tne,delay:.2,delayChildren:.2}},distractionFreeHidden:{opacity:0,marginTop:-60},distractionFreeDisabled:{opacity:0,marginTop:0,transition:{...tne,delay:.8,delayChildren:.8}}};function vVt({isDistractionFree:e,footer:t,header:n,editorNotices:o,sidebar:r,secondarySidebar:s,content:i,actions:c,labels:l,className:u},d){const[p,f]=js(),b=Yn("medium","<"),g={type:"tween",duration:$1()?0:jOe,ease:[.6,0,.4,1]};yVt("interface-interface-skeleton__html-container");const A={...{header:We("Header","header landmark area"),body:m("Content"),secondarySidebar:m("Block Library"),sidebar:We("Settings","settings landmark area"),actions:m("Publish"),footer:m("Footer")},...l};return a.jsxs("div",{ref:d,className:oe(u,"interface-interface-skeleton",!!t&&"has-footer"),children:[a.jsxs("div",{className:"interface-interface-skeleton__editor",children:[a.jsx(Wd,{initial:!1,children:!!n&&a.jsx($u,{as:Rr.div,className:"interface-interface-skeleton__header","aria-label":A.header,initial:e&&!b?"distractionFreeHidden":"hidden",whileHover:e&&!b?"distractionFreeHover":"visible",animate:e&&!b?"distractionFreeDisabled":"visible",exit:e&&!b?"distractionFreeHidden":"hidden",variants:AVt,transition:g,children:n})}),e&&a.jsx("div",{className:"interface-interface-skeleton__header",children:o}),a.jsxs("div",{className:"interface-interface-skeleton__body",children:[a.jsx(Wd,{initial:!1,children:!!s&&a.jsx($u,{className:"interface-interface-skeleton__secondary-sidebar",ariaLabel:A.secondarySidebar,as:Rr.div,initial:"closed",animate:"open",exit:"closed",variants:{open:{width:f.width},closed:{width:0}},transition:g,children:a.jsxs(Rr.div,{style:{position:"absolute",width:b?"100vw":"fit-content",height:"100%",left:0},variants:{open:{x:0},closed:{x:"-100%"}},transition:g,children:[p,s]})})}),a.jsx($u,{className:"interface-interface-skeleton__content",ariaLabel:A.body,children:i}),!!r&&a.jsx($u,{className:"interface-interface-skeleton__sidebar",ariaLabel:A.sidebar,children:r}),!!c&&a.jsx($u,{className:"interface-interface-skeleton__actions",ariaLabel:A.actions,children:c})]})]}),!!t&&a.jsx($u,{className:"interface-interface-skeleton__footer",ariaLabel:A.footer,children:t})]})}const IOe=x.forwardRef(vVt),xVt=Object.freeze(Object.defineProperty({__proto__:null,ActionItem:IO,ComplementaryArea:ck,ComplementaryAreaMoreMenuItem:LOe,FullscreenMode:OVt,InterfaceSkeleton:IOe,NavigableRegion:$u,PinnedItems:ak,store:xo},Symbol.toStringTag,{value:"Module"})),{RenamePatternModal:wVt}=St(Vi),DOe="editor/pattern-rename";function _Vt(){const{record:e,postType:t}=G(r=>{const{getCurrentPostType:s,getCurrentPostId:i}=r(_e),{getEditedEntityRecord:c}=r(Me),l=s();return{record:c("postType",l,i()),postType:l}},[]),{closeModal:n}=Oe(xo);return!G(r=>r(xo).isModalActive(DOe))||t!==$l?null:a.jsx(wVt,{onClose:n,pattern:e})}const{DuplicatePatternModal:kVt}=St(Vi),FOe="editor/pattern-duplicate";function SVt(){const{record:e,postType:t}=G(r=>{const{getCurrentPostType:s,getCurrentPostId:i}=r(_e),{getEditedEntityRecord:c}=r(Me),l=s();return{record:c("postType",l,i()),postType:l}},[]),{closeModal:n}=Oe(xo);return!G(r=>r(xo).isModalActive(FOe))||t!==$l?null:a.jsx(kVt,{onClose:n,onSuccess:()=>n(),pattern:e})}const CVt=()=>function(){const{editorMode:t,isListViewOpen:n,showBlockBreadcrumbs:o,isDistractionFree:r,isFocusMode:s,isPreviewMode:i,isViewable:c,isCodeEditingEnabled:l,isRichEditingEnabled:u,isPublishSidebarEnabled:d}=G(B=>{var N,j;const{get:I}=B(ht),{isListViewOpened:P,getCurrentPostType:$,getEditorSettings:F}=B(_e),{getSettings:X}=B(Q),{getPostType:Z}=B(Me);return{editorMode:(N=I("core","editorMode"))!==null&&N!==void 0?N:"visual",isListViewOpen:P(),showBlockBreadcrumbs:I("core","showBlockBreadcrumbs"),isDistractionFree:I("core","distractionFree"),isFocusMode:I("core","focusMode"),isPreviewMode:X().isPreviewMode,isViewable:(j=Z($())?.viewable)!==null&&j!==void 0?j:!1,isCodeEditingEnabled:F().codeEditingEnabled,isRichEditingEnabled:F().richEditingEnabled,isPublishSidebarEnabled:B(_e).isPublishSidebarEnabled()}},[]),{getActiveComplementaryArea:p}=G(xo),{toggle:f}=Oe(ht),{createInfoNotice:b}=Oe(mt),{__unstableSaveForPreview:h,setIsListViewOpened:g,switchEditorMode:z,toggleDistractionFree:A,toggleSpotlightMode:_,toggleTopToolbar:v}=Oe(_e),{openModal:M,enableComplementaryArea:y,disableComplementaryArea:k}=Oe(xo),{getCurrentPostId:S}=G(_e),{isBlockBasedTheme:C,canCreateTemplate:R}=G(B=>({isBlockBasedTheme:B(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:B(Me).canUser("create",{kind:"postType",name:"wp_template"})}),[]),T=l&&u;if(i)return{commands:[],isLoading:!1};const E=[];return E.push({name:"core/open-shortcut-help",label:m("Keyboard shortcuts"),icon:aQe,callback:({close:B})=>{B(),M("editor/keyboard-shortcut-help")}}),E.push({name:"core/toggle-distraction-free",label:m(r?"Exit Distraction free":"Enter Distraction free"),callback:({close:B})=>{A(),B()}}),E.push({name:"core/open-preferences",label:m("Editor preferences"),callback:({close:B})=>{B(),M("editor/preferences")}}),E.push({name:"core/toggle-spotlight-mode",label:m(s?"Exit Spotlight mode":"Enter Spotlight mode"),callback:({close:B})=>{_(),B()}}),E.push({name:"core/toggle-list-view",label:m(n?"Close List View":"Open List View"),icon:jP,callback:({close:B})=>{g(!n),B(),b(m(n?"List View off.":"List View on."),{id:"core/editor/toggle-list-view/notice",type:"snackbar"})}}),E.push({name:"core/toggle-top-toolbar",label:m("Top toolbar"),callback:({close:B})=>{v(),B()}}),T&&E.push({name:"core/toggle-code-editor",label:m(t==="visual"?"Open code editor":"Exit code editor"),icon:TP,callback:({close:B})=>{z(t==="visual"?"text":"visual"),B()}}),E.push({name:"core/toggle-breadcrumbs",label:m(o?"Hide block breadcrumbs":"Show block breadcrumbs"),callback:({close:B})=>{f("core","showBlockBreadcrumbs"),B(),b(m(o?"Breadcrumbs hidden.":"Breadcrumbs visible."),{id:"core/editor/toggle-breadcrumbs/notice",type:"snackbar"})}}),E.push({name:"core/open-settings-sidebar",label:m("Show or hide the Settings panel."),icon:jt()?ode:rde,callback:({close:B})=>{const N=p("core");B(),N==="edit-post/document"?k("core"):y("core","edit-post/document")}}),E.push({name:"core/open-block-inspector",label:m("Show or hide the Block settings panel"),icon:Tw,callback:({close:B})=>{const N=p("core");B(),N==="edit-post/block"?k("core"):y("core","edit-post/block")}}),E.push({name:"core/toggle-publish-sidebar",label:m(d?"Disable pre-publish checks":"Enable pre-publish checks"),icon:sde,callback:({close:B})=>{B(),f("core","isPublishSidebarEnabled"),b(m(d?"Pre-publish checks disabled.":"Pre-publish checks enabled."),{id:"core/editor/publish-sidebar/notice",type:"snackbar"})}}),c&&E.push({name:"core/preview-link",label:m("Preview in a new tab"),icon:vf,callback:async({close:B})=>{B();const N=S(),j=await h();window.open(j,`wp-preview-${N}`)}}),R&&C&&(Aa(window.location.href)?.includes("site-editor.php")||E.push({name:"core/go-to-site-editor",label:m("Open Site Editor"),callback:({close:N})=>{N(),document.location="site-editor.php"}})),{commands:E,isLoading:!1}},qVt=()=>function(){const{postType:t}=G(r=>{const{getCurrentPostType:s}=r(_e);return{postType:s()}},[]),{openModal:n}=Oe(xo),o=[];return t===$l&&(o.push({name:"core/rename-pattern",label:m("Rename pattern"),icon:Nd,callback:({close:r})=>{n(DOe),r()}}),o.push({name:"core/duplicate-pattern",label:m("Duplicate pattern"),icon:Bd,callback:({close:r})=>{n(FOe),r()}})),{isLoading:!1,commands:o}},RVt=()=>function(){const{onNavigateToEntityRecord:t,goBack:n,templateId:o,isPreviewMode:r}=G(l=>{const{getRenderingMode:u,getEditorSettings:d,getCurrentTemplateId:p}=St(l(_e)),f=d();return{isTemplateHidden:u()==="post-only",onNavigateToEntityRecord:f.onNavigateToEntityRecord,getEditorSettings:d,goBack:f.onNavigateToPreviousEntityRecord,templateId:p(),isPreviewMode:f.isPreviewMode}},[]),{editedRecord:s,hasResolved:i}=Y5("postType","wp_template",o);if(r)return{isLoading:!1,commands:[]};const c=[];return o&&i&&c.push({name:"core/switch-to-template-focus",label:xe(m("Edit template: %s"),Lt(s.title)),icon:nu,callback:({close:l})=>{t({postId:o,postType:"wp_template"}),l()}}),n&&c.push({name:"core/switch-to-previous-entity",label:m("Go back"),icon:wa,callback:({close:l})=>{n(),l()}}),{isLoading:!1,commands:c}},TVt=()=>function(){const{postType:t,postId:n}=G(c=>{const{getCurrentPostId:l,getCurrentPostType:u}=c(_e);return{postType:u(),postId:l()}},[]),{editedRecord:o,hasResolved:r}=Y5("postType",t,n),{revertTemplate:s}=St(Oe(_e));if(!r||![Di,L0].includes(t))return{isLoading:!0,commands:[]};const i=[];if(lOe(o)){const c=o.type===L0?xe(m("Reset template: %s"),Lt(o.title)):xe(m("Reset template part: %s"),Lt(o.title));i.push({name:"core/reset-template",label:c,icon:jt()?Bde:WQe,callback:({close:l})=>{s(o),l()}})}return{isLoading:!r,commands:i}};function EVt(){xi({name:"core/editor/edit-ui",hook:CVt()}),xi({name:"core/editor/contextual-commands",hook:qVt(),context:"entity-edit"}),xi({name:"core/editor/page-content-focus",hook:RVt(),context:"entity-edit"}),xi({name:"core/edit-site/manipulate-document",hook:TVt()})}const{BlockRemovalWarningModal:nne}=St(jn),WVt=["core/post-content","core/post-template","core/query"],NVt=[{postTypes:["wp_template","wp_template_part"],callback(e){if(e.filter(({name:n})=>WVt.includes(n)).length)return Dn("Deleting this block will stop your post or page content from displaying on this template. It is not recommended.","Some of the deleted blocks will stop your post or page content from displaying on this template. It is not recommended.",e.length)}},{postTypes:["wp_block"],callback(e){if(e.filter(({attributes:n})=>n?.metadata?.bindings&&Object.values(n.metadata.bindings).some(o=>o.source==="core/pattern-overrides")).length)return Dn("The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?","Some of the deleted blocks allow instance overrides. Removing them may result in content not displaying where this pattern is used. Are you sure you want to proceed?",e.length)}}];function BVt(){const e=G(n=>n(_e).getCurrentPostType(),[]),t=x.useMemo(()=>NVt.filter(n=>n.postTypes.includes(e)),[e]);return!nne||!t?null:a.jsx(nne,{rules:t})}function LVt(){const{postId:e,shouldEnable:t}=G(o=>{const{isEditedPostDirty:r,isEditedPostEmpty:s,getCurrentPostId:i,getCurrentPostType:c}=o(_e),l=o(xo).isModalActive("editor/preferences"),u=o(ht).get("core","enableChoosePatternModal");return{postId:i(),shouldEnable:u&&!l&&!r()&&s()&&c()==="page"}},[]),{setIsInserterOpened:n}=Oe(_e);return x.useEffect(()=>{t&&n({tab:"patterns",category:"core/starter-content"})},[e,t,n]),null}const PVt=[{keyCombination:{modifier:"primary",character:"b"},description:m("Make the selected text bold.")},{keyCombination:{modifier:"primary",character:"i"},description:m("Make the selected text italic.")},{keyCombination:{modifier:"primary",character:"k"},description:m("Convert the selected text into a link.")},{keyCombination:{modifier:"primaryShift",character:"k"},description:m("Remove a link.")},{keyCombination:{character:"[["},description:m("Insert a link to a post or page.")},{keyCombination:{modifier:"primary",character:"u"},description:m("Underline the selected text.")},{keyCombination:{modifier:"access",character:"d"},description:m("Strikethrough the selected text.")},{keyCombination:{modifier:"access",character:"x"},description:m("Make the selected text inline code.")},{keyCombination:{modifier:"access",character:"0"},aliases:[{modifier:"access",character:"7"}],description:m("Convert the current heading to a paragraph.")},{keyCombination:{modifier:"access",character:"1-6"},description:m("Convert the current paragraph or heading to a heading of level 1 to 6.")},{keyCombination:{modifier:"primaryShift",character:"SPACE"},description:m("Add non breaking space.")}];function one({keyCombination:e,forceAriaLabel:t}){const n=e.modifier?O0e[e.modifier](e.character):e.character,o=e.modifier?y0e[e.modifier](e.character):e.character;return a.jsx("kbd",{className:"editor-keyboard-shortcut-help-modal__shortcut-key-combination","aria-label":t||o,children:(Array.isArray(n)?n:[n]).map((r,s)=>r==="+"?a.jsx(x.Fragment,{children:r},s):a.jsx("kbd",{className:"editor-keyboard-shortcut-help-modal__shortcut-key",children:r},s))})}function $Oe({description:e,keyCombination:t,aliases:n=[],ariaLabel:o}){return a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"editor-keyboard-shortcut-help-modal__shortcut-description",children:e}),a.jsxs("div",{className:"editor-keyboard-shortcut-help-modal__shortcut-term",children:[a.jsx(one,{keyCombination:t,forceAriaLabel:o}),n.map((r,s)=>a.jsx(one,{keyCombination:r,forceAriaLabel:o},s))]})]})}function jVt({name:e}){const{keyCombination:t,description:n,aliases:o}=G(r=>{const{getShortcutKeyCombination:s,getShortcutDescription:i,getShortcutAliases:c}=r(Pi);return{keyCombination:s(e),aliases:c(e),description:i(e)}},[e]);return t?a.jsx($Oe,{keyCombination:t,description:n,aliases:o}):null}const rne="editor/keyboard-shortcut-help",IVt=({shortcuts:e})=>a.jsx("ul",{className:"editor-keyboard-shortcut-help-modal__shortcut-list",role:"list",children:e.map((t,n)=>a.jsx("li",{className:"editor-keyboard-shortcut-help-modal__shortcut",children:typeof t=="string"?a.jsx(jVt,{name:t}):a.jsx($Oe,{...t})},n))}),sN=({title:e,shortcuts:t,className:n})=>a.jsxs("section",{className:oe("editor-keyboard-shortcut-help-modal__section",n),children:[!!e&&a.jsx("h2",{className:"editor-keyboard-shortcut-help-modal__section-title",children:e}),a.jsx(IVt,{shortcuts:t})]}),xv=({title:e,categoryName:t,additionalShortcuts:n=[]})=>{const o=G(r=>r(Pi).getCategoryShortcuts(t),[t]);return a.jsx(sN,{title:e,shortcuts:o.concat(n)})};function DVt(){const e=G(r=>r(xo).isModalActive(rne),[]),{openModal:t,closeModal:n}=Oe(xo),o=()=>{e?n():t(rne)};return p0("core/editor/keyboard-shortcuts",o),e?a.jsxs(Zo,{className:"editor-keyboard-shortcut-help-modal",title:m("Keyboard shortcuts"),closeButtonLabel:m("Close"),onRequestClose:o,children:[a.jsx(sN,{className:"editor-keyboard-shortcut-help-modal__main-shortcuts",shortcuts:["core/editor/keyboard-shortcuts"]}),a.jsx(xv,{title:m("Global shortcuts"),categoryName:"global"}),a.jsx(xv,{title:m("Selection shortcuts"),categoryName:"selection"}),a.jsx(xv,{title:m("Block shortcuts"),categoryName:"block",additionalShortcuts:[{keyCombination:{character:"/"},description:m("Change the block type after adding a new paragraph."),ariaLabel:m("Forward-slash")}]}),a.jsx(sN,{title:m("Text formatting"),shortcuts:PVt}),a.jsx(xv,{title:m("List View shortcuts"),categoryName:"list-view"})]}):null}function FVt({clientId:e,onClose:t}){const n=NOe(),{entity:o,onNavigateToEntityRecord:r,canEditTemplates:s}=G(l=>{const{getBlockParentsByBlockName:u,getSettings:d,getBlockAttributes:p,getBlockParents:f}=l(Q),{getCurrentTemplateId:b,getRenderingMode:h}=l(_e),g=u(e,"core/block",!0)[0];let z;return g?z=l(Me).getEntityRecord("postType","wp_block",p(g).ref):h()==="template-locked"&&!f(e).some(_=>n.includes(_))&&(z=l(Me).getEntityRecord("postType","wp_template",b())),z?{canEditTemplates:l(Me).canUser("create",{kind:"postType",name:"wp_template"}),entity:z,onNavigateToEntityRecord:d().onNavigateToEntityRecord}:{}},[e,n]);if(!o)return a.jsx($Vt,{clientId:e,onClose:t});const i=o.type==="wp_block";let c=m(i?"Edit the pattern to move, delete, or make further changes to this block.":"Edit the template to move, delete, or make further changes to this block.");return s||(c=m("Only users with permissions to edit the template can move or delete this block")),a.jsxs(a.Fragment,{children:[a.jsx(H_,{children:a.jsx(Ct,{onClick:()=>{r({postId:o.id,postType:o.type})},disabled:!s,children:m(i?"Edit pattern":"Edit template")})}),a.jsx(Sn,{variant:"muted",as:"p",className:"editor-content-only-settings-menu__description",children:c})]})}function $Vt({clientId:e,onClose:t}){const{contentLockingParent:n}=G(i=>{const{getContentLockingParent:c}=St(i(Q));return{contentLockingParent:c(e)}},[e]),o=ji(n),r=Oe(Q);if(!o?.title)return null;const{modifyContentLockBlock:s}=St(r);return a.jsxs(a.Fragment,{children:[a.jsx(H_,{children:a.jsx(Ct,{onClick:()=>{s(n),t()},children:We("Unlock","Unlock content locked blocks")})}),a.jsx(Sn,{variant:"muted",as:"p",className:"editor-content-only-settings-menu__description",children:m("Temporarily unlock the parent block to edit, delete or make further changes to this block.")})]})}function VVt(){return a.jsx(cb,{children:({selectedClientIds:e,onClose:t})=>e.length===1&&a.jsx(FVt,{clientId:e[0],onClose:t})})}function HVt(e,t=!1){return G(n=>{const{getEntityRecord:o,getDefaultTemplateId:r}=n(Me),s=r({slug:e,is_custom:t,ignore_empty:!0});return s?o("postType",L0,s)?.content?.raw:void 0},[e,t])}function UVt(e){const{slug:t,patterns:n}=G(s=>{const{getCurrentPostType:i,getCurrentPostId:c}=s(_e),{getEntityRecord:l,getBlockPatterns:u}=s(Me),d=c(),p=i();return{slug:l("postType",p,d).slug,patterns:u()}},[]),o=G(s=>s(Me).getCurrentTheme().stylesheet);function r(s){return s.innerBlocks.find(i=>i.name==="core/template-part")&&(s.innerBlocks=s.innerBlocks.map(i=>(i.name==="core/template-part"&&i.attributes.theme===void 0&&(i.attributes.theme=o),i))),s.name==="core/template-part"&&s.attributes.theme===void 0&&(s.attributes.theme=o),s}return x.useMemo(()=>[{name:"fallback",blocks:Ko(e),title:m("Fallback content")},...n.filter(s=>Array.isArray(s.templateTypes)&&s.templateTypes.some(i=>t.startsWith(i))).map(s=>({...s,blocks:Ko(s.content).map(i=>r(i))}))],[e,t,n])}function XVt({fallbackContent:e,onChoosePattern:t,postType:n}){const[,,o]=ya("postType",n),r=UVt(e);return a.jsx(qa,{blockPatterns:r,onClickPattern:(s,i)=>{o(i,{selection:void 0}),t()}})}function GVt({slug:e,isCustom:t,onClose:n,postType:o}){const r=HVt(e,t);return r?a.jsxs(Zo,{className:"editor-start-template-options__modal",title:m("Choose a pattern"),closeLabel:m("Cancel"),focusOnMount:"firstElement",onRequestClose:n,isFullScreen:!0,children:[a.jsx("div",{className:"editor-start-template-options__modal-content",children:a.jsx(XVt,{fallbackContent:r,slug:e,isCustom:t,postType:o,onChoosePattern:()=>{n()}})}),a.jsx(Yo,{className:"editor-start-template-options__modal__actions",justify:"flex-end",expanded:!1,children:a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:n,children:m("Skip")})})})]}):null}function KVt(){const[e,t]=x.useState(!1),{shouldOpenModal:n,slug:o,isCustom:r,postType:s,postId:i}=G(c=>{const{getCurrentPostType:l,getCurrentPostId:u}=c(_e),d=l(),p=u(),{getEditedEntityRecord:f,hasEditsForEntityRecord:b}=c(Me),h=f("postType",d,p);return{shouldOpenModal:!b("postType",d,p)&&h.content===""&&L0===d,slug:h.slug,isCustom:h.is_custom,postType:d,postId:p}},[]);return x.useEffect(()=>{t(!1)},[s,i]),!n||e?null:a.jsx(GVt,{slug:o,isCustom:r,postType:s,onClose:()=>t(!0)})}function YVt(){const e=G(g=>{const{richEditingEnabled:z,codeEditingEnabled:A}=g(_e).getEditorSettings();return!z||!A},[]),{getBlockSelectionStart:t}=G(Q),{getActiveComplementaryArea:n}=G(xo),{enableComplementaryArea:o,disableComplementaryArea:r}=Oe(xo),{redo:s,undo:i,savePost:c,setIsListViewOpened:l,switchEditorMode:u,toggleDistractionFree:d}=Oe(_e),{isEditedPostDirty:p,isPostSavingLocked:f,isListViewOpened:b,getEditorMode:h}=G(_e);return p0("core/editor/toggle-mode",()=>{u(h()==="visual"?"text":"visual")},{isDisabled:e}),p0("core/editor/toggle-distraction-free",()=>{d()}),p0("core/editor/undo",g=>{i(),g.preventDefault()}),p0("core/editor/redo",g=>{s(),g.preventDefault()}),p0("core/editor/save",g=>{g.preventDefault(),!f()&&p()&&c()}),p0("core/editor/toggle-list-view",g=>{b()||(g.preventDefault(),l(!0))}),p0("core/editor/toggle-sidebar",g=>{if(g.preventDefault(),["edit-post/document","edit-post/block"].includes(n("core")))r("core");else{const A=t()?"edit-post/block":"edit-post/document";o("core",A)}}),null}function ZVt({clientId:e,onClose:t}){const{getBlocks:n}=G(Q),{replaceBlocks:o}=Oe(Q);return G(s=>s(Q).canRemoveBlock(e),[e])?a.jsx(Ct,{onClick:()=>{o(e,n(e)),t()},children:m("Detach")}):null}function QVt({clientIds:e,blocks:t}){const[n,o]=x.useState(!1),{replaceBlocks:r}=Oe(Q),{createSuccessNotice:s}=Oe(mt),{canCreate:i}=G(l=>({canCreate:l(Q).canInsertBlockType("core/template-part")}),[]);if(!i)return null;const c=async l=>{r(e,Ee("core/template-part",{slug:l.slug,theme:l.theme})),s(m("Template part created."),{type:"snackbar"})};return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{icon:Qf,onClick:()=>{o(!0)},"aria-expanded":n,"aria-haspopup":"dialog",children:m("Create template part")}),n&&a.jsx(jI,{closeModal:()=>{o(!1)},blocks:t,onCreate:c})]})}function JVt(){return a.jsx(cb,{children:({selectedClientIds:e,onClose:t})=>a.jsx(eHt,{clientIds:e,onClose:t})})}function eHt({clientIds:e,onClose:t}){const{blocks:n}=G(o=>{const{getBlocksByClientId:r}=o(Q);return{blocks:r(e)}},[e]);return n.length===1&&n[0]?.name==="core/template-part"?a.jsx(ZVt,{clientId:e[0],onClose:t}):a.jsx(QVt,{clientIds:e,blocks:n})}const{ExperimentalBlockEditorProvider:tHt}=St(jn),{PatternsMenuItems:nHt}=St(Vi),sne=()=>{},oHt=["wp_block","wp_navigation","wp_template_part"],rHt=["post-only","template-locked"];function sHt(e,t,n){const o=n==="template-locked"?"template":"post",[r,s,i]=ya("postType",e.type,{id:e.id}),[c,l,u]=ya("postType",t?.type,{id:t?.id}),d=x.useMemo(()=>{if(e.type==="wp_navigation")return[Ee("core/navigation",{ref:e.id,templateLock:!1})]},[e.type,e.id]),p=x.useMemo(()=>d||(o==="template"?c:r),[d,o,c,r]);return!!t&&n==="template-locked"||e.type==="wp_navigation"?[p,sne,sne]:[p,o==="post"?s:l,o==="post"?i:u]}const VOe=d$t(({post:e,settings:t,recovery:n,initialEdits:o,children:r,BlockEditorProviderComponent:s=tHt,__unstableTemplate:i})=>{const c=!!i,{editorSettings:l,selection:u,isReady:d,mode:p,defaultMode:f,postTypeEntities:b}=G(j=>{const{getEditorSettings:I,getEditorSelection:P,getRenderingMode:$,__unstableIsEditorReady:F}=j(_e),{getEntitiesConfig:X,getPostType:Z,hasFinishedResolution:V}=j(Me),ee=Z(e.type)?.supports,te=V("getPostType",[e.type]),J=Array.isArray(ee?.editor)?ee.editor.find(ce=>"default_mode"in ce)?.default_mode:void 0,ue=rHt.includes(J);return{editorSettings:I(),isReady:F()&&te,mode:$(),defaultMode:c&&ue?J:"post-only",selection:P(),postTypeEntities:e.type==="wp_template"?X("postType"):null}},[e.type,c]),h=!!i&&p!=="post-only",g=h?i:e,z=x.useMemo(()=>{const j={};if(e.type==="wp_template"){if(e.slug==="page")j.postType="page";else if(e.slug==="single")j.postType="post";else if(e.slug.split("-")[0]==="single"){const I=b?.map($=>$.name)||[],P=e.slug.match(`^single-(${I.join("|")})(?:-.+)?$`);P&&(j.postType=P[1])}}else(!oHt.includes(g.type)||h)&&(j.postId=e.id,j.postType=e.type);return{...j,templateSlug:g.type==="wp_template"?g.slug:void 0}},[h,e.id,e.type,e.slug,g.type,g.slug,b]),{id:A,type:_}=g,v=C$t(l,_,A,p),[M,y,k]=sHt(e,i,p),{updatePostLock:S,setupEditor:C,updateEditorSettings:R,setCurrentTemplateId:T,setEditedPost:E,setRenderingMode:B}=St(Oe(_e)),{createWarningNotice:N}=Oe(mt);return x.useLayoutEffect(()=>{n||(S(t.postLock),C(e,o,t.template),t.autosave&&N(m("There is an autosave of this post that is more recent than the version below."),{id:"autosave-exists",actions:[{label:m("View the autosave"),url:t.autosave.editLink}]}))},[]),x.useEffect(()=>{E(e.type,e.id)},[e.type,e.id,E]),x.useEffect(()=>{R(t)},[t,R]),x.useEffect(()=>{T(i?.id)},[i?.id,T]),x.useEffect(()=>{B(f)},[f,B]),E$t(e.type,p),EVt(),!d||!p?null:a.jsx(GE,{kind:"root",type:"site",children:a.jsx(GE,{kind:"postType",type:e.type,id:e.id,children:a.jsx(uO,{value:z,children:a.jsxs(s,{value:M,onChange:k,onInput:y,selection:u,settings:v,useSubRegistry:!1,children:[r,!t.isPreviewMode&&a.jsxs(a.Fragment,{children:[a.jsx(nHt,{}),a.jsx(JVt,{}),a.jsx(VVt,{}),p==="template-locked"&&a.jsx(R$t,{}),_==="wp_navigation"&&a.jsx(T$t,{}),a.jsx(YVt,{}),a.jsx(DVt,{}),a.jsx(BVt,{}),a.jsx(LVt,{}),a.jsx(KVt,{}),a.jsx(_Vt,{}),a.jsx(SVt,{})]})]})})})})});function HOe(e){return a.jsx(VOe,{...e,BlockEditorProviderComponent:j5t,children:e.children})}const{useGlobalStyle:iHt}=St(jn);function aHt({template:e,post:t}){const[n="white"]=iHt("color.background"),[o]=ya("postType",t.type,{id:t.id}),[r]=ya("postType",e?.type,{id:e?.id}),s=e&&r?r:o,i=!s?.length;return a.jsxs("div",{className:"editor-fields-content-preview",style:{backgroundColor:n},children:[i&&a.jsx("span",{className:"editor-fields-content-preview__empty",children:m("Empty content")}),!i&&a.jsx(Vd.Async,{children:a.jsx(Vd,{blocks:s})})]})}function cHt({item:e}){const{settings:t,template:n}=G(o=>{var r;const{canUser:s,getPostType:i,getTemplateId:c,getEntityRecord:l}=St(o(Me)),u=s("read",{kind:"postType",name:"wp_template"}),d=o(_e).getEditorSettings(),p=d.supportsTemplateMode,f=(r=i(e.type)?.viewable)!==null&&r!==void 0?r:!1,b=p&&f&&u?c(e.type,e.id):null;return{settings:d,template:b?l("postType","wp_template",b):void 0}},[e.type,e.id]);return a.jsx(HOe,{post:e,settings:t,__unstableTemplate:n,children:a.jsx(aHt,{template:n,post:e})})}const lHt={type:"media",id:"content-preview",label:m("Content preview"),render:cHt,enableSorting:!1};function uHt(e,t,n){return{type:"REGISTER_ENTITY_ACTION",kind:e,name:t,config:n}}function dHt(e,t,n){return{type:"UNREGISTER_ENTITY_ACTION",kind:e,name:t,actionId:n}}function pHt(e,t,n){return{type:"REGISTER_ENTITY_FIELD",kind:e,name:t,config:n}}function fHt(e,t,n){return{type:"UNREGISTER_ENTITY_FIELD",kind:e,name:t,fieldId:n}}function bHt(e,t){return{type:"SET_IS_READY",kind:e,name:t}}const hHt=e=>async({registry:t})=>{if(St(t.select(_e)).isEntityReady("postType",e))return;St(t.dispatch(_e)).setIsReady("postType",e);const o=await t.resolveSelect(Me).getPostType(e),r=await t.resolveSelect(Me).canUser("create",{kind:"postType",name:e}),s=await t.resolveSelect(Me).getCurrentTheme(),i=[o.viewable?JDt:void 0,o.supports?.revisions?ZFt:void 0,globalThis.IS_GUTENBERG_PLUGIN?!["wp_template","wp_block","wp_template_part"].includes(o.slug)&&r&&CFt:void 0,o.slug==="wp_template_part"&&r&&s?.is_block_theme?l$t:void 0,r&&o.slug==="wp_block"?BFt:void 0,o.supports?.title?qFt:void 0,o.supports?.["page-attributes"]?_Ft:void 0,o.slug==="wp_block"?YFt:void 0,JFt,EFt,r$t,e$t,QFt].filter(Boolean),c=[o.supports?.thumbnail&&s?.theme_supports?.["post-thumbnails"]&&NDt,o.supports?.author&&QDt,XDt,YDt,R9t,o.supports?.["page-attributes"]&&FDt,o.supports?.comments&&GDt,LDt,VDt,o.supports?.editor&&o.viewable&&lHt].filter(Boolean);if(o.supports?.title){let l;e==="page"?l=W9t:e==="wp_template"?l=N9t:e==="wp_block"?l=mDt:l=bOe,c.push(l)}t.batch(()=>{i.forEach(l=>{St(t.dispatch(_e)).registerEntityAction("postType",e,l)}),c.forEach(l=>{St(t.dispatch(_e)).registerEntityField("postType",e,l)})}),EN("core.registerPostTypeSchema",e)};function mHt(e){return{type:"SET_CURRENT_TEMPLATE_ID",id:e}}const gHt=e=>async({select:t,dispatch:n,registry:o})=>{const r=await o.dispatch(Me).saveEntityRecord("postType","wp_template",e);return o.dispatch(Me).editEntityRecord("postType",t.getCurrentPostType(),t.getCurrentPostId(),{template:r.slug}),o.dispatch(mt).createSuccessNotice(m("Custom template created. You're in template mode now."),{type:"snackbar",actions:[{label:m("Go back"),onClick:()=>n.setRenderingMode(t.getEditorSettings().defaultRenderingMode)}]}),r},MHt=e=>({registry:t})=>{var n;const r=((n=t.select(ht).get("core","hiddenBlockTypes"))!==null&&n!==void 0?n:[]).filter(s=>!(Array.isArray(e)?e:[e]).includes(s));t.dispatch(ht).set("core","hiddenBlockTypes",r)},zHt=e=>({registry:t})=>{var n;const o=(n=t.select(ht).get("core","hiddenBlockTypes"))!==null&&n!==void 0?n:[],r=new Set([...o,...Array.isArray(e)?e:[e]]);t.dispatch(ht).set("core","hiddenBlockTypes",[...r])},OHt=({onSave:e,dirtyEntityRecords:t=[],entitiesToSkip:n=[],close:o}={})=>({registry:r})=>{const s=[{kind:"postType",name:"wp_navigation"}],i="site-editor-save-success",c=r.select(Me).getEntityRecord("root","__unstableBase")?.home;r.dispatch(mt).removeNotice(i);const l=t.filter(({kind:p,name:f,key:b,property:h})=>!n.some(g=>g.kind===p&&g.name===f&&g.key===b&&g.property===h));o?.(l);const u=[],d=[];l.forEach(({kind:p,name:f,key:b,property:h})=>{p==="root"&&f==="site"?u.push(h):(s.some(g=>g.kind===p&&g.name===f)&&r.dispatch(Me).editEntityRecord(p,f,b,{status:"publish"}),d.push(r.dispatch(Me).saveEditedEntityRecord(p,f,b)))}),u.length&&d.push(r.dispatch(Me).__experimentalSaveSpecifiedEntityEdits("root","site",void 0,u)),r.dispatch(Q).__unstableMarkLastChangeAsPersistent(),Promise.all(d).then(p=>e?e(p):p).then(p=>{p.some(f=>typeof f>"u")?r.dispatch(mt).createErrorNotice(m("Saving failed.")):r.dispatch(mt).createSuccessNotice(m("Site updated."),{type:"snackbar",id:i,actions:[{label:m("View site"),url:c}]})}).catch(p=>r.dispatch(mt).createErrorNotice(`${m("Saving failed.")} ${p}`))},yHt=(e,{allowUndo:t=!0}={})=>async({registry:n})=>{const o="edit-site-template-reverted";if(n.dispatch(mt).removeNotice(o),!lOe(e)){n.dispatch(mt).createErrorNotice(m("This template is not revertable."),{type:"snackbar"});return}try{const r=n.select(Me).getEntityConfig("postType",e.type);if(!r){n.dispatch(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const s=tn(`${r.baseURL}/${e.id}`,{context:"edit",source:e.origin}),i=await Tt({path:s});if(!i){n.dispatch(mt).createErrorNotice(m("The editor has encountered an unexpected error. Please reload."),{type:"snackbar"});return}const c=({blocks:d=[]})=>Jd(d),l=n.select(Me).getEditedEntityRecord("postType",e.type,e.id);n.dispatch(Me).editEntityRecord("postType",e.type,e.id,{content:c,blocks:l.blocks,source:"custom"},{undoIgnore:!0});const u=Ko(i?.content?.raw);if(n.dispatch(Me).editEntityRecord("postType",e.type,i.id,{content:c,blocks:u,source:"theme"}),t){const d=()=>{n.dispatch(Me).editEntityRecord("postType",e.type,l.id,{content:c,blocks:l.blocks,source:"custom"})};n.dispatch(mt).createSuccessNotice(m("Template reset."),{type:"snackbar",id:o,actions:[{label:m("Undo"),onClick:d}]})}}catch(r){const s=r.message&&r.code!=="unknown_error"?r.message:m("Template revert failed. Please reload.");n.dispatch(mt).createErrorNotice(s,{type:"snackbar"})}},AHt=e=>async({registry:t})=>{const n=e.every(r=>r?.has_theme_file),o=await Promise.allSettled(e.map(r=>t.dispatch(Me).deleteEntityRecord("postType",r.type,r.id,{force:!0},{throwOnError:!0})));if(o.every(({status:r})=>r==="fulfilled")){let r;if(e.length===1){let s;typeof e[0].title=="string"?s=e[0].title:typeof e[0].title?.rendered=="string"?s=e[0].title?.rendered:typeof e[0].title?.raw=="string"&&(s=e[0].title?.raw),r=xe(n?m('"%s" reset.'):We('"%s" deleted.',"template part"),Lt(s))}else r=m(n?"Items reset.":"Items deleted.");t.dispatch(mt).createSuccessNotice(r,{type:"snackbar",id:"editor-template-deleted-success"})}else{let r;if(o.length===1)o[0].reason?.message?r=o[0].reason.message:r=m(n?"An error occurred while reverting the item.":"An error occurred while deleting the item.");else{const s=new Set,i=o.filter(({status:c})=>c==="rejected");for(const c of i)c.reason?.message&&s.add(c.reason.message);s.size===0?r=m("An error occurred while deleting the items."):s.size===1?r=n?xe(m("An error occurred while reverting the items: %s"),[...s][0]):xe(m("An error occurred while deleting the items: %s"),[...s][0]):r=n?xe(m("Some errors occurred while reverting the items: %s"),[...s].join(",")):xe(m("Some errors occurred while deleting the items: %s"),[...s].join(","))}t.dispatch(mt).createErrorNotice(r,{type:"snackbar"})}},vHt=Object.freeze(Object.defineProperty({__proto__:null,createTemplate:gHt,hideBlockTypes:zHt,registerEntityAction:uHt,registerEntityField:pHt,registerPostTypeSchema:hHt,removeTemplates:AHt,revertTemplate:yHt,saveDirtyEntities:OHt,setCurrentTemplateId:mHt,setIsReady:bHt,showBlockTypes:MHt,unregisterEntityAction:dHt,unregisterEntityField:fHt},Symbol.toStringTag,{value:"Module"})),UOe=[];function xHt(e,t,n){var o;return(o=e.actions[t]?.[n])!==null&&o!==void 0?o:UOe}function wHt(e,t,n){var o;return(o=e.fields[t]?.[n])!==null&&o!==void 0?o:UOe}function _Ht(e,t,n){return e.isReady[t]?.[n]}const kHt={rootClientId:void 0,insertionIndex:void 0,filterValue:void 0},SHt=At(e=>It(t=>{if(typeof t.blockInserterPanel=="object")return t.blockInserterPanel;if(nN(t)==="template-locked"){const[n]=e(Q).getBlocksByName("core/post-content");if(n)return{rootClientId:n,insertionIndex:void 0,filterValue:void 0}}return kHt},t=>{const[n]=e(Q).getBlocksByName("core/post-content");return[t.blockInserterPanel,nN(t),n]}));function CHt(e){return e.listViewToggleRef}function qHt(e){return e.inserterSidebarToggleRef}const ine={wp_block:Bd,wp_navigation:G3,page:wa,post:Fw},RHt=At(e=>(t,n,o)=>{{if(n==="wp_template_part"||n==="wp_template"){const i=(e(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[]).find(c=>o.area===c.area);return i?.icon?RI(i.icon):nu}if(ine[n])return ine[n];const r=e(Me).getPostType(n);return typeof r?.icon=="string"&&r.icon.startsWith("dashicons-")?r.icon.slice(10):wa}}),THt=At(e=>(t,n,o)=>{const{type:r,id:s}=G1(t),i=e(Me).getEntityRecordNonTransientEdits("postType",n||r,o||s);if(!i?.meta)return!1;const c=e(Me).getEntityRecord("postType",n||r,o||s)?.meta;return!gMe({...c,footnotes:void 0},{...i.meta,footnotes:void 0})});function EHt(e,...t){return xHt(e.dataviews,...t)}function WHt(e,...t){return _Ht(e.dataviews,...t)}function NHt(e,...t){return wHt(e.dataviews,...t)}const BHt=At(e=>It((t,n)=>{n=Array.isArray(n)?n:[n];const{getBlocksByName:o,getBlockParents:r,getBlockName:s}=e(Q);return o(n).filter(i=>r(i).every(c=>{const l=s(c);return l!=="core/query"&&!n.includes(l)}))},()=>[e(Q).getBlocks()])),LHt=Object.freeze(Object.defineProperty({__proto__:null,getEntityActions:EHt,getEntityFields:NHt,getInserter:SHt,getInserterSidebarToggleRef:qHt,getListViewToggleRef:CHt,getPostBlocksByName:BHt,getPostIcon:RHt,hasPostMetaChanges:THt,isEntityReady:WHt},Symbol.toStringTag,{value:"Module"})),XOe={reducer:sjt,selectors:aIt,actions:k9t},_e=x1(ajt,{...XOe});Us(_e);St(_e).registerPrivateActions(vHt);St(_e).registerPrivateSelectors(LHt);const PHt=e=>Or(t=>({attributes:n,setAttributes:o,...r})=>{const s=G(u=>u(_e).getCurrentPostType(),[]),[i,c]=Ao("postType",s,"meta"),l=x.useMemo(()=>({...n,...Object.fromEntries(Object.entries(e).map(([u,d])=>[u,i[d]]))}),[n,i]);return a.jsx(t,{attributes:l,setAttributes:u=>{const d=Object.fromEntries(Object.entries(u??{}).filter(([p])=>p in e).map(([p,f])=>[e[p],f]));Object.entries(d).length&&c(d),o(u)},...r})},"withMetaAttributeSource");function jHt(e){var t;const n=Object.fromEntries(Object.entries((t=e.attributes)!==null&&t!==void 0?t:{}).filter(([,{source:o}])=>o==="meta").map(([o,{meta:r}])=>[o,r]));return Object.entries(n).length&&(e.edit=PHt(n)(e.edit)),e}Bn("blocks.registerBlockType","core/editor/custom-sources-backwards-compatibility/shim-attribute-source",jHt);function IHt(e){const t=e.avatar_urls&&e.avatar_urls[24]?a.jsx("img",{className:"editor-autocompleters__user-avatar",alt:"",src:e.avatar_urls[24]}):a.jsx("span",{className:"editor-autocompleters__no-avatar"});return a.jsxs(a.Fragment,{children:[t,a.jsx("span",{className:"editor-autocompleters__user-name",children:e.name}),a.jsx("span",{className:"editor-autocompleters__user-slug",children:e.slug})]})}const DHt={name:"users",className:"editor-autocompleters__user",triggerPrefix:"@",useItems(e){const t=G(o=>{const{getUsers:r}=o(Me);return r({context:"view",search:encodeURIComponent(e)})},[e]);return[x.useMemo(()=>t?t.map(o=>({key:`user-${o.slug}`,value:o,label:IHt(o)})):[],[t])]},getOptionCompletion(e){return`@${e.slug}`}};class FHt extends x.Component{constructor(t){super(t),this.needsAutosave=!!(t.isDirty&&t.isAutosaveable)}componentDidMount(){this.props.disableIntervalChecks||this.setAutosaveTimer()}componentDidUpdate(t){if(this.props.disableIntervalChecks){this.props.editsReference!==t.editsReference&&this.props.autosave();return}if(this.props.interval!==t.interval&&(clearTimeout(this.timerId),this.setAutosaveTimer()),!this.props.isDirty){this.needsAutosave=!1;return}if(this.props.isAutosaving&&!t.isAutosaving){this.needsAutosave=!1;return}this.props.editsReference!==t.editsReference&&(this.needsAutosave=!0)}componentWillUnmount(){clearTimeout(this.timerId)}setAutosaveTimer(t=this.props.interval*1e3){this.timerId=setTimeout(()=>{this.autosaveTimerHandler()},t)}autosaveTimerHandler(){if(!this.props.isAutosaveable){this.setAutosaveTimer(1e3);return}this.needsAutosave&&(this.needsAutosave=!1,this.props.autosave()),this.setAutosaveTimer()}render(){return null}}const $Ht=Co([Ul((e,t)=>{const{getReferenceByDistinctEdits:n}=e(Me),{isEditedPostDirty:o,isEditedPostAutosaveable:r,isAutosavingPost:s,getEditorSettings:i}=e(_e),{interval:c=i().autosaveInterval}=t;return{editsReference:n(),isDirty:o(),isAutosaveable:r(),isAutosaving:s(),interval:c}}),Ff((e,t)=>({autosave(){const{autosave:n=e(_e).autosave}=t;n()}}))])(FHt);function GOe(e){const{isFrontPage:t,isPostsPage:n}=G(o=>{const{canUser:r,getEditedEntityRecord:s}=o(Me),i=r("read",{kind:"root",name:"site"})?s("root","site"):void 0,c=parseInt(e,10);return{isFrontPage:i?.page_on_front===c,isPostsPage:i?.page_for_posts===c}});return t?m("Homepage"):n?m("Posts Page"):!1}const VHt=Rr(Ce);function HHt(e){const{postId:t,postType:n,postTypeLabel:o,documentTitle:r,isNotFound:s,templateTitle:i,onNavigateToPreviousEntityRecord:c,isTemplatePreview:l}=G(_=>{var v;const{getCurrentPostType:M,getCurrentPostId:y,getEditorSettings:k,getRenderingMode:S}=_(_e),{getEditedEntityRecord:C,getPostType:R,isResolving:T}=_(Me),E=M(),B=y(),N=C("postType",E,B),{default_template_types:j=[]}=(v=_(Me).getEntityRecord("root","__unstableBase"))!==null&&v!==void 0?v:{},I=LO({templateTypes:j,template:N}),P=R(E)?.labels?.singular_name;return{postId:B,postType:E,postTypeLabel:P,documentTitle:N.title,isNotFound:!N&&!T("getEditedEntityRecord","postType",E,B),templateTitle:I.title,onNavigateToPreviousEntityRecord:k().onNavigateToPreviousEntityRecord,isTemplatePreview:S()==="template-locked"}},[]),{open:u}=Oe(Ef),d=$1(),p=Q3e.includes(n),f=!!c,b=p?i:r,h=e.title||b,g=e.icon,z=GOe(t),A=x.useRef(!1);return x.useEffect(()=>{A.current=!0},[]),a.jsxs("div",{className:oe("editor-document-bar",{"has-back-button":f}),children:[a.jsx(Wd,{children:f&&a.jsx(VHt,{className:"editor-document-bar__back",icon:jt()?Af:Ew,onClick:_=>{_.stopPropagation(),c()},size:"compact",initial:A.current?{opacity:0,transform:"translateX(15%)"}:!1,animate:{opacity:1,transform:"translateX(0%)"},exit:{opacity:0,transform:"translateX(15%)"},transition:d?{duration:0}:void 0,children:m("Back")})}),!p&&l&&a.jsx(Zn,{icon:nu,className:"editor-document-bar__icon-layout"}),s?a.jsx(Sn,{children:m("Document not found")}):a.jsxs(Ce,{className:"editor-document-bar__command",onClick:()=>u(),size:"compact",children:[a.jsxs(Rr.div,{className:"editor-document-bar__title",initial:A.current?{opacity:0,transform:f?"translateX(15%)":"translateX(-15%)"}:!1,animate:{opacity:1,transform:"translateX(0%)"},transition:d?{duration:0}:void 0,children:[g&&a.jsx(Zn,{icon:g}),a.jsxs(Sn,{size:"body",as:"h1",children:[a.jsx("span",{className:"editor-document-bar__post-title",children:h?v1(h):m("No title")}),z&&a.jsx("span",{className:"editor-document-bar__post-type-label",children:`· ${z}`}),o&&!e.title&&!z&&a.jsx("span",{className:"editor-document-bar__post-type-label",children:`· ${Lt(o)}`})]})]},f),a.jsx("span",{className:"editor-document-bar__shortcut",children:j1.primary("k")})]})]})}const ane=({children:e,isValid:t,level:n,href:o,onSelect:r})=>a.jsx("li",{className:oe("document-outline__item",`is-${n.toLowerCase()}`,{"is-invalid":!t}),children:a.jsxs("a",{href:o,className:"document-outline__button",onClick:r,children:[a.jsx("span",{className:"document-outline__emdash","aria-hidden":"true"}),a.jsx("strong",{className:"document-outline__level",children:n}),a.jsx("span",{className:"document-outline__item-content",children:e})]})}),UHt=a.jsx("em",{children:m("(Empty heading)")}),XHt=[a.jsx("br",{},"incorrect-break"),a.jsx("em",{children:m("(Incorrect heading level)")},"incorrect-message")],GHt=[a.jsx("br",{},"incorrect-break-h1"),a.jsx("em",{children:m("(Your theme may already use a H1 for the post title)")},"incorrect-message-h1")],KHt=[a.jsx("br",{},"incorrect-break-multiple-h1"),a.jsx("em",{children:m("(Multiple H1 headings are not recommended)")},"incorrect-message-multiple-h1")];function YHt(){return a.jsxs(ge,{width:"138",height:"148",viewBox:"0 0 138 148",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(S0,{width:"138",height:"148",rx:"4",fill:"#F0F6FC"}),a.jsx(zA,{x1:"44",y1:"28",x2:"24",y2:"28",stroke:"#DDDDDD"}),a.jsx(S0,{x:"48",y:"16",width:"27",height:"23",rx:"4",fill:"#DDDDDD"}),a.jsx(he,{d:"M54.7585 32V23.2727H56.6037V26.8736H60.3494V23.2727H62.1903V32H60.3494V28.3949H56.6037V32H54.7585ZM67.4574 23.2727V32H65.6122V25.0241H65.5611L63.5625 26.277V24.6406L65.723 23.2727H67.4574Z",fill:"black"}),a.jsx(zA,{x1:"55",y1:"59",x2:"24",y2:"59",stroke:"#DDDDDD"}),a.jsx(S0,{x:"59",y:"47",width:"29",height:"23",rx:"4",fill:"#DDDDDD"}),a.jsx(he,{d:"M65.7585 63V54.2727H67.6037V57.8736H71.3494V54.2727H73.1903V63H71.3494V59.3949H67.6037V63H65.7585ZM74.6605 63V61.6705L77.767 58.794C78.0313 58.5384 78.2528 58.3082 78.4318 58.1037C78.6136 57.8991 78.7514 57.6989 78.8452 57.5028C78.9389 57.304 78.9858 57.0895 78.9858 56.8594C78.9858 56.6037 78.9276 56.3835 78.8111 56.1989C78.6946 56.0114 78.5355 55.8679 78.3338 55.7685C78.1321 55.6662 77.9034 55.6151 77.6477 55.6151C77.3807 55.6151 77.1477 55.669 76.9489 55.777C76.75 55.8849 76.5966 56.0398 76.4886 56.2415C76.3807 56.4432 76.3267 56.6832 76.3267 56.9616H74.5753C74.5753 56.3906 74.7045 55.8949 74.9631 55.4744C75.2216 55.054 75.5838 54.7287 76.0497 54.4986C76.5156 54.2685 77.0526 54.1534 77.6605 54.1534C78.2855 54.1534 78.8295 54.2642 79.2926 54.4858C79.7585 54.7045 80.1207 55.0085 80.3793 55.3977C80.6378 55.7869 80.767 56.233 80.767 56.7358C80.767 57.0653 80.7017 57.3906 80.571 57.7116C80.4432 58.0327 80.2145 58.3892 79.8849 58.7812C79.5554 59.1705 79.0909 59.6378 78.4915 60.1832L77.2173 61.4318V61.4915H80.8821V63H74.6605Z",fill:"black"}),a.jsx(zA,{x1:"80",y1:"90",x2:"24",y2:"90",stroke:"#DDDDDD"}),a.jsx(S0,{x:"84",y:"78",width:"30",height:"23",rx:"4",fill:"#F0B849"}),a.jsx(he,{d:"M90.7585 94V85.2727H92.6037V88.8736H96.3494V85.2727H98.1903V94H96.3494V90.3949H92.6037V94H90.7585ZM99.5284 92.4659V91.0128L103.172 85.2727H104.425V87.2841H103.683L101.386 90.919V90.9872H106.564V92.4659H99.5284ZM103.717 94V92.0227L103.751 91.3793V85.2727H105.482V94H103.717Z",fill:"black"}),a.jsx(zA,{x1:"66",y1:"121",x2:"24",y2:"121",stroke:"#DDDDDD"}),a.jsx(S0,{x:"70",y:"109",width:"29",height:"23",rx:"4",fill:"#DDDDDD"}),a.jsx(he,{d:"M76.7585 125V116.273H78.6037V119.874H82.3494V116.273H84.1903V125H82.3494V121.395H78.6037V125H76.7585ZM88.8864 125.119C88.25 125.119 87.6832 125.01 87.1861 124.791C86.6918 124.57 86.3011 124.266 86.0142 123.879C85.7301 123.49 85.5838 123.041 85.5753 122.533H87.4332C87.4446 122.746 87.5142 122.933 87.642 123.095C87.7727 123.254 87.946 123.378 88.1619 123.466C88.3778 123.554 88.6207 123.598 88.8906 123.598C89.1719 123.598 89.4205 123.548 89.6364 123.449C89.8523 123.349 90.0213 123.212 90.1435 123.036C90.2656 122.859 90.3267 122.656 90.3267 122.426C90.3267 122.193 90.2614 121.987 90.1307 121.808C90.0028 121.626 89.8182 121.484 89.5767 121.382C89.3381 121.28 89.054 121.229 88.7244 121.229H87.9105V119.874H88.7244C89.0028 119.874 89.2486 119.825 89.4616 119.729C89.6776 119.632 89.8452 119.499 89.9645 119.328C90.0838 119.155 90.1435 118.953 90.1435 118.723C90.1435 118.504 90.0909 118.312 89.9858 118.148C89.8835 117.98 89.7386 117.849 89.5511 117.756C89.3665 117.662 89.1506 117.615 88.9034 117.615C88.6534 117.615 88.4247 117.661 88.2173 117.751C88.0099 117.839 87.8438 117.966 87.7188 118.131C87.5938 118.295 87.527 118.489 87.5185 118.71H85.75C85.7585 118.207 85.902 117.764 86.1804 117.381C86.4588 116.997 86.8338 116.697 87.3054 116.482C87.7798 116.263 88.3153 116.153 88.9119 116.153C89.5142 116.153 90.0412 116.263 90.4929 116.482C90.9446 116.7 91.2955 116.996 91.5455 117.368C91.7983 117.737 91.9233 118.152 91.9205 118.612C91.9233 119.101 91.7713 119.509 91.4645 119.835C91.1605 120.162 90.7642 120.369 90.2756 120.457V120.526C90.9176 120.608 91.4063 120.831 91.7415 121.195C92.0795 121.555 92.2472 122.007 92.2443 122.55C92.2472 123.047 92.1037 123.489 91.8139 123.875C91.527 124.261 91.1307 124.565 90.625 124.787C90.1193 125.009 89.5398 125.119 88.8864 125.119Z",fill:"black"})]})}const KOe=(e=[])=>e.flatMap((t={})=>t.name==="core/heading"?{...t,level:t.attributes.level,isEmpty:ZHt(t)}:KOe(t.innerBlocks)),ZHt=e=>!e.attributes.content||e.attributes.content.trim().length===0;function QHt({onSelect:e,hasOutlineItemsDisabled:t}){const{selectBlock:n}=Oe(Q),{blocks:o,title:r,isTitleSupported:s}=G(f=>{var b;const{getBlocks:h}=f(Q),{getEditedPostAttribute:g}=f(_e),{getPostType:z}=f(Me),A=z(g("type"));return{title:g("title"),blocks:h(),isTitleSupported:(b=A?.supports?.title)!==null&&b!==void 0?b:!1}}),i=x.useRef(1),c=KOe(o);if(c.length<1)return a.jsxs("div",{className:"editor-document-outline has-no-headings",children:[a.jsx(YHt,{}),a.jsx("p",{children:m("Navigate the structure of your document and address issues like empty or incorrect heading levels.")})]});const l=document.querySelector(".editor-post-title__input"),u=s&&r&&l,p=c.reduce((f,b)=>({...f,[b.level]:(f[b.level]||0)+1}),{})[1]>1;return a.jsx("div",{className:"document-outline",children:a.jsxs("ul",{children:[u&&a.jsx(ane,{level:m("Title"),isValid:!0,onSelect:e,href:`#${l.id}`,isDisabled:t,children:r}),c.map(f=>{const b=f.level>i.current+1,h=!f.isEmpty&&!b&&!!f.level&&(f.level!==1||!p&&!u);return i.current=f.level,a.jsxs(ane,{level:`H${f.level}`,isValid:h,isDisabled:t,href:`#block-${f.clientId}`,onSelect:()=>{n(f.clientId),e?.()},children:[f.isEmpty?UHt:Jp(eo({html:f.attributes.content})),b&&XHt,f.level===1&&p&&KHt,u&&f.level===1&&!p&&GHt]},f.clientId)})]})})}function JHt(e,t){const n=da()?j1.primaryShift("z"):j1.primary("y"),o=G(s=>s(_e).hasEditorRedo(),[]),{redo:r}=Oe(_e);return a.jsx(Ce,{__next40pxDefaultSize:!0,...e,ref:t,icon:jt()?Hde:Wde,label:m("Redo"),shortcut:n,"aria-disabled":!o,onClick:o?r:void 0,className:"editor-history__redo"})}const eUt=x.forwardRef(JHt);function tUt(e,t){const n=G(r=>r(_e).hasEditorUndo(),[]),{undo:o}=Oe(_e);return a.jsx(Ce,{__next40pxDefaultSize:!0,...e,ref:t,icon:jt()?Wde:Hde,label:m("Undo"),shortcut:j1.primary("z"),"aria-disabled":!n,onClick:n?o:void 0,className:"editor-history__undo"})}const nUt=x.forwardRef(tUt);function oUt(){const[e,t]=x.useState(!1),n=G(s=>s(Q).isValidTemplate(),[]),{setTemplateValidity:o,synchronizeTemplate:r}=Oe(Q);return n?null:a.jsxs(a.Fragment,{children:[a.jsx(L1,{className:"editor-template-validation-notice",isDismissible:!1,status:"warning",actions:[{label:m("Keep it as is"),onClick:()=>o(!0)},{label:m("Reset the template"),onClick:()=>t(!0)}],children:m("The content of your post doesn’t match the template assigned to your post type.")}),a.jsx(wf,{isOpen:e,confirmButtonText:m("Reset"),onConfirm:()=>{t(!1),r()},onCancel:()=>t(!1),size:"medium",children:m("Resetting the template may result in loss of content, do you want to continue?")})]})}function cne(){const{notices:e}=G(r=>({notices:r(mt).getNotices()}),[]),{removeNotice:t}=Oe(mt),n=e.filter(({isDismissible:r,type:s})=>r&&s==="default"),o=e.filter(({isDismissible:r,type:s})=>!r&&s==="default");return a.jsxs(a.Fragment,{children:[a.jsx(cW,{notices:o,className:"components-editor-notices__pinned"}),a.jsx(cW,{notices:n,className:"components-editor-notices__dismissible",onRemove:t,children:a.jsx(oUt,{})})]})}const rUt=-3;function sUt(){const e=G(o=>o(mt).getNotices(),[]),{removeNotice:t}=Oe(mt),n=e.filter(({type:o})=>o==="snackbar").slice(rUt);return a.jsx(Z2t,{notices:n,className:"components-editor-notices__snackbar",onRemove:t})}function iUt({record:e,checked:t,onChange:n}){const{name:o,kind:r,title:s,key:i}=e,{entityRecordTitle:c,hasPostMetaChanges:l}=G(u=>{var d;if(r!=="postType"||o!=="wp_template")return{entityRecordTitle:s,hasPostMetaChanges:St(u(_e)).hasPostMetaChanges(o,i)};const p=u(Me).getEditedEntityRecord(r,o,i),{default_template_types:f=[]}=(d=u(Me).getEntityRecord("root","__unstableBase"))!==null&&d!==void 0?d:{};return{entityRecordTitle:LO({template:p,templateTypes:f}).title,hasPostMetaChanges:St(u(_e)).hasPostMetaChanges(o,i)}},[o,r,s,i]);return a.jsxs(a.Fragment,{children:[a.jsx(u_,{children:a.jsx(K0,{__nextHasNoMarginBottom:!0,label:Lt(c)||m("Untitled"),checked:t,onChange:n})}),l&&a.jsx("ul",{className:"entities-saved-states__changes",children:a.jsx("li",{children:m("Post Meta.")})})]})}const{getGlobalStylesChanges:aUt,GlobalStylesContext:cUt}=St(jn);function lUt(e,t){switch(e){case"site":return m(t===1?"This change will affect your whole site.":"These changes will affect your whole site.");case"wp_template":return m("This change will affect pages and posts that use this template.");case"page":case"post":return m("The following has been modified.")}}function uUt({record:e}){const{user:t}=x.useContext(cUt),n=G(r=>r(Me).getEntityRecord(e.kind,e.name,e.key),[e.kind,e.name,e.key]),o=aUt(t,n,{maxResults:10});return o.length?a.jsx("ul",{className:"entities-saved-states__changes",children:o.map(r=>a.jsx("li",{children:r},r))}):null}function dUt({record:e,count:t}){if(e?.name==="globalStyles")return null;const n=lUt(e?.name,t);return n?a.jsx(u_,{children:n}):null}function pUt({list:e,unselectedEntities:t,setUnselectedEntities:n}){const o=e.length,r=e[0];let i=G(c=>c(Me).getEntityConfig(r.kind,r.name),[r.kind,r.name]).label;return r?.name==="wp_template_part"&&(i=m(o===1?"Template Part":"Template Parts")),a.jsxs(Qt,{title:i,initialOpen:!0,children:[a.jsx(dUt,{record:r,count:o}),e.map(c=>a.jsx(iUt,{record:c,checked:!t.some(l=>l.kind===c.kind&&l.name===c.name&&l.key===c.key&&l.property===c.property),onChange:l=>n(c,l)},c.key||c.property)),r?.name==="globalStyles"&&a.jsx(uUt,{record:r})]})}const fUt=()=>{const{editedEntities:e,siteEdits:t,siteEntityConfig:n}=G(l=>{const{__experimentalGetDirtyEntityRecords:u,getEntityRecordEdits:d,getEntityConfig:p}=l(Me);return{editedEntities:u(),siteEdits:d("root","site"),siteEntityConfig:p("root","site")}},[]),o=x.useMemo(()=>{var l;const u=e.filter(f=>!(f.kind==="root"&&f.name==="site")),d=(l=n?.meta?.labels)!==null&&l!==void 0?l:{},p=[];for(const f in t)p.push({kind:"root",name:"site",title:d[f]||f,property:f});return[...u,...p]},[e,t,n]),[r,s]=x.useState([]),i=({kind:l,name:u,key:d,property:p},f)=>{s(f?r.filter(b=>b.kind!==l||b.name!==u||b.key!==d||b.property!==p):[...r,{kind:l,name:u,key:d,property:p}])},c=o.length-r.length>0;return{dirtyEntityRecords:o,isDirty:c,setUnselectedEntities:i,unselectedEntities:r}};function bUt(e){return e}function hUt({close:e,renderDialog:t}){const n=fUt();return a.jsx(t5,{close:e,renderDialog:t,...n})}function t5({additionalPrompt:e=void 0,close:t,onSave:n=bUt,saveEnabled:o=void 0,saveLabel:r=m("Save"),renderDialog:s,dirtyEntityRecords:i,isDirty:c,setUnselectedEntities:l,unselectedEntities:u}){const d=x.useRef(),{saveDirtyEntities:p}=St(Oe(_e)),f=i.reduce((R,T)=>{const{name:E}=T;return R[E]||(R[E]=[]),R[E].push(T),R},{}),{site:b,wp_template:h,wp_template_part:g,...z}=f,A=[b,h,g,...Object.values(z)].filter(Array.isArray),_=o??c,v=x.useCallback(()=>t(),[t]),[M,y]=v0e({onClose:()=>v()}),k=vt(t5,"label"),S=vt(t5,"description"),C=i.length?m("Select the items you want to save."):void 0;return a.jsxs("div",{ref:s?M:void 0,...s&&y,className:"entities-saved-states__panel",role:s?"dialog":void 0,"aria-labelledby":s?k:void 0,"aria-describedby":s?S:void 0,children:[a.jsxs(Yo,{className:"entities-saved-states__panel-header",gap:2,children:[a.jsx(Tn,{isBlock:!0,as:Ce,variant:"secondary",size:"compact",onClick:v,children:m("Cancel")}),a.jsx(Tn,{isBlock:!0,as:Ce,ref:d,variant:"primary",size:"compact",disabled:!_,accessibleWhenDisabled:!0,onClick:()=>p({onSave:n,dirtyEntityRecords:i,entitiesToSkip:u,close:t}),className:"editor-entities-saved-states__save-button",children:r})]}),a.jsxs("div",{className:"entities-saved-states__text-prompt",children:[a.jsxs("div",{className:"entities-saved-states__text-prompt--header-wrapper",id:s?k:void 0,children:[a.jsx("strong",{className:"entities-saved-states__text-prompt--header",children:m("Are you ready to save?")}),e]}),a.jsx("p",{id:s?S:void 0,children:c?cr(xe(Dn("There is <strong>%d site change</strong> waiting to be saved.","There are <strong>%d site changes</strong> waiting to be saved.",i.length),i.length),{strong:a.jsx("strong",{})}):C})]}),A.map(R=>a.jsx(pUt,{list:R,unselectedEntities:u,setUnselectedEntities:l},R[0].name))]})}function mUt(){try{return uo(_e).getEditedPostContent()}catch{}}function lne({text:e,children:t,variant:n="secondary"}){const o=Hl(e);return a.jsx(Ce,{__next40pxDefaultSize:!0,variant:n,ref:o,children:t})}class gUt extends x.Component{constructor(){super(...arguments),this.state={error:null}}componentDidCatch(t){EN("editor.ErrorBoundary.errorLogged",t)}static getDerivedStateFromError(t){return{error:t}}render(){const{error:t}=this.state,{canCopyContent:n=!1}=this.props;return t?a.jsxs(Ot,{className:"editor-error-boundary",alignment:"baseline",spacing:4,justify:"space-between",expanded:!1,wrap:!0,children:[a.jsx(Sn,{as:"p",children:m("The editor has encountered an unexpected error.")}),a.jsxs(Ot,{expanded:!1,children:[n&&a.jsx(lne,{text:mUt,children:m("Copy contents")}),a.jsx(lne,{variant:"primary",text:t?.stack,children:m("Copy error")})]})]}):this.props.children}}function YOe({children:e}){return G(n=>{const{getEditedPostAttribute:o}=n(_e),{getPostType:r}=n(Me);return!!r(o("type"))?.supports?.["page-attributes"]},[])?e:null}function Sc({children:e,supportKeys:t}){const n=G(r=>{const{getEditedPostAttribute:s}=r(_e),{getPostType:i}=r(Me);return i(s("type"))},[]);let o=!!n;return n&&(o=(Array.isArray(t)?t:[t]).some(r=>!!n.supports[r])),o?e:null}const xs=x.forwardRef(({className:e,label:t,children:n},o)=>a.jsxs(Ot,{className:oe("editor-post-panel__row",e),ref:o,children:[t&&a.jsx("div",{className:"editor-post-panel__row-label",children:t}),a.jsx("div",{className:"editor-post-panel__row-control",children:n})]}));function ZOe(e){const t=e.map(r=>({children:[],parent:void 0,...r}));if(t.some(({parent:r})=>r===void 0))return t;const n=t.reduce((r,s)=>{const{parent:i}=s;return r[i]||(r[i]=[]),r[i].push(s),r},{}),o=r=>r.map(s=>{const i=n[s.id];return{...s,children:i&&i.length?o(i):[]}});return o(n[0]||[])}const o3=e=>Lt(e),QOe=e=>({...e,name:o3(e.name)}),MUt=e=>(e??[]).map(QOe);function iN(e){return e?.title?.rendered?Lt(e.title.rendered):`#${e.id} (${m("no title")})`}const une=(e,t)=>{const n=ms(e||"").toLowerCase(),o=ms(t||"").toLowerCase();return n===o?0:n.startsWith(o)?n.length:1/0};function zUt(){const{editPost:e}=Oe(_e),[t,n]=x.useState(!1),{isHierarchical:o,parentPostId:r,parentPostTitle:s,pageItems:i}=G(d=>{var p;const{getPostType:f,getEntityRecords:b,getEntityRecord:h}=d(Me),{getCurrentPostId:g,getEditedPostAttribute:z}=d(_e),A=z("type"),_=z("parent"),v=f(A),M=g(),y=(p=v?.hierarchical)!==null&&p!==void 0?p:!1,k={per_page:100,exclude:M,parent_exclude:M,orderby:"menu_order",order:"asc",_fields:"id,title,parent"};t&&(k.search=t);const S=_?h("postType",A,_):null;return{isHierarchical:y,parentPostId:_,parentPostTitle:S?iN(S):"",pageItems:y?b("postType",A,k):null}},[t]),c=x.useMemo(()=>{const d=(h,g=0)=>h.map(_=>[{value:_.id,label:"— ".repeat(g)+Lt(_.name),rawName:_.name},...d(_.children||[],g+1)]).sort(([_],[v])=>{const M=une(_.rawName,t),y=une(v.rawName,t);return M>=y?1:-1}).flat();if(!i)return[];let p=i.map(h=>({id:h.id,parent:h.parent,name:iN(h)}));t||(p=ZOe(p));const f=d(p),b=f.find(h=>h.value===r);return s&&!b&&f.unshift({value:r,label:s}),f},[i,t,s,r]);if(!o)return null;const l=d=>{n(d)},u=d=>{e({parent:d})};return a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,className:"editor-page-attributes__parent",label:m("Parent"),help:m("Choose a parent page."),value:r,options:c,onFilterValueChange:F1(l,300),onChange:u,hideLabelFromVision:!0})}function OUt({isOpen:e,onClick:t}){const n=G(r=>{const{getEditedPostAttribute:s}=r(_e),i=s("parent");if(!i)return null;const{getEntityRecord:c}=r(Me),l=s("type");return c("postType",l,i)},[]),o=x.useMemo(()=>n?iN(n):m("None"),[n]);return a.jsx(Ce,{size:"compact",className:"editor-post-parent__panel-toggle",variant:"tertiary","aria-expanded":e,"aria-label":xe(m("Change parent: %s"),o),onClick:t,children:o})}function yUt(){const e=G(r=>r(Me).getEntityRecord("root","__unstableBase")?.home,[]),[t,n]=x.useState(null),o=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]);return a.jsx(xs,{label:m("Parent"),ref:n,children:a.jsx(so,{popoverProps:o,className:"editor-post-parent__panel-dropdown",contentClassName:"editor-post-parent__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:r,onToggle:s})=>a.jsx(OUt,{isOpen:r,onClick:s}),renderContent:({onClose:r})=>a.jsxs("div",{className:"editor-post-parent",children:[a.jsx(Qs,{title:m("Parent"),onClose:r}),a.jsxs("div",{children:[cr(xe(m('Child pages inherit characteristics from their parent, such as URL structure. For instance, if "Pricing" is a child of "Services", its URL would be %s<wbr />/services<wbr />/pricing.'),Ph(e).replace(/([/.])/g,"<wbr />$1")),{wbr:a.jsx("wbr",{})}),a.jsx("p",{children:cr(m("They also show up as sub-items in the default navigation menu. <a>Learn more.</a>"),{a:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#page-attributes")})})})]}),a.jsx(zUt,{})]})})})}const AUt="page-attributes";function vUt(){const{isEnabled:e,postType:t}=G(n=>{const{getEditedPostAttribute:o,isEditorPanelEnabled:r}=n(_e),{getPostType:s}=n(Me);return{isEnabled:r(AUt),postType:s(o("type"))}},[]);return!e||!t?null:a.jsx(yUt,{})}function xUt(){return a.jsx(YOe,{children:a.jsx(vUt,{})})}const wT=m("Custom Template");function JOe({onClose:e}){const{defaultBlockTemplate:t,onNavigateToEntityRecord:n}=G(d=>{const{getEditorSettings:p,getCurrentTemplateId:f}=d(_e);return{defaultBlockTemplate:p().defaultBlockTemplate,onNavigateToEntityRecord:p().onNavigateToEntityRecord,getTemplateId:f}}),{createTemplate:o}=St(Oe(_e)),[r,s]=x.useState(""),[i,c]=x.useState(!1),l=()=>{s(""),e()},u=async d=>{if(d.preventDefault(),i)return;c(!0);const p=t??Ks([Ee("core/group",{tagName:"header",layout:{inherit:!0}},[Ee("core/site-title"),Ee("core/site-tagline")]),Ee("core/separator"),Ee("core/group",{tagName:"main"},[Ee("core/group",{layout:{inherit:!0}},[Ee("core/post-title")]),Ee("core/post-content",{layout:{inherit:!0}})])]),f=await o({slug:w5(r||wT),content:p,title:r||wT});c(!1),n({postId:f.id,postType:"wp_template"}),l()};return a.jsx(Zo,{title:m("Create custom template"),onRequestClose:l,focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{className:"editor-post-template__create-form",onSubmit:u,children:a.jsxs(dt,{spacing:"3",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Name"),value:r,onChange:s,placeholder:wT,disabled:i,help:m('Describe the template, e.g. "Post with sidebar". A custom template can be manually applied to any post or page.')}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:l,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",isBusy:i,"aria-disabled":i,children:m("Create")})]})]})})})}function lk(){return G(e=>{const{getCurrentPostId:t,getCurrentPostType:n}=e(_e);return{postId:t(),postType:n()}},[])}function uk(){const{postType:e,postId:t}=lk();return G(n=>{const{canUser:o,getEntityRecord:r,getEntityRecords:s}=n(Me),i=o("read",{kind:"root",name:"site"})?r("root","site"):void 0,c=s("postType","wp_template",{per_page:-1}),l=+t===i?.page_for_posts,u=e==="page"&&+t===i?.page_on_front&&c?.some(({slug:d})=>d==="front-page");return!l&&!u},[t,e])}function eye(e){return G(t=>t(Me).getEntityRecords("postType","wp_template",{per_page:-1,post_type:e}),[e])}function tye(e){const t=nye(),n=uk(),o=eye(e);return x.useMemo(()=>n&&o?.filter(r=>r.is_custom&&r.slug!==t&&!!r.content.raw),[o,t,n])}function nye(){const{postType:e,postId:t}=lk(),n=eye(e),o=G(r=>r(Me).getEditedEntityRecord("postType",e,t)?.template,[e,t]);if(o)return n?.find(r=>r.slug===o)?.slug}const wUt={className:"editor-post-template__dropdown",placement:"bottom-start"};function _Ut({isOpen:e,onClick:t}){const n=G(o=>{const r=o(_e).getEditedPostAttribute("template"),{supportsTemplateMode:s,availableTemplates:i}=o(_e).getEditorSettings();if(!s&&i[r])return i[r];const c=o(Me).canUser("create",{kind:"postType",name:"wp_template"})&&o(_e).getCurrentTemplateId();return c?.title||c?.slug||i?.[r]},[]);return a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary","aria-expanded":e,"aria-label":m("Template options"),onClick:t,children:n??m("Default template")})}function kUt({onClose:e}){var t,n;const o=uk(),{availableTemplates:r,fetchedTemplates:s,selectedTemplateSlug:i,canCreate:c,canEdit:l,currentTemplateId:u,onNavigateToEntityRecord:d,getEditorSettings:p}=G(_=>{const{canUser:v,getEntityRecords:M}=_(Me),y=_(_e).getEditorSettings(),k=v("create",{kind:"postType",name:"wp_template"}),S=_(_e).getCurrentTemplateId();return{availableTemplates:y.availableTemplates,fetchedTemplates:k?M("postType","wp_template",{post_type:_(_e).getCurrentPostType(),per_page:-1}):void 0,selectedTemplateSlug:_(_e).getEditedPostAttribute("template"),canCreate:o&&k&&y.supportsTemplateMode,canEdit:o&&k&&y.supportsTemplateMode&&!!S,currentTemplateId:S,onNavigateToEntityRecord:y.onNavigateToEntityRecord,getEditorSettings:_(_e).getEditorSettings}},[o]),f=x.useMemo(()=>Object.entries({...r,...Object.fromEntries((s??[]).map(({slug:_,title:v})=>[_,v.rendered]))}).map(([_,v])=>({value:_,label:v})),[r,s]),b=(t=f.find(_=>_.value===i))!==null&&t!==void 0?t:f.find(_=>!_.value),{editPost:h}=Oe(_e),{createSuccessNotice:g}=Oe(mt),[z,A]=x.useState(!1);return a.jsxs("div",{className:"editor-post-template__classic-theme-dropdown",children:[a.jsx(Qs,{title:m("Template"),help:m("Templates define the way content is displayed when viewing your site."),actions:c?[{icon:fZe,label:m("Add template"),onClick:()=>A(!0)}]:[],onClose:e}),o?a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,hideLabelFromVision:!0,label:m("Template"),value:(n=b?.value)!==null&&n!==void 0?n:"",options:f,onChange:_=>h({template:_||""})}):a.jsx(L1,{status:"warning",isDismissible:!1,children:m("The posts page template cannot be changed.")}),l&&d&&a.jsx("p",{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>{d({postId:u,postType:"wp_template"}),e(),g(m("Editing template. Changes made here affect all posts and pages that use the template."),{type:"snackbar",actions:[{label:m("Go back"),onClick:()=>p().onNavigateToPreviousEntityRecord()}]})},children:m("Edit template")})}),z&&a.jsx(JOe,{onClose:()=>A(!1)})]})}function SUt(){return a.jsx(so,{popoverProps:wUt,focusOnMount:!0,renderToggle:({isOpen:e,onToggle:t})=>a.jsx(_Ut,{isOpen:e,onClick:t}),renderContent:({onClose:e})=>a.jsx(kUt,{onClose:e})})}const{PreferenceBaseOption:CUt}=St(cp);function c2(e){const{toggleEditorPanelEnabled:t}=Oe(_e),{isChecked:n,isRemoved:o}=G(r=>{const{isEditorPanelEnabled:s,isEditorPanelRemoved:i}=r(_e);return{isChecked:s(e.panelName),isRemoved:i(e.panelName)}},[e.panelName]);return o?null:a.jsx(CUt,{isChecked:n,onChange:()=>t(e.panelName),...e})}const{Fill:qUt,Slot:RUt}=Qn("EnablePluginDocumentSettingPanelOption"),FI=({label:e,panelName:t})=>a.jsx(qUt,{children:a.jsx(c2,{label:e,panelName:t})});FI.Slot=RUt;const{Fill:TUt,Slot:EUt}=Qn("PluginDocumentSettingPanel"),oye=({name:e,className:t,title:n,icon:o,children:r})=>{const{name:s}=PO(),i=`${s}/${e}`,{opened:c,isEnabled:l}=G(d=>{const{isEditorPanelOpened:p,isEditorPanelEnabled:f}=d(_e);return{opened:p(i),isEnabled:f(i)}},[i]),{toggleEditorPanelOpened:u}=Oe(_e);return e===void 0&&globalThis.SCRIPT_DEBUG===!0&&zn("PluginDocumentSettingPanel requires a name property."),a.jsxs(a.Fragment,{children:[a.jsx(FI,{label:n,panelName:i}),a.jsx(TUt,{children:l&&a.jsx(Qt,{className:t,title:n,icon:o,opened:c,onToggle:()=>u(i),children:r})})]})};oye.Slot=EUt;const{Fill:WUt,Slot:NUt}=Qn("PluginPostPublishPanel"),rye=({children:e,className:t,title:n,initialOpen:o=!1,icon:r})=>{const{icon:s}=PO();return a.jsx(WUt,{children:a.jsx(Qt,{className:t,initialOpen:o||!n,title:n,icon:r??s,children:e})})};rye.Slot=NUt;const{Fill:BUt,Slot:LUt}=Qn("PluginPostStatusInfo"),sye=({children:e,className:t})=>a.jsx(BUt,{children:a.jsx(u_,{className:t,children:e})});sye.Slot=LUt;const{Fill:PUt,Slot:jUt}=Qn("PluginPrePublishPanel"),iye=({children:e,className:t,title:n,initialOpen:o=!1,icon:r})=>{const{icon:s}=PO();return a.jsx(PUt,{children:a.jsx(Qt,{className:t,initialOpen:o||!n,title:n,icon:r??s,children:e})})};iye.Slot=jUt;function aN({className:e,...t}){return a.jsx(ck,{panelClassName:e,className:"editor-sidebar",scope:"core",...t})}function IUt({onClick:e}){const[t,n]=x.useState(!1),{postType:o,postId:r}=lk(),s=tye(o),{editEntityRecord:i}=Oe(Me);if(!s?.length)return null;const c=async l=>{i("postType",o,r,{template:l.name},{undoIgnore:!0}),n(!1),e()};return a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>n(!0),children:m("Change template")}),t&&a.jsx(Zo,{title:m("Choose a template"),onRequestClose:()=>n(!1),overlayClassName:"editor-post-template__swap-template-modal",isFullScreen:!0,children:a.jsx("div",{className:"editor-post-template__swap-template-modal-content",children:a.jsx(DUt,{postType:o,onSelect:c})})})]})}function DUt({postType:e,onSelect:t}){const n=tye(e),o=x.useMemo(()=>n.map(r=>({name:r.slug,blocks:Ko(r.content.raw),title:Lt(r.title.rendered),id:r.id})),[n]);return a.jsx(qa,{label:m("Templates"),blockPatterns:o,onClickPattern:t})}function FUt({onClick:e}){const t=nye(),n=uk(),{postType:o,postId:r}=lk(),{editEntityRecord:s}=Oe(Me);return!t||!n?null:a.jsx(Ct,{onClick:()=>{s("postType",o,r,{template:""},{undoIgnore:!0}),e()},children:m("Use default template")})}function $Ut({onClick:e}){const{canCreateTemplates:t}=G(s=>{const{canUser:i}=s(Me);return{canCreateTemplates:i("create",{kind:"postType",name:"wp_template"})}},[]),[n,o]=x.useState(!1),r=uk();return!t||!r?null:a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>{o(!0)},children:m("Create new template")}),n&&a.jsx(JOe,{onClose:()=>{o(!1),e()}})]})}const VUt={className:"editor-post-template__dropdown",placement:"bottom-start"};function HUt({id:e}){const{isTemplateHidden:t,onNavigateToEntityRecord:n,getEditorSettings:o,hasGoBack:r}=G(b=>{const{getRenderingMode:h,getEditorSettings:g}=St(b(_e)),z=g();return{isTemplateHidden:h()==="post-only",onNavigateToEntityRecord:z.onNavigateToEntityRecord,getEditorSettings:g,hasGoBack:z.hasOwnProperty("onNavigateToPreviousEntityRecord")}},[]),{get:s}=G(ht),{editedRecord:i,hasResolved:c}=Y5("postType","wp_template",e),{createSuccessNotice:l}=Oe(mt),{setRenderingMode:u}=Oe(_e),d=G(b=>!!b(Me).canUser("create",{kind:"postType",name:"wp_template"}),[]);if(!c)return null;const p=r?[{label:m("Go back"),onClick:()=>o().onNavigateToPreviousEntityRecord()}]:void 0,f=()=>{s("core/edit-site","welcomeGuideTemplate")||l(m("Editing template. Changes made here affect all posts and pages that use the template."),{type:"snackbar",actions:p})};return a.jsx(c0,{popoverProps:VUt,focusOnMount:!0,toggleProps:{size:"compact",variant:"tertiary",tooltipPosition:"middle left"},label:m("Template options"),text:Lt(i.title),icon:null,children:({onClose:b})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{children:[d&&a.jsx(Ct,{onClick:()=>{n({postId:i.id,postType:"wp_template"}),b(),f()},children:m("Edit template")}),a.jsx(IUt,{onClick:b}),a.jsx(FUt,{onClick:b}),d&&a.jsx($Ut,{onClick:b})]}),a.jsx(Cn,{children:a.jsx(Ct,{icon:t?void 0:M0,isSelected:!t,role:"menuitemcheckbox",onClick:()=>{u(t?"template-locked":"post-only")},children:m("Show template")})})]})})}function UUt(){const{templateId:e,isBlockTheme:t}=G(r=>{const{getCurrentTemplateId:s,getEditorSettings:i}=r(_e);return{templateId:s(),isBlockTheme:i().__unstableIsBlockBasedTheme}},[]),n=G(r=>{var s;const i=r(_e).getCurrentPostType();if(!r(Me).getPostType(i)?.viewable)return!1;const l=r(_e).getEditorSettings();return!!l.availableTemplates&&Object.keys(l.availableTemplates).length>0?!0:l.supportsTemplateMode&&(s=r(Me).canUser("create",{kind:"postType",name:"wp_template"}))!==null&&s!==void 0?s:!1},[]),o=G(r=>{var s;return(s=r(Me).canUser("read",{kind:"postType",name:"wp_template"}))!==null&&s!==void 0?s:!1},[]);return(!t||!o)&&n?a.jsx(xs,{label:m("Template"),children:a.jsx(SUt,{})}):t&&e?a.jsx(xs,{label:m("Template"),children:a.jsx(HUt,{id:e})}):null}const aye={_fields:"id,name",context:"view"},$I={who:"authors",per_page:100,...aye};function VI(e){const{authorId:t,authors:n,postAuthor:o}=G(s=>{const{getUser:i,getUsers:c}=s(Me),{getEditedPostAttribute:l}=s(_e),u=l("author"),d={...$I};return e&&(d.search=e,d.search_columns=["name"]),{authorId:u,authors:c(d),postAuthor:i(u,aye)}},[e]),r=x.useMemo(()=>{const s=(n??[]).map(l=>({value:l.id,label:Lt(l.name)})),i=s.findIndex(({value:l})=>o?.id===l);let c=[];return i<0&&o?c=[{value:o.id,label:Lt(o.name)}]:i<0&&!o&&(c=[{value:0,label:m("(No author)")}]),[...c,...s]},[n,o]);return{authorId:t,authorOptions:r,postAuthor:o}}function XUt(){const[e,t]=x.useState(),{editPost:n}=Oe(_e),{authorId:o,authorOptions:r}=VI(e),s=c=>{c&&n({author:c})},i=c=>{t(c)};return a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Author"),options:r,value:o,onFilterValueChange:F1(i,300),onChange:s,allowReset:!1,hideLabelFromVision:!0})}function GUt(){const{editPost:e}=Oe(_e),{authorId:t,authorOptions:n}=VI(),o=r=>{const s=Number(r);e({author:s})};return a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"post-author-selector",label:m("Author"),options:n,onChange:o,value:t,hideLabelFromVision:!0})}const KUt=25;function YUt(){return G(t=>t(Me).getUsers($I)?.length>=KUt,[])?a.jsx(XUt,{}):a.jsx(GUt,{})}function ZUt({children:e}){const{hasAssignAuthorAction:t,hasAuthors:n}=G(o=>{var r;const s=o(_e).getCurrentPost(),i=o(Me).getUsers($I);return{hasAssignAuthorAction:(r=s._links?.["wp:action-assign-author"])!==null&&r!==void 0?r:!1,hasAuthors:i?.length>=1}},[]);return!t||!n?null:a.jsx(Sc,{supportKeys:"author",children:e})}function QUt({isOpen:e,onClick:t}){const{postAuthor:n}=VI(),o=Lt(n?.name)||m("(No author)");return a.jsx(Ce,{size:"compact",className:"editor-post-author__panel-toggle",variant:"tertiary","aria-expanded":e,"aria-label":xe(m("Change author: %s"),o),onClick:t,children:o})}function JUt(){const[e,t]=x.useState(null),n=x.useMemo(()=>({anchor:e,placement:"left-start",offset:36,shift:!0}),[e]);return a.jsx(ZUt,{children:a.jsx(xs,{label:m("Author"),ref:t,children:a.jsx(so,{popoverProps:n,contentClassName:"editor-post-author__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:o,onToggle:r})=>a.jsx(QUt,{isOpen:o,onClick:r}),renderContent:({onClose:o})=>a.jsxs("div",{className:"editor-post-author",children:[a.jsx(Qs,{title:m("Author"),onClose:o}),a.jsx(YUt,{onClose:o})]})})})})}const eXt=[{label:We("Open",'Adjective: e.g. "Comments are open"'),value:"open",description:m("Visitors can add new comments and replies.")},{label:m("Closed"),value:"closed",description:[m("Visitors cannot add new comments or replies."),m("Existing comments remain visible.")].join(" ")}];function tXt(){const e=G(o=>{var r;return(r=o(_e).getEditedPostAttribute("comment_status"))!==null&&r!==void 0?r:"open"},[]),{editPost:t}=Oe(_e),n=o=>t({comment_status:o});return a.jsx("form",{children:a.jsx(dt,{spacing:4,children:a.jsx(sb,{className:"editor-change-status__options",hideLabelFromVision:!0,label:m("Comment status"),options:eXt,onChange:n,selected:e})})})}function nXt(){const e=G(o=>{var r;return(r=o(_e).getEditedPostAttribute("ping_status"))!==null&&r!==void 0?r:"open"},[]),{editPost:t}=Oe(_e),n=()=>t({ping_status:e==="open"?"closed":"open"});return a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Enable pingbacks & trackbacks"),checked:e==="open",onChange:n,help:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/trackbacks-and-pingbacks/"),children:m("Learn more about pingbacks & trackbacks")})})}const oXt="discussion-panel";function rXt({onClose:e}){return a.jsxs("div",{className:"editor-post-discussion",children:[a.jsx(Qs,{title:m("Discussion"),onClose:e}),a.jsxs(dt,{spacing:4,children:[a.jsx(Sc,{supportKeys:"comments",children:a.jsx(tXt,{})}),a.jsx(Sc,{supportKeys:"trackbacks",children:a.jsx(nXt,{})})]})]})}function sXt({isOpen:e,onClick:t}){const{commentStatus:n,pingStatus:o,commentsSupported:r,trackbacksSupported:s}=G(c=>{var l,u;const{getEditedPostAttribute:d}=c(_e),{getPostType:p}=c(Me),f=p(d("type"));return{commentStatus:(l=d("comment_status"))!==null&&l!==void 0?l:"open",pingStatus:(u=d("ping_status"))!==null&&u!==void 0?u:"open",commentsSupported:!!f.supports.comments,trackbacksSupported:!!f.supports.trackbacks}},[]);let i;return n==="open"?o==="open"?i=We("Open",'Adjective: e.g. "Comments are open"'):i=s?m("Comments only"):We("Open",'Adjective: e.g. "Comments are open"'):o==="open"?i=m(r?"Pings only":"Pings enabled"):i=m("Closed"),a.jsx(Ce,{size:"compact",className:"editor-post-discussion__panel-toggle",variant:"tertiary","aria-label":m("Change discussion options"),"aria-expanded":e,onClick:t,children:i})}function iXt(){const{isEnabled:e}=G(r=>{const{isEditorPanelEnabled:s}=r(_e);return{isEnabled:s(oXt)}},[]),[t,n]=x.useState(null),o=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]);return e?a.jsx(Sc,{supportKeys:["comments","trackbacks"],children:a.jsx(xs,{label:m("Discussion"),ref:n,children:a.jsx(so,{popoverProps:o,className:"editor-post-discussion__panel-dropdown",contentClassName:"editor-post-discussion__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:r,onToggle:s})=>a.jsx(sXt,{isOpen:r,onClick:s}),renderContent:({onClose:r})=>a.jsx(rXt,{onClose:r})})})}):null}function aXt({hideLabelFromVision:e=!1,updateOnBlur:t=!1}){const{excerpt:n,shouldUseDescriptionLabel:o,usedAttribute:r}=G(d=>{const{getCurrentPostType:p,getEditedPostAttribute:f}=d(_e),b=p(),h=["wp_template","wp_template_part"].includes(b)?"description":"excerpt";return{excerpt:f(h),shouldUseDescriptionLabel:["wp_template","wp_template_part","wp_block"].includes(b),usedAttribute:h}},[]),{editPost:s}=Oe(_e),[i,c]=x.useState(Lt(n)),l=d=>{s({[r]:d})},u=m(o?"Write a description (optional)":"Write an excerpt (optional)");return a.jsx("div",{className:"editor-post-excerpt",children:a.jsx(Li,{__nextHasNoMarginBottom:!0,label:u,hideLabelFromVision:e,className:"editor-post-excerpt__textarea",onChange:t?c:l,onBlur:t?()=>l(i):void 0,value:t?i:n,help:o?m("Write a description"):a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#excerpt"),children:m("Learn more about manual excerpts")})})})}function cye({children:e}){return a.jsx(Sc,{supportKeys:"excerpt",children:e})}const{Fill:cXt,Slot:lXt}=Qn("PluginPostExcerpt"),HI=({children:e,className:t})=>a.jsx(cXt,{children:a.jsx(u_,{className:t,children:e})});HI.Slot=lXt;const uXt="post-excerpt";function dXt(){return a.jsx(cye,{children:a.jsx(pXt,{})})}function pXt(){const{shouldRender:e,excerpt:t,shouldBeUsedAsDescription:n,allowEditing:o}=G(p=>{const{getCurrentPostType:f,getCurrentPostId:b,getEditedPostAttribute:h,isEditorPanelEnabled:g}=p(_e),z=f(),A=["wp_template","wp_template_part"].includes(z),_=z==="wp_block",v=A||_,M=A?"description":"excerpt",y=A&&p(Me).getEntityRecord("postType",z,b()),k=g(uXt)||v;return{excerpt:h(M),shouldRender:k,shouldBeUsedAsDescription:v,allowEditing:k&&(!v||_||y&&y.source===Z3e.custom&&!y.has_theme_file&&y.is_custom)}},[]),[r,s]=x.useState(null),i=m(n?"Description":"Excerpt"),c=x.useMemo(()=>({anchor:r,"aria-label":i,headerTitle:i,placement:"left-start",offset:36,shift:!0}),[r,i]);if(!e)return!1;const l=!!t&&a.jsx(Sn,{align:"left",numberOfLines:4,truncate:o,children:Lt(t)});if(!o)return l;const u=m(n?"Add a description…":"Add an excerpt…"),d=m(n?"Edit description":"Edit excerpt");return a.jsxs(dt,{children:[l,a.jsx(so,{className:"editor-post-excerpt__dropdown",contentClassName:"editor-post-excerpt__dropdown__content",popoverProps:c,focusOnMount:!0,ref:s,renderToggle:({onToggle:p})=>a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:p,variant:"link",children:l?d:u}),renderContent:({onClose:p})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:i,onClose:p}),a.jsx(dt,{spacing:4,children:a.jsx(HI.Slot,{children:f=>a.jsxs(a.Fragment,{children:[a.jsx(aXt,{hideLabelFromVision:!0,updateOnBlur:!0}),f]})})})]})})]})}function fXt({children:e,supportKeys:t}){const{postType:n,themeSupports:o}=G(s=>({postType:s(_e).getEditedPostAttribute("type"),themeSupports:s(Me).getThemeSupports()}),[]);return(Array.isArray(t)?t:[t]).some(s=>{var i;const c=(i=o?.[s])!==null&&i!==void 0?i:!1;return s==="post-thumbnails"&&Array.isArray(c)?c.includes(n):c})?e:null}function n5({children:e}){return a.jsx(fXt,{supportKeys:"post-thumbnails",children:a.jsx(Sc,{supportKeys:"thumbnail",children:e})})}const dne=["image"],bXt=m("Featured image"),hXt=m("Add a featured image"),mXt=a.jsx("p",{children:m("To edit the featured image, you need permission to upload media.")});function gXt(e,t){var n,o;if(!e)return{};const r=gr("editor.PostFeaturedImage.imageSize","large",e.id,t);if(r in((n=e?.media_details?.sizes)!==null&&n!==void 0?n:{}))return{mediaWidth:e.media_details.sizes[r].width,mediaHeight:e.media_details.sizes[r].height,mediaSourceUrl:e.media_details.sizes[r].source_url};const s=gr("editor.PostFeaturedImage.imageSize","thumbnail",e.id,t);return s in((o=e?.media_details?.sizes)!==null&&o!==void 0?o:{})?{mediaWidth:e.media_details.sizes[s].width,mediaHeight:e.media_details.sizes[s].height,mediaSourceUrl:e.media_details.sizes[s].source_url}:{mediaWidth:e.media_details.width,mediaHeight:e.media_details.height,mediaSourceUrl:e.source_url}}function MXt({currentPostId:e,featuredImageId:t,onUpdateImage:n,onRemoveImage:o,media:r,postType:s,noticeUI:i,noticeOperations:c,isRequestingFeaturedImageMedia:l}){const u=x.useRef(!1),[d,p]=x.useState(!1),{getSettings:f}=G(Q),{mediaSourceUrl:b}=gXt(r,e);function h(_){f().mediaUpload({allowedTypes:dne,filesList:_,onFileChange([v]){if(Nr(v?.url)){p(!0);return}v&&n(v),p(!1)},onError(v){c.removeAllNotices(),c.createErrorNotice(v)}})}function g(_){return _.alt_text?xe(m("Current image: %s"),_.alt_text):xe(m("The current image has no alternative text. The file name is: %s"),_.media_details.sizes?.full?.file||_.slug)}function z(_){u.current&&_&&(_.focus(),u.current=!1)}const A=!l&&!!t&&!r;return a.jsxs(n5,{children:[i,a.jsxs("div",{className:"editor-post-featured-image",children:[r&&a.jsx("div",{id:`editor-post-featured-image-${t}-describedby`,className:"hidden",children:g(r)}),a.jsx(Hd,{fallback:mXt,children:a.jsx(ab,{title:s?.labels?.featured_image||bXt,onSelect:n,unstableFeaturedImageFlow:!0,allowedTypes:dne,modalClass:"editor-post-featured-image__media-modal",render:({open:_})=>a.jsxs("div",{className:"editor-post-featured-image__container",children:[A?a.jsx(L1,{status:"warning",isDismissible:!1,children:m("Could not retrieve the featured image data.")}):a.jsxs(Ce,{__next40pxDefaultSize:!0,ref:z,className:t?"editor-post-featured-image__preview":"editor-post-featured-image__toggle",onClick:_,"aria-label":t?m("Edit or replace the featured image"):null,"aria-describedby":t?`editor-post-featured-image-${t}-describedby`:null,"aria-haspopup":"dialog",disabled:d,accessibleWhenDisabled:!0,children:[!!t&&r&&a.jsx("img",{className:"editor-post-featured-image__preview-image",src:b,alt:g(r)}),(d||l)&&a.jsx(Xn,{}),!t&&!d&&(s?.labels?.set_featured_image||hXt)]}),!!t&&a.jsxs(Ot,{className:oe("editor-post-featured-image__actions",{"editor-post-featured-image__actions-missing-image":A,"editor-post-featured-image__actions-is-requesting-image":l}),children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"editor-post-featured-image__action",onClick:_,"aria-haspopup":"dialog",variant:A?"secondary":void 0,children:m("Replace")}),a.jsx(Ce,{__next40pxDefaultSize:!0,className:"editor-post-featured-image__action",onClick:()=>{o(),u.current=!0},variant:A?"secondary":void 0,isDestructive:A,children:m("Remove")})]}),a.jsx(Tz,{onFilesDrop:h})]}),value:t})})]})]})}const zXt=Ul(e=>{const{getMedia:t,getPostType:n,hasFinishedResolution:o}=e(Me),{getCurrentPostId:r,getEditedPostAttribute:s}=e(_e),i=s("featured_media");return{media:i?t(i,{context:"view"}):null,currentPostId:r(),postType:n(s("type")),featuredImageId:i,isRequestingFeaturedImageMedia:!!i&&!o("getMedia",[i,{context:"view"}])}}),OXt=Ff((e,{noticeOperations:t},{select:n})=>{const{editPost:o}=e(_e);return{onUpdateImage(r){o({featured_media:r.id})},onDropImage(r){n(Q).getSettings().mediaUpload({allowedTypes:["image"],filesList:r,onFileChange([s]){o({featured_media:s.id})},onError(s){t.removeAllNotices(),t.createErrorNotice(s)}})},onRemoveImage(){o({featured_media:0})}}}),pne=Co(rmt,zXt,OXt,ap("editor.PostFeaturedImage"))(MXt),_T="featured-image";function yXt({withPanelBody:e=!0}){var t;const{postType:n,isEnabled:o,isOpened:r}=G(i=>{const{getEditedPostAttribute:c,isEditorPanelEnabled:l,isEditorPanelOpened:u}=i(_e),{getPostType:d}=i(Me);return{postType:d(c("type")),isEnabled:l(_T),isOpened:u(_T)}},[]),{toggleEditorPanelOpened:s}=Oe(_e);return o?e?a.jsx(n5,{children:a.jsx(Qt,{title:(t=n?.labels?.featured_image)!==null&&t!==void 0?t:m("Featured image"),opened:r,onToggle:()=>s(_T),children:a.jsx(pne,{})})}):a.jsx(n5,{children:a.jsx(pne,{})}):null}function lye({children:e}){return G(n=>n(_e).getEditorSettings().disablePostFormats,[])?null:a.jsx(Sc,{supportKeys:"post-formats",children:e})}const UI=[{id:"aside",caption:m("Aside")},{id:"audio",caption:m("Audio")},{id:"chat",caption:m("Chat")},{id:"gallery",caption:m("Gallery")},{id:"image",caption:m("Image")},{id:"link",caption:m("Link")},{id:"quote",caption:m("Quote")},{id:"standard",caption:m("Standard")},{id:"status",caption:m("Status")},{id:"video",caption:m("Video")}].sort((e,t)=>{const n=e.caption.toUpperCase(),o=t.caption.toUpperCase();return n<o?-1:n>o?1:0});function uye(){const t=`post-format-selector-${vt(uye)}`,{postFormat:n,suggestedFormat:o,supportedFormats:r}=G(u=>{const{getEditedPostAttribute:d,getSuggestedPostFormat:p}=u(_e),f=d("format"),b=u(Me).getThemeSupports();return{postFormat:f??"standard",suggestedFormat:p(),supportedFormats:b.formats}},[]),s=UI.filter(u=>r?.includes(u.id)||n===u.id),i=s.find(u=>u.id===o),{editPost:c}=Oe(_e),l=u=>c({format:u});return a.jsx(lye,{children:a.jsxs("div",{className:"editor-post-format",children:[a.jsx(sb,{className:"editor-post-format__options",label:m("Post Format"),selected:n,onChange:u=>l(u),id:t,options:s.map(u=>({label:u.caption,value:u.id})),hideLabelFromVision:!0}),i&&i.id!==n&&a.jsx("p",{className:"editor-post-format__suggestion",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>l(i.id),children:xe(m("Apply suggested format: %s"),i.caption)})})]})})}function AXt({children:e}){const{lastRevisionId:t,revisionsCount:n}=G(o=>{const{getCurrentPostLastRevisionId:r,getCurrentPostRevisionsCount:s}=o(_e);return{lastRevisionId:r(),revisionsCount:s()}},[]);return!t||n<2?null:a.jsx(Sc,{supportKeys:"revisions",children:e})}function vXt(){return G(e=>{const{getCurrentPostLastRevisionId:t,getCurrentPostRevisionsCount:n}=e(_e);return{lastRevisionId:t(),revisionsCount:n()}},[])}function xXt(){const{lastRevisionId:e,revisionsCount:t}=vXt();return a.jsx(AXt,{children:a.jsx(xs,{label:m("Revisions"),children:a.jsx(Ce,{href:tn("revision.php",{revision:e}),className:"editor-private-post-last-revision__button",text:t,variant:"tertiary",size:"compact"})})})}function wXt(e){let t=M1(a.jsxs("div",{className:"editor-post-preview-button__interstitial-message",children:[a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 96 96",children:[a.jsx(he,{className:"outer",d:"M48 12c19.9 0 36 16.1 36 36S67.9 84 48 84 12 67.9 12 48s16.1-36 36-36",fill:"none"}),a.jsx(he,{className:"inner",d:"M69.5 46.4c0-3.9-1.4-6.7-2.6-8.8-1.6-2.6-3.1-4.9-3.1-7.5 0-2.9 2.2-5.7 5.4-5.7h.4C63.9 19.2 56.4 16 48 16c-11.2 0-21 5.7-26.7 14.4h2.1c3.3 0 8.5-.4 8.5-.4 1.7-.1 1.9 2.4.2 2.6 0 0-1.7.2-3.7.3L40 67.5l7-20.9L42 33c-1.7-.1-3.3-.3-3.3-.3-1.7-.1-1.5-2.7.2-2.6 0 0 5.3.4 8.4.4 3.3 0 8.5-.4 8.5-.4 1.7-.1 1.9 2.4.2 2.6 0 0-1.7.2-3.7.3l11.5 34.3 3.3-10.4c1.6-4.5 2.4-7.8 2.4-10.5zM16.1 48c0 12.6 7.3 23.5 18 28.7L18.8 35c-1.7 4-2.7 8.4-2.7 13zm32.5 2.8L39 78.6c2.9.8 5.9 1.3 9 1.3 3.7 0 7.3-.6 10.6-1.8-.1-.1-.2-.3-.2-.4l-9.8-26.9zM76.2 36c0 3.2-.6 6.9-2.4 11.4L64 75.6c9.5-5.5 15.9-15.8 15.9-27.6 0-5.5-1.4-10.8-3.9-15.3.1 1 .2 2.1.2 3.3z",fill:"none"})]}),a.jsx("p",{children:m("Generating preview…")})]}));t+=` <style> body { margin: 0; @@ -775,58 +775,58 @@ The screen with id ${t.id} will not be added.`),e):[...e,t]}function Nbt({screen font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } </style> - `,t=gr("editor.PostPreview.interstitialMarkup",t),e.write(t),e.title=m("Generating preview…"),e.close()}function pye({className:e,textContent:t,forceIsAutosaveable:n,role:o,onPreview:r}){const{postId:s,currentPostLink:i,previewLink:c,isSaveable:l,isViewable:u}=G(h=>{var g;const z=h(_e),v=(g=h(Me).getPostType(z.getCurrentPostType("type"))?.viewable)!==null&&g!==void 0?g:!1;return v?{postId:z.getCurrentPostId(),currentPostLink:z.getCurrentPostAttribute("link"),previewLink:z.getEditedPostPreviewLink(),isSaveable:z.isEditedPostSaveable(),isViewable:v}:{isViewable:v}},[]),{__unstableSaveForPreview:d}=Oe(_e);if(!u)return null;const p=`wp-preview-${s}`,f=async h=>{h.preventDefault();const g=window.open("",p);g.focus(),wXt(g.document);const z=await d({forceIsAutosaveable:n});g.location=z,r?.()},b=c||i;return a.jsx(Ce,{variant:e?void 0:"tertiary",className:e||"editor-post-preview",href:b,target:p,accessibleWhenDisabled:!0,disabled:!l,onClick:f,role:o,size:"compact",children:t||a.jsxs(a.Fragment,{children:[We("Preview","imperative verb"),a.jsx(qn,{as:"span",children:m("(opens in a new tab)")})]})})}function _Xt(){const e=Yn("medium","<"),{isPublished:t,isBeingScheduled:n,isSaving:o,isPublishing:r,hasPublishAction:s,isAutosaving:i,hasNonPostEntityChanges:c,postStatusHasChanged:l,postStatus:u}=G(d=>{var p;const{isCurrentPostPublished:f,isEditedPostBeingScheduled:b,isSavingPost:h,isPublishingPost:g,getCurrentPost:z,getCurrentPostType:A,isAutosavingPost:_,getPostEdits:v,getEditedPostAttribute:M}=d(_e);return{isPublished:f(),isBeingScheduled:b(),isSaving:h(),isPublishing:g(),hasPublishAction:(p=z()._links?.["wp:action-publish"])!==null&&p!==void 0?p:!1,postType:A(),isAutosaving:_(),hasNonPostEntityChanges:d(_e).hasNonPostEntityChanges(),postStatusHasChanged:!!v()?.status,postStatus:M("status")}},[]);return r?m("Publishing…"):(t||n)&&o&&!i?m("Saving…"):s?c||t||l&&!["future","publish"].includes(u)||!l&&u==="future"?m("Save"):m(n?"Schedule":"Publish"):m(e?"Publish":"Submit for Review")}const fne=()=>{};class kXt extends x.Component{constructor(t){super(t),this.createOnClick=this.createOnClick.bind(this),this.closeEntitiesSavedStates=this.closeEntitiesSavedStates.bind(this),this.state={entitiesSavedStatesCallback:!1}}createOnClick(t){return(...n)=>{const{hasNonPostEntityChanges:o,setEntitiesSavedStatesCallback:r}=this.props;return o&&r?(this.setState({entitiesSavedStatesCallback:()=>t(...n)}),r(()=>this.closeEntitiesSavedStates),fne):t(...n)}}closeEntitiesSavedStates(t){const{postType:n,postId:o}=this.props,{entitiesSavedStatesCallback:r}=this.state;this.setState({entitiesSavedStatesCallback:!1},()=>{t&&t.some(s=>s.kind==="postType"&&s.name===n&&s.key===o)&&r()})}render(){const{forceIsDirty:t,hasPublishAction:n,isBeingScheduled:o,isOpen:r,isPostSavingLocked:s,isPublishable:i,isPublished:c,isSaveable:l,isSaving:u,isAutoSaving:d,isToggle:p,savePostStatus:f,onSubmit:b=fne,onToggle:h,visibility:g,hasNonPostEntityChanges:z,isSavingNonPostEntityChanges:A,postStatus:_,postStatusHasChanged:v}=this.props,M=(u||!l||s||!i&&!t)&&(!z||A),y=(c||u||!l||!i&&!t)&&(!z||A);let k="publish";v?k=_:n?g==="private"?k="private":o&&(k="future"):k="pending";const S=()=>{M||(b(),f(k))},C=()=>{y||h()},R={"aria-disabled":M,className:"editor-post-publish-button",isBusy:!d&&u,variant:"primary",onClick:this.createOnClick(S),"aria-haspopup":z?"dialog":void 0},T={"aria-disabled":y,"aria-expanded":r,className:"editor-post-publish-panel__toggle",isBusy:u&&c,variant:"primary",size:"compact",onClick:this.createOnClick(C),"aria-haspopup":z?"dialog":void 0},E=p?T:R;return a.jsx(a.Fragment,{children:a.jsx(Ce,{...E,className:`${E.className} editor-post-publish-button__button`,size:"compact",children:a.jsx(_Xt,{})})})}}const fye=Co([Xl(e=>{var t;const{isSavingPost:n,isAutosavingPost:o,isEditedPostBeingScheduled:r,getEditedPostVisibility:s,isCurrentPostPublished:i,isEditedPostSaveable:c,isEditedPostPublishable:l,isPostSavingLocked:u,getCurrentPost:d,getCurrentPostType:p,getCurrentPostId:f,hasNonPostEntityChanges:b,isSavingNonPostEntityChanges:h,getEditedPostAttribute:g,getPostEdits:z}=e(_e);return{isSaving:n(),isAutoSaving:o(),isBeingScheduled:r(),visibility:s(),isSaveable:c(),isPostSavingLocked:u(),isPublishable:l(),isPublished:i(),hasPublishAction:(t=d()._links?.["wp:action-publish"])!==null&&t!==void 0?t:!1,postType:p(),postId:f(),postStatus:g("status"),postStatusHasChanged:z()?.status,hasNonPostEntityChanges:b(),isSavingNonPostEntityChanges:h()}}),Ff(e=>{const{editPost:t,savePost:n}=e(_e);return{savePostStatus:o=>{t({status:o},{undoIgnore:!0}),n()}}})])(kXt),Fp={public:{label:m("Public"),info:m("Visible to everyone.")},private:{label:m("Private"),info:m("Only visible to site admins and editors.")},password:{label:m("Password protected"),info:m("Only those with the password can view this post.")}};function bye({onClose:e}){const t=vt(bye),{status:n,visibility:o,password:r}=G(A=>({status:A(_e).getEditedPostAttribute("status"),visibility:A(_e).getEditedPostVisibility(),password:A(_e).getEditedPostAttribute("password")})),{editPost:s,savePost:i}=Oe(_e),[c,l]=x.useState(!!r),[u,d]=x.useState(!1),p=()=>{s({status:o==="private"?"draft":n,password:""}),l(!1)},f=()=>{d(!0)},b=()=>{s({status:"private",password:""}),l(!1),d(!1),i()},h=()=>{d(!1)},g=()=>{s({status:o==="private"?"draft":n,password:r||""}),l(!0)},z=A=>{s({password:A.target.value})};return a.jsxs("div",{className:"editor-post-visibility",children:[a.jsx(Qs,{title:m("Visibility"),help:m("Control how this post is viewed."),onClose:e}),a.jsxs("fieldset",{className:"editor-post-visibility__fieldset",children:[a.jsx(qn,{as:"legend",children:m("Visibility")}),a.jsx(ST,{instanceId:t,value:"public",label:Fp.public.label,info:Fp.public.info,checked:o==="public"&&!c,onChange:p}),a.jsx(ST,{instanceId:t,value:"private",label:Fp.private.label,info:Fp.private.info,checked:o==="private",onChange:f}),a.jsx(ST,{instanceId:t,value:"password",label:Fp.password.label,info:Fp.password.info,checked:c,onChange:g}),c&&a.jsxs("div",{className:"editor-post-visibility__password",children:[a.jsx(qn,{as:"label",htmlFor:`editor-post-visibility__password-input-${t}`,children:m("Create password")}),a.jsx("input",{className:"editor-post-visibility__password-input",id:`editor-post-visibility__password-input-${t}`,type:"text",onChange:z,value:r,placeholder:m("Use a secure password")})]})]}),a.jsx(wf,{isOpen:u,onConfirm:b,onCancel:h,confirmButtonText:m("Publish"),size:"medium",children:m("Would you like to privately publish this post now?")})]})}function ST({instanceId:e,value:t,label:n,info:o,...r}){return a.jsxs("div",{className:"editor-post-visibility__choice",children:[a.jsx("input",{type:"radio",name:`editor-post-visibility__setting-${e}`,value:t,id:`editor-post-${t}-${e}`,"aria-describedby":`editor-post-${t}-${e}-description`,className:"editor-post-visibility__radio",...r}),a.jsx("label",{htmlFor:`editor-post-${t}-${e}`,className:"editor-post-visibility__label",children:n}),a.jsx("p",{id:`editor-post-${t}-${e}-description`,className:"editor-post-visibility__info",children:o})]})}function SXt(){return CXt()}function CXt(){const e=G(t=>t(_e).getEditedPostVisibility());return Fp[e]?.label}const{PrivatePublishDateTimePicker:qXt}=St(Ln);function hye(e){return a.jsx(mye,{...e,showPopoverHeaderActions:!0,isCompact:!1})}function mye({onClose:e,showPopoverHeaderActions:t,isCompact:n}){const{postDate:o,postType:r}=G(b=>({postDate:b(_e).getEditedPostAttribute("date"),postType:b(_e).getCurrentPostType()}),[]),{editPost:s}=Oe(_e),i=b=>s({date:b}),[c,l]=x.useState(vx(new Date(o))),u=G(b=>b(Me).getEntityRecords("postType",r,{status:"publish,future",after:vx(c).toISOString(),before:Y8(c).toISOString(),exclude:[b(_e).getCurrentPostId()],per_page:100,_fields:"id,date"}),[c,r]),d=x.useMemo(()=>(u||[]).map(({date:b})=>({date:new Date(b)})),[u]),p=Sa(),f=/a(?!\\)/i.test(p.formats.time.toLowerCase().replace(/\\\\/g,"").split("").reverse().join(""));return a.jsx(qXt,{currentDate:o,onChange:i,is12Hour:f,dateOrder:We("dmy","date order"),events:d,onMonthPreviewed:b=>l(tct(b)),onClose:e,isCompact:n,showPopoverHeaderActions:t})}function gye(e){return lN(e)}function lN({full:e=!1}={}){const{date:t,isFloating:n}=G(o=>({date:o(_e).getEditedPostAttribute("date"),isFloating:o(_e).isEditedPostDateFloating()}),[]);return e?Mye(t):RXt(t,{isFloating:n})}function Mye(e){const t=_f(e),n=TXt(),o=r0(We("F j, Y g:i a","post schedule full date format"),t);return jt()?`${n} ${o}`:`${o} ${n}`}function RXt(e,{isFloating:t=!1,now:n=new Date}={}){if(!e||t)return m("Immediately");if(!EXt(n))return Mye(e);const o=_f(e);if(bne(o,n))return xe(m("Today at %s"),r0(We("g:i a","post schedule time format"),o));const r=new Date(n);return r.setDate(r.getDate()+1),bne(o,r)?xe(m("Tomorrow at %s"),r0(We("g:i a","post schedule time format"),o)):o.getFullYear()===n.getFullYear()?r0(We("F j g:i a","post schedule date format without year"),o):r0(We("F j, Y g:i a","post schedule full date format"),o)}function TXt(){const{timezone:e}=Sa();return e.abbr&&isNaN(Number(e.abbr))?e.abbr:`UTC${e.offset<0?"":"+"}${e.offsetFormatted}`}function EXt(e){const{timezone:t}=Sa(),n=Number(t.offset),o=-1*(e.getTimezoneOffset()/60);return n===o}function bne(e,t){return e.getDate()===t.getDate()&&e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear()}const WXt=3,NXt={per_page:10,orderby:"count",order:"desc",hide_empty:!0,_fields:"id,name,count",context:"view"};function BXt({onSelect:e,taxonomy:t}){const{_terms:n,showTerms:o}=G(s=>{const i=s(Me).getEntityRecords("taxonomy",t.slug,NXt);return{_terms:i,showTerms:i?.length>=WXt}},[t.slug]);if(!o)return null;const r=MUt(n);return a.jsxs("div",{className:"editor-post-taxonomies__flat-term-most-used",children:[a.jsx(no.VisualLabel,{as:"h3",className:"editor-post-taxonomies__flat-term-most-used-label",children:t.labels.most_used}),a.jsx("ul",{role:"list",className:"editor-post-taxonomies__flat-term-most-used-list",children:r.map(s=>a.jsx("li",{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>e(s),children:s.name})},s.id))})]})}const CT=[],zye=100,hne={per_page:zye,_fields:"id,name",context:"view"},Oye=(e,t)=>o3(e).toLowerCase()===o3(t).toLowerCase(),qT=(e,t)=>e.map(n=>t.find(o=>Oye(o.name,n))?.id).filter(n=>n!==void 0),LXt=({children:e,__nextHasNoMarginBottom:t})=>t?a.jsx(dt,{spacing:4,children:e}):a.jsx(x.Fragment,{children:e});function PXt({slug:e,__nextHasNoMarginBottom:t}){var n,o;const[r,s]=x.useState([]),[i,c]=x.useState(""),l=C1(c,500);t||Ke("Bottom margin styles for wp.editor.PostTaxonomiesFlatTermSelector",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."});const{terms:u,termIds:d,taxonomy:p,hasAssignAction:f,hasCreateAction:b,hasResolvedTerms:h}=G(N=>{var j,I;const{getCurrentPost:P,getEditedPostAttribute:$}=N(_e),{getEntityRecords:F,getTaxonomy:X,hasFinishedResolution:Z}=N(Me),V=P(),ee=X(e),te=ee?$(ee.rest_base):CT,J={...hne,include:te?.join(","),per_page:-1};return{hasCreateAction:ee&&(j=V._links?.["wp:action-create-"+ee.rest_base])!==null&&j!==void 0?j:!1,hasAssignAction:ee&&(I=V._links?.["wp:action-assign-"+ee.rest_base])!==null&&I!==void 0?I:!1,taxonomy:ee,termIds:te,terms:te?.length?F("taxonomy",e,J):CT,hasResolvedTerms:Z("getEntityRecords",["taxonomy",e,J])}},[e]),{searchResults:g}=G(N=>{const{getEntityRecords:j}=N(Me);return{searchResults:i?j("taxonomy",e,{...hne,search:i}):CT}},[i,e]);x.useEffect(()=>{if(h){const N=(u??[]).map(j=>o3(j.name));s(N)}},[u,h]);const z=x.useMemo(()=>(g??[]).map(N=>o3(N.name)),[g]),{editPost:A}=Oe(_e),{saveEntityRecord:_}=Oe(Me),{createErrorNotice:v}=Oe(mt);if(!f)return null;async function M(N){try{const j=await _("taxonomy",e,N,{throwOnError:!0});return JOe(j)}catch(j){if(j.code!=="term_exists")throw j;return{id:j.data.term_id,name:N.name}}}function y(N){A({[p.rest_base]:N})}function k(N){const j=[...u??[],...g??[]],I=N.reduce(($,F)=>($.some(X=>X.toLowerCase()===F.toLowerCase())||$.push(F),$),[]),P=I.filter($=>!j.find(F=>Oye(F.name,$)));if(s(I),P.length===0){y(qT(I,j));return}b&&Promise.all(P.map($=>M({name:$}))).then($=>{const F=j.concat($);y(qT(I,F))}).catch($=>{v($.message,{type:"snackbar"}),y(qT(I,j))})}function S(N){var j;if(d.includes(N.id))return;const I=[...d,N.id],P=m(e==="post_tag"?"Tag":"Term"),$=xe(We("%s added","term"),(j=p?.labels?.singular_name)!==null&&j!==void 0?j:P);Yt($,"assertive"),y(I)}const C=(n=p?.labels?.add_new_item)!==null&&n!==void 0?n:m(e==="post_tag"?"Add new tag":"Add new Term"),R=(o=p?.labels?.singular_name)!==null&&o!==void 0?o:m(e==="post_tag"?"Tag":"Term"),T=xe(We("%s added","term"),R),E=xe(We("%s removed","term"),R),B=xe(We("Remove %s","term"),R);return a.jsxs(LXt,{__nextHasNoMarginBottom:t,children:[a.jsx(ip,{__next40pxDefaultSize:!0,value:r,suggestions:z,onChange:k,onInputChange:l,maxSuggestions:zye,label:C,messages:{added:T,removed:E,remove:B},__nextHasNoMarginBottom:t}),a.jsx(BXt,{taxonomy:p,onSelect:S})]})}const yye=ap("editor.PostTaxonomyType")(PXt),jXt=()=>{const e=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("Add tags")},"label")];return a.jsxs(Qt,{initialOpen:!1,title:e,children:[a.jsx("p",{children:m("Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.")}),a.jsx(yye,{slug:"post_tag",__nextHasNoMarginBottom:!0})]})},IXt=()=>{const{hasTags:e,isPostTypeSupported:t}=G(o=>{const r=o(_e).getCurrentPostType(),s=o(Me).getTaxonomy("post_tag"),i=s?.types?.includes(r),c=s!==void 0;return{hasTags:!!(s&&o(_e).getEditedPostAttribute(s.rest_base))?.length,isPostTypeSupported:c&&i}},[]),[n]=x.useState(e);return t?n?null:a.jsx(jXt,{}):null},DXt=(e,t)=>XI.filter(o=>e?.includes(o.id)).find(o=>o.id===t),FXt=({suggestedPostFormat:e,suggestionText:t,onUpdatePostFormat:n})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>n(e),children:t});function $Xt(){const{currentPostFormat:e,suggestion:t}=G(s=>{var i;const{getEditedPostAttribute:c,getSuggestedPostFormat:l}=s(_e),u=(i=s(Me).getThemeSupports().formats)!==null&&i!==void 0?i:[];return{currentPostFormat:c("format"),suggestion:DXt(u,l())}},[]),{editPost:n}=Oe(_e),o=s=>n({format:s}),r=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("Use a post format")},"label")];return!t||t.id===e?null:a.jsxs(Qt,{initialOpen:!1,title:r,children:[a.jsx("p",{children:m("Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.")}),a.jsx("p",{children:a.jsx(FXt,{onUpdatePostFormat:o,suggestedPostFormat:t.id,suggestionText:xe(m('Apply the "%1$s" format.'),t.caption)})})]})}const mne={per_page:-1,orderby:"name",order:"asc",_fields:"id,name,parent",context:"view"},VXt=8,gne=[];function HXt(e,t){const n=s=>t.indexOf(s.id)!==-1?!0:s.children===void 0?!1:s.children.map(n).filter(i=>i).length>0,o=(s,i)=>{const c=n(s),l=n(i);return c===l?0:c&&!l?-1:!c&&l?1:0},r=[...e];return r.sort(o),r}function UXt(e,t,n){return e.find(o=>(!o.parent&&!t||parseInt(o.parent)===parseInt(t))&&o.name.toLowerCase()===n.toLowerCase())}function XXt(e){const t=n=>{if(e==="")return n;const o={...n};return o.children.length>0&&(o.children=o.children.map(t).filter(r=>r)),o.name.toLowerCase().indexOf(e.toLowerCase())!==-1||o.children.length>0?o:!1};return t}function GXt({slug:e}){var t,n;const[o,r]=x.useState(!1),[s,i]=x.useState(""),[c,l]=x.useState(""),[u,d]=x.useState(!1),[p,f]=x.useState(""),[b,h]=x.useState([]),g=C1(Yt,500),{hasCreateAction:z,hasAssignAction:A,terms:_,loading:v,availableTerms:M,taxonomy:y}=G(de=>{var Ae,ye;const{getCurrentPost:Ne,getEditedPostAttribute:je}=de(_e),{getTaxonomy:ie,getEntityRecords:we,isResolving:re}=de(Me),pe=ie(e),ke=Ne();return{hasCreateAction:pe&&(Ae=ke._links?.["wp:action-create-"+pe.rest_base])!==null&&Ae!==void 0?Ae:!1,hasAssignAction:pe&&(ye=ke._links?.["wp:action-assign-"+pe.rest_base])!==null&&ye!==void 0?ye:!1,terms:pe?je(pe.rest_base):gne,loading:re("getEntityRecords",["taxonomy",e,mne]),availableTerms:we("taxonomy",e,mne)||gne,taxonomy:pe}},[e]),{editPost:k}=Oe(_e),{saveEntityRecord:S}=Oe(Me),C=x.useMemo(()=>HXt(QOe(M),_),[M]),{createErrorNotice:R}=Oe(mt);if(!A)return null;const T=de=>S("taxonomy",e,de,{throwOnError:!0}),E=de=>{k({[y.rest_base]:de})},B=de=>{const ye=_.includes(de)?_.filter(Ne=>Ne!==de):[..._,de];E(ye)},N=de=>{i(de)},j=de=>{l(de)},I=()=>{d(!u)},P=async de=>{var Ae;if(de.preventDefault(),s===""||o)return;const ye=UXt(M,c,s);if(ye){_.some(we=>we===ye.id)||E([..._,ye.id]),i(""),l("");return}r(!0);let Ne;try{Ne=await T({name:s,parent:c||void 0})}catch(we){R(we.message,{type:"snackbar"});return}const je=m(e==="category"?"Category":"Term"),ie=xe(We("%s added","term"),(Ae=y?.labels?.singular_name)!==null&&Ae!==void 0?Ae:je);Yt(ie,"assertive"),r(!1),i(""),l(""),E([..._,Ne.id])},$=de=>{const Ae=C.map(XXt(de)).filter(ie=>ie),ye=ie=>{let we=0;for(let re=0;re<ie.length;re++)we++,ie[re].children!==void 0&&(we+=ye(ie[re].children));return we};f(de),h(Ae);const Ne=ye(Ae),je=xe(Dn("%d result found.","%d results found.",Ne),Ne);g(je,"assertive")},F=de=>de.map(Ae=>a.jsxs("div",{className:"editor-post-taxonomies__hierarchical-terms-choice",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,checked:_.indexOf(Ae.id)!==-1,onChange:()=>{const ye=parseInt(Ae.id,10);B(ye)},label:Lt(Ae.name)}),!!Ae.children.length&&a.jsx("div",{className:"editor-post-taxonomies__hierarchical-terms-subchoices",children:F(Ae.children)})]},Ae.id)),X=(de,Ae,ye)=>{var Ne;return(Ne=y?.labels?.[de])!==null&&Ne!==void 0?Ne:e==="category"?Ae:ye},Z=X("add_new_item",m("Add new category"),m("Add new term")),V=X("new_item_name",m("Add new category"),m("Add new term")),ee=X("parent_item",m("Parent Category"),m("Parent Term")),te=`— ${ee} —`,J=Z,ue=(t=y?.labels?.search_items)!==null&&t!==void 0?t:m("Search Terms"),ce=(n=y?.name)!==null&&n!==void 0?n:m("Terms"),me=M.length>=VXt;return a.jsxs(Yo,{direction:"column",gap:"4",children:[me&&a.jsx(iu,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:ue,placeholder:ue,value:p,onChange:$}),a.jsx("div",{className:"editor-post-taxonomies__hierarchical-terms-list",tabIndex:"0",role:"group","aria-label":ce,children:F(p!==""?b:C)}),!v&&z&&a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:I,className:"editor-post-taxonomies__hierarchical-terms-add","aria-expanded":u,variant:"link",children:Z})}),u&&a.jsx("form",{onSubmit:P,children:a.jsxs(Yo,{direction:"column",gap:"4",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"editor-post-taxonomies__hierarchical-terms-input",label:V,value:s,onChange:N,required:!0}),!!M.length&&a.jsx(Ij,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:ee,noOptionLabel:te,onChange:j,selectedId:c,tree:C}),a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",type:"submit",className:"editor-post-taxonomies__hierarchical-terms-submit",children:J})})]})})]})}const Aye=ap("editor.PostTaxonomyType")(GXt);function KXt(){const e=G(r=>{const s=r(_e).getCurrentPostType(),{canUser:i,getEntityRecord:c,getTaxonomy:l}=r(Me),u=l("category"),d=i("read",{kind:"root",name:"site"})?c("root","site")?.default_category:void 0,p=d?c("taxonomy","category",d):void 0,f=u&&u.types.some(h=>h===s),b=u&&r(_e).getEditedPostAttribute(u.rest_base);return!!u&&!!p&&f&&(b?.length===0||b?.length===1&&p?.id===b[0])},[]),[t,n]=x.useState(!1);if(x.useEffect(()=>{e&&n(!0)},[e]),!t)return null;const o=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("Assign a category")},"label")];return a.jsxs(Qt,{initialOpen:!1,title:o,children:[a.jsx("p",{children:m("Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about.")}),a.jsx(Aye,{slug:"category"})]})}function YXt(e){const t=new Set;return Object.fromEntries(e.map(n=>{const o=If(n);let r="";if(o){const s=o.split(".");s.length>1&&s.pop(),r=s.join(".")}return r||(r=Is()),t.has(r)&&(r=`${r}-${Is()}`),t.add(r),[n,r]}))}function ZXt(e){return Object.fromEntries(Object.entries(YXt(e)).map(([t,n])=>{const o=window.fetch(t.includes("?")?t:t+"?").then(r=>r.blob()).then(r=>new File([r],`${n}.png`,{type:r.type}));return[t,o]}))}function vye(e){const t=[];return e.forEach(n=>{t.push(n),t.push(...vye(n.innerBlocks))}),t}function QXt(e){if(e.name==="core/image"||e.name==="core/cover")return e.attributes.url&&!e.attributes.id;if(e.name==="core/media-text")return e.attributes.mediaUrl&&!e.attributes.mediaId}function RT(e){if(e.name==="core/image"||e.name==="core/cover"){const{url:t,alt:n,id:o}=e.attributes;return{url:t,alt:n,id:o}}if(e.name==="core/media-text"){const{mediaUrl:t,mediaAlt:n,mediaId:o}=e.attributes;return{url:t,alt:n,id:o}}return{}}function JXt({clientId:e,alt:t,url:n}){const{selectBlock:o}=Oe(Q);return a.jsx(Rr.img,{tabIndex:0,role:"button","aria-label":m("Select image block."),onClick:()=>{o(e)},onKeyDown:r=>{(r.key==="Enter"||r.key===" ")&&(o(e),r.preventDefault())},alt:t,src:n,animate:{opacity:1},exit:{opacity:0,scale:0},style:{width:"32px",height:"32px",objectFit:"cover",borderRadius:"2px",cursor:"pointer"},whileHover:{scale:1.08}},e)}function eGt(){const[e,t]=x.useState(!1),[n,o]=x.useState(!1),[r,s]=x.useState(!1),{editorBlocks:i,mediaUpload:c}=G(b=>({editorBlocks:b(Q).getBlocks(),mediaUpload:b(Q).getSettings().mediaUpload}),[]),l=vye(i).filter(b=>QXt(b)),{updateBlockAttributes:u}=Oe(Q);if(!c||!l.length)return null;const d=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("External media")},"label")];function p(b,h){(b.name==="core/image"||b.name==="core/cover")&&u(b.clientId,{id:h.id,url:h.url}),b.name==="core/media-text"&&u(b.clientId,{mediaId:h.id,mediaUrl:h.url})}function f(){t(!0),s(!1);const b=new Set(l.map(g=>{const{url:z}=RT(g);return z})),h=Object.fromEntries(Object.entries(ZXt([...b])).map(([g,z])=>{const A=z.then(_=>new Promise((v,M)=>{c({filesList:[_],onFileChange:([y])=>{Nr(y.url)||v(y)},onError(){M()}})}));return[g,A]}));Promise.allSettled(l.map(g=>{const{url:z}=RT(g);return h[z].then(A=>p(g,A)).then(()=>o(!0)).catch(()=>s(!0))})).finally(()=>{t(!1)})}return a.jsxs(Qt,{initialOpen:!0,title:d,children:[a.jsx("p",{children:m("Upload external images to the Media Library. Images from different domains may load slowly, display incorrectly, or be removed unexpectedly.")}),a.jsxs("div",{style:{display:"inline-flex",flexWrap:"wrap",gap:"8px"},children:[a.jsx(Wd,{onExitComplete:()=>o(!1),children:l.map(b=>{const{url:h,alt:g}=RT(b);return a.jsx(JXt,{clientId:b.clientId,url:h,alt:g},b.clientId)})}),e||n?a.jsx(Xn,{}):a.jsx(Ce,{size:"compact",variant:"primary",onClick:f,children:We("Upload","verb")})]}),r&&a.jsx("p",{children:m("Upload failed, try again.")})]})}function tGt({children:e}){const{isBeingScheduled:t,isRequestingSiteIcon:n,hasPublishAction:o,siteIconUrl:r,siteTitle:s,siteHome:i}=G(d=>{var p;const{getCurrentPost:f,isEditedPostBeingScheduled:b}=d(_e),{getEntityRecord:h,isResolving:g}=d(Me),z=h("root","__unstableBase",void 0)||{};return{hasPublishAction:(p=f()._links?.["wp:action-publish"])!==null&&p!==void 0?p:!1,isBeingScheduled:b(),isRequestingSiteIcon:g("getEntityRecord",["root","__unstableBase",void 0]),siteIconUrl:z.site_icon_url,siteTitle:z.name,siteHome:z.home&&Ph(z.home)}},[]);let c=a.jsx(qo,{className:"components-site-icon",size:"36px",icon:uJe});r&&(c=a.jsx("img",{alt:m("Site Icon"),className:"components-site-icon",src:r})),n&&(c=null);let l,u;return o?t?(l=m("Are you ready to schedule?"),u=m("Your work will be published at the specified date and time.")):(l=m("Are you ready to publish?"),u=m("Double-check your settings before publishing.")):(l=m("Are you ready to submit for review?"),u=m("Your work will be reviewed and then approved.")),a.jsxs("div",{className:"editor-post-publish-panel__prepublish",children:[a.jsx("div",{children:a.jsx("strong",{children:l})}),a.jsx("p",{children:u}),a.jsxs("div",{className:"components-site-card",children:[c,a.jsxs("div",{className:"components-site-info",children:[a.jsx("span",{className:"components-site-name",children:Lt(s)||m("(Untitled)")}),a.jsx("span",{className:"components-site-home",children:i})]})]}),a.jsx(eGt,{}),o&&a.jsxs(a.Fragment,{children:[a.jsx(Qt,{initialOpen:!1,title:[m("Visibility:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:a.jsx(SXt,{})},"label")],children:a.jsx(bye,{})}),a.jsx(Qt,{initialOpen:!1,title:[m("Publish:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:a.jsx(gye,{})},"label")],children:a.jsx(hye,{})})]}),a.jsx($Xt,{}),a.jsx(IXt,{}),a.jsx(KXt,{}),e]})}const Mne="%postname%",zne="%pagename%",nGt=e=>{const{slug:t}=e;return e.permalink_template.includes(Mne)?e.permalink_template.replace(Mne,t):e.permalink_template.includes(zne)?e.permalink_template.replace(zne,t):e.permalink_template};function oGt({text:e}){const[t,n]=x.useState(!1),o=x.useRef(),r=Ul(e,()=>{n(!0),o.current&&clearTimeout(o.current),o.current=setTimeout(()=>{n(!1)},4e3)});return x.useEffect(()=>()=>{o.current&&clearTimeout(o.current)},[]),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",ref:r,children:m(t?"Copied!":"Copy")})}function rGt({focusOnMount:e,children:t}){const{post:n,postType:o,isScheduled:r}=G(f=>{const{getEditedPostAttribute:b,getCurrentPost:h,isCurrentPostScheduled:g}=f(_e),{getPostType:z}=f(Me);return{post:h(),postType:z(b("type")),isScheduled:g()}},[]),s=o?.labels?.singular_name,i=o?.labels?.view_item,c=o?.labels?.add_new_item,l=n.status==="future"?nGt(n):n.link,u=tn("post-new.php",{post_type:n.type}),d=x.useCallback(f=>{e&&f&&f.focus()},[e]),p=r?a.jsxs(a.Fragment,{children:[m("is now scheduled. It will go live on")," ",a.jsx(gye,{}),"."]}):m("is now live.");return a.jsxs("div",{className:"post-publish-panel__postpublish",children:[a.jsxs(Qt,{className:"post-publish-panel__postpublish-header",children:[a.jsx("a",{ref:d,href:l,children:Lt(n.title)||m("(no title)")})," ",p]}),a.jsxs(Qt,{children:[a.jsx("p",{className:"post-publish-panel__postpublish-subheader",children:a.jsx("strong",{children:m("What’s next?")})}),a.jsxs("div",{className:"post-publish-panel__postpublish-post-address-container",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"post-publish-panel__postpublish-post-address",readOnly:!0,label:xe(m("%s address"),s),value:Y2(l),onFocus:f=>f.target.select()}),a.jsx("div",{className:"post-publish-panel__postpublish-post-address__copy-button-wrap",children:a.jsx(oGt,{text:l})})]}),a.jsxs("div",{className:"post-publish-panel__postpublish-buttons",children:[!r&&a.jsx(Ce,{variant:"primary",href:l,__next40pxDefaultSize:!0,children:i}),a.jsx(Ce,{variant:r?"primary":"secondary",__next40pxDefaultSize:!0,href:u,children:c})]})]}),t]})}class sGt extends x.Component{constructor(){super(...arguments),this.onSubmit=this.onSubmit.bind(this),this.cancelButtonNode=x.createRef()}componentDidMount(){this.timeoutID=setTimeout(()=>{this.cancelButtonNode.current.focus()},0)}componentWillUnmount(){clearTimeout(this.timeoutID)}componentDidUpdate(t){(t.isPublished&&!this.props.isSaving&&this.props.isDirty||this.props.currentPostId!==t.currentPostId)&&this.props.onClose()}onSubmit(){const{onClose:t,hasPublishAction:n,isPostTypeViewable:o}=this.props;(!n||!o)&&t()}render(){const{forceIsDirty:t,isBeingScheduled:n,isPublished:o,isPublishSidebarEnabled:r,isScheduled:s,isSaving:i,isSavingNonPostEntityChanges:c,onClose:l,onTogglePublishSidebar:u,PostPublishExtension:d,PrePublishExtension:p,currentPostId:f,...b}=this.props,{hasPublishAction:h,isDirty:g,isPostTypeViewable:z,...A}=b,_=o||s&&n,v=!_&&!i,M=_&&!i;return a.jsxs("div",{className:"editor-post-publish-panel",...A,children:[a.jsx("div",{className:"editor-post-publish-panel__header",children:M?a.jsx(Ce,{size:"compact",onClick:l,icon:rp,label:m("Close panel")}):a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"editor-post-publish-panel__header-cancel-button",children:a.jsx(Ce,{ref:this.cancelButtonNode,accessibleWhenDisabled:!0,disabled:c,onClick:l,variant:"secondary",size:"compact",children:m("Cancel")})}),a.jsx("div",{className:"editor-post-publish-panel__header-publish-button",children:a.jsx(fye,{onSubmit:this.onSubmit,forceIsDirty:t})})]})}),a.jsxs("div",{className:"editor-post-publish-panel__content",children:[v&&a.jsx(tGt,{children:p&&a.jsx(p,{})}),M&&a.jsx(rGt,{focusOnMount:!0,children:d&&a.jsx(d,{})}),i&&a.jsx(Xn,{})]}),a.jsx("div",{className:"editor-post-publish-panel__footer",children:a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Always show pre-publish checks."),checked:r,onChange:u})})]})}}const iGt=Co([Xl(e=>{var t;const{getPostType:n}=e(Me),{getCurrentPost:o,getCurrentPostId:r,getEditedPostAttribute:s,isCurrentPostPublished:i,isCurrentPostScheduled:c,isEditedPostBeingScheduled:l,isEditedPostDirty:u,isAutosavingPost:d,isSavingPost:p,isSavingNonPostEntityChanges:f}=e(_e),{isPublishSidebarEnabled:b}=e(_e),h=n(s("type"));return{hasPublishAction:(t=o()._links?.["wp:action-publish"])!==null&&t!==void 0?t:!1,isPostTypeViewable:h?.viewable,isBeingScheduled:l(),isDirty:u(),isPublished:i(),isPublishSidebarEnabled:b(),isSaving:p()&&!d(),isSavingNonPostEntityChanges:f(),isScheduled:c(),currentPostId:r()}}),Ff((e,{isPublishSidebarEnabled:t})=>{const{disablePublishSidebar:n,enablePublishSidebar:o}=e(_e);return{onTogglePublishSidebar:()=>{t?n():o()}}}),rmt,tmt])(sGt);function aGt({children:e}){const{hasStickyAction:t,postType:n}=G(o=>{var r;return{hasStickyAction:(r=o(_e).getCurrentPost()._links?.["wp:action-sticky"])!==null&&r!==void 0?r:!1,postType:o(_e).getCurrentPostType()}},[]);return n!=="post"||!t?null:e}function cGt(){const e=G(n=>{var o;return(o=n(_e).getEditedPostAttribute("sticky"))!==null&&o!==void 0?o:!1},[]),{editPost:t}=Oe(_e);return a.jsx(aGt,{children:a.jsx(K0,{className:"editor-post-sticky__checkbox-control",label:m("Sticky"),help:m("Pin this post to the top of the blog"),checked:e,onChange:()=>t({sticky:!e}),__nextHasNoMarginBottom:!0})})}const _v={"auto-draft":{label:m("Draft"),icon:L8},draft:{label:m("Draft"),icon:L8},pending:{label:m("Pending"),icon:Ode},private:{label:m("Private"),icon:gde},future:{label:m("Scheduled"),icon:Pde},publish:{label:m("Published"),icon:Dw}},xye=[{label:m("Draft"),value:"draft",description:m("Not ready to publish.")},{label:m("Pending"),value:"pending",description:m("Waiting for review before publishing.")},{label:m("Private"),value:"private",description:m("Only visible to site admins and editors.")},{label:m("Scheduled"),value:"future",description:m("Publish automatically on a chosen date.")},{label:m("Published"),value:"publish",description:m("Visible to everyone.")}],lGt=[L0,Fi,Vl,Wf];function wye(){const{status:e,date:t,password:n,postId:o,postType:r,canEdit:s}=G(z=>{var A;const{getEditedPostAttribute:_,getCurrentPostId:v,getCurrentPostType:M,getCurrentPost:y}=z(_e);return{status:_("status"),date:_("date"),password:_("password"),postId:v(),postType:M(),canEdit:(A=y()._links?.["wp:action-publish"])!==null&&A!==void 0?A:!1}},[]),[i,c]=x.useState(!!n),l=vt(wye,"editor-change-status__password-input"),{editEntityRecord:u}=Oe(Me),[d,p]=x.useState(null),f=x.useMemo(()=>({anchor:d,"aria-label":m("Status & visibility"),headerTitle:m("Status & visibility"),placement:"left-start",offset:36,shift:!0}),[d]);if(lGt.includes(r))return null;const b=({status:z=e,password:A=n,date:_=t})=>{u("postType",r,o,{status:z,date:_,password:A})},h=z=>{c(z),z||b({password:""})},g=z=>{let A=t,_=n;e==="future"&&new Date(t)>new Date&&(A=null),z==="private"&&n&&(_=""),b({status:z,date:A,password:_})};return a.jsx(xs,{label:m("Status"),ref:p,children:s?a.jsx(so,{className:"editor-post-status",contentClassName:"editor-change-status__content",popoverProps:f,focusOnMount:!0,renderToggle:({onToggle:z,isOpen:A})=>a.jsx(Ce,{className:"editor-post-status__toggle",variant:"tertiary",size:"compact",onClick:z,icon:_v[e]?.icon,"aria-label":xe(m("Change status: %s"),_v[e]?.label),"aria-expanded":A,children:_v[e]?.label}),renderContent:({onClose:z})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Status & visibility"),onClose:z}),a.jsx("form",{children:a.jsxs(dt,{spacing:4,children:[a.jsx(sb,{className:"editor-change-status__options",hideLabelFromVision:!0,label:m("Status"),options:xye,onChange:g,selected:e==="auto-draft"?"draft":e}),e==="future"&&a.jsx("div",{className:"editor-change-status__publish-date-wrapper",children:a.jsx(mye,{showPopoverHeaderActions:!1,isCompact:!0})}),e!=="private"&&a.jsxs(dt,{as:"fieldset",spacing:4,className:"editor-change-status__password-fieldset",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Password protected"),help:m("Only visible to those who know the password"),checked:i,onChange:h}),i&&a.jsx("div",{className:"editor-change-status__password-input",children:a.jsx(dn,{label:m("Password"),onChange:A=>b({password:A}),value:n,placeholder:m("Use a secure password"),type:"text",id:l,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,maxLength:255})})]}),a.jsx(cGt,{})]})})]})}):a.jsx("div",{className:"editor-post-status is-read-only",children:_v[e]?.label})})}function uGt({forceIsDirty:e}){const[t,n]=x.useState(!1),o=Yn("small"),{isAutosaving:r,isDirty:s,isNew:i,isPublished:c,isSaveable:l,isSaving:u,isScheduled:d,hasPublishAction:p,showIconLabels:f,postStatus:b,postStatusHasChanged:h}=G(R=>{var T;const{isEditedPostNew:E,isCurrentPostPublished:B,isCurrentPostScheduled:N,isEditedPostDirty:j,isSavingPost:I,isEditedPostSaveable:P,getCurrentPost:$,isAutosavingPost:F,getEditedPostAttribute:X,getPostEdits:Z}=R(_e),{get:V}=R(ht);return{isAutosaving:F(),isDirty:e||j(),isNew:E(),isPublished:B(),isSaving:I(),isSaveable:P(),isScheduled:N(),hasPublishAction:(T=$()?._links?.["wp:action-publish"])!==null&&T!==void 0?T:!1,showIconLabels:V("core","showIconLabels"),postStatus:X("status"),postStatusHasChanged:!!Z()?.status}},[e]),g=b==="pending",{savePost:z}=Oe(_e),A=Fr(u);if(x.useEffect(()=>{let R;return A&&!u&&(n(!0),R=setTimeout(()=>{n(!1)},1e3)),()=>clearTimeout(R)},[u]),!p&&g)return null;const _=!["pending","draft","auto-draft"].includes(b)&&xye.map(({value:R})=>R).includes(b);if(c||d||_||h&&["pending","draft"].includes(b))return null;const v=m(g?"Save as pending":"Save draft"),M=m("Save"),y=t||!i&&!s,k=u||y,S=u||y||!l;let C;return u?C=m(r?"Autosaving":"Saving"):y?C=m("Saved"):o?C=v:f&&(C=M),a.jsxs(Ce,{className:l||u?oe({"editor-post-save-draft":!k,"editor-post-saved-state":k,"is-saving":u,"is-autosaving":r,"is-saved":y,[Mle({type:"loading"})]:u}):void 0,onClick:S?void 0:()=>z(),shortcut:S?void 0:j1.primary("s"),variant:"tertiary",size:"compact",icon:o?void 0:vZe,label:C||v,"aria-disabled":S,children:[k&&a.jsx(wn,{icon:y?M0:xZe}),C]})}function dGt({children:e}){return G(n=>{var o;return(o=n(_e).getCurrentPost()._links?.["wp:action-publish"])!==null&&o!==void 0?o:!1},[])?e:null}const pGt=[L0,Fi,Vl,Wf];function fGt(){const[e,t]=x.useState(null),n=G(i=>i(_e).getCurrentPostType(),[]),o=x.useMemo(()=>({anchor:e,"aria-label":m("Change publish date"),placement:"left-start",offset:36,shift:!0}),[e]),r=lN(),s=lN({full:!0});return pGt.includes(n)?null:a.jsx(dGt,{children:a.jsx(xs,{label:m("Publish"),ref:t,children:a.jsx(so,{popoverProps:o,focusOnMount:!0,className:"editor-post-schedule__panel-dropdown",contentClassName:"editor-post-schedule__dialog",renderToggle:({onToggle:i,isOpen:c})=>a.jsx(Ce,{size:"compact",className:"editor-post-schedule__dialog-toggle",variant:"tertiary",tooltipPosition:"middle left",onClick:i,"aria-label":xe(m("Change date: %s"),r),label:s,showTooltip:r!==s,"aria-expanded":c,children:r}),renderContent:({onClose:i})=>a.jsx(hye,{onClose:i})})})})}function bGt(){const{syncStatus:e,postType:t}=G(n=>{const{getEditedPostAttribute:o}=n(_e);return{syncStatus:o("meta")?.wp_pattern_sync_status==="unsynced"?"unsynced":o("wp_pattern_sync_status"),postType:o("type")}});return t!=="wp_block"?null:a.jsx(xs,{label:m("Sync status"),children:a.jsx("div",{className:"editor-post-sync-status__value",children:We(e==="unsynced"?"Not synced":"Synced","pattern (singular)")})})}const hGt=e=>e;function _ye({taxonomyWrapper:e=hGt}){const{postType:t,taxonomies:n}=G(r=>({postType:r(_e).getCurrentPostType(),taxonomies:r(Me).getTaxonomies({per_page:-1})}),[]);return(n??[]).filter(r=>r.types.includes(t)&&r.visibility?.show_ui).map(r=>{const s=r.hierarchical?Aye:yye,i={slug:r.slug,...r.hierarchical?{}:{__nextHasNoMarginBottom:!0}};return a.jsx(x.Fragment,{children:e(a.jsx(s,{...i}),r)},`taxonomy-${r.slug}`)})}function mGt({children:e}){return G(n=>{const o=n(_e).getCurrentPostType();return n(Me).getTaxonomies({per_page:-1})?.some(s=>s.types.includes(o))},[])?e:null}function gGt({taxonomy:e,children:t}){const n=e?.slug,o=n?`taxonomy-panel-${n}`:"",{isEnabled:r,isOpened:s}=G(l=>{const{isEditorPanelEnabled:u,isEditorPanelOpened:d}=l(_e);return{isEnabled:n?u(o):!1,isOpened:n?d(o):!1}},[o,n]),{toggleEditorPanelOpened:i}=Oe(_e);if(!r)return null;const c=e?.labels?.menu_name;return c?a.jsx(Qt,{title:c,opened:s,onToggle:()=>i(o),children:t}):null}function MGt(){return a.jsx(mGt,{children:a.jsx(_ye,{taxonomyWrapper:(e,t)=>a.jsx(gGt,{taxonomy:t,children:e})})})}function GI(){const e=vt(GI),{content:t,blocks:n,type:o,id:r}=G(c=>{const{getEditedEntityRecord:l}=c(Me),{getCurrentPostType:u,getCurrentPostId:d}=c(_e),p=u(),f=d(),b=l("postType",p,f);return{content:b?.content,blocks:b?.blocks,type:p,id:f}},[]),{editEntityRecord:s}=Oe(Me),i=x.useMemo(()=>t instanceof Function?t({blocks:n}):n?Jd(n):t,[t,n]);return a.jsxs(a.Fragment,{children:[a.jsx(qn,{as:"label",htmlFor:`post-content-${e}`,children:m("Type text or HTML")}),a.jsx(g7,{autoComplete:"off",dir:"auto",value:i,onChange:c=>{s("postType",o,r,{content:c.target.value,blocks:void 0,selection:void 0})},className:"editor-post-text-editor",id:`post-content-${e}`,placeholder:m("Start writing with text or HTML")})]})}const kye="wp-block wp-block-post-title block-editor-block-list__block editor-post-title editor-post-title__input rich-text",Sye=/[\r\n]+/g;function Cye(e){const t=x.useRef(),{isCleanNewPost:n}=G(o=>{const{isCleanNewPost:r}=o(_e);return{isCleanNewPost:r()}},[]);return x.useImperativeHandle(e,()=>({focus:()=>{t?.current?.focus()}})),x.useEffect(()=>{if(!t.current)return;const{defaultView:o}=t.current.ownerDocument,{name:r,parent:s}=o,i=r==="editor-canvas"?s.document:o.document,{activeElement:c,body:l}=i;n&&(!c||l===c)&&t.current.focus()},[n]),{ref:t}}function qye(){const{editPost:e}=Oe(_e),{title:t}=G(o=>{const{getEditedPostAttribute:r}=o(_e);return{title:r("title")}},[]);function n(o){e({title:o})}return{title:t,setTitle:n}}const zGt=x.forwardRef((e,t)=>{const{placeholder:n}=G(C=>{const{getSettings:R}=C(Q),{titlePlaceholder:T}=R();return{placeholder:T}},[]),[o,r]=x.useState(!1),{ref:s}=Cye(t),{title:i,setTitle:c}=qye(),[l,u]=x.useState({}),{clearSelectedBlock:d,insertBlocks:p,insertDefaultBlock:f}=Oe(Q),b=Lt(n)||m("Add title"),{value:h,onChange:g,ref:z}=o1e({value:i,onChange(C){c(C.replace(Sye," "))},placeholder:b,selectionStart:l.start,selectionEnd:l.end,onSelectionChange(C,R){u(T=>{const{start:E,end:B}=T;return E===C&&B===R?T:{start:C,end:R}})},__unstableDisableFormats:!1});function A(C){p(C,0)}function _(){r(!0),d()}function v(){r(!1),u({})}function M(){f(void 0,void 0,0)}function y(C){C.keyCode===Gr&&(C.preventDefault(),M())}function k(C){const R=C.clipboardData;let T="",E="";try{T=R.getData("text/plain"),E=R.getData("text/html")}catch{return}window.console.log(`Received HTML: + `,t=gr("editor.PostPreview.interstitialMarkup",t),e.write(t),e.title=m("Generating preview…"),e.close()}function dye({className:e,textContent:t,forceIsAutosaveable:n,role:o,onPreview:r}){const{postId:s,currentPostLink:i,previewLink:c,isSaveable:l,isViewable:u}=G(h=>{var g;const z=h(_e),v=(g=h(Me).getPostType(z.getCurrentPostType("type"))?.viewable)!==null&&g!==void 0?g:!1;return v?{postId:z.getCurrentPostId(),currentPostLink:z.getCurrentPostAttribute("link"),previewLink:z.getEditedPostPreviewLink(),isSaveable:z.isEditedPostSaveable(),isViewable:v}:{isViewable:v}},[]),{__unstableSaveForPreview:d}=Oe(_e);if(!u)return null;const p=`wp-preview-${s}`,f=async h=>{h.preventDefault();const g=window.open("",p);g.focus(),wXt(g.document);const z=await d({forceIsAutosaveable:n});g.location=z,r?.()},b=c||i;return a.jsx(Ce,{variant:e?void 0:"tertiary",className:e||"editor-post-preview",href:b,target:p,accessibleWhenDisabled:!0,disabled:!l,onClick:f,role:o,size:"compact",children:t||a.jsxs(a.Fragment,{children:[We("Preview","imperative verb"),a.jsx(qn,{as:"span",children:m("(opens in a new tab)")})]})})}function _Xt(){const e=Yn("medium","<"),{isPublished:t,isBeingScheduled:n,isSaving:o,isPublishing:r,hasPublishAction:s,isAutosaving:i,hasNonPostEntityChanges:c,postStatusHasChanged:l,postStatus:u}=G(d=>{var p;const{isCurrentPostPublished:f,isEditedPostBeingScheduled:b,isSavingPost:h,isPublishingPost:g,getCurrentPost:z,getCurrentPostType:A,isAutosavingPost:_,getPostEdits:v,getEditedPostAttribute:M}=d(_e);return{isPublished:f(),isBeingScheduled:b(),isSaving:h(),isPublishing:g(),hasPublishAction:(p=z()._links?.["wp:action-publish"])!==null&&p!==void 0?p:!1,postType:A(),isAutosaving:_(),hasNonPostEntityChanges:d(_e).hasNonPostEntityChanges(),postStatusHasChanged:!!v()?.status,postStatus:M("status")}},[]);return r?m("Publishing…"):(t||n)&&o&&!i?m("Saving…"):s?c||t||l&&!["future","publish"].includes(u)||!l&&u==="future"?m("Save"):m(n?"Schedule":"Publish"):m(e?"Publish":"Submit for Review")}const fne=()=>{};class kXt extends x.Component{constructor(t){super(t),this.createOnClick=this.createOnClick.bind(this),this.closeEntitiesSavedStates=this.closeEntitiesSavedStates.bind(this),this.state={entitiesSavedStatesCallback:!1}}createOnClick(t){return(...n)=>{const{hasNonPostEntityChanges:o,setEntitiesSavedStatesCallback:r}=this.props;return o&&r?(this.setState({entitiesSavedStatesCallback:()=>t(...n)}),r(()=>this.closeEntitiesSavedStates),fne):t(...n)}}closeEntitiesSavedStates(t){const{postType:n,postId:o}=this.props,{entitiesSavedStatesCallback:r}=this.state;this.setState({entitiesSavedStatesCallback:!1},()=>{t&&t.some(s=>s.kind==="postType"&&s.name===n&&s.key===o)&&r()})}render(){const{forceIsDirty:t,hasPublishAction:n,isBeingScheduled:o,isOpen:r,isPostSavingLocked:s,isPublishable:i,isPublished:c,isSaveable:l,isSaving:u,isAutoSaving:d,isToggle:p,savePostStatus:f,onSubmit:b=fne,onToggle:h,visibility:g,hasNonPostEntityChanges:z,isSavingNonPostEntityChanges:A,postStatus:_,postStatusHasChanged:v}=this.props,M=(u||!l||s||!i&&!t)&&(!z||A),y=(c||u||!l||!i&&!t)&&(!z||A);let k="publish";v?k=_:n?g==="private"?k="private":o&&(k="future"):k="pending";const S=()=>{M||(b(),f(k))},C=()=>{y||h()},R={"aria-disabled":M,className:"editor-post-publish-button",isBusy:!d&&u,variant:"primary",onClick:this.createOnClick(S),"aria-haspopup":z?"dialog":void 0},T={"aria-disabled":y,"aria-expanded":r,className:"editor-post-publish-panel__toggle",isBusy:u&&c,variant:"primary",size:"compact",onClick:this.createOnClick(C),"aria-haspopup":z?"dialog":void 0},E=p?T:R;return a.jsx(a.Fragment,{children:a.jsx(Ce,{...E,className:`${E.className} editor-post-publish-button__button`,size:"compact",children:a.jsx(_Xt,{})})})}}const pye=Co([Ul(e=>{var t;const{isSavingPost:n,isAutosavingPost:o,isEditedPostBeingScheduled:r,getEditedPostVisibility:s,isCurrentPostPublished:i,isEditedPostSaveable:c,isEditedPostPublishable:l,isPostSavingLocked:u,getCurrentPost:d,getCurrentPostType:p,getCurrentPostId:f,hasNonPostEntityChanges:b,isSavingNonPostEntityChanges:h,getEditedPostAttribute:g,getPostEdits:z}=e(_e);return{isSaving:n(),isAutoSaving:o(),isBeingScheduled:r(),visibility:s(),isSaveable:c(),isPostSavingLocked:u(),isPublishable:l(),isPublished:i(),hasPublishAction:(t=d()._links?.["wp:action-publish"])!==null&&t!==void 0?t:!1,postType:p(),postId:f(),postStatus:g("status"),postStatusHasChanged:z()?.status,hasNonPostEntityChanges:b(),isSavingNonPostEntityChanges:h()}}),Ff(e=>{const{editPost:t,savePost:n}=e(_e);return{savePostStatus:o=>{t({status:o},{undoIgnore:!0}),n()}}})])(kXt),Fp={public:{label:m("Public"),info:m("Visible to everyone.")},private:{label:m("Private"),info:m("Only visible to site admins and editors.")},password:{label:m("Password protected"),info:m("Only those with the password can view this post.")}};function fye({onClose:e}){const t=vt(fye),{status:n,visibility:o,password:r}=G(A=>({status:A(_e).getEditedPostAttribute("status"),visibility:A(_e).getEditedPostVisibility(),password:A(_e).getEditedPostAttribute("password")})),{editPost:s,savePost:i}=Oe(_e),[c,l]=x.useState(!!r),[u,d]=x.useState(!1),p=()=>{s({status:o==="private"?"draft":n,password:""}),l(!1)},f=()=>{d(!0)},b=()=>{s({status:"private",password:""}),l(!1),d(!1),i()},h=()=>{d(!1)},g=()=>{s({status:o==="private"?"draft":n,password:r||""}),l(!0)},z=A=>{s({password:A.target.value})};return a.jsxs("div",{className:"editor-post-visibility",children:[a.jsx(Qs,{title:m("Visibility"),help:m("Control how this post is viewed."),onClose:e}),a.jsxs("fieldset",{className:"editor-post-visibility__fieldset",children:[a.jsx(qn,{as:"legend",children:m("Visibility")}),a.jsx(kT,{instanceId:t,value:"public",label:Fp.public.label,info:Fp.public.info,checked:o==="public"&&!c,onChange:p}),a.jsx(kT,{instanceId:t,value:"private",label:Fp.private.label,info:Fp.private.info,checked:o==="private",onChange:f}),a.jsx(kT,{instanceId:t,value:"password",label:Fp.password.label,info:Fp.password.info,checked:c,onChange:g}),c&&a.jsxs("div",{className:"editor-post-visibility__password",children:[a.jsx(qn,{as:"label",htmlFor:`editor-post-visibility__password-input-${t}`,children:m("Create password")}),a.jsx("input",{className:"editor-post-visibility__password-input",id:`editor-post-visibility__password-input-${t}`,type:"text",onChange:z,value:r,placeholder:m("Use a secure password")})]})]}),a.jsx(wf,{isOpen:u,onConfirm:b,onCancel:h,confirmButtonText:m("Publish"),size:"medium",children:m("Would you like to privately publish this post now?")})]})}function kT({instanceId:e,value:t,label:n,info:o,...r}){return a.jsxs("div",{className:"editor-post-visibility__choice",children:[a.jsx("input",{type:"radio",name:`editor-post-visibility__setting-${e}`,value:t,id:`editor-post-${t}-${e}`,"aria-describedby":`editor-post-${t}-${e}-description`,className:"editor-post-visibility__radio",...r}),a.jsx("label",{htmlFor:`editor-post-${t}-${e}`,className:"editor-post-visibility__label",children:n}),a.jsx("p",{id:`editor-post-${t}-${e}-description`,className:"editor-post-visibility__info",children:o})]})}function SXt(){return CXt()}function CXt(){const e=G(t=>t(_e).getEditedPostVisibility());return Fp[e]?.label}const{PrivatePublishDateTimePicker:qXt}=St(jn);function bye(e){return a.jsx(hye,{...e,showPopoverHeaderActions:!0,isCompact:!1})}function hye({onClose:e,showPopoverHeaderActions:t,isCompact:n}){const{postDate:o,postType:r}=G(b=>({postDate:b(_e).getEditedPostAttribute("date"),postType:b(_e).getCurrentPostType()}),[]),{editPost:s}=Oe(_e),i=b=>s({date:b}),[c,l]=x.useState(Ax(new Date(o))),u=G(b=>b(Me).getEntityRecords("postType",r,{status:"publish,future",after:Ax(c).toISOString(),before:K8(c).toISOString(),exclude:[b(_e).getCurrentPostId()],per_page:100,_fields:"id,date"}),[c,r]),d=x.useMemo(()=>(u||[]).map(({date:b})=>({date:new Date(b)})),[u]),p=Sa(),f=/a(?!\\)/i.test(p.formats.time.toLowerCase().replace(/\\\\/g,"").split("").reverse().join(""));return a.jsx(qXt,{currentDate:o,onChange:i,is12Hour:f,dateOrder:We("dmy","date order"),events:d,onMonthPreviewed:b=>l(ect(b)),onClose:e,isCompact:n,showPopoverHeaderActions:t})}function mye(e){return cN(e)}function cN({full:e=!1}={}){const{date:t,isFloating:n}=G(o=>({date:o(_e).getEditedPostAttribute("date"),isFloating:o(_e).isEditedPostDateFloating()}),[]);return e?gye(t):RXt(t,{isFloating:n})}function gye(e){const t=_f(e),n=TXt(),o=r0(We("F j, Y g:i a","post schedule full date format"),t);return jt()?`${n} ${o}`:`${o} ${n}`}function RXt(e,{isFloating:t=!1,now:n=new Date}={}){if(!e||t)return m("Immediately");if(!EXt(n))return gye(e);const o=_f(e);if(bne(o,n))return xe(m("Today at %s"),r0(We("g:i a","post schedule time format"),o));const r=new Date(n);return r.setDate(r.getDate()+1),bne(o,r)?xe(m("Tomorrow at %s"),r0(We("g:i a","post schedule time format"),o)):o.getFullYear()===n.getFullYear()?r0(We("F j g:i a","post schedule date format without year"),o):r0(We("F j, Y g:i a","post schedule full date format"),o)}function TXt(){const{timezone:e}=Sa();return e.abbr&&isNaN(Number(e.abbr))?e.abbr:`UTC${e.offset<0?"":"+"}${e.offsetFormatted}`}function EXt(e){const{timezone:t}=Sa(),n=Number(t.offset),o=-1*(e.getTimezoneOffset()/60);return n===o}function bne(e,t){return e.getDate()===t.getDate()&&e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear()}const WXt=3,NXt={per_page:10,orderby:"count",order:"desc",hide_empty:!0,_fields:"id,name,count",context:"view"};function BXt({onSelect:e,taxonomy:t}){const{_terms:n,showTerms:o}=G(s=>{const i=s(Me).getEntityRecords("taxonomy",t.slug,NXt);return{_terms:i,showTerms:i?.length>=WXt}},[t.slug]);if(!o)return null;const r=MUt(n);return a.jsxs("div",{className:"editor-post-taxonomies__flat-term-most-used",children:[a.jsx(no.VisualLabel,{as:"h3",className:"editor-post-taxonomies__flat-term-most-used-label",children:t.labels.most_used}),a.jsx("ul",{role:"list",className:"editor-post-taxonomies__flat-term-most-used-list",children:r.map(s=>a.jsx("li",{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>e(s),children:s.name})},s.id))})]})}const ST=[],Mye=100,hne={per_page:Mye,_fields:"id,name",context:"view"},zye=(e,t)=>o3(e).toLowerCase()===o3(t).toLowerCase(),CT=(e,t)=>e.map(n=>t.find(o=>zye(o.name,n))?.id).filter(n=>n!==void 0),LXt=({children:e,__nextHasNoMarginBottom:t})=>t?a.jsx(dt,{spacing:4,children:e}):a.jsx(x.Fragment,{children:e});function PXt({slug:e,__nextHasNoMarginBottom:t}){var n,o;const[r,s]=x.useState([]),[i,c]=x.useState(""),l=C1(c,500);t||Ke("Bottom margin styles for wp.editor.PostTaxonomiesFlatTermSelector",{since:"6.7",version:"7.0",hint:"Set the `__nextHasNoMarginBottom` prop to true to start opting into the new styles, which will become the default in a future version."});const{terms:u,termIds:d,taxonomy:p,hasAssignAction:f,hasCreateAction:b,hasResolvedTerms:h}=G(N=>{var j,I;const{getCurrentPost:P,getEditedPostAttribute:$}=N(_e),{getEntityRecords:F,getTaxonomy:X,hasFinishedResolution:Z}=N(Me),V=P(),ee=X(e),te=ee?$(ee.rest_base):ST,J={...hne,include:te?.join(","),per_page:-1};return{hasCreateAction:ee&&(j=V._links?.["wp:action-create-"+ee.rest_base])!==null&&j!==void 0?j:!1,hasAssignAction:ee&&(I=V._links?.["wp:action-assign-"+ee.rest_base])!==null&&I!==void 0?I:!1,taxonomy:ee,termIds:te,terms:te?.length?F("taxonomy",e,J):ST,hasResolvedTerms:Z("getEntityRecords",["taxonomy",e,J])}},[e]),{searchResults:g}=G(N=>{const{getEntityRecords:j}=N(Me);return{searchResults:i?j("taxonomy",e,{...hne,search:i}):ST}},[i,e]);x.useEffect(()=>{if(h){const N=(u??[]).map(j=>o3(j.name));s(N)}},[u,h]);const z=x.useMemo(()=>(g??[]).map(N=>o3(N.name)),[g]),{editPost:A}=Oe(_e),{saveEntityRecord:_}=Oe(Me),{createErrorNotice:v}=Oe(mt);if(!f)return null;async function M(N){try{const j=await _("taxonomy",e,N,{throwOnError:!0});return QOe(j)}catch(j){if(j.code!=="term_exists")throw j;return{id:j.data.term_id,name:N.name}}}function y(N){A({[p.rest_base]:N})}function k(N){const j=[...u??[],...g??[]],I=N.reduce(($,F)=>($.some(X=>X.toLowerCase()===F.toLowerCase())||$.push(F),$),[]),P=I.filter($=>!j.find(F=>zye(F.name,$)));if(s(I),P.length===0){y(CT(I,j));return}b&&Promise.all(P.map($=>M({name:$}))).then($=>{const F=j.concat($);y(CT(I,F))}).catch($=>{v($.message,{type:"snackbar"}),y(CT(I,j))})}function S(N){var j;if(d.includes(N.id))return;const I=[...d,N.id],P=m(e==="post_tag"?"Tag":"Term"),$=xe(We("%s added","term"),(j=p?.labels?.singular_name)!==null&&j!==void 0?j:P);Yt($,"assertive"),y(I)}const C=(n=p?.labels?.add_new_item)!==null&&n!==void 0?n:m(e==="post_tag"?"Add new tag":"Add new Term"),R=(o=p?.labels?.singular_name)!==null&&o!==void 0?o:m(e==="post_tag"?"Tag":"Term"),T=xe(We("%s added","term"),R),E=xe(We("%s removed","term"),R),B=xe(We("Remove %s","term"),R);return a.jsxs(LXt,{__nextHasNoMarginBottom:t,children:[a.jsx(ip,{__next40pxDefaultSize:!0,value:r,suggestions:z,onChange:k,onInputChange:l,maxSuggestions:Mye,label:C,messages:{added:T,removed:E,remove:B},__nextHasNoMarginBottom:t}),a.jsx(BXt,{taxonomy:p,onSelect:S})]})}const Oye=ap("editor.PostTaxonomyType")(PXt),jXt=()=>{const e=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("Add tags")},"label")];return a.jsxs(Qt,{initialOpen:!1,title:e,children:[a.jsx("p",{children:m("Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.")}),a.jsx(Oye,{slug:"post_tag",__nextHasNoMarginBottom:!0})]})},IXt=()=>{const{hasTags:e,isPostTypeSupported:t}=G(o=>{const r=o(_e).getCurrentPostType(),s=o(Me).getTaxonomy("post_tag"),i=s?.types?.includes(r),c=s!==void 0;return{hasTags:!!(s&&o(_e).getEditedPostAttribute(s.rest_base))?.length,isPostTypeSupported:c&&i}},[]),[n]=x.useState(e);return t?n?null:a.jsx(jXt,{}):null},DXt=(e,t)=>UI.filter(o=>e?.includes(o.id)).find(o=>o.id===t),FXt=({suggestedPostFormat:e,suggestionText:t,onUpdatePostFormat:n})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"link",onClick:()=>n(e),children:t});function $Xt(){const{currentPostFormat:e,suggestion:t}=G(s=>{var i;const{getEditedPostAttribute:c,getSuggestedPostFormat:l}=s(_e),u=(i=s(Me).getThemeSupports().formats)!==null&&i!==void 0?i:[];return{currentPostFormat:c("format"),suggestion:DXt(u,l())}},[]),{editPost:n}=Oe(_e),o=s=>n({format:s}),r=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("Use a post format")},"label")];return!t||t.id===e?null:a.jsxs(Qt,{initialOpen:!1,title:r,children:[a.jsx("p",{children:m("Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.")}),a.jsx("p",{children:a.jsx(FXt,{onUpdatePostFormat:o,suggestedPostFormat:t.id,suggestionText:xe(m('Apply the "%1$s" format.'),t.caption)})})]})}const mne={per_page:-1,orderby:"name",order:"asc",_fields:"id,name,parent",context:"view"},VXt=8,gne=[];function HXt(e,t){const n=s=>t.indexOf(s.id)!==-1?!0:s.children===void 0?!1:s.children.map(n).filter(i=>i).length>0,o=(s,i)=>{const c=n(s),l=n(i);return c===l?0:c&&!l?-1:!c&&l?1:0},r=[...e];return r.sort(o),r}function UXt(e,t,n){return e.find(o=>(!o.parent&&!t||parseInt(o.parent)===parseInt(t))&&o.name.toLowerCase()===n.toLowerCase())}function XXt(e){const t=n=>{if(e==="")return n;const o={...n};return o.children.length>0&&(o.children=o.children.map(t).filter(r=>r)),o.name.toLowerCase().indexOf(e.toLowerCase())!==-1||o.children.length>0?o:!1};return t}function GXt({slug:e}){var t,n;const[o,r]=x.useState(!1),[s,i]=x.useState(""),[c,l]=x.useState(""),[u,d]=x.useState(!1),[p,f]=x.useState(""),[b,h]=x.useState([]),g=C1(Yt,500),{hasCreateAction:z,hasAssignAction:A,terms:_,loading:v,availableTerms:M,taxonomy:y}=G(de=>{var Ae,ye;const{getCurrentPost:Ne,getEditedPostAttribute:je}=de(_e),{getTaxonomy:ie,getEntityRecords:we,isResolving:re}=de(Me),pe=ie(e),ke=Ne();return{hasCreateAction:pe&&(Ae=ke._links?.["wp:action-create-"+pe.rest_base])!==null&&Ae!==void 0?Ae:!1,hasAssignAction:pe&&(ye=ke._links?.["wp:action-assign-"+pe.rest_base])!==null&&ye!==void 0?ye:!1,terms:pe?je(pe.rest_base):gne,loading:re("getEntityRecords",["taxonomy",e,mne]),availableTerms:we("taxonomy",e,mne)||gne,taxonomy:pe}},[e]),{editPost:k}=Oe(_e),{saveEntityRecord:S}=Oe(Me),C=x.useMemo(()=>HXt(ZOe(M),_),[M]),{createErrorNotice:R}=Oe(mt);if(!A)return null;const T=de=>S("taxonomy",e,de,{throwOnError:!0}),E=de=>{k({[y.rest_base]:de})},B=de=>{const ye=_.includes(de)?_.filter(Ne=>Ne!==de):[..._,de];E(ye)},N=de=>{i(de)},j=de=>{l(de)},I=()=>{d(!u)},P=async de=>{var Ae;if(de.preventDefault(),s===""||o)return;const ye=UXt(M,c,s);if(ye){_.some(we=>we===ye.id)||E([..._,ye.id]),i(""),l("");return}r(!0);let Ne;try{Ne=await T({name:s,parent:c||void 0})}catch(we){R(we.message,{type:"snackbar"});return}const je=m(e==="category"?"Category":"Term"),ie=xe(We("%s added","term"),(Ae=y?.labels?.singular_name)!==null&&Ae!==void 0?Ae:je);Yt(ie,"assertive"),r(!1),i(""),l(""),E([..._,Ne.id])},$=de=>{const Ae=C.map(XXt(de)).filter(ie=>ie),ye=ie=>{let we=0;for(let re=0;re<ie.length;re++)we++,ie[re].children!==void 0&&(we+=ye(ie[re].children));return we};f(de),h(Ae);const Ne=ye(Ae),je=xe(Dn("%d result found.","%d results found.",Ne),Ne);g(je,"assertive")},F=de=>de.map(Ae=>a.jsxs("div",{className:"editor-post-taxonomies__hierarchical-terms-choice",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,checked:_.indexOf(Ae.id)!==-1,onChange:()=>{const ye=parseInt(Ae.id,10);B(ye)},label:Lt(Ae.name)}),!!Ae.children.length&&a.jsx("div",{className:"editor-post-taxonomies__hierarchical-terms-subchoices",children:F(Ae.children)})]},Ae.id)),X=(de,Ae,ye)=>{var Ne;return(Ne=y?.labels?.[de])!==null&&Ne!==void 0?Ne:e==="category"?Ae:ye},Z=X("add_new_item",m("Add new category"),m("Add new term")),V=X("new_item_name",m("Add new category"),m("Add new term")),ee=X("parent_item",m("Parent Category"),m("Parent Term")),te=`— ${ee} —`,J=Z,ue=(t=y?.labels?.search_items)!==null&&t!==void 0?t:m("Search Terms"),ce=(n=y?.name)!==null&&n!==void 0?n:m("Terms"),me=M.length>=VXt;return a.jsxs(Yo,{direction:"column",gap:"4",children:[me&&a.jsx(su,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:ue,placeholder:ue,value:p,onChange:$}),a.jsx("div",{className:"editor-post-taxonomies__hierarchical-terms-list",tabIndex:"0",role:"group","aria-label":ce,children:F(p!==""?b:C)}),!v&&z&&a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:I,className:"editor-post-taxonomies__hierarchical-terms-add","aria-expanded":u,variant:"link",children:Z})}),u&&a.jsx("form",{onSubmit:P,children:a.jsxs(Yo,{direction:"column",gap:"4",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"editor-post-taxonomies__hierarchical-terms-input",label:V,value:s,onChange:N,required:!0}),!!M.length&&a.jsx(jj,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:ee,noOptionLabel:te,onChange:j,selectedId:c,tree:C}),a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",type:"submit",className:"editor-post-taxonomies__hierarchical-terms-submit",children:J})})]})})]})}const yye=ap("editor.PostTaxonomyType")(GXt);function KXt(){const e=G(r=>{const s=r(_e).getCurrentPostType(),{canUser:i,getEntityRecord:c,getTaxonomy:l}=r(Me),u=l("category"),d=i("read",{kind:"root",name:"site"})?c("root","site")?.default_category:void 0,p=d?c("taxonomy","category",d):void 0,f=u&&u.types.some(h=>h===s),b=u&&r(_e).getEditedPostAttribute(u.rest_base);return!!u&&!!p&&f&&(b?.length===0||b?.length===1&&p?.id===b[0])},[]),[t,n]=x.useState(!1);if(x.useEffect(()=>{e&&n(!0)},[e]),!t)return null;const o=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("Assign a category")},"label")];return a.jsxs(Qt,{initialOpen:!1,title:o,children:[a.jsx("p",{children:m("Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about.")}),a.jsx(yye,{slug:"category"})]})}function YXt(e){const t=new Set;return Object.fromEntries(e.map(n=>{const o=If(n);let r="";if(o){const s=o.split(".");s.length>1&&s.pop(),r=s.join(".")}return r||(r=Is()),t.has(r)&&(r=`${r}-${Is()}`),t.add(r),[n,r]}))}function ZXt(e){return Object.fromEntries(Object.entries(YXt(e)).map(([t,n])=>{const o=window.fetch(t.includes("?")?t:t+"?").then(r=>r.blob()).then(r=>new File([r],`${n}.png`,{type:r.type}));return[t,o]}))}function Aye(e){const t=[];return e.forEach(n=>{t.push(n),t.push(...Aye(n.innerBlocks))}),t}function QXt(e){if(e.name==="core/image"||e.name==="core/cover")return e.attributes.url&&!e.attributes.id;if(e.name==="core/media-text")return e.attributes.mediaUrl&&!e.attributes.mediaId}function qT(e){if(e.name==="core/image"||e.name==="core/cover"){const{url:t,alt:n,id:o}=e.attributes;return{url:t,alt:n,id:o}}if(e.name==="core/media-text"){const{mediaUrl:t,mediaAlt:n,mediaId:o}=e.attributes;return{url:t,alt:n,id:o}}return{}}function JXt({clientId:e,alt:t,url:n}){const{selectBlock:o}=Oe(Q);return a.jsx(Rr.img,{tabIndex:0,role:"button","aria-label":m("Select image block."),onClick:()=>{o(e)},onKeyDown:r=>{(r.key==="Enter"||r.key===" ")&&(o(e),r.preventDefault())},alt:t,src:n,animate:{opacity:1},exit:{opacity:0,scale:0},style:{width:"32px",height:"32px",objectFit:"cover",borderRadius:"2px",cursor:"pointer"},whileHover:{scale:1.08}},e)}function eGt(){const[e,t]=x.useState(!1),[n,o]=x.useState(!1),[r,s]=x.useState(!1),{editorBlocks:i,mediaUpload:c}=G(b=>({editorBlocks:b(Q).getBlocks(),mediaUpload:b(Q).getSettings().mediaUpload}),[]),l=Aye(i).filter(b=>QXt(b)),{updateBlockAttributes:u}=Oe(Q);if(!c||!l.length)return null;const d=[m("Suggestion:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:m("External media")},"label")];function p(b,h){(b.name==="core/image"||b.name==="core/cover")&&u(b.clientId,{id:h.id,url:h.url}),b.name==="core/media-text"&&u(b.clientId,{mediaId:h.id,mediaUrl:h.url})}function f(){t(!0),s(!1);const b=new Set(l.map(g=>{const{url:z}=qT(g);return z})),h=Object.fromEntries(Object.entries(ZXt([...b])).map(([g,z])=>{const A=z.then(_=>new Promise((v,M)=>{c({filesList:[_],onFileChange:([y])=>{Nr(y.url)||v(y)},onError(){M()}})}));return[g,A]}));Promise.allSettled(l.map(g=>{const{url:z}=qT(g);return h[z].then(A=>p(g,A)).then(()=>o(!0)).catch(()=>s(!0))})).finally(()=>{t(!1)})}return a.jsxs(Qt,{initialOpen:!0,title:d,children:[a.jsx("p",{children:m("Upload external images to the Media Library. Images from different domains may load slowly, display incorrectly, or be removed unexpectedly.")}),a.jsxs("div",{style:{display:"inline-flex",flexWrap:"wrap",gap:"8px"},children:[a.jsx(Wd,{onExitComplete:()=>o(!1),children:l.map(b=>{const{url:h,alt:g}=qT(b);return a.jsx(JXt,{clientId:b.clientId,url:h,alt:g},b.clientId)})}),e||n?a.jsx(Xn,{}):a.jsx(Ce,{size:"compact",variant:"primary",onClick:f,children:We("Upload","verb")})]}),r&&a.jsx("p",{children:m("Upload failed, try again.")})]})}function tGt({children:e}){const{isBeingScheduled:t,isRequestingSiteIcon:n,hasPublishAction:o,siteIconUrl:r,siteTitle:s,siteHome:i}=G(d=>{var p;const{getCurrentPost:f,isEditedPostBeingScheduled:b}=d(_e),{getEntityRecord:h,isResolving:g}=d(Me),z=h("root","__unstableBase",void 0)||{};return{hasPublishAction:(p=f()._links?.["wp:action-publish"])!==null&&p!==void 0?p:!1,isBeingScheduled:b(),isRequestingSiteIcon:g("getEntityRecord",["root","__unstableBase",void 0]),siteIconUrl:z.site_icon_url,siteTitle:z.name,siteHome:z.home&&Ph(z.home)}},[]);let c=a.jsx(qo,{className:"components-site-icon",size:"36px",icon:lJe});r&&(c=a.jsx("img",{alt:m("Site Icon"),className:"components-site-icon",src:r})),n&&(c=null);let l,u;return o?t?(l=m("Are you ready to schedule?"),u=m("Your work will be published at the specified date and time.")):(l=m("Are you ready to publish?"),u=m("Double-check your settings before publishing.")):(l=m("Are you ready to submit for review?"),u=m("Your work will be reviewed and then approved.")),a.jsxs("div",{className:"editor-post-publish-panel__prepublish",children:[a.jsx("div",{children:a.jsx("strong",{children:l})}),a.jsx("p",{children:u}),a.jsxs("div",{className:"components-site-card",children:[c,a.jsxs("div",{className:"components-site-info",children:[a.jsx("span",{className:"components-site-name",children:Lt(s)||m("(Untitled)")}),a.jsx("span",{className:"components-site-home",children:i})]})]}),a.jsx(eGt,{}),o&&a.jsxs(a.Fragment,{children:[a.jsx(Qt,{initialOpen:!1,title:[m("Visibility:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:a.jsx(SXt,{})},"label")],children:a.jsx(fye,{})}),a.jsx(Qt,{initialOpen:!1,title:[m("Publish:"),a.jsx("span",{className:"editor-post-publish-panel__link",children:a.jsx(mye,{})},"label")],children:a.jsx(bye,{})})]}),a.jsx($Xt,{}),a.jsx(IXt,{}),a.jsx(KXt,{}),e]})}const Mne="%postname%",zne="%pagename%",nGt=e=>{const{slug:t}=e;return e.permalink_template.includes(Mne)?e.permalink_template.replace(Mne,t):e.permalink_template.includes(zne)?e.permalink_template.replace(zne,t):e.permalink_template};function oGt({text:e}){const[t,n]=x.useState(!1),o=x.useRef(),r=Hl(e,()=>{n(!0),o.current&&clearTimeout(o.current),o.current=setTimeout(()=>{n(!1)},4e3)});return x.useEffect(()=>()=>{o.current&&clearTimeout(o.current)},[]),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",ref:r,children:m(t?"Copied!":"Copy")})}function rGt({focusOnMount:e,children:t}){const{post:n,postType:o,isScheduled:r}=G(f=>{const{getEditedPostAttribute:b,getCurrentPost:h,isCurrentPostScheduled:g}=f(_e),{getPostType:z}=f(Me);return{post:h(),postType:z(b("type")),isScheduled:g()}},[]),s=o?.labels?.singular_name,i=o?.labels?.view_item,c=o?.labels?.add_new_item,l=n.status==="future"?nGt(n):n.link,u=tn("post-new.php",{post_type:n.type}),d=x.useCallback(f=>{e&&f&&f.focus()},[e]),p=r?a.jsxs(a.Fragment,{children:[m("is now scheduled. It will go live on")," ",a.jsx(mye,{}),"."]}):m("is now live.");return a.jsxs("div",{className:"post-publish-panel__postpublish",children:[a.jsxs(Qt,{className:"post-publish-panel__postpublish-header",children:[a.jsx("a",{ref:d,href:l,children:Lt(n.title)||m("(no title)")})," ",p]}),a.jsxs(Qt,{children:[a.jsx("p",{className:"post-publish-panel__postpublish-subheader",children:a.jsx("strong",{children:m("What’s next?")})}),a.jsxs("div",{className:"post-publish-panel__postpublish-post-address-container",children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"post-publish-panel__postpublish-post-address",readOnly:!0,label:xe(m("%s address"),s),value:Y2(l),onFocus:f=>f.target.select()}),a.jsx("div",{className:"post-publish-panel__postpublish-post-address__copy-button-wrap",children:a.jsx(oGt,{text:l})})]}),a.jsxs("div",{className:"post-publish-panel__postpublish-buttons",children:[!r&&a.jsx(Ce,{variant:"primary",href:l,__next40pxDefaultSize:!0,children:i}),a.jsx(Ce,{variant:r?"primary":"secondary",__next40pxDefaultSize:!0,href:u,children:c})]})]}),t]})}class sGt extends x.Component{constructor(){super(...arguments),this.onSubmit=this.onSubmit.bind(this),this.cancelButtonNode=x.createRef()}componentDidMount(){this.timeoutID=setTimeout(()=>{this.cancelButtonNode.current.focus()},0)}componentWillUnmount(){clearTimeout(this.timeoutID)}componentDidUpdate(t){(t.isPublished&&!this.props.isSaving&&this.props.isDirty||this.props.currentPostId!==t.currentPostId)&&this.props.onClose()}onSubmit(){const{onClose:t,hasPublishAction:n,isPostTypeViewable:o}=this.props;(!n||!o)&&t()}render(){const{forceIsDirty:t,isBeingScheduled:n,isPublished:o,isPublishSidebarEnabled:r,isScheduled:s,isSaving:i,isSavingNonPostEntityChanges:c,onClose:l,onTogglePublishSidebar:u,PostPublishExtension:d,PrePublishExtension:p,currentPostId:f,...b}=this.props,{hasPublishAction:h,isDirty:g,isPostTypeViewable:z,...A}=b,_=o||s&&n,v=!_&&!i,M=_&&!i;return a.jsxs("div",{className:"editor-post-publish-panel",...A,children:[a.jsx("div",{className:"editor-post-publish-panel__header",children:M?a.jsx(Ce,{size:"compact",onClick:l,icon:rp,label:m("Close panel")}):a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"editor-post-publish-panel__header-cancel-button",children:a.jsx(Ce,{ref:this.cancelButtonNode,accessibleWhenDisabled:!0,disabled:c,onClick:l,variant:"secondary",size:"compact",children:m("Cancel")})}),a.jsx("div",{className:"editor-post-publish-panel__header-publish-button",children:a.jsx(pye,{onSubmit:this.onSubmit,forceIsDirty:t})})]})}),a.jsxs("div",{className:"editor-post-publish-panel__content",children:[v&&a.jsx(tGt,{children:p&&a.jsx(p,{})}),M&&a.jsx(rGt,{focusOnMount:!0,children:d&&a.jsx(d,{})}),i&&a.jsx(Xn,{})]}),a.jsx("div",{className:"editor-post-publish-panel__footer",children:a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Always show pre-publish checks."),checked:r,onChange:u})})]})}}const iGt=Co([Ul(e=>{var t;const{getPostType:n}=e(Me),{getCurrentPost:o,getCurrentPostId:r,getEditedPostAttribute:s,isCurrentPostPublished:i,isCurrentPostScheduled:c,isEditedPostBeingScheduled:l,isEditedPostDirty:u,isAutosavingPost:d,isSavingPost:p,isSavingNonPostEntityChanges:f}=e(_e),{isPublishSidebarEnabled:b}=e(_e),h=n(s("type"));return{hasPublishAction:(t=o()._links?.["wp:action-publish"])!==null&&t!==void 0?t:!1,isPostTypeViewable:h?.viewable,isBeingScheduled:l(),isDirty:u(),isPublished:i(),isPublishSidebarEnabled:b(),isSaving:p()&&!d(),isSavingNonPostEntityChanges:f(),isScheduled:c(),currentPostId:r()}}),Ff((e,{isPublishSidebarEnabled:t})=>{const{disablePublishSidebar:n,enablePublishSidebar:o}=e(_e);return{onTogglePublishSidebar:()=>{t?n():o()}}}),omt,emt])(sGt);function aGt({children:e}){const{hasStickyAction:t,postType:n}=G(o=>{var r;return{hasStickyAction:(r=o(_e).getCurrentPost()._links?.["wp:action-sticky"])!==null&&r!==void 0?r:!1,postType:o(_e).getCurrentPostType()}},[]);return n!=="post"||!t?null:e}function cGt(){const e=G(n=>{var o;return(o=n(_e).getEditedPostAttribute("sticky"))!==null&&o!==void 0?o:!1},[]),{editPost:t}=Oe(_e);return a.jsx(aGt,{children:a.jsx(K0,{className:"editor-post-sticky__checkbox-control",label:m("Sticky"),help:m("Pin this post to the top of the blog"),checked:e,onChange:()=>t({sticky:!e}),__nextHasNoMarginBottom:!0})})}const wv={"auto-draft":{label:m("Draft"),icon:B8},draft:{label:m("Draft"),icon:B8},pending:{label:m("Pending"),icon:Ode},private:{label:m("Private"),icon:gde},future:{label:m("Scheduled"),icon:Pde},publish:{label:m("Published"),icon:Iw}},vye=[{label:m("Draft"),value:"draft",description:m("Not ready to publish.")},{label:m("Pending"),value:"pending",description:m("Waiting for review before publishing.")},{label:m("Private"),value:"private",description:m("Only visible to site admins and editors.")},{label:m("Scheduled"),value:"future",description:m("Publish automatically on a chosen date.")},{label:m("Published"),value:"publish",description:m("Visible to everyone.")}],lGt=[L0,Di,$l,Wf];function xye(){const{status:e,date:t,password:n,postId:o,postType:r,canEdit:s}=G(z=>{var A;const{getEditedPostAttribute:_,getCurrentPostId:v,getCurrentPostType:M,getCurrentPost:y}=z(_e);return{status:_("status"),date:_("date"),password:_("password"),postId:v(),postType:M(),canEdit:(A=y()._links?.["wp:action-publish"])!==null&&A!==void 0?A:!1}},[]),[i,c]=x.useState(!!n),l=vt(xye,"editor-change-status__password-input"),{editEntityRecord:u}=Oe(Me),[d,p]=x.useState(null),f=x.useMemo(()=>({anchor:d,"aria-label":m("Status & visibility"),headerTitle:m("Status & visibility"),placement:"left-start",offset:36,shift:!0}),[d]);if(lGt.includes(r))return null;const b=({status:z=e,password:A=n,date:_=t})=>{u("postType",r,o,{status:z,date:_,password:A})},h=z=>{c(z),z||b({password:""})},g=z=>{let A=t,_=n;e==="future"&&new Date(t)>new Date&&(A=null),z==="private"&&n&&(_=""),b({status:z,date:A,password:_})};return a.jsx(xs,{label:m("Status"),ref:p,children:s?a.jsx(so,{className:"editor-post-status",contentClassName:"editor-change-status__content",popoverProps:f,focusOnMount:!0,renderToggle:({onToggle:z,isOpen:A})=>a.jsx(Ce,{className:"editor-post-status__toggle",variant:"tertiary",size:"compact",onClick:z,icon:wv[e]?.icon,"aria-label":xe(m("Change status: %s"),wv[e]?.label),"aria-expanded":A,children:wv[e]?.label}),renderContent:({onClose:z})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Status & visibility"),onClose:z}),a.jsx("form",{children:a.jsxs(dt,{spacing:4,children:[a.jsx(sb,{className:"editor-change-status__options",hideLabelFromVision:!0,label:m("Status"),options:vye,onChange:g,selected:e==="auto-draft"?"draft":e}),e==="future"&&a.jsx("div",{className:"editor-change-status__publish-date-wrapper",children:a.jsx(hye,{showPopoverHeaderActions:!1,isCompact:!0})}),e!=="private"&&a.jsxs(dt,{as:"fieldset",spacing:4,className:"editor-change-status__password-fieldset",children:[a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Password protected"),help:m("Only visible to those who know the password"),checked:i,onChange:h}),i&&a.jsx("div",{className:"editor-change-status__password-input",children:a.jsx(dn,{label:m("Password"),onChange:A=>b({password:A}),value:n,placeholder:m("Use a secure password"),type:"text",id:l,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,maxLength:255})})]}),a.jsx(cGt,{})]})})]})}):a.jsx("div",{className:"editor-post-status is-read-only",children:wv[e]?.label})})}function uGt({forceIsDirty:e}){const[t,n]=x.useState(!1),o=Yn("small"),{isAutosaving:r,isDirty:s,isNew:i,isPublished:c,isSaveable:l,isSaving:u,isScheduled:d,hasPublishAction:p,showIconLabels:f,postStatus:b,postStatusHasChanged:h}=G(R=>{var T;const{isEditedPostNew:E,isCurrentPostPublished:B,isCurrentPostScheduled:N,isEditedPostDirty:j,isSavingPost:I,isEditedPostSaveable:P,getCurrentPost:$,isAutosavingPost:F,getEditedPostAttribute:X,getPostEdits:Z}=R(_e),{get:V}=R(ht);return{isAutosaving:F(),isDirty:e||j(),isNew:E(),isPublished:B(),isSaving:I(),isSaveable:P(),isScheduled:N(),hasPublishAction:(T=$()?._links?.["wp:action-publish"])!==null&&T!==void 0?T:!1,showIconLabels:V("core","showIconLabels"),postStatus:X("status"),postStatusHasChanged:!!Z()?.status}},[e]),g=b==="pending",{savePost:z}=Oe(_e),A=Fr(u);if(x.useEffect(()=>{let R;return A&&!u&&(n(!0),R=setTimeout(()=>{n(!1)},1e3)),()=>clearTimeout(R)},[u]),!p&&g)return null;const _=!["pending","draft","auto-draft"].includes(b)&&vye.map(({value:R})=>R).includes(b);if(c||d||_||h&&["pending","draft"].includes(b))return null;const v=m(g?"Save as pending":"Save draft"),M=m("Save"),y=t||!i&&!s,k=u||y,S=u||y||!l;let C;return u?C=m(r?"Autosaving":"Saving"):y?C=m("Saved"):o?C=v:f&&(C=M),a.jsxs(Ce,{className:l||u?oe({"editor-post-save-draft":!k,"editor-post-saved-state":k,"is-saving":u,"is-autosaving":r,"is-saved":y,[Mle({type:"loading"})]:u}):void 0,onClick:S?void 0:()=>z(),shortcut:S?void 0:j1.primary("s"),variant:"tertiary",size:"compact",icon:o?void 0:AZe,label:C||v,"aria-disabled":S,children:[k&&a.jsx(wn,{icon:y?M0:vZe}),C]})}function dGt({children:e}){return G(n=>{var o;return(o=n(_e).getCurrentPost()._links?.["wp:action-publish"])!==null&&o!==void 0?o:!1},[])?e:null}const pGt=[L0,Di,$l,Wf];function fGt(){const[e,t]=x.useState(null),n=G(i=>i(_e).getCurrentPostType(),[]),o=x.useMemo(()=>({anchor:e,"aria-label":m("Change publish date"),placement:"left-start",offset:36,shift:!0}),[e]),r=cN(),s=cN({full:!0});return pGt.includes(n)?null:a.jsx(dGt,{children:a.jsx(xs,{label:m("Publish"),ref:t,children:a.jsx(so,{popoverProps:o,focusOnMount:!0,className:"editor-post-schedule__panel-dropdown",contentClassName:"editor-post-schedule__dialog",renderToggle:({onToggle:i,isOpen:c})=>a.jsx(Ce,{size:"compact",className:"editor-post-schedule__dialog-toggle",variant:"tertiary",tooltipPosition:"middle left",onClick:i,"aria-label":xe(m("Change date: %s"),r),label:s,showTooltip:r!==s,"aria-expanded":c,children:r}),renderContent:({onClose:i})=>a.jsx(bye,{onClose:i})})})})}function bGt(){const{syncStatus:e,postType:t}=G(n=>{const{getEditedPostAttribute:o}=n(_e);return{syncStatus:o("meta")?.wp_pattern_sync_status==="unsynced"?"unsynced":o("wp_pattern_sync_status"),postType:o("type")}});return t!=="wp_block"?null:a.jsx(xs,{label:m("Sync status"),children:a.jsx("div",{className:"editor-post-sync-status__value",children:We(e==="unsynced"?"Not synced":"Synced","pattern (singular)")})})}const hGt=e=>e;function wye({taxonomyWrapper:e=hGt}){const{postType:t,taxonomies:n}=G(r=>({postType:r(_e).getCurrentPostType(),taxonomies:r(Me).getTaxonomies({per_page:-1})}),[]);return(n??[]).filter(r=>r.types.includes(t)&&r.visibility?.show_ui).map(r=>{const s=r.hierarchical?yye:Oye,i={slug:r.slug,...r.hierarchical?{}:{__nextHasNoMarginBottom:!0}};return a.jsx(x.Fragment,{children:e(a.jsx(s,{...i}),r)},`taxonomy-${r.slug}`)})}function mGt({children:e}){return G(n=>{const o=n(_e).getCurrentPostType();return n(Me).getTaxonomies({per_page:-1})?.some(s=>s.types.includes(o))},[])?e:null}function gGt({taxonomy:e,children:t}){const n=e?.slug,o=n?`taxonomy-panel-${n}`:"",{isEnabled:r,isOpened:s}=G(l=>{const{isEditorPanelEnabled:u,isEditorPanelOpened:d}=l(_e);return{isEnabled:n?u(o):!1,isOpened:n?d(o):!1}},[o,n]),{toggleEditorPanelOpened:i}=Oe(_e);if(!r)return null;const c=e?.labels?.menu_name;return c?a.jsx(Qt,{title:c,opened:s,onToggle:()=>i(o),children:t}):null}function MGt(){return a.jsx(mGt,{children:a.jsx(wye,{taxonomyWrapper:(e,t)=>a.jsx(gGt,{taxonomy:t,children:e})})})}function XI(){const e=vt(XI),{content:t,blocks:n,type:o,id:r}=G(c=>{const{getEditedEntityRecord:l}=c(Me),{getCurrentPostType:u,getCurrentPostId:d}=c(_e),p=u(),f=d(),b=l("postType",p,f);return{content:b?.content,blocks:b?.blocks,type:p,id:f}},[]),{editEntityRecord:s}=Oe(Me),i=x.useMemo(()=>t instanceof Function?t({blocks:n}):n?Jd(n):t,[t,n]);return a.jsxs(a.Fragment,{children:[a.jsx(qn,{as:"label",htmlFor:`post-content-${e}`,children:m("Type text or HTML")}),a.jsx(m7,{autoComplete:"off",dir:"auto",value:i,onChange:c=>{s("postType",o,r,{content:c.target.value,blocks:void 0,selection:void 0})},className:"editor-post-text-editor",id:`post-content-${e}`,placeholder:m("Start writing with text or HTML")})]})}const _ye="wp-block wp-block-post-title block-editor-block-list__block editor-post-title editor-post-title__input rich-text",kye=/[\r\n]+/g;function Sye(e){const t=x.useRef(),{isCleanNewPost:n}=G(o=>{const{isCleanNewPost:r}=o(_e);return{isCleanNewPost:r()}},[]);return x.useImperativeHandle(e,()=>({focus:()=>{t?.current?.focus()}})),x.useEffect(()=>{if(!t.current)return;const{defaultView:o}=t.current.ownerDocument,{name:r,parent:s}=o,i=r==="editor-canvas"?s.document:o.document,{activeElement:c,body:l}=i;n&&(!c||l===c)&&t.current.focus()},[n]),{ref:t}}function Cye(){const{editPost:e}=Oe(_e),{title:t}=G(o=>{const{getEditedPostAttribute:r}=o(_e);return{title:r("title")}},[]);function n(o){e({title:o})}return{title:t,setTitle:n}}const zGt=x.forwardRef((e,t)=>{const{placeholder:n}=G(C=>{const{getSettings:R}=C(Q),{titlePlaceholder:T}=R();return{placeholder:T}},[]),[o,r]=x.useState(!1),{ref:s}=Sye(t),{title:i,setTitle:c}=Cye(),[l,u]=x.useState({}),{clearSelectedBlock:d,insertBlocks:p,insertDefaultBlock:f}=Oe(Q),b=Lt(n)||m("Add title"),{value:h,onChange:g,ref:z}=o1e({value:i,onChange(C){c(C.replace(kye," "))},placeholder:b,selectionStart:l.start,selectionEnd:l.end,onSelectionChange(C,R){u(T=>{const{start:E,end:B}=T;return E===C&&B===R?T:{start:C,end:R}})},__unstableDisableFormats:!1});function A(C){p(C,0)}function _(){r(!0),d()}function v(){r(!1),u({})}function M(){f(void 0,void 0,0)}function y(C){C.keyCode===Gr&&(C.preventDefault(),M())}function k(C){const R=C.clipboardData;let T="",E="";try{T=R.getData("text/plain"),E=R.getData("text/html")}catch{return}window.console.log(`Received HTML: `,E),window.console.log(`Received plain text: -`,T);const B=Xh({HTML:E,plainText:T});if(C.preventDefault(),!!B.length)if(typeof B!="string"){const[N]=B;if(!i&&(N.name==="core/heading"||N.name==="core/paragraph")){const j=v1(N.attributes.content);c(j),A(B.slice(1))}else A(B)}else{const N=v1(B);g(E0(h,eo({html:N})))}}const S=oe(kye,{"is-selected":o});return a.jsx("h1",{ref:xn([z,s]),contentEditable:!0,className:S,"aria-label":b,role:"textbox","aria-multiline":"true",onFocus:_,onBlur:v,onKeyDown:y,onPaste:k})}),Rye=x.forwardRef((e,t)=>a.jsx(Sc,{supportKeys:"title",children:a.jsx(zGt,{ref:t})}));function OGt(e,t){const{placeholder:n}=G(b=>{const{getSettings:h}=b(Q),{titlePlaceholder:g}=h();return{placeholder:g}},[]),[o,r]=x.useState(!1),{title:s,setTitle:i}=qye(),{ref:c}=Cye(t);function l(b){i(b.replace(Sye," "))}function u(){r(!0)}function d(){r(!1)}const p=oe(kye,{"is-selected":o,"is-raw-text":!0}),f=Lt(n)||m("Add title");return a.jsx(Pi,{ref:c,value:s,onChange:l,onFocus:u,onBlur:d,label:n,className:p,placeholder:f,hideLabelFromVision:!0,autoComplete:"off",dir:"auto",rows:1,__nextHasNoMarginBottom:!0})}const Tye=x.forwardRef(OGt);function yGt({children:e}){const{canTrashPost:t}=G(n=>{const{isEditedPostNew:o,getCurrentPostId:r,getCurrentPostType:s}=n(_e),{canUser:i}=n(Me),c=s(),l=r(),u=o(),d=l?i("delete",{kind:"postType",name:c,id:l}):!1;return{canTrashPost:(!u||l)&&d&&!ujt.includes(c)}},[]);return t?e:null}function AGt({onActionPerformed:e}){const t=Fn(),{isNew:n,isDeleting:o,postId:r,title:s}=G(d=>{const p=d(_e);return{isNew:p.isEditedPostNew(),isDeleting:p.isDeletingPost(),postId:p.getCurrentPostId(),title:p.getCurrentPostAttribute("title")}},[]),{trashPost:i}=Oe(_e),[c,l]=x.useState(!1);if(n||!r)return null;const u=async()=>{l(!1),await i();const d=await t.resolveSelect(_e).getCurrentPost();e?.("move-to-trash",[d])};return a.jsxs(yGt,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"editor-post-trash",isDestructive:!0,variant:"secondary",isBusy:o,"aria-disabled":o,onClick:o?void 0:()=>l(!0),children:m("Move to trash")}),a.jsx(wf,{isOpen:c,onConfirm:u,onCancel:()=>l(!1),confirmButtonText:m("Move to trash"),size:"small",children:xe(m('Are you sure you want to move "%s" to the trash?'),s)})]})}function Eye({onClose:e}){const{isEditable:t,postSlug:n,postLink:o,permalinkPrefix:r,permalinkSuffix:s,permalink:i}=G(b=>{var h;const g=b(_e).getCurrentPost(),z=b(_e).getCurrentPostType(),A=b(Me).getPostType(z),_=b(_e).getPermalinkParts(),v=(h=g?._links?.["wp:action-publish"])!==null&&h!==void 0?h:!1;return{isEditable:b(_e).isPermalinkEditable()&&v,postSlug:Y2(b(_e).getEditedPostSlug()),viewPostLabel:A?.labels.view_item,postLink:g.link,permalinkPrefix:_?.prefix,permalinkSuffix:_?.suffix,permalink:Y2(b(_e).getPermalink())}},[]),{editPost:c}=Oe(_e),{createNotice:l}=Oe(mt),[u,d]=x.useState(!1),p=Ul(i,()=>{l("info",m("Copied Permalink to clipboard."),{isDismissible:!0,type:"snackbar"})}),f="editor-post-url__slug-description-"+vt(Eye);return a.jsxs("div",{className:"editor-post-url",children:[a.jsx(Qs,{title:m("Slug"),onClose:e}),a.jsxs(dt,{spacing:3,children:[t&&a.jsx("p",{className:"editor-post-url__intro",children:cr(m("<span>Customize the last part of the Permalink.</span> <a>Learn more.</a>"),{span:a.jsx("span",{id:f}),a:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#permalink")})})}),a.jsxs("div",{children:[t&&a.jsxs(a.Fragment,{children:[a.jsx(N1,{__next40pxDefaultSize:!0,prefix:a.jsx(Ld,{children:"/"}),suffix:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{icon:WP,ref:p,size:"small",label:"Copy"})}),label:m("Slug"),hideLabelFromVision:!0,value:u?"":n,autoComplete:"off",spellCheck:"false",type:"text",className:"editor-post-url__input",onChange:b=>{if(c({slug:b}),!b){u||d(!0);return}u&&d(!1)},onBlur:b=>{c({slug:_5(b.target.value)}),u&&d(!1)},"aria-describedby":f}),a.jsxs("p",{className:"editor-post-url__permalink",children:[a.jsx("span",{className:"editor-post-url__permalink-visual-label",children:m("Permalink:")}),a.jsxs(hr,{className:"editor-post-url__link",href:o,target:"_blank",children:[a.jsx("span",{className:"editor-post-url__link-prefix",children:r}),a.jsx("span",{className:"editor-post-url__link-slug",children:n}),a.jsx("span",{className:"editor-post-url__link-suffix",children:s})]})]})]}),!t&&a.jsx(hr,{className:"editor-post-url__link",href:o,target:"_blank",children:o})]})]})]})}function vGt({children:e}){return G(n=>{const o=n(_e).getCurrentPostType();return!(!n(Me).getPostType(o)?.viewable||!n(_e).getCurrentPost().link||!n(_e).getPermalinkParts())},[])?e:null}function xGt(){const{isFrontPage:e}=G(s=>{const{getCurrentPostId:i}=s(_e),{getEditedEntityRecord:c,canUser:l}=s(Me),u=l("read",{kind:"root",name:"site"})?c("root","site"):void 0,d=i();return{isFrontPage:u?.page_on_front===d}},[]),[t,n]=x.useState(null),o=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]),r=m(e?"Link":"Slug");return a.jsx(vGt,{children:a.jsxs(xs,{label:r,ref:n,children:[!e&&a.jsx(so,{popoverProps:o,className:"editor-post-url__panel-dropdown",contentClassName:"editor-post-url__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:s,onToggle:i})=>a.jsx(wGt,{isOpen:s,onClick:i}),renderContent:({onClose:s})=>a.jsx(Eye,{onClose:s})}),e&&a.jsx(_Gt,{})]})})}function wGt({isOpen:e,onClick:t}){const{slug:n}=G(r=>({slug:r(_e).getEditedPostSlug()}),[]),o=Y2(n);return a.jsx(Ce,{size:"compact",className:"editor-post-url__panel-toggle",variant:"tertiary","aria-expanded":e,"aria-label":xe(m("Change link: %s"),o),onClick:t,children:a.jsx(a.Fragment,{children:o})})}function _Gt(){const{postLink:e}=G(t=>{const{getCurrentPost:n}=t(_e);return{postLink:n()?.link}},[]);return a.jsx(hr,{className:"editor-post-url__front-page-link",href:e,target:"_blank",children:e})}const kGt={HTMLRegExp:/<\/?[a-z][^>]*?>/gi,HTMLcommentRegExp:/<!--[\s\S]*?-->/g,spaceRegExp:/ | /gi,HTMLEntityRegExp:/&\S+?;/g,connectorRegExp:/--|\u2014/g,removeRegExp:new RegExp(["[","!-/:-@[-`{-~","-¿×÷"," -⯿","⸀-","]"].join(""),"g"),astralRegExp:/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,wordsRegExp:/\S\s+/g,characters_excluding_spacesRegExp:/\S/g,characters_including_spacesRegExp:/[^\f\n\r\t\v\u00AD\u2028\u2029]/g,l10n:{type:"words"}};function Wye(e,t){return t.replace(e.HTMLRegExp,` -`)}function SGt(e,t){return t.replace(e.astralRegExp,"a")}function CGt(e,t){return t.replace(e.HTMLEntityRegExp,"")}function qGt(e,t){return t.replace(e.connectorRegExp," ")}function RGt(e,t){return t.replace(e.removeRegExp,"")}function Nye(e,t){return t.replace(e.HTMLcommentRegExp,"")}function Bye(e,t){return e.shortcodesRegExp?t.replace(e.shortcodesRegExp,` -`):t}function Lye(e,t){return t.replace(e.spaceRegExp," ")}function TGt(e,t){return t.replace(e.HTMLEntityRegExp,"a")}function EGt(e,t){var n;const o=Object.assign({},kGt,t);return o.shortcodes=(n=o.l10n?.shortcodes)!==null&&n!==void 0?n:[],o.shortcodes&&o.shortcodes.length&&(o.shortcodesRegExp=new RegExp("\\[\\/?(?:"+o.shortcodes.join("|")+")[^\\]]*?\\]","g")),o.type=e,o.type!=="characters_excluding_spaces"&&o.type!=="characters_including_spaces"&&(o.type="words"),o}function WGt(e,t,n){var o;return e=[Wye.bind(null,n),Nye.bind(null,n),Bye.bind(null,n),Lye.bind(null,n),CGt.bind(null,n),qGt.bind(null,n),RGt.bind(null,n)].reduce((r,s)=>s(r),e),e=e+` -`,(o=e.match(t)?.length)!==null&&o!==void 0?o:0}function One(e,t,n){var o;return e=[Wye.bind(null,n),Nye.bind(null,n),Bye.bind(null,n),SGt.bind(null,n),Lye.bind(null,n),TGt.bind(null,n)].reduce((r,s)=>s(r),e),e=e+` -`,(o=e.match(t)?.length)!==null&&o!==void 0?o:0}function DO(e,t,n){const o=EGt(t,n);let r;switch(o.type){case"words":return r=o.wordsRegExp,WGt(e,r,o);case"characters_including_spaces":return r=o.characters_including_spacesRegExp,One(e,r,o);case"characters_excluding_spaces":return r=o.characters_excluding_spacesRegExp,One(e,r,o);default:return 0}}function NGt(){const e=G(n=>n(_e).getEditedPostAttribute("content"),[]),t=We("words","Word count type. Do not translate!");return a.jsx("span",{className:"word-count",children:DO(e,t)})}const BGt=189;function LGt(){const e=G(r=>r(_e).getEditedPostAttribute("content"),[]),t=We("words","Word count type. Do not translate!"),n=Math.round(DO(e,t)/BGt),o=n===0?cr(m("<span>< 1</span> minute"),{span:a.jsx("span",{})}):cr(xe(Dn("<span>%s</span> minute","<span>%s</span> minutes",n),n),{span:a.jsx("span",{})});return a.jsx("span",{className:"time-to-read",children:o})}function PGt(){const e=G(t=>t(_e).getEditedPostAttribute("content"),[]);return DO(e,"characters_including_spaces")}const jGt={};function IGt(e,t=null,n={}){return tn(`/wp/v2/block-renderer/${e}`,{context:"edit",...t!==null?{attributes:t}:{},...n})}function DGt(e){const{backgroundColor:t,borderColor:n,fontFamily:o,fontSize:r,gradient:s,textColor:i,className:c,...l}=e,{border:u,color:d,elements:p,spacing:f,typography:b,...h}=e?.style||jGt;return{...l,style:h}}function FGt({className:e}){return a.jsx(vo,{className:e,children:m("Block rendered as empty.")})}function $Gt({response:e,className:t}){const n=xe(m("Error loading block: %s"),e.errorMsg);return a.jsx(vo,{className:t,children:n})}function VGt({children:e,showLoader:t}){return a.jsxs("div",{style:{position:"relative"},children:[t&&a.jsx("div",{style:{position:"absolute",top:"50%",left:"50%",marginTop:"-9px",marginLeft:"-9px"},children:a.jsx(Xn,{})}),a.jsx("div",{style:{opacity:t?"0.3":1},children:e})]})}function HGt(e){const{attributes:t,block:n,className:o,httpMethod:r="GET",urlQueryArgs:s,skipBlockSupportAttributes:i=!1,EmptyResponsePlaceholder:c=FGt,ErrorResponsePlaceholder:l=$Gt,LoadingResponsePlaceholder:u=VGt}=e,d=x.useRef(!1),[p,f]=x.useState(!1),b=x.useRef(),[h,g]=x.useState(null),z=Fr(e),[A,_]=x.useState(!1);function v(){var C,R;if(!d.current)return;_(!0);const T=setTimeout(()=>{f(!0)},1e3);let E=t&&BB(n,t);i&&(E=DGt(E));const B=r==="POST",N=B?null:(C=E)!==null&&C!==void 0?C:null,j=IGt(n,N,s),I=B?{attributes:(R=E)!==null&&R!==void 0?R:null}:null,P=b.current=Tt({path:j,data:I,method:B?"POST":"GET"}).then($=>{d.current&&P===b.current&&$&&g($.rendered)}).catch($=>{d.current&&P===b.current&&g({error:!0,errorMsg:$.message})}).finally(()=>{d.current&&P===b.current&&(_(!1),f(!1),clearTimeout(T))});return P}const M=C1(v,500);x.useEffect(()=>(d.current=!0,()=>{d.current=!1}),[]),x.useEffect(()=>{z===void 0?v():N0(z,e)||M()});const y=!!h,k=h==="",S=h?.error;return A?a.jsx(u,{...e,showLoader:p,children:y&&a.jsx(i0,{className:o,children:h})}):k||!y?a.jsx(c,{...e}):S?a.jsx(l,{response:h,...e}):a.jsx(i0,{className:o,children:h})}const yne={},FO=Xl(e=>{const t=e("core/editor");if(t){const n=t.getCurrentPostId();if(n&&typeof n=="number")return{currentPostId:n}}return yne})(({urlQueryArgs:e=yne,currentPostId:t,...n})=>{const o=x.useMemo(()=>t?{post_id:t,...e}:e,[t,e]);return a.jsx(HGt,{urlQueryArgs:o,...n})});function UGt(e=[]){return e.push({...DHt}),e}Bn("editor.Autocomplete.completers","editor/autocompleters/set-default-completers",UGt);Bn("editor.MediaUpload","core/editor/components/media-upload",()=>AOe);const{PatternOverridesControls:XGt,ResetOverridesControl:GGt,PatternOverridesBlockControls:KGt,PATTERN_TYPES:YGt,PARTIAL_SYNCING_SUPPORTED_BLOCKS:ZGt,PATTERN_SYNC_TYPES:Ane}=St(Hi),QGt=Or(e=>t=>{const n=!!ZGt[t.name];return a.jsxs(a.Fragment,{children:[a.jsx(e,{...t},"edit"),t.isSelected&&n&&a.jsx(JGt,{...t}),n&&a.jsx(KGt,{})]})},"withPatternOverrideControls");function JGt(e){const t=Jr(),{hasPatternOverridesSource:n,isEditingSyncedPattern:o}=G(l=>{const{getCurrentPostType:u,getEditedPostAttribute:d}=l(_e);return{hasPatternOverridesSource:!!xl("core/pattern-overrides"),isEditingSyncedPattern:u()===YGt.user&&d("meta")?.wp_pattern_sync_status!==Ane.unsynced&&d("wp_pattern_sync_status")!==Ane.unsynced}},[]),r=e.attributes.metadata?.bindings,s=!!r&&Object.values(r).some(l=>l.source==="core/pattern-overrides"),i=o&&t==="default",c=!o&&!!e.attributes.metadata?.name&&t!=="disabled"&&s;return n?a.jsxs(a.Fragment,{children:[i&&a.jsx(XGt,{...e}),c&&a.jsx(GGt,{...e})]}):null}Bn("editor.BlockEdit","core/editor/with-pattern-override-controls",QGt);const Pye=Qn(Symbol("EditCanvasContainerSlot")),KI="__experimentalMainDashboardButton",eKt=()=>{const e=H0(KI);return!!(e&&e.length)},{Fill:tKt,Slot:nKt}=Qn(KI),YI=tKt,oKt=()=>{const e=H0(KI);return a.jsx(nKt,{bubblesVirtually:!0,fillProps:{length:e?e.length:0}})};YI.Slot=oKt;const rKt="edit-post/collab-history-sidebar",vne="edit-post/collab-sidebar";function ZI({avatar:e,name:t,date:n}){const o=Sa(),[r=o.formats.time]=Ao("root","site","time_format"),{currentUserAvatar:s,currentUserName:i}=G(l=>{var u;const d=l(Me).getCurrentUser(),{getSettings:p}=l(Q),{__experimentalDiscussionSettings:f}=p(),b=f?.avatarURL;return{currentUserAvatar:(u=d?.avatar_urls[48])!==null&&u!==void 0?u:b,currentUserName:d?.name}},[]),c=new Date;return a.jsxs(a.Fragment,{children:[a.jsx("img",{src:e??s,className:"editor-collab-sidebar-panel__user-avatar",alt:m("User avatar"),width:32,height:32}),a.jsxs(dt,{spacing:"0",children:[a.jsx("span",{className:"editor-collab-sidebar-panel__user-name",children:t??i}),a.jsx("time",{dateTime:r0("c",n??c),className:"editor-collab-sidebar-panel__user-time",children:r0(r,n??c)})]})]})}function sKt(e){return e.trim()}function iKt(e){const t=n=>n.reduce((o,r)=>{if(r.attributes&&r.attributes.blockCommentId&&!o.includes(r.attributes.blockCommentId)&&o.push(r.attributes.blockCommentId),r.innerBlocks&&r.innerBlocks.length>0){const s=t(r.innerBlocks);o.push(...s)}return o},[]);return t(e)}function QI({onSubmit:e,onCancel:t,thread:n,submitButtonText:o}){var r;const[s,i]=x.useState((r=n?.content?.raw)!==null&&r!==void 0?r:"");return a.jsxs(a.Fragment,{children:[a.jsx(Pi,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:s??"",onChange:i}),a.jsxs(Ot,{alignment:"left",spacing:"3",justify:"flex-start",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,accessibleWhenDisabled:!0,variant:"primary",onClick:()=>{e(s),i("")},disabled:sKt(s).length===0,text:o}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,text:We("Cancel","Cancel comment button")})]})]})}function aKt({threads:e,onEditComment:t,onAddReply:n,onCommentDelete:o,onCommentResolve:r,showCommentBoard:s,setShowCommentBoard:i}){const{blockCommentId:c}=G(p=>{const{getBlockAttributes:f,getSelectedBlockClientId:b}=p(Q),h=b();return{blockCommentId:h?f(h)?.blockCommentId:null}},[]),[l,u]=x.useState(s&&c?c:null),d=()=>{u(null),i(!1)};return a.jsxs(a.Fragment,{children:[(!Array.isArray(e)||e.length===0)&&a.jsx(dt,{alignment:"left",className:"editor-collab-sidebar-panel__thread",justify:"flex-start",spacing:"3",children:m("No comments available")}),Array.isArray(e)&&e.length>0&&e.map(p=>a.jsx(dt,{className:oe("editor-collab-sidebar-panel__thread",{"editor-collab-sidebar-panel__active-thread":c&&c===p.id,"editor-collab-sidebar-panel__focus-thread":l&&l===p.id}),id:p.id,spacing:"3",onClick:()=>u(p.id),children:a.jsx(cKt,{thread:p,onAddReply:n,onCommentDelete:o,onCommentResolve:r,onEditComment:t,isFocused:l===p.id,clearThreadFocus:d})},p.id))]})}function cKt({thread:e,onEditComment:t,onAddReply:n,onCommentDelete:o,onCommentResolve:r,isFocused:s,clearThreadFocus:i}){return a.jsxs(a.Fragment,{children:[a.jsx(TT,{thread:e,onResolve:r,onEdit:t,onDelete:o,status:e.status}),0<e?.reply?.length&&a.jsxs(a.Fragment,{children:[!s&&a.jsx(dt,{className:"editor-collab-sidebar-panel__show-more-reply",children:xe(We("%s more replies..","Show replies button"),e?.reply?.length)}),s&&e.reply.map(c=>a.jsxs(dt,{className:"editor-collab-sidebar-panel__child-thread",id:c.id,spacing:"2",children:[e.status!=="approved"&&a.jsx(TT,{thread:c,onEdit:t,onDelete:o}),e.status==="approved"&&a.jsx(TT,{thread:c})]},c.id))]}),e.status!=="approved"&&s&&a.jsxs(dt,{className:"editor-collab-sidebar-panel__child-thread",spacing:"2",children:[a.jsx(Ot,{alignment:"left",spacing:"3",justify:"flex-start",children:a.jsx(ZI,{})}),a.jsx(dt,{spacing:"3",className:"editor-collab-sidebar-panel__comment-field",children:a.jsx(QI,{onSubmit:c=>{n(c,e.id)},onCancel:c=>{c.stopPropagation(),i()},submitButtonText:We("Reply","Add reply comment")})})]})]})}const TT=({thread:e,onResolve:t,onEdit:n,onDelete:o,status:r})=>{const[s,i]=x.useState(!1),[c,l]=x.useState(!1),u=()=>{o(e.id),i(!1),l(!1)},d=()=>{t(e.id),i(!1),l(!1)},p=()=>{i(!1),l(!1)},b=[n&&{title:We("Edit","Edit comment"),onClick:()=>{i("edit")}},o&&{title:We("Delete","Delete comment"),onClick:()=>{i("delete"),l(!0)}}].filter(h=>h?.onClick);return a.jsxs(a.Fragment,{children:[a.jsxs(Ot,{alignment:"left",spacing:"3",justify:"flex-start",children:[a.jsx(ZI,{avatar:e?.author_avatar_urls?.[48],name:e?.author_name,date:e?.date}),a.jsxs("span",{className:"editor-collab-sidebar-panel__comment-status",children:[r!=="approved"&&a.jsxs(Ot,{alignment:"right",justify:"flex-end",spacing:"0",children:[e?.parent===0&&t&&a.jsx(Ce,{label:We("Resolve","Mark comment as resolved"),__next40pxDefaultSize:!0,icon:Dw,onClick:()=>{i("resolve"),l(!0)},showTooltip:!0}),0<b.length&&a.jsx(c0,{icon:Wc,label:We("Select an action","Select comment action"),className:"editor-collab-sidebar-panel__comment-dropdown-menu",controls:b})]}),r==="approved"&&a.jsx(B0,{text:m("Resolved"),children:a.jsx(wn,{icon:M0})})]})]}),a.jsx(Ot,{alignment:"left",spacing:"3",justify:"flex-start",className:"editor-collab-sidebar-panel__user-comment",children:a.jsxs(dt,{spacing:"3",className:"editor-collab-sidebar-panel__comment-field",children:[s==="edit"&&a.jsx(QI,{onSubmit:h=>{n(e.id,h),i(!1)},onCancel:()=>p(),thread:e,submitButtonText:We("Update","verb")}),s!=="edit"&&a.jsx(i0,{children:e?.content?.raw})]})}),s==="resolve"&&a.jsx(wf,{isOpen:c,onConfirm:d,onCancel:p,confirmButtonText:"Yes",cancelButtonText:"No",children:m("Are you sure you want to mark this comment as resolved?")}),s==="delete"&&a.jsx(wf,{isOpen:c,onConfirm:u,onCancel:p,confirmButtonText:"Yes",cancelButtonText:"No",children:m("Are you sure you want to delete this comment?")})]})};function lKt({onSubmit:e,showCommentBoard:t,setShowCommentBoard:n}){const{clientId:o,blockCommentId:r}=G(s=>{const{getSelectedBlock:i}=s(Q),c=i();return{clientId:c?.clientId,blockCommentId:c?.attributes?.blockCommentId}});return!t||!o||r!==void 0?null:a.jsxs(dt,{spacing:"3",className:"editor-collab-sidebar-panel__thread editor-collab-sidebar-panel__active-thread editor-collab-sidebar-panel__focus-thread",children:[a.jsx(Ot,{alignment:"left",spacing:"3",children:a.jsx(ZI,{})}),a.jsx(QI,{onSubmit:s=>{e(s)},onCancel:()=>{n(!1)},submitButtonText:We("Comment","Add comment button")})]})}const{CommentIconSlotFill:uKt}=St(Ln),dKt=({onClick:e})=>a.jsx(uKt.Fill,{children:({onClose:t})=>a.jsx(Ct,{icon:U3,onClick:()=>{e(),t()},"aria-haspopup":"dialog",children:We("Comment","Add comment button")})}),{CommentIconToolbarSlotFill:pKt}=St(Ln),fKt=({onClick:e})=>a.jsx(pKt.Fill,{children:a.jsx(Vt,{accessibleWhenDisabled:!0,icon:U3,label:We("Comment","View comment"),onClick:e})}),bKt=e=>(e.attributes.blockCommentId||(e.attributes={...e.attributes,blockCommentId:{type:"number"}}),e);Bn("blocks.registerBlockType","block-comment/modify-core-block-attributes",bKt);function xne({showCommentBoard:e,setShowCommentBoard:t,styles:n,comments:o}){const{createNotice:r}=Oe(mt),{saveEntityRecord:s,deleteEntityRecord:i}=Oe(Me),{getEntityRecord:c}=j0e(Me),{postId:l}=G(z=>{const{getCurrentPostId:A}=z(_e);return{postId:A()}},[]),{getSelectedBlockClientId:u}=G(Q),{updateBlockAttributes:d}=Oe(Q),p=async(z,A)=>{const v={...{post:l,content:z,comment_type:"block_comment",comment_approved:0},...A?{parent:A}:{}},M=await s("root","comment",v);M?(A||d(u(),{blockCommentId:M?.id}),r("snackbar",m(A?"Reply added successfully.":"Comment added successfully."),{type:"snackbar",isDismissible:!0})):h()},f=async z=>{await s("root","comment",{id:z,status:"approved"})?r("snackbar",m("Comment marked as resolved."),{type:"snackbar",isDismissible:!0}):h()},b=async(z,A)=>{await s("root","comment",{id:z,content:A})?r("snackbar",m("Comment edited successfully."),{type:"snackbar",isDismissible:!0}):h()},h=()=>{r("error",m("Something went wrong. Please try publishing the post, or you may have already submitted your comment earlier."),{isDismissible:!0})},g=async z=>{const A=await c("root","comment",z);await i("root","comment",z),A&&!A.parent&&d(u(),{blockCommentId:void 0}),r("snackbar",m("Comment deleted successfully."),{type:"snackbar",isDismissible:!0})};return a.jsxs("div",{className:"editor-collab-sidebar-panel",style:n,children:[a.jsx(lKt,{onSubmit:p,showCommentBoard:e,setShowCommentBoard:t}),a.jsx(aKt,{threads:o,onEditComment:b,onAddReply:p,onCommentDelete:g,onCommentResolve:f,showCommentBoard:e,setShowCommentBoard:t},u())]})}function hKt(){const[e,t]=x.useState(!1),{enableComplementaryArea:n}=Oe(xo),{getActiveComplementaryArea:o}=G(xo),{postId:r,postType:s,postStatus:i,threads:c}=G(z=>{const{getCurrentPostId:A,getCurrentPostType:_}=z(_e),v=A(),M=v&&typeof v=="number"?z(Me).getEntityRecords("root","comment",{post:v,type:"block_comment",status:"any",per_page:100}):null;return{postId:v,postType:_(),postStatus:z(_e).getEditedPostAttribute("status"),threads:M}},[]),{blockCommentId:l}=G(z=>{const{getBlockAttributes:A,getSelectedBlockClientId:_}=z(Q),v=_();return{blockCommentId:v?A(v)?.blockCommentId:null}},[]),u=()=>{t(!0),n("core","edit-post/collab-sidebar")},[d]=Ni("postType",s,{id:r}),{resultComments:p,sortedThreads:f}=x.useMemo(()=>{const z={},A=[],_=(c??[]).filter(S=>S.status!=="trash");if(_.forEach(S=>{z[S.id]={...S,reply:[]}}),_.forEach(S=>{S.parent===0?A.push(z[S.id]):z[S.parent]&&z[S.parent].reply.push(z[S.id])}),A?.length===0)return{resultComments:[],sortedThreads:[]};const v=A.map(S=>({...S,reply:[...S.reply].reverse()})),M=iKt(d),y=new Map(v.map(S=>[S.id,S])),k=M.map(S=>y.get(S)).filter(S=>S!==void 0);return{resultComments:v,sortedThreads:k}},[c,d]),{merged:b}=DI(),h=b?.styles?.color?.background;if(0<p.length){const z=QCe(()=>{o("core")||(n("core",vne),z())})}if(i==="publish")return null;const g=l?fKt:dKt;return a.jsxs(a.Fragment,{children:[a.jsx(g,{onClick:u}),a.jsx(cN,{identifier:rKt,title:m("Comments"),icon:U3,children:a.jsx(xne,{comments:p,showCommentBoard:e,setShowCommentBoard:t})}),a.jsx(cN,{isPinnable:!1,header:!1,identifier:vne,className:"editor-collab-sidebar",headerClassName:"editor-collab-sidebar__header",children:a.jsx(xne,{comments:f,showCommentBoard:e,setShowCommentBoard:t,styles:{backgroundColor:h}})})]})}const{useHasBlockToolbar:mKt}=St(Ln);function gKt({isCollapsed:e,onToggle:t}){const{blockSelectionStart:n}=G(s=>({blockSelectionStart:s(Q).getBlockSelectionStart()}),[]),o=mKt(),r=!!n;return x.useEffect(()=>{n&&t(!1)},[n,t]),o?a.jsxs(a.Fragment,{children:[a.jsx("div",{className:oe("editor-collapsible-block-toolbar",{"is-collapsed":e||!r}),children:a.jsx(pI,{hideDragHandle:!0})}),a.jsx(Io.Slot,{name:"block-toolbar"}),a.jsx(Ce,{className:"editor-collapsible-block-toolbar__toggle",icon:e?Cde:Sde,onClick:()=>{t(!e)},label:m(e?"Show block tools":"Hide block tools"),size:"compact"})]}):null}function MKt({className:e,disableBlockTools:t=!1}){const{setIsInserterOpened:n,setIsListViewOpened:o}=Oe(_e),{isDistractionFree:r,isInserterOpened:s,isListViewOpen:i,listViewShortcut:c,inserterSidebarToggleRef:l,listViewToggleRef:u,showIconLabels:d,showTools:p}=G(M=>{const{get:y}=M(ht),{isListViewOpened:k,getEditorMode:S,getInserterSidebarToggleRef:C,getListViewToggleRef:R,getRenderingMode:T,getCurrentPostType:E}=St(M(_e)),{getShortcutRepresentation:B}=M(ji);return{isInserterOpened:M(_e).isInserterOpened(),isListViewOpen:k(),listViewShortcut:B("core/editor/toggle-list-view"),inserterSidebarToggleRef:C(),listViewToggleRef:R(),showIconLabels:y("core","showIconLabels"),isDistractionFree:y("core","distractionFree"),isVisualMode:S()==="visual",showTools:!!window?.__experimentalEditorWriteMode&&(T()!=="post-only"||E()==="wp_template")}},[]),f=M=>{s&&M.preventDefault()},b=Yn("medium"),h=Yn("wide"),g=m("Document tools"),z=x.useCallback(()=>o(!i),[o,i]),A=x.useCallback(()=>n(!s),[s,n]),_=We("Block Inserter","Generic label for block inserter button"),v=m(s?"Close":"Add");return a.jsx(rI,{className:oe("editor-document-tools","edit-post-header-toolbar",e),"aria-label":g,variant:"unstyled",children:a.jsxs("div",{className:"editor-document-tools__left",children:[!r&&a.jsx(Vt,{ref:l,className:"editor-document-tools__inserter-toggle",variant:"primary",isPressed:s,onMouseDown:f,onClick:A,disabled:t,icon:Fs,label:d?v:_,showTooltip:!d,"aria-expanded":s}),(h||!d)&&a.jsxs(a.Fragment,{children:[p&&b&&a.jsx(bs,{as:WNt,showTooltip:!d,variant:d?"tertiary":void 0,disabled:t,size:"compact"}),a.jsx(bs,{as:nUt,showTooltip:!d,variant:d?"tertiary":void 0,size:"compact"}),a.jsx(bs,{as:eUt,showTooltip:!d,variant:d?"tertiary":void 0,size:"compact"}),!r&&a.jsx(Vt,{className:"editor-document-tools__document-overview-toggle",icon:IP,disabled:t,isPressed:i,label:m("Document Overview"),onClick:z,shortcut:c,showTooltip:!d,variant:d?"tertiary":void 0,"aria-expanded":i,ref:u})]})]})})}function zKt(){const{createNotice:e}=Oe(mt),{getCurrentPostId:t,getCurrentPostType:n}=G(_e),{getEditedEntityRecord:o}=G(Me);function r(){const c=o("postType",n(),t());if(!c)return"";if(typeof c.content=="function")return c.content(c);if(c.blocks)return Jd(c.blocks);if(c.content)return c.content}function s(){e("info",m("All content copied."),{isDismissible:!0,type:"snackbar"})}const i=Ul(r,s);return a.jsx(Ct,{ref:i,children:m("Copy all blocks")})}const OKt=[{value:"visual",label:m("Visual editor")},{value:"text",label:m("Code editor")}];function yKt(){const{shortcut:e,isRichEditingEnabled:t,isCodeEditingEnabled:n,mode:o}=G(c=>({shortcut:c(ji).getShortcutRepresentation("core/editor/toggle-mode"),isRichEditingEnabled:c(_e).getEditorSettings().richEditingEnabled,isCodeEditingEnabled:c(_e).getEditorSettings().codeEditingEnabled,mode:c(_e).getEditorMode()}),[]),{switchEditorMode:r}=Oe(_e);let s=o;!t&&o==="visual"&&(s="text"),!n&&o==="text"&&(s="visual");const i=OKt.map(c=>(!n&&c.value==="text"&&(c={...c,disabled:!0}),!t&&c.value==="visual"&&(c={...c,disabled:!0,info:m("You can enable the visual editor in your profile settings.")}),c.value!==s&&!c.disabled?{...c,shortcut:e}:c));return a.jsx(Cn,{label:m("Editor"),children:a.jsx(kf,{choices:i,value:s,onSelect:r})})}const{Fill:JI,Slot:AKt}=Qn("ToolsMoreMenuGroup");JI.Slot=({fillProps:e})=>a.jsx(AKt,{fillProps:e});const{Fill:e9,Slot:vKt}=Qn(Symbol("ViewMoreMenuGroup"));e9.Slot=({fillProps:e})=>a.jsx(vKt,{fillProps:e});function xKt(){const{openModal:e}=Oe(xo),{set:t}=Oe(ht),{toggleDistractionFree:n}=Oe(_e),o=G(s=>s(ht).get("core","showIconLabels"),[]),r=()=>{t("core","distractionFree",!1)};return a.jsx(a.Fragment,{children:a.jsx(c0,{icon:Wc,label:m("Options"),popoverProps:{placement:"bottom-end",className:"more-menu-dropdown__content"},toggleProps:{showTooltip:!o,...o&&{variant:"tertiary"},tooltipPosition:"bottom",size:"compact"},children:({onClose:s})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{label:We("View","noun"),children:[a.jsx(rq,{scope:"core",name:"fixedToolbar",onToggle:r,label:m("Top toolbar"),info:m("Access all block and document tools in a single place"),messageActivated:m("Top toolbar activated."),messageDeactivated:m("Top toolbar deactivated.")}),a.jsx(rq,{scope:"core",name:"distractionFree",label:m("Distraction free"),info:m("Write with calmness"),handleToggling:!1,onToggle:()=>n({createNotice:!1}),messageActivated:m("Distraction free mode activated."),messageDeactivated:m("Distraction free mode deactivated."),shortcut:j1.primaryShift("\\")}),a.jsx(rq,{scope:"core",name:"focusMode",label:m("Spotlight mode"),info:m("Focus on one block at a time"),messageActivated:m("Spotlight mode activated."),messageDeactivated:m("Spotlight mode deactivated.")}),a.jsx(e9.Slot,{fillProps:{onClose:s}})]}),a.jsx(yKt,{}),a.jsx(IO.Slot,{name:"core/plugin-more-menu",label:m("Plugins"),fillProps:{onClick:s}}),a.jsxs(Cn,{label:m("Tools"),children:[a.jsx(Ct,{onClick:()=>e("editor/keyboard-shortcut-help"),shortcut:j1.access("h"),children:m("Keyboard shortcuts")}),a.jsx(zKt,{}),a.jsxs(Ct,{icon:vf,href:m("https://wordpress.org/documentation/article/wordpress-block-editor/"),target:"_blank",rel:"noopener noreferrer",children:[m("Help"),a.jsx(qn,{as:"span",children:m("(opens in a new tab)")})]}),a.jsx(JI.Slot,{fillProps:{onClose:s}})]}),a.jsx(Cn,{children:a.jsx(Ct,{onClick:()=>e("editor/preferences"),children:m("Preferences")})})]})})})}const wne="toggle",_ne="button";function wKt({forceIsDirty:e,setEntitiesSavedStatesCallback:t}){let n;const o=Yn("medium","<"),{togglePublishSidebar:r}=Oe(_e),{hasPublishAction:s,isBeingScheduled:i,isPending:c,isPublished:l,isPublishSidebarEnabled:u,isPublishSidebarOpened:d,isScheduled:p,postStatus:f,postStatusHasChanged:b}=G(h=>{var g;return{hasPublishAction:(g=!!h(_e).getCurrentPost()?._links?.["wp:action-publish"])!==null&&g!==void 0?g:!1,isBeingScheduled:h(_e).isEditedPostBeingScheduled(),isPending:h(_e).isCurrentPostPending(),isPublished:h(_e).isCurrentPostPublished(),isPublishSidebarEnabled:h(_e).isPublishSidebarEnabled(),isPublishSidebarOpened:h(_e).isPublishSidebarOpened(),isScheduled:h(_e).isCurrentPostScheduled(),postStatus:h(_e).getEditedPostAttribute("status"),postStatusHasChanged:h(_e).getPostEdits()?.status}},[]);return l||b&&!["future","publish"].includes(f)||p&&i||c&&!s&&!o?n=_ne:o||u?n=wne:n=_ne,a.jsx(fye,{forceIsDirty:e,isOpen:d,isToggle:n===wne,onToggle:r,setEntitiesSavedStatesCallback:t})}function _Kt(){const{hasLoaded:e,permalink:t,isPublished:n,label:o,showIconLabels:r}=G(s=>{const i=s(_e).getCurrentPostType(),c=s(Me).getPostType(i),{get:l}=s(ht);return{permalink:s(_e).getPermalink(),isPublished:s(_e).isCurrentPostPublished(),label:c?.labels.view_item,hasLoaded:!!c,showIconLabels:l("core","showIconLabels")}},[]);return!n||!t||!e?null:a.jsx(Ce,{icon:vf,label:o||m("View post"),href:t,target:"_blank",showTooltip:!r,size:"compact"})}function kKt({forceIsAutosaveable:e,disabled:t}){const{deviceType:n,homeUrl:o,isTemplate:r,isViewable:s,showIconLabels:i,isTemplateHidden:c,templateId:l}=G(v=>{var M;const{getDeviceType:y,getCurrentPostType:k,getCurrentTemplateId:S}=v(_e),{getRenderingMode:C}=St(v(_e)),{getEntityRecord:R,getPostType:T}=v(Me),{get:E}=v(ht),B=k();return{deviceType:y(),homeUrl:R("root","__unstableBase")?.home,isTemplate:B==="wp_template",isViewable:(M=T(B)?.viewable)!==null&&M!==void 0?M:!1,showIconLabels:E("core","showIconLabels"),isTemplateHidden:C()==="post-only",templateId:S()}},[]),{setDeviceType:u,setRenderingMode:d}=Oe(_e),{resetZoomLevel:p}=St(Oe(Q)),f=v=>{u(v),p()};if(Yn("medium","<"))return null;const h={placement:"bottom-end"},g={className:"editor-preview-dropdown__toggle",iconPosition:"right",size:"compact",showTooltip:!i,disabled:t,accessibleWhenDisabled:t},z={"aria-label":m("View options")},A={desktop:KK,mobile:YK,tablet:QK},_=[{value:"Desktop",label:m("Desktop"),icon:KK},{value:"Tablet",label:m("Tablet"),icon:QK},{value:"Mobile",label:m("Mobile"),icon:YK}];return a.jsx(c0,{className:oe("editor-preview-dropdown",`editor-preview-dropdown--${n.toLowerCase()}`),popoverProps:h,toggleProps:g,menuProps:z,icon:A[n.toLowerCase()],label:m("View"),disableOpenOnArrowDown:t,children:({onClose:v})=>a.jsxs(a.Fragment,{children:[a.jsx(Cn,{children:a.jsx(kf,{choices:_,value:n,onSelect:f})}),r&&a.jsx(Cn,{children:a.jsxs(Ct,{href:o,target:"_blank",icon:vf,onClick:v,children:[m("View site"),a.jsx(qn,{as:"span",children:m("(opens in a new tab)")})]})}),!r&&!!l&&a.jsx(Cn,{children:a.jsx(Ct,{icon:c?void 0:M0,isSelected:!c,role:"menuitemcheckbox",onClick:()=>{d(c?"template-locked":"post-only")},children:m("Show template")})}),s&&a.jsx(Cn,{children:a.jsx(pye,{className:"editor-preview-dropdown__button-external",role:"menuitem",forceIsAutosaveable:e,"aria-label":m("Preview in new tab"),textContent:a.jsxs(a.Fragment,{children:[m("Preview in new tab"),a.jsx(qo,{icon:vf})]}),onPreview:v})}),a.jsx(IO.Slot,{name:"core/plugin-preview-menu",fillProps:{onClick:v}})]})})}const SKt=({disabled:e})=>{const{isZoomOut:t,showIconLabels:n,isDistractionFree:o}=G(u=>({isZoomOut:St(u(Q)).isZoomOut(),showIconLabels:u(ht).get("core","showIconLabels"),isDistractionFree:u(ht).get("core","distractionFree")})),{resetZoomLevel:r,setZoomLevel:s}=St(Oe(Q)),{registerShortcut:i,unregisterShortcut:c}=Oe(ji);x.useEffect(()=>(i({name:"core/editor/zoom",category:"global",description:m("Enter or exit zoom out."),keyCombination:{modifier:pa()?"primaryShift":"secondary",character:"0"}}),()=>{c("core/editor/zoom")}),[i,c]),p0("core/editor/zoom",()=>{t?r():s("auto-scaled")},{isDisabled:o});const l=()=>{t?r():s("auto-scaled")};return a.jsx(Ce,{accessibleWhenDisabled:!0,disabled:e,onClick:l,icon:FQe,label:m("Zoom Out"),isPressed:t,size:"compact",showTooltip:!n,className:"editor-zoom-out-toggle"})},CKt=window?.__experimentalEnableBlockComment,ET={distractionFreeDisabled:{y:"-50px"},distractionFreeHover:{y:0},distractionFreeHidden:{y:"-50px"},visible:{y:0},hidden:{y:0}},qKt={distractionFreeDisabled:{x:"-100%"},distractionFreeHover:{x:0},distractionFreeHidden:{x:"-100%"},visible:{x:0},hidden:{x:0}};function RKt({customSaveButton:e,forceIsDirty:t,forceDisableBlockTools:n,setEntitiesSavedStatesCallback:o,title:r}){const s=Yn("large"),i=Yn("medium"),c=GN("(max-width: 403px)"),{postType:l,isTextEditor:u,isPublishSidebarOpened:d,showIconLabels:p,hasFixedToolbar:f,hasBlockSelection:b}=G(y=>{const{get:k}=y(ht),{getEditorMode:S,getCurrentPostType:C,isPublishSidebarOpened:R}=y(_e);return{postType:C(),isTextEditor:S()==="text",isPublishSidebarOpened:R(),showIconLabels:k("core","showIconLabels"),hasFixedToolbar:k("core","fixedToolbar"),hasBlockSelection:!!y(Q).getBlockSelectionStart()}},[]),h=["post","page","wp_template"].includes(l),g=[Wf,Fi,Vl].includes(l),[z,A]=x.useState(!0),_=!c&&(!f||f&&(!b||z)),v=eKt(),M=G(y=>!!St(y(Q)).getSectionRootClientId(),[]);return a.jsxs("div",{className:"editor-header edit-post-header",children:[v&&a.jsx(Rr.div,{className:"editor-header__back-button",variants:qKt,transition:{type:"tween"},children:a.jsx(YI.Slot,{})}),a.jsxs(Rr.div,{variants:ET,className:"editor-header__toolbar",transition:{type:"tween"},children:[a.jsx(MKt,{disableBlockTools:n||u}),f&&i&&a.jsx(gKt,{isCollapsed:z,onToggle:A})]}),_&&a.jsx(Rr.div,{className:"editor-header__center",variants:ET,transition:{type:"tween"},children:a.jsx(HHt,{title:r})}),a.jsxs(Rr.div,{variants:ET,transition:{type:"tween"},className:"editor-header__settings",children:[!e&&!d&&a.jsx(uGt,{forceIsDirty:t}),a.jsx(_Kt,{}),a.jsx(kKt,{forceIsAutosaveable:t,disabled:g}),a.jsx(pye,{className:"editor-header__post-preview-button",forceIsAutosaveable:t}),h&&s&&M&&a.jsx(SKt,{disabled:n}),(s||!p)&&a.jsx(ck.Slot,{scope:"core"}),!e&&a.jsx(wKt,{forceIsDirty:t,setEntitiesSavedStatesCallback:o}),CKt?a.jsx(hKt,{}):void 0,e,a.jsx(xKt,{})]})]})}const{PrivateInserterLibrary:TKt}=St(Ln);function EKt(){const{blockSectionRootClientId:e,inserterSidebarToggleRef:t,inserter:n,showMostUsedBlocks:o,sidebarIsOpened:r}=G(f=>{const{getInserterSidebarToggleRef:b,getInserter:h,isPublishSidebarOpened:g}=St(f(_e)),{getBlockRootClientId:z,isZoomOut:A,getSectionRootClientId:_}=St(f(Q)),{get:v}=f(ht),{getActiveComplementaryArea:M}=f(xo),y=()=>{if(A()){const k=_();if(k)return k}return z()};return{inserterSidebarToggleRef:b(),inserter:h(),showMostUsedBlocks:v("core","mostUsedBlocks"),blockSectionRootClientId:y(),sidebarIsOpened:!!(M("core")||g())}},[]),{setIsInserterOpened:s}=Oe(_e),{disableComplementaryArea:i}=Oe(xo),c=Yn("medium","<"),l=x.useRef(),u=x.useCallback(()=>{s(!1),t.current?.focus()},[t,s]),d=x.useCallback(f=>{f.keyCode===gd&&!f.defaultPrevented&&(f.preventDefault(),u())},[u]),p=a.jsx("div",{className:"editor-inserter-sidebar__content",children:a.jsx(TKt,{showMostUsedBlocks:o,showInserterHelpPanel:!0,shouldFocusBlock:c,rootClientId:e,onSelect:n.onSelect,__experimentalInitialTab:n.tab,__experimentalInitialCategory:n.category,__experimentalFilterValue:n.filterValue,onPatternCategorySelection:r?()=>i("core"):void 0,ref:l,onClose:u})});return a.jsx("div",{onKeyDown:d,className:"editor-inserter-sidebar",children:p})}function WKt(){return a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:"editor-list-view-sidebar__outline",children:[a.jsxs("div",{children:[a.jsx(Sn,{children:m("Characters:")}),a.jsx(Sn,{children:a.jsx(PGt,{})})]}),a.jsxs("div",{children:[a.jsx(Sn,{children:m("Words:")}),a.jsx(NGt,{})]}),a.jsxs("div",{children:[a.jsx(Sn,{children:m("Time to read:")}),a.jsx(LGt,{})]})]}),a.jsx(QHt,{})]})}const{TabbedSidebar:NKt}=St(Ln);function BKt(){const{setIsListViewOpened:e}=Oe(_e),{getListViewToggleRef:t}=St(G(_e)),n=E5("firstElement"),o=x.useCallback(()=>{e(!1),t().current?.focus()},[t,e]),r=x.useCallback(g=>{g.keyCode===gd&&!g.defaultPrevented&&(g.preventDefault(),o())},[o]),[s,i]=x.useState(null),[c,l]=x.useState("list-view"),u=x.useRef(),d=x.useRef(),p=x.useRef(),f=xn([n,p,i]);function b(g){const z=Xr.tabbable.find(d.current)[0];if(g==="list-view"){const A=Xr.tabbable.find(p.current)[0];(u.current.contains(A)?A:z).focus()}else z.focus()}const h=x.useCallback(()=>{u.current.contains(u.current.ownerDocument.activeElement)?o():b(c)},[o,c]);return p0("core/editor/toggle-list-view",h),a.jsx("div",{className:"editor-list-view-sidebar",onKeyDown:r,ref:u,children:a.jsx(NKt,{tabs:[{name:"list-view",title:We("List View","Post overview"),panel:a.jsx("div",{className:"editor-list-view-sidebar__list-view-container",children:a.jsx("div",{className:"editor-list-view-sidebar__list-view-panel-content",children:a.jsx(Q8t,{dropZoneElement:s})})}),panelRef:f},{name:"outline",title:We("Outline","Post overview"),panel:a.jsx("div",{className:"editor-list-view-sidebar__list-view-container",children:a.jsx(WKt,{})})}],onClose:o,onSelect:g=>l(g),defaultTabId:"list-view",ref:d,closeButtonLabel:m("Close")})})}const{Fill:ugn,Slot:LKt}=Qn("ActionsPanel");function PKt({setEntitiesSavedStatesCallback:e,closeEntitiesSavedStates:t,isEntitiesSavedStatesOpen:n,forceIsDirtyPublishPanel:o}){const{closePublishSidebar:r,togglePublishSidebar:s}=Oe(_e),{publishSidebarOpened:i,isPublishable:c,isDirty:l,hasOtherEntitiesChanges:u}=G(f=>{const{isPublishSidebarOpened:b,isEditedPostPublishable:h,isCurrentPostPublished:g,isEditedPostDirty:z,hasNonPostEntityChanges:A}=f(_e),_=A();return{publishSidebarOpened:b(),isPublishable:!g()&&h(),isDirty:_||z(),hasOtherEntitiesChanges:_}},[]),d=x.useCallback(()=>e(!0),[]);let p;return i?p=a.jsx(iGt,{onClose:r,forceIsDirty:o,PrePublishExtension:aye.Slot,PostPublishExtension:sye.Slot}):c&&!u?p=a.jsx("div",{className:"editor-layout__toggle-publish-panel",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:s,"aria-expanded":!1,children:m("Open publish panel")})}):p=a.jsx("div",{className:"editor-layout__toggle-entities-saved-states-panel",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:d,"aria-expanded":!1,"aria-haspopup":"dialog",disabled:!l,accessibleWhenDisabled:!0,children:m("Open save panel")})}),a.jsxs(a.Fragment,{children:[n&&a.jsx(hUt,{close:t,renderDialog:!0}),a.jsx(LKt,{bubblesVirtually:!0}),!n&&p]})}function jKt({autoFocus:e=!1}){const{switchEditorMode:t}=Oe(_e),{shortcut:n,isRichEditingEnabled:o}=G(s=>{const{getEditorSettings:i}=s(_e),{getShortcutRepresentation:c}=s(ji);return{shortcut:c("core/editor/toggle-mode"),isRichEditingEnabled:i().richEditingEnabled}},[]),r=x.useRef();return x.useEffect(()=>{e||r?.current?.focus()},[e]),a.jsxs("div",{className:"editor-text-editor",children:[o&&a.jsxs("div",{className:"editor-text-editor__toolbar",children:[a.jsx("h2",{children:m("Editing code")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>t("visual"),shortcut:n,children:m("Exit code editor")})]}),a.jsxs("div",{className:"editor-text-editor__body",children:[a.jsx(Tye,{ref:r}),a.jsx(GI,{})]})]})}function IKt({contentRef:e}){const{onNavigateToEntityRecord:t,templateId:n}=G(i=>{const{getEditorSettings:c,getCurrentTemplateId:l}=i(_e);return{onNavigateToEntityRecord:c().onNavigateToEntityRecord,templateId:l()}},[]),o=G(i=>!!i(Me).canUser("create",{kind:"postType",name:"wp_template"}),[]),[r,s]=x.useState(!1);return x.useEffect(()=>{const i=l=>{o&&(!l.target.classList.contains("is-root-container")||l.target.dataset?.type==="core/template-part"||l.defaultPrevented||(l.preventDefault(),s(!0)))},c=e.current;return c?.addEventListener("dblclick",i),()=>{c?.removeEventListener("dblclick",i)}},[e,o]),o?a.jsx(wf,{isOpen:r,confirmButtonText:m("Edit template"),onConfirm:()=>{s(!1),t({postId:n,postType:"wp_template"})},onCancel:()=>s(!1),size:"medium",children:m("You’ve tried to select a block that is part of a template, which may be used on other posts and pages. Would you like to edit the template?")}):null}const kne=20;function Sne({direction:e,resizeWidthBy:t}){function n(s){const{keyCode:i}=s;i!==wi&&i!==_i||(s.preventDefault(),e==="left"&&i===wi||e==="right"&&i===_i?t(kne):(e==="left"&&i===_i||e==="right"&&i===wi)&&t(-kne))}const o={active:{opacity:1,scaleY:1.3}},r=`resizable-editor__resize-help-${e}`;return a.jsxs(a.Fragment,{children:[a.jsx(B0,{text:m("Drag to resize"),children:a.jsx(Rr.button,{className:`editor-resizable-editor__resize-handle is-${e}`,"aria-label":m("Drag to resize"),"aria-describedby":r,onKeyDown:n,variants:o,whileFocus:"active",whileHover:"active",whileTap:"active",role:"separator","aria-orientation":"vertical"},"handle")}),a.jsx(qn,{id:r,children:m("Use left and right arrow keys to resize the canvas.")})]})}const Cne={position:void 0,userSelect:void 0,cursor:void 0,width:void 0,height:void 0,top:void 0,right:void 0,bottom:void 0,left:void 0};function jye({className:e,enableResizing:t,height:n,children:o}){const[r,s]=x.useState("100%"),i=x.useRef(),c=x.useCallback(l=>{i.current&&s(i.current.offsetWidth+l)},[]);return a.jsx(Ca,{className:oe("editor-resizable-editor",e,{"is-resizable":t}),ref:l=>{i.current=l?.resizable},size:{width:t?r:"100%",height:t&&n?n:"100%"},onResizeStop:(l,u,d)=>{s(d.style.width)},minWidth:300,maxWidth:"100%",maxHeight:"100%",enable:{left:t,right:t},showHandle:t,resizeRatio:2,handleComponent:{left:a.jsx(Sne,{direction:"left",resizeWidthBy:c}),right:a.jsx(Sne,{direction:"right",resizeWidthBy:c})},handleClasses:void 0,handleStyles:{left:Cne,right:Cne},children:o})}const DKt=500;function qne(e,t,n){return Math.min(Math.max(e,t),n)}function FKt(e,t,n){const o=e-qne(e,n.left,n.right),r=t-qne(t,n.top,n.bottom);return Math.sqrt(o*o+r*r)}function $Kt({isEnabled:e=!0}={}){const{getEnabledClientIdsTree:t,getBlockName:n,getBlockOrder:o}=St(G(Q)),{selectBlock:r}=Oe(Q);return Mn(s=>{if(!e)return;const i=(l,u)=>{const d=t().flatMap(({clientId:b})=>{const h=n(b);if(h==="core/template-part")return[];if(h==="core/post-content"){const g=o(b);if(g.length)return g}return[b]});let p=1/0,f=null;for(const b of d){const h=s.querySelector(`[data-block="${b}"]`);if(!h)continue;const g=h.getBoundingClientRect(),z=FKt(l,u,g);z<p&&z<DKt&&(p=z,f=b)}f&&r(f)},c=l=>{(l.target===s||l.target.classList.contains("is-root-container"))&&i(l.clientX,l.clientY)};return s.addEventListener("click",c),()=>s.removeEventListener("click",c)},[e])}function VKt(){const{getSettings:e,isZoomOut:t}=St(G(Q)),{resetZoomLevel:n}=St(Oe(Q));return Mn(o=>{function r(s){if(t()&&!s.defaultPrevented){s.preventDefault();const{__experimentalSetIsInserterOpened:i}=e();typeof i=="function"&&i(!1),n()}}return o.addEventListener("dblclick",r),()=>{o.removeEventListener("dblclick",r)}},[e,t,n])}const{LayoutStyle:kv,useLayoutClasses:HKt,useLayoutStyles:UKt,ExperimentalBlockCanvas:XKt,useFlashEditableBlocks:GKt}=St(Ln),KKt=[Vl,L0,Wf,Fi];function uN(e){for(let t=0;t<e.length;t++){if(e[t].name==="core/post-content")return e[t].attributes;if(e[t].innerBlocks.length){const n=uN(e[t].innerBlocks);if(n)return n}}}function Rne(e){for(let t=0;t<e.length;t++)if(e[t].name==="core/post-content")return!0;return!1}function YKt({autoFocus:e,styles:t,disableIframe:n=!1,iframeProps:o,contentRef:r,className:s}){const[i,c]=x.useState(""),l=js(([ye])=>{c(ye.borderBoxSize[0].blockSize)}),u=Yn("small","<"),{renderingMode:d,postContentAttributes:p,editedPostTemplate:f={},wrapperBlockName:b,wrapperUniqueId:h,deviceType:g,isFocusedEntity:z,isDesignPostType:A,postType:_,isPreview:v}=G(ye=>{const{getCurrentPostId:Ne,getCurrentPostType:je,getCurrentTemplateId:ie,getEditorSettings:we,getRenderingMode:re,getDeviceType:pe}=ye(_e),{getPostType:ke,getEditedEntityRecord:Se}=ye(Me),se=je(),L=re();let U;se===Vl?U="core/block":L==="post-only"&&(U="core/post-content");const ne=we(),ve=ne.supportsTemplateMode,qe=ke(se),Pe=ie(),rt=Pe?Se("postType",L0,Pe):void 0;return{renderingMode:L,postContentAttributes:ne.postContentAttributes,isDesignPostType:KKt.includes(se),editedPostTemplate:qe?.viewable&&ve?rt:void 0,wrapperBlockName:U,wrapperUniqueId:Ne(),deviceType:pe(),isFocusedEntity:!!ne.onNavigateToPreviousEntityRecord,postType:se,isPreview:ne.isPreviewMode}},[]),{isCleanNewPost:M}=G(_e),{hasRootPaddingAwareAlignments:y,themeHasDisabledLayoutStyles:k,themeSupportsLayout:S,isZoomedOut:C}=G(ye=>{const{getSettings:Ne,isZoomOut:je}=St(ye(Q)),ie=Ne();return{themeHasDisabledLayoutStyles:ie.disableLayoutStyles,themeSupportsLayout:ie.supportsLayout,hasRootPaddingAwareAlignments:ie.__experimentalFeatures?.useRootPaddingAwareAlignments,isZoomedOut:je()}},[]),R=NNt(g),[T]=Un("layout"),E=x.useMemo(()=>d!=="post-only"||A?{type:"default"}:S?{...T,type:"constrained"}:{type:"default"},[d,S,T,A]),B=x.useMemo(()=>{if(!f?.content&&!f?.blocks&&p)return p;if(f?.blocks)return uN(f?.blocks);const ye=typeof f?.content=="string"?f?.content:"";return uN(Ko(ye))||{}},[f?.content,f?.blocks,p]),N=x.useMemo(()=>{if(!f?.content&&!f?.blocks)return!1;if(f?.blocks)return Rne(f?.blocks);const ye=typeof f?.content=="string"?f?.content:"";return Rne(Ko(ye))||!1},[f?.content,f?.blocks]),{layout:j={},align:I=""}=B||{},P=HKt(B,"core/post-content"),$=oe({"is-layout-flow":!S},S&&P,I&&`align${I}`),F=UKt(B,"core/post-content",".block-editor-block-list__layout.is-root-container"),X=x.useMemo(()=>j&&(j?.type==="constrained"||j?.inherit||j?.contentSize||j?.wideSize)?{...T,...j,type:"constrained"}:{...T,...j,type:"default"},[j?.type,j?.inherit,j?.contentSize,j?.wideSize,T]),Z=p?X:E,V=Z?.type==="default"&&!N?E:Z,ee=Ege(),te=x.useRef();x.useEffect(()=>{!e||!M()||te?.current?.focus()},[e,M]);const J=`.is-root-container.alignwide { max-width: var(--wp--style--global--wide-size); margin-left: auto; margin-right: auto;} +`,T);const B=Xh({HTML:E,plainText:T});if(C.preventDefault(),!!B.length)if(typeof B!="string"){const[N]=B;if(!i&&(N.name==="core/heading"||N.name==="core/paragraph")){const j=v1(N.attributes.content);c(j),A(B.slice(1))}else A(B)}else{const N=v1(B);g(E0(h,eo({html:N})))}}const S=oe(_ye,{"is-selected":o});return a.jsx("h1",{ref:xn([z,s]),contentEditable:!0,className:S,"aria-label":b,role:"textbox","aria-multiline":"true",onFocus:_,onBlur:v,onKeyDown:y,onPaste:k})}),qye=x.forwardRef((e,t)=>a.jsx(Sc,{supportKeys:"title",children:a.jsx(zGt,{ref:t})}));function OGt(e,t){const{placeholder:n}=G(b=>{const{getSettings:h}=b(Q),{titlePlaceholder:g}=h();return{placeholder:g}},[]),[o,r]=x.useState(!1),{title:s,setTitle:i}=Cye(),{ref:c}=Sye(t);function l(b){i(b.replace(kye," "))}function u(){r(!0)}function d(){r(!1)}const p=oe(_ye,{"is-selected":o,"is-raw-text":!0}),f=Lt(n)||m("Add title");return a.jsx(Li,{ref:c,value:s,onChange:l,onFocus:u,onBlur:d,label:n,className:p,placeholder:f,hideLabelFromVision:!0,autoComplete:"off",dir:"auto",rows:1,__nextHasNoMarginBottom:!0})}const Rye=x.forwardRef(OGt);function yGt({children:e}){const{canTrashPost:t}=G(n=>{const{isEditedPostNew:o,getCurrentPostId:r,getCurrentPostType:s}=n(_e),{canUser:i}=n(Me),c=s(),l=r(),u=o(),d=l?i("delete",{kind:"postType",name:c,id:l}):!1;return{canTrashPost:(!u||l)&&d&&!ljt.includes(c)}},[]);return t?e:null}function AGt({onActionPerformed:e}){const t=Fn(),{isNew:n,isDeleting:o,postId:r,title:s}=G(d=>{const p=d(_e);return{isNew:p.isEditedPostNew(),isDeleting:p.isDeletingPost(),postId:p.getCurrentPostId(),title:p.getCurrentPostAttribute("title")}},[]),{trashPost:i}=Oe(_e),[c,l]=x.useState(!1);if(n||!r)return null;const u=async()=>{l(!1),await i();const d=await t.resolveSelect(_e).getCurrentPost();e?.("move-to-trash",[d])};return a.jsxs(yGt,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"editor-post-trash",isDestructive:!0,variant:"secondary",isBusy:o,"aria-disabled":o,onClick:o?void 0:()=>l(!0),children:m("Move to trash")}),a.jsx(wf,{isOpen:c,onConfirm:u,onCancel:()=>l(!1),confirmButtonText:m("Move to trash"),size:"small",children:xe(m('Are you sure you want to move "%s" to the trash?'),s)})]})}function Tye({onClose:e}){const{isEditable:t,postSlug:n,postLink:o,permalinkPrefix:r,permalinkSuffix:s,permalink:i}=G(b=>{var h;const g=b(_e).getCurrentPost(),z=b(_e).getCurrentPostType(),A=b(Me).getPostType(z),_=b(_e).getPermalinkParts(),v=(h=g?._links?.["wp:action-publish"])!==null&&h!==void 0?h:!1;return{isEditable:b(_e).isPermalinkEditable()&&v,postSlug:Y2(b(_e).getEditedPostSlug()),viewPostLabel:A?.labels.view_item,postLink:g.link,permalinkPrefix:_?.prefix,permalinkSuffix:_?.suffix,permalink:Y2(b(_e).getPermalink())}},[]),{editPost:c}=Oe(_e),{createNotice:l}=Oe(mt),[u,d]=x.useState(!1),p=Hl(i,()=>{l("info",m("Copied Permalink to clipboard."),{isDismissible:!0,type:"snackbar"})}),f="editor-post-url__slug-description-"+vt(Tye);return a.jsxs("div",{className:"editor-post-url",children:[a.jsx(Qs,{title:m("Slug"),onClose:e}),a.jsxs(dt,{spacing:3,children:[t&&a.jsx("p",{className:"editor-post-url__intro",children:cr(m("<span>Customize the last part of the Permalink.</span> <a>Learn more.</a>"),{span:a.jsx("span",{id:f}),a:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/page-post-settings-sidebar/#permalink")})})}),a.jsxs("div",{children:[t&&a.jsxs(a.Fragment,{children:[a.jsx(N1,{__next40pxDefaultSize:!0,prefix:a.jsx(Ld,{children:"/"}),suffix:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{icon:EP,ref:p,size:"small",label:"Copy"})}),label:m("Slug"),hideLabelFromVision:!0,value:u?"":n,autoComplete:"off",spellCheck:"false",type:"text",className:"editor-post-url__input",onChange:b=>{if(c({slug:b}),!b){u||d(!0);return}u&&d(!1)},onBlur:b=>{c({slug:w5(b.target.value)}),u&&d(!1)},"aria-describedby":f}),a.jsxs("p",{className:"editor-post-url__permalink",children:[a.jsx("span",{className:"editor-post-url__permalink-visual-label",children:m("Permalink:")}),a.jsxs(hr,{className:"editor-post-url__link",href:o,target:"_blank",children:[a.jsx("span",{className:"editor-post-url__link-prefix",children:r}),a.jsx("span",{className:"editor-post-url__link-slug",children:n}),a.jsx("span",{className:"editor-post-url__link-suffix",children:s})]})]})]}),!t&&a.jsx(hr,{className:"editor-post-url__link",href:o,target:"_blank",children:o})]})]})]})}function vGt({children:e}){return G(n=>{const o=n(_e).getCurrentPostType();return!(!n(Me).getPostType(o)?.viewable||!n(_e).getCurrentPost().link||!n(_e).getPermalinkParts())},[])?e:null}function xGt(){const{isFrontPage:e}=G(s=>{const{getCurrentPostId:i}=s(_e),{getEditedEntityRecord:c,canUser:l}=s(Me),u=l("read",{kind:"root",name:"site"})?c("root","site"):void 0,d=i();return{isFrontPage:u?.page_on_front===d}},[]),[t,n]=x.useState(null),o=x.useMemo(()=>({anchor:t,placement:"left-start",offset:36,shift:!0}),[t]),r=m(e?"Link":"Slug");return a.jsx(vGt,{children:a.jsxs(xs,{label:r,ref:n,children:[!e&&a.jsx(so,{popoverProps:o,className:"editor-post-url__panel-dropdown",contentClassName:"editor-post-url__panel-dialog",focusOnMount:!0,renderToggle:({isOpen:s,onToggle:i})=>a.jsx(wGt,{isOpen:s,onClick:i}),renderContent:({onClose:s})=>a.jsx(Tye,{onClose:s})}),e&&a.jsx(_Gt,{})]})})}function wGt({isOpen:e,onClick:t}){const{slug:n}=G(r=>({slug:r(_e).getEditedPostSlug()}),[]),o=Y2(n);return a.jsx(Ce,{size:"compact",className:"editor-post-url__panel-toggle",variant:"tertiary","aria-expanded":e,"aria-label":xe(m("Change link: %s"),o),onClick:t,children:a.jsx(a.Fragment,{children:o})})}function _Gt(){const{postLink:e}=G(t=>{const{getCurrentPost:n}=t(_e);return{postLink:n()?.link}},[]);return a.jsx(hr,{className:"editor-post-url__front-page-link",href:e,target:"_blank",children:e})}const kGt={HTMLRegExp:/<\/?[a-z][^>]*?>/gi,HTMLcommentRegExp:/<!--[\s\S]*?-->/g,spaceRegExp:/ | /gi,HTMLEntityRegExp:/&\S+?;/g,connectorRegExp:/--|\u2014/g,removeRegExp:new RegExp(["[","!-/:-@[-`{-~","-¿×÷"," -⯿","⸀-","]"].join(""),"g"),astralRegExp:/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,wordsRegExp:/\S\s+/g,characters_excluding_spacesRegExp:/\S/g,characters_including_spacesRegExp:/[^\f\n\r\t\v\u00AD\u2028\u2029]/g,l10n:{type:"words"}};function Eye(e,t){return t.replace(e.HTMLRegExp,` +`)}function SGt(e,t){return t.replace(e.astralRegExp,"a")}function CGt(e,t){return t.replace(e.HTMLEntityRegExp,"")}function qGt(e,t){return t.replace(e.connectorRegExp," ")}function RGt(e,t){return t.replace(e.removeRegExp,"")}function Wye(e,t){return t.replace(e.HTMLcommentRegExp,"")}function Nye(e,t){return e.shortcodesRegExp?t.replace(e.shortcodesRegExp,` +`):t}function Bye(e,t){return t.replace(e.spaceRegExp," ")}function TGt(e,t){return t.replace(e.HTMLEntityRegExp,"a")}function EGt(e,t){var n;const o=Object.assign({},kGt,t);return o.shortcodes=(n=o.l10n?.shortcodes)!==null&&n!==void 0?n:[],o.shortcodes&&o.shortcodes.length&&(o.shortcodesRegExp=new RegExp("\\[\\/?(?:"+o.shortcodes.join("|")+")[^\\]]*?\\]","g")),o.type=e,o.type!=="characters_excluding_spaces"&&o.type!=="characters_including_spaces"&&(o.type="words"),o}function WGt(e,t,n){var o;return e=[Eye.bind(null,n),Wye.bind(null,n),Nye.bind(null,n),Bye.bind(null,n),CGt.bind(null,n),qGt.bind(null,n),RGt.bind(null,n)].reduce((r,s)=>s(r),e),e=e+` +`,(o=e.match(t)?.length)!==null&&o!==void 0?o:0}function One(e,t,n){var o;return e=[Eye.bind(null,n),Wye.bind(null,n),Nye.bind(null,n),SGt.bind(null,n),Bye.bind(null,n),TGt.bind(null,n)].reduce((r,s)=>s(r),e),e=e+` +`,(o=e.match(t)?.length)!==null&&o!==void 0?o:0}function DO(e,t,n){const o=EGt(t,n);let r;switch(o.type){case"words":return r=o.wordsRegExp,WGt(e,r,o);case"characters_including_spaces":return r=o.characters_including_spacesRegExp,One(e,r,o);case"characters_excluding_spaces":return r=o.characters_excluding_spacesRegExp,One(e,r,o);default:return 0}}function NGt(){const e=G(n=>n(_e).getEditedPostAttribute("content"),[]),t=We("words","Word count type. Do not translate!");return a.jsx("span",{className:"word-count",children:DO(e,t)})}const BGt=189;function LGt(){const e=G(r=>r(_e).getEditedPostAttribute("content"),[]),t=We("words","Word count type. Do not translate!"),n=Math.round(DO(e,t)/BGt),o=n===0?cr(m("<span>< 1</span> minute"),{span:a.jsx("span",{})}):cr(xe(Dn("<span>%s</span> minute","<span>%s</span> minutes",n),n),{span:a.jsx("span",{})});return a.jsx("span",{className:"time-to-read",children:o})}function PGt(){const e=G(t=>t(_e).getEditedPostAttribute("content"),[]);return DO(e,"characters_including_spaces")}const jGt={};function IGt(e,t=null,n={}){return tn(`/wp/v2/block-renderer/${e}`,{context:"edit",...t!==null?{attributes:t}:{},...n})}function DGt(e){const{backgroundColor:t,borderColor:n,fontFamily:o,fontSize:r,gradient:s,textColor:i,className:c,...l}=e,{border:u,color:d,elements:p,spacing:f,typography:b,...h}=e?.style||jGt;return{...l,style:h}}function FGt({className:e}){return a.jsx(vo,{className:e,children:m("Block rendered as empty.")})}function $Gt({response:e,className:t}){const n=xe(m("Error loading block: %s"),e.errorMsg);return a.jsx(vo,{className:t,children:n})}function VGt({children:e,showLoader:t}){return a.jsxs("div",{style:{position:"relative"},children:[t&&a.jsx("div",{style:{position:"absolute",top:"50%",left:"50%",marginTop:"-9px",marginLeft:"-9px"},children:a.jsx(Xn,{})}),a.jsx("div",{style:{opacity:t?"0.3":1},children:e})]})}function HGt(e){const{attributes:t,block:n,className:o,httpMethod:r="GET",urlQueryArgs:s,skipBlockSupportAttributes:i=!1,EmptyResponsePlaceholder:c=FGt,ErrorResponsePlaceholder:l=$Gt,LoadingResponsePlaceholder:u=VGt}=e,d=x.useRef(!1),[p,f]=x.useState(!1),b=x.useRef(),[h,g]=x.useState(null),z=Fr(e),[A,_]=x.useState(!1);function v(){var C,R;if(!d.current)return;_(!0);const T=setTimeout(()=>{f(!0)},1e3);let E=t&&NB(n,t);i&&(E=DGt(E));const B=r==="POST",N=B?null:(C=E)!==null&&C!==void 0?C:null,j=IGt(n,N,s),I=B?{attributes:(R=E)!==null&&R!==void 0?R:null}:null,P=b.current=Tt({path:j,data:I,method:B?"POST":"GET"}).then($=>{d.current&&P===b.current&&$&&g($.rendered)}).catch($=>{d.current&&P===b.current&&g({error:!0,errorMsg:$.message})}).finally(()=>{d.current&&P===b.current&&(_(!1),f(!1),clearTimeout(T))});return P}const M=C1(v,500);x.useEffect(()=>(d.current=!0,()=>{d.current=!1}),[]),x.useEffect(()=>{z===void 0?v():N0(z,e)||M()});const y=!!h,k=h==="",S=h?.error;return A?a.jsx(u,{...e,showLoader:p,children:y&&a.jsx(i0,{className:o,children:h})}):k||!y?a.jsx(c,{...e}):S?a.jsx(l,{response:h,...e}):a.jsx(i0,{className:o,children:h})}const yne={},FO=Ul(e=>{const t=e("core/editor");if(t){const n=t.getCurrentPostId();if(n&&typeof n=="number")return{currentPostId:n}}return yne})(({urlQueryArgs:e=yne,currentPostId:t,...n})=>{const o=x.useMemo(()=>t?{post_id:t,...e}:e,[t,e]);return a.jsx(HGt,{urlQueryArgs:o,...n})});function UGt(e=[]){return e.push({...DHt}),e}Bn("editor.Autocomplete.completers","editor/autocompleters/set-default-completers",UGt);Bn("editor.MediaUpload","core/editor/components/media-upload",()=>AOe);const{PatternOverridesControls:XGt,ResetOverridesControl:GGt,PatternOverridesBlockControls:KGt,PATTERN_TYPES:YGt,PARTIAL_SYNCING_SUPPORTED_BLOCKS:ZGt,PATTERN_SYNC_TYPES:Ane}=St(Vi),QGt=Or(e=>t=>{const n=!!ZGt[t.name];return a.jsxs(a.Fragment,{children:[a.jsx(e,{...t},"edit"),t.isSelected&&n&&a.jsx(JGt,{...t}),n&&a.jsx(KGt,{})]})},"withPatternOverrideControls");function JGt(e){const t=Jr(),{hasPatternOverridesSource:n,isEditingSyncedPattern:o}=G(l=>{const{getCurrentPostType:u,getEditedPostAttribute:d}=l(_e);return{hasPatternOverridesSource:!!vl("core/pattern-overrides"),isEditingSyncedPattern:u()===YGt.user&&d("meta")?.wp_pattern_sync_status!==Ane.unsynced&&d("wp_pattern_sync_status")!==Ane.unsynced}},[]),r=e.attributes.metadata?.bindings,s=!!r&&Object.values(r).some(l=>l.source==="core/pattern-overrides"),i=o&&t==="default",c=!o&&!!e.attributes.metadata?.name&&t!=="disabled"&&s;return n?a.jsxs(a.Fragment,{children:[i&&a.jsx(XGt,{...e}),c&&a.jsx(GGt,{...e})]}):null}Bn("editor.BlockEdit","core/editor/with-pattern-override-controls",QGt);const Lye=Qn(Symbol("EditCanvasContainerSlot")),GI="__experimentalMainDashboardButton",eKt=()=>{const e=H0(GI);return!!(e&&e.length)},{Fill:tKt,Slot:nKt}=Qn(GI),KI=tKt,oKt=()=>{const e=H0(GI);return a.jsx(nKt,{bubblesVirtually:!0,fillProps:{length:e?e.length:0}})};KI.Slot=oKt;const rKt="edit-post/collab-history-sidebar",vne="edit-post/collab-sidebar";function YI({avatar:e,name:t,date:n}){const o=Sa(),[r=o.formats.time]=Ao("root","site","time_format"),{currentUserAvatar:s,currentUserName:i}=G(l=>{var u;const d=l(Me).getCurrentUser(),{getSettings:p}=l(Q),{__experimentalDiscussionSettings:f}=p(),b=f?.avatarURL;return{currentUserAvatar:(u=d?.avatar_urls[48])!==null&&u!==void 0?u:b,currentUserName:d?.name}},[]),c=new Date;return a.jsxs(a.Fragment,{children:[a.jsx("img",{src:e??s,className:"editor-collab-sidebar-panel__user-avatar",alt:m("User avatar"),width:32,height:32}),a.jsxs(dt,{spacing:"0",children:[a.jsx("span",{className:"editor-collab-sidebar-panel__user-name",children:t??i}),a.jsx("time",{dateTime:r0("c",n??c),className:"editor-collab-sidebar-panel__user-time",children:r0(r,n??c)})]})]})}function sKt(e){return e.trim()}function iKt(e){const t=n=>n.reduce((o,r)=>{if(r.attributes&&r.attributes.blockCommentId&&!o.includes(r.attributes.blockCommentId)&&o.push(r.attributes.blockCommentId),r.innerBlocks&&r.innerBlocks.length>0){const s=t(r.innerBlocks);o.push(...s)}return o},[]);return t(e)}function ZI({onSubmit:e,onCancel:t,thread:n,submitButtonText:o}){var r;const[s,i]=x.useState((r=n?.content?.raw)!==null&&r!==void 0?r:"");return a.jsxs(a.Fragment,{children:[a.jsx(Li,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:s??"",onChange:i}),a.jsxs(Ot,{alignment:"left",spacing:"3",justify:"flex-start",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,accessibleWhenDisabled:!0,variant:"primary",onClick:()=>{e(s),i("")},disabled:sKt(s).length===0,text:o}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,text:We("Cancel","Cancel comment button")})]})]})}function aKt({threads:e,onEditComment:t,onAddReply:n,onCommentDelete:o,onCommentResolve:r,showCommentBoard:s,setShowCommentBoard:i}){const{blockCommentId:c}=G(p=>{const{getBlockAttributes:f,getSelectedBlockClientId:b}=p(Q),h=b();return{blockCommentId:h?f(h)?.blockCommentId:null}},[]),[l,u]=x.useState(s&&c?c:null),d=()=>{u(null),i(!1)};return a.jsxs(a.Fragment,{children:[(!Array.isArray(e)||e.length===0)&&a.jsx(dt,{alignment:"left",className:"editor-collab-sidebar-panel__thread",justify:"flex-start",spacing:"3",children:m("No comments available")}),Array.isArray(e)&&e.length>0&&e.map(p=>a.jsx(dt,{className:oe("editor-collab-sidebar-panel__thread",{"editor-collab-sidebar-panel__active-thread":c&&c===p.id,"editor-collab-sidebar-panel__focus-thread":l&&l===p.id}),id:p.id,spacing:"3",onClick:()=>u(p.id),children:a.jsx(cKt,{thread:p,onAddReply:n,onCommentDelete:o,onCommentResolve:r,onEditComment:t,isFocused:l===p.id,clearThreadFocus:d})},p.id))]})}function cKt({thread:e,onEditComment:t,onAddReply:n,onCommentDelete:o,onCommentResolve:r,isFocused:s,clearThreadFocus:i}){return a.jsxs(a.Fragment,{children:[a.jsx(RT,{thread:e,onResolve:r,onEdit:t,onDelete:o,status:e.status}),0<e?.reply?.length&&a.jsxs(a.Fragment,{children:[!s&&a.jsx(dt,{className:"editor-collab-sidebar-panel__show-more-reply",children:xe(We("%s more replies..","Show replies button"),e?.reply?.length)}),s&&e.reply.map(c=>a.jsxs(dt,{className:"editor-collab-sidebar-panel__child-thread",id:c.id,spacing:"2",children:[e.status!=="approved"&&a.jsx(RT,{thread:c,onEdit:t,onDelete:o}),e.status==="approved"&&a.jsx(RT,{thread:c})]},c.id))]}),e.status!=="approved"&&s&&a.jsxs(dt,{className:"editor-collab-sidebar-panel__child-thread",spacing:"2",children:[a.jsx(Ot,{alignment:"left",spacing:"3",justify:"flex-start",children:a.jsx(YI,{})}),a.jsx(dt,{spacing:"3",className:"editor-collab-sidebar-panel__comment-field",children:a.jsx(ZI,{onSubmit:c=>{n(c,e.id)},onCancel:c=>{c.stopPropagation(),i()},submitButtonText:We("Reply","Add reply comment")})})]})]})}const RT=({thread:e,onResolve:t,onEdit:n,onDelete:o,status:r})=>{const[s,i]=x.useState(!1),[c,l]=x.useState(!1),u=()=>{o(e.id),i(!1),l(!1)},d=()=>{t(e.id),i(!1),l(!1)},p=()=>{i(!1),l(!1)},b=[n&&{title:We("Edit","Edit comment"),onClick:()=>{i("edit")}},o&&{title:We("Delete","Delete comment"),onClick:()=>{i("delete"),l(!0)}}].filter(h=>h?.onClick);return a.jsxs(a.Fragment,{children:[a.jsxs(Ot,{alignment:"left",spacing:"3",justify:"flex-start",children:[a.jsx(YI,{avatar:e?.author_avatar_urls?.[48],name:e?.author_name,date:e?.date}),a.jsxs("span",{className:"editor-collab-sidebar-panel__comment-status",children:[r!=="approved"&&a.jsxs(Ot,{alignment:"right",justify:"flex-end",spacing:"0",children:[e?.parent===0&&t&&a.jsx(Ce,{label:We("Resolve","Mark comment as resolved"),__next40pxDefaultSize:!0,icon:Iw,onClick:()=>{i("resolve"),l(!0)},showTooltip:!0}),0<b.length&&a.jsx(c0,{icon:Wc,label:We("Select an action","Select comment action"),className:"editor-collab-sidebar-panel__comment-dropdown-menu",controls:b})]}),r==="approved"&&a.jsx(B0,{text:m("Resolved"),children:a.jsx(wn,{icon:M0})})]})]}),a.jsx(Ot,{alignment:"left",spacing:"3",justify:"flex-start",className:"editor-collab-sidebar-panel__user-comment",children:a.jsxs(dt,{spacing:"3",className:"editor-collab-sidebar-panel__comment-field",children:[s==="edit"&&a.jsx(ZI,{onSubmit:h=>{n(e.id,h),i(!1)},onCancel:()=>p(),thread:e,submitButtonText:We("Update","verb")}),s!=="edit"&&a.jsx(i0,{children:e?.content?.raw})]})}),s==="resolve"&&a.jsx(wf,{isOpen:c,onConfirm:d,onCancel:p,confirmButtonText:"Yes",cancelButtonText:"No",children:m("Are you sure you want to mark this comment as resolved?")}),s==="delete"&&a.jsx(wf,{isOpen:c,onConfirm:u,onCancel:p,confirmButtonText:"Yes",cancelButtonText:"No",children:m("Are you sure you want to delete this comment?")})]})};function lKt({onSubmit:e,showCommentBoard:t,setShowCommentBoard:n}){const{clientId:o,blockCommentId:r}=G(s=>{const{getSelectedBlock:i}=s(Q),c=i();return{clientId:c?.clientId,blockCommentId:c?.attributes?.blockCommentId}});return!t||!o||r!==void 0?null:a.jsxs(dt,{spacing:"3",className:"editor-collab-sidebar-panel__thread editor-collab-sidebar-panel__active-thread editor-collab-sidebar-panel__focus-thread",children:[a.jsx(Ot,{alignment:"left",spacing:"3",children:a.jsx(YI,{})}),a.jsx(ZI,{onSubmit:s=>{e(s)},onCancel:()=>{n(!1)},submitButtonText:We("Comment","Add comment button")})]})}const{CommentIconSlotFill:uKt}=St(jn),dKt=({onClick:e})=>a.jsx(uKt.Fill,{children:({onClose:t})=>a.jsx(Ct,{icon:U3,onClick:()=>{e(),t()},"aria-haspopup":"dialog",children:We("Comment","Add comment button")})}),{CommentIconToolbarSlotFill:pKt}=St(jn),fKt=({onClick:e})=>a.jsx(pKt.Fill,{children:a.jsx(Vt,{accessibleWhenDisabled:!0,icon:U3,label:We("Comment","View comment"),onClick:e})}),bKt=e=>(e.attributes.blockCommentId||(e.attributes={...e.attributes,blockCommentId:{type:"number"}}),e);Bn("blocks.registerBlockType","block-comment/modify-core-block-attributes",bKt);function xne({showCommentBoard:e,setShowCommentBoard:t,styles:n,comments:o}){const{createNotice:r}=Oe(mt),{saveEntityRecord:s,deleteEntityRecord:i}=Oe(Me),{getEntityRecord:c}=j0e(Me),{postId:l}=G(z=>{const{getCurrentPostId:A}=z(_e);return{postId:A()}},[]),{getSelectedBlockClientId:u}=G(Q),{updateBlockAttributes:d}=Oe(Q),p=async(z,A)=>{const v={...{post:l,content:z,comment_type:"block_comment",comment_approved:0},...A?{parent:A}:{}},M=await s("root","comment",v);M?(A||d(u(),{blockCommentId:M?.id}),r("snackbar",m(A?"Reply added successfully.":"Comment added successfully."),{type:"snackbar",isDismissible:!0})):h()},f=async z=>{await s("root","comment",{id:z,status:"approved"})?r("snackbar",m("Comment marked as resolved."),{type:"snackbar",isDismissible:!0}):h()},b=async(z,A)=>{await s("root","comment",{id:z,content:A})?r("snackbar",m("Comment edited successfully."),{type:"snackbar",isDismissible:!0}):h()},h=()=>{r("error",m("Something went wrong. Please try publishing the post, or you may have already submitted your comment earlier."),{isDismissible:!0})},g=async z=>{const A=await c("root","comment",z);await i("root","comment",z),A&&!A.parent&&d(u(),{blockCommentId:void 0}),r("snackbar",m("Comment deleted successfully."),{type:"snackbar",isDismissible:!0})};return a.jsxs("div",{className:"editor-collab-sidebar-panel",style:n,children:[a.jsx(lKt,{onSubmit:p,showCommentBoard:e,setShowCommentBoard:t}),a.jsx(aKt,{threads:o,onEditComment:b,onAddReply:p,onCommentDelete:g,onCommentResolve:f,showCommentBoard:e,setShowCommentBoard:t},u())]})}function hKt(){const[e,t]=x.useState(!1),{enableComplementaryArea:n}=Oe(xo),{getActiveComplementaryArea:o}=G(xo),{postId:r,postType:s,postStatus:i,threads:c}=G(z=>{const{getCurrentPostId:A,getCurrentPostType:_}=z(_e),v=A(),M=v&&typeof v=="number"?z(Me).getEntityRecords("root","comment",{post:v,type:"block_comment",status:"any",per_page:100}):null;return{postId:v,postType:_(),postStatus:z(_e).getEditedPostAttribute("status"),threads:M}},[]),{blockCommentId:l}=G(z=>{const{getBlockAttributes:A,getSelectedBlockClientId:_}=z(Q),v=_();return{blockCommentId:v?A(v)?.blockCommentId:null}},[]),u=()=>{t(!0),n("core","edit-post/collab-sidebar")},[d]=ya("postType",s,{id:r}),{resultComments:p,sortedThreads:f}=x.useMemo(()=>{const z={},A=[],_=(c??[]).filter(S=>S.status!=="trash");if(_.forEach(S=>{z[S.id]={...S,reply:[]}}),_.forEach(S=>{S.parent===0?A.push(z[S.id]):z[S.parent]&&z[S.parent].reply.push(z[S.id])}),A?.length===0)return{resultComments:[],sortedThreads:[]};const v=A.map(S=>({...S,reply:[...S.reply].reverse()})),M=iKt(d),y=new Map(v.map(S=>[S.id,S])),k=M.map(S=>y.get(S)).filter(S=>S!==void 0);return{resultComments:v,sortedThreads:k}},[c,d]),{merged:b}=II(),h=b?.styles?.color?.background;if(0<p.length){const z=ZCe(()=>{o("core")||(n("core",vne),z())})}if(i==="publish")return null;const g=l?fKt:dKt;return a.jsxs(a.Fragment,{children:[a.jsx(g,{onClick:u}),a.jsx(aN,{identifier:rKt,title:m("Comments"),icon:U3,children:a.jsx(xne,{comments:p,showCommentBoard:e,setShowCommentBoard:t})}),a.jsx(aN,{isPinnable:!1,header:!1,identifier:vne,className:"editor-collab-sidebar",headerClassName:"editor-collab-sidebar__header",children:a.jsx(xne,{comments:f,showCommentBoard:e,setShowCommentBoard:t,styles:{backgroundColor:h}})})]})}const{useHasBlockToolbar:mKt}=St(jn);function gKt({isCollapsed:e,onToggle:t}){const{blockSelectionStart:n}=G(s=>({blockSelectionStart:s(Q).getBlockSelectionStart()}),[]),o=mKt(),r=!!n;return x.useEffect(()=>{n&&t(!1)},[n,t]),o?a.jsxs(a.Fragment,{children:[a.jsx("div",{className:oe("editor-collapsible-block-toolbar",{"is-collapsed":e||!r}),children:a.jsx(dI,{hideDragHandle:!0})}),a.jsx(Io.Slot,{name:"block-toolbar"}),a.jsx(Ce,{className:"editor-collapsible-block-toolbar__toggle",icon:e?Cde:Sde,onClick:()=>{t(!e)},label:m(e?"Show block tools":"Hide block tools"),size:"compact"})]}):null}function MKt({className:e,disableBlockTools:t=!1}){const{setIsInserterOpened:n,setIsListViewOpened:o}=Oe(_e),{isDistractionFree:r,isInserterOpened:s,isListViewOpen:i,listViewShortcut:c,inserterSidebarToggleRef:l,listViewToggleRef:u,showIconLabels:d,showTools:p}=G(M=>{const{get:y}=M(ht),{isListViewOpened:k,getEditorMode:S,getInserterSidebarToggleRef:C,getListViewToggleRef:R,getRenderingMode:T,getCurrentPostType:E}=St(M(_e)),{getShortcutRepresentation:B}=M(Pi);return{isInserterOpened:M(_e).isInserterOpened(),isListViewOpen:k(),listViewShortcut:B("core/editor/toggle-list-view"),inserterSidebarToggleRef:C(),listViewToggleRef:R(),showIconLabels:y("core","showIconLabels"),isDistractionFree:y("core","distractionFree"),isVisualMode:S()==="visual",showTools:!!window?.__experimentalEditorWriteMode&&(T()!=="post-only"||E()==="wp_template")}},[]),f=M=>{s&&M.preventDefault()},b=Yn("medium"),h=Yn("wide"),g=m("Document tools"),z=x.useCallback(()=>o(!i),[o,i]),A=x.useCallback(()=>n(!s),[s,n]),_=We("Block Inserter","Generic label for block inserter button"),v=m(s?"Close":"Add");return a.jsx(oI,{className:oe("editor-document-tools","edit-post-header-toolbar",e),"aria-label":g,variant:"unstyled",children:a.jsxs("div",{className:"editor-document-tools__left",children:[!r&&a.jsx(Vt,{ref:l,className:"editor-document-tools__inserter-toggle",variant:"primary",isPressed:s,onMouseDown:f,onClick:A,disabled:t,icon:Fs,label:d?v:_,showTooltip:!d,"aria-expanded":s}),(h||!d)&&a.jsxs(a.Fragment,{children:[p&&b&&a.jsx(bs,{as:ENt,showTooltip:!d,variant:d?"tertiary":void 0,disabled:t,size:"compact"}),a.jsx(bs,{as:nUt,showTooltip:!d,variant:d?"tertiary":void 0,size:"compact"}),a.jsx(bs,{as:eUt,showTooltip:!d,variant:d?"tertiary":void 0,size:"compact"}),!r&&a.jsx(Vt,{className:"editor-document-tools__document-overview-toggle",icon:jP,disabled:t,isPressed:i,label:m("Document Overview"),onClick:z,shortcut:c,showTooltip:!d,variant:d?"tertiary":void 0,"aria-expanded":i,ref:u})]})]})})}function zKt(){const{createNotice:e}=Oe(mt),{getCurrentPostId:t,getCurrentPostType:n}=G(_e),{getEditedEntityRecord:o}=G(Me);function r(){const c=o("postType",n(),t());if(!c)return"";if(typeof c.content=="function")return c.content(c);if(c.blocks)return Jd(c.blocks);if(c.content)return c.content}function s(){e("info",m("All content copied."),{isDismissible:!0,type:"snackbar"})}const i=Hl(r,s);return a.jsx(Ct,{ref:i,children:m("Copy all blocks")})}const OKt=[{value:"visual",label:m("Visual editor")},{value:"text",label:m("Code editor")}];function yKt(){const{shortcut:e,isRichEditingEnabled:t,isCodeEditingEnabled:n,mode:o}=G(c=>({shortcut:c(Pi).getShortcutRepresentation("core/editor/toggle-mode"),isRichEditingEnabled:c(_e).getEditorSettings().richEditingEnabled,isCodeEditingEnabled:c(_e).getEditorSettings().codeEditingEnabled,mode:c(_e).getEditorMode()}),[]),{switchEditorMode:r}=Oe(_e);let s=o;!t&&o==="visual"&&(s="text"),!n&&o==="text"&&(s="visual");const i=OKt.map(c=>(!n&&c.value==="text"&&(c={...c,disabled:!0}),!t&&c.value==="visual"&&(c={...c,disabled:!0,info:m("You can enable the visual editor in your profile settings.")}),c.value!==s&&!c.disabled?{...c,shortcut:e}:c));return a.jsx(Cn,{label:m("Editor"),children:a.jsx(kf,{choices:i,value:s,onSelect:r})})}const{Fill:QI,Slot:AKt}=Qn("ToolsMoreMenuGroup");QI.Slot=({fillProps:e})=>a.jsx(AKt,{fillProps:e});const{Fill:JI,Slot:vKt}=Qn(Symbol("ViewMoreMenuGroup"));JI.Slot=({fillProps:e})=>a.jsx(vKt,{fillProps:e});function xKt(){const{openModal:e}=Oe(xo),{set:t}=Oe(ht),{toggleDistractionFree:n}=Oe(_e),o=G(s=>s(ht).get("core","showIconLabels"),[]),r=()=>{t("core","distractionFree",!1)};return a.jsx(a.Fragment,{children:a.jsx(c0,{icon:Wc,label:m("Options"),popoverProps:{placement:"bottom-end",className:"more-menu-dropdown__content"},toggleProps:{showTooltip:!o,...o&&{variant:"tertiary"},tooltipPosition:"bottom",size:"compact"},children:({onClose:s})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{label:We("View","noun"),children:[a.jsx(oq,{scope:"core",name:"fixedToolbar",onToggle:r,label:m("Top toolbar"),info:m("Access all block and document tools in a single place"),messageActivated:m("Top toolbar activated."),messageDeactivated:m("Top toolbar deactivated.")}),a.jsx(oq,{scope:"core",name:"distractionFree",label:m("Distraction free"),info:m("Write with calmness"),handleToggling:!1,onToggle:()=>n({createNotice:!1}),messageActivated:m("Distraction free mode activated."),messageDeactivated:m("Distraction free mode deactivated."),shortcut:j1.primaryShift("\\")}),a.jsx(oq,{scope:"core",name:"focusMode",label:m("Spotlight mode"),info:m("Focus on one block at a time"),messageActivated:m("Spotlight mode activated."),messageDeactivated:m("Spotlight mode deactivated.")}),a.jsx(JI.Slot,{fillProps:{onClose:s}})]}),a.jsx(yKt,{}),a.jsx(IO.Slot,{name:"core/plugin-more-menu",label:m("Plugins"),fillProps:{onClick:s}}),a.jsxs(Cn,{label:m("Tools"),children:[a.jsx(Ct,{onClick:()=>e("editor/keyboard-shortcut-help"),shortcut:j1.access("h"),children:m("Keyboard shortcuts")}),a.jsx(zKt,{}),a.jsxs(Ct,{icon:vf,href:m("https://wordpress.org/documentation/article/wordpress-block-editor/"),target:"_blank",rel:"noopener noreferrer",children:[m("Help"),a.jsx(qn,{as:"span",children:m("(opens in a new tab)")})]}),a.jsx(QI.Slot,{fillProps:{onClose:s}})]}),a.jsx(Cn,{children:a.jsx(Ct,{onClick:()=>e("editor/preferences"),children:m("Preferences")})})]})})})}const wne="toggle",_ne="button";function wKt({forceIsDirty:e,setEntitiesSavedStatesCallback:t}){let n;const o=Yn("medium","<"),{togglePublishSidebar:r}=Oe(_e),{hasPublishAction:s,isBeingScheduled:i,isPending:c,isPublished:l,isPublishSidebarEnabled:u,isPublishSidebarOpened:d,isScheduled:p,postStatus:f,postStatusHasChanged:b}=G(h=>{var g;return{hasPublishAction:(g=!!h(_e).getCurrentPost()?._links?.["wp:action-publish"])!==null&&g!==void 0?g:!1,isBeingScheduled:h(_e).isEditedPostBeingScheduled(),isPending:h(_e).isCurrentPostPending(),isPublished:h(_e).isCurrentPostPublished(),isPublishSidebarEnabled:h(_e).isPublishSidebarEnabled(),isPublishSidebarOpened:h(_e).isPublishSidebarOpened(),isScheduled:h(_e).isCurrentPostScheduled(),postStatus:h(_e).getEditedPostAttribute("status"),postStatusHasChanged:h(_e).getPostEdits()?.status}},[]);return l||b&&!["future","publish"].includes(f)||p&&i||c&&!s&&!o?n=_ne:o||u?n=wne:n=_ne,a.jsx(pye,{forceIsDirty:e,isOpen:d,isToggle:n===wne,onToggle:r,setEntitiesSavedStatesCallback:t})}function _Kt(){const{hasLoaded:e,permalink:t,isPublished:n,label:o,showIconLabels:r}=G(s=>{const i=s(_e).getCurrentPostType(),c=s(Me).getPostType(i),{get:l}=s(ht);return{permalink:s(_e).getPermalink(),isPublished:s(_e).isCurrentPostPublished(),label:c?.labels.view_item,hasLoaded:!!c,showIconLabels:l("core","showIconLabels")}},[]);return!n||!t||!e?null:a.jsx(Ce,{icon:vf,label:o||m("View post"),href:t,target:"_blank",showTooltip:!r,size:"compact"})}function kKt({forceIsAutosaveable:e,disabled:t}){const{deviceType:n,homeUrl:o,isTemplate:r,isViewable:s,showIconLabels:i,isTemplateHidden:c,templateId:l}=G(v=>{var M;const{getDeviceType:y,getCurrentPostType:k,getCurrentTemplateId:S}=v(_e),{getRenderingMode:C}=St(v(_e)),{getEntityRecord:R,getPostType:T}=v(Me),{get:E}=v(ht),B=k();return{deviceType:y(),homeUrl:R("root","__unstableBase")?.home,isTemplate:B==="wp_template",isViewable:(M=T(B)?.viewable)!==null&&M!==void 0?M:!1,showIconLabels:E("core","showIconLabels"),isTemplateHidden:C()==="post-only",templateId:S()}},[]),{setDeviceType:u,setRenderingMode:d}=Oe(_e),{resetZoomLevel:p}=St(Oe(Q)),f=v=>{u(v),p()};if(Yn("medium","<"))return null;const h={placement:"bottom-end"},g={className:"editor-preview-dropdown__toggle",iconPosition:"right",size:"compact",showTooltip:!i,disabled:t,accessibleWhenDisabled:t},z={"aria-label":m("View options")},A={desktop:KK,mobile:YK,tablet:QK},_=[{value:"Desktop",label:m("Desktop"),icon:KK},{value:"Tablet",label:m("Tablet"),icon:QK},{value:"Mobile",label:m("Mobile"),icon:YK}];return a.jsx(c0,{className:oe("editor-preview-dropdown",`editor-preview-dropdown--${n.toLowerCase()}`),popoverProps:h,toggleProps:g,menuProps:z,icon:A[n.toLowerCase()],label:m("View"),disableOpenOnArrowDown:t,children:({onClose:v})=>a.jsxs(a.Fragment,{children:[a.jsx(Cn,{children:a.jsx(kf,{choices:_,value:n,onSelect:f})}),r&&a.jsx(Cn,{children:a.jsxs(Ct,{href:o,target:"_blank",icon:vf,onClick:v,children:[m("View site"),a.jsx(qn,{as:"span",children:m("(opens in a new tab)")})]})}),!r&&!!l&&a.jsx(Cn,{children:a.jsx(Ct,{icon:c?void 0:M0,isSelected:!c,role:"menuitemcheckbox",onClick:()=>{d(c?"template-locked":"post-only")},children:m("Show template")})}),s&&a.jsx(Cn,{children:a.jsx(dye,{className:"editor-preview-dropdown__button-external",role:"menuitem",forceIsAutosaveable:e,"aria-label":m("Preview in new tab"),textContent:a.jsxs(a.Fragment,{children:[m("Preview in new tab"),a.jsx(qo,{icon:vf})]}),onPreview:v})}),a.jsx(IO.Slot,{name:"core/plugin-preview-menu",fillProps:{onClick:v}})]})})}const SKt=({disabled:e})=>{const{isZoomOut:t,showIconLabels:n,isDistractionFree:o}=G(u=>({isZoomOut:St(u(Q)).isZoomOut(),showIconLabels:u(ht).get("core","showIconLabels"),isDistractionFree:u(ht).get("core","distractionFree")})),{resetZoomLevel:r,setZoomLevel:s}=St(Oe(Q)),{registerShortcut:i,unregisterShortcut:c}=Oe(Pi);x.useEffect(()=>(i({name:"core/editor/zoom",category:"global",description:m("Enter or exit zoom out."),keyCombination:{modifier:da()?"primaryShift":"secondary",character:"0"}}),()=>{c("core/editor/zoom")}),[i,c]),p0("core/editor/zoom",()=>{t?r():s("auto-scaled")},{isDisabled:o});const l=()=>{t?r():s("auto-scaled")};return a.jsx(Ce,{accessibleWhenDisabled:!0,disabled:e,onClick:l,icon:DQe,label:m("Zoom Out"),isPressed:t,size:"compact",showTooltip:!n,className:"editor-zoom-out-toggle"})},CKt=window?.__experimentalEnableBlockComment,TT={distractionFreeDisabled:{y:"-50px"},distractionFreeHover:{y:0},distractionFreeHidden:{y:"-50px"},visible:{y:0},hidden:{y:0}},qKt={distractionFreeDisabled:{x:"-100%"},distractionFreeHover:{x:0},distractionFreeHidden:{x:"-100%"},visible:{x:0},hidden:{x:0}};function RKt({customSaveButton:e,forceIsDirty:t,forceDisableBlockTools:n,setEntitiesSavedStatesCallback:o,title:r}){const s=Yn("large"),i=Yn("medium"),c=XN("(max-width: 403px)"),{postType:l,isTextEditor:u,isPublishSidebarOpened:d,showIconLabels:p,hasFixedToolbar:f,hasBlockSelection:b}=G(y=>{const{get:k}=y(ht),{getEditorMode:S,getCurrentPostType:C,isPublishSidebarOpened:R}=y(_e);return{postType:C(),isTextEditor:S()==="text",isPublishSidebarOpened:R(),showIconLabels:k("core","showIconLabels"),hasFixedToolbar:k("core","fixedToolbar"),hasBlockSelection:!!y(Q).getBlockSelectionStart()}},[]),h=["post","page","wp_template"].includes(l),g=[Wf,Di,$l].includes(l),[z,A]=x.useState(!0),_=!c&&(!f||f&&(!b||z)),v=eKt(),M=G(y=>!!St(y(Q)).getSectionRootClientId(),[]);return a.jsxs("div",{className:"editor-header edit-post-header",children:[v&&a.jsx(Rr.div,{className:"editor-header__back-button",variants:qKt,transition:{type:"tween"},children:a.jsx(KI.Slot,{})}),a.jsxs(Rr.div,{variants:TT,className:"editor-header__toolbar",transition:{type:"tween"},children:[a.jsx(MKt,{disableBlockTools:n||u}),f&&i&&a.jsx(gKt,{isCollapsed:z,onToggle:A})]}),_&&a.jsx(Rr.div,{className:"editor-header__center",variants:TT,transition:{type:"tween"},children:a.jsx(HHt,{title:r})}),a.jsxs(Rr.div,{variants:TT,transition:{type:"tween"},className:"editor-header__settings",children:[!e&&!d&&a.jsx(uGt,{forceIsDirty:t}),a.jsx(_Kt,{}),a.jsx(kKt,{forceIsAutosaveable:t,disabled:g}),a.jsx(dye,{className:"editor-header__post-preview-button",forceIsAutosaveable:t}),h&&s&&M&&a.jsx(SKt,{disabled:n}),(s||!p)&&a.jsx(ak.Slot,{scope:"core"}),!e&&a.jsx(wKt,{forceIsDirty:t,setEntitiesSavedStatesCallback:o}),CKt?a.jsx(hKt,{}):void 0,e,a.jsx(xKt,{})]})]})}const{PrivateInserterLibrary:TKt}=St(jn);function EKt(){const{blockSectionRootClientId:e,inserterSidebarToggleRef:t,inserter:n,showMostUsedBlocks:o,sidebarIsOpened:r}=G(f=>{const{getInserterSidebarToggleRef:b,getInserter:h,isPublishSidebarOpened:g}=St(f(_e)),{getBlockRootClientId:z,isZoomOut:A,getSectionRootClientId:_}=St(f(Q)),{get:v}=f(ht),{getActiveComplementaryArea:M}=f(xo),y=()=>{if(A()){const k=_();if(k)return k}return z()};return{inserterSidebarToggleRef:b(),inserter:h(),showMostUsedBlocks:v("core","mostUsedBlocks"),blockSectionRootClientId:y(),sidebarIsOpened:!!(M("core")||g())}},[]),{setIsInserterOpened:s}=Oe(_e),{disableComplementaryArea:i}=Oe(xo),c=Yn("medium","<"),l=x.useRef(),u=x.useCallback(()=>{s(!1),t.current?.focus()},[t,s]),d=x.useCallback(f=>{f.keyCode===gd&&!f.defaultPrevented&&(f.preventDefault(),u())},[u]),p=a.jsx("div",{className:"editor-inserter-sidebar__content",children:a.jsx(TKt,{showMostUsedBlocks:o,showInserterHelpPanel:!0,shouldFocusBlock:c,rootClientId:e,onSelect:n.onSelect,__experimentalInitialTab:n.tab,__experimentalInitialCategory:n.category,__experimentalFilterValue:n.filterValue,onPatternCategorySelection:r?()=>i("core"):void 0,ref:l,onClose:u})});return a.jsx("div",{onKeyDown:d,className:"editor-inserter-sidebar",children:p})}function WKt(){return a.jsxs(a.Fragment,{children:[a.jsxs("div",{className:"editor-list-view-sidebar__outline",children:[a.jsxs("div",{children:[a.jsx(Sn,{children:m("Characters:")}),a.jsx(Sn,{children:a.jsx(PGt,{})})]}),a.jsxs("div",{children:[a.jsx(Sn,{children:m("Words:")}),a.jsx(NGt,{})]}),a.jsxs("div",{children:[a.jsx(Sn,{children:m("Time to read:")}),a.jsx(LGt,{})]})]}),a.jsx(QHt,{})]})}const{TabbedSidebar:NKt}=St(jn);function BKt(){const{setIsListViewOpened:e}=Oe(_e),{getListViewToggleRef:t}=St(G(_e)),n=T5("firstElement"),o=x.useCallback(()=>{e(!1),t().current?.focus()},[t,e]),r=x.useCallback(g=>{g.keyCode===gd&&!g.defaultPrevented&&(g.preventDefault(),o())},[o]),[s,i]=x.useState(null),[c,l]=x.useState("list-view"),u=x.useRef(),d=x.useRef(),p=x.useRef(),f=xn([n,p,i]);function b(g){const z=Xr.tabbable.find(d.current)[0];if(g==="list-view"){const A=Xr.tabbable.find(p.current)[0];(u.current.contains(A)?A:z).focus()}else z.focus()}const h=x.useCallback(()=>{u.current.contains(u.current.ownerDocument.activeElement)?o():b(c)},[o,c]);return p0("core/editor/toggle-list-view",h),a.jsx("div",{className:"editor-list-view-sidebar",onKeyDown:r,ref:u,children:a.jsx(NKt,{tabs:[{name:"list-view",title:We("List View","Post overview"),panel:a.jsx("div",{className:"editor-list-view-sidebar__list-view-container",children:a.jsx("div",{className:"editor-list-view-sidebar__list-view-panel-content",children:a.jsx(Z8t,{dropZoneElement:s})})}),panelRef:f},{name:"outline",title:We("Outline","Post overview"),panel:a.jsx("div",{className:"editor-list-view-sidebar__list-view-container",children:a.jsx(WKt,{})})}],onClose:o,onSelect:g=>l(g),defaultTabId:"list-view",ref:d,closeButtonLabel:m("Close")})})}const{Fill:cgn,Slot:LKt}=Qn("ActionsPanel");function PKt({setEntitiesSavedStatesCallback:e,closeEntitiesSavedStates:t,isEntitiesSavedStatesOpen:n,forceIsDirtyPublishPanel:o}){const{closePublishSidebar:r,togglePublishSidebar:s}=Oe(_e),{publishSidebarOpened:i,isPublishable:c,isDirty:l,hasOtherEntitiesChanges:u}=G(f=>{const{isPublishSidebarOpened:b,isEditedPostPublishable:h,isCurrentPostPublished:g,isEditedPostDirty:z,hasNonPostEntityChanges:A}=f(_e),_=A();return{publishSidebarOpened:b(),isPublishable:!g()&&h(),isDirty:_||z(),hasOtherEntitiesChanges:_}},[]),d=x.useCallback(()=>e(!0),[]);let p;return i?p=a.jsx(iGt,{onClose:r,forceIsDirty:o,PrePublishExtension:iye.Slot,PostPublishExtension:rye.Slot}):c&&!u?p=a.jsx("div",{className:"editor-layout__toggle-publish-panel",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:s,"aria-expanded":!1,children:m("Open publish panel")})}):p=a.jsx("div",{className:"editor-layout__toggle-entities-saved-states-panel",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:d,"aria-expanded":!1,"aria-haspopup":"dialog",disabled:!l,accessibleWhenDisabled:!0,children:m("Open save panel")})}),a.jsxs(a.Fragment,{children:[n&&a.jsx(hUt,{close:t,renderDialog:!0}),a.jsx(LKt,{bubblesVirtually:!0}),!n&&p]})}function jKt({autoFocus:e=!1}){const{switchEditorMode:t}=Oe(_e),{shortcut:n,isRichEditingEnabled:o}=G(s=>{const{getEditorSettings:i}=s(_e),{getShortcutRepresentation:c}=s(Pi);return{shortcut:c("core/editor/toggle-mode"),isRichEditingEnabled:i().richEditingEnabled}},[]),r=x.useRef();return x.useEffect(()=>{e||r?.current?.focus()},[e]),a.jsxs("div",{className:"editor-text-editor",children:[o&&a.jsxs("div",{className:"editor-text-editor__toolbar",children:[a.jsx("h2",{children:m("Editing code")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>t("visual"),shortcut:n,children:m("Exit code editor")})]}),a.jsxs("div",{className:"editor-text-editor__body",children:[a.jsx(Rye,{ref:r}),a.jsx(XI,{})]})]})}function IKt({contentRef:e}){const{onNavigateToEntityRecord:t,templateId:n}=G(i=>{const{getEditorSettings:c,getCurrentTemplateId:l}=i(_e);return{onNavigateToEntityRecord:c().onNavigateToEntityRecord,templateId:l()}},[]),o=G(i=>!!i(Me).canUser("create",{kind:"postType",name:"wp_template"}),[]),[r,s]=x.useState(!1);return x.useEffect(()=>{const i=l=>{o&&(!l.target.classList.contains("is-root-container")||l.target.dataset?.type==="core/template-part"||l.defaultPrevented||(l.preventDefault(),s(!0)))},c=e.current;return c?.addEventListener("dblclick",i),()=>{c?.removeEventListener("dblclick",i)}},[e,o]),o?a.jsx(wf,{isOpen:r,confirmButtonText:m("Edit template"),onConfirm:()=>{s(!1),t({postId:n,postType:"wp_template"})},onCancel:()=>s(!1),size:"medium",children:m("You’ve tried to select a block that is part of a template, which may be used on other posts and pages. Would you like to edit the template?")}):null}const kne=20;function Sne({direction:e,resizeWidthBy:t}){function n(s){const{keyCode:i}=s;i!==wi&&i!==_i||(s.preventDefault(),e==="left"&&i===wi||e==="right"&&i===_i?t(kne):(e==="left"&&i===_i||e==="right"&&i===wi)&&t(-kne))}const o={active:{opacity:1,scaleY:1.3}},r=`resizable-editor__resize-help-${e}`;return a.jsxs(a.Fragment,{children:[a.jsx(B0,{text:m("Drag to resize"),children:a.jsx(Rr.button,{className:`editor-resizable-editor__resize-handle is-${e}`,"aria-label":m("Drag to resize"),"aria-describedby":r,onKeyDown:n,variants:o,whileFocus:"active",whileHover:"active",whileTap:"active",role:"separator","aria-orientation":"vertical"},"handle")}),a.jsx(qn,{id:r,children:m("Use left and right arrow keys to resize the canvas.")})]})}const Cne={position:void 0,userSelect:void 0,cursor:void 0,width:void 0,height:void 0,top:void 0,right:void 0,bottom:void 0,left:void 0};function Pye({className:e,enableResizing:t,height:n,children:o}){const[r,s]=x.useState("100%"),i=x.useRef(),c=x.useCallback(l=>{i.current&&s(i.current.offsetWidth+l)},[]);return a.jsx(Ca,{className:oe("editor-resizable-editor",e,{"is-resizable":t}),ref:l=>{i.current=l?.resizable},size:{width:t?r:"100%",height:t&&n?n:"100%"},onResizeStop:(l,u,d)=>{s(d.style.width)},minWidth:300,maxWidth:"100%",maxHeight:"100%",enable:{left:t,right:t},showHandle:t,resizeRatio:2,handleComponent:{left:a.jsx(Sne,{direction:"left",resizeWidthBy:c}),right:a.jsx(Sne,{direction:"right",resizeWidthBy:c})},handleClasses:void 0,handleStyles:{left:Cne,right:Cne},children:o})}const DKt=500;function qne(e,t,n){return Math.min(Math.max(e,t),n)}function FKt(e,t,n){const o=e-qne(e,n.left,n.right),r=t-qne(t,n.top,n.bottom);return Math.sqrt(o*o+r*r)}function $Kt({isEnabled:e=!0}={}){const{getEnabledClientIdsTree:t,getBlockName:n,getBlockOrder:o}=St(G(Q)),{selectBlock:r}=Oe(Q);return Mn(s=>{if(!e)return;const i=(l,u)=>{const d=t().flatMap(({clientId:b})=>{const h=n(b);if(h==="core/template-part")return[];if(h==="core/post-content"){const g=o(b);if(g.length)return g}return[b]});let p=1/0,f=null;for(const b of d){const h=s.querySelector(`[data-block="${b}"]`);if(!h)continue;const g=h.getBoundingClientRect(),z=FKt(l,u,g);z<p&&z<DKt&&(p=z,f=b)}f&&r(f)},c=l=>{(l.target===s||l.target.classList.contains("is-root-container"))&&i(l.clientX,l.clientY)};return s.addEventListener("click",c),()=>s.removeEventListener("click",c)},[e])}function VKt(){const{getSettings:e,isZoomOut:t}=St(G(Q)),{resetZoomLevel:n}=St(Oe(Q));return Mn(o=>{function r(s){if(t()&&!s.defaultPrevented){s.preventDefault();const{__experimentalSetIsInserterOpened:i}=e();typeof i=="function"&&i(!1),n()}}return o.addEventListener("dblclick",r),()=>{o.removeEventListener("dblclick",r)}},[e,t,n])}const{LayoutStyle:_v,useLayoutClasses:HKt,useLayoutStyles:UKt,ExperimentalBlockCanvas:XKt,useFlashEditableBlocks:GKt}=St(jn),KKt=[$l,L0,Wf,Di];function lN(e){for(let t=0;t<e.length;t++){if(e[t].name==="core/post-content")return e[t].attributes;if(e[t].innerBlocks.length){const n=lN(e[t].innerBlocks);if(n)return n}}}function Rne(e){for(let t=0;t<e.length;t++)if(e[t].name==="core/post-content")return!0;return!1}function YKt({autoFocus:e,styles:t,disableIframe:n=!1,iframeProps:o,contentRef:r,className:s}){const[i,c]=x.useState(""),l=js(([ye])=>{c(ye.borderBoxSize[0].blockSize)}),u=Yn("small","<"),{renderingMode:d,postContentAttributes:p,editedPostTemplate:f={},wrapperBlockName:b,wrapperUniqueId:h,deviceType:g,isFocusedEntity:z,isDesignPostType:A,postType:_,isPreview:v}=G(ye=>{const{getCurrentPostId:Ne,getCurrentPostType:je,getCurrentTemplateId:ie,getEditorSettings:we,getRenderingMode:re,getDeviceType:pe}=ye(_e),{getPostType:ke,getEditedEntityRecord:Se}=ye(Me),se=je(),L=re();let U;se===$l?U="core/block":L==="post-only"&&(U="core/post-content");const ne=we(),ve=ne.supportsTemplateMode,qe=ke(se),Pe=ie(),rt=Pe?Se("postType",L0,Pe):void 0;return{renderingMode:L,postContentAttributes:ne.postContentAttributes,isDesignPostType:KKt.includes(se),editedPostTemplate:qe?.viewable&&ve?rt:void 0,wrapperBlockName:U,wrapperUniqueId:Ne(),deviceType:pe(),isFocusedEntity:!!ne.onNavigateToPreviousEntityRecord,postType:se,isPreview:ne.isPreviewMode}},[]),{isCleanNewPost:M}=G(_e),{hasRootPaddingAwareAlignments:y,themeHasDisabledLayoutStyles:k,themeSupportsLayout:S,isZoomedOut:C}=G(ye=>{const{getSettings:Ne,isZoomOut:je}=St(ye(Q)),ie=Ne();return{themeHasDisabledLayoutStyles:ie.disableLayoutStyles,themeSupportsLayout:ie.supportsLayout,hasRootPaddingAwareAlignments:ie.__experimentalFeatures?.useRootPaddingAwareAlignments,isZoomedOut:je()}},[]),R=WNt(g),[T]=Un("layout"),E=x.useMemo(()=>d!=="post-only"||A?{type:"default"}:S?{...T,type:"constrained"}:{type:"default"},[d,S,T,A]),B=x.useMemo(()=>{if(!f?.content&&!f?.blocks&&p)return p;if(f?.blocks)return lN(f?.blocks);const ye=typeof f?.content=="string"?f?.content:"";return lN(Ko(ye))||{}},[f?.content,f?.blocks,p]),N=x.useMemo(()=>{if(!f?.content&&!f?.blocks)return!1;if(f?.blocks)return Rne(f?.blocks);const ye=typeof f?.content=="string"?f?.content:"";return Rne(Ko(ye))||!1},[f?.content,f?.blocks]),{layout:j={},align:I=""}=B||{},P=HKt(B,"core/post-content"),$=oe({"is-layout-flow":!S},S&&P,I&&`align${I}`),F=UKt(B,"core/post-content",".block-editor-block-list__layout.is-root-container"),X=x.useMemo(()=>j&&(j?.type==="constrained"||j?.inherit||j?.contentSize||j?.wideSize)?{...T,...j,type:"constrained"}:{...T,...j,type:"default"},[j?.type,j?.inherit,j?.contentSize,j?.wideSize,T]),Z=p?X:E,V=Z?.type==="default"&&!N?E:Z,ee=Ege(),te=x.useRef();x.useEffect(()=>{!e||!M()||te?.current?.focus()},[e,M]);const J=`.is-root-container.alignwide { max-width: var(--wp--style--global--wide-size); margin-left: auto; margin-right: auto;} .is-root-container.alignwide:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: var(--wp--style--global--wide-size);} .is-root-container.alignfull { max-width: none; margin-left: auto; margin-right: auto;} - .is-root-container.alignfull:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: none;}`,ue=_===Wf,ce=[Wf,Fi,Vl].includes(_)&&!v&&!u&&!C,me=x.useMemo(()=>[...t??[],{css:`:where(.block-editor-iframe__body){display:flow-root;}.is-root-container{display:flow-root;${ce?"min-height:0!important;":""}}`}],[t,ce]),de=x.useRef(),Ae=tBt();return r=xn([de,r,d==="post-only"?Ae:null,GKt({isEnabled:d==="template-locked"}),$Kt({isEnabled:d==="template-locked"}),VKt(),ce?l:null]),a.jsx("div",{className:oe("editor-visual-editor","edit-post-visual-editor",s,{"has-padding":z||ce,"is-resizable":ce,"is-iframed":!n,"is-scrollable":n||g!=="Desktop"}),children:a.jsx(jye,{enableResizing:ce,height:i&&!ue?i:"100%",children:a.jsxs(XKt,{shouldIframe:!n,contentRef:r,styles:me,height:"100%",iframeProps:{...o,style:{...o?.style,...R}},children:[S&&!k&&d==="post-only"&&!A&&a.jsxs(a.Fragment,{children:[a.jsx(kv,{selector:".editor-visual-editor__post-title-wrapper",layout:E}),a.jsx(kv,{selector:".block-editor-block-list__layout.is-root-container",layout:V}),I&&a.jsx(kv,{css:J}),F&&a.jsx(kv,{layout:X,css:F})]}),d==="post-only"&&!A&&a.jsx("div",{className:oe("editor-visual-editor__post-title-wrapper","edit-post-visual-editor__post-title-wrapper",{"has-global-padding":y}),contentEditable:!1,ref:ee,style:{marginTop:"4rem"},children:a.jsx(Rye,{ref:te})}),a.jsxs(TO,{blockName:b,uniqueId:h,children:[a.jsx(I_,{className:oe("is-"+g.toLowerCase()+"-preview",d!=="post-only"||A?"wp-site-blocks":`${$} wp-block-post-content`,{"has-global-padding":d==="post-only"&&!A&&y}),layout:Z,dropZoneElement:n?de.current:de.current?.parentNode,__unstableDisableDropZone:d==="template-locked"}),d==="template-locked"&&a.jsx(IKt,{contentRef:de})]})]})})})}const ZKt={header:m("Editor top bar"),body:m("Editor content"),sidebar:m("Editor settings"),actions:m("Editor publish"),footer:m("Editor footer")};function QKt({className:e,styles:t,children:n,forceIsDirty:o,contentRef:r,disableIframe:s,autoFocus:i,customSaveButton:c,customSavePanel:l,forceDisableBlockTools:u,title:d,iframeProps:p}){const{mode:f,isRichEditingEnabled:b,isInserterOpened:h,isListViewOpened:g,isDistractionFree:z,isPreviewMode:A,showBlockBreadcrumbs:_,documentLabel:v}=G(R=>{const{get:T}=R(ht),{getEditorSettings:E,getPostTypeLabel:B}=R(_e),N=E(),j=B();return{mode:R(_e).getEditorMode(),isRichEditingEnabled:N.richEditingEnabled,isInserterOpened:R(_e).isInserterOpened(),isListViewOpened:R(_e).isListViewOpened(),isDistractionFree:T("core","distractionFree"),isPreviewMode:N.isPreviewMode,showBlockBreadcrumbs:T("core","showBlockBreadcrumbs"),documentLabel:j||We("Document","noun, breadcrumb")}},[]),M=Yn("medium"),y=m(g?"Document Overview":"Block Library"),[k,S]=x.useState(!1),C=x.useCallback(R=>{typeof k=="function"&&k(R),S(!1)},[k]);return a.jsx(FOe,{isDistractionFree:z,className:oe("editor-editor-interface",e,{"is-entity-save-view-open":!!k,"is-distraction-free":z&&!A}),labels:{...ZKt,secondarySidebar:y},header:!A&&a.jsx(RKt,{forceIsDirty:o,setEntitiesSavedStatesCallback:S,customSaveButton:c,forceDisableBlockTools:u,title:d}),editorNotices:a.jsx(cne,{}),secondarySidebar:!A&&f==="visual"&&(h&&a.jsx(EKt,{})||g&&a.jsx(BKt,{})),sidebar:!A&&!z&&a.jsx(lk.Slot,{scope:"core"}),content:a.jsxs(a.Fragment,{children:[!z&&!A&&a.jsx(cne,{}),a.jsx(Pye.Slot,{children:([R])=>R||a.jsxs(a.Fragment,{children:[!A&&(f==="text"||!b)&&a.jsx(jKt,{autoFocus:i}),!A&&!M&&f==="visual"&&a.jsx(pI,{hideDragHandle:!0}),(A||b&&f==="visual")&&a.jsx(YKt,{styles:t,contentRef:r,disableIframe:s,autoFocus:i,iframeProps:p}),n]})})]}),footer:!A&&!z&&M&&_&&b&&f==="visual"&&a.jsx(Svt,{rootLabelText:v}),actions:A?void 0:l||a.jsx(PKt,{closeEntitiesSavedStates:C,isEntitiesSavedStatesOpen:k,setEntitiesSavedStatesCallback:S,forceIsDirtyPublishPanel:o})})}const{OverridesPanel:JKt}=St(Hi);function eYt(){return G(t=>t(_e).getCurrentPostType()==="wp_block",[])?a.jsx(JKt,{}):null}function r5(e){return typeof e.title=="string"?Lt(e.title):e.title&&"rendered"in e.title?Lt(e.title.rendered):e.title&&"raw"in e.title?Lt(e.title.raw):""}const tYt=({items:e,closeModal:t})=>{const[n]=e,o=r5(n),{showOnFront:r,currentHomePage:s,isSaving:i}=G(h=>{const{getEntityRecord:g,isSavingEntityRecord:z}=h(Me),A=g("root","site"),_=g("postType","page",A?.page_on_front);return{showOnFront:A?.show_on_front,currentHomePage:_,isSaving:z("root","site")}}),{saveEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(h){h.preventDefault();try{await c("root","site",{page_on_front:n.id,show_on_front:"page"}),l(m("Homepage updated."),{type:"snackbar"})}catch(g){const z=g.message&&g.code!=="unknown_error"?g.message:m("An error occurred while setting the homepage.");u(z,{type:"snackbar"})}finally{t?.()}}let p="";r==="posts"?p=m("This will replace the current homepage which is set to display latest posts."):s&&(p=xe(m('This will replace the current homepage: "%s"'),r5(s)));const f=xe(m('Set "%1$s" as the site homepage? %2$s'),o,p).trim(),b=m("Set homepage");return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:f}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},disabled:i,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",disabled:i,accessibleWhenDisabled:!0,children:b})]})]})})},nYt=()=>{const{pageOnFront:e,pageForPosts:t}=G(n=>{const{getEntityRecord:o,canUser:r}=n(Me),s=r("read",{kind:"root",name:"site"})?o("root","site"):void 0;return{pageOnFront:s?.page_on_front,pageForPosts:s?.page_for_posts}});return x.useMemo(()=>({id:"set-as-homepage",label:m("Set as homepage"),isEligible(n){return!(n.status!=="publish"||n.type!=="page"||e===n.id||t===n.id)},RenderModal:tYt}),[t,e])},oYt=({items:e,closeModal:t})=>{const[n]=e,o=r5(n),{currentPostsPage:r,isPageForPostsSet:s,isSaving:i}=G(h=>{const{getEntityRecord:g,isSavingEntityRecord:z}=h(Me),A=g("root","site");return{currentPostsPage:g("postType","page",A?.page_for_posts),isPageForPostsSet:A?.page_for_posts!==0,isSaving:z("root","site")}}),{saveEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(h){h.preventDefault();try{await c("root","site",{page_for_posts:n.id,show_on_front:"page"}),l(m("Posts page updated."),{type:"snackbar"})}catch(g){const z=g.message&&g.code!=="unknown_error"?g.message:m("An error occurred while setting the posts page.");u(z,{type:"snackbar"})}finally{t?.()}}const p=s&&r?xe(m('This will replace the current posts page: "%s"'),r5(r)):m("This page will show the latest posts."),f=xe(m('Set "%1$s" as the posts page? %2$s'),o,p),b=m("Set posts page");return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:f}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},disabled:i,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",disabled:i,accessibleWhenDisabled:!0,children:b})]})]})})},rYt=()=>{const{pageOnFront:e,pageForPosts:t}=G(n=>{const{getEntityRecord:o,canUser:r}=n(Me),s=r("read",{kind:"root",name:"site"})?o("root","site"):void 0;return{pageOnFront:s?.page_on_front,pageForPosts:s?.page_for_posts}});return x.useMemo(()=>({id:"set-as-posts-page",label:m("Set as posts page"),isEligible(n){return!(n.status!=="publish"||n.type!=="page"||e===n.id||t===n.id)},RenderModal:oYt}),[t,e])};function Iye({postType:e,onActionPerformed:t,context:n}){const{defaultActions:o}=G(d=>{const{getEntityActions:p}=St(d(_e));return{defaultActions:p("postType",e)}},[e]),{canManageOptions:r,hasFrontPageTemplate:s}=G(d=>{const{getEntityRecords:p}=d(Me),f=p("postType","wp_template",{per_page:-1});return{canManageOptions:d(Me).canUser("update",{kind:"root",name:"site"}),hasFrontPageTemplate:!!f?.find(b=>b?.slug==="front-page")}}),i=nYt(),c=rYt(),l=r&&!s,{registerPostTypeSchema:u}=St(Oe(_e));return x.useEffect(()=>{u(e)},[u,e]),x.useMemo(()=>{let d=[...o];if(l&&d.push(i,c),d=d.sort((p,f)=>f.id==="move-to-trash"?-1:0),d=d.filter(p=>p.context?p.context===n:!0),t)for(let p=0;p<d.length;++p){if(d[p].callback){const f=d[p].callback;d[p]={...d[p],callback:(b,h)=>{f(b,{...h,onActionPerformed:g=>{h?.onActionPerformed&&h.onActionPerformed(g),t(d[p].id,g)}})}}}if(d[p].RenderModal){const f=d[p].RenderModal;d[p]={...d[p],RenderModal:b=>a.jsx(f,{...b,onActionPerformed:h=>{b.onActionPerformed&&b.onActionPerformed(h),t(d[p].id,h)}})}}}return d},[n,o,t,i,c,l])}const{Menu:H2,kebabCase:sYt}=St(tr);function iYt(e,t){const{items:n,permissions:o}=G(r=>{const{getEditedEntityRecord:s,getEntityRecordPermissions:i}=St(r(Me));return{items:t.map(c=>s("postType",e,c)),permissions:t.map(c=>i("postType",e,c))}},[t,e]);return x.useMemo(()=>n.map((r,s)=>({...r,permissions:o[s]})),[n,o])}function aYt({postType:e,postId:t,onActionPerformed:n}){const[o,r]=x.useState(null),s=x.useMemo(()=>Array.isArray(t)?t:t?[t]:[],[t]),i=iYt(e,s),c=Iye({postType:e,onActionPerformed:n}),l=x.useMemo(()=>c.filter(u=>(!u.isEligible||i.some(d=>u.isEligible(d)))&&(i.length<2||u.supportsBulk)),[c,i]);return a.jsxs(a.Fragment,{children:[a.jsxs(H2,{placement:"bottom-end",children:[a.jsx(H2.TriggerButton,{render:a.jsx(Ce,{size:"small",icon:Wc,label:m("Actions"),disabled:!l.length,accessibleWhenDisabled:!0,className:"editor-all-actions-button"})}),a.jsx(H2.Popover,{children:a.jsx(uYt,{actions:l,items:i,setActiveModalAction:r})})]}),!!o&&a.jsx(lYt,{action:o,items:i,closeModal:()=>r(null)})]})}function cYt({action:e,onClick:t,items:n}){const o=typeof e.label=="string"?e.label:e.label(n);return a.jsx(H2.Item,{onClick:t,children:a.jsx(H2.ItemLabel,{children:o})})}function lYt({action:e,items:t,closeModal:n}){const o=typeof e.label=="string"?e.label:e.label(t);return a.jsx(Zo,{title:e.modalHeader||o,__experimentalHideHeader:!!e.hideModalHeader,onRequestClose:n??(()=>{}),focusOnMount:"firstContentElement",size:"medium",overlayClassName:`editor-action-modal editor-action-modal__${sYt(e.id)}`,children:a.jsx(e.RenderModal,{items:t,closeModal:n})})}function uYt({actions:e,items:t,setActiveModalAction:n}){const o=Fn();return a.jsx(H2.Group,{children:e.map(r=>a.jsx(cYt,{action:r,onClick:()=>{if("RenderModal"in r){n(r);return}r.callback(t,{registry:o})},items:t},r.id))})}const{Badge:dYt}=St(tr);function Dye({postType:e,postId:t,onActionPerformed:n}){const o=x.useMemo(()=>Array.isArray(t)?t:[t],[t]),{postTitle:r,icon:s,labels:i}=G(u=>{const{getEditedEntityRecord:d,getEntityRecord:p,getPostType:f}=u(Me),{getPostIcon:b}=St(u(_e));let h="";const g=d("postType",e,o[0]);if(o.length===1){var z;const{default_template_types:A=[]}=(z=p("root","__unstableBase"))!==null&&z!==void 0?z:{};h=([L0,Fi].includes(e)?LO({template:g,templateTypes:A}):{})?.title||g?.title}return{postTitle:h,icon:b(e,{area:g?.area}),labels:f(e)?.labels}},[o,e]),c=KOe(t);let l=m("No title");return i?.name&&o.length>1?l=xe(m("%i %s"),t.length,i?.name):r&&(l=v1(r)),a.jsxs(dt,{spacing:1,className:"editor-post-card-panel",children:[a.jsxs(Ot,{spacing:2,className:"editor-post-card-panel__header",align:"flex-start",children:[a.jsx(qo,{className:"editor-post-card-panel__icon",icon:s}),a.jsxs(Sn,{numberOfLines:2,truncate:!0,className:"editor-post-card-panel__title",as:"h2",children:[a.jsx("span",{className:"editor-post-card-panel__title-name",children:l}),c&&o.length===1&&a.jsx(dYt,{children:c})]}),a.jsx(aYt,{postType:e,postId:t,onActionPerformed:n})]}),o.length>1&&a.jsx(Sn,{className:"editor-post-card-panel__description",children:xe(m("Changes will be applied to all selected %s."),i?.name.toLowerCase())})]})}const pYt=189;function fYt(){const{postContent:e}=G(i=>{const{getEditedPostAttribute:c,getCurrentPostType:l,getCurrentPostId:u}=i(_e),{canUser:d}=i(Me),{getEntityRecord:p}=i(Me),f=d("read",{kind:"root",name:"site"})?p("root","site"):void 0,b=l();return{postContent:!(+u()===f?.page_for_posts)&&![L0,Fi].includes(b)&&c("content")}},[]),t=We("words","Word count type. Do not translate!"),n=x.useMemo(()=>e?DO(e,t):0,[e,t]);if(!n)return null;const o=Math.round(n/pYt),r=xe(Dn("%s word","%s words",n),n.toLocaleString()),s=o<=1?m("1 minute"):xe(Dn("%s minute","%s minutes",o),o.toLocaleString());return a.jsx("div",{className:"editor-post-content-information",children:a.jsx(Sn,{children:xe(m("%1$s, %2$s read time."),r,s)})})}function bYt(){const{postFormat:e}=G(s=>{const{getEditedPostAttribute:i}=s(_e),c=i("format");return{postFormat:c??"standard"}},[]),t=XI.find(s=>s.id===e),[n,o]=x.useState(null),r=x.useMemo(()=>({anchor:n,placement:"left-start",offset:36,shift:!0}),[n]);return a.jsx(uye,{children:a.jsx(xs,{label:m("Format"),ref:o,children:a.jsx(so,{popoverProps:r,contentClassName:"editor-post-format__dialog",focusOnMount:!0,renderToggle:({isOpen:s,onToggle:i})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":s,"aria-label":xe(m("Change format: %s"),t?.caption),onClick:i,children:t?.caption}),renderContent:({onClose:s})=>a.jsxs("div",{className:"editor-post-format__dialog-content",children:[a.jsx(Qs,{title:m("Format"),onClose:s}),a.jsx(dye,{})]})})})})}function hYt(){const e=G(n=>n(_e).getEditedPostAttribute("modified"),[]),t=e&&xe(m("Last edited %s."),c_(e));return t?a.jsx("div",{className:"editor-post-last-edited-panel",children:a.jsx(Sn,{children:t})}):null}function mYt({className:e,children:t}){return a.jsx(dt,{className:oe("editor-post-panel__section",e),children:t})}const gYt={};function MYt(){const{editEntityRecord:e}=Oe(Me),{postsPageTitle:t,postsPageId:n,isTemplate:o,postSlug:r}=G(d=>{const{getEntityRecord:p,getEditedEntityRecord:f,canUser:b}=d(Me),h=b("read",{kind:"root",name:"site"})?p("root","site"):void 0,g=h?.page_for_posts?f("postType","page",h?.page_for_posts):gYt,{getEditedPostAttribute:z,getCurrentPostType:A}=d(_e);return{postsPageId:g?.id,postsPageTitle:g?.title,isTemplate:A()===L0,postSlug:z("slug")}},[]),[s,i]=x.useState(null),c=x.useMemo(()=>({anchor:s,placement:"left-start",offset:36,shift:!0}),[s]);if(!o||!["home","index"].includes(r)||!n)return null;const l=d=>{e("postType","page",n,{title:d})},u=Lt(t);return a.jsx(xs,{label:m("Blog title"),ref:i,children:a.jsx(so,{popoverProps:c,contentClassName:"editor-blog-title-dropdown__content",focusOnMount:!0,renderToggle:({isOpen:d,onToggle:p})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":d,"aria-label":xe(m("Change blog title: %s"),u),onClick:p,children:u}),renderContent:({onClose:d})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Blog title"),onClose:d}),a.jsx(N1,{placeholder:m("No title"),size:"__unstable-large",value:t,onChange:F1(l,300),label:m("Blog title"),help:m("Set the Posts Page title. Appears in search results, and when the page is shared on social media."),hideLabelFromVision:!0})]})})})}function zYt(){const{editEntityRecord:e}=Oe(Me),{postsPerPage:t,isTemplate:n,postSlug:o}=G(l=>{const{getEditedPostAttribute:u,getCurrentPostType:d}=l(_e),{getEditedEntityRecord:p,canUser:f}=l(Me),b=f("read",{kind:"root",name:"site"})?p("root","site"):void 0;return{isTemplate:d()===L0,postSlug:u("slug"),postsPerPage:b?.posts_per_page||1}},[]),[r,s]=x.useState(null),i=x.useMemo(()=>({anchor:r,placement:"left-start",offset:36,shift:!0}),[r]);if(!n||!["home","index"].includes(o))return null;const c=l=>{e("root","site",void 0,{posts_per_page:l})};return a.jsx(xs,{label:m("Posts per page"),ref:s,children:a.jsx(so,{popoverProps:i,contentClassName:"editor-posts-per-page-dropdown__content",focusOnMount:!0,renderToggle:({isOpen:l,onToggle:u})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":l,"aria-label":m("Change posts per page"),onClick:u,children:t}),renderContent:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Posts per page"),onClose:l}),a.jsx(g0,{placeholder:0,value:t,size:"__unstable-large",spinControls:"custom",step:"1",min:"1",onChange:c,label:m("Posts per page"),help:m("Set the default number of posts to display on blog pages, including categories and tags. Some templates may override this setting."),hideLabelFromVision:!0})]})})})}const OYt=[{label:We("Open",'Adjective: e.g. "Comments are open"'),value:"open",description:m("Visitors can add new comments and replies.")},{label:m("Closed"),value:"",description:[m("Visitors cannot add new comments or replies."),m("Existing comments remain visible.")].join(" ")}];function yYt(){const{editEntityRecord:e}=Oe(Me),{allowCommentsOnNewPosts:t,isTemplate:n,postSlug:o}=G(l=>{const{getEditedPostAttribute:u,getCurrentPostType:d}=l(_e),{getEditedEntityRecord:p,canUser:f}=l(Me),b=f("read",{kind:"root",name:"site"})?p("root","site"):void 0;return{isTemplate:d()===L0,postSlug:u("slug"),allowCommentsOnNewPosts:b?.default_comment_status||""}},[]),[r,s]=x.useState(null),i=x.useMemo(()=>({anchor:r,placement:"left-start",offset:36,shift:!0}),[r]);if(!n||!["home","index"].includes(o))return null;const c=l=>{e("root","site",void 0,{default_comment_status:l?"open":null})};return a.jsx(xs,{label:m("Discussion"),ref:s,children:a.jsx(so,{popoverProps:i,contentClassName:"editor-site-discussion-dropdown__content",focusOnMount:!0,renderToggle:({isOpen:l,onToggle:u})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":l,"aria-label":m("Change discussion settings"),onClick:u,children:m(t?"Comments open":"Comments closed")}),renderContent:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Discussion"),onClose:l}),a.jsxs(dt,{spacing:3,children:[a.jsx(Sn,{children:m("Changes will apply to new posts only. Individual posts may override these settings.")}),a.jsx(sb,{className:"editor-site-discussion__options",hideLabelFromVision:!0,label:m("Comment status"),options:OYt,onChange:c,selected:t})]})]})})})}const AYt="post-status";function vYt({onActionPerformed:e}){const{isRemovedPostStatusPanel:t,postType:n,postId:o}=G(r=>{const{isEditorPanelRemoved:s,getCurrentPostType:i,getCurrentPostId:c}=r(_e);return{isRemovedPostStatusPanel:s(AYt),postType:i(),postId:c()}},[]);return a.jsx(mYt,{className:"editor-post-summary",children:a.jsx(iye.Slot,{children:r=>a.jsx(a.Fragment,{children:a.jsxs(dt,{spacing:4,children:[a.jsx(Dye,{postType:n,postId:o,onActionPerformed:e}),a.jsx(yXt,{withPanelBody:!1}),a.jsx(dXt,{}),a.jsxs(dt,{spacing:1,children:[a.jsx(fYt,{}),a.jsx(hYt,{})]}),!t&&a.jsxs(dt,{spacing:4,children:[a.jsxs(dt,{spacing:1,children:[a.jsx(wye,{}),a.jsx(fGt,{}),a.jsx(xGt,{}),a.jsx(JUt,{}),a.jsx(UUt,{}),a.jsx(iXt,{}),a.jsx(xXt,{}),a.jsx(xUt,{}),a.jsx(bGt,{}),a.jsx(MYt,{}),a.jsx(zYt,{}),a.jsx(yYt,{}),a.jsx(bYt,{}),r]}),a.jsx(AGt,{onActionPerformed:e})]})]})})})})}const{EXCLUDED_PATTERN_SOURCES:xYt,PATTERN_TYPES:wYt}=St(Hi);function Fye(e,t){return e.innerBlocks=e.innerBlocks.map(n=>Fye(n,t)),e.name==="core/template-part"&&e.attributes.theme===void 0&&(e.attributes.theme=t),e}function _Yt(e,t){const n=(s,i,c)=>i===c.findIndex(l=>s.name===l.name),o=s=>!xYt.includes(s.source),r=s=>s.templateTypes?.includes(t.slug)||s.blockTypes?.includes("core/template-part/"+t.area);return e.filter((s,i,c)=>n(s,i,c)&&o(s)&&r(s))}function kYt(e,t){return e.map(n=>({...n,keywords:n.keywords||[],type:wYt.theme,blocks:Ko(n.content,{__unstableSkipMigrationLogs:!0}).map(o=>Fye(o,t))}))}function SYt(e){const{blockPatterns:t,restBlockPatterns:n,currentThemeStylesheet:o}=G(r=>{var s;const{getEditorSettings:i}=r(_e),c=i();return{blockPatterns:(s=c.__experimentalAdditionalBlockPatterns)!==null&&s!==void 0?s:c.__experimentalBlockPatterns,restBlockPatterns:r(Me).getBlockPatterns(),currentThemeStylesheet:r(Me).getCurrentTheme().stylesheet}},[]);return x.useMemo(()=>{const r=[...t||[],...n||[]],s=_Yt(r,e);return kYt(s,e)},[t,n,e,o])}function CYt({availableTemplates:e,onSelect:t}){return!e||e?.length===0?null:a.jsx(qa,{label:m("Templates"),blockPatterns:e,onClickPattern:t,showTitlesAsTooltip:!0})}function qYt(){const{record:e,postType:t,postId:n}=G(i=>{const{getCurrentPostType:c,getCurrentPostId:l}=i(_e),{getEditedEntityRecord:u}=i(Me),d=c(),p=l();return{postType:d,postId:p,record:u("postType",d,p)}},[]),{editEntityRecord:o}=Oe(Me),r=SYt(e),s=async i=>{await o("postType",t,n,{blocks:i.blocks,content:Ks(i.blocks)})};return r?.length?a.jsx(Qt,{title:m("Design"),initialOpen:e.type===Fi,children:a.jsx(CYt,{availableTemplates:r,onSelect:s})}):null}function RYt(){const{postType:e}=G(t=>{const{getCurrentPostType:n}=t(_e);return{postType:n()}},[]);return[Fi,L0].includes(e)?a.jsx(qYt,{}):null}const ac={document:"edit-post/document",block:"edit-post/block"},{Tabs:WT}=St(tr),TYt=(e,t)=>{const{documentLabel:n}=G(o=>{const{getPostTypeLabel:r}=o(_e);return{documentLabel:r()||We("Document","noun, sidebar")}},[]);return a.jsxs(WT.TabList,{ref:t,children:[a.jsx(WT.Tab,{tabId:ac.document,"data-tab-id":ac.document,children:n}),a.jsx(WT.Tab,{tabId:ac.block,"data-tab-id":ac.block,children:m("Block")})]})},EYt=x.forwardRef(TYt),{BlockQuickNavigation:WYt}=St(Ln),NYt=["core/post-title","core/post-featured-image","core/post-content"],BYt="core/template-part";function LYt(){const e=x.useMemo(()=>gr("editor.postContentBlockTypes",NYt),[]),{clientIds:t,postType:n,renderingMode:o}=G(s=>{const{getCurrentPostType:i,getPostBlocksByName:c,getRenderingMode:l}=St(s(_e)),u=i();return{postType:u,clientIds:c(L0===u?BYt:e),renderingMode:l()}},[e]),{enableComplementaryArea:r}=Oe(xo);return o==="post-only"&&n!==L0||t.length===0?null:a.jsx(Qt,{title:m("Content"),children:a.jsx(WYt,{clientIds:t,onSelect:()=>{r("core","edit-post/document")}})})}const{BlockQuickNavigation:PYt}=St(Ln);function jYt(){const e=G(o=>{const{getBlockTypes:r}=o(kt);return r()},[]),t=x.useMemo(()=>e.filter(o=>o.category==="theme").map(({name:o})=>o),[e]),n=G(o=>{const{getBlocksByName:r}=o(Q);return r(t)},[t]);return n.length===0?null:a.jsx(Qt,{title:m("Content"),children:a.jsx(PYt,{clientIds:n})})}function IYt(){return G(t=>{const{getCurrentPostType:n}=t(_e);return n()},[])!==Fi?null:a.jsx(jYt,{})}function DYt(){const{hasBlockSelection:e}=G(r=>({hasBlockSelection:!!r(Q).getBlockSelectionStart()}),[]),{getActiveComplementaryArea:t}=G(xo),{enableComplementaryArea:n}=Oe(xo),{get:o}=G(ht);x.useEffect(()=>{const r=t("core"),s=["edit-post/document","edit-post/block"].includes(r),i=o("core","distractionFree");!s||i||(e?n("core","edit-post/block"):n("core","edit-post/document"))},[e,t,n,o])}const{Tabs:l2}=St(tr),FYt=f0.select({web:!0,native:!1}),$Yt=({tabName:e,keyboardShortcut:t,onActionPerformed:n,extraPanels:o})=>{const r=x.useRef(null),s=x.useContext(l2.Context);return x.useEffect(()=>{const i=Array.from(r.current?.querySelectorAll('[role="tab"]')||[]),c=i.find(d=>d.getAttribute("data-tab-id")===e),l=c?.ownerDocument.activeElement;i.some(d=>l&&l.id===d.id)&&c&&c.id!==l?.id&&c?.focus()},[e]),a.jsx(cN,{identifier:e,header:a.jsx(l2.Context.Provider,{value:s,children:a.jsx(EYt,{ref:r})}),closeLabel:m("Close Settings"),className:"editor-sidebar__panel",headerClassName:"editor-sidebar__panel-tabs",title:We("Settings","sidebar button label"),toggleShortcut:t,icon:jt()?ode:rde,isActiveByDefault:FYt,children:a.jsxs(l2.Context.Provider,{value:s,children:[a.jsxs(l2.TabPanel,{tabId:ac.document,focusable:!1,children:[a.jsx(vYt,{onActionPerformed:n}),a.jsx(rye.Slot,{}),a.jsx(LYt,{}),a.jsx(IYt,{}),a.jsx(RYt,{}),a.jsx(MGt,{}),a.jsx(eYt,{}),o]}),a.jsx(l2.TabPanel,{tabId:ac.block,focusable:!1,children:a.jsx(z3e,{})})]})})},VYt=({extraPanels:e,onActionPerformed:t})=>{DYt();const{tabName:n,keyboardShortcut:o,showSummary:r}=G(c=>{const l=c(ji).getShortcutRepresentation("core/editor/toggle-sidebar"),u=c(xo).getActiveComplementaryArea("core"),d=[ac.block,ac.document].includes(u);let p=u;return d||(p=c(Q).getBlockSelectionStart()?ac.block:ac.document),{tabName:p,keyboardShortcut:l,showSummary:![L0,Fi,Wf].includes(c(_e).getCurrentPostType())}},[]),{enableComplementaryArea:s}=Oe(xo),i=x.useCallback(c=>{c&&s("core",c)},[s]);return a.jsx(l2,{selectedTabId:n,onSelect:i,selectOnMove:!1,children:a.jsx($Yt,{tabName:n,keyboardShortcut:o,showSummary:r,onActionPerformed:t,extraPanels:e})})};function HYt({postType:e,postId:t,templateId:n,settings:o,children:r,initialEdits:s,onActionPerformed:i,extraContent:c,extraSidebarPanels:l,...u}){const{post:d,template:p,hasLoadedPost:f}=G(b=>{const{getEntityRecord:h,hasFinishedResolution:g}=b(Me);return{post:h("postType",e,t),template:n?h("postType",L0,n):void 0,hasLoadedPost:g("getEntityRecord",["postType",e,t])}},[e,t,n]);return a.jsxs(a.Fragment,{children:[f&&!d&&a.jsx(L1,{status:"warning",isDismissible:!1,children:m("You attempted to edit an item that doesn't exist. Perhaps it was deleted?")}),!!d&&a.jsxs(UOe,{post:d,__unstableTemplate:p,settings:o,initialEdits:s,useSubRegistry:!1,children:[a.jsx(QKt,{...u,children:c}),r,a.jsx(VYt,{onActionPerformed:i,extraPanels:l})]})]})}const{PreferenceBaseOption:UYt}=St(cp);function XYt(e){const t=G(r=>r(_e).isPublishSidebarEnabled(),[]),{enablePublishSidebar:n,disablePublishSidebar:o}=Oe(_e);return a.jsx(UYt,{isChecked:t,onChange:r=>r?n():o(),...e})}const{BlockManager:GYt}=St(Ln);function KYt(){const{showBlockTypes:e,hideBlockTypes:t}=St(Oe(_e)),{blockTypes:n,allowedBlockTypes:o,hiddenBlockTypes:r}=G(d=>{var p;return{blockTypes:d(kt).getBlockTypes(),allowedBlockTypes:d(_e).getEditorSettings().allowedBlockTypes,hiddenBlockTypes:(p=d(ht).get("core","hiddenBlockTypes"))!==null&&p!==void 0?p:[]}},[]),i=x.useMemo(()=>o===!0?n:n.filter(({name:d})=>o?.includes(d)),[o,n]).filter(d=>Et(d,"inserter",!0)&&(!d.parent||d.parent.includes("core/post-content"))),c=r.filter(d=>i.some(p=>p.name===d)),l=i.filter(d=>!c.includes(d.name)),u=d=>{if(l.length>d.length){const p=l.filter(f=>!d.find(({name:b})=>b===f.name));t(p.map(({name:f})=>f))}else if(l.length<d.length){const p=d.filter(f=>!l.find(({name:b})=>b===f.name));e(p.map(({name:f})=>f))}};return a.jsx(GYt,{blockTypes:i,selectedBlockTypes:l,onChange:u})}const{PreferencesModal:YYt,PreferencesModalTabs:ZYt,PreferencesModalSection:ol,PreferenceToggleControl:ui}=St(cp);function QYt({extraSections:e={}}){const t=G(o=>o(xo).isModalActive("editor/preferences"),[]),{closeModal:n}=Oe(xo);return t?a.jsx(YYt,{closeModal:n,children:a.jsx(JYt,{extraSections:e})}):null}function JYt({extraSections:e={}}){const t=Yn("medium"),n=G(c=>{const{getEditorSettings:l}=c(_e),{get:u}=c(ht),d=l().richEditingEnabled;return!u("core","distractionFree")&&t&&d},[t]),{setIsListViewOpened:o,setIsInserterOpened:r}=Oe(_e),{set:s}=Oe(ht),i=x.useMemo(()=>[{name:"general",tabLabel:m("General"),content:a.jsxs(a.Fragment,{children:[a.jsxs(ol,{title:m("Interface"),children:[a.jsx(ui,{scope:"core",featureName:"showListViewByDefault",help:m("Opens the List View sidebar by default."),label:m("Always open List View")}),n&&a.jsx(ui,{scope:"core",featureName:"showBlockBreadcrumbs",help:m("Display the block hierarchy trail at the bottom of the editor."),label:m("Show block breadcrumbs")}),a.jsx(ui,{scope:"core",featureName:"allowRightClickOverrides",help:m("Allows contextual List View menus via right-click, overriding browser defaults."),label:m("Allow right-click contextual menus")}),a.jsx(ui,{scope:"core",featureName:"enableChoosePatternModal",help:m("Shows starter patterns when creating a new page."),label:m("Show starter patterns")})]}),a.jsxs(ol,{title:m("Document settings"),description:m("Select what settings are shown in the document panel."),children:[a.jsx($I.Slot,{}),a.jsx(_ye,{taxonomyWrapper:(c,l)=>a.jsx(c2,{label:l.labels.menu_name,panelName:`taxonomy-panel-${l.slug}`})}),a.jsx(o5,{children:a.jsx(c2,{label:m("Featured image"),panelName:"featured-image"})}),a.jsx(lye,{children:a.jsx(c2,{label:m("Excerpt"),panelName:"post-excerpt"})}),a.jsx(Sc,{supportKeys:["comments","trackbacks"],children:a.jsx(c2,{label:m("Discussion"),panelName:"discussion-panel"})}),a.jsx(ZOe,{children:a.jsx(c2,{label:m("Page attributes"),panelName:"page-attributes"})})]}),t&&a.jsx(ol,{title:m("Publishing"),children:a.jsx(XYt,{help:m("Review settings, such as visibility and tags."),label:m("Enable pre-publish checks")})}),e?.general]})},{name:"appearance",tabLabel:m("Appearance"),content:a.jsxs(ol,{title:m("Appearance"),description:m("Customize the editor interface to suit your needs."),children:[a.jsx(ui,{scope:"core",featureName:"fixedToolbar",onToggle:()=>s("core","distractionFree",!1),help:m("Access all block and document tools in a single place."),label:m("Top toolbar")}),a.jsx(ui,{scope:"core",featureName:"distractionFree",onToggle:()=>{s("core","fixedToolbar",!0),r(!1),o(!1)},help:m("Reduce visual distractions by hiding the toolbar and other elements to focus on writing."),label:m("Distraction free")}),a.jsx(ui,{scope:"core",featureName:"focusMode",help:m("Highlights the current block and fades other content."),label:m("Spotlight mode")}),e?.appearance]})},{name:"accessibility",tabLabel:m("Accessibility"),content:a.jsxs(a.Fragment,{children:[a.jsx(ol,{title:m("Navigation"),description:m("Optimize the editing experience for enhanced control."),children:a.jsx(ui,{scope:"core",featureName:"keepCaretInsideBlock",help:m("Keeps the text cursor within the block boundaries, aiding users with screen readers by preventing unintentional cursor movement outside the block."),label:m("Contain text cursor inside block")})}),a.jsx(ol,{title:m("Interface"),children:a.jsx(ui,{scope:"core",featureName:"showIconLabels",label:m("Show button text labels"),help:m("Show text instead of icons on buttons across the interface.")})})]})},{name:"blocks",tabLabel:m("Blocks"),content:a.jsxs(a.Fragment,{children:[a.jsx(ol,{title:m("Inserter"),children:a.jsx(ui,{scope:"core",featureName:"mostUsedBlocks",help:m("Adds a category with the most frequently used blocks in the inserter."),label:m("Show most used blocks")})}),a.jsx(ol,{title:m("Manage block visibility"),description:m("Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later."),children:a.jsx(KYt,{})})]})},window.__experimentalMediaProcessing&&{name:"media",tabLabel:m("Media"),content:a.jsx(a.Fragment,{children:a.jsxs(ol,{title:m("General"),description:m("Customize options related to the media upload flow."),children:[a.jsx(ui,{scope:"core/media",featureName:"optimizeOnUpload",help:m("Compress media items before uploading to the server."),label:m("Pre-upload compression")}),a.jsx(ui,{scope:"core/media",featureName:"requireApproval",help:m("Require approval step when optimizing existing media."),label:m("Approval step")})]})})}].filter(Boolean),[n,e,r,o,s,t]);return a.jsx(ZYt,{sections:i})}function eZt({postType:e}){const{registerPostTypeSchema:t}=St(Oe(_e));x.useEffect(()=>{t(e)},[t,e]);const{defaultFields:n}=G(i=>{const{getEntityFields:c}=St(i(_e));return{defaultFields:c("postType",e)}},[e]),{records:o,isResolving:r}=vl("root","user",{per_page:-1}),s=x.useMemo(()=>n.map(i=>i.id==="author"?{...i,elements:o?.map(({id:c,name:l})=>({value:c,label:l}))}:i),[o,n]);return{isLoading:r,fields:s}}const Tne="content",tZt={name:"core/pattern-overrides",getValues({select:e,clientId:t,context:n,bindings:o}){const r=n["pattern/overrides"],{getBlockAttributes:s}=e(Q),i=s(t),c={};for(const l of Object.keys(o)){const u=r?.[i?.metadata?.name]?.[l];if(u===void 0){c[l]=i[l];continue}else c[l]=u===""?void 0:u}return c},setValues({select:e,dispatch:t,clientId:n,bindings:o}){const{getBlockAttributes:r,getBlockParentsByBlockName:s,getBlocks:i}=e(Q),l=r(n)?.metadata?.name;if(!l)return;const[u]=s(n,"core/block",!0),d=Object.entries(o).reduce((f,[b,{newValue:h}])=>(f[b]=h,f),{});if(!u){const f=b=>{for(const h of b)h.attributes?.metadata?.name===l&&t(Q).updateBlockAttributes(h.clientId,d),f(h.innerBlocks)};f(i());return}const p=r(u)?.[Tne];t(Q).updateBlockAttributes(u,{[Tne]:{...p,[l]:{...p?.[l],...Object.entries(d).reduce((f,[b,h])=>(f[b]=h===void 0?"":h,f),{})}}})},canUserEditValue:()=>!0};function NT(e,t){const{getEditedEntityRecord:n}=e(Me),{getRegisteredPostMeta:o}=St(e(Me));let r;t?.postType&&t?.postId&&(r=n("postType",t?.postType,t?.postId).meta);const s=o(t?.postType),i={};return Object.entries(s||{}).forEach(([c,l])=>{if(c!=="footnotes"&&c.charAt(0)!=="_"){var u;i[c]={label:l.title||c,value:(u=r?.[c])!==null&&u!==void 0?u:l.default||void 0,type:l.type}}}),Object.keys(i||{}).length?i:null}const nZt={name:"core/post-meta",getValues({select:e,context:t,bindings:n}){const o=NT(e,t),r={};for(const[i,c]of Object.entries(n)){var s;const l=c.args.key,{value:u,label:d}=o?.[l]||{};r[i]=(s=u??d)!==null&&s!==void 0?s:l}return r},setValues({dispatch:e,context:t,bindings:n}){const o={};Object.values(n).forEach(({args:r,newValue:s})=>{o[r.key]=s}),e(Me).editEntityRecord("postType",t?.postType,t?.postId,{meta:o})},canUserEditValue({select:e,context:t,args:n}){return!(t?.query||t?.queryId||!t?.postType||NT(e,t)?.[n.key]?.value===void 0||e(_e).getEditorSettings().enableCustomFields||!e(Me).canUser("update",{kind:"postType",name:t?.postType,id:t?.postId}))},getFieldsList({select:e,context:t}){return NT(e,t)}};function oZt(){eX(tZt),eX(nZt)}const{store:rZt,...sZt}=vVt,jc={};djt(jc,{CreateTemplatePartModal:II,BackButton:YI,EntitiesSavedStatesExtensible:n5,Editor:HYt,EditorContentSlotFill:Pye,GlobalStylesProvider:y$t,mergeBaseAndUserConfigs:NOe,PluginPostExcerpt:UI,PostCardPanel:Dye,PreferencesModal:QYt,usePostActions:Iye,usePostFields:eZt,ToolsMoreMenuGroup:JI,ViewMoreMenuGroup:e9,ResizableEditor:jye,registerCoreBlockBindingsSources:oZt,getTemplateInfo:LO,useBlockEditorSettings:BOe,interfaceStore:rZt,...sZt});const iZt=":root{--wp-admin-theme-color: #007cba;--wp-admin-theme-color--rgb: 0, 124, 186;--wp-admin-theme-color-darker-10: #006ba1;--wp-admin-theme-color-darker-10--rgb: 0, 107, 161;--wp-admin-theme-color-darker-20: #005a87;--wp-admin-theme-color-darker-20--rgb: 0, 90, 135;--wp-admin-border-width-focus: 2px;--wp-block-synced-color: #7a00df;--wp-block-synced-color--rgb: 122, 0, 223;--wp-bound-block-color: var(--wp-block-synced-color)}@media (min-resolution: 192dpi){:root{--wp-admin-border-width-focus: 1.5px}}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;line-height:1.5;--wp--style--block-gap: 2em}p{line-height:1.8}.editor-post-title__block{margin-top:2em;margin-bottom:1em;font-size:2.5em;font-weight:800}";function it(e){if(!e)return;const{metadata:t,settings:n,name:o}=e;return uLe({name:o,...t},n)}function $ye(e,t,n){return G(o=>o(Me).canUser("update",{kind:e,name:t,id:n}),[e,t,n])}function pk(e={}){const t=x.useRef(e),n=x.useRef(!1),{getSettings:o}=G(Q);x.useLayoutEffect(()=>{t.current=e}),x.useEffect(()=>{if(n.current||!t.current.url||!Nr(t.current.url))return;const r=Yie(t.current.url);if(!r)return;const{url:s,allowedTypes:i,onChange:c,onError:l}=t.current,{mediaUpload:u}=o();n.current=!0,u({filesList:[r],allowedTypes:i,onFileChange:([d])=>{Nr(d?.url)||(nx(s),c(d),n.current=!1)},onError:d=>{nx(s),l(d),n.current=!1}})},[o])}function Qo(){return Yn("medium","<")?{}:{popoverProps:{placement:"left-start",offset:259}}}function aZt({attributes:e,setAttributes:t}){const{showLabel:n,showPostCounts:o,displayAsDropdown:r,type:s}=e,i=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({displayAsDropdown:!1,showLabel:!1,showPostCounts:!1,type:"monthly"})},dropdownMenuProps:i,children:[a.jsx(tt,{label:m("Display as dropdown"),isShownByDefault:!0,hasValue:()=>r,onDeselect:()=>t({displayAsDropdown:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display as dropdown"),checked:r,onChange:()=>t({displayAsDropdown:!r})})}),r&&a.jsx(tt,{label:m("Show label"),isShownByDefault:!0,hasValue:()=>n,onDeselect:()=>t({showLabel:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show label"),checked:n,onChange:()=>t({showLabel:!n})})}),a.jsx(tt,{label:m("Show post counts"),isShownByDefault:!0,hasValue:()=>o,onDeselect:()=>t({showPostCounts:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show post counts"),checked:o,onChange:()=>t({showPostCounts:!o})})}),a.jsx(tt,{label:m("Group by"),isShownByDefault:!0,hasValue:()=>!!s,onDeselect:()=>t({type:"monthly"}),children:a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Group by"),options:[{label:m("Year"),value:"yearly"},{label:m("Month"),value:"monthly"},{label:m("Week"),value:"weekly"},{label:m("Day"),value:"daily"}],value:s,onChange:c=>t({type:c})})})]})}),a.jsx("div",{...Be(),children:a.jsx(I1,{children:a.jsx(FO,{block:"core/archives",skipBlockSupportAttributes:!0,attributes:e})})})]})}const t9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/archives",title:"Archives",category:"widgets",description:"Display a date archive of your posts.",textdomain:"default",attributes:{displayAsDropdown:{type:"boolean",default:!1},showLabel:{type:"boolean",default:!0},showPostCounts:{type:"boolean",default:!1},type:{type:"string",default:"monthly"}},supports:{align:!0,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},html:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-archives-editor"},{name:Vye}=t9,Hye={icon:mZe,example:{},edit:aZt},cZt=()=>it({name:Vye,metadata:t9,settings:Hye}),lZt=Object.freeze(Object.defineProperty({__proto__:null,init:cZt,metadata:t9,name:Vye,settings:Hye},Symbol.toStringTag,{value:"Module"}));function Uye(e){const t=e?e[0]:24,n=e?e[e.length-1]:96,o=Math.floor(n*2.5);return{minSize:t,maxSize:o}}function Xye(){const{avatarURL:e}=G(t=>{const{getSettings:n}=t(Q),{__experimentalDiscussionSettings:o}=n();return o});return e}function uZt({commentId:e}){const[t]=Ao("root","comment","author_avatar_urls",e),[n]=Ao("root","comment","author_name",e),o=t?Object.values(t):null,r=t?Object.keys(t):null,{minSize:s,maxSize:i}=Uye(r),c=Xye();return{src:o?o[o.length-1]:c,minSize:s,maxSize:i,alt:n?xe(m("%s Avatar"),n):m("Default Avatar")}}function dZt({userId:e,postId:t,postType:n}){const{authorDetails:o}=G(u=>{const{getEditedEntityRecord:d,getUser:p}=u(Me);if(e)return{authorDetails:p(e)};const f=d("postType",n,t)?.author;return{authorDetails:f?p(f):null}},[n,t,e]),r=o?.avatar_urls?Object.values(o.avatar_urls):null,s=o?.avatar_urls?Object.keys(o.avatar_urls):null,{minSize:i,maxSize:c}=Uye(s),l=Xye();return{src:r?r[r.length-1]:l,minSize:i,maxSize:c,alt:o?xe(m("%s Avatar"),o?.name):m("Default Avatar")}}const pZt={who:"authors",per_page:-1,_fields:"id,name",context:"view"};function fZt({value:e,onChange:t}){const[n,o]=x.useState(),r=G(i=>{const{getUsers:c}=i(Me);return c(pZt)},[]);if(!r)return null;const s=r.map(i=>({label:i.name,value:i.id}));return a.jsx(nb,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("User"),help:m("Select the avatar user to display, if it is blank it will use the post/page author."),value:e,onChange:t,options:n||s,onFilterValueChange:i=>o(s.filter(c=>c.label.toLowerCase().startsWith(i.toLowerCase())))})}const Gye=({setAttributes:e,avatar:t,attributes:n,selectUser:o})=>a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image size"),onChange:r=>e({size:r}),min:t.minSize,max:t.maxSize,initialPosition:n?.size,value:n?.size}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to user profile"),onChange:()=>e({isLink:!n.isLink}),checked:n.isLink}),n.isLink&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:r=>e({linkTarget:r?"_blank":"_self"}),checked:n.linkTarget==="_blank"}),o&&a.jsx(fZt,{value:n?.userId,onChange:r=>{e({userId:r})}})]})}),s5=({setAttributes:e,attributes:t,avatar:n,blockProps:o,isSelected:r})=>{const s=cu(t),i=tn(q4(n?.src,["s"]),{s:t?.size*2});return a.jsx("div",{...o,children:a.jsx(Ca,{size:{width:t.size,height:t.size},showHandle:r,onResizeStop:(c,l,u,d)=>{e({size:parseInt(t.size+(d.height||d.width),10)})},lockAspectRatio:!0,enable:{top:!1,right:!jt(),bottom:!0,left:jt()},minWidth:n.minSize,maxWidth:n.maxSize,children:a.jsx("img",{src:i,alt:n.alt,className:oe("avatar","avatar-"+t.size,"photo","wp-block-avatar__image",s.className),style:s.style})})})},bZt=({attributes:e,context:t,setAttributes:n,isSelected:o})=>{const{commentId:r}=t,s=Be(),i=uZt({commentId:r});return a.jsxs(a.Fragment,{children:[a.jsx(Gye,{avatar:i,setAttributes:n,attributes:e,selectUser:!1}),e.isLink?a.jsx("a",{href:"#avatar-pseudo-link",className:"wp-block-avatar__link",onClick:c=>c.preventDefault(),children:a.jsx(s5,{attributes:e,avatar:i,blockProps:s,isSelected:o,setAttributes:n})}):a.jsx(s5,{attributes:e,avatar:i,blockProps:s,isSelected:o,setAttributes:n})]})},hZt=({attributes:e,context:t,setAttributes:n,isSelected:o})=>{const{postId:r,postType:s}=t,i=dZt({userId:e?.userId,postId:r,postType:s}),c=Be();return a.jsxs(a.Fragment,{children:[a.jsx(Gye,{selectUser:!0,attributes:e,avatar:i,setAttributes:n}),e.isLink?a.jsx("a",{href:"#avatar-pseudo-link",className:"wp-block-avatar__link",onClick:l=>l.preventDefault(),children:a.jsx(s5,{attributes:e,avatar:i,blockProps:c,isSelected:o,setAttributes:n})}):a.jsx(s5,{attributes:e,avatar:i,blockProps:c,isSelected:o,setAttributes:n})]})};function mZt(e){return e?.context?.commentId||e?.context?.commentId===null?a.jsx(bZt,{...e}):a.jsx(hZt,{...e})}const n9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/avatar",title:"Avatar",category:"theme",description:"Add a user’s avatar.",textdomain:"default",attributes:{userId:{type:"number"},size:{type:"number",default:96},isLink:{type:"boolean",default:!1},linkTarget:{type:"string",default:"_self"}},usesContext:["postType","postId","commentId"],supports:{html:!1,align:!0,alignWide:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__experimentalBorder:{__experimentalSkipSerialization:!0,radius:!0,width:!0,color:!0,style:!0,__experimentalDefaultControls:{radius:!0}},color:{text:!1,background:!1,__experimentalDuotone:"img"},interactivity:{clientNavigation:!0}},selectors:{border:".wp-block-avatar img"},editorStyle:"wp-block-avatar-editor",style:"wp-block-avatar"},{name:Kye}=n9,Yye={icon:NP,edit:mZt,example:{}},gZt=()=>it({name:Kye,metadata:n9,settings:Yye}),MZt=Object.freeze(Object.defineProperty({__proto__:null,init:gZt,metadata:n9,name:Kye,settings:Yye},Symbol.toStringTag,{value:"Module"})),zZt=[{attributes:{src:{type:"string",source:"attribute",selector:"audio",attribute:"src"},caption:{type:"string",source:"html",selector:"figcaption"},id:{type:"number"},autoplay:{type:"boolean",source:"attribute",selector:"audio",attribute:"autoplay"},loop:{type:"boolean",source:"attribute",selector:"audio",attribute:"loop"},preload:{type:"string",source:"attribute",selector:"audio",attribute:"preload"}},supports:{align:!0},save({attributes:e}){const{autoplay:t,caption:n,loop:o,preload:r,src:s}=e;return a.jsxs("figure",{children:[a.jsx("audio",{controls:"controls",src:s,autoPlay:t,loop:o,preload:r}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n})]})}}],i5=[{ratio:"2.33",className:"wp-embed-aspect-21-9"},{ratio:"2.00",className:"wp-embed-aspect-18-9"},{ratio:"1.78",className:"wp-embed-aspect-16-9"},{ratio:"1.33",className:"wp-embed-aspect-4-3"},{ratio:"1.00",className:"wp-embed-aspect-1-1"},{ratio:"0.56",className:"wp-embed-aspect-9-16"},{ratio:"0.50",className:"wp-embed-aspect-1-2"}],Zye="wp-embed",{lock:OZt,unlock:e0}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/block-library"),yZt={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{name:x2}=yZt,{kebabCase:AZt}=e0(tr),vZt=e=>Q5(x2)?.find(({name:t})=>t===e),xZt=(e,t=[])=>t.some(n=>e.match(n)),wZt=e=>Q5(x2)?.find(({patterns:t})=>xZt(e,t)),Qye=e=>e&&e.includes('class="wp-embedded-content"'),_Zt=e=>{const t=e.url||e.thumbnail_url,n=a.jsx("p",{children:a.jsx("img",{src:t,alt:e.title,width:"100%"})});return M1(n)},fk=(e,t={})=>{const{preview:n,attributes:o={}}=e,{url:r,providerNameSlug:s,type:i,...c}=o;if(!r||!on(x2))return;const l=wZt(r),u=s==="wordpress"||i===Zye;if(!u&&l&&(l.attributes.providerNameSlug!==s||!s))return Ee(x2,{url:r,...c,...l.attributes});const p=Q5(x2)?.find(({name:f})=>f==="wordpress");if(!(!p||!n||!Qye(n.html)||u))return Ee(x2,{url:r,...p.attributes,...t})},kZt=e=>e?i5.some(({className:t})=>e.includes(t)):!1,y4=e=>{if(!e)return e;const t=i5.reduce((o,{className:r})=>(o.push(r),o),["wp-has-aspect-ratio"]);let n=e;for(const o of t)n=n.replace(o,"");return n.trim()};function Jye(e,t,n=!0){if(!n)return y4(t);const o=document.implementation.createHTMLDocument("");o.body.innerHTML=e;const r=o.body.querySelector("iframe");if(r&&r.height&&r.width){const s=(r.width/r.height).toFixed(2);for(let i=0;i<i5.length;i++){const c=i5[i];if(s>=c.ratio)return s-c.ratio>.1?y4(t):oe(y4(t),c.className,"wp-has-aspect-ratio")}}return t}function SZt(e,t){t(Ee("core/paragraph",{content:M1(a.jsx("a",{href:e,children:e}))}))}const CZt=Hs((e,t,n,o,r=!0)=>{if(!e)return{};const s={};let{type:i="rich"}=e;const{html:c,provider_name:l}=e,u=AZt((l||t).toLowerCase());return Qye(c)&&(i=Zye),(c||i==="photo")&&(s.type=i,s.providerNameSlug=u),kZt(n)||(s.className=Jye(c,n,o&&r)),s}),qZt=(e,t,n,o)=>{const{allowResponsive:r,className:s}=e;return{...e,...CZt(t,n,s,o,r)}};function fb({attributeKey:e="caption",attributes:t,setAttributes:n,isSelected:o,insertBlocksAfter:r,placeholder:s=m("Add caption"),label:i=m("Caption text"),showToolbarButton:c=!0,excludeElementClassName:l,className:u,readOnly:d,tagName:p="figcaption",addLabel:f=m("Add caption"),removeLabel:b=m("Remove caption"),icon:h=OZe,...g}){const z=t[e],A=Fr(z),{PrivateRichText:_}=e0(Ln),v=_.isEmpty(z),M=_.isEmpty(A),[y,k]=x.useState(!v);x.useEffect(()=>{!v&&M&&k(!0)},[v,M]),x.useEffect(()=>{!o&&v&&k(!1)},[o,v]);const S=x.useCallback(C=>{C&&v&&C.focus()},[v]);return a.jsxs(a.Fragment,{children:[c&&a.jsx(bt,{group:"block",children:a.jsx(Vt,{onClick:()=>{k(!y),y&&z&&n({[e]:void 0})},icon:h,isPressed:y,label:y?b:f})}),y&&(!_.isEmpty(z)||o)&&a.jsx(_,{identifier:e,tagName:p,className:oe(u,l?"":z0("caption")),ref:S,"aria-label":i,placeholder:s,value:z,onChange:C=>n({[e]:C}),inlineToolbar:!0,__unstableOnSplitAtEnd:()=>r(Ee(Mr())),readOnly:d,...g})]})}const BT=["audio"];function RZt({attributes:e,className:t,setAttributes:n,onReplace:o,isSelected:r,insertBlocksAfter:s}){const{id:i,autoplay:c,loop:l,preload:u,src:d}=e,[p,f]=x.useState(e.blob);pk({url:p,allowedTypes:BT,onChange:_,onError:z});function b(y){return k=>{n({[y]:k})}}function h(y){if(y!==d){const k=fk({attributes:{url:y}});if(k!==void 0&&o){o(k);return}n({src:y,id:void 0,blob:void 0}),f()}}const{createErrorNotice:g}=Oe(mt);function z(y){g(y,{type:"snackbar"})}function A(y){return y?m("Autoplay may cause usability issues for some users."):null}function _(y){if(!y||!y.url){n({src:void 0,id:void 0,caption:void 0,blob:void 0}),f();return}if(Nr(y.url)){f(y.url);return}n({blob:void 0,src:y.url,id:y.id,caption:y.caption}),f()}const v=oe(t,{"is-transient":!!p}),M=Be({className:v});return!d&&!p?a.jsx("div",{...M,children:a.jsx(au,{icon:a.jsx(Zn,{icon:Kue}),onSelect:_,onSelectURL:h,accept:"audio/*",allowedTypes:BT,value:e,onError:z})}):a.jsxs(a.Fragment,{children:[r&&a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:i,mediaURL:d,allowedTypes:BT,accept:"audio/*",onSelect:_,onSelectURL:h,onError:z,onReset:()=>_(void 0)})}),a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Autoplay"),onChange:b("autoplay"),checked:c,help:A}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Loop"),onChange:b("loop"),checked:l}),a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:We("Preload","noun; Audio block parameter"),value:u||"",onChange:y=>n({preload:y||void 0}),options:[{value:"",label:m("Browser default")},{value:"auto",label:m("Auto")},{value:"metadata",label:m("Metadata")},{value:"none",label:We("None","Preload value")}]})]})}),a.jsxs("figure",{...M,children:[a.jsx(I1,{isDisabled:!r,children:a.jsx("audio",{controls:"controls",src:d??p})}),!!p&&a.jsx(Xn,{}),a.jsx(fb,{attributes:e,setAttributes:n,isSelected:r,insertBlocksAfter:s,label:m("Audio caption text"),showToolbarButton:r})]})]})}function TZt({attributes:e}){const{autoplay:t,caption:n,loop:o,preload:r,src:s}=e;return s&&a.jsxs("figure",{...Be.save(),children:[a.jsx("audio",{controls:"controls",src:s,autoPlay:t,loop:o,preload:r}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n,className:z0("caption")})]})}const EZt={from:[{type:"files",isMatch(e){return e.length===1&&e[0].type.indexOf("audio/")===0},transform(e){const t=e[0];return Ee("core/audio",{blob:ls(t)})}},{type:"shortcode",tag:"audio",attributes:{src:{type:"string",shortcode:({named:{src:e,mp3:t,m4a:n,ogg:o,wav:r,wma:s}})=>e||t||n||o||r||s},loop:{type:"string",shortcode:({named:{loop:e}})=>e},autoplay:{type:"string",shortcode:({named:{autoplay:e}})=>e},preload:{type:"string",shortcode:({named:{preload:e}})=>e}}}]},o9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/audio",title:"Audio",category:"media",description:"Embed a simple audio player.",keywords:["music","sound","podcast","recording"],textdomain:"default",attributes:{blob:{type:"string",role:"local"},src:{type:"string",source:"attribute",selector:"audio",attribute:"src",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},id:{type:"number",role:"content"},autoplay:{type:"boolean",source:"attribute",selector:"audio",attribute:"autoplay"},loop:{type:"boolean",source:"attribute",selector:"audio",attribute:"loop"},preload:{type:"string",source:"attribute",selector:"audio",attribute:"preload"}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-audio-editor",style:"wp-block-audio"},{name:eAe}=o9,tAe={icon:Kue,example:{attributes:{src:"https://upload.wikimedia.org/wikipedia/commons/d/dd/Armstrong_Small_Step.ogg"},viewportWidth:350},transforms:EZt,deprecated:zZt,edit:RZt,save:TZt},WZt=()=>it({name:eAe,metadata:o9,settings:tAe}),NZt=Object.freeze(Object.defineProperty({__proto__:null,init:WZt,metadata:o9,name:eAe,settings:tAe},Symbol.toStringTag,{value:"Module"})),{cleanEmptyObject:BZt}=e0(Ln);function A1(e){if(!e?.style?.typography?.fontFamily)return e;const{fontFamily:t,...n}=e.style.typography;return{...e,style:BZt({...e.style,typography:n}),fontFamily:t.split("|").pop()}}const Qb=e=>{const{borderRadius:t,...n}=e,o=[t,n.style?.border?.radius].find(r=>typeof r=="number"&&r!==0);return o?{...n,style:{...n.style,border:{...n.style?.border,radius:`${o}px`}}}:n};function LZt(e){if(!e.align)return e;const{align:t,...n}=e;return{...n,className:oe(n.className,`align${e.align}`)}}const dN=e=>{if(!e.customTextColor&&!e.customBackgroundColor&&!e.customGradient)return e;const t={color:{}};e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),e.customGradient&&(t.color.gradient=e.customGradient);const{customTextColor:n,customBackgroundColor:o,customGradient:r,...s}=e;return{...s,style:t}},LT=e=>{const{color:t,textColor:n,...o}={...e,customTextColor:e.textColor&&e.textColor[0]==="#"?e.textColor:void 0,customBackgroundColor:e.color&&e.color[0]==="#"?e.color:void 0};return dN(o)},rl={url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"}},PZt={attributes:{tagName:{type:"string",enum:["a","button"],default:"a"},type:{type:"string",default:"button"},textAlign:{type:"string"},url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a,button",attribute:"title",role:"content"},text:{type:"rich-text",source:"rich-text",selector:"a,button",role:"content"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target",role:"content"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel",role:"content"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},reusable:!1,shadow:{__experimentalSkipSerialization:!0},spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},__experimentalSelector:".wp-block-button__link",interactivity:{clientNavigation:!0}},save({attributes:e,className:t}){const{tagName:n,type:o,textAlign:r,fontSize:s,linkTarget:i,rel:c,style:l,text:u,title:d,url:p,width:f}=e,b=n||"a",h=b==="button",g=o||"button",z=X1(e),A=P1(e),_=Tm(e),v=db(e),M=oe("wp-block-button__link",A.className,z.className,{[`has-text-align-${r}`]:r,"no-border-radius":l?.border?.radius===0},z0("button")),y={...z.style,...A.style,..._.style,...v.style},k=oe(t,{[`has-custom-width wp-block-button__width-${f}`]:f,"has-custom-font-size":s||l?.typography?.fontSize});return a.jsx("div",{...Be.save({className:k}),children:a.jsx(Ie.Content,{tagName:b,type:h?g:null,className:M,href:h?null:p,title:d,style:y,value:u,target:h?null:i,rel:h?null:c})})}},jZt={attributes:{url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,__experimentalFontFamily:!0,__experimentalDefaultControls:{fontSize:!0}},reusable:!1,spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}},__experimentalSelector:".wp-block-button__link"},save({attributes:e,className:t}){const{fontSize:n,linkTarget:o,rel:r,style:s,text:i,title:c,url:l,width:u}=e;if(!i)return null;const d=X1(e),p=P1(e),f=Tm(e),b=oe("wp-block-button__link",p.className,d.className,{"no-border-radius":s?.border?.radius===0}),h={...d.style,...p.style,...f.style},g=oe(t,{[`has-custom-width wp-block-button__width-${u}`]:u,"has-custom-font-size":n||s?.typography?.fontSize});return a.jsx("div",{...Be.save({className:g}),children:a.jsx(Ie.Content,{tagName:"a",className:b,href:l,title:c,style:h,value:i,target:o,rel:r})})}},IZt={attributes:{url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},reusable:!1,spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0},__experimentalSelector:".wp-block-button__link"},save({attributes:e,className:t}){const{fontSize:n,linkTarget:o,rel:r,style:s,text:i,title:c,url:l,width:u}=e;if(!i)return null;const d=X1(e),p=P1(e),f=Tm(e),b=oe("wp-block-button__link",p.className,d.className,{"no-border-radius":s?.border?.radius===0}),h={...d.style,...p.style,...f.style},g=oe(t,{[`has-custom-width wp-block-button__width-${u}`]:u,"has-custom-font-size":n||s?.typography?.fontSize});return a.jsx("div",{...Be.save({className:g}),children:a.jsx(Ie.Content,{tagName:"a",className:b,href:l,title:c,style:h,value:i,target:o,rel:r})})},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},DZt=[PZt,jZt,IZt,{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...rl,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},isEligible({style:e}){return typeof e?.border?.radius=="number"},save({attributes:e,className:t}){const{fontSize:n,linkTarget:o,rel:r,style:s,text:i,title:c,url:l,width:u}=e;if(!i)return null;const d=s?.border?.radius,p=P1(e),f=oe("wp-block-button__link",p.className,{"no-border-radius":s?.border?.radius===0}),b={borderRadius:d||void 0,...p.style},h=oe(t,{[`has-custom-width wp-block-button__width-${u}`]:u,"has-custom-font-size":n||s?.typography?.fontSize});return a.jsx("div",{...Be.save({className:h}),children:a.jsx(Ie.Content,{tagName:"a",className:f,href:l,title:c,style:b,value:i,target:o,rel:r})})},migrate:Co(A1,Qb)},{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...rl,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"},width:{type:"number"}},save({attributes:e,className:t}){const{borderRadius:n,linkTarget:o,rel:r,text:s,title:i,url:c,width:l}=e,u=P1(e),d=oe("wp-block-button__link",u.className,{"no-border-radius":n===0}),p={borderRadius:n?n+"px":void 0,...u.style},f=oe(t,{[`has-custom-width wp-block-button__width-${l}`]:l});return a.jsx("div",{...Be.save({className:f}),children:a.jsx(Ie.Content,{tagName:"a",className:d,href:c,title:i,style:p,value:s,target:o,rel:r})})},migrate:Co(A1,Qb)},{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...rl,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"},width:{type:"number"}},save({attributes:e,className:t}){const{borderRadius:n,linkTarget:o,rel:r,text:s,title:i,url:c,width:l}=e,u=P1(e),d=oe("wp-block-button__link",u.className,{"no-border-radius":n===0}),p={borderRadius:n?n+"px":void 0,...u.style},f=oe(t,{[`has-custom-width wp-block-button__width-${l}`]:l});return a.jsx("div",{...Be.save({className:f}),children:a.jsx(Ie.Content,{tagName:"a",className:d,href:c,title:i,style:p,value:s,target:o,rel:r})})},migrate:Co(A1,Qb)},{supports:{align:!0,alignWide:!1,color:{gradients:!0}},attributes:{...rl,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"}},save({attributes:e}){const{borderRadius:t,linkTarget:n,rel:o,text:r,title:s,url:i}=e,c=oe("wp-block-button__link",{"no-border-radius":t===0}),l={borderRadius:t?t+"px":void 0};return a.jsx(Ie.Content,{tagName:"a",className:c,href:i,title:s,style:l,value:r,target:n,rel:o})},migrate:Qb},{supports:{align:!0,alignWide:!1},attributes:{...rl,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},customGradient:{type:"string"},gradient:{type:"string"}},isEligible:e=>!!e.customTextColor||!!e.customBackgroundColor||!!e.customGradient||!!e.align,migrate:Co(Qb,dN,LZt),save({attributes:e}){const{backgroundColor:t,borderRadius:n,customBackgroundColor:o,customTextColor:r,customGradient:s,linkTarget:i,gradient:c,rel:l,text:u,textColor:d,title:p,url:f}=e,b=Pt("color",d),h=!s&&Pt("background-color",t),g=R1(c),z=oe("wp-block-button__link",{"has-text-color":d||r,[b]:b,"has-background":t||o||s||c,[h]:h,"no-border-radius":n===0,[g]:g}),A={background:s||void 0,backgroundColor:h||s||c?void 0:o,color:b?void 0:r,borderRadius:n?n+"px":void 0};return a.jsx("div",{children:a.jsx(Ie.Content,{tagName:"a",className:z,href:f,title:p,style:A,value:u,target:i,rel:l})})}},{attributes:{...rl,align:{type:"string",default:"none"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"}},isEligible(e){return e.className&&e.className.includes("is-style-squared")},migrate(e){let t=e.className;return t&&(t=t.replace(/is-style-squared[\s]?/,"").trim()),Qb(dN({...e,className:t||void 0,borderRadius:0}))},save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,customTextColor:o,linkTarget:r,rel:s,text:i,textColor:c,title:l,url:u}=e,d=Pt("color",c),p=Pt("background-color",t),f=oe("wp-block-button__link",{"has-text-color":c||o,[d]:d,"has-background":t||n,[p]:p}),b={backgroundColor:p?void 0:n,color:d?void 0:o};return a.jsx("div",{children:a.jsx(Ie.Content,{tagName:"a",className:f,href:u,title:l,style:b,value:i,target:r,rel:s})})}},{attributes:{...rl,align:{type:"string",default:"none"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"}},migrate:LT,save({attributes:e}){const{url:t,text:n,title:o,backgroundColor:r,textColor:s,customBackgroundColor:i,customTextColor:c}=e,l=Pt("color",s),u=Pt("background-color",r),d=oe("wp-block-button__link",{"has-text-color":s||c,[l]:l,"has-background":r||i,[u]:u}),p={backgroundColor:u?void 0:i,color:l?void 0:c};return a.jsx("div",{children:a.jsx(Ie.Content,{tagName:"a",className:d,href:t,title:o,style:p,value:n})})}},{attributes:{...rl,color:{type:"string"},textColor:{type:"string"},align:{type:"string",default:"none"}},save({attributes:e}){const{url:t,text:n,title:o,align:r,color:s,textColor:i}=e,c={backgroundColor:s,color:i};return a.jsx("div",{className:`align${r}`,children:a.jsx(Ie.Content,{tagName:"a",className:"wp-block-button__link",href:t,title:o,style:c,value:n})})},migrate:LT},{attributes:{...rl,color:{type:"string"},textColor:{type:"string"},align:{type:"string",default:"none"}},save({attributes:e}){const{url:t,text:n,title:o,align:r,color:s,textColor:i}=e;return a.jsx("div",{className:`align${r}`,style:{backgroundColor:s},children:a.jsx(Ie.Content,{tagName:"a",href:t,title:o,style:{color:i},value:n})})},migrate:LT}],PT="noreferrer noopener",nAe="_blank",A4="nofollow";function FZt({rel:e="",url:t="",opensInNewTab:n,nofollow:o}){let r,s=e;if(n)r=nAe,s=s?.includes(PT)?s:s+` ${PT}`;else{const i=new RegExp(`\\b${PT}\\s*`,"g");s=s?.replace(i,"").trim()}if(o)s=s?.includes(A4)?s:(s+` ${A4}`).trim();else{const i=new RegExp(`\\b${A4}\\s*`,"g");s=s?.replace(i,"").trim()}return{url:jf(t),linkTarget:r,rel:s||void 0}}function pN(e){return e.toString().replace(/<\/?a[^>]*>/g,"")}const $Zt=[...kc.DEFAULT_LINK_SETTINGS,{id:"nofollow",title:m("Mark as nofollow")}];function VZt(e){const{replaceBlocks:t,selectionChange:n}=Oe(Q),{getBlock:o,getBlockRootClientId:r,getBlockIndex:s}=G(Q),i=x.useRef(e);return i.current=e,Mn(c=>{function l(u){if(u.defaultPrevented||u.keyCode!==Gr)return;const{content:d,clientId:p}=i.current;if(d.length)return;u.preventDefault();const f=o(r(p)),b=s(p),h=jo({...f,innerBlocks:f.innerBlocks.slice(0,b)}),g=Ee(Mr()),z=f.innerBlocks.slice(b+1),A=z.length?[jo({...f,innerBlocks:z})]:[];t(f.clientId,[h,g,...A],1),n(g.clientId)}return c.addEventListener("keydown",l),()=>{c.removeEventListener("keydown",l)}},[])}function HZt({selectedWidth:e,setAttributes:t}){const n=Qo();return a.jsx(En,{label:m("Settings"),resetAll:()=>t({width:void 0}),dropdownMenuProps:n,children:a.jsx(tt,{label:m("Width"),isShownByDefault:!0,hasValue:()=>!!e,onDeselect:()=>t({width:void 0}),__nextHasNoMarginBottom:!0,children:a.jsx(Do,{label:m("Width"),value:e,onChange:o=>t({width:o}),isBlock:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:[25,50,75,100].map(o=>a.jsx(Kn,{value:o,label:xe(m("%d%%"),o)},o))})})})}function UZt(e){const{attributes:t,setAttributes:n,className:o,isSelected:r,onReplace:s,mergeBlocks:i,clientId:c,context:l}=e,{tagName:u,textAlign:d,linkTarget:p,placeholder:f,rel:b,style:h,text:g,url:z,width:A,metadata:_}=t,v=u||"a";function M(ye){lc.primary(ye,"k")?V(ye):lc.primaryShift(ye,"k")&&(ee(),B.current?.focus())}const[y,k]=x.useState(null),S=cu(t),C=BO(t),R=Tm(t),T=db(t),E=x.useRef(),B=x.useRef(),N=Be({ref:xn([k,E]),onKeyDown:M}),j=Jr(),[I,P]=x.useState(!1),$=!!z,F=p===nAe,X=!!b?.includes(A4),Z=v==="a";function V(ye){ye.preventDefault(),P(!0)}function ee(){n({url:void 0,linkTarget:void 0,rel:void 0}),P(!1)}x.useEffect(()=>{r||P(!1)},[r]);const te=x.useMemo(()=>({url:z,opensInNewTab:F,nofollow:X}),[z,F,X]),J=VZt({content:g,clientId:c}),ue=xn([J,B]),{lockUrlControls:ce=!1}=G(ye=>{if(!r)return{};const Ne=xl(_?.bindings?.url?.source);return{lockUrlControls:!!_?.bindings?.url&&!Ne?.canUserEditValue?.({select:ye,context:l,args:_?.bindings?.url?.args})}},[l,r,_?.bindings?.url]),[me,de]=Un("typography.fluid","layout"),Ae=SI(t,{typography:{fluid:me},layout:{wideSize:de?.wideSize}});return a.jsxs(a.Fragment,{children:[a.jsx("div",{...N,className:oe(N.className,{[`has-custom-width wp-block-button__width-${A}`]:A}),children:a.jsx(Ie,{ref:ue,"aria-label":m("Button text"),placeholder:f||m("Add text…"),value:g,onChange:ye=>n({text:pN(ye)}),withoutInteractiveFormatting:!0,className:oe(o,"wp-block-button__link",C.className,S.className,Ae.className,{[`has-text-align-${d}`]:d,"no-border-radius":h?.border?.radius===0,"has-custom-font-size":N.style.fontSize},z0("button")),style:{...S.style,...C.style,...R.style,...T.style,...Ae.style,writingMode:void 0},onReplace:s,onMerge:i,identifier:"text"})}),a.jsxs(bt,{group:"block",children:[j==="default"&&a.jsx(nr,{value:d,onChange:ye=>{n({textAlign:ye})}}),!$&&Z&&!ce&&a.jsx(Vt,{name:"link",icon:xa,title:m("Link"),shortcut:j1.primary("k"),onClick:V}),$&&Z&&!ce&&a.jsx(Vt,{name:"link",icon:jl,title:m("Unlink"),shortcut:j1.primaryShift("k"),onClick:ee,isActive:!0})]}),Z&&r&&(I||$)&&!ce&&a.jsx(Io,{placement:"bottom",onClose:()=>{P(!1),B.current?.focus()},anchor:y,focusOnMount:I?"firstElement":!1,__unstableSlotName:"__unstable-block-tools-after",shift:!0,children:a.jsx(kc,{value:te,onChange:({url:ye,opensInNewTab:Ne,nofollow:je})=>n(FZt({rel:b,url:ye,opensInNewTab:Ne,nofollow:je})),onRemove:()=>{ee(),B.current?.focus()},forceIsEditingLink:I,settings:$Zt})}),a.jsx(et,{children:a.jsx(HZt,{selectedWidth:A,setAttributes:n})}),a.jsx(et,{group:"advanced",children:Z&&a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:b||"",onChange:ye=>n({rel:ye})})})]})}function XZt({attributes:e,className:t}){const{tagName:n,type:o,textAlign:r,fontSize:s,linkTarget:i,rel:c,style:l,text:u,title:d,url:p,width:f}=e,b=n||"a",h=b==="button",g=o||"button",z=X1(e),A=P1(e),_=Tm(e),v=db(e),M=SI(e),y=oe("wp-block-button__link",A.className,z.className,M.className,{[`has-text-align-${r}`]:r,"no-border-radius":l?.border?.radius===0,"has-custom-font-size":s||l?.typography?.fontSize},z0("button")),k={...z.style,...A.style,..._.style,...v.style,...M.style,writingMode:void 0},S=oe(t,{[`has-custom-width wp-block-button__width-${f}`]:f});return a.jsx("div",{...Be.save({className:S}),children:a.jsx(Ie.Content,{tagName:b,type:h?g:null,className:y,href:h?null:p,title:d,style:k,value:u,target:h?null:i,rel:h?null:c})})}const r9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/button",title:"Button",category:"design",parent:["core/buttons"],description:"Prompt visitors to take action with a button-style link.",keywords:["link"],textdomain:"default",attributes:{tagName:{type:"string",enum:["a","button"],default:"a"},type:{type:"string",default:"button"},textAlign:{type:"string"},url:{type:"string",source:"attribute",selector:"a",attribute:"href",role:"content"},title:{type:"string",source:"attribute",selector:"a,button",attribute:"title",role:"content"},text:{type:"rich-text",source:"rich-text",selector:"a,button",role:"content"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target",role:"content"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel",role:"content"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,splitting:!0,align:!1,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{__experimentalSkipSerialization:["fontSize","lineHeight","fontFamily","fontWeight","fontStyle","textTransform","textDecoration","letterSpacing"],fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},reusable:!1,shadow:{__experimentalSkipSerialization:!0},spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},interactivity:{clientNavigation:!0}},styles:[{name:"fill",label:"Fill",isDefault:!0},{name:"outline",label:"Outline"}],editorStyle:"wp-block-button-editor",style:"wp-block-button",selectors:{root:".wp-block-button .wp-block-button__link",typography:{writingMode:".wp-block-button"}}},{name:oAe}=r9,rAe={icon:Que,example:{attributes:{className:"is-style-fill",text:m("Call to action")}},edit:UZt,save:XZt,deprecated:DZt,merge:(e,{text:t=""})=>({...e,text:(e.text||"")+t})},GZt=()=>it({name:oAe,metadata:r9,settings:rAe}),KZt=Object.freeze(Object.defineProperty({__proto__:null,init:GZt,metadata:r9,name:oAe,settings:rAe},Symbol.toStringTag,{value:"Module"})),Ene=e=>{if(e.layout)return e;const{contentJustification:t,orientation:n,...o}=e;return(t||n)&&Object.assign(o,{layout:{type:"flex",...t&&{justifyContent:t},...n&&{orientation:n}}}),o},YZt=[{attributes:{contentJustification:{type:"string"},orientation:{type:"string",default:"horizontal"}},supports:{anchor:!0,align:["wide","full"],__experimentalExposeControlsToChildren:!0,spacing:{blockGap:!0,margin:["top","bottom"],__experimentalDefaultControls:{blockGap:!0}}},isEligible:({contentJustification:e,orientation:t})=>!!e||!!t,migrate:Ene,save({attributes:{contentJustification:e,orientation:t}}){return a.jsx("div",{...Be.save({className:oe({[`is-content-justification-${e}`]:e,"is-vertical":t==="vertical"})}),children:a.jsx(Ht.Content,{})})}},{supports:{align:["center","left","right"],anchor:!0},save(){return a.jsx("div",{children:a.jsx(Ht.Content,{})})},isEligible({align:e}){return e&&["center","left","right"].includes(e)},migrate(e){return Ene({...e,align:void 0,contentJustification:e.align})}}];function U2(e,t,n){if(!e)return;const{supports:o}=on(t),r=["core/paragraph","core/heading","core/image","core/button"],s=[];if(r.includes(t)&&n&&s.push("id","bindings"),o.renaming!==!1&&s.push("name"),!s.length)return;const i=Object.entries(e).reduce((c,[l,u])=>(s.includes(l)&&(c[l]=l==="bindings"?n(u):u),c),{});return Object.keys(i).length?i:void 0}const ZZt={from:[{type:"block",isMultiBlock:!0,blocks:["core/button"],transform:e=>Ee("core/buttons",{},e.map(t=>Ee("core/button",t)))},{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>Ee("core/buttons",{},e.map(t=>{const{content:n,metadata:o}=t,r=pl(document,n),s=r.innerText||"",c=r.querySelector("a")?.getAttribute("href");return Ee("core/button",{text:s,url:c,metadata:U2(o,"core/button",({content:l})=>({text:l}))})})),isMatch:e=>e.every(t=>{const n=pl(document,t.content),o=n.innerText||"",r=n.querySelectorAll("a");return o.length<=30&&r.length<=1})}]},QZt={name:"core/button",attributesToCopy:["backgroundColor","border","className","fontFamily","fontSize","gradient","style","textColor","width"]};function JZt({attributes:e,className:t}){var n;const{fontSize:o,layout:r,style:s}=e,i=Be({className:oe(t,{"has-custom-font-size":o||s?.typography?.fontSize})}),{hasButtonVariations:c}=G(u=>({hasButtonVariations:u(kt).getBlockVariations("core/button","inserter").length>0}),[]),l=Nt(i,{defaultBlock:QZt,directInsert:!c,template:[["core/button"]],templateInsertUpdatesSelection:!0,orientation:(n=r?.orientation)!==null&&n!==void 0?n:"horizontal"});return a.jsx("div",{...l})}function eQt({attributes:e,className:t}){const{fontSize:n,style:o}=e,r=Be.save({className:oe(t,{"has-custom-font-size":n||o?.typography?.fontSize})}),s=Nt.save(r);return a.jsx("div",{...s})}const s9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/buttons",title:"Buttons",category:"design",allowedBlocks:["core/button"],description:"Prompt visitors to take action with a group of button-style links.",keywords:["link"],textdomain:"default",supports:{anchor:!0,align:["wide","full"],html:!1,__experimentalExposeControlsToChildren:!0,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},spacing:{blockGap:["horizontal","vertical"],padding:!0,margin:["top","bottom"],__experimentalDefaultControls:{blockGap:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-buttons-editor",style:"wp-block-buttons"},{name:sAe}=s9,iAe={icon:zZe,example:{attributes:{layout:{type:"flex",justifyContent:"center"}},innerBlocks:[{name:"core/button",attributes:{text:m("Find out more")}},{name:"core/button",attributes:{text:m("Contact us")}}]},deprecated:YZt,transforms:ZZt,edit:JZt,save:eQt},tQt=()=>it({name:sAe,metadata:s9,settings:iAe}),nQt=Object.freeze(Object.defineProperty({__proto__:null,init:tQt,metadata:s9,name:sAe,settings:iAe},Symbol.toStringTag,{value:"Module"})),oQt=Hs(e=>{if(!e)return{};const t=new Date(e);return{year:t.getFullYear(),month:t.getMonth()+1}});function rQt({attributes:e}){const t=Be(),{date:n,hasPosts:o,hasPostsResolved:r}=G(s=>{const{getEntityRecords:i,hasFinishedResolution:c}=s(Me),l={status:"publish",per_page:1},u=i("postType","post",l),d=c("getEntityRecords",["postType","post",l]);let p;const f=s("core/editor");return f&&f.getEditedPostAttribute("type")==="post"&&(p=f.getEditedPostAttribute("date")),{date:p,hasPostsResolved:d,hasPosts:d&&u?.length===1}},[]);return o?a.jsx("div",{...t,children:a.jsx(I1,{children:a.jsx(FO,{block:"core/calendar",attributes:{...e,...oQt(n)}})})}):a.jsx("div",{...t,children:a.jsx(vo,{icon:Jue,label:m("Calendar"),children:r?m("No published posts found."):a.jsx(Xn,{})})})}const sQt={from:[{type:"block",blocks:["core/archives"],transform:()=>Ee("core/calendar")}],to:[{type:"block",blocks:["core/archives"],transform:()=>Ee("core/archives")}]},i9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/calendar",title:"Calendar",category:"widgets",description:"A calendar of your site’s posts.",keywords:["posts","archive"],textdomain:"default",attributes:{month:{type:"integer"},year:{type:"integer"}},supports:{align:!0,color:{link:!0,__experimentalSkipSerialization:["text","background"],__experimentalDefaultControls:{background:!0,text:!0},__experimentalSelector:"table, th"},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-calendar"},{name:aAe}=i9,cAe={icon:Jue,example:{},edit:rQt,transforms:sQt},iQt=()=>it({name:aAe,metadata:i9,settings:cAe}),aQt=Object.freeze(Object.defineProperty({__proto__:null,init:iQt,metadata:i9,name:aAe,settings:cAe},Symbol.toStringTag,{value:"Module"}));function lAe({attributes:{displayAsDropdown:e,showHierarchy:t,showPostCounts:n,showOnlyTopLevel:o,showEmpty:r,label:s,showLabel:i,taxonomy:c},setAttributes:l,className:u}){const d=vt(lAe,"blocks-category-select"),{records:p,isResolvingTaxonomies:f}=vl("root","taxonomy"),b=p?.filter(N=>N.visibility.public),h=b?.find(N=>N.slug===c),g=!f&&h?.hierarchical,z={per_page:-1,hide_empty:!r,context:"view"};g&&o&&(z.parent=0);const{records:A,isResolving:_}=vl("taxonomy",c,z),v=N=>A?.length?N===null?A:A.filter(({parent:j})=>j===N):[],M=N=>j=>l({[N]:j}),y=N=>N?Lt(N).trim():m("(Untitled)"),k=()=>v(g&&t?0:null).map(I=>S(I)),S=N=>{const j=v(N.id),{id:I,link:P,count:$,name:F}=N;return a.jsxs("li",{className:`cat-item cat-item-${I}`,children:[a.jsx("a",{href:P,target:"_blank",rel:"noreferrer noopener",children:y(F)}),n&&` (${$})`,g&&t&&!!j.length&&a.jsx("ul",{className:"children",children:j.map(X=>S(X))})]},I)},C=()=>{const j=v(g&&t?0:null);return a.jsxs(a.Fragment,{children:[i?a.jsx(Ie,{className:"wp-block-categories__label","aria-label":m("Label text"),placeholder:h.name,withoutInteractiveFormatting:!0,value:s,onChange:I=>l({label:I})}):a.jsx(qn,{as:"label",htmlFor:d,children:s||h.name}),a.jsxs("select",{id:d,children:[a.jsx("option",{children:xe(m("Select %s"),h.labels.singular_name)}),j.map(I=>R(I,0))]})]})},R=(N,j)=>{const{id:I,count:P,name:$}=N,F=v(I);return[a.jsxs("option",{className:`level-${j}`,children:[Array.from({length:j*3}).map(()=>" "),y($),n&&` (${P})`]},I),g&&t&&!!F.length&&F.map(X=>R(X,j+1))]},T=A?.length&&!e&&!_?"ul":"div",E=oe(u,{"wp-block-categories-list":!!A?.length&&!e&&!_,"wp-block-categories-dropdown":!!A?.length&&e&&!_}),B=Be({className:E});return a.jsxs(T,{...B,children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[Array.isArray(b)&&a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Taxonomy"),options:b.map(N=>({label:N.name,value:N.slug})),value:c,onChange:N=>l({taxonomy:N})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display as dropdown"),checked:e,onChange:M("displayAsDropdown")}),e&&a.jsx(lt,{__nextHasNoMarginBottom:!0,className:"wp-block-categories__indentation",label:m("Show label"),checked:i,onChange:M("showLabel")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show post counts"),checked:n,onChange:M("showPostCounts")}),g&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show only top level terms"),checked:o,onChange:M("showOnlyTopLevel")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show empty terms"),checked:r,onChange:M("showEmpty")}),g&&!o&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show hierarchy"),checked:t,onChange:M("showHierarchy")})]})}),_&&a.jsx(vo,{icon:xde,label:m("Terms"),children:a.jsx(Xn,{})}),!_&&A?.length===0&&a.jsx("p",{children:h.labels.no_terms}),!_&&A?.length>0&&(e?C():k())]})}const cQt=[{name:"terms",title:m("Terms List"),icon:gz,attributes:{taxonomy:"post_tag"},isActive:e=>e.taxonomy!=="category"},{name:"categories",title:m("Categories List"),description:m("Display a list of all categories."),icon:gz,attributes:{taxonomy:"category"},isActive:["taxonomy"],isDefault:!0}],a9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/categories",title:"Terms List",category:"widgets",description:"Display a list of all terms of a given taxonomy.",keywords:["categories"],textdomain:"default",attributes:{taxonomy:{type:"string",default:"category"},displayAsDropdown:{type:"boolean",default:!1},showHierarchy:{type:"boolean",default:!1},showPostCounts:{type:"boolean",default:!1},showOnlyTopLevel:{type:"boolean",default:!1},showEmpty:{type:"boolean",default:!1},label:{type:"string",role:"content"},showLabel:{type:"boolean",default:!0}},usesContext:["enhancedPagination"],supports:{align:!0,html:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-categories-editor",style:"wp-block-categories"},{name:uAe}=a9,dAe={icon:gz,example:{},edit:lAe,variations:cQt},lQt=()=>it({name:uAe,metadata:a9,settings:dAe}),uQt=Object.freeze(Object.defineProperty({__proto__:null,init:lQt,metadata:a9,name:uAe,settings:dAe},Symbol.toStringTag,{value:"Module"})),dQt=({clientId:e})=>{const{replaceBlocks:t}=Oe(Q),n=G(o=>o(Q).getBlock(e),[e]);return a.jsx(Vt,{onClick:()=>t(n.clientId,O3({HTML:Ks(n)})),children:m("Convert to blocks")})};function pQt({onClick:e,isModalFullScreen:t}){return Yn("small","<")?null:a.jsx(Ce,{size:"compact",onClick:e,icon:zz,isPressed:t,label:m(t?"Exit fullscreen":"Enter fullscreen")})}function fQt(e){const t=G(n=>n(Q).getSettings().styles);return x.useEffect(()=>{const{baseURL:n,suffix:o,settings:r}=window.wpEditorL10n.tinymce;return window.tinymce.EditorManager.overrideDefaults({base_url:n,suffix:o}),window.wp.oldEditor.initialize(e.id,{tinymce:{...r,setup(s){s.on("init",()=>{const i=s.getDoc();t.forEach(({css:c})=>{const l=i.createElement("style");l.innerHTML=c,i.head.appendChild(l)})})}}}),()=>{window.wp.oldEditor.remove(e.id)}},[]),a.jsx("textarea",{...e})}function bQt(e){const{clientId:t,attributes:{content:n},setAttributes:o,onReplace:r}=e,[s,i]=x.useState(!1),[c,l]=x.useState(!1),u=`editor-${t}`,d=()=>n?i(!1):r([]);return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>i(!0),children:m("Edit")})})}),n&&a.jsx(i0,{children:n}),(s||!n)&&a.jsxs(Zo,{title:m("Classic Editor"),onRequestClose:d,shouldCloseOnClickOutside:!1,overlayClassName:"block-editor-freeform-modal",isFullScreen:c,className:"block-editor-freeform-modal__content",headerActions:a.jsx(pQt,{onClick:()=>l(!c),isModalFullScreen:c}),children:[a.jsx(fQt,{id:u,defaultValue:n}),a.jsxs(Yo,{className:"block-editor-freeform-modal__actions",justify:"flex-end",expanded:!1,children:[a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:d,children:m("Cancel")})}),a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:()=>{o({content:window.wp.oldEditor.getContent(u)}),i(!1)},children:m("Save")})})]})]})]})}const{wp:Wne}=window;function hQt(e){const t=e.getBody();return t.childNodes.length>1?!1:t.childNodes.length===0?!0:t.childNodes[0].childNodes.length>1?!1:/^\n?$/.test(t.innerText||t.textContent)}function mQt(e){const{clientId:t}=e,n=G(i=>i(Q).canRemoveBlock(t),[t]),[o,r]=x.useState(!1),s=Mn(i=>{r(i.ownerDocument!==document)},[]);return a.jsxs(a.Fragment,{children:[n&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(dQt,{clientId:t})})}),a.jsx("div",{...Be({ref:s}),children:o?a.jsx(bQt,{...e}):a.jsx(gQt,{...e})})]})}function gQt({clientId:e,attributes:{content:t},setAttributes:n,onReplace:o}){const{getMultiSelectedBlockClientIds:r}=G(Q),s=x.useRef(!1);x.useEffect(()=>{if(!s.current)return;const l=window.tinymce.get(`editor-${e}`);if(!l)return;l.getContent()!==t&&l.setContent(t||"")},[e,t]),x.useEffect(()=>{const{baseURL:l,suffix:u}=window.wpEditorL10n.tinymce;s.current=!0,window.tinymce.EditorManager.overrideDefaults({base_url:l,suffix:u});function d(b){let h;t&&b.on("loadContent",()=>b.setContent(t)),b.on("blur",()=>{h=b.selection.getBookmark(2,!0);const z=document.querySelector(".interface-interface-skeleton__content"),A=z.scrollTop;return r()?.length||n({content:b.getContent()}),b.once("focus",()=>{h&&(b.selection.moveToBookmark(h),z.scrollTop!==A&&(z.scrollTop=A))}),!1}),b.on("mousedown touchstart",()=>{h=null});const g=F1(()=>{const z=b.getContent();z!==b._lastChange&&(b._lastChange=z,n({content:z}))},250);b.on("Paste Change input Undo Redo",g),b.on("remove",g.cancel),b.on("keydown",z=>{lc.primary(z,"z")&&z.stopPropagation(),(z.keyCode===Mc||z.keyCode===Ol)&&hQt(b)&&(o([]),z.preventDefault(),z.stopImmediatePropagation());const{altKey:A}=z;A&&z.keyCode===BSe&&z.stopPropagation()}),b.on("init",()=>{const z=b.getBody();z.ownerDocument.activeElement===z&&(z.blur(),b.focus())})}function p(){const{settings:b}=window.wpEditorL10n.tinymce;Wne.oldEditor.initialize(`editor-${e}`,{tinymce:{...b,inline:!0,content_css:!1,fixed_toolbar_container:`#toolbar-${e}`,setup:d}})}function f(){document.readyState==="complete"&&p()}return document.readyState==="complete"?p():document.addEventListener("readystatechange",f),()=>{document.removeEventListener("readystatechange",f),Wne.oldEditor.remove(`editor-${e}`),s.current=!1}},[]);function i(){const l=window.tinymce.get(`editor-${e}`);l&&l.focus()}function c(l){l.stopPropagation(),l.nativeEvent.stopImmediatePropagation()}return a.jsxs(a.Fragment,{children:[a.jsx("div",{id:`toolbar-${e}`,className:"block-library-classic__toolbar",onClick:i,"data-placeholder":m("Classic"),onKeyDown:c},"toolbar"),a.jsx("div",{id:`editor-${e}`,className:"wp-block-freeform block-library-rich-text__tinymce"},"editor")]})}function MQt({attributes:e}){const{content:t}=e;return a.jsx(i0,{children:t})}const c9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/freeform",title:"Classic",category:"text",description:"Use the classic WordPress editor.",textdomain:"default",attributes:{content:{type:"string",source:"raw"}},supports:{className:!1,customClassName:!1,reusable:!1},editorStyle:"wp-block-freeform-editor"},{name:a5}=c9,pAe={icon:AZe,edit:mQt,save:MQt},zQt=()=>it({name:a5,metadata:c9,settings:pAe}),OQt=Object.freeze(Object.defineProperty({__proto__:null,init:zQt,metadata:c9,name:a5,settings:pAe},Symbol.toStringTag,{value:"Module"}));function yQt({attributes:e,setAttributes:t,onRemove:n,insertBlocksAfter:o,mergeBlocks:r}){const s=Be();return a.jsx("pre",{...s,children:a.jsx(Ie,{tagName:"code",identifier:"content",value:e.content,onChange:i=>t({content:i}),onRemove:n,onMerge:r,placeholder:m("Write code…"),"aria-label":m("Code"),preserveWhiteSpace:!0,__unstablePastePlainText:!0,__unstableOnSplitAtDoubleLineEnd:()=>o(Ee(Mr()))})})}function AQt(e){return Ku(vQt,xQt)(e||"")}function vQt(e){return e.replace(/\[/g,"[")}function xQt(e){return e.replace(/^(\s*https?:)\/\/([^\s<>"]+\s*)$/m,"$1//$2")}function wQt({attributes:e}){return a.jsx("pre",{...Be.save(),children:a.jsx(Ie.Content,{tagName:"code",value:AQt(typeof e.content=="string"?e.content:e.content.toHTMLString({preserveWhiteSpace:!0}))})})}const _Qt={from:[{type:"enter",regExp:/^```$/,transform:()=>Ee("core/code")},{type:"block",blocks:["core/paragraph"],transform:({content:e,metadata:t})=>Ee("core/code",{content:e,metadata:U2(t,"core/code")})},{type:"block",blocks:["core/html"],transform:({content:e,metadata:t})=>Ee("core/code",{content:T0({value:eo({text:e})}),metadata:U2(t,"core/code")})},{type:"raw",isMatch:e=>e.nodeName==="PRE"&&e.children.length===1&&e.firstChild.nodeName==="CODE",schema:{pre:{children:{code:{children:{"#text":{}}}}}}}],to:[{type:"block",blocks:["core/paragraph"],transform:({content:e,metadata:t})=>Ee("core/paragraph",{content:e,metadata:U2(t,"core/paragraph")})}]},l9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/code",title:"Code",category:"text",description:"Display code snippets that respect your spacing and tabs.",textdomain:"default",attributes:{content:{type:"rich-text",source:"rich-text",selector:"code",__unstablePreserveWhiteSpace:!0}},supports:{align:["wide"],anchor:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{margin:["top","bottom"],padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{width:!0,color:!0}},color:{text:!0,background:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-code"},{name:fAe}=l9,bAe={icon:EP,example:{attributes:{content:m(`// A “block” is the abstract term used + .is-root-container.alignfull:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: none;}`,ue=_===Wf,ce=[Wf,Di,$l].includes(_)&&!v&&!u&&!C,me=x.useMemo(()=>[...t??[],{css:`:where(.block-editor-iframe__body){display:flow-root;}.is-root-container{display:flow-root;${ce?"min-height:0!important;":""}}`}],[t,ce]),de=x.useRef(),Ae=eBt();return r=xn([de,r,d==="post-only"?Ae:null,GKt({isEnabled:d==="template-locked"}),$Kt({isEnabled:d==="template-locked"}),VKt(),ce?l:null]),a.jsx("div",{className:oe("editor-visual-editor","edit-post-visual-editor",s,{"has-padding":z||ce,"is-resizable":ce,"is-iframed":!n,"is-scrollable":n||g!=="Desktop"}),children:a.jsx(Pye,{enableResizing:ce,height:i&&!ue?i:"100%",children:a.jsxs(XKt,{shouldIframe:!n,contentRef:r,styles:me,height:"100%",iframeProps:{...o,style:{...o?.style,...R}},children:[S&&!k&&d==="post-only"&&!A&&a.jsxs(a.Fragment,{children:[a.jsx(_v,{selector:".editor-visual-editor__post-title-wrapper",layout:E}),a.jsx(_v,{selector:".block-editor-block-list__layout.is-root-container",layout:V}),I&&a.jsx(_v,{css:J}),F&&a.jsx(_v,{layout:X,css:F})]}),d==="post-only"&&!A&&a.jsx("div",{className:oe("editor-visual-editor__post-title-wrapper","edit-post-visual-editor__post-title-wrapper",{"has-global-padding":y}),contentEditable:!1,ref:ee,style:{marginTop:"4rem"},children:a.jsx(qye,{ref:te})}),a.jsxs(TO,{blockName:b,uniqueId:h,children:[a.jsx(j_,{className:oe("is-"+g.toLowerCase()+"-preview",d!=="post-only"||A?"wp-site-blocks":`${$} wp-block-post-content`,{"has-global-padding":d==="post-only"&&!A&&y}),layout:Z,dropZoneElement:n?de.current:de.current?.parentNode,__unstableDisableDropZone:d==="template-locked"}),d==="template-locked"&&a.jsx(IKt,{contentRef:de})]})]})})})}const ZKt={header:m("Editor top bar"),body:m("Editor content"),sidebar:m("Editor settings"),actions:m("Editor publish"),footer:m("Editor footer")};function QKt({className:e,styles:t,children:n,forceIsDirty:o,contentRef:r,disableIframe:s,autoFocus:i,customSaveButton:c,customSavePanel:l,forceDisableBlockTools:u,title:d,iframeProps:p}){const{mode:f,isRichEditingEnabled:b,isInserterOpened:h,isListViewOpened:g,isDistractionFree:z,isPreviewMode:A,showBlockBreadcrumbs:_,documentLabel:v}=G(R=>{const{get:T}=R(ht),{getEditorSettings:E,getPostTypeLabel:B}=R(_e),N=E(),j=B();return{mode:R(_e).getEditorMode(),isRichEditingEnabled:N.richEditingEnabled,isInserterOpened:R(_e).isInserterOpened(),isListViewOpened:R(_e).isListViewOpened(),isDistractionFree:T("core","distractionFree"),isPreviewMode:N.isPreviewMode,showBlockBreadcrumbs:T("core","showBlockBreadcrumbs"),documentLabel:j||We("Document","noun, breadcrumb")}},[]),M=Yn("medium"),y=m(g?"Document Overview":"Block Library"),[k,S]=x.useState(!1),C=x.useCallback(R=>{typeof k=="function"&&k(R),S(!1)},[k]);return a.jsx(IOe,{isDistractionFree:z,className:oe("editor-editor-interface",e,{"is-entity-save-view-open":!!k,"is-distraction-free":z&&!A}),labels:{...ZKt,secondarySidebar:y},header:!A&&a.jsx(RKt,{forceIsDirty:o,setEntitiesSavedStatesCallback:S,customSaveButton:c,forceDisableBlockTools:u,title:d}),editorNotices:a.jsx(cne,{}),secondarySidebar:!A&&f==="visual"&&(h&&a.jsx(EKt,{})||g&&a.jsx(BKt,{})),sidebar:!A&&!z&&a.jsx(ck.Slot,{scope:"core"}),content:a.jsxs(a.Fragment,{children:[!z&&!A&&a.jsx(cne,{}),a.jsx(Lye.Slot,{children:([R])=>R||a.jsxs(a.Fragment,{children:[!A&&(f==="text"||!b)&&a.jsx(jKt,{autoFocus:i}),!A&&!M&&f==="visual"&&a.jsx(dI,{hideDragHandle:!0}),(A||b&&f==="visual")&&a.jsx(YKt,{styles:t,contentRef:r,disableIframe:s,autoFocus:i,iframeProps:p}),n]})})]}),footer:!A&&!z&&M&&_&&b&&f==="visual"&&a.jsx(kvt,{rootLabelText:v}),actions:A?void 0:l||a.jsx(PKt,{closeEntitiesSavedStates:C,isEntitiesSavedStatesOpen:k,setEntitiesSavedStatesCallback:S,forceIsDirtyPublishPanel:o})})}const{OverridesPanel:JKt}=St(Vi);function eYt(){return G(t=>t(_e).getCurrentPostType()==="wp_block",[])?a.jsx(JKt,{}):null}function o5(e){return typeof e.title=="string"?Lt(e.title):e.title&&"rendered"in e.title?Lt(e.title.rendered):e.title&&"raw"in e.title?Lt(e.title.raw):""}const tYt=({items:e,closeModal:t})=>{const[n]=e,o=o5(n),{showOnFront:r,currentHomePage:s,isSaving:i}=G(h=>{const{getEntityRecord:g,isSavingEntityRecord:z}=h(Me),A=g("root","site"),_=g("postType","page",A?.page_on_front);return{showOnFront:A?.show_on_front,currentHomePage:_,isSaving:z("root","site")}}),{saveEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(h){h.preventDefault();try{await c("root","site",{page_on_front:n.id,show_on_front:"page"}),l(m("Homepage updated."),{type:"snackbar"})}catch(g){const z=g.message&&g.code!=="unknown_error"?g.message:m("An error occurred while setting the homepage.");u(z,{type:"snackbar"})}finally{t?.()}}let p="";r==="posts"?p=m("This will replace the current homepage which is set to display latest posts."):s&&(p=xe(m('This will replace the current homepage: "%s"'),o5(s)));const f=xe(m('Set "%1$s" as the site homepage? %2$s'),o,p).trim(),b=m("Set homepage");return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:f}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},disabled:i,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",disabled:i,accessibleWhenDisabled:!0,children:b})]})]})})},nYt=()=>{const{pageOnFront:e,pageForPosts:t}=G(n=>{const{getEntityRecord:o,canUser:r}=n(Me),s=r("read",{kind:"root",name:"site"})?o("root","site"):void 0;return{pageOnFront:s?.page_on_front,pageForPosts:s?.page_for_posts}});return x.useMemo(()=>({id:"set-as-homepage",label:m("Set as homepage"),isEligible(n){return!(n.status!=="publish"||n.type!=="page"||e===n.id||t===n.id)},RenderModal:tYt}),[t,e])},oYt=({items:e,closeModal:t})=>{const[n]=e,o=o5(n),{currentPostsPage:r,isPageForPostsSet:s,isSaving:i}=G(h=>{const{getEntityRecord:g,isSavingEntityRecord:z}=h(Me),A=g("root","site");return{currentPostsPage:g("postType","page",A?.page_for_posts),isPageForPostsSet:A?.page_for_posts!==0,isSaving:z("root","site")}}),{saveEntityRecord:c}=Oe(Me),{createSuccessNotice:l,createErrorNotice:u}=Oe(mt);async function d(h){h.preventDefault();try{await c("root","site",{page_for_posts:n.id,show_on_front:"page"}),l(m("Posts page updated."),{type:"snackbar"})}catch(g){const z=g.message&&g.code!=="unknown_error"?g.message:m("An error occurred while setting the posts page.");u(z,{type:"snackbar"})}finally{t?.()}}const p=s&&r?xe(m('This will replace the current posts page: "%s"'),o5(r)):m("This page will show the latest posts."),f=xe(m('Set "%1$s" as the posts page? %2$s'),o,p),b=m("Set posts page");return a.jsx("form",{onSubmit:d,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(Sn,{children:f}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t?.()},disabled:i,accessibleWhenDisabled:!0,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",disabled:i,accessibleWhenDisabled:!0,children:b})]})]})})},rYt=()=>{const{pageOnFront:e,pageForPosts:t}=G(n=>{const{getEntityRecord:o,canUser:r}=n(Me),s=r("read",{kind:"root",name:"site"})?o("root","site"):void 0;return{pageOnFront:s?.page_on_front,pageForPosts:s?.page_for_posts}});return x.useMemo(()=>({id:"set-as-posts-page",label:m("Set as posts page"),isEligible(n){return!(n.status!=="publish"||n.type!=="page"||e===n.id||t===n.id)},RenderModal:oYt}),[t,e])};function jye({postType:e,onActionPerformed:t,context:n}){const{defaultActions:o}=G(d=>{const{getEntityActions:p}=St(d(_e));return{defaultActions:p("postType",e)}},[e]),{canManageOptions:r,hasFrontPageTemplate:s}=G(d=>{const{getEntityRecords:p}=d(Me),f=p("postType","wp_template",{per_page:-1});return{canManageOptions:d(Me).canUser("update",{kind:"root",name:"site"}),hasFrontPageTemplate:!!f?.find(b=>b?.slug==="front-page")}}),i=nYt(),c=rYt(),l=r&&!s,{registerPostTypeSchema:u}=St(Oe(_e));return x.useEffect(()=>{u(e)},[u,e]),x.useMemo(()=>{let d=[...o];if(l&&d.push(i,c),d=d.sort((p,f)=>f.id==="move-to-trash"?-1:0),d=d.filter(p=>p.context?p.context===n:!0),t)for(let p=0;p<d.length;++p){if(d[p].callback){const f=d[p].callback;d[p]={...d[p],callback:(b,h)=>{f(b,{...h,onActionPerformed:g=>{h?.onActionPerformed&&h.onActionPerformed(g),t(d[p].id,g)}})}}}if(d[p].RenderModal){const f=d[p].RenderModal;d[p]={...d[p],RenderModal:b=>a.jsx(f,{...b,onActionPerformed:h=>{b.onActionPerformed&&b.onActionPerformed(h),t(d[p].id,h)}})}}}return d},[n,o,t,i,c,l])}const{Menu:H2,kebabCase:sYt}=St(tr);function iYt(e,t){const{items:n,permissions:o}=G(r=>{const{getEditedEntityRecord:s,getEntityRecordPermissions:i}=St(r(Me));return{items:t.map(c=>s("postType",e,c)),permissions:t.map(c=>i("postType",e,c))}},[t,e]);return x.useMemo(()=>n.map((r,s)=>({...r,permissions:o[s]})),[n,o])}function aYt({postType:e,postId:t,onActionPerformed:n}){const[o,r]=x.useState(null),s=x.useMemo(()=>Array.isArray(t)?t:t?[t]:[],[t]),i=iYt(e,s),c=jye({postType:e,onActionPerformed:n}),l=x.useMemo(()=>c.filter(u=>(!u.isEligible||i.some(d=>u.isEligible(d)))&&(i.length<2||u.supportsBulk)),[c,i]);return a.jsxs(a.Fragment,{children:[a.jsxs(H2,{placement:"bottom-end",children:[a.jsx(H2.TriggerButton,{render:a.jsx(Ce,{size:"small",icon:Wc,label:m("Actions"),disabled:!l.length,accessibleWhenDisabled:!0,className:"editor-all-actions-button"})}),a.jsx(H2.Popover,{children:a.jsx(uYt,{actions:l,items:i,setActiveModalAction:r})})]}),!!o&&a.jsx(lYt,{action:o,items:i,closeModal:()=>r(null)})]})}function cYt({action:e,onClick:t,items:n}){const o=typeof e.label=="string"?e.label:e.label(n);return a.jsx(H2.Item,{onClick:t,children:a.jsx(H2.ItemLabel,{children:o})})}function lYt({action:e,items:t,closeModal:n}){const o=typeof e.label=="string"?e.label:e.label(t);return a.jsx(Zo,{title:e.modalHeader||o,__experimentalHideHeader:!!e.hideModalHeader,onRequestClose:n??(()=>{}),focusOnMount:"firstContentElement",size:"medium",overlayClassName:`editor-action-modal editor-action-modal__${sYt(e.id)}`,children:a.jsx(e.RenderModal,{items:t,closeModal:n})})}function uYt({actions:e,items:t,setActiveModalAction:n}){const o=Fn();return a.jsx(H2.Group,{children:e.map(r=>a.jsx(cYt,{action:r,onClick:()=>{if("RenderModal"in r){n(r);return}r.callback(t,{registry:o})},items:t},r.id))})}const{Badge:dYt}=St(tr);function Iye({postType:e,postId:t,onActionPerformed:n}){const o=x.useMemo(()=>Array.isArray(t)?t:[t],[t]),{postTitle:r,icon:s,labels:i}=G(u=>{const{getEditedEntityRecord:d,getEntityRecord:p,getPostType:f}=u(Me),{getPostIcon:b}=St(u(_e));let h="";const g=d("postType",e,o[0]);if(o.length===1){var z;const{default_template_types:A=[]}=(z=p("root","__unstableBase"))!==null&&z!==void 0?z:{};h=([L0,Di].includes(e)?LO({template:g,templateTypes:A}):{})?.title||g?.title}return{postTitle:h,icon:b(e,{area:g?.area}),labels:f(e)?.labels}},[o,e]),c=GOe(t);let l=m("No title");return i?.name&&o.length>1?l=xe(m("%i %s"),t.length,i?.name):r&&(l=v1(r)),a.jsxs(dt,{spacing:1,className:"editor-post-card-panel",children:[a.jsxs(Ot,{spacing:2,className:"editor-post-card-panel__header",align:"flex-start",children:[a.jsx(qo,{className:"editor-post-card-panel__icon",icon:s}),a.jsxs(Sn,{numberOfLines:2,truncate:!0,className:"editor-post-card-panel__title",as:"h2",children:[a.jsx("span",{className:"editor-post-card-panel__title-name",children:l}),c&&o.length===1&&a.jsx(dYt,{children:c})]}),a.jsx(aYt,{postType:e,postId:t,onActionPerformed:n})]}),o.length>1&&a.jsx(Sn,{className:"editor-post-card-panel__description",children:xe(m("Changes will be applied to all selected %s."),i?.name.toLowerCase())})]})}const pYt=189;function fYt(){const{postContent:e}=G(i=>{const{getEditedPostAttribute:c,getCurrentPostType:l,getCurrentPostId:u}=i(_e),{canUser:d}=i(Me),{getEntityRecord:p}=i(Me),f=d("read",{kind:"root",name:"site"})?p("root","site"):void 0,b=l();return{postContent:!(+u()===f?.page_for_posts)&&![L0,Di].includes(b)&&c("content")}},[]),t=We("words","Word count type. Do not translate!"),n=x.useMemo(()=>e?DO(e,t):0,[e,t]);if(!n)return null;const o=Math.round(n/pYt),r=xe(Dn("%s word","%s words",n),n.toLocaleString()),s=o<=1?m("1 minute"):xe(Dn("%s minute","%s minutes",o),o.toLocaleString());return a.jsx("div",{className:"editor-post-content-information",children:a.jsx(Sn,{children:xe(m("%1$s, %2$s read time."),r,s)})})}function bYt(){const{postFormat:e}=G(s=>{const{getEditedPostAttribute:i}=s(_e),c=i("format");return{postFormat:c??"standard"}},[]),t=UI.find(s=>s.id===e),[n,o]=x.useState(null),r=x.useMemo(()=>({anchor:n,placement:"left-start",offset:36,shift:!0}),[n]);return a.jsx(lye,{children:a.jsx(xs,{label:m("Format"),ref:o,children:a.jsx(so,{popoverProps:r,contentClassName:"editor-post-format__dialog",focusOnMount:!0,renderToggle:({isOpen:s,onToggle:i})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":s,"aria-label":xe(m("Change format: %s"),t?.caption),onClick:i,children:t?.caption}),renderContent:({onClose:s})=>a.jsxs("div",{className:"editor-post-format__dialog-content",children:[a.jsx(Qs,{title:m("Format"),onClose:s}),a.jsx(uye,{})]})})})})}function hYt(){const e=G(n=>n(_e).getEditedPostAttribute("modified"),[]),t=e&&xe(m("Last edited %s."),a_(e));return t?a.jsx("div",{className:"editor-post-last-edited-panel",children:a.jsx(Sn,{children:t})}):null}function mYt({className:e,children:t}){return a.jsx(dt,{className:oe("editor-post-panel__section",e),children:t})}const gYt={};function MYt(){const{editEntityRecord:e}=Oe(Me),{postsPageTitle:t,postsPageId:n,isTemplate:o,postSlug:r}=G(d=>{const{getEntityRecord:p,getEditedEntityRecord:f,canUser:b}=d(Me),h=b("read",{kind:"root",name:"site"})?p("root","site"):void 0,g=h?.page_for_posts?f("postType","page",h?.page_for_posts):gYt,{getEditedPostAttribute:z,getCurrentPostType:A}=d(_e);return{postsPageId:g?.id,postsPageTitle:g?.title,isTemplate:A()===L0,postSlug:z("slug")}},[]),[s,i]=x.useState(null),c=x.useMemo(()=>({anchor:s,placement:"left-start",offset:36,shift:!0}),[s]);if(!o||!["home","index"].includes(r)||!n)return null;const l=d=>{e("postType","page",n,{title:d})},u=Lt(t);return a.jsx(xs,{label:m("Blog title"),ref:i,children:a.jsx(so,{popoverProps:c,contentClassName:"editor-blog-title-dropdown__content",focusOnMount:!0,renderToggle:({isOpen:d,onToggle:p})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":d,"aria-label":xe(m("Change blog title: %s"),u),onClick:p,children:u}),renderContent:({onClose:d})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Blog title"),onClose:d}),a.jsx(N1,{placeholder:m("No title"),size:"__unstable-large",value:t,onChange:F1(l,300),label:m("Blog title"),help:m("Set the Posts Page title. Appears in search results, and when the page is shared on social media."),hideLabelFromVision:!0})]})})})}function zYt(){const{editEntityRecord:e}=Oe(Me),{postsPerPage:t,isTemplate:n,postSlug:o}=G(l=>{const{getEditedPostAttribute:u,getCurrentPostType:d}=l(_e),{getEditedEntityRecord:p,canUser:f}=l(Me),b=f("read",{kind:"root",name:"site"})?p("root","site"):void 0;return{isTemplate:d()===L0,postSlug:u("slug"),postsPerPage:b?.posts_per_page||1}},[]),[r,s]=x.useState(null),i=x.useMemo(()=>({anchor:r,placement:"left-start",offset:36,shift:!0}),[r]);if(!n||!["home","index"].includes(o))return null;const c=l=>{e("root","site",void 0,{posts_per_page:l})};return a.jsx(xs,{label:m("Posts per page"),ref:s,children:a.jsx(so,{popoverProps:i,contentClassName:"editor-posts-per-page-dropdown__content",focusOnMount:!0,renderToggle:({isOpen:l,onToggle:u})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":l,"aria-label":m("Change posts per page"),onClick:u,children:t}),renderContent:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Posts per page"),onClose:l}),a.jsx(g0,{placeholder:0,value:t,size:"__unstable-large",spinControls:"custom",step:"1",min:"1",onChange:c,label:m("Posts per page"),help:m("Set the default number of posts to display on blog pages, including categories and tags. Some templates may override this setting."),hideLabelFromVision:!0})]})})})}const OYt=[{label:We("Open",'Adjective: e.g. "Comments are open"'),value:"open",description:m("Visitors can add new comments and replies.")},{label:m("Closed"),value:"",description:[m("Visitors cannot add new comments or replies."),m("Existing comments remain visible.")].join(" ")}];function yYt(){const{editEntityRecord:e}=Oe(Me),{allowCommentsOnNewPosts:t,isTemplate:n,postSlug:o}=G(l=>{const{getEditedPostAttribute:u,getCurrentPostType:d}=l(_e),{getEditedEntityRecord:p,canUser:f}=l(Me),b=f("read",{kind:"root",name:"site"})?p("root","site"):void 0;return{isTemplate:d()===L0,postSlug:u("slug"),allowCommentsOnNewPosts:b?.default_comment_status||""}},[]),[r,s]=x.useState(null),i=x.useMemo(()=>({anchor:r,placement:"left-start",offset:36,shift:!0}),[r]);if(!n||!["home","index"].includes(o))return null;const c=l=>{e("root","site",void 0,{default_comment_status:l?"open":null})};return a.jsx(xs,{label:m("Discussion"),ref:s,children:a.jsx(so,{popoverProps:i,contentClassName:"editor-site-discussion-dropdown__content",focusOnMount:!0,renderToggle:({isOpen:l,onToggle:u})=>a.jsx(Ce,{size:"compact",variant:"tertiary","aria-expanded":l,"aria-label":m("Change discussion settings"),onClick:u,children:m(t?"Comments open":"Comments closed")}),renderContent:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsx(Qs,{title:m("Discussion"),onClose:l}),a.jsxs(dt,{spacing:3,children:[a.jsx(Sn,{children:m("Changes will apply to new posts only. Individual posts may override these settings.")}),a.jsx(sb,{className:"editor-site-discussion__options",hideLabelFromVision:!0,label:m("Comment status"),options:OYt,onChange:c,selected:t})]})]})})})}const AYt="post-status";function vYt({onActionPerformed:e}){const{isRemovedPostStatusPanel:t,postType:n,postId:o}=G(r=>{const{isEditorPanelRemoved:s,getCurrentPostType:i,getCurrentPostId:c}=r(_e);return{isRemovedPostStatusPanel:s(AYt),postType:i(),postId:c()}},[]);return a.jsx(mYt,{className:"editor-post-summary",children:a.jsx(sye.Slot,{children:r=>a.jsx(a.Fragment,{children:a.jsxs(dt,{spacing:4,children:[a.jsx(Iye,{postType:n,postId:o,onActionPerformed:e}),a.jsx(yXt,{withPanelBody:!1}),a.jsx(dXt,{}),a.jsxs(dt,{spacing:1,children:[a.jsx(fYt,{}),a.jsx(hYt,{})]}),!t&&a.jsxs(dt,{spacing:4,children:[a.jsxs(dt,{spacing:1,children:[a.jsx(xye,{}),a.jsx(fGt,{}),a.jsx(xGt,{}),a.jsx(JUt,{}),a.jsx(UUt,{}),a.jsx(iXt,{}),a.jsx(xXt,{}),a.jsx(xUt,{}),a.jsx(bGt,{}),a.jsx(MYt,{}),a.jsx(zYt,{}),a.jsx(yYt,{}),a.jsx(bYt,{}),r]}),a.jsx(AGt,{onActionPerformed:e})]})]})})})})}const{EXCLUDED_PATTERN_SOURCES:xYt,PATTERN_TYPES:wYt}=St(Vi);function Dye(e,t){return e.innerBlocks=e.innerBlocks.map(n=>Dye(n,t)),e.name==="core/template-part"&&e.attributes.theme===void 0&&(e.attributes.theme=t),e}function _Yt(e,t){const n=(s,i,c)=>i===c.findIndex(l=>s.name===l.name),o=s=>!xYt.includes(s.source),r=s=>s.templateTypes?.includes(t.slug)||s.blockTypes?.includes("core/template-part/"+t.area);return e.filter((s,i,c)=>n(s,i,c)&&o(s)&&r(s))}function kYt(e,t){return e.map(n=>({...n,keywords:n.keywords||[],type:wYt.theme,blocks:Ko(n.content,{__unstableSkipMigrationLogs:!0}).map(o=>Dye(o,t))}))}function SYt(e){const{blockPatterns:t,restBlockPatterns:n,currentThemeStylesheet:o}=G(r=>{var s;const{getEditorSettings:i}=r(_e),c=i();return{blockPatterns:(s=c.__experimentalAdditionalBlockPatterns)!==null&&s!==void 0?s:c.__experimentalBlockPatterns,restBlockPatterns:r(Me).getBlockPatterns(),currentThemeStylesheet:r(Me).getCurrentTheme().stylesheet}},[]);return x.useMemo(()=>{const r=[...t||[],...n||[]],s=_Yt(r,e);return kYt(s,e)},[t,n,e,o])}function CYt({availableTemplates:e,onSelect:t}){return!e||e?.length===0?null:a.jsx(qa,{label:m("Templates"),blockPatterns:e,onClickPattern:t,showTitlesAsTooltip:!0})}function qYt(){const{record:e,postType:t,postId:n}=G(i=>{const{getCurrentPostType:c,getCurrentPostId:l}=i(_e),{getEditedEntityRecord:u}=i(Me),d=c(),p=l();return{postType:d,postId:p,record:u("postType",d,p)}},[]),{editEntityRecord:o}=Oe(Me),r=SYt(e),s=async i=>{await o("postType",t,n,{blocks:i.blocks,content:Ks(i.blocks)})};return r?.length?a.jsx(Qt,{title:m("Design"),initialOpen:e.type===Di,children:a.jsx(CYt,{availableTemplates:r,onSelect:s})}):null}function RYt(){const{postType:e}=G(t=>{const{getCurrentPostType:n}=t(_e);return{postType:n()}},[]);return[Di,L0].includes(e)?a.jsx(qYt,{}):null}const ac={document:"edit-post/document",block:"edit-post/block"},{Tabs:ET}=St(tr),TYt=(e,t)=>{const{documentLabel:n}=G(o=>{const{getPostTypeLabel:r}=o(_e);return{documentLabel:r()||We("Document","noun, sidebar")}},[]);return a.jsxs(ET.TabList,{ref:t,children:[a.jsx(ET.Tab,{tabId:ac.document,"data-tab-id":ac.document,children:n}),a.jsx(ET.Tab,{tabId:ac.block,"data-tab-id":ac.block,children:m("Block")})]})},EYt=x.forwardRef(TYt),{BlockQuickNavigation:WYt}=St(jn),NYt=["core/post-title","core/post-featured-image","core/post-content"],BYt="core/template-part";function LYt(){const e=x.useMemo(()=>gr("editor.postContentBlockTypes",NYt),[]),{clientIds:t,postType:n,renderingMode:o}=G(s=>{const{getCurrentPostType:i,getPostBlocksByName:c,getRenderingMode:l}=St(s(_e)),u=i();return{postType:u,clientIds:c(L0===u?BYt:e),renderingMode:l()}},[e]),{enableComplementaryArea:r}=Oe(xo);return o==="post-only"&&n!==L0||t.length===0?null:a.jsx(Qt,{title:m("Content"),children:a.jsx(WYt,{clientIds:t,onSelect:()=>{r("core","edit-post/document")}})})}const{BlockQuickNavigation:PYt}=St(jn);function jYt(){const e=G(o=>{const{getBlockTypes:r}=o(kt);return r()},[]),t=x.useMemo(()=>e.filter(o=>o.category==="theme").map(({name:o})=>o),[e]),n=G(o=>{const{getBlocksByName:r}=o(Q);return r(t)},[t]);return n.length===0?null:a.jsx(Qt,{title:m("Content"),children:a.jsx(PYt,{clientIds:n})})}function IYt(){return G(t=>{const{getCurrentPostType:n}=t(_e);return n()},[])!==Di?null:a.jsx(jYt,{})}function DYt(){const{hasBlockSelection:e}=G(r=>({hasBlockSelection:!!r(Q).getBlockSelectionStart()}),[]),{getActiveComplementaryArea:t}=G(xo),{enableComplementaryArea:n}=Oe(xo),{get:o}=G(ht);x.useEffect(()=>{const r=t("core"),s=["edit-post/document","edit-post/block"].includes(r),i=o("core","distractionFree");!s||i||(e?n("core","edit-post/block"):n("core","edit-post/document"))},[e,t,n,o])}const{Tabs:l2}=St(tr),FYt=f0.select({web:!0,native:!1}),$Yt=({tabName:e,keyboardShortcut:t,onActionPerformed:n,extraPanels:o})=>{const r=x.useRef(null),s=x.useContext(l2.Context);return x.useEffect(()=>{const i=Array.from(r.current?.querySelectorAll('[role="tab"]')||[]),c=i.find(d=>d.getAttribute("data-tab-id")===e),l=c?.ownerDocument.activeElement;i.some(d=>l&&l.id===d.id)&&c&&c.id!==l?.id&&c?.focus()},[e]),a.jsx(aN,{identifier:e,header:a.jsx(l2.Context.Provider,{value:s,children:a.jsx(EYt,{ref:r})}),closeLabel:m("Close Settings"),className:"editor-sidebar__panel",headerClassName:"editor-sidebar__panel-tabs",title:We("Settings","sidebar button label"),toggleShortcut:t,icon:jt()?ode:rde,isActiveByDefault:FYt,children:a.jsxs(l2.Context.Provider,{value:s,children:[a.jsxs(l2.TabPanel,{tabId:ac.document,focusable:!1,children:[a.jsx(vYt,{onActionPerformed:n}),a.jsx(oye.Slot,{}),a.jsx(LYt,{}),a.jsx(IYt,{}),a.jsx(RYt,{}),a.jsx(MGt,{}),a.jsx(eYt,{}),o]}),a.jsx(l2.TabPanel,{tabId:ac.block,focusable:!1,children:a.jsx(z3e,{})})]})})},VYt=({extraPanels:e,onActionPerformed:t})=>{DYt();const{tabName:n,keyboardShortcut:o,showSummary:r}=G(c=>{const l=c(Pi).getShortcutRepresentation("core/editor/toggle-sidebar"),u=c(xo).getActiveComplementaryArea("core"),d=[ac.block,ac.document].includes(u);let p=u;return d||(p=c(Q).getBlockSelectionStart()?ac.block:ac.document),{tabName:p,keyboardShortcut:l,showSummary:![L0,Di,Wf].includes(c(_e).getCurrentPostType())}},[]),{enableComplementaryArea:s}=Oe(xo),i=x.useCallback(c=>{c&&s("core",c)},[s]);return a.jsx(l2,{selectedTabId:n,onSelect:i,selectOnMove:!1,children:a.jsx($Yt,{tabName:n,keyboardShortcut:o,showSummary:r,onActionPerformed:t,extraPanels:e})})};function HYt({postType:e,postId:t,templateId:n,settings:o,children:r,initialEdits:s,onActionPerformed:i,extraContent:c,extraSidebarPanels:l,...u}){const{post:d,template:p,hasLoadedPost:f}=G(b=>{const{getEntityRecord:h,hasFinishedResolution:g}=b(Me);return{post:h("postType",e,t),template:n?h("postType",L0,n):void 0,hasLoadedPost:g("getEntityRecord",["postType",e,t])}},[e,t,n]);return a.jsxs(a.Fragment,{children:[f&&!d&&a.jsx(L1,{status:"warning",isDismissible:!1,children:m("You attempted to edit an item that doesn't exist. Perhaps it was deleted?")}),!!d&&a.jsxs(VOe,{post:d,__unstableTemplate:p,settings:o,initialEdits:s,useSubRegistry:!1,children:[a.jsx(QKt,{...u,children:c}),r,a.jsx(VYt,{onActionPerformed:i,extraPanels:l})]})]})}const{PreferenceBaseOption:UYt}=St(cp);function XYt(e){const t=G(r=>r(_e).isPublishSidebarEnabled(),[]),{enablePublishSidebar:n,disablePublishSidebar:o}=Oe(_e);return a.jsx(UYt,{isChecked:t,onChange:r=>r?n():o(),...e})}const{BlockManager:GYt}=St(jn);function KYt(){const{showBlockTypes:e,hideBlockTypes:t}=St(Oe(_e)),{blockTypes:n,allowedBlockTypes:o,hiddenBlockTypes:r}=G(d=>{var p;return{blockTypes:d(kt).getBlockTypes(),allowedBlockTypes:d(_e).getEditorSettings().allowedBlockTypes,hiddenBlockTypes:(p=d(ht).get("core","hiddenBlockTypes"))!==null&&p!==void 0?p:[]}},[]),i=x.useMemo(()=>o===!0?n:n.filter(({name:d})=>o?.includes(d)),[o,n]).filter(d=>Et(d,"inserter",!0)&&(!d.parent||d.parent.includes("core/post-content"))),c=r.filter(d=>i.some(p=>p.name===d)),l=i.filter(d=>!c.includes(d.name)),u=d=>{if(l.length>d.length){const p=l.filter(f=>!d.find(({name:b})=>b===f.name));t(p.map(({name:f})=>f))}else if(l.length<d.length){const p=d.filter(f=>!l.find(({name:b})=>b===f.name));e(p.map(({name:f})=>f))}};return a.jsx(GYt,{blockTypes:i,selectedBlockTypes:l,onChange:u})}const{PreferencesModal:YYt,PreferencesModalTabs:ZYt,PreferencesModalSection:nl,PreferenceToggleControl:ui}=St(cp);function QYt({extraSections:e={}}){const t=G(o=>o(xo).isModalActive("editor/preferences"),[]),{closeModal:n}=Oe(xo);return t?a.jsx(YYt,{closeModal:n,children:a.jsx(JYt,{extraSections:e})}):null}function JYt({extraSections:e={}}){const t=Yn("medium"),n=G(c=>{const{getEditorSettings:l}=c(_e),{get:u}=c(ht),d=l().richEditingEnabled;return!u("core","distractionFree")&&t&&d},[t]),{setIsListViewOpened:o,setIsInserterOpened:r}=Oe(_e),{set:s}=Oe(ht),i=x.useMemo(()=>[{name:"general",tabLabel:m("General"),content:a.jsxs(a.Fragment,{children:[a.jsxs(nl,{title:m("Interface"),children:[a.jsx(ui,{scope:"core",featureName:"showListViewByDefault",help:m("Opens the List View sidebar by default."),label:m("Always open List View")}),n&&a.jsx(ui,{scope:"core",featureName:"showBlockBreadcrumbs",help:m("Display the block hierarchy trail at the bottom of the editor."),label:m("Show block breadcrumbs")}),a.jsx(ui,{scope:"core",featureName:"allowRightClickOverrides",help:m("Allows contextual List View menus via right-click, overriding browser defaults."),label:m("Allow right-click contextual menus")}),a.jsx(ui,{scope:"core",featureName:"enableChoosePatternModal",help:m("Shows starter patterns when creating a new page."),label:m("Show starter patterns")})]}),a.jsxs(nl,{title:m("Document settings"),description:m("Select what settings are shown in the document panel."),children:[a.jsx(FI.Slot,{}),a.jsx(wye,{taxonomyWrapper:(c,l)=>a.jsx(c2,{label:l.labels.menu_name,panelName:`taxonomy-panel-${l.slug}`})}),a.jsx(n5,{children:a.jsx(c2,{label:m("Featured image"),panelName:"featured-image"})}),a.jsx(cye,{children:a.jsx(c2,{label:m("Excerpt"),panelName:"post-excerpt"})}),a.jsx(Sc,{supportKeys:["comments","trackbacks"],children:a.jsx(c2,{label:m("Discussion"),panelName:"discussion-panel"})}),a.jsx(YOe,{children:a.jsx(c2,{label:m("Page attributes"),panelName:"page-attributes"})})]}),t&&a.jsx(nl,{title:m("Publishing"),children:a.jsx(XYt,{help:m("Review settings, such as visibility and tags."),label:m("Enable pre-publish checks")})}),e?.general]})},{name:"appearance",tabLabel:m("Appearance"),content:a.jsxs(nl,{title:m("Appearance"),description:m("Customize the editor interface to suit your needs."),children:[a.jsx(ui,{scope:"core",featureName:"fixedToolbar",onToggle:()=>s("core","distractionFree",!1),help:m("Access all block and document tools in a single place."),label:m("Top toolbar")}),a.jsx(ui,{scope:"core",featureName:"distractionFree",onToggle:()=>{s("core","fixedToolbar",!0),r(!1),o(!1)},help:m("Reduce visual distractions by hiding the toolbar and other elements to focus on writing."),label:m("Distraction free")}),a.jsx(ui,{scope:"core",featureName:"focusMode",help:m("Highlights the current block and fades other content."),label:m("Spotlight mode")}),e?.appearance]})},{name:"accessibility",tabLabel:m("Accessibility"),content:a.jsxs(a.Fragment,{children:[a.jsx(nl,{title:m("Navigation"),description:m("Optimize the editing experience for enhanced control."),children:a.jsx(ui,{scope:"core",featureName:"keepCaretInsideBlock",help:m("Keeps the text cursor within the block boundaries, aiding users with screen readers by preventing unintentional cursor movement outside the block."),label:m("Contain text cursor inside block")})}),a.jsx(nl,{title:m("Interface"),children:a.jsx(ui,{scope:"core",featureName:"showIconLabels",label:m("Show button text labels"),help:m("Show text instead of icons on buttons across the interface.")})})]})},{name:"blocks",tabLabel:m("Blocks"),content:a.jsxs(a.Fragment,{children:[a.jsx(nl,{title:m("Inserter"),children:a.jsx(ui,{scope:"core",featureName:"mostUsedBlocks",help:m("Adds a category with the most frequently used blocks in the inserter."),label:m("Show most used blocks")})}),a.jsx(nl,{title:m("Manage block visibility"),description:m("Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later."),children:a.jsx(KYt,{})})]})},window.__experimentalMediaProcessing&&{name:"media",tabLabel:m("Media"),content:a.jsx(a.Fragment,{children:a.jsxs(nl,{title:m("General"),description:m("Customize options related to the media upload flow."),children:[a.jsx(ui,{scope:"core/media",featureName:"optimizeOnUpload",help:m("Compress media items before uploading to the server."),label:m("Pre-upload compression")}),a.jsx(ui,{scope:"core/media",featureName:"requireApproval",help:m("Require approval step when optimizing existing media."),label:m("Approval step")})]})})}].filter(Boolean),[n,e,r,o,s,t]);return a.jsx(ZYt,{sections:i})}function eZt({postType:e}){const{registerPostTypeSchema:t}=St(Oe(_e));x.useEffect(()=>{t(e)},[t,e]);const{defaultFields:n}=G(i=>{const{getEntityFields:c}=St(i(_e));return{defaultFields:c("postType",e)}},[e]),{records:o,isResolving:r}=Al("root","user",{per_page:-1}),s=x.useMemo(()=>n.map(i=>i.id==="author"?{...i,elements:o?.map(({id:c,name:l})=>({value:c,label:l}))}:i),[o,n]);return{isLoading:r,fields:s}}const Tne="content",tZt={name:"core/pattern-overrides",getValues({select:e,clientId:t,context:n,bindings:o}){const r=n["pattern/overrides"],{getBlockAttributes:s}=e(Q),i=s(t),c={};for(const l of Object.keys(o)){const u=r?.[i?.metadata?.name]?.[l];if(u===void 0){c[l]=i[l];continue}else c[l]=u===""?void 0:u}return c},setValues({select:e,dispatch:t,clientId:n,bindings:o}){const{getBlockAttributes:r,getBlockParentsByBlockName:s,getBlocks:i}=e(Q),l=r(n)?.metadata?.name;if(!l)return;const[u]=s(n,"core/block",!0),d=Object.entries(o).reduce((f,[b,{newValue:h}])=>(f[b]=h,f),{});if(!u){const f=b=>{for(const h of b)h.attributes?.metadata?.name===l&&t(Q).updateBlockAttributes(h.clientId,d),f(h.innerBlocks)};f(i());return}const p=r(u)?.[Tne];t(Q).updateBlockAttributes(u,{[Tne]:{...p,[l]:{...p?.[l],...Object.entries(d).reduce((f,[b,h])=>(f[b]=h===void 0?"":h,f),{})}}})},canUserEditValue:()=>!0};function WT(e,t){const{getEditedEntityRecord:n}=e(Me),{getRegisteredPostMeta:o}=St(e(Me));let r;t?.postType&&t?.postId&&(r=n("postType",t?.postType,t?.postId).meta);const s=o(t?.postType),i={};return Object.entries(s||{}).forEach(([c,l])=>{if(c!=="footnotes"&&c.charAt(0)!=="_"){var u;i[c]={label:l.title||c,value:(u=r?.[c])!==null&&u!==void 0?u:l.default||void 0,type:l.type}}}),Object.keys(i||{}).length?i:null}const nZt={name:"core/post-meta",getValues({select:e,context:t,bindings:n}){const o=WT(e,t),r={};for(const[i,c]of Object.entries(n)){var s;const l=c.args.key,{value:u,label:d}=o?.[l]||{};r[i]=(s=u??d)!==null&&s!==void 0?s:l}return r},setValues({dispatch:e,context:t,bindings:n}){const o={};Object.values(n).forEach(({args:r,newValue:s})=>{o[r.key]=s}),e(Me).editEntityRecord("postType",t?.postType,t?.postId,{meta:o})},canUserEditValue({select:e,context:t,args:n}){return!(t?.query||t?.queryId||!t?.postType||WT(e,t)?.[n.key]?.value===void 0||e(_e).getEditorSettings().enableCustomFields||!e(Me).canUser("update",{kind:"postType",name:t?.postType,id:t?.postId}))},getFieldsList({select:e,context:t}){return WT(e,t)}};function oZt(){eX(tZt),eX(nZt)}const{store:rZt,...sZt}=xVt,cu={};ujt(cu,{CreateTemplatePartModal:jI,BackButton:KI,EntitiesSavedStatesExtensible:t5,Editor:HYt,EditorContentSlotFill:Lye,GlobalStylesProvider:y$t,mergeBaseAndUserConfigs:WOe,PluginPostExcerpt:HI,PostCardPanel:Iye,PreferencesModal:QYt,usePostActions:jye,usePostFields:eZt,ToolsMoreMenuGroup:QI,ViewMoreMenuGroup:JI,ResizableEditor:Pye,registerCoreBlockBindingsSources:oZt,getTemplateInfo:LO,interfaceStore:rZt,...sZt});const iZt=":root{--wp-admin-theme-color: #007cba;--wp-admin-theme-color--rgb: 0, 124, 186;--wp-admin-theme-color-darker-10: #006ba1;--wp-admin-theme-color-darker-10--rgb: 0, 107, 161;--wp-admin-theme-color-darker-20: #005a87;--wp-admin-theme-color-darker-20--rgb: 0, 90, 135;--wp-admin-border-width-focus: 2px;--wp-block-synced-color: #7a00df;--wp-block-synced-color--rgb: 122, 0, 223;--wp-bound-block-color: var(--wp-block-synced-color)}@media (min-resolution: 192dpi){:root{--wp-admin-border-width-focus: 1.5px}}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:18px;line-height:1.5;--wp--style--block-gap: 2em}p{line-height:1.8}.editor-post-title__block{margin-top:2em;margin-bottom:1em;font-size:2.5em;font-weight:800}";function it(e){if(!e)return;const{metadata:t,settings:n,name:o}=e;return lLe({name:o,...t},n)}function Fye(e,t,n){return G(o=>o(Me).canUser("update",{kind:e,name:t,id:n}),[e,t,n])}function dk(e={}){const t=x.useRef(e),n=x.useRef(!1),{getSettings:o}=G(Q);x.useLayoutEffect(()=>{t.current=e}),x.useEffect(()=>{if(n.current||!t.current.url||!Nr(t.current.url))return;const r=Yie(t.current.url);if(!r)return;const{url:s,allowedTypes:i,onChange:c,onError:l}=t.current,{mediaUpload:u}=o();n.current=!0,u({filesList:[r],allowedTypes:i,onFileChange:([d])=>{Nr(d?.url)||(tx(s),c(d),n.current=!1)},onError:d=>{tx(s),l(d),n.current=!1}})},[o])}function Qo(){return Yn("medium","<")?{}:{popoverProps:{placement:"left-start",offset:259}}}function aZt({attributes:e,setAttributes:t}){const{showLabel:n,showPostCounts:o,displayAsDropdown:r,type:s}=e,i=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({displayAsDropdown:!1,showLabel:!1,showPostCounts:!1,type:"monthly"})},dropdownMenuProps:i,children:[a.jsx(tt,{label:m("Display as dropdown"),isShownByDefault:!0,hasValue:()=>r,onDeselect:()=>t({displayAsDropdown:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display as dropdown"),checked:r,onChange:()=>t({displayAsDropdown:!r})})}),r&&a.jsx(tt,{label:m("Show label"),isShownByDefault:!0,hasValue:()=>n,onDeselect:()=>t({showLabel:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show label"),checked:n,onChange:()=>t({showLabel:!n})})}),a.jsx(tt,{label:m("Show post counts"),isShownByDefault:!0,hasValue:()=>o,onDeselect:()=>t({showPostCounts:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show post counts"),checked:o,onChange:()=>t({showPostCounts:!o})})}),a.jsx(tt,{label:m("Group by"),isShownByDefault:!0,hasValue:()=>!!s,onDeselect:()=>t({type:"monthly"}),children:a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Group by"),options:[{label:m("Year"),value:"yearly"},{label:m("Month"),value:"monthly"},{label:m("Week"),value:"weekly"},{label:m("Day"),value:"daily"}],value:s,onChange:c=>t({type:c})})})]})}),a.jsx("div",{...Be(),children:a.jsx(I1,{children:a.jsx(FO,{block:"core/archives",skipBlockSupportAttributes:!0,attributes:e})})})]})}const e9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/archives",title:"Archives",category:"widgets",description:"Display a date archive of your posts.",textdomain:"default",attributes:{displayAsDropdown:{type:"boolean",default:!1},showLabel:{type:"boolean",default:!0},showPostCounts:{type:"boolean",default:!1},type:{type:"string",default:"monthly"}},supports:{align:!0,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},html:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-archives-editor"},{name:$ye}=e9,Vye={icon:hZe,example:{},edit:aZt},cZt=()=>it({name:$ye,metadata:e9,settings:Vye}),lZt=Object.freeze(Object.defineProperty({__proto__:null,init:cZt,metadata:e9,name:$ye,settings:Vye},Symbol.toStringTag,{value:"Module"}));function Hye(e){const t=e?e[0]:24,n=e?e[e.length-1]:96,o=Math.floor(n*2.5);return{minSize:t,maxSize:o}}function Uye(){const{avatarURL:e}=G(t=>{const{getSettings:n}=t(Q),{__experimentalDiscussionSettings:o}=n();return o});return e}function uZt({commentId:e}){const[t]=Ao("root","comment","author_avatar_urls",e),[n]=Ao("root","comment","author_name",e),o=t?Object.values(t):null,r=t?Object.keys(t):null,{minSize:s,maxSize:i}=Hye(r),c=Uye();return{src:o?o[o.length-1]:c,minSize:s,maxSize:i,alt:n?xe(m("%s Avatar"),n):m("Default Avatar")}}function dZt({userId:e,postId:t,postType:n}){const{authorDetails:o}=G(u=>{const{getEditedEntityRecord:d,getUser:p}=u(Me);if(e)return{authorDetails:p(e)};const f=d("postType",n,t)?.author;return{authorDetails:f?p(f):null}},[n,t,e]),r=o?.avatar_urls?Object.values(o.avatar_urls):null,s=o?.avatar_urls?Object.keys(o.avatar_urls):null,{minSize:i,maxSize:c}=Hye(s),l=Uye();return{src:r?r[r.length-1]:l,minSize:i,maxSize:c,alt:o?xe(m("%s Avatar"),o?.name):m("Default Avatar")}}const pZt={who:"authors",per_page:-1,_fields:"id,name",context:"view"};function fZt({value:e,onChange:t}){const[n,o]=x.useState(),r=G(i=>{const{getUsers:c}=i(Me);return c(pZt)},[]);if(!r)return null;const s=r.map(i=>({label:i.name,value:i.id}));return a.jsx(nb,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("User"),help:m("Select the avatar user to display, if it is blank it will use the post/page author."),value:e,onChange:t,options:n||s,onFilterValueChange:i=>o(s.filter(c=>c.label.toLowerCase().startsWith(i.toLowerCase())))})}const Xye=({setAttributes:e,avatar:t,attributes:n,selectUser:o})=>a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image size"),onChange:r=>e({size:r}),min:t.minSize,max:t.maxSize,initialPosition:n?.size,value:n?.size}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to user profile"),onChange:()=>e({isLink:!n.isLink}),checked:n.isLink}),n.isLink&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:r=>e({linkTarget:r?"_blank":"_self"}),checked:n.linkTarget==="_blank"}),o&&a.jsx(fZt,{value:n?.userId,onChange:r=>{e({userId:r})}})]})}),r5=({setAttributes:e,attributes:t,avatar:n,blockProps:o,isSelected:r})=>{const s=au(t),i=tn(C4(n?.src,["s"]),{s:t?.size*2});return a.jsx("div",{...o,children:a.jsx(Ca,{size:{width:t.size,height:t.size},showHandle:r,onResizeStop:(c,l,u,d)=>{e({size:parseInt(t.size+(d.height||d.width),10)})},lockAspectRatio:!0,enable:{top:!1,right:!jt(),bottom:!0,left:jt()},minWidth:n.minSize,maxWidth:n.maxSize,children:a.jsx("img",{src:i,alt:n.alt,className:oe("avatar","avatar-"+t.size,"photo","wp-block-avatar__image",s.className),style:s.style})})})},bZt=({attributes:e,context:t,setAttributes:n,isSelected:o})=>{const{commentId:r}=t,s=Be(),i=uZt({commentId:r});return a.jsxs(a.Fragment,{children:[a.jsx(Xye,{avatar:i,setAttributes:n,attributes:e,selectUser:!1}),e.isLink?a.jsx("a",{href:"#avatar-pseudo-link",className:"wp-block-avatar__link",onClick:c=>c.preventDefault(),children:a.jsx(r5,{attributes:e,avatar:i,blockProps:s,isSelected:o,setAttributes:n})}):a.jsx(r5,{attributes:e,avatar:i,blockProps:s,isSelected:o,setAttributes:n})]})},hZt=({attributes:e,context:t,setAttributes:n,isSelected:o})=>{const{postId:r,postType:s}=t,i=dZt({userId:e?.userId,postId:r,postType:s}),c=Be();return a.jsxs(a.Fragment,{children:[a.jsx(Xye,{selectUser:!0,attributes:e,avatar:i,setAttributes:n}),e.isLink?a.jsx("a",{href:"#avatar-pseudo-link",className:"wp-block-avatar__link",onClick:l=>l.preventDefault(),children:a.jsx(r5,{attributes:e,avatar:i,blockProps:c,isSelected:o,setAttributes:n})}):a.jsx(r5,{attributes:e,avatar:i,blockProps:c,isSelected:o,setAttributes:n})]})};function mZt(e){return e?.context?.commentId||e?.context?.commentId===null?a.jsx(bZt,{...e}):a.jsx(hZt,{...e})}const t9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/avatar",title:"Avatar",category:"theme",description:"Add a user’s avatar.",textdomain:"default",attributes:{userId:{type:"number"},size:{type:"number",default:96},isLink:{type:"boolean",default:!1},linkTarget:{type:"string",default:"_self"}},usesContext:["postType","postId","commentId"],supports:{html:!1,align:!0,alignWide:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__experimentalBorder:{__experimentalSkipSerialization:!0,radius:!0,width:!0,color:!0,style:!0,__experimentalDefaultControls:{radius:!0}},color:{text:!1,background:!1,__experimentalDuotone:"img"},interactivity:{clientNavigation:!0}},selectors:{border:".wp-block-avatar img"},editorStyle:"wp-block-avatar-editor",style:"wp-block-avatar"},{name:Gye}=t9,Kye={icon:WP,edit:mZt,example:{}},gZt=()=>it({name:Gye,metadata:t9,settings:Kye}),MZt=Object.freeze(Object.defineProperty({__proto__:null,init:gZt,metadata:t9,name:Gye,settings:Kye},Symbol.toStringTag,{value:"Module"})),zZt=[{attributes:{src:{type:"string",source:"attribute",selector:"audio",attribute:"src"},caption:{type:"string",source:"html",selector:"figcaption"},id:{type:"number"},autoplay:{type:"boolean",source:"attribute",selector:"audio",attribute:"autoplay"},loop:{type:"boolean",source:"attribute",selector:"audio",attribute:"loop"},preload:{type:"string",source:"attribute",selector:"audio",attribute:"preload"}},supports:{align:!0},save({attributes:e}){const{autoplay:t,caption:n,loop:o,preload:r,src:s}=e;return a.jsxs("figure",{children:[a.jsx("audio",{controls:"controls",src:s,autoPlay:t,loop:o,preload:r}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n})]})}}],s5=[{ratio:"2.33",className:"wp-embed-aspect-21-9"},{ratio:"2.00",className:"wp-embed-aspect-18-9"},{ratio:"1.78",className:"wp-embed-aspect-16-9"},{ratio:"1.33",className:"wp-embed-aspect-4-3"},{ratio:"1.00",className:"wp-embed-aspect-1-1"},{ratio:"0.56",className:"wp-embed-aspect-9-16"},{ratio:"0.50",className:"wp-embed-aspect-1-2"}],Yye="wp-embed",{lock:OZt,unlock:e0}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/block-library"),yZt={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{name:x2}=yZt,{kebabCase:AZt}=e0(tr),vZt=e=>Z5(x2)?.find(({name:t})=>t===e),xZt=(e,t=[])=>t.some(n=>e.match(n)),wZt=e=>Z5(x2)?.find(({patterns:t})=>xZt(e,t)),Zye=e=>e&&e.includes('class="wp-embedded-content"'),_Zt=e=>{const t=e.url||e.thumbnail_url,n=a.jsx("p",{children:a.jsx("img",{src:t,alt:e.title,width:"100%"})});return M1(n)},pk=(e,t={})=>{const{preview:n,attributes:o={}}=e,{url:r,providerNameSlug:s,type:i,...c}=o;if(!r||!on(x2))return;const l=wZt(r),u=s==="wordpress"||i===Yye;if(!u&&l&&(l.attributes.providerNameSlug!==s||!s))return Ee(x2,{url:r,...c,...l.attributes});const p=Z5(x2)?.find(({name:f})=>f==="wordpress");if(!(!p||!n||!Zye(n.html)||u))return Ee(x2,{url:r,...p.attributes,...t})},kZt=e=>e?s5.some(({className:t})=>e.includes(t)):!1,O4=e=>{if(!e)return e;const t=s5.reduce((o,{className:r})=>(o.push(r),o),["wp-has-aspect-ratio"]);let n=e;for(const o of t)n=n.replace(o,"");return n.trim()};function Qye(e,t,n=!0){if(!n)return O4(t);const o=document.implementation.createHTMLDocument("");o.body.innerHTML=e;const r=o.body.querySelector("iframe");if(r&&r.height&&r.width){const s=(r.width/r.height).toFixed(2);for(let i=0;i<s5.length;i++){const c=s5[i];if(s>=c.ratio)return s-c.ratio>.1?O4(t):oe(O4(t),c.className,"wp-has-aspect-ratio")}}return t}function SZt(e,t){t(Ee("core/paragraph",{content:M1(a.jsx("a",{href:e,children:e}))}))}const CZt=Hs((e,t,n,o,r=!0)=>{if(!e)return{};const s={};let{type:i="rich"}=e;const{html:c,provider_name:l}=e,u=AZt((l||t).toLowerCase());return Zye(c)&&(i=Yye),(c||i==="photo")&&(s.type=i,s.providerNameSlug=u),kZt(n)||(s.className=Qye(c,n,o&&r)),s}),qZt=(e,t,n,o)=>{const{allowResponsive:r,className:s}=e;return{...e,...CZt(t,n,s,o,r)}};function fb({attributeKey:e="caption",attributes:t,setAttributes:n,isSelected:o,insertBlocksAfter:r,placeholder:s=m("Add caption"),label:i=m("Caption text"),showToolbarButton:c=!0,excludeElementClassName:l,className:u,readOnly:d,tagName:p="figcaption",addLabel:f=m("Add caption"),removeLabel:b=m("Remove caption"),icon:h=zZe,...g}){const z=t[e],A=Fr(z),{PrivateRichText:_}=e0(jn),v=_.isEmpty(z),M=_.isEmpty(A),[y,k]=x.useState(!v);x.useEffect(()=>{!v&&M&&k(!0)},[v,M]),x.useEffect(()=>{!o&&v&&k(!1)},[o,v]);const S=x.useCallback(C=>{C&&v&&C.focus()},[v]);return a.jsxs(a.Fragment,{children:[c&&a.jsx(bt,{group:"block",children:a.jsx(Vt,{onClick:()=>{k(!y),y&&z&&n({[e]:void 0})},icon:h,isPressed:y,label:y?b:f})}),y&&(!_.isEmpty(z)||o)&&a.jsx(_,{identifier:e,tagName:p,className:oe(u,l?"":z0("caption")),ref:S,"aria-label":i,placeholder:s,value:z,onChange:C=>n({[e]:C}),inlineToolbar:!0,__unstableOnSplitAtEnd:()=>r(Ee(Mr())),readOnly:d,...g})]})}const NT=["audio"];function RZt({attributes:e,className:t,setAttributes:n,onReplace:o,isSelected:r,insertBlocksAfter:s}){const{id:i,autoplay:c,loop:l,preload:u,src:d}=e,[p,f]=x.useState(e.blob);dk({url:p,allowedTypes:NT,onChange:_,onError:z});function b(y){return k=>{n({[y]:k})}}function h(y){if(y!==d){const k=pk({attributes:{url:y}});if(k!==void 0&&o){o(k);return}n({src:y,id:void 0,blob:void 0}),f()}}const{createErrorNotice:g}=Oe(mt);function z(y){g(y,{type:"snackbar"})}function A(y){return y?m("Autoplay may cause usability issues for some users."):null}function _(y){if(!y||!y.url){n({src:void 0,id:void 0,caption:void 0,blob:void 0}),f();return}if(Nr(y.url)){f(y.url);return}n({blob:void 0,src:y.url,id:y.id,caption:y.caption}),f()}const v=oe(t,{"is-transient":!!p}),M=Be({className:v});return!d&&!p?a.jsx("div",{...M,children:a.jsx(iu,{icon:a.jsx(Zn,{icon:Kue}),onSelect:_,onSelectURL:h,accept:"audio/*",allowedTypes:NT,value:e,onError:z})}):a.jsxs(a.Fragment,{children:[r&&a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:i,mediaURL:d,allowedTypes:NT,accept:"audio/*",onSelect:_,onSelectURL:h,onError:z,onReset:()=>_(void 0)})}),a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Autoplay"),onChange:b("autoplay"),checked:c,help:A}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Loop"),onChange:b("loop"),checked:l}),a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:We("Preload","noun; Audio block parameter"),value:u||"",onChange:y=>n({preload:y||void 0}),options:[{value:"",label:m("Browser default")},{value:"auto",label:m("Auto")},{value:"metadata",label:m("Metadata")},{value:"none",label:We("None","Preload value")}]})]})}),a.jsxs("figure",{...M,children:[a.jsx(I1,{isDisabled:!r,children:a.jsx("audio",{controls:"controls",src:d??p})}),!!p&&a.jsx(Xn,{}),a.jsx(fb,{attributes:e,setAttributes:n,isSelected:r,insertBlocksAfter:s,label:m("Audio caption text"),showToolbarButton:r})]})]})}function TZt({attributes:e}){const{autoplay:t,caption:n,loop:o,preload:r,src:s}=e;return s&&a.jsxs("figure",{...Be.save(),children:[a.jsx("audio",{controls:"controls",src:s,autoPlay:t,loop:o,preload:r}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n,className:z0("caption")})]})}const EZt={from:[{type:"files",isMatch(e){return e.length===1&&e[0].type.indexOf("audio/")===0},transform(e){const t=e[0];return Ee("core/audio",{blob:ls(t)})}},{type:"shortcode",tag:"audio",attributes:{src:{type:"string",shortcode:({named:{src:e,mp3:t,m4a:n,ogg:o,wav:r,wma:s}})=>e||t||n||o||r||s},loop:{type:"string",shortcode:({named:{loop:e}})=>e},autoplay:{type:"string",shortcode:({named:{autoplay:e}})=>e},preload:{type:"string",shortcode:({named:{preload:e}})=>e}}}]},n9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/audio",title:"Audio",category:"media",description:"Embed a simple audio player.",keywords:["music","sound","podcast","recording"],textdomain:"default",attributes:{blob:{type:"string",role:"local"},src:{type:"string",source:"attribute",selector:"audio",attribute:"src",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},id:{type:"number",role:"content"},autoplay:{type:"boolean",source:"attribute",selector:"audio",attribute:"autoplay"},loop:{type:"boolean",source:"attribute",selector:"audio",attribute:"loop"},preload:{type:"string",source:"attribute",selector:"audio",attribute:"preload"}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-audio-editor",style:"wp-block-audio"},{name:Jye}=n9,eAe={icon:Kue,example:{attributes:{src:"https://upload.wikimedia.org/wikipedia/commons/d/dd/Armstrong_Small_Step.ogg"},viewportWidth:350},transforms:EZt,deprecated:zZt,edit:RZt,save:TZt},WZt=()=>it({name:Jye,metadata:n9,settings:eAe}),NZt=Object.freeze(Object.defineProperty({__proto__:null,init:WZt,metadata:n9,name:Jye,settings:eAe},Symbol.toStringTag,{value:"Module"})),{cleanEmptyObject:BZt}=e0(jn);function A1(e){if(!e?.style?.typography?.fontFamily)return e;const{fontFamily:t,...n}=e.style.typography;return{...e,style:BZt({...e.style,typography:n}),fontFamily:t.split("|").pop()}}const Qb=e=>{const{borderRadius:t,...n}=e,o=[t,n.style?.border?.radius].find(r=>typeof r=="number"&&r!==0);return o?{...n,style:{...n.style,border:{...n.style?.border,radius:`${o}px`}}}:n};function LZt(e){if(!e.align)return e;const{align:t,...n}=e;return{...n,className:oe(n.className,`align${e.align}`)}}const uN=e=>{if(!e.customTextColor&&!e.customBackgroundColor&&!e.customGradient)return e;const t={color:{}};e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),e.customGradient&&(t.color.gradient=e.customGradient);const{customTextColor:n,customBackgroundColor:o,customGradient:r,...s}=e;return{...s,style:t}},BT=e=>{const{color:t,textColor:n,...o}={...e,customTextColor:e.textColor&&e.textColor[0]==="#"?e.textColor:void 0,customBackgroundColor:e.color&&e.color[0]==="#"?e.color:void 0};return uN(o)},ol={url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"}},PZt={attributes:{tagName:{type:"string",enum:["a","button"],default:"a"},type:{type:"string",default:"button"},textAlign:{type:"string"},url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a,button",attribute:"title",role:"content"},text:{type:"rich-text",source:"rich-text",selector:"a,button",role:"content"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target",role:"content"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel",role:"content"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},reusable:!1,shadow:{__experimentalSkipSerialization:!0},spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},__experimentalSelector:".wp-block-button__link",interactivity:{clientNavigation:!0}},save({attributes:e,className:t}){const{tagName:n,type:o,textAlign:r,fontSize:s,linkTarget:i,rel:c,style:l,text:u,title:d,url:p,width:f}=e,b=n||"a",h=b==="button",g=o||"button",z=X1(e),A=P1(e),_=Tm(e),v=db(e),M=oe("wp-block-button__link",A.className,z.className,{[`has-text-align-${r}`]:r,"no-border-radius":l?.border?.radius===0},z0("button")),y={...z.style,...A.style,..._.style,...v.style},k=oe(t,{[`has-custom-width wp-block-button__width-${f}`]:f,"has-custom-font-size":s||l?.typography?.fontSize});return a.jsx("div",{...Be.save({className:k}),children:a.jsx(Ie.Content,{tagName:b,type:h?g:null,className:M,href:h?null:p,title:d,style:y,value:u,target:h?null:i,rel:h?null:c})})}},jZt={attributes:{url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,__experimentalFontFamily:!0,__experimentalDefaultControls:{fontSize:!0}},reusable:!1,spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}},__experimentalSelector:".wp-block-button__link"},save({attributes:e,className:t}){const{fontSize:n,linkTarget:o,rel:r,style:s,text:i,title:c,url:l,width:u}=e;if(!i)return null;const d=X1(e),p=P1(e),f=Tm(e),b=oe("wp-block-button__link",p.className,d.className,{"no-border-radius":s?.border?.radius===0}),h={...d.style,...p.style,...f.style},g=oe(t,{[`has-custom-width wp-block-button__width-${u}`]:u,"has-custom-font-size":n||s?.typography?.fontSize});return a.jsx("div",{...Be.save({className:g}),children:a.jsx(Ie.Content,{tagName:"a",className:b,href:l,title:c,style:h,value:i,target:o,rel:r})})}},IZt={attributes:{url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},reusable:!1,spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0},__experimentalSelector:".wp-block-button__link"},save({attributes:e,className:t}){const{fontSize:n,linkTarget:o,rel:r,style:s,text:i,title:c,url:l,width:u}=e;if(!i)return null;const d=X1(e),p=P1(e),f=Tm(e),b=oe("wp-block-button__link",p.className,d.className,{"no-border-radius":s?.border?.radius===0}),h={...d.style,...p.style,...f.style},g=oe(t,{[`has-custom-width wp-block-button__width-${u}`]:u,"has-custom-font-size":n||s?.typography?.fontSize});return a.jsx("div",{...Be.save({className:g}),children:a.jsx(Ie.Content,{tagName:"a",className:b,href:l,title:c,style:h,value:i,target:o,rel:r})})},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},DZt=[PZt,jZt,IZt,{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...ol,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},isEligible({style:e}){return typeof e?.border?.radius=="number"},save({attributes:e,className:t}){const{fontSize:n,linkTarget:o,rel:r,style:s,text:i,title:c,url:l,width:u}=e;if(!i)return null;const d=s?.border?.radius,p=P1(e),f=oe("wp-block-button__link",p.className,{"no-border-radius":s?.border?.radius===0}),b={borderRadius:d||void 0,...p.style},h=oe(t,{[`has-custom-width wp-block-button__width-${u}`]:u,"has-custom-font-size":n||s?.typography?.fontSize});return a.jsx("div",{...Be.save({className:h}),children:a.jsx(Ie.Content,{tagName:"a",className:f,href:l,title:c,style:b,value:i,target:o,rel:r})})},migrate:Co(A1,Qb)},{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...ol,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"},width:{type:"number"}},save({attributes:e,className:t}){const{borderRadius:n,linkTarget:o,rel:r,text:s,title:i,url:c,width:l}=e,u=P1(e),d=oe("wp-block-button__link",u.className,{"no-border-radius":n===0}),p={borderRadius:n?n+"px":void 0,...u.style},f=oe(t,{[`has-custom-width wp-block-button__width-${l}`]:l});return a.jsx("div",{...Be.save({className:f}),children:a.jsx(Ie.Content,{tagName:"a",className:d,href:c,title:i,style:p,value:s,target:o,rel:r})})},migrate:Co(A1,Qb)},{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...ol,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"},width:{type:"number"}},save({attributes:e,className:t}){const{borderRadius:n,linkTarget:o,rel:r,text:s,title:i,url:c,width:l}=e,u=P1(e),d=oe("wp-block-button__link",u.className,{"no-border-radius":n===0}),p={borderRadius:n?n+"px":void 0,...u.style},f=oe(t,{[`has-custom-width wp-block-button__width-${l}`]:l});return a.jsx("div",{...Be.save({className:f}),children:a.jsx(Ie.Content,{tagName:"a",className:d,href:c,title:i,style:p,value:s,target:o,rel:r})})},migrate:Co(A1,Qb)},{supports:{align:!0,alignWide:!1,color:{gradients:!0}},attributes:{...ol,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"}},save({attributes:e}){const{borderRadius:t,linkTarget:n,rel:o,text:r,title:s,url:i}=e,c=oe("wp-block-button__link",{"no-border-radius":t===0}),l={borderRadius:t?t+"px":void 0};return a.jsx(Ie.Content,{tagName:"a",className:c,href:i,title:s,style:l,value:r,target:n,rel:o})},migrate:Qb},{supports:{align:!0,alignWide:!1},attributes:{...ol,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},customGradient:{type:"string"},gradient:{type:"string"}},isEligible:e=>!!e.customTextColor||!!e.customBackgroundColor||!!e.customGradient||!!e.align,migrate:Co(Qb,uN,LZt),save({attributes:e}){const{backgroundColor:t,borderRadius:n,customBackgroundColor:o,customTextColor:r,customGradient:s,linkTarget:i,gradient:c,rel:l,text:u,textColor:d,title:p,url:f}=e,b=Pt("color",d),h=!s&&Pt("background-color",t),g=R1(c),z=oe("wp-block-button__link",{"has-text-color":d||r,[b]:b,"has-background":t||o||s||c,[h]:h,"no-border-radius":n===0,[g]:g}),A={background:s||void 0,backgroundColor:h||s||c?void 0:o,color:b?void 0:r,borderRadius:n?n+"px":void 0};return a.jsx("div",{children:a.jsx(Ie.Content,{tagName:"a",className:z,href:f,title:p,style:A,value:u,target:i,rel:l})})}},{attributes:{...ol,align:{type:"string",default:"none"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"}},isEligible(e){return e.className&&e.className.includes("is-style-squared")},migrate(e){let t=e.className;return t&&(t=t.replace(/is-style-squared[\s]?/,"").trim()),Qb(uN({...e,className:t||void 0,borderRadius:0}))},save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,customTextColor:o,linkTarget:r,rel:s,text:i,textColor:c,title:l,url:u}=e,d=Pt("color",c),p=Pt("background-color",t),f=oe("wp-block-button__link",{"has-text-color":c||o,[d]:d,"has-background":t||n,[p]:p}),b={backgroundColor:p?void 0:n,color:d?void 0:o};return a.jsx("div",{children:a.jsx(Ie.Content,{tagName:"a",className:f,href:u,title:l,style:b,value:i,target:r,rel:s})})}},{attributes:{...ol,align:{type:"string",default:"none"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"}},migrate:BT,save({attributes:e}){const{url:t,text:n,title:o,backgroundColor:r,textColor:s,customBackgroundColor:i,customTextColor:c}=e,l=Pt("color",s),u=Pt("background-color",r),d=oe("wp-block-button__link",{"has-text-color":s||c,[l]:l,"has-background":r||i,[u]:u}),p={backgroundColor:u?void 0:i,color:l?void 0:c};return a.jsx("div",{children:a.jsx(Ie.Content,{tagName:"a",className:d,href:t,title:o,style:p,value:n})})}},{attributes:{...ol,color:{type:"string"},textColor:{type:"string"},align:{type:"string",default:"none"}},save({attributes:e}){const{url:t,text:n,title:o,align:r,color:s,textColor:i}=e,c={backgroundColor:s,color:i};return a.jsx("div",{className:`align${r}`,children:a.jsx(Ie.Content,{tagName:"a",className:"wp-block-button__link",href:t,title:o,style:c,value:n})})},migrate:BT},{attributes:{...ol,color:{type:"string"},textColor:{type:"string"},align:{type:"string",default:"none"}},save({attributes:e}){const{url:t,text:n,title:o,align:r,color:s,textColor:i}=e;return a.jsx("div",{className:`align${r}`,style:{backgroundColor:s},children:a.jsx(Ie.Content,{tagName:"a",href:t,title:o,style:{color:i},value:n})})},migrate:BT}],LT="noreferrer noopener",tAe="_blank",y4="nofollow";function FZt({rel:e="",url:t="",opensInNewTab:n,nofollow:o}){let r,s=e;if(n)r=tAe,s=s?.includes(LT)?s:s+` ${LT}`;else{const i=new RegExp(`\\b${LT}\\s*`,"g");s=s?.replace(i,"").trim()}if(o)s=s?.includes(y4)?s:(s+` ${y4}`).trim();else{const i=new RegExp(`\\b${y4}\\s*`,"g");s=s?.replace(i,"").trim()}return{url:jf(t),linkTarget:r,rel:s||void 0}}function dN(e){return e.toString().replace(/<\/?a[^>]*>/g,"")}const $Zt=[...kc.DEFAULT_LINK_SETTINGS,{id:"nofollow",title:m("Mark as nofollow")}];function VZt(e){const{replaceBlocks:t,selectionChange:n}=Oe(Q),{getBlock:o,getBlockRootClientId:r,getBlockIndex:s}=G(Q),i=x.useRef(e);return i.current=e,Mn(c=>{function l(u){if(u.defaultPrevented||u.keyCode!==Gr)return;const{content:d,clientId:p}=i.current;if(d.length)return;u.preventDefault();const f=o(r(p)),b=s(p),h=jo({...f,innerBlocks:f.innerBlocks.slice(0,b)}),g=Ee(Mr()),z=f.innerBlocks.slice(b+1),A=z.length?[jo({...f,innerBlocks:z})]:[];t(f.clientId,[h,g,...A],1),n(g.clientId)}return c.addEventListener("keydown",l),()=>{c.removeEventListener("keydown",l)}},[])}function HZt({selectedWidth:e,setAttributes:t}){const n=Qo();return a.jsx(En,{label:m("Settings"),resetAll:()=>t({width:void 0}),dropdownMenuProps:n,children:a.jsx(tt,{label:m("Width"),isShownByDefault:!0,hasValue:()=>!!e,onDeselect:()=>t({width:void 0}),__nextHasNoMarginBottom:!0,children:a.jsx(Do,{label:m("Width"),value:e,onChange:o=>t({width:o}),isBlock:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:[25,50,75,100].map(o=>a.jsx(Kn,{value:o,label:xe(m("%d%%"),o)},o))})})})}function UZt(e){const{attributes:t,setAttributes:n,className:o,isSelected:r,onReplace:s,mergeBlocks:i,clientId:c,context:l}=e,{tagName:u,textAlign:d,linkTarget:p,placeholder:f,rel:b,style:h,text:g,url:z,width:A,metadata:_}=t,v=u||"a";function M(ye){lc.primary(ye,"k")?V(ye):lc.primaryShift(ye,"k")&&(ee(),B.current?.focus())}const[y,k]=x.useState(null),S=au(t),C=BO(t),R=Tm(t),T=db(t),E=x.useRef(),B=x.useRef(),N=Be({ref:xn([k,E]),onKeyDown:M}),j=Jr(),[I,P]=x.useState(!1),$=!!z,F=p===tAe,X=!!b?.includes(y4),Z=v==="a";function V(ye){ye.preventDefault(),P(!0)}function ee(){n({url:void 0,linkTarget:void 0,rel:void 0}),P(!1)}x.useEffect(()=>{r||P(!1)},[r]);const te=x.useMemo(()=>({url:z,opensInNewTab:F,nofollow:X}),[z,F,X]),J=VZt({content:g,clientId:c}),ue=xn([J,B]),{lockUrlControls:ce=!1}=G(ye=>{if(!r)return{};const Ne=vl(_?.bindings?.url?.source);return{lockUrlControls:!!_?.bindings?.url&&!Ne?.canUserEditValue?.({select:ye,context:l,args:_?.bindings?.url?.args})}},[l,r,_?.bindings?.url]),[me,de]=Un("typography.fluid","layout"),Ae=kI(t,{typography:{fluid:me},layout:{wideSize:de?.wideSize}});return a.jsxs(a.Fragment,{children:[a.jsx("div",{...N,className:oe(N.className,{[`has-custom-width wp-block-button__width-${A}`]:A}),children:a.jsx(Ie,{ref:ue,"aria-label":m("Button text"),placeholder:f||m("Add text…"),value:g,onChange:ye=>n({text:dN(ye)}),withoutInteractiveFormatting:!0,className:oe(o,"wp-block-button__link",C.className,S.className,Ae.className,{[`has-text-align-${d}`]:d,"no-border-radius":h?.border?.radius===0,"has-custom-font-size":N.style.fontSize},z0("button")),style:{...S.style,...C.style,...R.style,...T.style,...Ae.style,writingMode:void 0},onReplace:s,onMerge:i,identifier:"text"})}),a.jsxs(bt,{group:"block",children:[j==="default"&&a.jsx(nr,{value:d,onChange:ye=>{n({textAlign:ye})}}),!$&&Z&&!ce&&a.jsx(Vt,{name:"link",icon:xa,title:m("Link"),shortcut:j1.primary("k"),onClick:V}),$&&Z&&!ce&&a.jsx(Vt,{name:"link",icon:Pl,title:m("Unlink"),shortcut:j1.primaryShift("k"),onClick:ee,isActive:!0})]}),Z&&r&&(I||$)&&!ce&&a.jsx(Io,{placement:"bottom",onClose:()=>{P(!1),B.current?.focus()},anchor:y,focusOnMount:I?"firstElement":!1,__unstableSlotName:"__unstable-block-tools-after",shift:!0,children:a.jsx(kc,{value:te,onChange:({url:ye,opensInNewTab:Ne,nofollow:je})=>n(FZt({rel:b,url:ye,opensInNewTab:Ne,nofollow:je})),onRemove:()=>{ee(),B.current?.focus()},forceIsEditingLink:I,settings:$Zt})}),a.jsx(et,{children:a.jsx(HZt,{selectedWidth:A,setAttributes:n})}),a.jsx(et,{group:"advanced",children:Z&&a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:b||"",onChange:ye=>n({rel:ye})})})]})}function XZt({attributes:e,className:t}){const{tagName:n,type:o,textAlign:r,fontSize:s,linkTarget:i,rel:c,style:l,text:u,title:d,url:p,width:f}=e,b=n||"a",h=b==="button",g=o||"button",z=X1(e),A=P1(e),_=Tm(e),v=db(e),M=kI(e),y=oe("wp-block-button__link",A.className,z.className,M.className,{[`has-text-align-${r}`]:r,"no-border-radius":l?.border?.radius===0,"has-custom-font-size":s||l?.typography?.fontSize},z0("button")),k={...z.style,...A.style,..._.style,...v.style,...M.style,writingMode:void 0},S=oe(t,{[`has-custom-width wp-block-button__width-${f}`]:f});return a.jsx("div",{...Be.save({className:S}),children:a.jsx(Ie.Content,{tagName:b,type:h?g:null,className:y,href:h?null:p,title:d,style:k,value:u,target:h?null:i,rel:h?null:c})})}const o9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/button",title:"Button",category:"design",parent:["core/buttons"],description:"Prompt visitors to take action with a button-style link.",keywords:["link"],textdomain:"default",attributes:{tagName:{type:"string",enum:["a","button"],default:"a"},type:{type:"string",default:"button"},textAlign:{type:"string"},url:{type:"string",source:"attribute",selector:"a",attribute:"href",role:"content"},title:{type:"string",source:"attribute",selector:"a,button",attribute:"title",role:"content"},text:{type:"rich-text",source:"rich-text",selector:"a,button",role:"content"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target",role:"content"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel",role:"content"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,splitting:!0,align:!1,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{__experimentalSkipSerialization:["fontSize","lineHeight","fontFamily","fontWeight","fontStyle","textTransform","textDecoration","letterSpacing"],fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},reusable:!1,shadow:{__experimentalSkipSerialization:!0},spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},interactivity:{clientNavigation:!0}},styles:[{name:"fill",label:"Fill",isDefault:!0},{name:"outline",label:"Outline"}],editorStyle:"wp-block-button-editor",style:"wp-block-button",selectors:{root:".wp-block-button .wp-block-button__link",typography:{writingMode:".wp-block-button"}}},{name:nAe}=o9,oAe={icon:Que,example:{attributes:{className:"is-style-fill",text:m("Call to action")}},edit:UZt,save:XZt,deprecated:DZt,merge:(e,{text:t=""})=>({...e,text:(e.text||"")+t})},GZt=()=>it({name:nAe,metadata:o9,settings:oAe}),KZt=Object.freeze(Object.defineProperty({__proto__:null,init:GZt,metadata:o9,name:nAe,settings:oAe},Symbol.toStringTag,{value:"Module"})),Ene=e=>{if(e.layout)return e;const{contentJustification:t,orientation:n,...o}=e;return(t||n)&&Object.assign(o,{layout:{type:"flex",...t&&{justifyContent:t},...n&&{orientation:n}}}),o},YZt=[{attributes:{contentJustification:{type:"string"},orientation:{type:"string",default:"horizontal"}},supports:{anchor:!0,align:["wide","full"],__experimentalExposeControlsToChildren:!0,spacing:{blockGap:!0,margin:["top","bottom"],__experimentalDefaultControls:{blockGap:!0}}},isEligible:({contentJustification:e,orientation:t})=>!!e||!!t,migrate:Ene,save({attributes:{contentJustification:e,orientation:t}}){return a.jsx("div",{...Be.save({className:oe({[`is-content-justification-${e}`]:e,"is-vertical":t==="vertical"})}),children:a.jsx(Ht.Content,{})})}},{supports:{align:["center","left","right"],anchor:!0},save(){return a.jsx("div",{children:a.jsx(Ht.Content,{})})},isEligible({align:e}){return e&&["center","left","right"].includes(e)},migrate(e){return Ene({...e,align:void 0,contentJustification:e.align})}}];function U2(e,t,n){if(!e)return;const{supports:o}=on(t),r=["core/paragraph","core/heading","core/image","core/button"],s=[];if(r.includes(t)&&n&&s.push("id","bindings"),o.renaming!==!1&&s.push("name"),!s.length)return;const i=Object.entries(e).reduce((c,[l,u])=>(s.includes(l)&&(c[l]=l==="bindings"?n(u):u),c),{});return Object.keys(i).length?i:void 0}const ZZt={from:[{type:"block",isMultiBlock:!0,blocks:["core/button"],transform:e=>Ee("core/buttons",{},e.map(t=>Ee("core/button",t)))},{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>Ee("core/buttons",{},e.map(t=>{const{content:n,metadata:o}=t,r=dl(document,n),s=r.innerText||"",c=r.querySelector("a")?.getAttribute("href");return Ee("core/button",{text:s,url:c,metadata:U2(o,"core/button",({content:l})=>({text:l}))})})),isMatch:e=>e.every(t=>{const n=dl(document,t.content),o=n.innerText||"",r=n.querySelectorAll("a");return o.length<=30&&r.length<=1})}]},QZt={name:"core/button",attributesToCopy:["backgroundColor","border","className","fontFamily","fontSize","gradient","style","textColor","width"]};function JZt({attributes:e,className:t}){var n;const{fontSize:o,layout:r,style:s}=e,i=Be({className:oe(t,{"has-custom-font-size":o||s?.typography?.fontSize})}),{hasButtonVariations:c}=G(u=>({hasButtonVariations:u(kt).getBlockVariations("core/button","inserter").length>0}),[]),l=Nt(i,{defaultBlock:QZt,directInsert:!c,template:[["core/button"]],templateInsertUpdatesSelection:!0,orientation:(n=r?.orientation)!==null&&n!==void 0?n:"horizontal"});return a.jsx("div",{...l})}function eQt({attributes:e,className:t}){const{fontSize:n,style:o}=e,r=Be.save({className:oe(t,{"has-custom-font-size":n||o?.typography?.fontSize})}),s=Nt.save(r);return a.jsx("div",{...s})}const r9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/buttons",title:"Buttons",category:"design",allowedBlocks:["core/button"],description:"Prompt visitors to take action with a group of button-style links.",keywords:["link"],textdomain:"default",supports:{anchor:!0,align:["wide","full"],html:!1,__experimentalExposeControlsToChildren:!0,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},spacing:{blockGap:["horizontal","vertical"],padding:!0,margin:["top","bottom"],__experimentalDefaultControls:{blockGap:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-buttons-editor",style:"wp-block-buttons"},{name:rAe}=r9,sAe={icon:MZe,example:{attributes:{layout:{type:"flex",justifyContent:"center"}},innerBlocks:[{name:"core/button",attributes:{text:m("Find out more")}},{name:"core/button",attributes:{text:m("Contact us")}}]},deprecated:YZt,transforms:ZZt,edit:JZt,save:eQt},tQt=()=>it({name:rAe,metadata:r9,settings:sAe}),nQt=Object.freeze(Object.defineProperty({__proto__:null,init:tQt,metadata:r9,name:rAe,settings:sAe},Symbol.toStringTag,{value:"Module"})),oQt=Hs(e=>{if(!e)return{};const t=new Date(e);return{year:t.getFullYear(),month:t.getMonth()+1}});function rQt({attributes:e}){const t=Be(),{date:n,hasPosts:o,hasPostsResolved:r}=G(s=>{const{getEntityRecords:i,hasFinishedResolution:c}=s(Me),l={status:"publish",per_page:1},u=i("postType","post",l),d=c("getEntityRecords",["postType","post",l]);let p;const f=s("core/editor");return f&&f.getEditedPostAttribute("type")==="post"&&(p=f.getEditedPostAttribute("date")),{date:p,hasPostsResolved:d,hasPosts:d&&u?.length===1}},[]);return o?a.jsx("div",{...t,children:a.jsx(I1,{children:a.jsx(FO,{block:"core/calendar",attributes:{...e,...oQt(n)}})})}):a.jsx("div",{...t,children:a.jsx(vo,{icon:Jue,label:m("Calendar"),children:r?m("No published posts found."):a.jsx(Xn,{})})})}const sQt={from:[{type:"block",blocks:["core/archives"],transform:()=>Ee("core/calendar")}],to:[{type:"block",blocks:["core/archives"],transform:()=>Ee("core/archives")}]},s9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/calendar",title:"Calendar",category:"widgets",description:"A calendar of your site’s posts.",keywords:["posts","archive"],textdomain:"default",attributes:{month:{type:"integer"},year:{type:"integer"}},supports:{align:!0,color:{link:!0,__experimentalSkipSerialization:["text","background"],__experimentalDefaultControls:{background:!0,text:!0},__experimentalSelector:"table, th"},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-calendar"},{name:iAe}=s9,aAe={icon:Jue,example:{},edit:rQt,transforms:sQt},iQt=()=>it({name:iAe,metadata:s9,settings:aAe}),aQt=Object.freeze(Object.defineProperty({__proto__:null,init:iQt,metadata:s9,name:iAe,settings:aAe},Symbol.toStringTag,{value:"Module"}));function cAe({attributes:{displayAsDropdown:e,showHierarchy:t,showPostCounts:n,showOnlyTopLevel:o,showEmpty:r,label:s,showLabel:i,taxonomy:c},setAttributes:l,className:u}){const d=vt(cAe,"blocks-category-select"),{records:p,isResolvingTaxonomies:f}=Al("root","taxonomy"),b=p?.filter(N=>N.visibility.public),h=b?.find(N=>N.slug===c),g=!f&&h?.hierarchical,z={per_page:-1,hide_empty:!r,context:"view"};g&&o&&(z.parent=0);const{records:A,isResolving:_}=Al("taxonomy",c,z),v=N=>A?.length?N===null?A:A.filter(({parent:j})=>j===N):[],M=N=>j=>l({[N]:j}),y=N=>N?Lt(N).trim():m("(Untitled)"),k=()=>v(g&&t?0:null).map(I=>S(I)),S=N=>{const j=v(N.id),{id:I,link:P,count:$,name:F}=N;return a.jsxs("li",{className:`cat-item cat-item-${I}`,children:[a.jsx("a",{href:P,target:"_blank",rel:"noreferrer noopener",children:y(F)}),n&&` (${$})`,g&&t&&!!j.length&&a.jsx("ul",{className:"children",children:j.map(X=>S(X))})]},I)},C=()=>{const j=v(g&&t?0:null);return a.jsxs(a.Fragment,{children:[i?a.jsx(Ie,{className:"wp-block-categories__label","aria-label":m("Label text"),placeholder:h.name,withoutInteractiveFormatting:!0,value:s,onChange:I=>l({label:I})}):a.jsx(qn,{as:"label",htmlFor:d,children:s||h.name}),a.jsxs("select",{id:d,children:[a.jsx("option",{children:xe(m("Select %s"),h.labels.singular_name)}),j.map(I=>R(I,0))]})]})},R=(N,j)=>{const{id:I,count:P,name:$}=N,F=v(I);return[a.jsxs("option",{className:`level-${j}`,children:[Array.from({length:j*3}).map(()=>" "),y($),n&&` (${P})`]},I),g&&t&&!!F.length&&F.map(X=>R(X,j+1))]},T=A?.length&&!e&&!_?"ul":"div",E=oe(u,{"wp-block-categories-list":!!A?.length&&!e&&!_,"wp-block-categories-dropdown":!!A?.length&&e&&!_}),B=Be({className:E});return a.jsxs(T,{...B,children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[Array.isArray(b)&&a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Taxonomy"),options:b.map(N=>({label:N.name,value:N.slug})),value:c,onChange:N=>l({taxonomy:N})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display as dropdown"),checked:e,onChange:M("displayAsDropdown")}),e&&a.jsx(lt,{__nextHasNoMarginBottom:!0,className:"wp-block-categories__indentation",label:m("Show label"),checked:i,onChange:M("showLabel")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show post counts"),checked:n,onChange:M("showPostCounts")}),g&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show only top level terms"),checked:o,onChange:M("showOnlyTopLevel")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show empty terms"),checked:r,onChange:M("showEmpty")}),g&&!o&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show hierarchy"),checked:t,onChange:M("showHierarchy")})]})}),_&&a.jsx(vo,{icon:xde,label:m("Terms"),children:a.jsx(Xn,{})}),!_&&A?.length===0&&a.jsx("p",{children:h.labels.no_terms}),!_&&A?.length>0&&(e?C():k())]})}const cQt=[{name:"terms",title:m("Terms List"),icon:gz,attributes:{taxonomy:"post_tag"},isActive:e=>e.taxonomy!=="category"},{name:"categories",title:m("Categories List"),description:m("Display a list of all categories."),icon:gz,attributes:{taxonomy:"category"},isActive:["taxonomy"],isDefault:!0}],i9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/categories",title:"Terms List",category:"widgets",description:"Display a list of all terms of a given taxonomy.",keywords:["categories"],textdomain:"default",attributes:{taxonomy:{type:"string",default:"category"},displayAsDropdown:{type:"boolean",default:!1},showHierarchy:{type:"boolean",default:!1},showPostCounts:{type:"boolean",default:!1},showOnlyTopLevel:{type:"boolean",default:!1},showEmpty:{type:"boolean",default:!1},label:{type:"string",role:"content"},showLabel:{type:"boolean",default:!0}},usesContext:["enhancedPagination"],supports:{align:!0,html:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-categories-editor",style:"wp-block-categories"},{name:lAe}=i9,uAe={icon:gz,example:{},edit:cAe,variations:cQt},lQt=()=>it({name:lAe,metadata:i9,settings:uAe}),uQt=Object.freeze(Object.defineProperty({__proto__:null,init:lQt,metadata:i9,name:lAe,settings:uAe},Symbol.toStringTag,{value:"Module"})),dQt=({clientId:e})=>{const{replaceBlocks:t}=Oe(Q),n=G(o=>o(Q).getBlock(e),[e]);return a.jsx(Vt,{onClick:()=>t(n.clientId,O3({HTML:Ks(n)})),children:m("Convert to blocks")})};function pQt({onClick:e,isModalFullScreen:t}){return Yn("small","<")?null:a.jsx(Ce,{size:"compact",onClick:e,icon:zz,isPressed:t,label:m(t?"Exit fullscreen":"Enter fullscreen")})}function fQt(e){const t=G(n=>n(Q).getSettings().styles);return x.useEffect(()=>{const{baseURL:n,suffix:o,settings:r}=window.wpEditorL10n.tinymce;return window.tinymce.EditorManager.overrideDefaults({base_url:n,suffix:o}),window.wp.oldEditor.initialize(e.id,{tinymce:{...r,setup(s){s.on("init",()=>{const i=s.getDoc();t.forEach(({css:c})=>{const l=i.createElement("style");l.innerHTML=c,i.head.appendChild(l)})})}}}),()=>{window.wp.oldEditor.remove(e.id)}},[]),a.jsx("textarea",{...e})}function bQt(e){const{clientId:t,attributes:{content:n},setAttributes:o,onReplace:r}=e,[s,i]=x.useState(!1),[c,l]=x.useState(!1),u=`editor-${t}`,d=()=>n?i(!1):r([]);return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>i(!0),children:m("Edit")})})}),n&&a.jsx(i0,{children:n}),(s||!n)&&a.jsxs(Zo,{title:m("Classic Editor"),onRequestClose:d,shouldCloseOnClickOutside:!1,overlayClassName:"block-editor-freeform-modal",isFullScreen:c,className:"block-editor-freeform-modal__content",headerActions:a.jsx(pQt,{onClick:()=>l(!c),isModalFullScreen:c}),children:[a.jsx(fQt,{id:u,defaultValue:n}),a.jsxs(Yo,{className:"block-editor-freeform-modal__actions",justify:"flex-end",expanded:!1,children:[a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:d,children:m("Cancel")})}),a.jsx(Tn,{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:()=>{o({content:window.wp.oldEditor.getContent(u)}),i(!1)},children:m("Save")})})]})]})]})}const{wp:Wne}=window;function hQt(e){const t=e.getBody();return t.childNodes.length>1?!1:t.childNodes.length===0?!0:t.childNodes[0].childNodes.length>1?!1:/^\n?$/.test(t.innerText||t.textContent)}function mQt(e){const{clientId:t}=e,n=G(i=>i(Q).canRemoveBlock(t),[t]),[o,r]=x.useState(!1),s=Mn(i=>{r(i.ownerDocument!==document)},[]);return a.jsxs(a.Fragment,{children:[n&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(dQt,{clientId:t})})}),a.jsx("div",{...Be({ref:s}),children:o?a.jsx(bQt,{...e}):a.jsx(gQt,{...e})})]})}function gQt({clientId:e,attributes:{content:t},setAttributes:n,onReplace:o}){const{getMultiSelectedBlockClientIds:r}=G(Q),s=x.useRef(!1);x.useEffect(()=>{if(!s.current)return;const l=window.tinymce.get(`editor-${e}`);if(!l)return;l.getContent()!==t&&l.setContent(t||"")},[e,t]),x.useEffect(()=>{const{baseURL:l,suffix:u}=window.wpEditorL10n.tinymce;s.current=!0,window.tinymce.EditorManager.overrideDefaults({base_url:l,suffix:u});function d(b){let h;t&&b.on("loadContent",()=>b.setContent(t)),b.on("blur",()=>{h=b.selection.getBookmark(2,!0);const z=document.querySelector(".interface-interface-skeleton__content"),A=z.scrollTop;return r()?.length||n({content:b.getContent()}),b.once("focus",()=>{h&&(b.selection.moveToBookmark(h),z.scrollTop!==A&&(z.scrollTop=A))}),!1}),b.on("mousedown touchstart",()=>{h=null});const g=F1(()=>{const z=b.getContent();z!==b._lastChange&&(b._lastChange=z,n({content:z}))},250);b.on("Paste Change input Undo Redo",g),b.on("remove",g.cancel),b.on("keydown",z=>{lc.primary(z,"z")&&z.stopPropagation(),(z.keyCode===Mc||z.keyCode===zl)&&hQt(b)&&(o([]),z.preventDefault(),z.stopImmediatePropagation());const{altKey:A}=z;A&&z.keyCode===NSe&&z.stopPropagation()}),b.on("init",()=>{const z=b.getBody();z.ownerDocument.activeElement===z&&(z.blur(),b.focus())})}function p(){const{settings:b}=window.wpEditorL10n.tinymce;Wne.oldEditor.initialize(`editor-${e}`,{tinymce:{...b,inline:!0,content_css:!1,fixed_toolbar_container:`#toolbar-${e}`,setup:d}})}function f(){document.readyState==="complete"&&p()}return document.readyState==="complete"?p():document.addEventListener("readystatechange",f),()=>{document.removeEventListener("readystatechange",f),Wne.oldEditor.remove(`editor-${e}`),s.current=!1}},[]);function i(){const l=window.tinymce.get(`editor-${e}`);l&&l.focus()}function c(l){l.stopPropagation(),l.nativeEvent.stopImmediatePropagation()}return a.jsxs(a.Fragment,{children:[a.jsx("div",{id:`toolbar-${e}`,className:"block-library-classic__toolbar",onClick:i,"data-placeholder":m("Classic"),onKeyDown:c},"toolbar"),a.jsx("div",{id:`editor-${e}`,className:"wp-block-freeform block-library-rich-text__tinymce"},"editor")]})}function MQt({attributes:e}){const{content:t}=e;return a.jsx(i0,{children:t})}const a9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/freeform",title:"Classic",category:"text",description:"Use the classic WordPress editor.",textdomain:"default",attributes:{content:{type:"string",source:"raw"}},supports:{className:!1,customClassName:!1,reusable:!1},editorStyle:"wp-block-freeform-editor"},{name:i5}=a9,dAe={icon:yZe,edit:mQt,save:MQt},zQt=()=>it({name:i5,metadata:a9,settings:dAe}),OQt=Object.freeze(Object.defineProperty({__proto__:null,init:zQt,metadata:a9,name:i5,settings:dAe},Symbol.toStringTag,{value:"Module"}));function yQt({attributes:e,setAttributes:t,onRemove:n,insertBlocksAfter:o,mergeBlocks:r}){const s=Be();return a.jsx("pre",{...s,children:a.jsx(Ie,{tagName:"code",identifier:"content",value:e.content,onChange:i=>t({content:i}),onRemove:n,onMerge:r,placeholder:m("Write code…"),"aria-label":m("Code"),preserveWhiteSpace:!0,__unstablePastePlainText:!0,__unstableOnSplitAtDoubleLineEnd:()=>o(Ee(Mr()))})})}function AQt(e){return Ku(vQt,xQt)(e||"")}function vQt(e){return e.replace(/\[/g,"[")}function xQt(e){return e.replace(/^(\s*https?:)\/\/([^\s<>"]+\s*)$/m,"$1//$2")}function wQt({attributes:e}){return a.jsx("pre",{...Be.save(),children:a.jsx(Ie.Content,{tagName:"code",value:AQt(typeof e.content=="string"?e.content:e.content.toHTMLString({preserveWhiteSpace:!0}))})})}const _Qt={from:[{type:"enter",regExp:/^```$/,transform:()=>Ee("core/code")},{type:"block",blocks:["core/paragraph"],transform:({content:e,metadata:t})=>Ee("core/code",{content:e,metadata:U2(t,"core/code")})},{type:"block",blocks:["core/html"],transform:({content:e,metadata:t})=>Ee("core/code",{content:T0({value:eo({text:e})}),metadata:U2(t,"core/code")})},{type:"raw",isMatch:e=>e.nodeName==="PRE"&&e.children.length===1&&e.firstChild.nodeName==="CODE",schema:{pre:{children:{code:{children:{"#text":{}}}}}}}],to:[{type:"block",blocks:["core/paragraph"],transform:({content:e,metadata:t})=>Ee("core/paragraph",{content:e,metadata:U2(t,"core/paragraph")})}]},c9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/code",title:"Code",category:"text",description:"Display code snippets that respect your spacing and tabs.",textdomain:"default",attributes:{content:{type:"rich-text",source:"rich-text",selector:"code",__unstablePreserveWhiteSpace:!0}},supports:{align:["wide"],anchor:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{margin:["top","bottom"],padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{width:!0,color:!0}},color:{text:!0,background:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-code"},{name:pAe}=c9,fAe={icon:TP,example:{attributes:{content:m(`// A “block” is the abstract term used // to describe units of markup that // when composed together, form the // content or layout of a page. registerBlockType( name, settings );`)}},merge(e,t){return{content:e.content+` -`+t.content}},transforms:_Qt,edit:yQt,save:wQt},kQt=()=>it({name:fAe,metadata:l9,settings:bAe}),SQt=Object.freeze(Object.defineProperty({__proto__:null,init:kQt,metadata:l9,name:fAe,settings:bAe},Symbol.toStringTag,{value:"Module"})),CQt=[{attributes:{verticalAlignment:{type:"string"},width:{type:"number",min:0,max:100}},isEligible({width:e}){return isFinite(e)},migrate(e){return{...e,width:`${e.width}%`}},save({attributes:e}){const{verticalAlignment:t,width:n}=e,o=oe({[`is-vertically-aligned-${t}`]:t}),r={flexBasis:n+"%"};return a.jsx("div",{className:o,style:r,children:a.jsx(Ht.Content,{})})}}];function qQt({width:e,setAttributes:t}){const[n]=Un("spacing.units"),o=U1({availableUnits:n||["%","px","em","rem","vw"]}),r=Qo();return a.jsx(En,{label:m("Settings"),resetAll:()=>{t({width:void 0})},dropdownMenuProps:r,children:a.jsx(tt,{hasValue:()=>e!==void 0,label:m("Width"),onDeselect:()=>t({width:void 0}),isShownByDefault:!0,children:a.jsx(Ro,{label:m("Width"),__unstableInputWidth:"calc(50% - 8px)",__next40pxDefaultSize:!0,value:e||"",onChange:s=>{s=0>parseFloat(s)?"0":s,t({width:s})},units:o})})})}function RQt({attributes:{verticalAlignment:e,width:t,templateLock:n,allowedBlocks:o},setAttributes:r,clientId:s}){const i=oe("block-core-columns",{[`is-vertically-aligned-${e}`]:e}),{columnsIds:c,hasChildBlocks:l,rootClientId:u}=G(_=>{const{getBlockOrder:v,getBlockRootClientId:M}=_(Q),y=M(s);return{hasChildBlocks:v(s).length>0,rootClientId:y,columnsIds:v(y)}},[s]),{updateBlockAttributes:d}=Oe(Q),p=_=>{r({verticalAlignment:_}),d(u,{verticalAlignment:null})},f=Number.isFinite(t)?t+"%":t,b=Be({className:i,style:f?{flexBasis:f}:void 0}),h=c.length,g=c.indexOf(s)+1,z=xe(m("%1$s (%2$d of %3$d)"),b["aria-label"],g,h),A=Nt({...b,"aria-label":z},{templateLock:n,allowedBlocks:o,renderAppender:l?void 0:Ht.ButtonBlockAppender});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Vze,{onChange:p,value:e,controls:["top","center","bottom","stretch"]})}),a.jsx(et,{children:a.jsx(qQt,{width:t,setAttributes:r})}),a.jsx("div",{...A})]})}function TQt({attributes:e}){const{verticalAlignment:t,width:n}=e,o=oe({[`is-vertically-aligned-${t}`]:t});let r;if(n&&/\d/.test(n)){let c=Number.isFinite(n)?n+"%":n;!Number.isFinite(n)&&n?.endsWith("%")&&(c=Math.round(Number.parseFloat(n)*1e12)/1e12+"%"),r={flexBasis:c}}const s=Be.save({className:o,style:r}),i=Nt.save(s);return a.jsx("div",{...i})}const u9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/column",title:"Column",category:"design",parent:["core/columns"],description:"A single column within a columns block.",textdomain:"default",attributes:{verticalAlignment:{type:"string"},width:{type:"string"},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]}},supports:{__experimentalOnEnter:!0,anchor:!0,reusable:!1,html:!1,color:{gradients:!0,heading:!0,button:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},shadow:!0,spacing:{blockGap:!0,padding:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:!0,interactivity:{clientNavigation:!0}}},{name:hAe}=u9,mAe={icon:_Ze,edit:RQt,save:TQt,deprecated:CQt},EQt=()=>it({name:hAe,metadata:u9,settings:mAe}),WQt=Object.freeze(Object.defineProperty({__proto__:null,init:EQt,metadata:u9,name:hAe,settings:mAe},Symbol.toStringTag,{value:"Module"}));function c5(e){let{doc:t}=c5;t||(t=document.implementation.createHTMLDocument(""),c5.doc=t);let n;t.body.innerHTML=e;for(const o of t.body.firstChild.classList)if(n=o.match(/^layout-column-(\d+)$/))return Number(n[1])-1}const NQt=e=>{if(!e.customTextColor&&!e.customBackgroundColor)return e;const t={color:{}};e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor);const{customTextColor:n,customBackgroundColor:o,...r}=e;return{...r,style:t,isStackedOnMobile:!0}},BQt=[{attributes:{verticalAlignment:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},textColor:{type:"string"}},migrate:NQt,save({attributes:e}){const{verticalAlignment:t,backgroundColor:n,customBackgroundColor:o,textColor:r,customTextColor:s}=e,i=Pt("background-color",n),c=Pt("color",r),l=oe({"has-background":n||o,"has-text-color":r||s,[i]:i,[c]:c,[`are-vertically-aligned-${t}`]:t}),u={backgroundColor:i?void 0:o,color:c?void 0:s};return a.jsx("div",{className:l||void 0,style:u,children:a.jsx(Ht.Content,{})})}},{attributes:{columns:{type:"number",default:2}},isEligible(e,t){return t.some(o=>/layout-column-\d+/.test(o.originalContent))?t.some(o=>c5(o.originalContent)!==void 0):!1},migrate(e,t){const o=t.reduce((i,c)=>{const{originalContent:l}=c;let u=c5(l);return u===void 0&&(u=0),i[u]||(i[u]=[]),i[u].push(c),i},[]).map(i=>Ee("core/column",{},i)),{columns:r,...s}=e;return[{...s,isStackedOnMobile:!0},o]},save({attributes:e}){const{columns:t}=e;return a.jsx("div",{className:`has-${t}-columns`,children:a.jsx(Ht.Content,{})})}},{attributes:{columns:{type:"number",default:2}},migrate(e,t){const{columns:n,...o}=e;return e={...o,isStackedOnMobile:!0},[e,t]},save({attributes:e}){const{verticalAlignment:t,columns:n}=e,o=oe(`has-${n}-columns`,{[`are-vertically-aligned-${t}`]:t});return a.jsx("div",{className:o,children:a.jsx(Ht.Content,{})})}}],d9=e=>{const t=parseFloat(e);return Number.isFinite(t)?parseFloat(t.toFixed(2)):void 0};function gAe(e,t){const{width:n=100/t}=e.attributes;return d9(n)}function LQt(e,t=e.length){return e.reduce((n,o)=>n+gAe(o,t),0)}function PQt(e,t=e.length){return e.reduce((n,o)=>{const r=gAe(o,t);return Object.assign(n,{[o.clientId]:r})},{})}function Nne(e,t,n=e.length){const o=LQt(e,n);return Object.fromEntries(Object.entries(PQt(e,n)).map(([r,s])=>{const i=t*s/o;return[r,d9(i)]}))}function jQt(e){return e.every(t=>{const n=t.attributes.width;return Number.isFinite(n?.endsWith?.("%")?parseFloat(n):n)})}function Bne(e,t){return e.map(n=>({...n,attributes:{...n.attributes,width:`${t[n.clientId]}%`}}))}const IQt={name:"core/column"};function DQt({clientId:e,setAttributes:t,isStackedOnMobile:n}){const{count:o,canInsertColumnBlock:r,minCount:s}=G(d=>{const{canInsertBlockType:p,canRemoveBlock:f,getBlockOrder:b}=d(Q),h=b(e),g=h.reduce((z,A,_)=>(f(A)||z.push(_),z),[]);return{count:h.length,canInsertColumnBlock:p("core/column",e),minCount:Math.max(...g)+1}},[e]),{getBlocks:i}=G(Q),{replaceInnerBlocks:c}=Oe(Q);function l(d,p){let f=i(e);const b=jQt(f),h=p>d;if(h&&b){const g=d9(100/p),z=p-d,A=Nne(f,100-g*z);f=[...Bne(f,A),...Array.from({length:z}).map(()=>Ee("core/column",{width:`${g}%`}))]}else if(h)f=[...f,...Array.from({length:p-d}).map(()=>Ee("core/column"))];else if(p<d&&(f=f.slice(0,-(d-p)),b)){const g=Nne(f,100);f=Bne(f,g)}c(e,f)}const u=Qo();return a.jsxs(En,{label:m("Settings"),resetAll:()=>{l(o,s),t({isStackedOnMobile:!0})},dropdownMenuProps:u,children:[r&&a.jsx(tt,{label:m("Columns"),isShownByDefault:!0,hasValue:()=>o,onDeselect:()=>l(o,s),children:a.jsxs(dt,{spacing:4,children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:o,onChange:d=>l(o,Math.max(s,d)),min:Math.max(1,s),max:Math.max(6,o)}),o>6&&a.jsx(L1,{status:"warning",isDismissible:!1,children:m("This column count exceeds the recommended amount and may cause visual breakage.")})]})}),a.jsx(tt,{label:m("Stack on mobile"),isShownByDefault:!0,hasValue:()=>n!==!0,onDeselect:()=>t({isStackedOnMobile:!0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Stack on mobile"),checked:n,onChange:()=>t({isStackedOnMobile:!n})})})]})}function FQt({attributes:e,setAttributes:t,clientId:n}){const{isStackedOnMobile:o,verticalAlignment:r,templateLock:s}=e,i=Fn(),{getBlockOrder:c}=G(Q),{updateBlockAttributes:l}=Oe(Q),u=oe({[`are-vertically-aligned-${r}`]:r,"is-not-stacked-on-mobile":!o}),d=Be({className:u}),p=Nt(d,{defaultBlock:IQt,directInsert:!0,orientation:"horizontal",renderAppender:!1,templateLock:s});function f(b){const h=c(n);i.batch(()=>{t({verticalAlignment:b}),l(h,{verticalAlignment:b})})}return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Vze,{onChange:f,value:r})}),a.jsx(et,{children:a.jsx(DQt,{clientId:n,setAttributes:t,isStackedOnMobile:o})}),a.jsx("div",{...p})]})}function $Qt({clientId:e,name:t,setAttributes:n}){const{blockType:o,defaultVariation:r,variations:s}=G(l=>{const{getBlockVariations:u,getBlockType:d,getDefaultBlockVariation:p}=l(kt);return{blockType:d(t),defaultVariation:p(t,"block"),variations:u(t,"block")}},[t]),{replaceInnerBlocks:i}=Oe(Q),c=Be();return a.jsx("div",{...c,children:a.jsx(Dze,{icon:o?.icon?.src,label:o?.title,variations:s,instructions:m("Divide into columns. Select a layout:"),onSelect:(l=r)=>{l.attributes&&n(l.attributes),l.innerBlocks&&i(e,Ad(l.innerBlocks),!0)},allowSkip:!0})})}const VQt=e=>{const{clientId:t}=e,o=G(r=>r(Q).getBlocks(t).length>0,[t])?FQt:$Qt;return a.jsx(o,{...e})};function HQt({attributes:e}){const{isStackedOnMobile:t,verticalAlignment:n}=e,o=oe({[`are-vertically-aligned-${n}`]:n,"is-not-stacked-on-mobile":!t}),r=Be.save({className:o}),s=Nt.save(r);return a.jsx("div",{...s})}const UQt=[{name:"one-column-full",title:m("100"),description:m("One column"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Z"})}),innerBlocks:[["core/column"]],scope:["block"]},{name:"two-columns-equal",title:m("50 / 50"),description:m("Two columns; equal split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V10Z"})}),isDefault:!0,innerBlocks:[["core/column"],["core/column"]],scope:["block"]},{name:"two-columns-one-third-two-thirds",title:m("33 / 66"),description:m("Two columns; one-third, two-thirds split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm17 0a2 2 0 0 1 2-2h27a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H19a2 2 0 0 1-2-2V10Z"})}),innerBlocks:[["core/column",{width:"33.33%"}],["core/column",{width:"66.66%"}]],scope:["block"]},{name:"two-columns-two-thirds-one-third",title:m("66 / 33"),description:m("Two columns; two-thirds, one-third split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h27a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm33 0a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H35a2 2 0 0 1-2-2V10Z"})}),innerBlocks:[["core/column",{width:"66.66%"}],["core/column",{width:"33.33%"}]],scope:["block"]},{name:"three-columns-equal",title:m("33 / 33 / 33"),description:m("Three columns; equal split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h10.531c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H2a2 2 0 0 1-2-2V10Zm16.5 0c0-1.105.864-2 1.969-2H29.53c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H18.47c-1.105 0-1.969-.895-1.969-2V10Zm17 0c0-1.105.864-2 1.969-2H46a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H35.469c-1.105 0-1.969-.895-1.969-2V10Z"})}),innerBlocks:[["core/column"],["core/column"],["core/column"]],scope:["block"]},{name:"three-columns-wider-center",title:m("25 / 50 / 25"),description:m("Three columns; wide center column"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h7.531c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H2a2 2 0 0 1-2-2V10Zm13.5 0c0-1.105.864-2 1.969-2H32.53c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H15.47c-1.105 0-1.969-.895-1.969-2V10Zm23 0c0-1.105.864-2 1.969-2H46a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2h-7.531c-1.105 0-1.969-.895-1.969-2V10Z"})}),innerBlocks:[["core/column",{width:"25%"}],["core/column",{width:"50%"}],["core/column",{width:"25%"}]],scope:["block"]}],XQt=6,GQt={from:[{type:"block",isMultiBlock:!0,blocks:["*"],__experimentalConvert:e=>{const t=+(100/e.length).toFixed(2),n=e.map(({name:o,attributes:r,innerBlocks:s})=>["core/column",{width:`${t}%`},[[o,{...r},s]]]);return Ee("core/columns",{},Ad(n))},isMatch:({length:e},t)=>t.length===1&&t[0].name==="core/columns"?!1:e&&e<=XQt},{type:"block",blocks:["core/media-text"],priority:1,transform:(e,t)=>{const{align:n,backgroundColor:o,textColor:r,style:s,mediaAlt:i,mediaId:c,mediaPosition:l,mediaSizeSlug:u,mediaType:d,mediaUrl:p,mediaWidth:f,verticalAlignment:b}=e;let h;if(d==="image"||!d){const z={id:c,alt:i,url:p,sizeSlug:u},A={href:e.href,linkClass:e.linkClass,linkDestination:e.linkDestination,linkTarget:e.linkTarget,rel:e.rel};h=["core/image",{...z,...A}]}else h=["core/video",{id:c,src:p}];const g=[["core/column",{width:`${f}%`},[h]],["core/column",{width:`${100-f}%`},t]];return l==="right"&&g.reverse(),Ee("core/columns",{align:n,backgroundColor:o,textColor:r,style:s,verticalAlignment:b},Ad(g))}}],ungroup:(e,t)=>t.flatMap(n=>n.innerBlocks)},p9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/columns",title:"Columns",category:"design",allowedBlocks:["core/column"],description:"Display content in multiple columns, with blocks added to each column.",textdomain:"default",attributes:{verticalAlignment:{type:"string"},isStackedOnMobile:{type:"boolean",default:!0},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]}},supports:{anchor:!0,align:["wide","full"],html:!1,color:{gradients:!0,link:!0,heading:!0,button:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{blockGap:{__experimentalDefault:"2em",sides:["horizontal","vertical"]},margin:["top","bottom"],padding:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},layout:{allowSwitching:!1,allowInheriting:!1,allowEditing:!1,default:{type:"flex",flexWrap:"nowrap"}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},shadow:!0},editorStyle:"wp-block-columns-editor",style:"wp-block-columns"},{name:MAe}=p9,zAe={icon:kZe,variations:UQt,example:{viewportWidth:782,innerBlocks:[{name:"core/column",innerBlocks:[{name:"core/paragraph",attributes:{content:m("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.")}},{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg"}},{name:"core/paragraph",attributes:{content:m("Suspendisse commodo neque lacus, a dictum orci interdum et.")}}]},{name:"core/column",innerBlocks:[{name:"core/paragraph",attributes:{content:m("Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.")}},{name:"core/paragraph",attributes:{content:m("Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.")}}]}]},deprecated:BQt,edit:VQt,save:HQt,transforms:GQt},KQt=()=>it({name:MAe,metadata:p9,settings:zAe}),YQt=Object.freeze(Object.defineProperty({__proto__:null,init:KQt,metadata:p9,name:MAe,settings:zAe},Symbol.toStringTag,{value:"Module"})),ZQt={attributes:{tagName:{type:"string",default:"div"}},apiVersion:3,supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}}},save({attributes:{tagName:e}}){const t=Be.save(),{className:n}=t,r=(n?.split(" ")||[])?.filter(i=>i!=="wp-block-comments"),s={...t,className:r.join(" ")};return a.jsx(e,{...s,children:a.jsx(Ht.Content,{})})}},QQt=[ZQt];function JQt({attributes:{tagName:e},setAttributes:t}){const n={section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content.")};return a.jsx(et,{children:a.jsx(et,{group:"advanced",children:a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<section>",value:"section"},{label:"<aside>",value:"aside"}],value:e,onChange:o=>t({tagName:o}),help:n[e]})})})}const OAe=()=>{const e=vt(OAe);return a.jsxs("div",{className:"comment-respond",children:[a.jsx("h3",{className:"comment-reply-title",children:m("Leave a Reply")}),a.jsxs("form",{noValidate:!0,className:"comment-form",onSubmit:t=>t.preventDefault(),children:[a.jsxs("p",{children:[a.jsx("label",{htmlFor:`comment-${e}`,children:m("Comment")}),a.jsx("textarea",{id:`comment-${e}`,name:"comment",cols:"45",rows:"8",readOnly:!0})]}),a.jsx("p",{className:"form-submit wp-block-button",children:a.jsx("input",{name:"submit",type:"submit",className:oe("wp-block-button__link",z0("button")),label:m("Post Comment"),value:m("Post Comment"),"aria-disabled":"true"})})]})]})},yAe=({postId:e,postType:t})=>{const[n,o]=Ao("postType",t,"comment_status",e),r=t===void 0||e===void 0,{defaultCommentStatus:s}=G(c=>c(Q).getSettings().__experimentalDiscussionSettings),i=G(c=>t?!!c(Me).getPostType(t)?.supports.comments:!1);if(!r&&n!=="open")if(n==="closed"){const c=[a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:()=>o("open"),variant:"primary",children:We("Enable comments","action that affects the current post")},"enableComments")];return a.jsx(Er,{actions:c,children:m("Post Comments Form block: Comments are not enabled for this item.")})}else if(i){if(s!=="open")return a.jsx(Er,{children:m("Post Comments Form block: Comments are not enabled.")})}else return a.jsx(Er,{children:xe(m("Post Comments Form block: Comments are not enabled for this post type (%s)."),t)});return a.jsx(OAe,{})};function eJt({postType:e,postId:t}){let[n]=Ao("postType",e,"title",t);n=n||m("Post Title");const{avatarURL:o}=G(r=>r(Q).getSettings().__experimentalDiscussionSettings);return a.jsxs("div",{className:"wp-block-comments__legacy-placeholder",inert:"true",children:[a.jsx("h3",{children:xe(m("One response to %s"),n)}),a.jsxs("div",{className:"navigation",children:[a.jsx("div",{className:"alignleft",children:a.jsxs("a",{href:"#top",children:["« ",m("Older Comments")]})}),a.jsx("div",{className:"alignright",children:a.jsxs("a",{href:"#top",children:[m("Newer Comments")," »"]})})]}),a.jsx("ol",{className:"commentlist",children:a.jsx("li",{className:"comment even thread-even depth-1",children:a.jsxs("article",{className:"comment-body",children:[a.jsxs("footer",{className:"comment-meta",children:[a.jsxs("div",{className:"comment-author vcard",children:[a.jsx("img",{alt:m("Commenter Avatar"),src:o,className:"avatar avatar-32 photo",height:"32",width:"32",loading:"lazy"}),a.jsx("b",{className:"fn",children:a.jsx("a",{href:"#top",className:"url",children:m("A WordPress Commenter")})})," ",a.jsxs("span",{className:"says",children:[m("says"),":"]})]}),a.jsxs("div",{className:"comment-metadata",children:[a.jsx("a",{href:"#top",children:a.jsx("time",{dateTime:"2000-01-01T00:00:00+00:00",children:m("January 1, 2000 at 00:00 am")})})," ",a.jsx("span",{className:"edit-link",children:a.jsx("a",{className:"comment-edit-link",href:"#top",children:m("Edit")})})]})]}),a.jsx("div",{className:"comment-content",children:a.jsxs("p",{children:[m("Hi, this is a comment."),a.jsx("br",{}),m("To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard."),a.jsx("br",{}),cr(m("Commenter avatars come from <a>Gravatar</a>."),{a:a.jsx("a",{href:"https://gravatar.com/"})})]})}),a.jsx("div",{className:"reply",children:a.jsx("a",{className:"comment-reply-link",href:"#top","aria-label":m("Reply to A WordPress Commenter"),children:m("Reply")})})]})})}),a.jsxs("div",{className:"navigation",children:[a.jsx("div",{className:"alignleft",children:a.jsxs("a",{href:"#top",children:["« ",m("Older Comments")]})}),a.jsx("div",{className:"alignright",children:a.jsxs("a",{href:"#top",children:[m("Newer Comments")," »"]})})]}),a.jsx(yAe,{postId:t,postType:e})]})}function tJt({attributes:e,setAttributes:t,context:{postType:n,postId:o}}){const{textAlign:r}=e,s=[a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:()=>void t({legacy:!1}),variant:"primary",children:m("Switch to editable mode")},"convert")],i=Be({className:oe({[`has-text-align-${r}`]:r})});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:r,onChange:c=>{t({textAlign:c})}})}),a.jsxs("div",{...i,children:[a.jsx(Er,{actions:s,children:m("Comments block: You’re currently using the legacy version of the block. The following is just a placeholder - the final styling will likely look different. For a better representation and more customization options, switch the block to its editable mode.")}),a.jsx(eJt,{postId:o,postType:n})]})]})}const nJt=[["core/comments-title"],["core/comment-template",{},[["core/columns",{},[["core/column",{width:"40px"},[["core/avatar",{size:40,style:{border:{radius:"20px"}}}]]],["core/column",{},[["core/comment-author-name",{fontSize:"small"}],["core/group",{layout:{type:"flex"},style:{spacing:{margin:{top:"0px",bottom:"0px"}}}},[["core/comment-date",{fontSize:"small"}],["core/comment-edit-link",{fontSize:"small"}]]],["core/comment-content"],["core/comment-reply-link",{fontSize:"small"}]]]]]]],["core/comments-pagination"],["core/post-comments-form"]];function oJt(e){const{attributes:t,setAttributes:n}=e,{tagName:o,legacy:r}=t,s=Be(),i=Nt(s,{template:nJt});return r?a.jsx(tJt,{...e}):a.jsxs(a.Fragment,{children:[a.jsx(JQt,{attributes:t,setAttributes:n}),a.jsx(o,{...i})]})}function rJt({attributes:{tagName:e,legacy:t}}){const n=Be.save(),o=Nt.save(n);return t?null:a.jsx(e,{...o})}const f9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments",title:"Comments",category:"theme",description:"An advanced block that allows displaying post comments using different visual configurations.",textdomain:"default",attributes:{tagName:{type:"string",default:"div"},legacy:{type:"boolean",default:!1}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-comments-editor",usesContext:["postId","postType"]},{name:AAe}=f9,vAe={icon:xQe,example:{},edit:oJt,save:rJt,deprecated:QQt},sJt=()=>it({name:AAe,metadata:f9,settings:vAe}),iJt=Object.freeze(Object.defineProperty({__proto__:null,init:sJt,metadata:f9,name:AAe,settings:vAe},Symbol.toStringTag,{value:"Module"}));function aJt({attributes:e,context:{commentId:t},setAttributes:n,isSelected:o}){const{height:r,width:s}=e,[i]=Ao("root","comment","author_avatar_urls",t),[c]=Ao("root","comment","author_name",t),l=i?Object.values(i):null,u=i?Object.keys(i):null,d=u?u[0]:24,p=u?u[u.length-1]:96,f=Be(),b=Tm(e),h=Math.floor(p*2.5),{avatarURL:g}=G(_=>{const{getSettings:v}=_(Q),{__experimentalDiscussionSettings:M}=v();return M}),z=a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image size"),onChange:_=>n({width:_,height:_}),min:d,max:h,initialPosition:s,value:s})})}),A=a.jsx(Ca,{size:{width:s,height:r},showHandle:o,onResizeStop:(_,v,M,y)=>{n({height:parseInt(r+y.height,10),width:parseInt(s+y.width,10)})},lockAspectRatio:!0,enable:{top:!1,right:!jt(),bottom:!0,left:jt()},minWidth:d,maxWidth:h,children:a.jsx("img",{src:l?l[l.length-1]:g,alt:`${c} ${m("Avatar")}`,...f})});return a.jsxs(a.Fragment,{children:[z,a.jsx("div",{...b,children:A})]})}const b9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/comment-author-avatar",title:"Comment Author Avatar (deprecated)",category:"theme",ancestor:["core/comment-template"],description:"This block is deprecated. Please use the Avatar block instead.",textdomain:"default",attributes:{width:{type:"number",default:96},height:{type:"number",default:96}},usesContext:["commentId"],supports:{html:!1,inserter:!1,__experimentalBorder:{radius:!0,width:!0,color:!0,style:!0},color:{background:!0,text:!1,__experimentalDefaultControls:{background:!0}},spacing:{__experimentalSkipSerialization:!0,margin:!0,padding:!0},interactivity:{clientNavigation:!0}}},{name:xAe}=b9,wAe={icon:NP,edit:aJt},cJt=()=>it({name:xAe,metadata:b9,settings:wAe}),lJt=Object.freeze(Object.defineProperty({__proto__:null,init:cJt,metadata:b9,name:xAe,settings:wAe},Symbol.toStringTag,{value:"Module"}));function uJt({attributes:{isLink:e,linkTarget:t,textAlign:n},context:{commentId:o},setAttributes:r}){const s=Be({className:oe({[`has-text-align-${n}`]:n})});let i=G(d=>{const{getEntityRecord:p}=d(Me),f=p("root","comment",o),b=f?.author_name;if(f&&!b){var h;return(h=p("root","user",f.author)?.name)!==null&&h!==void 0?h:m("Anonymous")}return b??""},[o]);const c=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:n,onChange:d=>r({textAlign:d})})}),l=a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to authors URL"),onChange:()=>r({isLink:!e}),checked:e}),e&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:d=>r({linkTarget:d?"_blank":"_self"}),checked:t==="_blank"})]})});(!o||!i)&&(i=We("Comment Author","block title"));const u=e?a.jsx("a",{href:"#comment-author-pseudo-link",onClick:d=>d.preventDefault(),children:i}):i;return a.jsxs(a.Fragment,{children:[l,c,a.jsx("div",{...s,children:u})]})}const dJt={attributes:{isLink:{type:"boolean",default:!1},linkTarget:{type:"string",default:"_self"}},supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},pJt=[dJt],h9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-author-name",title:"Comment Author Name",category:"theme",ancestor:["core/comment-template"],description:"Displays the name of the author of the comment.",textdomain:"default",attributes:{isLink:{type:"boolean",default:!0},linkTarget:{type:"string",default:"_self"},textAlign:{type:"string"}},usesContext:["commentId"],supports:{html:!1,spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-comment-author-name"},{name:_Ae}=h9,kAe={icon:SZe,edit:uJt,deprecated:pJt,example:{}},fJt=()=>it({name:_Ae,metadata:h9,settings:kAe}),bJt=Object.freeze(Object.defineProperty({__proto__:null,init:fJt,metadata:h9,name:_Ae,settings:kAe},Symbol.toStringTag,{value:"Module"}));function hJt({setAttributes:e,attributes:{textAlign:t},context:{commentId:n}}){const o=Be({className:oe({[`has-text-align-${t}`]:t})}),[r]=Ao("root","comment","content",n),s=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:t,onChange:i=>e({textAlign:i})})});return!n||!r?a.jsxs(a.Fragment,{children:[s,a.jsx("div",{...o,children:a.jsx("p",{children:We("Comment Content","block title")})})]}):a.jsxs(a.Fragment,{children:[s,a.jsx("div",{...o,children:a.jsx(I1,{children:a.jsx(i0,{children:r.rendered},"html")})})]})}const m9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-content",title:"Comment Content",category:"theme",ancestor:["core/comment-template"],description:"Displays the contents of a comment.",textdomain:"default",usesContext:["commentId"],attributes:{textAlign:{type:"string"}},supports:{color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},spacing:{padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},html:!1},style:"wp-block-comment-content"},{name:SAe}=m9,CAe={icon:CZe,edit:hJt,example:{}},mJt=()=>it({name:SAe,metadata:m9,settings:CAe}),gJt=Object.freeze(Object.defineProperty({__proto__:null,init:mJt,metadata:m9,name:SAe,settings:CAe},Symbol.toStringTag,{value:"Module"}));function MJt({attributes:{format:e,isLink:t},context:{commentId:n},setAttributes:o}){const r=Be();let[s]=Ao("root","comment","date",n);const[i=Sa().formats.date]=Ao("root","site","date_format"),c=a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(Uze,{format:e,defaultFormat:i,onChange:u=>o({format:u})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to comment"),onChange:()=>o({isLink:!t}),checked:t})]})});(!n||!s)&&(s=We("Comment Date","block title"));let l=s instanceof Date?a.jsx("time",{dateTime:r0("c",s),children:e==="human-diff"?c_(s):r0(e||i,s)}):a.jsx("time",{children:s});return t&&(l=a.jsx("a",{href:"#comment-date-pseudo-link",onClick:u=>u.preventDefault(),children:l})),a.jsxs(a.Fragment,{children:[c,a.jsx("div",{...r,children:l})]})}const zJt={attributes:{format:{type:"string"},isLink:{type:"boolean",default:!1}},supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},OJt=[zJt],g9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-date",title:"Comment Date",category:"theme",ancestor:["core/comment-template"],description:"Displays the date on which the comment was posted.",textdomain:"default",attributes:{format:{type:"string"},isLink:{type:"boolean",default:!0}},usesContext:["commentId"],supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-comment-date"},{name:qAe}=g9,RAe={icon:VP,edit:MJt,deprecated:OJt,example:{}},yJt=()=>it({name:qAe,metadata:g9,settings:RAe}),AJt=Object.freeze(Object.defineProperty({__proto__:null,init:yJt,metadata:g9,name:qAe,settings:RAe},Symbol.toStringTag,{value:"Module"}));function vJt({attributes:{linkTarget:e,textAlign:t},setAttributes:n}){const o=Be({className:oe({[`has-text-align-${t}`]:t})}),r=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:t,onChange:i=>n({textAlign:i})})}),s=a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:i=>n({linkTarget:i?"_blank":"_self"}),checked:e==="_blank"})})});return a.jsxs(a.Fragment,{children:[r,s,a.jsx("div",{...o,children:a.jsx("a",{href:"#edit-comment-pseudo-link",onClick:i=>i.preventDefault(),children:m("Edit")})})]})}const M9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-edit-link",title:"Comment Edit Link",category:"theme",ancestor:["core/comment-template"],description:"Displays a link to edit the comment in the WordPress Dashboard. This link is only visible to users with the edit comment capability.",textdomain:"default",usesContext:["commentId"],attributes:{linkTarget:{type:"string",default:"_self"},textAlign:{type:"string"}},supports:{html:!1,color:{link:!0,gradients:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},style:"wp-block-comment-edit-link"},{name:TAe}=M9,EAe={icon:RZe,edit:vJt,example:{}},xJt=()=>it({name:TAe,metadata:M9,settings:EAe}),wJt=Object.freeze(Object.defineProperty({__proto__:null,init:xJt,metadata:M9,name:TAe,settings:EAe},Symbol.toStringTag,{value:"Module"}));function _Jt({setAttributes:e,attributes:{textAlign:t}}){const n=Be({className:oe({[`has-text-align-${t}`]:t})}),o=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:t,onChange:r=>e({textAlign:r})})});return a.jsxs(a.Fragment,{children:[o,a.jsx("div",{...n,children:a.jsx("a",{href:"#comment-reply-pseudo-link",onClick:r=>r.preventDefault(),children:m("Reply")})})]})}const z9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-reply-link",title:"Comment Reply Link",category:"theme",ancestor:["core/comment-template"],description:"Displays a link to reply to a comment.",textdomain:"default",usesContext:["commentId"],attributes:{textAlign:{type:"string"}},supports:{color:{gradients:!0,link:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},html:!1},style:"wp-block-comment-reply-link"},{name:WAe}=z9,NAe={edit:_Jt,icon:qZe,example:{}},kJt=()=>it({name:WAe,metadata:z9,settings:NAe}),SJt=Object.freeze(Object.defineProperty({__proto__:null,init:kJt,metadata:z9,name:WAe,settings:NAe},Symbol.toStringTag,{value:"Module"})),Lne=100,CJt=({postId:e})=>{const t={status:"approve",order:"asc",context:"embed",parent:0,_embed:"children"},{pageComments:n,commentsPerPage:o,defaultCommentsPage:r}=G(c=>{const{getSettings:l}=c(Q),{__experimentalDiscussionSettings:u}=l();return u}),s=n?Math.min(o,Lne):Lne,i=qJt({defaultPage:r,postId:e,perPage:s,queryArgs:t});return x.useMemo(()=>i?{...t,post:e,per_page:s,page:i}:null,[e,s,i])},qJt=({defaultPage:e,postId:t,perPage:n,queryArgs:o})=>{const[r,s]=x.useState({}),i=`${t}_${n}`,c=r[i]||0;return x.useEffect(()=>{c||e!=="newest"||Tt({path:tn("/wp/v2/comments",{...o,post:t,per_page:n,_fields:"id"}),method:"HEAD",parse:!1}).then(l=>{const u=parseInt(l.headers.get("X-WP-TotalPages"));s({...r,[i]:u<=1?1:u})})},[e,t,n,s]),e==="newest"?c:1},RJt=e=>x.useMemo(()=>e?.map(({id:n,_embedded:o})=>{const[r]=o?.children||[[]];return{commentId:n,children:r.map(s=>({commentId:s.id}))}}),[e]),TJt=[["core/avatar"],["core/comment-author-name"],["core/comment-date"],["core/comment-content"],["core/comment-reply-link"],["core/comment-edit-link"]],EJt=({perPage:e,pageComments:t,threadComments:n,threadCommentsDepth:o})=>{const r=n?Math.min(o,3):1,s=c=>{if(c<r){const l=c+1;return[{commentId:-(c+3),children:s(l)}]}return[]},i=[{commentId:-1,children:s(1)}];return(!t||e>=2)&&r<3&&i.push({commentId:-2,children:[]}),(!t||e>=3)&&r<2&&i.push({commentId:-3,children:[]}),i};function WJt({comment:e,activeCommentId:t,setActiveCommentId:n,firstCommentId:o,blocks:r}){const{children:s,...i}=Nt({},{template:TJt});return a.jsxs("li",{...i,children:[e.commentId===(t||o)?s:null,a.jsx(BJt,{blocks:r,commentId:e.commentId,setActiveCommentId:n,isHidden:e.commentId===(t||o)}),e?.children?.length>0?a.jsx(BAe,{comments:e.children,activeCommentId:t,setActiveCommentId:n,blocks:r,firstCommentId:o}):null]})}const NJt=({blocks:e,commentId:t,setActiveCommentId:n,isHidden:o})=>{const r=H7({blocks:e}),s=()=>{n(t)},i={display:o?"none":void 0};return a.jsx("div",{...r,tabIndex:0,role:"button",style:i,onClick:s,onKeyPress:s})},BJt=x.memo(NJt),BAe=({comments:e,blockProps:t,activeCommentId:n,setActiveCommentId:o,blocks:r,firstCommentId:s})=>a.jsx("ol",{...t,children:e&&e.map(({commentId:i,...c},l)=>a.jsx(uO,{value:{commentId:i<0?null:i},children:a.jsx(WJt,{comment:{commentId:i,...c},activeCommentId:n,setActiveCommentId:o,blocks:r,firstCommentId:s})},c.commentId||l))});function LJt({clientId:e,context:{postId:t}}){const n=Be(),[o,r]=x.useState(),{commentOrder:s,threadCommentsDepth:i,threadComments:c,commentsPerPage:l,pageComments:u}=G(h=>{const{getSettings:g}=h(Q);return g().__experimentalDiscussionSettings}),d=CJt({postId:t}),{topLevelComments:p,blocks:f}=G(h=>{const{getEntityRecords:g}=h(Me),{getBlocks:z}=h(Q);return{topLevelComments:d?g("root","comment",d):null,blocks:z(e)}},[e,d]);let b=RJt(s==="desc"&&p?[...p].reverse():p);return p?(t||(b=EJt({perPage:l,pageComments:u,threadComments:c,threadCommentsDepth:i})),b.length?a.jsx(BAe,{comments:b,blockProps:n,blocks:f,activeCommentId:o,setActiveCommentId:r,firstCommentId:b[0]?.commentId}):a.jsx("p",{...n,children:m("No results found.")})):a.jsx("p",{...n,children:a.jsx(Xn,{})})}function PJt(){return a.jsx(Ht.Content,{})}const O9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-template",title:"Comment Template",category:"design",parent:["core/comments"],description:"Contains the block elements used to display a comment, like the title, date, author, avatar and more.",textdomain:"default",usesContext:["postId"],supports:{align:!0,html:!1,reusable:!1,spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-comment-template"},{name:LAe}=O9,PAe={icon:ou,edit:LJt,save:PJt},jJt=()=>it({name:LAe,metadata:O9,settings:PAe}),IJt=Object.freeze(Object.defineProperty({__proto__:null,init:jJt,metadata:O9,name:LAe,settings:PAe},Symbol.toStringTag,{value:"Module"})),DJt={none:"",arrow:"←",chevron:"«"};function FJt({attributes:{label:e},setAttributes:t,context:{"comments/paginationArrow":n}}){const o=DJt[n];return a.jsxs("a",{href:"#comments-pagination-previous-pseudo-link",onClick:r=>r.preventDefault(),...Be(),children:[o&&a.jsx("span",{className:`wp-block-comments-pagination-previous-arrow is-arrow-${n}`,children:o}),a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Older comments page link"),placeholder:m("Older Comments"),value:e,onChange:r=>t({label:r})})]})}const y9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination-previous",title:"Comments Previous Page",category:"theme",parent:["core/comments-pagination"],description:"Displays the previous comment's page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["postId","comments/paginationArrow"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:jAe}=y9,IAe={icon:Ede,edit:FJt,example:{attributes:{label:m("Older Comments")}}},$Jt=()=>it({name:jAe,metadata:y9,settings:IAe}),VJt=Object.freeze(Object.defineProperty({__proto__:null,init:$Jt,metadata:y9,name:jAe,settings:IAe},Symbol.toStringTag,{value:"Module"}));function HJt({value:e,onChange:t}){return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Arrow"),value:e,onChange:t,help:m("A decorative arrow appended to the next and previous comments link."),isBlock:!0,children:[a.jsx(Kn,{value:"none",label:We("None","Arrow option for Comments Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"arrow",label:We("Arrow","Arrow option for Comments Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"chevron",label:We("Chevron","Arrow option for Comments Pagination Next/Previous blocks")})]})}const UJt=[["core/comments-pagination-previous"],["core/comments-pagination-numbers"],["core/comments-pagination-next"]];function XJt({attributes:{paginationArrow:e},setAttributes:t,clientId:n}){const o=G(c=>{const{getBlocks:l}=c(Q);return l(n)?.find(d=>["core/comments-pagination-previous","core/comments-pagination-next"].includes(d.name))},[]),r=Be(),s=Nt(r,{template:UJt});return G(c=>{const{getSettings:l}=c(Q),{__experimentalDiscussionSettings:u}=l();return u?.pageComments},[])?a.jsxs(a.Fragment,{children:[o&&a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(HJt,{value:e,onChange:c=>{t({paginationArrow:c})}})})}),a.jsx("div",{...s})]}):a.jsx(Er,{children:m("Comments Pagination block: paging comments is disabled in the Discussion Settings")})}function GJt(){return a.jsx(Ht.Content,{})}const A9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination",title:"Comments Pagination",category:"theme",parent:["core/comments"],allowedBlocks:["core/comments-pagination-previous","core/comments-pagination-numbers","core/comments-pagination-next"],description:"Displays a paginated navigation to next/previous set of comments, when applicable.",textdomain:"default",attributes:{paginationArrow:{type:"string",default:"none"}},providesContext:{"comments/paginationArrow":"paginationArrow"},supports:{align:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-comments-pagination-editor",style:"wp-block-comments-pagination"},{name:DAe}=A9,FAe={icon:qde,edit:XJt,save:GJt},KJt=()=>it({name:DAe,metadata:A9,settings:FAe}),YJt=Object.freeze(Object.defineProperty({__proto__:null,init:KJt,metadata:A9,name:DAe,settings:FAe},Symbol.toStringTag,{value:"Module"})),ZJt={none:"",arrow:"→",chevron:"»"};function QJt({attributes:{label:e},setAttributes:t,context:{"comments/paginationArrow":n}}){const o=ZJt[n];return a.jsxs("a",{href:"#comments-pagination-next-pseudo-link",onClick:r=>r.preventDefault(),...Be(),children:[a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Newer comments page link"),placeholder:m("Newer Comments"),value:e,onChange:r=>t({label:r})}),o&&a.jsx("span",{className:`wp-block-comments-pagination-next-arrow is-arrow-${n}`,children:o})]})}const v9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination-next",title:"Comments Next Page",category:"theme",parent:["core/comments-pagination"],description:"Displays the next comment's page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["postId","comments/paginationArrow"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:$Ae}=v9,VAe={icon:Rde,edit:QJt,example:{attributes:{label:m("Newer Comments")}}},JJt=()=>it({name:$Ae,metadata:v9,settings:VAe}),een=Object.freeze(Object.defineProperty({__proto__:null,init:JJt,metadata:v9,name:$Ae,settings:VAe},Symbol.toStringTag,{value:"Module"})),Bp=({content:e,tag:t="a",extraClass:n=""})=>t==="a"?a.jsx(t,{className:`page-numbers ${n}`,href:"#comments-pagination-numbers-pseudo-link",onClick:o=>o.preventDefault(),children:e}):a.jsx(t,{className:`page-numbers ${n}`,children:e});function ten(){return a.jsxs("div",{...Be(),children:[a.jsx(Bp,{content:"1"}),a.jsx(Bp,{content:"2"}),a.jsx(Bp,{content:"3",tag:"span",extraClass:"current"}),a.jsx(Bp,{content:"4"}),a.jsx(Bp,{content:"5"}),a.jsx(Bp,{content:"...",tag:"span",extraClass:"dots"}),a.jsx(Bp,{content:"8"})]})}const x9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination-numbers",title:"Comments Page Numbers",category:"theme",parent:["core/comments-pagination"],description:"Displays a list of page numbers for comments pagination.",textdomain:"default",usesContext:["postId"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:HAe}=x9,UAe={icon:Tde,edit:ten,example:{}},nen=()=>it({name:HAe,metadata:x9,settings:UAe}),oen=Object.freeze(Object.defineProperty({__proto__:null,init:nen,metadata:x9,name:HAe,settings:UAe},Symbol.toStringTag,{value:"Module"}));function ren({attributes:{textAlign:e,showPostTitle:t,showCommentsCount:n,level:o,levelOptions:r},setAttributes:s,context:{postType:i,postId:c}}){const l="h"+o,[u,d]=x.useState(),[p]=Ao("postType",i,"title",c),f=typeof c>"u",b=Be({className:oe({[`has-text-align-${e}`]:e})}),{threadCommentsDepth:h,threadComments:g,commentsPerPage:z,pageComments:A}=G(k=>{const{getSettings:S}=k(Q);return S().__experimentalDiscussionSettings});x.useEffect(()=>{if(f){const S=g?Math.min(h,3)-1:0,C=A?z:3,R=parseInt(S)+parseInt(C);d(Math.min(R,3));return}const k=c;Tt({path:tn("/wp/v2/comments",{post:c,_fields:"id"}),method:"HEAD",parse:!1}).then(S=>{k===c&&d(parseInt(S.headers.get("X-WP-Total")))}).catch(()=>{d(0)})},[c]);const _=a.jsxs(bt,{group:"block",children:[a.jsx(nr,{value:e,onChange:k=>s({textAlign:k})}),a.jsx(Cm,{value:o,options:r,onChange:k=>s({level:k})})]}),v=a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show post title"),checked:t,onChange:k=>s({showPostTitle:k})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show comments count"),checked:n,onChange:k=>s({showCommentsCount:k})})]})}),M=f?m("“Post Title”"):`"${p}"`;let y;return n&&u!==void 0?t?u===1?y=xe(m("One response to %s"),M):y=xe(Dn("%1$s response to %2$s","%1$s responses to %2$s",u),u,M):u===1?y=m("One response"):y=xe(Dn("%s response","%s responses",u),u):t?u===1?y=xe(m("Response to %s"),M):y=xe(m("Responses to %s"),M):u===1?y=m("Response"):y=m("Responses"),a.jsxs(a.Fragment,{children:[_,v,a.jsx(l,{...b,children:y})]})}const sen={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-title",title:"Comments Title",category:"theme",ancestor:["core/comments"],description:"Displays a title with the number of comments.",textdomain:"default",usesContext:["postId","postType"],attributes:{textAlign:{type:"string"},showPostTitle:{type:"boolean",default:!0},showCommentsCount:{type:"boolean",default:!0},level:{type:"number",default:2},levelOptions:{type:"array"}},supports:{anchor:!1,align:!0,html:!1,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0}},interactivity:{clientNavigation:!0}}},{attributes:ien,supports:aen}=sen,cen=[{attributes:{...ien,singleCommentLabel:{type:"string"},multipleCommentsLabel:{type:"string"}},supports:aen,migrate:e=>{const{singleCommentLabel:t,multipleCommentsLabel:n,...o}=e;return o},isEligible:({multipleCommentsLabel:e,singleCommentLabel:t})=>e||t,save:()=>null}],w9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-title",title:"Comments Title",category:"theme",ancestor:["core/comments"],description:"Displays a title with the number of comments.",textdomain:"default",usesContext:["postId","postType"],attributes:{textAlign:{type:"string"},showPostTitle:{type:"boolean",default:!0},showCommentsCount:{type:"boolean",default:!0},level:{type:"number",default:2},levelOptions:{type:"array"}},supports:{anchor:!1,align:!0,html:!1,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0}},interactivity:{clientNavigation:!0}}},{name:XAe}=w9,GAe={icon:yz,edit:ren,deprecated:cen,example:{}},len=()=>it({name:XAe,metadata:w9,settings:GAe}),uen=Object.freeze(Object.defineProperty({__proto__:null,init:len,metadata:w9,name:XAe,settings:GAe},Symbol.toStringTag,{value:"Module"})),den={"top left":"is-position-top-left","top center":"is-position-top-center","top right":"is-position-top-right","center left":"is-position-center-left","center center":"is-position-center-center",center:"is-position-center-center","center right":"is-position-center-right","bottom left":"is-position-bottom-left","bottom center":"is-position-bottom-center","bottom right":"is-position-bottom-right"},Dr="image",h0="video",pen=50,fen={x:.5,y:.5},KAe=["image","video"];function Vs({x:e,y:t}=fen){return`${Math.round(e*100)}% ${Math.round(t*100)}%`}function lu(e){return e===50||e===void 0?null:"has-background-dim-"+10*Math.round(e/10)}function ben(e){if(!e||!e.url&&!e.src)return{url:void 0,id:void 0};Nr(e.url)&&(e.type=Zie(e.url));let t;if(e.media_type)e.media_type===Dr?t=Dr:t=h0;else if(e.type&&(e.type===Dr||e.type===h0))t=e.type;else return;return{url:e.url||e.src,id:e.id,alt:e?.alt,backgroundType:t,...t===h0?{hasParallax:void 0}:{}}}function Ui(e){return!e||e==="center center"||e==="center"}function Ra(e){return Ui(e)?"":den[e]}function Ic(e){return e?{backgroundImage:`url(${e})`}:{}}function bb(e){return e===0||e===50||!e?null:"has-background-dim-"+10*Math.round(e/10)}function bk(e){return{...e,dimRatio:e.url?e.dimRatio:100}}function bp(e){return e.tagName||(e={...e,tagName:"div"}),{...e}}const hb={url:{type:"string"},id:{type:"number"},hasParallax:{type:"boolean",default:!1},dimRatio:{type:"number",default:50},overlayColor:{type:"string"},customOverlayColor:{type:"string"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"}},$O={url:{type:"string"},id:{type:"number"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},hasParallax:{type:"boolean",default:!1},isRepeated:{type:"boolean",default:!1},dimRatio:{type:"number",default:100},overlayColor:{type:"string"},customOverlayColor:{type:"string"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},isDark:{type:"boolean",default:!0},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},_9={...$O,useFeaturedImage:{type:"boolean",default:!1},tagName:{type:"string",default:"div"}},hen={..._9,isUserOverlayColor:{type:"boolean"},sizeSlug:{type:"string"},alt:{type:"string",default:""}},Bm={anchor:!0,align:!0,html:!1,spacing:{padding:!0,__experimentalDefaultControls:{padding:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",text:!1,background:!1}},k9={...Bm,spacing:{padding:!0,margin:["top","bottom"],blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",heading:!0,text:!0,background:!1,__experimentalSkipSerialization:["gradients"],enableContrastChecker:!1},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowJustification:!1}},men={...k9,shadow:!0,dimensions:{aspectRatio:!0},interactivity:{clientNavigation:!0}},gen={attributes:hen,supports:men,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_,sizeSlug:v}=e,M=Pt("background-color",f),y=R1(n),k=z&&A?`${z}${A}`:z,S=Dr===t,C=h0===t,R=!(u||p),T={minHeight:k||void 0},E={backgroundColor:M?void 0:s,background:r||void 0},B=c&&R?Vs(c):void 0,N=b?`url(${b})`:void 0,j=Vs(c),I=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Ui(o)},Ra(o)),P=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{[`size-${v}`]:v,"has-parallax":u,"is-repeated":p}),$=n||r;return a.jsxs(_,{...Be.save({className:I,style:T}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",M,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&$&&i!==0,"has-background-gradient":$,[y]:y}),style:E}),!l&&S&&b&&(R?a.jsx("img",{className:P,alt:h,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}):a.jsx("div",{role:h?"img":void 0,"aria-label":h||void 0,className:P,style:{backgroundPosition:j,backgroundImage:N}})),C&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}},Men={attributes:_9,supports:k9,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_}=e,v=Pt("background-color",f),M=R1(n),y=z&&A?`${z}${A}`:z,k=Dr===t,S=h0===t,C=!(u||p),R={minHeight:y||void 0},T={backgroundColor:v?void 0:s,background:r||void 0},E=c&&C?Vs(c):void 0,B=b?`url(${b})`:void 0,N=Vs(c),j=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Ui(o)},Ra(o)),I=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{"has-parallax":u,"is-repeated":p}),P=n||r;return a.jsxs(_,{...Be.save({className:j,style:R}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",v,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&P&&i!==0,"has-background-gradient":P,[M]:M}),style:T}),!l&&k&&b&&(C?a.jsx("img",{className:I,alt:h,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}):a.jsx("div",{role:"img",className:I,style:{backgroundPosition:N,backgroundImage:B}})),S&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}},zen={attributes:_9,supports:k9,isEligible(e){return(e.customOverlayColor!==void 0||e.overlayColor!==void 0)&&e.isUserOverlayColor===void 0},migrate(e){return{...e,isUserOverlayColor:!0}},save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_}=e,v=Pt("background-color",f),M=R1(n),y=z&&A?`${z}${A}`:z,k=Dr===t,S=h0===t,C=!(u||p),R={minHeight:y||void 0},T={backgroundColor:v?void 0:s,background:r||void 0},E=c&&C?Vs(c):void 0,B=b?`url(${b})`:void 0,N=Vs(c),j=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Ui(o)},Ra(o)),I=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{"has-parallax":u,"is-repeated":p}),P=n||r;return a.jsxs(_,{...Be.save({className:j,style:R}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",v,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&P&&i!==0,"has-background-gradient":P,[M]:M}),style:T}),!l&&k&&b&&(C?a.jsx("img",{className:I,alt:h,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}):a.jsx("div",{role:"img",className:I,style:{backgroundPosition:N,backgroundImage:B}})),S&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}},Oen={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A}=e,_=Pt("background-color",f),v=R1(n),M=z&&A?`${z}${A}`:z,y=Dr===t,k=h0===t,S=!(u||p),C={minHeight:M||void 0},R={backgroundColor:_?void 0:s,background:r||void 0},T=c&&S?Vs(c):void 0,E=b?`url(${b})`:void 0,B=Vs(c),N=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Ui(o)},Ra(o)),j=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{"has-parallax":u,"is-repeated":p}),I=n||r;return a.jsxs("div",{...Be.save({className:N,style:C}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",_,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&I&&i!==0,"has-background-gradient":I,[v]:v}),style:R}),!l&&y&&b&&(S?a.jsx("img",{className:j,alt:h,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}):a.jsx("div",{role:"img",className:j,style:{backgroundPosition:B,backgroundImage:E}})),k&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},yen={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A}=e,_=Pt("background-color",f),v=R1(n),M=z&&A?`${z}${A}`:z,y=Dr===t,k=h0===t,S=!(u||p),C={...y&&!S&&!l?Ic(b):{},minHeight:M||void 0},R={backgroundColor:_?void 0:s,background:r||void 0},T=c&&S?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,E=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Ui(o)},Ra(o)),B=n||r;return a.jsxs("div",{...Be.save({className:E,style:C}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",_,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&B&&i!==0,"has-background-gradient":B,[v]:v}),style:R}),!l&&y&&S&&b&&a.jsx("img",{className:oe("wp-block-cover__image-background",g?`wp-image-${g}`:null),alt:h,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}),k&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},Aen={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isDark:u,isRepeated:d,overlayColor:p,url:f,alt:b,id:h,minHeight:g,minHeightUnit:z}=e,A=Pt("background-color",p),_=R1(n),v=z?`${g}${z}`:g,M=Dr===t,y=h0===t,k=!(l||d),S={...M&&!k?Ic(f):{},minHeight:v||void 0},C={backgroundColor:A?void 0:s,background:r||void 0},R=c&&k?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,T=oe({"is-light":!u,"has-parallax":l,"is-repeated":d,"has-custom-content-position":!Ui(o)},Ra(o)),E=n||r;return a.jsxs("div",{...Be.save({className:T,style:S}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",A,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":f&&E&&i!==0,"has-background-gradient":E,[_]:_}),style:C}),M&&k&&f&&a.jsx("img",{className:oe("wp-block-cover__image-background",h?`wp-image-${h}`:null),alt:b,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),y&&f&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},ven={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isDark:u,isRepeated:d,overlayColor:p,url:f,alt:b,id:h,minHeight:g,minHeightUnit:z}=e,A=Pt("background-color",p),_=R1(n),v=z?`${g}${z}`:g,M=Dr===t,y=h0===t,k=!(l||d),S={...M&&!k?Ic(f):{},minHeight:v||void 0},C={backgroundColor:A?void 0:s,background:r||void 0},R=c&&k?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,T=oe({"is-light":!u,"has-parallax":l,"is-repeated":d,"has-custom-content-position":!Ui(o)},Ra(o));return a.jsxs("div",{...Be.save({className:T,style:S}),children:[a.jsx("span",{"aria-hidden":"true",className:oe(A,lu(i),"wp-block-cover__gradient-background",_,{"has-background-dim":i!==void 0,"has-background-gradient":n||r,[_]:!f&&_}),style:C}),M&&k&&f&&a.jsx("img",{className:oe("wp-block-cover__image-background",h?`wp-image-${h}`:null),alt:b,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),y&&f&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},xen={attributes:{...hb,isRepeated:{type:"boolean",default:!1},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""}},supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isRepeated:u,overlayColor:d,url:p,alt:f,id:b,minHeight:h,minHeightUnit:g}=e,z=Pt("background-color",d),A=R1(n),_=g?`${h}${g}`:h,v=Dr===t,M=h0===t,y=!(l||u),k={...v&&!y?Ic(p):{},backgroundColor:z?void 0:s,background:r&&!p?r:void 0,minHeight:_||void 0},S=c&&y?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,C=oe(bb(i),z,{"has-background-dim":i!==0,"has-parallax":l,"is-repeated":u,"has-background-gradient":n||r,[A]:!p&&A,"has-custom-content-position":!Ui(o)},Ra(o));return a.jsxs("div",{...Be.save({className:C,style:k}),children:[p&&(n||r)&&i!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",A),style:r?{background:r}:void 0}),v&&y&&p&&a.jsx("img",{className:oe("wp-block-cover__image-background",b?`wp-image-${b}`:null),alt:f,src:p,style:{objectPosition:S},"data-object-fit":"cover","data-object-position":S}),M&&p&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:p,style:{objectPosition:S},"data-object-fit":"cover","data-object-position":S}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(bk,bp)},wen={attributes:{...hb,isRepeated:{type:"boolean",default:!1},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isRepeated:u,overlayColor:d,url:p,minHeight:f,minHeightUnit:b}=e,h=Pt("background-color",d),g=R1(n),z=b?`${f}${b}`:f,A=Dr===t,_=h0===t,v=A?Ic(p):{},M={};h||(v.backgroundColor=s),r&&!p&&(v.background=r),v.minHeight=z||void 0;let y;c&&(y=`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`,A&&!l&&(v.backgroundPosition=y),_&&(M.objectPosition=y));const k=oe(bb(i),h,{"has-background-dim":i!==0,"has-parallax":l,"is-repeated":u,"has-background-gradient":n||r,[g]:!p&&g,"has-custom-content-position":!Ui(o)},Ra(o));return a.jsxs("div",{...Be.save({className:k,style:v}),children:[p&&(n||r)&&i!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",g),style:r?{background:r}:void 0}),_&&p&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:p,style:M}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(bk,bp)},_en={attributes:{...hb,minHeight:{type:"number"},gradient:{type:"string"},customGradient:{type:"string"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,gradient:n,customGradient:o,customOverlayColor:r,dimRatio:s,focalPoint:i,hasParallax:c,overlayColor:l,url:u,minHeight:d}=e,p=Pt("background-color",l),f=R1(n),b=t===Dr?Ic(u):{};p||(b.backgroundColor=r),i&&!c&&(b.backgroundPosition=`${Math.round(i.x*100)}% ${Math.round(i.y*100)}%`),o&&!u&&(b.background=o),b.minHeight=d||void 0;const h=oe(bb(s),p,{"has-background-dim":s!==0,"has-parallax":c,"has-background-gradient":o,[f]:!u&&f});return a.jsxs("div",{className:h,style:b,children:[u&&(n||o)&&s!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",f),style:o?{background:o}:void 0}),h0===t&&u&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(bk,bp)},ken={attributes:{...hb,minHeight:{type:"number"},gradient:{type:"string"},customGradient:{type:"string"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,gradient:n,customGradient:o,customOverlayColor:r,dimRatio:s,focalPoint:i,hasParallax:c,overlayColor:l,url:u,minHeight:d}=e,p=Pt("background-color",l),f=R1(n),b=t===Dr?Ic(u):{};p||(b.backgroundColor=r),i&&!c&&(b.backgroundPosition=`${i.x*100}% ${i.y*100}%`),o&&!u&&(b.background=o),b.minHeight=d||void 0;const h=oe(bb(s),p,{"has-background-dim":s!==0,"has-parallax":c,"has-background-gradient":o,[f]:!u&&f});return a.jsxs("div",{className:h,style:b,children:[u&&(n||o)&&s!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",f),style:o?{background:o}:void 0}),h0===t&&u&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(bk,bp)},Sen={attributes:{...hb,title:{type:"string",source:"html",selector:"p"},contentAlign:{type:"string",default:"center"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,contentAlign:n,customOverlayColor:o,dimRatio:r,focalPoint:s,hasParallax:i,overlayColor:c,title:l,url:u}=e,d=Pt("background-color",c),p=t===Dr?Ic(u):{};d||(p.backgroundColor=o),s&&!i&&(p.backgroundPosition=`${s.x*100}% ${s.y*100}%`);const f=oe(bb(r),d,{"has-background-dim":r!==0,"has-parallax":i,[`has-${n}-content`]:n!=="center"});return a.jsxs("div",{className:f,style:p,children:[h0===t&&u&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),!Ie.isEmpty(l)&&a.jsx(Ie.Content,{tagName:"p",className:"wp-block-cover-text",value:l})]})},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100,tagName:e.tagName?e.tagName:"div"},{title:n,contentAlign:o,...r}=t;return[r,[Ee("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:m("Write title…")})]]}},Cen={attributes:{...hb,title:{type:"string",source:"html",selector:"p"},contentAlign:{type:"string",default:"center"},align:{type:"string"}},supports:{className:!1},save({attributes:e}){const{url:t,title:n,hasParallax:o,dimRatio:r,align:s,contentAlign:i,overlayColor:c,customOverlayColor:l}=e,u=Pt("background-color",c),d=Ic(t);u||(d.backgroundColor=l);const p=oe("wp-block-cover-image",bb(r),u,{"has-background-dim":r!==0,"has-parallax":o,[`has-${i}-content`]:i!=="center"},s?`align${s}`:null);return a.jsx("div",{className:p,style:d,children:!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"p",className:"wp-block-cover-image-text",value:n})})},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100,tagName:e.tagName?e.tagName:"div"},{title:n,contentAlign:o,align:r,...s}=t;return[s,[Ee("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:m("Write title…")})]]}},qen={attributes:{...hb,title:{type:"string",source:"html",selector:"h2"},align:{type:"string"},contentAlign:{type:"string",default:"center"}},supports:{className:!1},save({attributes:e}){const{url:t,title:n,hasParallax:o,dimRatio:r,align:s}=e,i=Ic(t),c=oe("wp-block-cover-image",bb(r),{"has-background-dim":r!==0,"has-parallax":o},s?`align${s}`:null);return a.jsx("section",{className:c,style:i,children:a.jsx(Ie.Content,{tagName:"h2",value:n})})},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100,tagName:e.tagName?e.tagName:"div"},{title:n,contentAlign:o,align:r,...s}=t;return[s,[Ee("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:m("Write title…")})]]}},Ren=[gen,Men,zen,Oen,yen,Aen,ven,xen,wen,_en,ken,Sen,Cen,qen],fN="full",{cleanEmptyObject:Ten,ResolutionTool:Een}=e0(Ln);function Wen({onChange:e,onUnitChange:t,unit:n="px",value:o=""}){const s=`block-cover-height-input-${vt(Ro)}`,i=n==="px",[c]=Un("spacing.units"),l=U1({availableUnits:c||["px","em","rem","vw","vh"],defaultValues:{px:430,"%":20,em:20,rem:20,vw:20,vh:50}}),u=f=>{const b=f!==""?parseFloat(f):void 0;isNaN(b)&&b!==void 0||e(b)},d=x.useMemo(()=>{const[f]=yo(o);return[f,n].join("")},[n,o]),p=i?pen:0;return a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Minimum height"),id:s,isResetValueOnUnitChange:!0,min:p,onChange:u,onUnitChange:t,units:l,value:d})}function Nen({attributes:e,setAttributes:t,clientId:n,setOverlayColor:o,coverRef:r,currentSettings:s,updateDimRatio:i,featuredImage:c}){const{useFeaturedImage:l,id:u,dimRatio:d,focalPoint:p,hasParallax:f,isRepeated:b,minHeight:h,minHeightUnit:g,alt:z,tagName:A}=e,{isVideoBackground:_,isImageBackground:v,mediaElement:M,url:y,overlayColor:k}=s,S=e.sizeSlug||fN,{gradientValue:C,setGradient:R}=g_(),{getSettings:T}=G(Q),E=T()?.imageSizes,B=G(te=>u&&v?te(Me).getMedia(u,{context:"view"}):null,[u,v]),N=l?c:B;function j(te){const J=N?.media_details?.sizes?.[te]?.source_url;if(!J)return null;t({url:J,sizeSlug:te})}const I=E?.filter(({slug:te})=>N?.media_details?.sizes?.[te]?.source_url)?.map(({name:te,slug:J})=>({value:J,label:te})),P=()=>{t({hasParallax:!f,...f?{}:{focalPoint:void 0}})},$=()=>{t({isRepeated:!b})},F=_||v&&(!f||b),X=te=>{const[J,ue]=M.current?[M.current.style,"objectPosition"]:[r.current.style,"backgroundPosition"];J[ue]=Vs(te)},Z=ub(),V={header:m("The <header> element should represent introductory content, typically a group of introductory or navigational aids."),main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),article:m("The <article> element should represent a self-contained, syndicatable portion of the document."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content."),footer:m("The <footer> element should represent a footer for its nearest sectioning element (e.g.: <section>, <article>, <main> etc.).")},ee=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:!!y&&a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({hasParallax:!1,focalPoint:void 0,isRepeated:!1,alt:"",sizeSlug:void 0})},dropdownMenuProps:ee,children:[v&&a.jsxs(a.Fragment,{children:[a.jsx(tt,{label:m("Fixed background"),isShownByDefault:!0,hasValue:()=>f,onDeselect:()=>t({hasParallax:!1,focalPoint:void 0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Fixed background"),checked:f,onChange:P})}),a.jsx(tt,{label:m("Repeated background"),isShownByDefault:!0,hasValue:()=>b,onDeselect:()=>t({isRepeated:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Repeated background"),checked:b,onChange:$})})]}),F&&a.jsx(tt,{label:m("Focal point"),isShownByDefault:!0,hasValue:()=>!!p,onDeselect:()=>t({focalPoint:void 0}),children:a.jsx(u_,{__nextHasNoMarginBottom:!0,label:m("Focal point"),url:y,value:p,onDragStart:X,onDrag:X,onChange:te=>t({focalPoint:te})})}),!l&&y&&!_&&a.jsx(tt,{label:m("Alternative text"),isShownByDefault:!0,hasValue:()=>!!z,onDeselect:()=>t({alt:""}),children:a.jsx(Pi,{__nextHasNoMarginBottom:!0,label:m("Alternative text"),value:z,onChange:te=>t({alt:te}),help:a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]})})}),!!I?.length&&a.jsx(Een,{value:S,onChange:j,options:I,defaultValue:fN})]})}),Z.hasColorsOrGradients&&a.jsxs(et,{group:"color",children:[a.jsx(ek,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:k.color,gradientValue:C,label:m("Overlay"),onColorChange:o,onGradientChange:R,isShownByDefault:!0,resetAllFilter:()=>({overlayColor:void 0,customOverlayColor:void 0,gradient:void 0,customGradient:void 0}),clearable:!0}],panelId:n,...Z}),a.jsx(tt,{hasValue:()=>d===void 0?!1:d!==(y?50:100),label:m("Overlay opacity"),onDeselect:()=>i(y?50:100),resetAllFilter:()=>({dimRatio:y?50:100}),isShownByDefault:!0,panelId:n,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Overlay opacity"),value:d,onChange:te=>i(te),min:0,max:100,step:10,required:!0,__next40pxDefaultSize:!0})})]}),a.jsx(et,{group:"dimensions",children:a.jsx(tt,{className:"single-column",hasValue:()=>!!h,label:m("Minimum height"),onDeselect:()=>t({minHeight:void 0,minHeightUnit:void 0}),resetAllFilter:()=>({minHeight:void 0,minHeightUnit:void 0}),isShownByDefault:!0,panelId:n,children:a.jsx(Wen,{value:e?.style?.dimensions?.aspectRatio?"":h,unit:g,onChange:te=>t({minHeight:te,style:Ten({...e?.style,dimensions:{...e?.style?.dimensions,aspectRatio:void 0}})}),onUnitChange:te=>t({minHeightUnit:te})})})}),a.jsx(et,{group:"advanced",children:a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"}],value:A,onChange:te=>t({tagName:te}),help:V[A]})})]})}const{cleanEmptyObject:Ben}=e0(Ln);function Len({attributes:e,setAttributes:t,onSelectMedia:n,currentSettings:o,toggleUseFeaturedImage:r,onClearMedia:s}){const{contentPosition:i,id:c,useFeaturedImage:l,minHeight:u,minHeightUnit:d}=e,{hasInnerBlocks:p,url:f}=o,[b,h]=x.useState(u),[g,z]=x.useState(d),A=d==="vh"&&u===100&&!e?.style?.dimensions?.aspectRatio,_=()=>A?t(g==="vh"&&b===100?{minHeight:void 0,minHeightUnit:void 0}:{minHeight:b,minHeightUnit:g}):(h(u),z(d),t({minHeight:100,minHeightUnit:"vh",style:Ben({...e?.style,dimensions:{...e?.style?.dimensions,aspectRatio:void 0}})}));return a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(xvt,{label:m("Change content position"),value:i,onChange:v=>t({contentPosition:v}),isDisabled:!p}),a.jsx(Avt,{isActive:A,onToggle:_,isDisabled:!p})]}),a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:c,mediaURL:f,allowedTypes:KAe,accept:"image/*,video/*",onSelect:n,onToggleFeaturedImage:r,useFeaturedImage:l,name:m(f?"Replace":"Add media"),onReset:s})})]})}function Pne({disableMediaButtons:e=!1,children:t,onSelectMedia:n,onError:o,style:r,toggleUseFeaturedImage:s}){return a.jsx(au,{icon:a.jsx(Zn,{icon:BP}),labels:{title:m("Cover")},onSelect:n,accept:"image/*,video/*",allowedTypes:KAe,disableMediaButtons:e,onToggleFeaturedImage:s,onError:o,style:r,children:t})}const Pen={top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},{ResizableBoxPopover:jen}=e0(Ln);function jne({className:e,height:t,minHeight:n,onResize:o,onResizeStart:r,onResizeStop:s,showHandle:i,size:c,width:l,...u}){const[d,p]=x.useState(!1),f={className:oe(e,{"is-resizing":d}),enable:Pen,onResizeStart:(b,h,g)=>{r(g.clientHeight),o(g.clientHeight)},onResize:(b,h,g)=>{o(g.clientHeight),d||p(!0)},onResizeStop:(b,h,g)=>{s(g.clientHeight),p(!1)},showHandle:i,size:c,__experimentalShowTooltip:!0,__experimentalTooltipProps:{axis:"y",position:"bottom",isVisible:d}};return a.jsx(jen,{className:"block-library-cover__resizable-box-popover",resizableBoxProps:f,...u})}/*! Fast Average Color | © 2023 Denis Seleznev | MIT License | https://github.com/fast-average-color/fast-average-color */function Ien(e){var t=e.toString(16);return t.length===1?"0"+t:t}function Ine(e){return"#"+e.map(Ien).join("")}function Den(e){var t=(e[0]*299+e[1]*587+e[2]*114)/1e3;return t<128}function Fen(e){return e?$en(e)?e:[e]:[]}function $en(e){return Array.isArray(e[0])}function S9(e,t,n){for(var o=0;o<n.length;o++)if(Ven(e,t,n[o]))return!0;return!1}function Ven(e,t,n){switch(n.length){case 3:if(Hen(e,t,n))return!0;break;case 4:if(Uen(e,t,n))return!0;break;case 5:if(Xen(e,t,n))return!0;break;default:return!1}}function Hen(e,t,n){return e[t+3]!==255||e[t]===n[0]&&e[t+1]===n[1]&&e[t+2]===n[2]}function Uen(e,t,n){return e[t+3]&&n[3]?e[t]===n[0]&&e[t+1]===n[1]&&e[t+2]===n[2]&&e[t+3]===n[3]:e[t+3]===n[3]}function Sv(e,t,n){return e>=t-n&&e<=t+n}function Xen(e,t,n){var o=n[0],r=n[1],s=n[2],i=n[3],c=n[4],l=e[t+3],u=Sv(l,i,c);return i?!!(!l&&u||Sv(e[t],o,c)&&Sv(e[t+1],r,c)&&Sv(e[t+2],s,c)&&u):u}var Gen=24;function Ken(e,t,n){for(var o={},r=n.dominantDivider||Gen,s=n.ignoredColor,i=n.step,c=[0,0,0,0,0],l=0;l<t;l+=i){var u=e[l],d=e[l+1],p=e[l+2],f=e[l+3];if(!(s&&S9(e,l,s))){var b=Math.round(u/r)+","+Math.round(d/r)+","+Math.round(p/r);o[b]?o[b]=[o[b][0]+u*f,o[b][1]+d*f,o[b][2]+p*f,o[b][3]+f,o[b][4]+1]:o[b]=[u*f,d*f,p*f,f,1],c[4]<o[b][4]&&(c=o[b])}}var h=c[0],g=c[1],z=c[2],A=c[3],_=c[4];return A?[Math.round(h/A),Math.round(g/A),Math.round(z/A),Math.round(A/_)]:n.defaultColor}function Yen(e,t,n){for(var o=0,r=0,s=0,i=0,c=0,l=n.ignoredColor,u=n.step,d=0;d<t;d+=u){var p=e[d+3],f=e[d]*p,b=e[d+1]*p,h=e[d+2]*p;l&&S9(e,d,l)||(o+=f,r+=b,s+=h,i+=p,c++)}return i?[Math.round(o/i),Math.round(r/i),Math.round(s/i),Math.round(i/c)]:n.defaultColor}function Zen(e,t,n){for(var o=0,r=0,s=0,i=0,c=0,l=n.ignoredColor,u=n.step,d=0;d<t;d+=u){var p=e[d],f=e[d+1],b=e[d+2],h=e[d+3];l&&S9(e,d,l)||(o+=p*p*h,r+=f*f*h,s+=b*b*h,i+=h,c++)}return i?[Math.round(Math.sqrt(o/i)),Math.round(Math.sqrt(r/i)),Math.round(Math.sqrt(s/i)),Math.round(i/c)]:n.defaultColor}function Dne(e){return bM(e,"defaultColor",[0,0,0,0])}function bM(e,t,n){return e[t]===void 0?n:e[t]}var Fne=10,bN=100;function Qen(e){return e.search(/\.svg(\?|$)/i)!==-1}function Jen(e){if(YAe(e)){var t=e.naturalWidth,n=e.naturalHeight;return!e.naturalWidth&&Qen(e.src)&&(t=n=bN),{width:t,height:n}}return ttn(e)?{width:e.videoWidth,height:e.videoHeight}:{width:e.width,height:e.height}}function $ne(e){return ntn(e)?"canvas":etn(e)?"offscreencanvas":otn(e)?"imagebitmap":e.src}function YAe(e){return typeof HTMLImageElement<"u"&&e instanceof HTMLImageElement}var ZAe=typeof OffscreenCanvas<"u";function etn(e){return ZAe&&e instanceof OffscreenCanvas}function ttn(e){return typeof HTMLVideoElement<"u"&&e instanceof HTMLVideoElement}function ntn(e){return typeof HTMLCanvasElement<"u"&&e instanceof HTMLCanvasElement}function otn(e){return typeof ImageBitmap<"u"&&e instanceof ImageBitmap}function rtn(e,t){var n=bM(t,"left",0),o=bM(t,"top",0),r=bM(t,"width",e.width),s=bM(t,"height",e.height),i=r,c=s;if(t.mode==="precision")return{srcLeft:n,srcTop:o,srcWidth:r,srcHeight:s,destWidth:i,destHeight:c};var l;return r>s?(l=r/s,i=bN,c=Math.round(i/l)):(l=s/r,c=bN,i=Math.round(c/l)),(i>r||c>s||i<Fne||c<Fne)&&(i=r,c=s),{srcLeft:n,srcTop:o,srcWidth:r,srcHeight:s,destWidth:i,destHeight:c}}var stn=typeof window>"u";function itn(){return stn?ZAe?new OffscreenCanvas(1,1):null:document.createElement("canvas")}var atn="FastAverageColor: ";function Da(e){return Error(atn+e)}function Hg(e,t){t||console.error(e)}var ctn=function(){function e(){this.canvas=null,this.ctx=null}return e.prototype.getColorAsync=function(t,n){if(!t)return Promise.reject(Da("call .getColorAsync() without resource"));if(typeof t=="string"){if(typeof Image>"u")return Promise.reject(Da("resource as string is not supported in this environment"));var o=new Image;return o.crossOrigin=n&&n.crossOrigin||"",o.src=t,this.bindImageEvents(o,n)}else{if(YAe(t)&&!t.complete)return this.bindImageEvents(t,n);var r=this.getColor(t,n);return r.error?Promise.reject(r.error):Promise.resolve(r)}},e.prototype.getColor=function(t,n){n=n||{};var o=Dne(n);if(!t){var r=Da("call .getColor() without resource");return Hg(r,n.silent),this.prepareResult(o,r)}var s=Jen(t),i=rtn(s,n);if(!i.srcWidth||!i.srcHeight||!i.destWidth||!i.destHeight){var r=Da('incorrect sizes for resource "'.concat($ne(t),'"'));return Hg(r,n.silent),this.prepareResult(o,r)}if(!this.canvas&&(this.canvas=itn(),!this.canvas)){var r=Da("OffscreenCanvas is not supported in this browser");return Hg(r,n.silent),this.prepareResult(o,r)}if(!this.ctx){if(this.ctx=this.canvas.getContext("2d",{willReadFrequently:!0}),!this.ctx){var r=Da("Canvas Context 2D is not supported in this browser");return Hg(r,n.silent),this.prepareResult(o)}this.ctx.imageSmoothingEnabled=!1}this.canvas.width=i.destWidth,this.canvas.height=i.destHeight;try{this.ctx.clearRect(0,0,i.destWidth,i.destHeight),this.ctx.drawImage(t,i.srcLeft,i.srcTop,i.srcWidth,i.srcHeight,0,0,i.destWidth,i.destHeight);var c=this.ctx.getImageData(0,0,i.destWidth,i.destHeight).data;return this.prepareResult(this.getColorFromArray4(c,n))}catch(l){var r=Da("security error (CORS) for resource ".concat($ne(t),`. -Details: https://developer.mozilla.org/en/docs/Web/HTML/CORS_enabled_image`));return Hg(r,n.silent),!n.silent&&console.error(l),this.prepareResult(o,r)}},e.prototype.getColorFromArray4=function(t,n){n=n||{};var o=4,r=t.length,s=Dne(n);if(r<o)return s;var i=r-r%o,c=(n.step||1)*o,l;switch(n.algorithm||"sqrt"){case"simple":l=Yen;break;case"sqrt":l=Zen;break;case"dominant":l=Ken;break;default:throw Da("".concat(n.algorithm," is unknown algorithm"))}return l(t,i,{defaultColor:s,ignoredColor:Fen(n.ignoredColor),step:c,dominantDivider:n.dominantDivider})},e.prototype.prepareResult=function(t,n){var o=t.slice(0,3),r=[t[0],t[1],t[2],t[3]/255],s=Den(t);return{value:[t[0],t[1],t[2],t[3]],rgb:"rgb("+o.join(",")+")",rgba:"rgba("+r.join(",")+")",hex:Ine(o),hexa:Ine(t),isDark:s,isLight:!s,error:n}},e.prototype.destroy=function(){this.canvas&&(this.canvas.width=1,this.canvas.height=1,this.canvas=null),this.ctx=null},e.prototype.bindImageEvents=function(t,n){var o=this;return new Promise(function(r,s){var i=function(){u();var d=o.getColor(t,n);d.error?s(d.error):r(d)},c=function(){u(),s(Da('Error loading image "'.concat(t.src,'"')))},l=function(){u(),s(Da('Image "'.concat(t.src,'" loading aborted')))},u=function(){t.removeEventListener("load",i),t.removeEventListener("error",c),t.removeEventListener("abort",l)};t.addEventListener("load",i),t.addEventListener("error",c),t.addEventListener("abort",l)})},e}();Xs([Gs]);const IM="#FFF",ltn="#000";function utn(e,t){return{r:e.r*e.a+t.r*t.a*(1-e.a),g:e.g*e.a+t.g*t.a*(1-e.a),b:e.b*e.a+t.b*t.a*(1-e.a),a:e.a+t.a*(1-e.a)}}function v4(){return v4.fastAverageColor||(v4.fastAverageColor=new ctn),v4.fastAverageColor}const Ug=Hs(async e=>{if(!e)return IM;const{r:t,g:n,b:o,a:r}=an(IM).toRgb();try{const s=gr("media.crossOrigin",void 0,e);return(await v4().getColorAsync(e,{defaultColor:[t,n,o,r*255],silent:!0,crossOrigin:s})).hex}catch{return IM}});function Jb(e,t,n){if(t===n||e===100)return an(t).isDark();const o=an(t).alpha(e/100).toRgb(),r=an(n).toRgb(),s=utn(o,r);return an(s).isDark()}function dtn(e){return[["core/paragraph",{align:"center",placeholder:m("Write title…"),...e}]]}const ptn=(e,t)=>!e&&Nr(t);function ftn({attributes:e,clientId:t,isSelected:n,overlayColor:o,setAttributes:r,setOverlayColor:s,toggleSelection:i,context:{postId:c,postType:l}}){var u;const{contentPosition:d,id:p,url:f,backgroundType:b,useFeaturedImage:h,dimRatio:g,focalPoint:z,hasParallax:A,isDark:_,isRepeated:v,minHeight:M,minHeightUnit:y,alt:k,allowedBlocks:S,templateLock:C,tagName:R="div",isUserOverlayColor:T,sizeSlug:E}=e,[B]=Ao("postType",l,"featured_media",c),{getSettings:N}=G(Q),{__unstableMarkNextChangeAsNotPersistent:j}=Oe(Q),{media:I}=G(ot=>({media:B&&h?ot(Me).getMedia(B,{context:"view"}):void 0}),[B,h]),P=(u=I?.media_details?.sizes?.[E]?.source_url)!==null&&u!==void 0?u:I?.source_url;x.useEffect(()=>{(async()=>{if(!h)return;const ot=await Ug(P);let Ue=o.color;T||(Ue=ot,j(),s(Ue));const yt=Jb(g,Ue,ot);j(),r({isDark:yt,isUserOverlayColor:T||!1})})()},[P]);const $=h?P:f?.replaceAll("&","&"),F=h?Dr:b,{createErrorNotice:X}=Oe(mt),{gradientClass:Z,gradientValue:V}=g_(),ee=async ot=>{const Ue=ben(ot),yt=[ot?.type,ot?.media_type].includes(Dr),fn=await Ug(yt?ot?.url:void 0);let Pn=o.color;T||(Pn=fn,s(Pn),j());const Mo=f===void 0&&g===100?50:g,rr=Jb(Mo,Pn,fn);if(F===Dr&&Ue?.id){const{imageDefaultSize:Jo}=N();E&&(ot?.sizes?.[E]||ot?.media_details?.sizes?.[E])?(Ue.sizeSlug=E,Ue.url=ot?.sizes?.[E]?.url||ot?.media_details?.sizes?.[E]?.source_url):ot?.sizes?.[Jo]||ot?.media_details?.sizes?.[Jo]?(Ue.sizeSlug=Jo,Ue.url=ot?.sizes?.[Jo]?.url||ot?.media_details?.sizes?.[Jo]?.source_url):Ue.sizeSlug=fN}r({...Ue,focalPoint:void 0,useFeaturedImage:void 0,dimRatio:Mo,isDark:rr,isUserOverlayColor:T||!1})},te=()=>{let ot=o.color;T||(ot=ltn,s(void 0),j());const Ue=Jb(g,ot,IM);r({url:void 0,id:void 0,backgroundType:void 0,focalPoint:void 0,hasParallax:void 0,isRepeated:void 0,useFeaturedImage:void 0,isDark:Ue})},J=async ot=>{const Ue=await Ug($),yt=Jb(g,ot,Ue);s(ot),j(),r({isUserOverlayColor:!0,isDark:yt})},ue=async ot=>{const Ue=await Ug($),yt=Jb(ot,o.color,Ue);r({dimRatio:ot,isDark:yt})},ce=ot=>{X(ot,{type:"snackbar"})},me=ptn(p,$),de=Dr===F,Ae=h0===F,Ne=Jr()==="default",[je,{height:ie,width:we}]=js(),re=x.useMemo(()=>({height:y==="px"?M:"auto",width:"auto"}),[M,y]),pe=M&&y?`${M}${y}`:M,ke=!(A||v),Se={minHeight:pe||void 0},se=$?`url(${$})`:void 0,L=Vs(z),U={backgroundColor:o.color},ne={objectPosition:z&&ke?Vs(z):void 0},ve=!!($||o.color||V),qe=G(ot=>ot(Q).getBlock(t).innerBlocks.length>0,[t]),Pe=x.useRef(),rt=Be({ref:Pe}),[qt]=Un("typography.fontSizes"),wt=qt?.length>0,Bt=dtn({fontSize:wt?"large":void 0}),ae=Nt({className:"wp-block-cover__inner-container"},{template:qe?void 0:Bt,templateInsertUpdatesSelection:!0,allowedBlocks:S,templateLock:C,dropZoneElement:Pe.current}),H=x.useRef(),Y={isVideoBackground:Ae,isImageBackground:de,mediaElement:H,hasInnerBlocks:qe,url:$,isImgElement:ke,overlayColor:o},fe=async()=>{const ot=!h,Ue=ot?await Ug(P):IM,yt=T?o.color:Ue;T||(s(ot?yt:void 0),j());const fn=g===100?50:g,Pn=Jb(fn,yt,Ue);r({id:void 0,url:void 0,useFeaturedImage:ot,dimRatio:fn,backgroundType:h?Dr:void 0,isDark:Pn})},Re=a.jsx(Len,{attributes:e,setAttributes:r,onSelectMedia:ee,currentSettings:Y,toggleUseFeaturedImage:fe,onClearMedia:te}),be=a.jsx(Nen,{attributes:e,setAttributes:r,clientId:t,setOverlayColor:J,coverRef:Pe,currentSettings:Y,toggleUseFeaturedImage:fe,updateDimRatio:ue,onClearMedia:te,featuredImage:I}),ze={className:"block-library-cover__resize-container",clientId:t,height:ie,minHeight:pe,onResizeStart:()=>{r({minHeightUnit:"px"}),i(!1)},onResize:ot=>{r({minHeight:ot})},onResizeStop:ot=>{i(!0),r({minHeight:ot})},showHandle:!e.style?.dimensions?.aspectRatio,size:re,width:we};if(!h&&!qe&&!ve)return a.jsxs(a.Fragment,{children:[Re,be,Ne&&n&&a.jsx(jne,{...ze}),a.jsxs(R,{...rt,className:oe("is-placeholder",rt.className),style:{...rt.style,minHeight:pe||void 0},children:[je,a.jsx(Pne,{onSelectMedia:ee,onError:ce,toggleUseFeaturedImage:fe,children:a.jsx("div",{className:"wp-block-cover__placeholder-background-options",children:a.jsx(Hze,{disableCustomColors:!0,value:o.color,onChange:J,clearable:!1})})})]})]});const nt=oe({"is-dark-theme":_,"is-light":!_,"is-transient":me,"has-parallax":A,"is-repeated":v,"has-custom-content-position":!Ui(d)},Ra(d)),Mt=$||!h||h&&!$;return a.jsxs(a.Fragment,{children:[Re,be,a.jsxs(R,{...rt,className:oe(nt,rt.className),style:{...Se,...rt.style},"data-url":$,children:[je,!$&&h&&a.jsx(vo,{className:"wp-block-cover__image--placeholder-image",withIllustration:!0}),$&&de&&(ke?a.jsx("img",{ref:H,className:"wp-block-cover__image-background",alt:k,src:$,style:ne}):a.jsx("div",{ref:H,role:k?"img":void 0,"aria-label":k||void 0,className:oe(nt,"wp-block-cover__image-background"),style:{backgroundImage:se,backgroundPosition:L}})),$&&Ae&&a.jsx("video",{ref:H,className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:$,style:ne}),Mt&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",lu(g),{[o.class]:o.class,"has-background-dim":g!==void 0,"wp-block-cover__gradient-background":$&&V&&g!==0,"has-background-gradient":V,[Z]:Z}),style:{backgroundImage:V,...U}}),me&&a.jsx(Xn,{}),a.jsx(Pne,{disableMediaButtons:!0,onSelectMedia:ee,onError:ce,toggleUseFeaturedImage:fe}),a.jsx("div",{...ae})]}),Ne&&n&&a.jsx(jne,{...ze})]})}const btn=Co([AO({overlayColor:"background-color"})])(ftn);function htn({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_,sizeSlug:v}=e,M=Pt("background-color",f),y=R1(n),k=z&&A?`${z}${A}`:z,S=Dr===t,C=h0===t,R=!(u||p),T={minHeight:k||void 0},E={backgroundColor:M?void 0:s,background:r||void 0},B=c&&R?Vs(c):void 0,N=b?`url(${b})`:void 0,j=Vs(c),I=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Ui(o)},Ra(o)),P=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{[`size-${v}`]:v,"has-parallax":u,"is-repeated":p}),$=n||r;return a.jsxs(_,{...Be.save({className:I,style:T}),children:[!l&&S&&b&&(R?a.jsx("img",{className:P,alt:h,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}):a.jsx("div",{role:h?"img":void 0,"aria-label":h||void 0,className:P,style:{backgroundPosition:j,backgroundImage:N}})),C&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}),a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",M,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&$&&i!==0,"has-background-gradient":$,[y]:y}),style:E}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}const{cleanEmptyObject:Cv}=e0(Ln),mtn={from:[{type:"block",blocks:["core/image"],transform:({caption:e,url:t,alt:n,align:o,id:r,anchor:s,style:i})=>Ee("core/cover",{dimRatio:50,url:t,alt:n,align:o,id:r,anchor:s,style:{color:{duotone:i?.color?.duotone}}},[Ee("core/paragraph",{content:e,fontSize:"large",align:"center"})])},{type:"block",blocks:["core/video"],transform:({caption:e,src:t,align:n,id:o,anchor:r})=>Ee("core/cover",{dimRatio:50,url:t,align:n,id:o,backgroundType:h0,anchor:r},[Ee("core/paragraph",{content:e,fontSize:"large",align:"center"})])},{type:"block",blocks:["core/group"],transform:(e,t)=>{const{align:n,anchor:o,backgroundColor:r,gradient:s,style:i}=e;if(t?.length===1&&t[0]?.name==="core/cover")return Ee("core/cover",t[0].attributes,t[0].innerBlocks);const c=r||s||i?.color?.background||i?.color?.gradient?void 0:50,l={align:n,anchor:o,dimRatio:c,overlayColor:r,customOverlayColor:i?.color?.background,gradient:s,customGradient:i?.color?.gradient},u={...e,backgroundColor:void 0,gradient:void 0,style:Cv({...e?.style,color:i?.color?{...i?.color,background:void 0,gradient:void 0}:void 0})};return Ee("core/cover",l,[Ee("core/group",u,t)])}}],to:[{type:"block",blocks:["core/image"],isMatch:({backgroundType:e,url:t,overlayColor:n,customOverlayColor:o,gradient:r,customGradient:s})=>t?e===Dr:!n&&!o&&!r&&!s,transform:({title:e,url:t,alt:n,align:o,id:r,anchor:s,style:i})=>Ee("core/image",{caption:e,url:t,alt:n,align:o,id:r,anchor:s,style:{color:{duotone:i?.color?.duotone}}})},{type:"block",blocks:["core/video"],isMatch:({backgroundType:e,url:t,overlayColor:n,customOverlayColor:o,gradient:r,customGradient:s})=>t?e===h0:!n&&!o&&!r&&!s,transform:({title:e,url:t,align:n,id:o,anchor:r})=>Ee("core/video",{caption:e,src:t,id:o,align:n,anchor:r})},{type:"block",blocks:["core/group"],isMatch:({url:e,useFeaturedImage:t})=>!(e||t),transform:(e,t)=>{const n={backgroundColor:e?.overlayColor,gradient:e?.gradient,style:Cv({...e?.style,color:e?.customOverlayColor||e?.customGradient||e?.style?.color?{background:e?.customOverlayColor,gradient:e?.customGradient,...e?.style?.color}:void 0})};if(t?.length===1&&t[0]?.name==="core/group"){const o=Cv(t[0].attributes||{});return o?.backgroundColor||o?.gradient||o?.style?.color?.background||o?.style?.color?.gradient?Ee("core/group",o,t[0]?.innerBlocks):Ee("core/group",{...n,...o,style:Cv({...o?.style,color:n?.style?.color||o?.style?.color?{...n?.style?.color,...o?.style?.color}:void 0})},t[0]?.innerBlocks)}return Ee("core/group",{...e,...n},t)}}]},gtn=[{name:"cover",title:m("Cover"),description:m("Add an image or video with a text overlay."),attributes:{layout:{type:"constrained"}},isDefault:!0,icon:BP}],C9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/cover",title:"Cover",category:"media",description:"Add an image or video with a text overlay.",textdomain:"default",attributes:{url:{type:"string"},useFeaturedImage:{type:"boolean",default:!1},id:{type:"number"},alt:{type:"string",default:""},hasParallax:{type:"boolean",default:!1},isRepeated:{type:"boolean",default:!1},dimRatio:{type:"number",default:100},overlayColor:{type:"string"},customOverlayColor:{type:"string"},isUserOverlayColor:{type:"boolean"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},isDark:{type:"boolean",default:!0},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]},tagName:{type:"string",default:"div"},sizeSlug:{type:"string"}},usesContext:["postId","postType"],supports:{anchor:!0,align:!0,html:!1,shadow:!0,spacing:{padding:!0,margin:["top","bottom"],blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",heading:!0,text:!0,background:!1,__experimentalSkipSerialization:["gradients"],enableContrastChecker:!1},dimensions:{aspectRatio:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowJustification:!1},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-cover-editor",style:"wp-block-cover"},{name:QAe}=C9,JAe={icon:BP,example:{attributes:{customOverlayColor:"#065174",dimRatio:40,url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg",style:{typography:{fontSize:48},color:{text:"white"}}},innerBlocks:[{name:"core/paragraph",attributes:{content:m("<strong>Snow Patrol</strong>"),align:"center"}}]},transforms:mtn,save:htn,edit:btn,deprecated:Ren,variations:gtn},Mtn=()=>it({name:QAe,metadata:C9,settings:JAe}),ztn=Object.freeze(Object.defineProperty({__proto__:null,init:Mtn,metadata:C9,name:QAe,settings:JAe},Symbol.toStringTag,{value:"Module"})),Otn=[["core/paragraph",{placeholder:m("Type / to add a hidden block")}]];function ytn({attributes:e,setAttributes:t}){const{showContent:n,summary:o,allowedBlocks:r}=e,s=Be(),i=Nt(s,{template:Otn,__experimentalCaptureToolbars:!0,allowedBlocks:r}),[c,l]=x.useState(n),u=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{t({showContent:!1})},dropdownMenuProps:u,children:a.jsx(tt,{isShownByDefault:!0,label:m("Open by default"),hasValue:()=>n,onDeselect:()=>{t({showContent:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open by default"),checked:n,onChange:()=>t({showContent:!n})})})})}),a.jsxs("details",{...i,open:c,children:[a.jsx("summary",{onClick:d=>{d.preventDefault(),l(!c)},children:a.jsx(Ie,{identifier:"summary","aria-label":m("Write summary"),placeholder:m("Write summary…"),allowedFormats:[],withoutInteractiveFormatting:!0,value:o,onChange:d=>t({summary:d})})}),i.children]})]})}function Atn({attributes:e}){const{showContent:t}=e,n=e.summary?e.summary:"Details",o=Be.save();return a.jsxs("details",{...o,open:t,children:[a.jsx("summary",{children:a.jsx(Ie.Content,{value:n})}),a.jsx(Ht.Content,{})]})}const vtn={from:[{type:"block",isMultiBlock:!0,blocks:["*"],isMatch({},e){return!(e.length===1&&e[0].name==="core/details")},__experimentalConvert(e){return Ee("core/details",{},e.map(t=>jo(t)))}}]},q9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/details",title:"Details",category:"text",description:"Hide and show additional content.",keywords:["accordion","summary","toggle","disclosure"],textdomain:"default",attributes:{showContent:{type:"boolean",default:!1},summary:{type:"rich-text",source:"rich-text",selector:"summary"},allowedBlocks:{type:"array"}},supports:{__experimentalOnEnter:!0,align:["wide","full"],anchor:!0,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},__experimentalBorder:{color:!0,width:!0,style:!0},html:!1,spacing:{margin:!0,padding:!0,blockGap:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowEditing:!1},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-details-editor",style:"wp-block-details"},{name:eve}=q9,tve={icon:EZe,example:{attributes:{summary:"La Mancha",showContent:!0},innerBlocks:[{name:"core/paragraph",attributes:{content:m("In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.")}}]},__experimentalLabel(e,{context:t}){const{summary:n}=e,o=e?.metadata?.name,r=n?.trim().length>0;if(t==="list-view"&&(o||r))return o||n;if(t==="accessibility")return r?xe(m("Details. %s"),n):m("Details. Empty.")},save:Atn,edit:ytn,transforms:vtn},xtn=()=>it({name:eve,metadata:q9,settings:tve}),wtn=Object.freeze(Object.defineProperty({__proto__:null,init:xtn,metadata:q9,name:eve,settings:tve},Symbol.toStringTag,{value:"Module"}));function _tn(e){return m(e?"This embed will preserve its aspect ratio when the browser is resized.":"This embed may not preserve its aspect ratio when the browser is resized.")}const ktn=({blockSupportsResponsive:e,showEditButton:t,themeSupportsResponsive:n,allowResponsive:o,toggleResponsive:r,switchBackToURLInput:s})=>a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{children:t&&a.jsx(Vt,{className:"components-toolbar__control",label:m("Edit URL"),icon:Nd,onClick:s})})}),n&&e&&a.jsx(et,{children:a.jsx(Qt,{title:m("Media settings"),className:"blocks-responsive",children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Resize for smaller devices"),checked:o,help:_tn,onChange:r})})})]}),Vu=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zm-6-9.5L16 12l-2.5 2.8 1.1 1L18 12l-3.5-3.5-1 1zm-3 0l-1-1L6 12l3.5 3.8 1.1-1L8 12l2.5-2.5z"})}),jT=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zM13.2 7.7c-.4.4-.7 1.1-.7 1.9v3.7c-.4-.3-.8-.4-1.3-.4-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2.5 0 1-.2 1.4-.5.9-.6 1.4-1.6 1.4-2.6V9.6c0-.4.1-.6.2-.8.3-.3 1-.3 1.6-.3h.2V7h-.2c-.7 0-1.8 0-2.6.7z"})}),Vne=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.2 4.5H19c.3 0 .5.2.5.5v8.4l-3-2.9c-.3-.3-.8-.3-1 0L11.9 14 9 12c-.3-.2-.6-.2-.8 0l-3.6 2.6V9.8l4.6-5.3zm9.8 15H5c-.3 0-.5-.2-.5-.5v-2.4l4.1-3 3 1.9c.3.2.7.2.9-.1L16 12l3.5 3.4V19c0 .3-.2.5-.5.5z"})}),e2=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zM10 15l5-3-5-3v6z"})}),Stn={foreground:"#1da1f2",src:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(rw,{children:a.jsx(he,{d:"M22.23 5.924c-.736.326-1.527.547-2.357.646.847-.508 1.498-1.312 1.804-2.27-.793.47-1.67.812-2.606.996C18.325 4.498 17.258 4 16.078 4c-2.266 0-4.103 1.837-4.103 4.103 0 .322.036.635.106.935-3.41-.17-6.433-1.804-8.457-4.287-.353.607-.556 1.312-.556 2.064 0 1.424.724 2.68 1.825 3.415-.673-.022-1.305-.207-1.86-.514v.052c0 1.988 1.415 3.647 3.293 4.023-.344.095-.707.145-1.08.145-.265 0-.522-.026-.773-.074.522 1.63 2.038 2.817 3.833 2.85-1.404 1.1-3.174 1.757-5.096 1.757-.332 0-.66-.02-.98-.057 1.816 1.164 3.973 1.843 6.29 1.843 7.547 0 11.675-6.252 11.675-11.675 0-.178-.004-.355-.012-.53.802-.578 1.497-1.3 2.047-2.124z"})})})},Ctn={foreground:"#ff0000",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"})})},qtn={foreground:"#3b5998",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 3H4c-.6 0-1 .4-1 1v16c0 .5.4 1 1 1h8.6v-7h-2.3v-2.7h2.3v-2c0-2.3 1.4-3.6 3.5-3.6 1 0 1.8.1 2.1.1v2.4h-1.4c-1.1 0-1.3.5-1.3 1.3v1.7h2.7l-.4 2.8h-2.3v7H20c.5 0 1-.4 1-1V4c0-.6-.4-1-1-1z"})})},Rtn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(rw,{children:a.jsx(he,{d:"M12 4.622c2.403 0 2.688.01 3.637.052.877.04 1.354.187 1.67.31.42.163.72.358 1.036.673.315.315.51.615.673 1.035.123.317.27.794.31 1.67.043.95.052 1.235.052 3.638s-.01 2.688-.052 3.637c-.04.877-.187 1.354-.31 1.67-.163.42-.358.72-.673 1.036-.315.315-.615.51-1.035.673-.317.123-.794.27-1.67.31-.95.043-1.234.052-3.638.052s-2.688-.01-3.637-.052c-.877-.04-1.354-.187-1.67-.31-.42-.163-.72-.358-1.036-.673-.315-.315-.51-.615-.673-1.035-.123-.317-.27-.794-.31-1.67-.043-.95-.052-1.235-.052-3.638s.01-2.688.052-3.637c.04-.877.187-1.354.31-1.67.163-.42.358-.72.673-1.036.315-.315.615-.51 1.035-.673.317-.123.794-.27 1.67-.31.95-.043 1.235-.052 3.638-.052M12 3c-2.444 0-2.75.01-3.71.054s-1.613.196-2.185.418c-.592.23-1.094.538-1.594 1.04-.5.5-.807 1-1.037 1.593-.223.572-.375 1.226-.42 2.184C3.01 9.25 3 9.555 3 12s.01 2.75.054 3.71.196 1.613.418 2.186c.23.592.538 1.094 1.038 1.594s1.002.808 1.594 1.038c.572.222 1.227.375 2.185.418.96.044 1.266.054 3.71.054s2.75-.01 3.71-.054 1.613-.196 2.186-.418c.592-.23 1.094-.538 1.594-1.038s.808-1.002 1.038-1.594c.222-.572.375-1.227.418-2.185.044-.96.054-1.266.054-3.71s-.01-2.75-.054-3.71-.196-1.613-.418-2.186c-.23-.592-.538-1.094-1.038-1.594s-1.002-.808-1.594-1.038c-.572-.222-1.227-.375-2.185-.418C14.75 3.01 14.445 3 12 3zm0 4.378c-2.552 0-4.622 2.07-4.622 4.622s2.07 4.622 4.622 4.622 4.622-2.07 4.622-4.622S14.552 7.378 12 7.378zM12 15c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3zm4.804-8.884c-.596 0-1.08.484-1.08 1.08s.484 1.08 1.08 1.08c.596 0 1.08-.484 1.08-1.08s-.483-1.08-1.08-1.08z"})})}),Ttn={foreground:"#0073AA",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(rw,{children:a.jsx(he,{d:"M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z"})})})},Etn={foreground:"#1db954",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2m4.586 14.424c-.18.295-.563.387-.857.207-2.35-1.434-5.305-1.76-8.786-.963-.335.077-.67-.133-.746-.47-.077-.334.132-.67.47-.745 3.808-.87 7.076-.496 9.712 1.115.293.18.386.563.206.857M17.81 13.7c-.226.367-.706.482-1.072.257-2.687-1.652-6.785-2.13-9.965-1.166-.413.127-.848-.106-.973-.517-.125-.413.108-.848.52-.973 3.632-1.102 8.147-.568 11.234 1.328.366.226.48.707.256 1.072m.105-2.835C14.692 8.95 9.375 8.775 6.297 9.71c-.493.15-1.016-.13-1.166-.624-.148-.495.13-1.017.625-1.167 3.532-1.073 9.404-.866 13.115 1.337.445.264.59.838.327 1.282-.264.443-.838.59-1.282.325"})})},Wtn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"m6.5 7c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5zm11 0c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5z"})}),Ntn={foreground:"#1ab7ea",src:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(rw,{children:a.jsx(he,{d:"M22.396 7.164c-.093 2.026-1.507 4.8-4.245 8.32C15.323 19.16 12.93 21 10.97 21c-1.214 0-2.24-1.12-3.08-3.36-.56-2.052-1.118-4.105-1.68-6.158-.622-2.24-1.29-3.36-2.004-3.36-.156 0-.7.328-1.634.98l-.978-1.26c1.027-.903 2.04-1.806 3.037-2.71C6 3.95 7.03 3.328 7.716 3.265c1.62-.156 2.616.95 2.99 3.32.404 2.558.685 4.148.84 4.77.468 2.12.982 3.18 1.543 3.18.435 0 1.09-.687 1.963-2.064.872-1.376 1.34-2.422 1.402-3.142.125-1.187-.343-1.782-1.4-1.782-.5 0-1.013.115-1.542.34 1.023-3.35 2.977-4.976 5.862-4.883 2.14.063 3.148 1.45 3.024 4.16z"})})})},Btn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M22 12.068a2.184 2.184 0 0 0-2.186-2.186c-.592 0-1.13.233-1.524.609-1.505-1.075-3.566-1.774-5.86-1.864l1.004-4.695 3.261.699A1.56 1.56 0 1 0 18.255 3c-.61-.001-1.147.357-1.398.877l-3.638-.77a.382.382 0 0 0-.287.053.348.348 0 0 0-.161.251l-1.112 5.233c-2.33.072-4.426.77-5.95 1.864a2.201 2.201 0 0 0-1.523-.61 2.184 2.184 0 0 0-.896 4.176c-.036.215-.053.43-.053.663 0 3.37 3.924 6.111 8.763 6.111s8.763-2.724 8.763-6.11c0-.216-.017-.449-.053-.664A2.207 2.207 0 0 0 22 12.068Zm-15.018 1.56a1.56 1.56 0 0 1 3.118 0c0 .86-.699 1.558-1.559 1.558-.86.018-1.559-.699-1.559-1.559Zm8.728 4.139c-1.076 1.075-3.119 1.147-3.71 1.147-.61 0-2.652-.09-3.71-1.147a.4.4 0 0 1 0-.573.4.4 0 0 1 .574 0c.68.68 2.114.914 3.136.914 1.022 0 2.473-.233 3.136-.914a.4.4 0 0 1 .574 0 .436.436 0 0 1 0 .573Zm-.287-2.563a1.56 1.56 0 0 1 0-3.118c.86 0 1.56.699 1.56 1.56 0 .841-.7 1.558-1.56 1.558Z"})}),Ltn={foreground:"#35465c",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 3H5a2 2 0 00-2 2v14c0 1.1.9 2 2 2h14a2 2 0 002-2V5a2 2 0 00-2-2zm-5.69 14.66c-2.72 0-3.1-1.9-3.1-3.16v-3.56H8.49V8.99c1.7-.62 2.54-1.99 2.64-2.87 0-.06.06-.41.06-.58h1.9v3.1h2.17v2.3h-2.18v3.1c0 .47.13 1.3 1.2 1.26h1.1v2.36c-1.01.02-2.07 0-2.07 0z"})})},Ptn=a.jsxs(ge,{viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M18.42 14.58c-.51-.66-1.05-1.23-1.05-2.5V7.87c0-1.8.15-3.45-1.2-4.68-1.05-1.02-2.79-1.35-4.14-1.35-2.6 0-5.52.96-6.12 4.14-.06.36.18.54.4.57l2.66.3c.24-.03.42-.27.48-.5.24-1.12 1.17-1.63 2.2-1.63.56 0 1.22.21 1.55.7.4.56.33 1.31.33 1.97v.36c-1.59.18-3.66.27-5.16.93a4.63 4.63 0 0 0-2.93 4.44c0 2.82 1.8 4.23 4.1 4.23 1.95 0 3.03-.45 4.53-1.98.51.72.66 1.08 1.59 1.83.18.09.45.09.63-.1v.04l2.1-1.8c.24-.21.2-.48.03-.75zm-5.4-1.2c-.45.75-1.14 1.23-1.92 1.23-1.05 0-1.65-.81-1.65-1.98 0-2.31 2.1-2.73 4.08-2.73v.6c0 1.05.03 1.92-.5 2.88z"}),a.jsx(he,{d:"M21.69 19.2a17.62 17.62 0 0 1-21.6-1.57c-.23-.2 0-.5.28-.33a23.88 23.88 0 0 0 20.93 1.3c.45-.19.84.3.39.6z"}),a.jsx(he,{d:"M22.8 17.96c-.36-.45-2.22-.2-3.1-.12-.23.03-.3-.18-.05-.36 1.5-1.05 3.96-.75 4.26-.39.3.36-.1 2.82-1.5 4.02-.21.18-.42.1-.3-.15.3-.8 1.02-2.58.69-3z"})]}),jtn=a.jsxs(ge,{viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m.0206909 21 19.8160091-13.07806 3.5831 6.20826z",fill:"#4bc7ee"}),a.jsx(he,{d:"m23.7254 19.0205-10.1074-17.18468c-.6421-1.114428-1.7087-1.114428-2.3249 0l-11.2931 19.16418h22.5655c1.279 0 1.8019-.8905 1.1599-1.9795z",fill:"#d4cdcb"}),a.jsx(he,{d:"m.0206909 21 15.2439091-16.38571 4.3029 7.32271z",fill:"#c3d82e"}),a.jsx(he,{d:"m13.618 1.83582c-.6421-1.114428-1.7087-1.114428-2.3249 0l-11.2931 19.16418 15.2646-16.38573z",fill:"#e4ecb0"}),a.jsx(he,{d:"m.0206909 21 19.5468091-9.063 1.6621 2.8344z",fill:"#209dbd"}),a.jsx(he,{d:"m.0206909 21 17.9209091-11.82623 1.6259 2.76323z",fill:"#7cb3c9"})]}),Itn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.903 16.568c-1.82 0-3.124-1.281-3.124-2.967a2.987 2.987 0 0 1 2.989-2.989c1.663 0 2.944 1.304 2.944 3.034 0 1.663-1.281 2.922-2.81 2.922ZM17.997 3l-3.308.73v5.107c-.809-1.034-2.045-1.37-3.505-1.37-1.529 0-2.9.561-4.023 1.662-1.259 1.214-1.933 2.764-1.933 4.495 0 1.888.72 3.506 2.113 4.742 1.056.944 2.314 1.415 3.775 1.415 1.438 0 2.517-.382 3.573-1.415v1.415h3.308V3Z",fill:"#333436"})}),Dtn=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"})}),Ftn=a.jsx(ge,{viewBox:"0 0 44 44",children:a.jsx(he,{d:"M32.59521,22.001l4.31885-4.84473-6.34131-1.38379.646-6.459-5.94336,2.61035L22,6.31934l-3.27344,5.60351L12.78418,9.3125l.645,6.458L7.08643,17.15234,11.40479,21.999,7.08594,26.84375l6.34131,1.38379-.64551,6.458,5.94287-2.60938L22,37.68066l3.27344-5.60351,5.94287,2.61035-.64551-6.458,6.34277-1.38183Zm.44385,2.75244L30.772,23.97827l-1.59558-2.07391,1.97888.735Zm-8.82147,6.1579L22.75,33.424V30.88977l1.52228-2.22168ZM18.56226,13.48816,19.819,15.09534l-2.49219-.88642L15.94037,12.337Zm6.87719.00116,2.62043-1.15027-1.38654,1.86981L24.183,15.0946Zm3.59357,2.6029-1.22546,1.7381.07525-2.73486,1.44507-1.94867ZM22,29.33008l-2.16406-3.15686L22,23.23688l2.16406,2.93634Zm-4.25458-9.582-.10528-3.836,3.60986,1.284v3.73242Zm5.00458-2.552,3.60986-1.284-.10528,3.836L22.75,20.92853Zm-7.78174-1.10559-.29352-2.94263,1.44245,1.94739.07519,2.73321Zm2.30982,5.08319,3.50817,1.18164-2.16247,2.9342-3.678-1.08447Zm2.4486,7.49285L21.25,30.88977v2.53485L19.78052,30.91Zm3.48707-6.31121,3.50817-1.18164,2.33228,3.03137-3.678,1.08447Zm10.87219-4.28113-2.714,3.04529L28.16418,19.928l1.92176-2.72565ZM24.06036,12.81769l-2.06012,2.6322-2.059-2.63318L22,9.292ZM9.91455,18.07227l4.00079-.87195,1.921,2.72735-3.20794,1.19019Zm2.93024,4.565,1.9801-.73462L13.228,23.97827l-2.26838.77429Zm-1.55591,3.58819L13.701,25.4021l2.64935.78058-2.14447.67853Zm3.64868,1.977L18.19,27.17334l.08313,3.46332L14.52979,32.2793Zm10.7876,2.43549.08447-3.464,3.25165,1.03052.407,4.07684Zm4.06824-3.77478-2.14545-.68,2.65063-.781,2.41266.825Z"})}),$tn={foreground:"#f43e37",src:a.jsxs(ge,{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M24,12A12,12,0,1,1,12,0,12,12,0,0,1,24,12Z"}),a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.67,12a9.33,9.33,0,0,1,18.66,0H19a7,7,0,1,0-7,7v2.33A9.33,9.33,0,0,1,2.67,12ZM12,17.6A5.6,5.6,0,1,1,17.6,12h-2A3.56,3.56,0,1,0,12,15.56Z",fill:"#fff"})]})},Vtn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{fill:"#0a7aff",d:"M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"})}),Htn=()=>a.jsx("div",{className:"wp-block-embed is-loading",children:a.jsx(Xn,{})}),Utn=({icon:e,label:t,value:n,onSubmit:o,onChange:r,cannotEmbed:s,fallback:i,tryAgain:c})=>a.jsxs(vo,{icon:a.jsx(Zn,{icon:e,showColors:!0}),label:t,className:"wp-block-embed",instructions:m("Paste a link to the content you want to display on your site."),children:[a.jsxs("form",{onSubmit:o,children:[a.jsx(N1,{__next40pxDefaultSize:!0,type:"url",value:n||"",className:"wp-block-embed__placeholder-input",label:t,hideLabelFromVision:!0,placeholder:m("Enter URL to embed here…"),onChange:r}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:We("Embed","button label")})]}),a.jsx("div",{className:"wp-block-embed__learn-more",children:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/embeds/"),children:m("Learn more about embeds")})}),s&&a.jsxs(dt,{spacing:3,className:"components-placeholder__error",children:[a.jsx("div",{className:"components-placeholder__instructions",children:m("Sorry, this content could not be embedded.")}),a.jsxs(Ot,{expanded:!1,spacing:3,justify:"flex-start",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:c,children:We("Try again","button label")})," ",a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:i,children:We("Convert to link","button label")})]})]})]}),Xtn={class:"className",frameborder:"frameBorder",marginheight:"marginHeight",marginwidth:"marginWidth"};function Gtn({html:e}){const t=x.useRef(),n=x.useMemo(()=>{const r=new window.DOMParser().parseFromString(e,"text/html").querySelector("iframe"),s={};return r&&Array.from(r.attributes).forEach(({name:i,value:c})=>{i!=="style"&&(s[Xtn[i]||i]=c)}),s},[e]);return x.useEffect(()=>{const{ownerDocument:o}=t.current,{defaultView:r}=o;function s({data:{secret:i,message:c,value:l}={}}){c!=="height"||i!==n["data-secret"]||(t.current.height=l)}return r.addEventListener("message",s),()=>{r.removeEventListener("message",s)}},[]),a.jsx("div",{className:"wp-block-embed__wrapper",children:a.jsx("iframe",{ref:xn([t,C0e()]),title:n.title,...n})})}function Ktn({preview:e,previewable:t,url:n,type:o,isSelected:r,className:s,icon:i,label:c}){const[l,u]=x.useState(!1);!r&&l&&u(!1);const d=()=>{u(!0)},{scripts:p}=e,f=o==="photo"?_Zt(e):e.html,b=BN(n),h=xe(m("Embedded content from %s"),b),g=oe(o,s,"wp-block-embed__wrapper"),z=o==="wp-embed"?a.jsx(Gtn,{html:f}):a.jsxs("div",{className:"wp-block-embed__wrapper",children:[a.jsx(b2e,{html:f,scripts:p,title:h,type:g,onFocus:d}),!l&&a.jsx("div",{className:"block-library-embed__interactive-overlay",onMouseUp:d})]});return a.jsx(a.Fragment,{children:t?z:a.jsxs(vo,{icon:a.jsx(Zn,{icon:i,showColors:!0}),label:c,children:[a.jsx("p",{className:"components-placeholder__error",children:a.jsx("a",{href:n,children:n})}),a.jsx("p",{className:"components-placeholder__error",children:xe(m("Embedded content from %s can't be previewed in the editor."),b)})]})})}const Ytn=e=>{const{attributes:{providerNameSlug:t,previewable:n,responsive:o,url:r},attributes:s,isSelected:i,onReplace:c,setAttributes:l,insertBlocksAfter:u,onFocus:d}=e,p={title:We("Embed","block title"),icon:Vu},{icon:f,title:b}=vZt(t)||p,[h,g]=x.useState(r),[z,A]=x.useState(!1),{invalidateResolution:_}=Oe(Me),{preview:v,fetching:M,themeSupportsResponsive:y,cannotEmbed:k,hasResolved:S}=G(F=>{const{getEmbedPreview:X,isPreviewEmbedFallback:Z,isRequestingEmbedPreview:V,getThemeSupports:ee,hasFinishedResolution:te}=F(Me);if(!r)return{fetching:!1,cannotEmbed:!1};const J=X(r),ue=Z(r),ce=J?.html===!1&&J?.type===void 0,me=J?.data?.status===404,de=!!J&&!ce&&!me;return{preview:de?J:void 0,fetching:V(r),themeSupportsResponsive:ee()["responsive-embeds"],cannotEmbed:!de||ue,hasResolved:te("getEmbedPreview",[r])}},[r]),C=()=>qZt(s,v,b,o),R=()=>{const{allowResponsive:F,className:X}=s,{html:Z}=v,V=!F;l({allowResponsive:V,className:Jye(Z,X,o&&V)})};x.useEffect(()=>{if(v?.html||!k||!S)return;const F=r.replace(/\/$/,"");g(F),A(!1),l({url:F})},[v?.html,r,k,S,l]),x.useEffect(()=>{if(!(!k||M||!h)&&BN(h)==="x.com"){const F=new URL(h);F.host="twitter.com",l({url:F.toString()})}},[h,k,M,l]),x.useEffect(()=>{if(v&&!z){const F=C();if(l(F),c){const X=fk(e,F);X&&c(X)}}},[v,z]);const T=Be();if(M)return a.jsx(vd,{...T,children:a.jsx(Htn,{})});const E=xe(m("%s URL"),b);if(!v||k||z)return a.jsx(vd,{...T,children:a.jsx(Utn,{icon:f,label:E,onFocus:d,onSubmit:F=>{F&&F.preventDefault();const X=y4(s.className);A(!1),l({url:h,className:X})},value:h,cannotEmbed:k,onChange:F=>g(F),fallback:()=>SZt(h,c),tryAgain:()=>{_("getEmbedPreview",[h])}})});const{caption:N,type:j,allowResponsive:I,className:P}=C(),$=oe(P,e.className);return a.jsxs(a.Fragment,{children:[a.jsx(ktn,{showEditButton:v&&!k,themeSupportsResponsive:y,blockSupportsResponsive:o,allowResponsive:I,toggleResponsive:R,switchBackToURLInput:()=>A(!0)}),a.jsxs("figure",{...T,className:oe(T.className,$,{[`is-type-${j}`]:j,[`is-provider-${t}`]:t,[`wp-block-embed-${t}`]:t}),children:[a.jsx(Ktn,{preview:v,previewable:n,className:$,url:h,type:j,caption:N,onCaptionChange:F=>l({caption:F}),isSelected:i,icon:f,label:E,insertBlocksAfter:u,attributes:s,setAttributes:l}),a.jsx(fb,{attributes:s,setAttributes:l,isSelected:i,insertBlocksAfter:u,label:m("Embed caption text"),showToolbarButton:i})]})]})};function Ztn({attributes:e}){const{url:t,caption:n,type:o,providerNameSlug:r}=e;if(!t)return null;const s=oe("wp-block-embed",{[`is-type-${o}`]:o,[`is-provider-${r}`]:r,[`wp-block-embed-${r}`]:r});return a.jsxs("figure",{...Be.save({className:s}),children:[a.jsx("div",{className:"wp-block-embed__wrapper",children:` +`+t.content}},transforms:_Qt,edit:yQt,save:wQt},kQt=()=>it({name:pAe,metadata:c9,settings:fAe}),SQt=Object.freeze(Object.defineProperty({__proto__:null,init:kQt,metadata:c9,name:pAe,settings:fAe},Symbol.toStringTag,{value:"Module"})),CQt=[{attributes:{verticalAlignment:{type:"string"},width:{type:"number",min:0,max:100}},isEligible({width:e}){return isFinite(e)},migrate(e){return{...e,width:`${e.width}%`}},save({attributes:e}){const{verticalAlignment:t,width:n}=e,o=oe({[`is-vertically-aligned-${t}`]:t}),r={flexBasis:n+"%"};return a.jsx("div",{className:o,style:r,children:a.jsx(Ht.Content,{})})}}];function qQt({width:e,setAttributes:t}){const[n]=Un("spacing.units"),o=U1({availableUnits:n||["%","px","em","rem","vw"]}),r=Qo();return a.jsx(En,{label:m("Settings"),resetAll:()=>{t({width:void 0})},dropdownMenuProps:r,children:a.jsx(tt,{hasValue:()=>e!==void 0,label:m("Width"),onDeselect:()=>t({width:void 0}),isShownByDefault:!0,children:a.jsx(Ro,{label:m("Width"),__unstableInputWidth:"calc(50% - 8px)",__next40pxDefaultSize:!0,value:e||"",onChange:s=>{s=0>parseFloat(s)?"0":s,t({width:s})},units:o})})})}function RQt({attributes:{verticalAlignment:e,width:t,templateLock:n,allowedBlocks:o},setAttributes:r,clientId:s}){const i=oe("block-core-columns",{[`is-vertically-aligned-${e}`]:e}),{columnsIds:c,hasChildBlocks:l,rootClientId:u}=G(_=>{const{getBlockOrder:v,getBlockRootClientId:M}=_(Q),y=M(s);return{hasChildBlocks:v(s).length>0,rootClientId:y,columnsIds:v(y)}},[s]),{updateBlockAttributes:d}=Oe(Q),p=_=>{r({verticalAlignment:_}),d(u,{verticalAlignment:null})},f=Number.isFinite(t)?t+"%":t,b=Be({className:i,style:f?{flexBasis:f}:void 0}),h=c.length,g=c.indexOf(s)+1,z=xe(m("%1$s (%2$d of %3$d)"),b["aria-label"],g,h),A=Nt({...b,"aria-label":z},{templateLock:n,allowedBlocks:o,renderAppender:l?void 0:Ht.ButtonBlockAppender});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Vze,{onChange:p,value:e,controls:["top","center","bottom","stretch"]})}),a.jsx(et,{children:a.jsx(qQt,{width:t,setAttributes:r})}),a.jsx("div",{...A})]})}function TQt({attributes:e}){const{verticalAlignment:t,width:n}=e,o=oe({[`is-vertically-aligned-${t}`]:t});let r;if(n&&/\d/.test(n)){let c=Number.isFinite(n)?n+"%":n;!Number.isFinite(n)&&n?.endsWith("%")&&(c=Math.round(Number.parseFloat(n)*1e12)/1e12+"%"),r={flexBasis:c}}const s=Be.save({className:o,style:r}),i=Nt.save(s);return a.jsx("div",{...i})}const l9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/column",title:"Column",category:"design",parent:["core/columns"],description:"A single column within a columns block.",textdomain:"default",attributes:{verticalAlignment:{type:"string"},width:{type:"string"},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]}},supports:{__experimentalOnEnter:!0,anchor:!0,reusable:!1,html:!1,color:{gradients:!0,heading:!0,button:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},shadow:!0,spacing:{blockGap:!0,padding:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:!0,interactivity:{clientNavigation:!0}}},{name:bAe}=l9,hAe={icon:wZe,edit:RQt,save:TQt,deprecated:CQt},EQt=()=>it({name:bAe,metadata:l9,settings:hAe}),WQt=Object.freeze(Object.defineProperty({__proto__:null,init:EQt,metadata:l9,name:bAe,settings:hAe},Symbol.toStringTag,{value:"Module"}));function a5(e){let{doc:t}=a5;t||(t=document.implementation.createHTMLDocument(""),a5.doc=t);let n;t.body.innerHTML=e;for(const o of t.body.firstChild.classList)if(n=o.match(/^layout-column-(\d+)$/))return Number(n[1])-1}const NQt=e=>{if(!e.customTextColor&&!e.customBackgroundColor)return e;const t={color:{}};e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor);const{customTextColor:n,customBackgroundColor:o,...r}=e;return{...r,style:t,isStackedOnMobile:!0}},BQt=[{attributes:{verticalAlignment:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},textColor:{type:"string"}},migrate:NQt,save({attributes:e}){const{verticalAlignment:t,backgroundColor:n,customBackgroundColor:o,textColor:r,customTextColor:s}=e,i=Pt("background-color",n),c=Pt("color",r),l=oe({"has-background":n||o,"has-text-color":r||s,[i]:i,[c]:c,[`are-vertically-aligned-${t}`]:t}),u={backgroundColor:i?void 0:o,color:c?void 0:s};return a.jsx("div",{className:l||void 0,style:u,children:a.jsx(Ht.Content,{})})}},{attributes:{columns:{type:"number",default:2}},isEligible(e,t){return t.some(o=>/layout-column-\d+/.test(o.originalContent))?t.some(o=>a5(o.originalContent)!==void 0):!1},migrate(e,t){const o=t.reduce((i,c)=>{const{originalContent:l}=c;let u=a5(l);return u===void 0&&(u=0),i[u]||(i[u]=[]),i[u].push(c),i},[]).map(i=>Ee("core/column",{},i)),{columns:r,...s}=e;return[{...s,isStackedOnMobile:!0},o]},save({attributes:e}){const{columns:t}=e;return a.jsx("div",{className:`has-${t}-columns`,children:a.jsx(Ht.Content,{})})}},{attributes:{columns:{type:"number",default:2}},migrate(e,t){const{columns:n,...o}=e;return e={...o,isStackedOnMobile:!0},[e,t]},save({attributes:e}){const{verticalAlignment:t,columns:n}=e,o=oe(`has-${n}-columns`,{[`are-vertically-aligned-${t}`]:t});return a.jsx("div",{className:o,children:a.jsx(Ht.Content,{})})}}],u9=e=>{const t=parseFloat(e);return Number.isFinite(t)?parseFloat(t.toFixed(2)):void 0};function mAe(e,t){const{width:n=100/t}=e.attributes;return u9(n)}function LQt(e,t=e.length){return e.reduce((n,o)=>n+mAe(o,t),0)}function PQt(e,t=e.length){return e.reduce((n,o)=>{const r=mAe(o,t);return Object.assign(n,{[o.clientId]:r})},{})}function Nne(e,t,n=e.length){const o=LQt(e,n);return Object.fromEntries(Object.entries(PQt(e,n)).map(([r,s])=>{const i=t*s/o;return[r,u9(i)]}))}function jQt(e){return e.every(t=>{const n=t.attributes.width;return Number.isFinite(n?.endsWith?.("%")?parseFloat(n):n)})}function Bne(e,t){return e.map(n=>({...n,attributes:{...n.attributes,width:`${t[n.clientId]}%`}}))}const IQt={name:"core/column"};function DQt({clientId:e,setAttributes:t,isStackedOnMobile:n}){const{count:o,canInsertColumnBlock:r,minCount:s}=G(d=>{const{canInsertBlockType:p,canRemoveBlock:f,getBlockOrder:b}=d(Q),h=b(e),g=h.reduce((z,A,_)=>(f(A)||z.push(_),z),[]);return{count:h.length,canInsertColumnBlock:p("core/column",e),minCount:Math.max(...g)+1}},[e]),{getBlocks:i}=G(Q),{replaceInnerBlocks:c}=Oe(Q);function l(d,p){let f=i(e);const b=jQt(f),h=p>d;if(h&&b){const g=u9(100/p),z=p-d,A=Nne(f,100-g*z);f=[...Bne(f,A),...Array.from({length:z}).map(()=>Ee("core/column",{width:`${g}%`}))]}else if(h)f=[...f,...Array.from({length:p-d}).map(()=>Ee("core/column"))];else if(p<d&&(f=f.slice(0,-(d-p)),b)){const g=Nne(f,100);f=Bne(f,g)}c(e,f)}const u=Qo();return a.jsxs(En,{label:m("Settings"),resetAll:()=>{l(o,s),t({isStackedOnMobile:!0})},dropdownMenuProps:u,children:[r&&a.jsx(tt,{label:m("Columns"),isShownByDefault:!0,hasValue:()=>o,onDeselect:()=>l(o,s),children:a.jsxs(dt,{spacing:4,children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:o,onChange:d=>l(o,Math.max(s,d)),min:Math.max(1,s),max:Math.max(6,o)}),o>6&&a.jsx(L1,{status:"warning",isDismissible:!1,children:m("This column count exceeds the recommended amount and may cause visual breakage.")})]})}),a.jsx(tt,{label:m("Stack on mobile"),isShownByDefault:!0,hasValue:()=>n!==!0,onDeselect:()=>t({isStackedOnMobile:!0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Stack on mobile"),checked:n,onChange:()=>t({isStackedOnMobile:!n})})})]})}function FQt({attributes:e,setAttributes:t,clientId:n}){const{isStackedOnMobile:o,verticalAlignment:r,templateLock:s}=e,i=Fn(),{getBlockOrder:c}=G(Q),{updateBlockAttributes:l}=Oe(Q),u=oe({[`are-vertically-aligned-${r}`]:r,"is-not-stacked-on-mobile":!o}),d=Be({className:u}),p=Nt(d,{defaultBlock:IQt,directInsert:!0,orientation:"horizontal",renderAppender:!1,templateLock:s});function f(b){const h=c(n);i.batch(()=>{t({verticalAlignment:b}),l(h,{verticalAlignment:b})})}return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Vze,{onChange:f,value:r})}),a.jsx(et,{children:a.jsx(DQt,{clientId:n,setAttributes:t,isStackedOnMobile:o})}),a.jsx("div",{...p})]})}function $Qt({clientId:e,name:t,setAttributes:n}){const{blockType:o,defaultVariation:r,variations:s}=G(l=>{const{getBlockVariations:u,getBlockType:d,getDefaultBlockVariation:p}=l(kt);return{blockType:d(t),defaultVariation:p(t,"block"),variations:u(t,"block")}},[t]),{replaceInnerBlocks:i}=Oe(Q),c=Be();return a.jsx("div",{...c,children:a.jsx(Dze,{icon:o?.icon?.src,label:o?.title,variations:s,instructions:m("Divide into columns. Select a layout:"),onSelect:(l=r)=>{l.attributes&&n(l.attributes),l.innerBlocks&&i(e,Ad(l.innerBlocks),!0)},allowSkip:!0})})}const VQt=e=>{const{clientId:t}=e,o=G(r=>r(Q).getBlocks(t).length>0,[t])?FQt:$Qt;return a.jsx(o,{...e})};function HQt({attributes:e}){const{isStackedOnMobile:t,verticalAlignment:n}=e,o=oe({[`are-vertically-aligned-${n}`]:n,"is-not-stacked-on-mobile":!t}),r=Be.save({className:o}),s=Nt.save(r);return a.jsx("div",{...s})}const UQt=[{name:"one-column-full",title:m("100"),description:m("One column"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Z"})}),innerBlocks:[["core/column"]],scope:["block"]},{name:"two-columns-equal",title:m("50 / 50"),description:m("Two columns; equal split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V10Z"})}),isDefault:!0,innerBlocks:[["core/column"],["core/column"]],scope:["block"]},{name:"two-columns-one-third-two-thirds",title:m("33 / 66"),description:m("Two columns; one-third, two-thirds split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm17 0a2 2 0 0 1 2-2h27a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H19a2 2 0 0 1-2-2V10Z"})}),innerBlocks:[["core/column",{width:"33.33%"}],["core/column",{width:"66.66%"}]],scope:["block"]},{name:"two-columns-two-thirds-one-third",title:m("66 / 33"),description:m("Two columns; two-thirds, one-third split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h27a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm33 0a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H35a2 2 0 0 1-2-2V10Z"})}),innerBlocks:[["core/column",{width:"66.66%"}],["core/column",{width:"33.33%"}]],scope:["block"]},{name:"three-columns-equal",title:m("33 / 33 / 33"),description:m("Three columns; equal split"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h10.531c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H2a2 2 0 0 1-2-2V10Zm16.5 0c0-1.105.864-2 1.969-2H29.53c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H18.47c-1.105 0-1.969-.895-1.969-2V10Zm17 0c0-1.105.864-2 1.969-2H46a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H35.469c-1.105 0-1.969-.895-1.969-2V10Z"})}),innerBlocks:[["core/column"],["core/column"],["core/column"]],scope:["block"]},{name:"three-columns-wider-center",title:m("25 / 50 / 25"),description:m("Three columns; wide center column"),icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h7.531c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H2a2 2 0 0 1-2-2V10Zm13.5 0c0-1.105.864-2 1.969-2H32.53c1.105 0 1.969.895 1.969 2v28c0 1.105-.864 2-1.969 2H15.47c-1.105 0-1.969-.895-1.969-2V10Zm23 0c0-1.105.864-2 1.969-2H46a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2h-7.531c-1.105 0-1.969-.895-1.969-2V10Z"})}),innerBlocks:[["core/column",{width:"25%"}],["core/column",{width:"50%"}],["core/column",{width:"25%"}]],scope:["block"]}],XQt=6,GQt={from:[{type:"block",isMultiBlock:!0,blocks:["*"],__experimentalConvert:e=>{const t=+(100/e.length).toFixed(2),n=e.map(({name:o,attributes:r,innerBlocks:s})=>["core/column",{width:`${t}%`},[[o,{...r},s]]]);return Ee("core/columns",{},Ad(n))},isMatch:({length:e},t)=>t.length===1&&t[0].name==="core/columns"?!1:e&&e<=XQt},{type:"block",blocks:["core/media-text"],priority:1,transform:(e,t)=>{const{align:n,backgroundColor:o,textColor:r,style:s,mediaAlt:i,mediaId:c,mediaPosition:l,mediaSizeSlug:u,mediaType:d,mediaUrl:p,mediaWidth:f,verticalAlignment:b}=e;let h;if(d==="image"||!d){const z={id:c,alt:i,url:p,sizeSlug:u},A={href:e.href,linkClass:e.linkClass,linkDestination:e.linkDestination,linkTarget:e.linkTarget,rel:e.rel};h=["core/image",{...z,...A}]}else h=["core/video",{id:c,src:p}];const g=[["core/column",{width:`${f}%`},[h]],["core/column",{width:`${100-f}%`},t]];return l==="right"&&g.reverse(),Ee("core/columns",{align:n,backgroundColor:o,textColor:r,style:s,verticalAlignment:b},Ad(g))}}],ungroup:(e,t)=>t.flatMap(n=>n.innerBlocks)},d9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/columns",title:"Columns",category:"design",allowedBlocks:["core/column"],description:"Display content in multiple columns, with blocks added to each column.",textdomain:"default",attributes:{verticalAlignment:{type:"string"},isStackedOnMobile:{type:"boolean",default:!0},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]}},supports:{anchor:!0,align:["wide","full"],html:!1,color:{gradients:!0,link:!0,heading:!0,button:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{blockGap:{__experimentalDefault:"2em",sides:["horizontal","vertical"]},margin:["top","bottom"],padding:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},layout:{allowSwitching:!1,allowInheriting:!1,allowEditing:!1,default:{type:"flex",flexWrap:"nowrap"}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},shadow:!0},editorStyle:"wp-block-columns-editor",style:"wp-block-columns"},{name:gAe}=d9,MAe={icon:_Ze,variations:UQt,example:{viewportWidth:782,innerBlocks:[{name:"core/column",innerBlocks:[{name:"core/paragraph",attributes:{content:m("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.")}},{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg"}},{name:"core/paragraph",attributes:{content:m("Suspendisse commodo neque lacus, a dictum orci interdum et.")}}]},{name:"core/column",innerBlocks:[{name:"core/paragraph",attributes:{content:m("Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.")}},{name:"core/paragraph",attributes:{content:m("Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.")}}]}]},deprecated:BQt,edit:VQt,save:HQt,transforms:GQt},KQt=()=>it({name:gAe,metadata:d9,settings:MAe}),YQt=Object.freeze(Object.defineProperty({__proto__:null,init:KQt,metadata:d9,name:gAe,settings:MAe},Symbol.toStringTag,{value:"Module"})),ZQt={attributes:{tagName:{type:"string",default:"div"}},apiVersion:3,supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}}},save({attributes:{tagName:e}}){const t=Be.save(),{className:n}=t,r=(n?.split(" ")||[])?.filter(i=>i!=="wp-block-comments"),s={...t,className:r.join(" ")};return a.jsx(e,{...s,children:a.jsx(Ht.Content,{})})}},QQt=[ZQt];function JQt({attributes:{tagName:e},setAttributes:t}){const n={section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content.")};return a.jsx(et,{children:a.jsx(et,{group:"advanced",children:a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<section>",value:"section"},{label:"<aside>",value:"aside"}],value:e,onChange:o=>t({tagName:o}),help:n[e]})})})}const zAe=()=>{const e=vt(zAe);return a.jsxs("div",{className:"comment-respond",children:[a.jsx("h3",{className:"comment-reply-title",children:m("Leave a Reply")}),a.jsxs("form",{noValidate:!0,className:"comment-form",onSubmit:t=>t.preventDefault(),children:[a.jsxs("p",{children:[a.jsx("label",{htmlFor:`comment-${e}`,children:m("Comment")}),a.jsx("textarea",{id:`comment-${e}`,name:"comment",cols:"45",rows:"8",readOnly:!0})]}),a.jsx("p",{className:"form-submit wp-block-button",children:a.jsx("input",{name:"submit",type:"submit",className:oe("wp-block-button__link",z0("button")),label:m("Post Comment"),value:m("Post Comment"),"aria-disabled":"true"})})]})]})},OAe=({postId:e,postType:t})=>{const[n,o]=Ao("postType",t,"comment_status",e),r=t===void 0||e===void 0,{defaultCommentStatus:s}=G(c=>c(Q).getSettings().__experimentalDiscussionSettings),i=G(c=>t?!!c(Me).getPostType(t)?.supports.comments:!1);if(!r&&n!=="open")if(n==="closed"){const c=[a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:()=>o("open"),variant:"primary",children:We("Enable comments","action that affects the current post")},"enableComments")];return a.jsx(Er,{actions:c,children:m("Post Comments Form block: Comments are not enabled for this item.")})}else if(i){if(s!=="open")return a.jsx(Er,{children:m("Post Comments Form block: Comments are not enabled.")})}else return a.jsx(Er,{children:xe(m("Post Comments Form block: Comments are not enabled for this post type (%s)."),t)});return a.jsx(zAe,{})};function eJt({postType:e,postId:t}){let[n]=Ao("postType",e,"title",t);n=n||m("Post Title");const{avatarURL:o}=G(r=>r(Q).getSettings().__experimentalDiscussionSettings);return a.jsxs("div",{className:"wp-block-comments__legacy-placeholder",inert:"true",children:[a.jsx("h3",{children:xe(m("One response to %s"),n)}),a.jsxs("div",{className:"navigation",children:[a.jsx("div",{className:"alignleft",children:a.jsxs("a",{href:"#top",children:["« ",m("Older Comments")]})}),a.jsx("div",{className:"alignright",children:a.jsxs("a",{href:"#top",children:[m("Newer Comments")," »"]})})]}),a.jsx("ol",{className:"commentlist",children:a.jsx("li",{className:"comment even thread-even depth-1",children:a.jsxs("article",{className:"comment-body",children:[a.jsxs("footer",{className:"comment-meta",children:[a.jsxs("div",{className:"comment-author vcard",children:[a.jsx("img",{alt:m("Commenter Avatar"),src:o,className:"avatar avatar-32 photo",height:"32",width:"32",loading:"lazy"}),a.jsx("b",{className:"fn",children:a.jsx("a",{href:"#top",className:"url",children:m("A WordPress Commenter")})})," ",a.jsxs("span",{className:"says",children:[m("says"),":"]})]}),a.jsxs("div",{className:"comment-metadata",children:[a.jsx("a",{href:"#top",children:a.jsx("time",{dateTime:"2000-01-01T00:00:00+00:00",children:m("January 1, 2000 at 00:00 am")})})," ",a.jsx("span",{className:"edit-link",children:a.jsx("a",{className:"comment-edit-link",href:"#top",children:m("Edit")})})]})]}),a.jsx("div",{className:"comment-content",children:a.jsxs("p",{children:[m("Hi, this is a comment."),a.jsx("br",{}),m("To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard."),a.jsx("br",{}),cr(m("Commenter avatars come from <a>Gravatar</a>."),{a:a.jsx("a",{href:"https://gravatar.com/"})})]})}),a.jsx("div",{className:"reply",children:a.jsx("a",{className:"comment-reply-link",href:"#top","aria-label":m("Reply to A WordPress Commenter"),children:m("Reply")})})]})})}),a.jsxs("div",{className:"navigation",children:[a.jsx("div",{className:"alignleft",children:a.jsxs("a",{href:"#top",children:["« ",m("Older Comments")]})}),a.jsx("div",{className:"alignright",children:a.jsxs("a",{href:"#top",children:[m("Newer Comments")," »"]})})]}),a.jsx(OAe,{postId:t,postType:e})]})}function tJt({attributes:e,setAttributes:t,context:{postType:n,postId:o}}){const{textAlign:r}=e,s=[a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:()=>void t({legacy:!1}),variant:"primary",children:m("Switch to editable mode")},"convert")],i=Be({className:oe({[`has-text-align-${r}`]:r})});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:r,onChange:c=>{t({textAlign:c})}})}),a.jsxs("div",{...i,children:[a.jsx(Er,{actions:s,children:m("Comments block: You’re currently using the legacy version of the block. The following is just a placeholder - the final styling will likely look different. For a better representation and more customization options, switch the block to its editable mode.")}),a.jsx(eJt,{postId:o,postType:n})]})]})}const nJt=[["core/comments-title"],["core/comment-template",{},[["core/columns",{},[["core/column",{width:"40px"},[["core/avatar",{size:40,style:{border:{radius:"20px"}}}]]],["core/column",{},[["core/comment-author-name",{fontSize:"small"}],["core/group",{layout:{type:"flex"},style:{spacing:{margin:{top:"0px",bottom:"0px"}}}},[["core/comment-date",{fontSize:"small"}],["core/comment-edit-link",{fontSize:"small"}]]],["core/comment-content"],["core/comment-reply-link",{fontSize:"small"}]]]]]]],["core/comments-pagination"],["core/post-comments-form"]];function oJt(e){const{attributes:t,setAttributes:n}=e,{tagName:o,legacy:r}=t,s=Be(),i=Nt(s,{template:nJt});return r?a.jsx(tJt,{...e}):a.jsxs(a.Fragment,{children:[a.jsx(JQt,{attributes:t,setAttributes:n}),a.jsx(o,{...i})]})}function rJt({attributes:{tagName:e,legacy:t}}){const n=Be.save(),o=Nt.save(n);return t?null:a.jsx(e,{...o})}const p9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments",title:"Comments",category:"theme",description:"An advanced block that allows displaying post comments using different visual configurations.",textdomain:"default",attributes:{tagName:{type:"string",default:"div"},legacy:{type:"boolean",default:!1}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-comments-editor",usesContext:["postId","postType"]},{name:yAe}=p9,AAe={icon:vQe,example:{},edit:oJt,save:rJt,deprecated:QQt},sJt=()=>it({name:yAe,metadata:p9,settings:AAe}),iJt=Object.freeze(Object.defineProperty({__proto__:null,init:sJt,metadata:p9,name:yAe,settings:AAe},Symbol.toStringTag,{value:"Module"}));function aJt({attributes:e,context:{commentId:t},setAttributes:n,isSelected:o}){const{height:r,width:s}=e,[i]=Ao("root","comment","author_avatar_urls",t),[c]=Ao("root","comment","author_name",t),l=i?Object.values(i):null,u=i?Object.keys(i):null,d=u?u[0]:24,p=u?u[u.length-1]:96,f=Be(),b=Tm(e),h=Math.floor(p*2.5),{avatarURL:g}=G(_=>{const{getSettings:v}=_(Q),{__experimentalDiscussionSettings:M}=v();return M}),z=a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image size"),onChange:_=>n({width:_,height:_}),min:d,max:h,initialPosition:s,value:s})})}),A=a.jsx(Ca,{size:{width:s,height:r},showHandle:o,onResizeStop:(_,v,M,y)=>{n({height:parseInt(r+y.height,10),width:parseInt(s+y.width,10)})},lockAspectRatio:!0,enable:{top:!1,right:!jt(),bottom:!0,left:jt()},minWidth:d,maxWidth:h,children:a.jsx("img",{src:l?l[l.length-1]:g,alt:`${c} ${m("Avatar")}`,...f})});return a.jsxs(a.Fragment,{children:[z,a.jsx("div",{...b,children:A})]})}const f9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/comment-author-avatar",title:"Comment Author Avatar (deprecated)",category:"theme",ancestor:["core/comment-template"],description:"This block is deprecated. Please use the Avatar block instead.",textdomain:"default",attributes:{width:{type:"number",default:96},height:{type:"number",default:96}},usesContext:["commentId"],supports:{html:!1,inserter:!1,__experimentalBorder:{radius:!0,width:!0,color:!0,style:!0},color:{background:!0,text:!1,__experimentalDefaultControls:{background:!0}},spacing:{__experimentalSkipSerialization:!0,margin:!0,padding:!0},interactivity:{clientNavigation:!0}}},{name:vAe}=f9,xAe={icon:WP,edit:aJt},cJt=()=>it({name:vAe,metadata:f9,settings:xAe}),lJt=Object.freeze(Object.defineProperty({__proto__:null,init:cJt,metadata:f9,name:vAe,settings:xAe},Symbol.toStringTag,{value:"Module"}));function uJt({attributes:{isLink:e,linkTarget:t,textAlign:n},context:{commentId:o},setAttributes:r}){const s=Be({className:oe({[`has-text-align-${n}`]:n})});let i=G(d=>{const{getEntityRecord:p}=d(Me),f=p("root","comment",o),b=f?.author_name;if(f&&!b){var h;return(h=p("root","user",f.author)?.name)!==null&&h!==void 0?h:m("Anonymous")}return b??""},[o]);const c=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:n,onChange:d=>r({textAlign:d})})}),l=a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to authors URL"),onChange:()=>r({isLink:!e}),checked:e}),e&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:d=>r({linkTarget:d?"_blank":"_self"}),checked:t==="_blank"})]})});(!o||!i)&&(i=We("Comment Author","block title"));const u=e?a.jsx("a",{href:"#comment-author-pseudo-link",onClick:d=>d.preventDefault(),children:i}):i;return a.jsxs(a.Fragment,{children:[l,c,a.jsx("div",{...s,children:u})]})}const dJt={attributes:{isLink:{type:"boolean",default:!1},linkTarget:{type:"string",default:"_self"}},supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},pJt=[dJt],b9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-author-name",title:"Comment Author Name",category:"theme",ancestor:["core/comment-template"],description:"Displays the name of the author of the comment.",textdomain:"default",attributes:{isLink:{type:"boolean",default:!0},linkTarget:{type:"string",default:"_self"},textAlign:{type:"string"}},usesContext:["commentId"],supports:{html:!1,spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-comment-author-name"},{name:wAe}=b9,_Ae={icon:kZe,edit:uJt,deprecated:pJt,example:{}},fJt=()=>it({name:wAe,metadata:b9,settings:_Ae}),bJt=Object.freeze(Object.defineProperty({__proto__:null,init:fJt,metadata:b9,name:wAe,settings:_Ae},Symbol.toStringTag,{value:"Module"}));function hJt({setAttributes:e,attributes:{textAlign:t},context:{commentId:n}}){const o=Be({className:oe({[`has-text-align-${t}`]:t})}),[r]=Ao("root","comment","content",n),s=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:t,onChange:i=>e({textAlign:i})})});return!n||!r?a.jsxs(a.Fragment,{children:[s,a.jsx("div",{...o,children:a.jsx("p",{children:We("Comment Content","block title")})})]}):a.jsxs(a.Fragment,{children:[s,a.jsx("div",{...o,children:a.jsx(I1,{children:a.jsx(i0,{children:r.rendered},"html")})})]})}const h9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-content",title:"Comment Content",category:"theme",ancestor:["core/comment-template"],description:"Displays the contents of a comment.",textdomain:"default",usesContext:["commentId"],attributes:{textAlign:{type:"string"}},supports:{color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},spacing:{padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},html:!1},style:"wp-block-comment-content"},{name:kAe}=h9,SAe={icon:SZe,edit:hJt,example:{}},mJt=()=>it({name:kAe,metadata:h9,settings:SAe}),gJt=Object.freeze(Object.defineProperty({__proto__:null,init:mJt,metadata:h9,name:kAe,settings:SAe},Symbol.toStringTag,{value:"Module"}));function MJt({attributes:{format:e,isLink:t},context:{commentId:n},setAttributes:o}){const r=Be();let[s]=Ao("root","comment","date",n);const[i=Sa().formats.date]=Ao("root","site","date_format"),c=a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(Uze,{format:e,defaultFormat:i,onChange:u=>o({format:u})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to comment"),onChange:()=>o({isLink:!t}),checked:t})]})});(!n||!s)&&(s=We("Comment Date","block title"));let l=s instanceof Date?a.jsx("time",{dateTime:r0("c",s),children:e==="human-diff"?a_(s):r0(e||i,s)}):a.jsx("time",{children:s});return t&&(l=a.jsx("a",{href:"#comment-date-pseudo-link",onClick:u=>u.preventDefault(),children:l})),a.jsxs(a.Fragment,{children:[c,a.jsx("div",{...r,children:l})]})}const zJt={attributes:{format:{type:"string"},isLink:{type:"boolean",default:!1}},supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},OJt=[zJt],m9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-date",title:"Comment Date",category:"theme",ancestor:["core/comment-template"],description:"Displays the date on which the comment was posted.",textdomain:"default",attributes:{format:{type:"string"},isLink:{type:"boolean",default:!0}},usesContext:["commentId"],supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-comment-date"},{name:CAe}=m9,qAe={icon:$P,edit:MJt,deprecated:OJt,example:{}},yJt=()=>it({name:CAe,metadata:m9,settings:qAe}),AJt=Object.freeze(Object.defineProperty({__proto__:null,init:yJt,metadata:m9,name:CAe,settings:qAe},Symbol.toStringTag,{value:"Module"}));function vJt({attributes:{linkTarget:e,textAlign:t},setAttributes:n}){const o=Be({className:oe({[`has-text-align-${t}`]:t})}),r=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:t,onChange:i=>n({textAlign:i})})}),s=a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:i=>n({linkTarget:i?"_blank":"_self"}),checked:e==="_blank"})})});return a.jsxs(a.Fragment,{children:[r,s,a.jsx("div",{...o,children:a.jsx("a",{href:"#edit-comment-pseudo-link",onClick:i=>i.preventDefault(),children:m("Edit")})})]})}const g9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-edit-link",title:"Comment Edit Link",category:"theme",ancestor:["core/comment-template"],description:"Displays a link to edit the comment in the WordPress Dashboard. This link is only visible to users with the edit comment capability.",textdomain:"default",usesContext:["commentId"],attributes:{linkTarget:{type:"string",default:"_self"},textAlign:{type:"string"}},supports:{html:!1,color:{link:!0,gradients:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},style:"wp-block-comment-edit-link"},{name:RAe}=g9,TAe={icon:qZe,edit:vJt,example:{}},xJt=()=>it({name:RAe,metadata:g9,settings:TAe}),wJt=Object.freeze(Object.defineProperty({__proto__:null,init:xJt,metadata:g9,name:RAe,settings:TAe},Symbol.toStringTag,{value:"Module"}));function _Jt({setAttributes:e,attributes:{textAlign:t}}){const n=Be({className:oe({[`has-text-align-${t}`]:t})}),o=a.jsx(bt,{group:"block",children:a.jsx(nr,{value:t,onChange:r=>e({textAlign:r})})});return a.jsxs(a.Fragment,{children:[o,a.jsx("div",{...n,children:a.jsx("a",{href:"#comment-reply-pseudo-link",onClick:r=>r.preventDefault(),children:m("Reply")})})]})}const M9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-reply-link",title:"Comment Reply Link",category:"theme",ancestor:["core/comment-template"],description:"Displays a link to reply to a comment.",textdomain:"default",usesContext:["commentId"],attributes:{textAlign:{type:"string"}},supports:{color:{gradients:!0,link:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},html:!1},style:"wp-block-comment-reply-link"},{name:EAe}=M9,WAe={edit:_Jt,icon:CZe,example:{}},kJt=()=>it({name:EAe,metadata:M9,settings:WAe}),SJt=Object.freeze(Object.defineProperty({__proto__:null,init:kJt,metadata:M9,name:EAe,settings:WAe},Symbol.toStringTag,{value:"Module"})),Lne=100,CJt=({postId:e})=>{const t={status:"approve",order:"asc",context:"embed",parent:0,_embed:"children"},{pageComments:n,commentsPerPage:o,defaultCommentsPage:r}=G(c=>{const{getSettings:l}=c(Q),{__experimentalDiscussionSettings:u}=l();return u}),s=n?Math.min(o,Lne):Lne,i=qJt({defaultPage:r,postId:e,perPage:s,queryArgs:t});return x.useMemo(()=>i?{...t,post:e,per_page:s,page:i}:null,[e,s,i])},qJt=({defaultPage:e,postId:t,perPage:n,queryArgs:o})=>{const[r,s]=x.useState({}),i=`${t}_${n}`,c=r[i]||0;return x.useEffect(()=>{c||e!=="newest"||Tt({path:tn("/wp/v2/comments",{...o,post:t,per_page:n,_fields:"id"}),method:"HEAD",parse:!1}).then(l=>{const u=parseInt(l.headers.get("X-WP-TotalPages"));s({...r,[i]:u<=1?1:u})})},[e,t,n,s]),e==="newest"?c:1},RJt=e=>x.useMemo(()=>e?.map(({id:n,_embedded:o})=>{const[r]=o?.children||[[]];return{commentId:n,children:r.map(s=>({commentId:s.id}))}}),[e]),TJt=[["core/avatar"],["core/comment-author-name"],["core/comment-date"],["core/comment-content"],["core/comment-reply-link"],["core/comment-edit-link"]],EJt=({perPage:e,pageComments:t,threadComments:n,threadCommentsDepth:o})=>{const r=n?Math.min(o,3):1,s=c=>{if(c<r){const l=c+1;return[{commentId:-(c+3),children:s(l)}]}return[]},i=[{commentId:-1,children:s(1)}];return(!t||e>=2)&&r<3&&i.push({commentId:-2,children:[]}),(!t||e>=3)&&r<2&&i.push({commentId:-3,children:[]}),i};function WJt({comment:e,activeCommentId:t,setActiveCommentId:n,firstCommentId:o,blocks:r}){const{children:s,...i}=Nt({},{template:TJt});return a.jsxs("li",{...i,children:[e.commentId===(t||o)?s:null,a.jsx(BJt,{blocks:r,commentId:e.commentId,setActiveCommentId:n,isHidden:e.commentId===(t||o)}),e?.children?.length>0?a.jsx(NAe,{comments:e.children,activeCommentId:t,setActiveCommentId:n,blocks:r,firstCommentId:o}):null]})}const NJt=({blocks:e,commentId:t,setActiveCommentId:n,isHidden:o})=>{const r=V7({blocks:e}),s=()=>{n(t)},i={display:o?"none":void 0};return a.jsx("div",{...r,tabIndex:0,role:"button",style:i,onClick:s,onKeyPress:s})},BJt=x.memo(NJt),NAe=({comments:e,blockProps:t,activeCommentId:n,setActiveCommentId:o,blocks:r,firstCommentId:s})=>a.jsx("ol",{...t,children:e&&e.map(({commentId:i,...c},l)=>a.jsx(uO,{value:{commentId:i<0?null:i},children:a.jsx(WJt,{comment:{commentId:i,...c},activeCommentId:n,setActiveCommentId:o,blocks:r,firstCommentId:s})},c.commentId||l))});function LJt({clientId:e,context:{postId:t}}){const n=Be(),[o,r]=x.useState(),{commentOrder:s,threadCommentsDepth:i,threadComments:c,commentsPerPage:l,pageComments:u}=G(h=>{const{getSettings:g}=h(Q);return g().__experimentalDiscussionSettings}),d=CJt({postId:t}),{topLevelComments:p,blocks:f}=G(h=>{const{getEntityRecords:g}=h(Me),{getBlocks:z}=h(Q);return{topLevelComments:d?g("root","comment",d):null,blocks:z(e)}},[e,d]);let b=RJt(s==="desc"&&p?[...p].reverse():p);return p?(t||(b=EJt({perPage:l,pageComments:u,threadComments:c,threadCommentsDepth:i})),b.length?a.jsx(NAe,{comments:b,blockProps:n,blocks:f,activeCommentId:o,setActiveCommentId:r,firstCommentId:b[0]?.commentId}):a.jsx("p",{...n,children:m("No results found.")})):a.jsx("p",{...n,children:a.jsx(Xn,{})})}function PJt(){return a.jsx(Ht.Content,{})}const z9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comment-template",title:"Comment Template",category:"design",parent:["core/comments"],description:"Contains the block elements used to display a comment, like the title, date, author, avatar and more.",textdomain:"default",usesContext:["postId"],supports:{align:!0,html:!1,reusable:!1,spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-comment-template"},{name:BAe}=z9,LAe={icon:nu,edit:LJt,save:PJt},jJt=()=>it({name:BAe,metadata:z9,settings:LAe}),IJt=Object.freeze(Object.defineProperty({__proto__:null,init:jJt,metadata:z9,name:BAe,settings:LAe},Symbol.toStringTag,{value:"Module"})),DJt={none:"",arrow:"←",chevron:"«"};function FJt({attributes:{label:e},setAttributes:t,context:{"comments/paginationArrow":n}}){const o=DJt[n];return a.jsxs("a",{href:"#comments-pagination-previous-pseudo-link",onClick:r=>r.preventDefault(),...Be(),children:[o&&a.jsx("span",{className:`wp-block-comments-pagination-previous-arrow is-arrow-${n}`,children:o}),a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Older comments page link"),placeholder:m("Older Comments"),value:e,onChange:r=>t({label:r})})]})}const O9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination-previous",title:"Comments Previous Page",category:"theme",parent:["core/comments-pagination"],description:"Displays the previous comment's page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["postId","comments/paginationArrow"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:PAe}=O9,jAe={icon:Ede,edit:FJt,example:{attributes:{label:m("Older Comments")}}},$Jt=()=>it({name:PAe,metadata:O9,settings:jAe}),VJt=Object.freeze(Object.defineProperty({__proto__:null,init:$Jt,metadata:O9,name:PAe,settings:jAe},Symbol.toStringTag,{value:"Module"}));function HJt({value:e,onChange:t}){return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Arrow"),value:e,onChange:t,help:m("A decorative arrow appended to the next and previous comments link."),isBlock:!0,children:[a.jsx(Kn,{value:"none",label:We("None","Arrow option for Comments Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"arrow",label:We("Arrow","Arrow option for Comments Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"chevron",label:We("Chevron","Arrow option for Comments Pagination Next/Previous blocks")})]})}const UJt=[["core/comments-pagination-previous"],["core/comments-pagination-numbers"],["core/comments-pagination-next"]];function XJt({attributes:{paginationArrow:e},setAttributes:t,clientId:n}){const o=G(c=>{const{getBlocks:l}=c(Q);return l(n)?.find(d=>["core/comments-pagination-previous","core/comments-pagination-next"].includes(d.name))},[]),r=Be(),s=Nt(r,{template:UJt});return G(c=>{const{getSettings:l}=c(Q),{__experimentalDiscussionSettings:u}=l();return u?.pageComments},[])?a.jsxs(a.Fragment,{children:[o&&a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(HJt,{value:e,onChange:c=>{t({paginationArrow:c})}})})}),a.jsx("div",{...s})]}):a.jsx(Er,{children:m("Comments Pagination block: paging comments is disabled in the Discussion Settings")})}function GJt(){return a.jsx(Ht.Content,{})}const y9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination",title:"Comments Pagination",category:"theme",parent:["core/comments"],allowedBlocks:["core/comments-pagination-previous","core/comments-pagination-numbers","core/comments-pagination-next"],description:"Displays a paginated navigation to next/previous set of comments, when applicable.",textdomain:"default",attributes:{paginationArrow:{type:"string",default:"none"}},providesContext:{"comments/paginationArrow":"paginationArrow"},supports:{align:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-comments-pagination-editor",style:"wp-block-comments-pagination"},{name:IAe}=y9,DAe={icon:qde,edit:XJt,save:GJt},KJt=()=>it({name:IAe,metadata:y9,settings:DAe}),YJt=Object.freeze(Object.defineProperty({__proto__:null,init:KJt,metadata:y9,name:IAe,settings:DAe},Symbol.toStringTag,{value:"Module"})),ZJt={none:"",arrow:"→",chevron:"»"};function QJt({attributes:{label:e},setAttributes:t,context:{"comments/paginationArrow":n}}){const o=ZJt[n];return a.jsxs("a",{href:"#comments-pagination-next-pseudo-link",onClick:r=>r.preventDefault(),...Be(),children:[a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Newer comments page link"),placeholder:m("Newer Comments"),value:e,onChange:r=>t({label:r})}),o&&a.jsx("span",{className:`wp-block-comments-pagination-next-arrow is-arrow-${n}`,children:o})]})}const A9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination-next",title:"Comments Next Page",category:"theme",parent:["core/comments-pagination"],description:"Displays the next comment's page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["postId","comments/paginationArrow"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:FAe}=A9,$Ae={icon:Rde,edit:QJt,example:{attributes:{label:m("Newer Comments")}}},JJt=()=>it({name:FAe,metadata:A9,settings:$Ae}),een=Object.freeze(Object.defineProperty({__proto__:null,init:JJt,metadata:A9,name:FAe,settings:$Ae},Symbol.toStringTag,{value:"Module"})),Bp=({content:e,tag:t="a",extraClass:n=""})=>t==="a"?a.jsx(t,{className:`page-numbers ${n}`,href:"#comments-pagination-numbers-pseudo-link",onClick:o=>o.preventDefault(),children:e}):a.jsx(t,{className:`page-numbers ${n}`,children:e});function ten(){return a.jsxs("div",{...Be(),children:[a.jsx(Bp,{content:"1"}),a.jsx(Bp,{content:"2"}),a.jsx(Bp,{content:"3",tag:"span",extraClass:"current"}),a.jsx(Bp,{content:"4"}),a.jsx(Bp,{content:"5"}),a.jsx(Bp,{content:"...",tag:"span",extraClass:"dots"}),a.jsx(Bp,{content:"8"})]})}const v9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-pagination-numbers",title:"Comments Page Numbers",category:"theme",parent:["core/comments-pagination"],description:"Displays a list of page numbers for comments pagination.",textdomain:"default",usesContext:["postId"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:VAe}=v9,HAe={icon:Tde,edit:ten,example:{}},nen=()=>it({name:VAe,metadata:v9,settings:HAe}),oen=Object.freeze(Object.defineProperty({__proto__:null,init:nen,metadata:v9,name:VAe,settings:HAe},Symbol.toStringTag,{value:"Module"}));function ren({attributes:{textAlign:e,showPostTitle:t,showCommentsCount:n,level:o,levelOptions:r},setAttributes:s,context:{postType:i,postId:c}}){const l="h"+o,[u,d]=x.useState(),[p]=Ao("postType",i,"title",c),f=typeof c>"u",b=Be({className:oe({[`has-text-align-${e}`]:e})}),{threadCommentsDepth:h,threadComments:g,commentsPerPage:z,pageComments:A}=G(k=>{const{getSettings:S}=k(Q);return S().__experimentalDiscussionSettings});x.useEffect(()=>{if(f){const S=g?Math.min(h,3)-1:0,C=A?z:3,R=parseInt(S)+parseInt(C);d(Math.min(R,3));return}const k=c;Tt({path:tn("/wp/v2/comments",{post:c,_fields:"id"}),method:"HEAD",parse:!1}).then(S=>{k===c&&d(parseInt(S.headers.get("X-WP-Total")))}).catch(()=>{d(0)})},[c]);const _=a.jsxs(bt,{group:"block",children:[a.jsx(nr,{value:e,onChange:k=>s({textAlign:k})}),a.jsx(Cm,{value:o,options:r,onChange:k=>s({level:k})})]}),v=a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show post title"),checked:t,onChange:k=>s({showPostTitle:k})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show comments count"),checked:n,onChange:k=>s({showCommentsCount:k})})]})}),M=f?m("“Post Title”"):`"${p}"`;let y;return n&&u!==void 0?t?u===1?y=xe(m("One response to %s"),M):y=xe(Dn("%1$s response to %2$s","%1$s responses to %2$s",u),u,M):u===1?y=m("One response"):y=xe(Dn("%s response","%s responses",u),u):t?u===1?y=xe(m("Response to %s"),M):y=xe(m("Responses to %s"),M):u===1?y=m("Response"):y=m("Responses"),a.jsxs(a.Fragment,{children:[_,v,a.jsx(l,{...b,children:y})]})}const sen={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-title",title:"Comments Title",category:"theme",ancestor:["core/comments"],description:"Displays a title with the number of comments.",textdomain:"default",usesContext:["postId","postType"],attributes:{textAlign:{type:"string"},showPostTitle:{type:"boolean",default:!0},showCommentsCount:{type:"boolean",default:!0},level:{type:"number",default:2},levelOptions:{type:"array"}},supports:{anchor:!1,align:!0,html:!1,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0}},interactivity:{clientNavigation:!0}}},{attributes:ien,supports:aen}=sen,cen=[{attributes:{...ien,singleCommentLabel:{type:"string"},multipleCommentsLabel:{type:"string"}},supports:aen,migrate:e=>{const{singleCommentLabel:t,multipleCommentsLabel:n,...o}=e;return o},isEligible:({multipleCommentsLabel:e,singleCommentLabel:t})=>e||t,save:()=>null}],x9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/comments-title",title:"Comments Title",category:"theme",ancestor:["core/comments"],description:"Displays a title with the number of comments.",textdomain:"default",usesContext:["postId","postType"],attributes:{textAlign:{type:"string"},showPostTitle:{type:"boolean",default:!0},showCommentsCount:{type:"boolean",default:!0},level:{type:"number",default:2},levelOptions:{type:"array"}},supports:{anchor:!1,align:!0,html:!1,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0}},interactivity:{clientNavigation:!0}}},{name:UAe}=x9,XAe={icon:yz,edit:ren,deprecated:cen,example:{}},len=()=>it({name:UAe,metadata:x9,settings:XAe}),uen=Object.freeze(Object.defineProperty({__proto__:null,init:len,metadata:x9,name:UAe,settings:XAe},Symbol.toStringTag,{value:"Module"})),den={"top left":"is-position-top-left","top center":"is-position-top-center","top right":"is-position-top-right","center left":"is-position-center-left","center center":"is-position-center-center",center:"is-position-center-center","center right":"is-position-center-right","bottom left":"is-position-bottom-left","bottom center":"is-position-bottom-center","bottom right":"is-position-bottom-right"},Dr="image",h0="video",pen=50,fen={x:.5,y:.5},GAe=["image","video"];function Vs({x:e,y:t}=fen){return`${Math.round(e*100)}% ${Math.round(t*100)}%`}function lu(e){return e===50||e===void 0?null:"has-background-dim-"+10*Math.round(e/10)}function ben(e){if(!e||!e.url&&!e.src)return{url:void 0,id:void 0};Nr(e.url)&&(e.type=Zie(e.url));let t;if(e.media_type)e.media_type===Dr?t=Dr:t=h0;else if(e.type&&(e.type===Dr||e.type===h0))t=e.type;else return;return{url:e.url||e.src,id:e.id,alt:e?.alt,backgroundType:t,...t===h0?{hasParallax:void 0}:{}}}function Hi(e){return!e||e==="center center"||e==="center"}function Ra(e){return Hi(e)?"":den[e]}function jc(e){return e?{backgroundImage:`url(${e})`}:{}}function bb(e){return e===0||e===50||!e?null:"has-background-dim-"+10*Math.round(e/10)}function fk(e){return{...e,dimRatio:e.url?e.dimRatio:100}}function bp(e){return e.tagName||(e={...e,tagName:"div"}),{...e}}const hb={url:{type:"string"},id:{type:"number"},hasParallax:{type:"boolean",default:!1},dimRatio:{type:"number",default:50},overlayColor:{type:"string"},customOverlayColor:{type:"string"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"}},$O={url:{type:"string"},id:{type:"number"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},hasParallax:{type:"boolean",default:!1},isRepeated:{type:"boolean",default:!1},dimRatio:{type:"number",default:100},overlayColor:{type:"string"},customOverlayColor:{type:"string"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},isDark:{type:"boolean",default:!0},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},w9={...$O,useFeaturedImage:{type:"boolean",default:!1},tagName:{type:"string",default:"div"}},hen={...w9,isUserOverlayColor:{type:"boolean"},sizeSlug:{type:"string"},alt:{type:"string",default:""}},Bm={anchor:!0,align:!0,html:!1,spacing:{padding:!0,__experimentalDefaultControls:{padding:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",text:!1,background:!1}},_9={...Bm,spacing:{padding:!0,margin:["top","bottom"],blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",heading:!0,text:!0,background:!1,__experimentalSkipSerialization:["gradients"],enableContrastChecker:!1},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowJustification:!1}},men={..._9,shadow:!0,dimensions:{aspectRatio:!0},interactivity:{clientNavigation:!0}},gen={attributes:hen,supports:men,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_,sizeSlug:v}=e,M=Pt("background-color",f),y=R1(n),k=z&&A?`${z}${A}`:z,S=Dr===t,C=h0===t,R=!(u||p),T={minHeight:k||void 0},E={backgroundColor:M?void 0:s,background:r||void 0},B=c&&R?Vs(c):void 0,N=b?`url(${b})`:void 0,j=Vs(c),I=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Hi(o)},Ra(o)),P=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{[`size-${v}`]:v,"has-parallax":u,"is-repeated":p}),$=n||r;return a.jsxs(_,{...Be.save({className:I,style:T}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",M,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&$&&i!==0,"has-background-gradient":$,[y]:y}),style:E}),!l&&S&&b&&(R?a.jsx("img",{className:P,alt:h,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}):a.jsx("div",{role:h?"img":void 0,"aria-label":h||void 0,className:P,style:{backgroundPosition:j,backgroundImage:N}})),C&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}},Men={attributes:w9,supports:_9,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_}=e,v=Pt("background-color",f),M=R1(n),y=z&&A?`${z}${A}`:z,k=Dr===t,S=h0===t,C=!(u||p),R={minHeight:y||void 0},T={backgroundColor:v?void 0:s,background:r||void 0},E=c&&C?Vs(c):void 0,B=b?`url(${b})`:void 0,N=Vs(c),j=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Hi(o)},Ra(o)),I=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{"has-parallax":u,"is-repeated":p}),P=n||r;return a.jsxs(_,{...Be.save({className:j,style:R}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",v,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&P&&i!==0,"has-background-gradient":P,[M]:M}),style:T}),!l&&k&&b&&(C?a.jsx("img",{className:I,alt:h,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}):a.jsx("div",{role:"img",className:I,style:{backgroundPosition:N,backgroundImage:B}})),S&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}},zen={attributes:w9,supports:_9,isEligible(e){return(e.customOverlayColor!==void 0||e.overlayColor!==void 0)&&e.isUserOverlayColor===void 0},migrate(e){return{...e,isUserOverlayColor:!0}},save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_}=e,v=Pt("background-color",f),M=R1(n),y=z&&A?`${z}${A}`:z,k=Dr===t,S=h0===t,C=!(u||p),R={minHeight:y||void 0},T={backgroundColor:v?void 0:s,background:r||void 0},E=c&&C?Vs(c):void 0,B=b?`url(${b})`:void 0,N=Vs(c),j=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Hi(o)},Ra(o)),I=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{"has-parallax":u,"is-repeated":p}),P=n||r;return a.jsxs(_,{...Be.save({className:j,style:R}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",v,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&P&&i!==0,"has-background-gradient":P,[M]:M}),style:T}),!l&&k&&b&&(C?a.jsx("img",{className:I,alt:h,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}):a.jsx("div",{role:"img",className:I,style:{backgroundPosition:N,backgroundImage:B}})),S&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:E},"data-object-fit":"cover","data-object-position":E}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}},Oen={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A}=e,_=Pt("background-color",f),v=R1(n),M=z&&A?`${z}${A}`:z,y=Dr===t,k=h0===t,S=!(u||p),C={minHeight:M||void 0},R={backgroundColor:_?void 0:s,background:r||void 0},T=c&&S?Vs(c):void 0,E=b?`url(${b})`:void 0,B=Vs(c),N=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Hi(o)},Ra(o)),j=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{"has-parallax":u,"is-repeated":p}),I=n||r;return a.jsxs("div",{...Be.save({className:N,style:C}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",_,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&I&&i!==0,"has-background-gradient":I,[v]:v}),style:R}),!l&&y&&b&&(S?a.jsx("img",{className:j,alt:h,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}):a.jsx("div",{role:"img",className:j,style:{backgroundPosition:B,backgroundImage:E}})),k&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},yen={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A}=e,_=Pt("background-color",f),v=R1(n),M=z&&A?`${z}${A}`:z,y=Dr===t,k=h0===t,S=!(u||p),C={...y&&!S&&!l?jc(b):{},minHeight:M||void 0},R={backgroundColor:_?void 0:s,background:r||void 0},T=c&&S?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,E=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Hi(o)},Ra(o)),B=n||r;return a.jsxs("div",{...Be.save({className:E,style:C}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",_,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&B&&i!==0,"has-background-gradient":B,[v]:v}),style:R}),!l&&y&&S&&b&&a.jsx("img",{className:oe("wp-block-cover__image-background",g?`wp-image-${g}`:null),alt:h,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}),k&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:T},"data-object-fit":"cover","data-object-position":T}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},Aen={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isDark:u,isRepeated:d,overlayColor:p,url:f,alt:b,id:h,minHeight:g,minHeightUnit:z}=e,A=Pt("background-color",p),_=R1(n),v=z?`${g}${z}`:g,M=Dr===t,y=h0===t,k=!(l||d),S={...M&&!k?jc(f):{},minHeight:v||void 0},C={backgroundColor:A?void 0:s,background:r||void 0},R=c&&k?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,T=oe({"is-light":!u,"has-parallax":l,"is-repeated":d,"has-custom-content-position":!Hi(o)},Ra(o)),E=n||r;return a.jsxs("div",{...Be.save({className:T,style:S}),children:[a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",A,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":f&&E&&i!==0,"has-background-gradient":E,[_]:_}),style:C}),M&&k&&f&&a.jsx("img",{className:oe("wp-block-cover__image-background",h?`wp-image-${h}`:null),alt:b,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),y&&f&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},ven={attributes:$O,supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isDark:u,isRepeated:d,overlayColor:p,url:f,alt:b,id:h,minHeight:g,minHeightUnit:z}=e,A=Pt("background-color",p),_=R1(n),v=z?`${g}${z}`:g,M=Dr===t,y=h0===t,k=!(l||d),S={...M&&!k?jc(f):{},minHeight:v||void 0},C={backgroundColor:A?void 0:s,background:r||void 0},R=c&&k?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,T=oe({"is-light":!u,"has-parallax":l,"is-repeated":d,"has-custom-content-position":!Hi(o)},Ra(o));return a.jsxs("div",{...Be.save({className:T,style:S}),children:[a.jsx("span",{"aria-hidden":"true",className:oe(A,lu(i),"wp-block-cover__gradient-background",_,{"has-background-dim":i!==void 0,"has-background-gradient":n||r,[_]:!f&&_}),style:C}),M&&k&&f&&a.jsx("img",{className:oe("wp-block-cover__image-background",h?`wp-image-${h}`:null),alt:b,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),y&&f&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:f,style:{objectPosition:R},"data-object-fit":"cover","data-object-position":R}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})},migrate:bp},xen={attributes:{...hb,isRepeated:{type:"boolean",default:!1},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""}},supports:Bm,save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isRepeated:u,overlayColor:d,url:p,alt:f,id:b,minHeight:h,minHeightUnit:g}=e,z=Pt("background-color",d),A=R1(n),_=g?`${h}${g}`:h,v=Dr===t,M=h0===t,y=!(l||u),k={...v&&!y?jc(p):{},backgroundColor:z?void 0:s,background:r&&!p?r:void 0,minHeight:_||void 0},S=c&&y?`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`:void 0,C=oe(bb(i),z,{"has-background-dim":i!==0,"has-parallax":l,"is-repeated":u,"has-background-gradient":n||r,[A]:!p&&A,"has-custom-content-position":!Hi(o)},Ra(o));return a.jsxs("div",{...Be.save({className:C,style:k}),children:[p&&(n||r)&&i!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",A),style:r?{background:r}:void 0}),v&&y&&p&&a.jsx("img",{className:oe("wp-block-cover__image-background",b?`wp-image-${b}`:null),alt:f,src:p,style:{objectPosition:S},"data-object-fit":"cover","data-object-position":S}),M&&p&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:p,style:{objectPosition:S},"data-object-fit":"cover","data-object-position":S}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(fk,bp)},wen={attributes:{...hb,isRepeated:{type:"boolean",default:!1},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,hasParallax:l,isRepeated:u,overlayColor:d,url:p,minHeight:f,minHeightUnit:b}=e,h=Pt("background-color",d),g=R1(n),z=b?`${f}${b}`:f,A=Dr===t,_=h0===t,v=A?jc(p):{},M={};h||(v.backgroundColor=s),r&&!p&&(v.background=r),v.minHeight=z||void 0;let y;c&&(y=`${Math.round(c.x*100)}% ${Math.round(c.y*100)}%`,A&&!l&&(v.backgroundPosition=y),_&&(M.objectPosition=y));const k=oe(bb(i),h,{"has-background-dim":i!==0,"has-parallax":l,"is-repeated":u,"has-background-gradient":n||r,[g]:!p&&g,"has-custom-content-position":!Hi(o)},Ra(o));return a.jsxs("div",{...Be.save({className:k,style:v}),children:[p&&(n||r)&&i!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",g),style:r?{background:r}:void 0}),_&&p&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:p,style:M}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(fk,bp)},_en={attributes:{...hb,minHeight:{type:"number"},gradient:{type:"string"},customGradient:{type:"string"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,gradient:n,customGradient:o,customOverlayColor:r,dimRatio:s,focalPoint:i,hasParallax:c,overlayColor:l,url:u,minHeight:d}=e,p=Pt("background-color",l),f=R1(n),b=t===Dr?jc(u):{};p||(b.backgroundColor=r),i&&!c&&(b.backgroundPosition=`${Math.round(i.x*100)}% ${Math.round(i.y*100)}%`),o&&!u&&(b.background=o),b.minHeight=d||void 0;const h=oe(bb(s),p,{"has-background-dim":s!==0,"has-parallax":c,"has-background-gradient":o,[f]:!u&&f});return a.jsxs("div",{className:h,style:b,children:[u&&(n||o)&&s!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",f),style:o?{background:o}:void 0}),h0===t&&u&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(fk,bp)},ken={attributes:{...hb,minHeight:{type:"number"},gradient:{type:"string"},customGradient:{type:"string"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,gradient:n,customGradient:o,customOverlayColor:r,dimRatio:s,focalPoint:i,hasParallax:c,overlayColor:l,url:u,minHeight:d}=e,p=Pt("background-color",l),f=R1(n),b=t===Dr?jc(u):{};p||(b.backgroundColor=r),i&&!c&&(b.backgroundPosition=`${i.x*100}% ${i.y*100}%`),o&&!u&&(b.background=o),b.minHeight=d||void 0;const h=oe(bb(s),p,{"has-background-dim":s!==0,"has-parallax":c,"has-background-gradient":o,[f]:!u&&f});return a.jsxs("div",{className:h,style:b,children:[u&&(n||o)&&s!==0&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__gradient-background",f),style:o?{background:o}:void 0}),h0===t&&u&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),a.jsx("div",{className:"wp-block-cover__inner-container",children:a.jsx(Ht.Content,{})})]})},migrate:Co(fk,bp)},Sen={attributes:{...hb,title:{type:"string",source:"html",selector:"p"},contentAlign:{type:"string",default:"center"}},supports:{align:!0},save({attributes:e}){const{backgroundType:t,contentAlign:n,customOverlayColor:o,dimRatio:r,focalPoint:s,hasParallax:i,overlayColor:c,title:l,url:u}=e,d=Pt("background-color",c),p=t===Dr?jc(u):{};d||(p.backgroundColor=o),s&&!i&&(p.backgroundPosition=`${s.x*100}% ${s.y*100}%`);const f=oe(bb(r),d,{"has-background-dim":r!==0,"has-parallax":i,[`has-${n}-content`]:n!=="center"});return a.jsxs("div",{className:f,style:p,children:[h0===t&&u&&a.jsx("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),!Ie.isEmpty(l)&&a.jsx(Ie.Content,{tagName:"p",className:"wp-block-cover-text",value:l})]})},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100,tagName:e.tagName?e.tagName:"div"},{title:n,contentAlign:o,...r}=t;return[r,[Ee("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:m("Write title…")})]]}},Cen={attributes:{...hb,title:{type:"string",source:"html",selector:"p"},contentAlign:{type:"string",default:"center"},align:{type:"string"}},supports:{className:!1},save({attributes:e}){const{url:t,title:n,hasParallax:o,dimRatio:r,align:s,contentAlign:i,overlayColor:c,customOverlayColor:l}=e,u=Pt("background-color",c),d=jc(t);u||(d.backgroundColor=l);const p=oe("wp-block-cover-image",bb(r),u,{"has-background-dim":r!==0,"has-parallax":o,[`has-${i}-content`]:i!=="center"},s?`align${s}`:null);return a.jsx("div",{className:p,style:d,children:!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"p",className:"wp-block-cover-image-text",value:n})})},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100,tagName:e.tagName?e.tagName:"div"},{title:n,contentAlign:o,align:r,...s}=t;return[s,[Ee("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:m("Write title…")})]]}},qen={attributes:{...hb,title:{type:"string",source:"html",selector:"h2"},align:{type:"string"},contentAlign:{type:"string",default:"center"}},supports:{className:!1},save({attributes:e}){const{url:t,title:n,hasParallax:o,dimRatio:r,align:s}=e,i=jc(t),c=oe("wp-block-cover-image",bb(r),{"has-background-dim":r!==0,"has-parallax":o},s?`align${s}`:null);return a.jsx("section",{className:c,style:i,children:a.jsx(Ie.Content,{tagName:"h2",value:n})})},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100,tagName:e.tagName?e.tagName:"div"},{title:n,contentAlign:o,align:r,...s}=t;return[s,[Ee("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:m("Write title…")})]]}},Ren=[gen,Men,zen,Oen,yen,Aen,ven,xen,wen,_en,ken,Sen,Cen,qen],pN="full",{cleanEmptyObject:Ten,ResolutionTool:Een}=e0(jn);function Wen({onChange:e,onUnitChange:t,unit:n="px",value:o=""}){const s=`block-cover-height-input-${vt(Ro)}`,i=n==="px",[c]=Un("spacing.units"),l=U1({availableUnits:c||["px","em","rem","vw","vh"],defaultValues:{px:430,"%":20,em:20,rem:20,vw:20,vh:50}}),u=f=>{const b=f!==""?parseFloat(f):void 0;isNaN(b)&&b!==void 0||e(b)},d=x.useMemo(()=>{const[f]=yo(o);return[f,n].join("")},[n,o]),p=i?pen:0;return a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Minimum height"),id:s,isResetValueOnUnitChange:!0,min:p,onChange:u,onUnitChange:t,units:l,value:d})}function Nen({attributes:e,setAttributes:t,clientId:n,setOverlayColor:o,coverRef:r,currentSettings:s,updateDimRatio:i,featuredImage:c}){const{useFeaturedImage:l,id:u,dimRatio:d,focalPoint:p,hasParallax:f,isRepeated:b,minHeight:h,minHeightUnit:g,alt:z,tagName:A}=e,{isVideoBackground:_,isImageBackground:v,mediaElement:M,url:y,overlayColor:k}=s,S=e.sizeSlug||pN,{gradientValue:C,setGradient:R}=m_(),{getSettings:T}=G(Q),E=T()?.imageSizes,B=G(te=>u&&v?te(Me).getMedia(u,{context:"view"}):null,[u,v]),N=l?c:B;function j(te){const J=N?.media_details?.sizes?.[te]?.source_url;if(!J)return null;t({url:J,sizeSlug:te})}const I=E?.filter(({slug:te})=>N?.media_details?.sizes?.[te]?.source_url)?.map(({name:te,slug:J})=>({value:J,label:te})),P=()=>{t({hasParallax:!f,...f?{}:{focalPoint:void 0}})},$=()=>{t({isRepeated:!b})},F=_||v&&(!f||b),X=te=>{const[J,ue]=M.current?[M.current.style,"objectPosition"]:[r.current.style,"backgroundPosition"];J[ue]=Vs(te)},Z=ub(),V={header:m("The <header> element should represent introductory content, typically a group of introductory or navigational aids."),main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),article:m("The <article> element should represent a self-contained, syndicatable portion of the document."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content."),footer:m("The <footer> element should represent a footer for its nearest sectioning element (e.g.: <section>, <article>, <main> etc.).")},ee=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:!!y&&a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({hasParallax:!1,focalPoint:void 0,isRepeated:!1,alt:"",sizeSlug:void 0})},dropdownMenuProps:ee,children:[v&&a.jsxs(a.Fragment,{children:[a.jsx(tt,{label:m("Fixed background"),isShownByDefault:!0,hasValue:()=>f,onDeselect:()=>t({hasParallax:!1,focalPoint:void 0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Fixed background"),checked:f,onChange:P})}),a.jsx(tt,{label:m("Repeated background"),isShownByDefault:!0,hasValue:()=>b,onDeselect:()=>t({isRepeated:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Repeated background"),checked:b,onChange:$})})]}),F&&a.jsx(tt,{label:m("Focal point"),isShownByDefault:!0,hasValue:()=>!!p,onDeselect:()=>t({focalPoint:void 0}),children:a.jsx(l_,{__nextHasNoMarginBottom:!0,label:m("Focal point"),url:y,value:p,onDragStart:X,onDrag:X,onChange:te=>t({focalPoint:te})})}),!l&&y&&!_&&a.jsx(tt,{label:m("Alternative text"),isShownByDefault:!0,hasValue:()=>!!z,onDeselect:()=>t({alt:""}),children:a.jsx(Li,{__nextHasNoMarginBottom:!0,label:m("Alternative text"),value:z,onChange:te=>t({alt:te}),help:a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]})})}),!!I?.length&&a.jsx(Een,{value:S,onChange:j,options:I,defaultValue:pN})]})}),Z.hasColorsOrGradients&&a.jsxs(et,{group:"color",children:[a.jsx(J_,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:k.color,gradientValue:C,label:m("Overlay"),onColorChange:o,onGradientChange:R,isShownByDefault:!0,resetAllFilter:()=>({overlayColor:void 0,customOverlayColor:void 0,gradient:void 0,customGradient:void 0}),clearable:!0}],panelId:n,...Z}),a.jsx(tt,{hasValue:()=>d===void 0?!1:d!==(y?50:100),label:m("Overlay opacity"),onDeselect:()=>i(y?50:100),resetAllFilter:()=>({dimRatio:y?50:100}),isShownByDefault:!0,panelId:n,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Overlay opacity"),value:d,onChange:te=>i(te),min:0,max:100,step:10,required:!0,__next40pxDefaultSize:!0})})]}),a.jsx(et,{group:"dimensions",children:a.jsx(tt,{className:"single-column",hasValue:()=>!!h,label:m("Minimum height"),onDeselect:()=>t({minHeight:void 0,minHeightUnit:void 0}),resetAllFilter:()=>({minHeight:void 0,minHeightUnit:void 0}),isShownByDefault:!0,panelId:n,children:a.jsx(Wen,{value:e?.style?.dimensions?.aspectRatio?"":h,unit:g,onChange:te=>t({minHeight:te,style:Ten({...e?.style,dimensions:{...e?.style?.dimensions,aspectRatio:void 0}})}),onUnitChange:te=>t({minHeightUnit:te})})})}),a.jsx(et,{group:"advanced",children:a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"}],value:A,onChange:te=>t({tagName:te}),help:V[A]})})]})}const{cleanEmptyObject:Ben}=e0(jn);function Len({attributes:e,setAttributes:t,onSelectMedia:n,currentSettings:o,toggleUseFeaturedImage:r,onClearMedia:s}){const{contentPosition:i,id:c,useFeaturedImage:l,minHeight:u,minHeightUnit:d}=e,{hasInnerBlocks:p,url:f}=o,[b,h]=x.useState(u),[g,z]=x.useState(d),A=d==="vh"&&u===100&&!e?.style?.dimensions?.aspectRatio,_=()=>A?t(g==="vh"&&b===100?{minHeight:void 0,minHeightUnit:void 0}:{minHeight:b,minHeightUnit:g}):(h(u),z(d),t({minHeight:100,minHeightUnit:"vh",style:Ben({...e?.style,dimensions:{...e?.style?.dimensions,aspectRatio:void 0}})}));return a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(vvt,{label:m("Change content position"),value:i,onChange:v=>t({contentPosition:v}),isDisabled:!p}),a.jsx(yvt,{isActive:A,onToggle:_,isDisabled:!p})]}),a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:c,mediaURL:f,allowedTypes:GAe,accept:"image/*,video/*",onSelect:n,onToggleFeaturedImage:r,useFeaturedImage:l,name:m(f?"Replace":"Add media"),onReset:s})})]})}function Pne({disableMediaButtons:e=!1,children:t,onSelectMedia:n,onError:o,style:r,toggleUseFeaturedImage:s}){return a.jsx(iu,{icon:a.jsx(Zn,{icon:NP}),labels:{title:m("Cover")},onSelect:n,accept:"image/*,video/*",allowedTypes:GAe,disableMediaButtons:e,onToggleFeaturedImage:s,onError:o,style:r,children:t})}const Pen={top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},{ResizableBoxPopover:jen}=e0(jn);function jne({className:e,height:t,minHeight:n,onResize:o,onResizeStart:r,onResizeStop:s,showHandle:i,size:c,width:l,...u}){const[d,p]=x.useState(!1),f={className:oe(e,{"is-resizing":d}),enable:Pen,onResizeStart:(b,h,g)=>{r(g.clientHeight),o(g.clientHeight)},onResize:(b,h,g)=>{o(g.clientHeight),d||p(!0)},onResizeStop:(b,h,g)=>{s(g.clientHeight),p(!1)},showHandle:i,size:c,__experimentalShowTooltip:!0,__experimentalTooltipProps:{axis:"y",position:"bottom",isVisible:d}};return a.jsx(jen,{className:"block-library-cover__resizable-box-popover",resizableBoxProps:f,...u})}/*! Fast Average Color | © 2023 Denis Seleznev | MIT License | https://github.com/fast-average-color/fast-average-color */function Ien(e){var t=e.toString(16);return t.length===1?"0"+t:t}function Ine(e){return"#"+e.map(Ien).join("")}function Den(e){var t=(e[0]*299+e[1]*587+e[2]*114)/1e3;return t<128}function Fen(e){return e?$en(e)?e:[e]:[]}function $en(e){return Array.isArray(e[0])}function k9(e,t,n){for(var o=0;o<n.length;o++)if(Ven(e,t,n[o]))return!0;return!1}function Ven(e,t,n){switch(n.length){case 3:if(Hen(e,t,n))return!0;break;case 4:if(Uen(e,t,n))return!0;break;case 5:if(Xen(e,t,n))return!0;break;default:return!1}}function Hen(e,t,n){return e[t+3]!==255||e[t]===n[0]&&e[t+1]===n[1]&&e[t+2]===n[2]}function Uen(e,t,n){return e[t+3]&&n[3]?e[t]===n[0]&&e[t+1]===n[1]&&e[t+2]===n[2]&&e[t+3]===n[3]:e[t+3]===n[3]}function kv(e,t,n){return e>=t-n&&e<=t+n}function Xen(e,t,n){var o=n[0],r=n[1],s=n[2],i=n[3],c=n[4],l=e[t+3],u=kv(l,i,c);return i?!!(!l&&u||kv(e[t],o,c)&&kv(e[t+1],r,c)&&kv(e[t+2],s,c)&&u):u}var Gen=24;function Ken(e,t,n){for(var o={},r=n.dominantDivider||Gen,s=n.ignoredColor,i=n.step,c=[0,0,0,0,0],l=0;l<t;l+=i){var u=e[l],d=e[l+1],p=e[l+2],f=e[l+3];if(!(s&&k9(e,l,s))){var b=Math.round(u/r)+","+Math.round(d/r)+","+Math.round(p/r);o[b]?o[b]=[o[b][0]+u*f,o[b][1]+d*f,o[b][2]+p*f,o[b][3]+f,o[b][4]+1]:o[b]=[u*f,d*f,p*f,f,1],c[4]<o[b][4]&&(c=o[b])}}var h=c[0],g=c[1],z=c[2],A=c[3],_=c[4];return A?[Math.round(h/A),Math.round(g/A),Math.round(z/A),Math.round(A/_)]:n.defaultColor}function Yen(e,t,n){for(var o=0,r=0,s=0,i=0,c=0,l=n.ignoredColor,u=n.step,d=0;d<t;d+=u){var p=e[d+3],f=e[d]*p,b=e[d+1]*p,h=e[d+2]*p;l&&k9(e,d,l)||(o+=f,r+=b,s+=h,i+=p,c++)}return i?[Math.round(o/i),Math.round(r/i),Math.round(s/i),Math.round(i/c)]:n.defaultColor}function Zen(e,t,n){for(var o=0,r=0,s=0,i=0,c=0,l=n.ignoredColor,u=n.step,d=0;d<t;d+=u){var p=e[d],f=e[d+1],b=e[d+2],h=e[d+3];l&&k9(e,d,l)||(o+=p*p*h,r+=f*f*h,s+=b*b*h,i+=h,c++)}return i?[Math.round(Math.sqrt(o/i)),Math.round(Math.sqrt(r/i)),Math.round(Math.sqrt(s/i)),Math.round(i/c)]:n.defaultColor}function Dne(e){return bM(e,"defaultColor",[0,0,0,0])}function bM(e,t,n){return e[t]===void 0?n:e[t]}var Fne=10,fN=100;function Qen(e){return e.search(/\.svg(\?|$)/i)!==-1}function Jen(e){if(KAe(e)){var t=e.naturalWidth,n=e.naturalHeight;return!e.naturalWidth&&Qen(e.src)&&(t=n=fN),{width:t,height:n}}return ttn(e)?{width:e.videoWidth,height:e.videoHeight}:{width:e.width,height:e.height}}function $ne(e){return ntn(e)?"canvas":etn(e)?"offscreencanvas":otn(e)?"imagebitmap":e.src}function KAe(e){return typeof HTMLImageElement<"u"&&e instanceof HTMLImageElement}var YAe=typeof OffscreenCanvas<"u";function etn(e){return YAe&&e instanceof OffscreenCanvas}function ttn(e){return typeof HTMLVideoElement<"u"&&e instanceof HTMLVideoElement}function ntn(e){return typeof HTMLCanvasElement<"u"&&e instanceof HTMLCanvasElement}function otn(e){return typeof ImageBitmap<"u"&&e instanceof ImageBitmap}function rtn(e,t){var n=bM(t,"left",0),o=bM(t,"top",0),r=bM(t,"width",e.width),s=bM(t,"height",e.height),i=r,c=s;if(t.mode==="precision")return{srcLeft:n,srcTop:o,srcWidth:r,srcHeight:s,destWidth:i,destHeight:c};var l;return r>s?(l=r/s,i=fN,c=Math.round(i/l)):(l=s/r,c=fN,i=Math.round(c/l)),(i>r||c>s||i<Fne||c<Fne)&&(i=r,c=s),{srcLeft:n,srcTop:o,srcWidth:r,srcHeight:s,destWidth:i,destHeight:c}}var stn=typeof window>"u";function itn(){return stn?YAe?new OffscreenCanvas(1,1):null:document.createElement("canvas")}var atn="FastAverageColor: ";function Da(e){return Error(atn+e)}function Hg(e,t){t||console.error(e)}var ctn=function(){function e(){this.canvas=null,this.ctx=null}return e.prototype.getColorAsync=function(t,n){if(!t)return Promise.reject(Da("call .getColorAsync() without resource"));if(typeof t=="string"){if(typeof Image>"u")return Promise.reject(Da("resource as string is not supported in this environment"));var o=new Image;return o.crossOrigin=n&&n.crossOrigin||"",o.src=t,this.bindImageEvents(o,n)}else{if(KAe(t)&&!t.complete)return this.bindImageEvents(t,n);var r=this.getColor(t,n);return r.error?Promise.reject(r.error):Promise.resolve(r)}},e.prototype.getColor=function(t,n){n=n||{};var o=Dne(n);if(!t){var r=Da("call .getColor() without resource");return Hg(r,n.silent),this.prepareResult(o,r)}var s=Jen(t),i=rtn(s,n);if(!i.srcWidth||!i.srcHeight||!i.destWidth||!i.destHeight){var r=Da('incorrect sizes for resource "'.concat($ne(t),'"'));return Hg(r,n.silent),this.prepareResult(o,r)}if(!this.canvas&&(this.canvas=itn(),!this.canvas)){var r=Da("OffscreenCanvas is not supported in this browser");return Hg(r,n.silent),this.prepareResult(o,r)}if(!this.ctx){if(this.ctx=this.canvas.getContext("2d",{willReadFrequently:!0}),!this.ctx){var r=Da("Canvas Context 2D is not supported in this browser");return Hg(r,n.silent),this.prepareResult(o)}this.ctx.imageSmoothingEnabled=!1}this.canvas.width=i.destWidth,this.canvas.height=i.destHeight;try{this.ctx.clearRect(0,0,i.destWidth,i.destHeight),this.ctx.drawImage(t,i.srcLeft,i.srcTop,i.srcWidth,i.srcHeight,0,0,i.destWidth,i.destHeight);var c=this.ctx.getImageData(0,0,i.destWidth,i.destHeight).data;return this.prepareResult(this.getColorFromArray4(c,n))}catch(l){var r=Da("security error (CORS) for resource ".concat($ne(t),`. +Details: https://developer.mozilla.org/en/docs/Web/HTML/CORS_enabled_image`));return Hg(r,n.silent),!n.silent&&console.error(l),this.prepareResult(o,r)}},e.prototype.getColorFromArray4=function(t,n){n=n||{};var o=4,r=t.length,s=Dne(n);if(r<o)return s;var i=r-r%o,c=(n.step||1)*o,l;switch(n.algorithm||"sqrt"){case"simple":l=Yen;break;case"sqrt":l=Zen;break;case"dominant":l=Ken;break;default:throw Da("".concat(n.algorithm," is unknown algorithm"))}return l(t,i,{defaultColor:s,ignoredColor:Fen(n.ignoredColor),step:c,dominantDivider:n.dominantDivider})},e.prototype.prepareResult=function(t,n){var o=t.slice(0,3),r=[t[0],t[1],t[2],t[3]/255],s=Den(t);return{value:[t[0],t[1],t[2],t[3]],rgb:"rgb("+o.join(",")+")",rgba:"rgba("+r.join(",")+")",hex:Ine(o),hexa:Ine(t),isDark:s,isLight:!s,error:n}},e.prototype.destroy=function(){this.canvas&&(this.canvas.width=1,this.canvas.height=1,this.canvas=null),this.ctx=null},e.prototype.bindImageEvents=function(t,n){var o=this;return new Promise(function(r,s){var i=function(){u();var d=o.getColor(t,n);d.error?s(d.error):r(d)},c=function(){u(),s(Da('Error loading image "'.concat(t.src,'"')))},l=function(){u(),s(Da('Image "'.concat(t.src,'" loading aborted')))},u=function(){t.removeEventListener("load",i),t.removeEventListener("error",c),t.removeEventListener("abort",l)};t.addEventListener("load",i),t.addEventListener("error",c),t.addEventListener("abort",l)})},e}();Xs([Gs]);const IM="#FFF",ltn="#000";function utn(e,t){return{r:e.r*e.a+t.r*t.a*(1-e.a),g:e.g*e.a+t.g*t.a*(1-e.a),b:e.b*e.a+t.b*t.a*(1-e.a),a:e.a+t.a*(1-e.a)}}function A4(){return A4.fastAverageColor||(A4.fastAverageColor=new ctn),A4.fastAverageColor}const Ug=Hs(async e=>{if(!e)return IM;const{r:t,g:n,b:o,a:r}=an(IM).toRgb();try{const s=gr("media.crossOrigin",void 0,e);return(await A4().getColorAsync(e,{defaultColor:[t,n,o,r*255],silent:!0,crossOrigin:s})).hex}catch{return IM}});function Jb(e,t,n){if(t===n||e===100)return an(t).isDark();const o=an(t).alpha(e/100).toRgb(),r=an(n).toRgb(),s=utn(o,r);return an(s).isDark()}function dtn(e){return[["core/paragraph",{align:"center",placeholder:m("Write title…"),...e}]]}const ptn=(e,t)=>!e&&Nr(t);function ftn({attributes:e,clientId:t,isSelected:n,overlayColor:o,setAttributes:r,setOverlayColor:s,toggleSelection:i,context:{postId:c,postType:l}}){var u;const{contentPosition:d,id:p,url:f,backgroundType:b,useFeaturedImage:h,dimRatio:g,focalPoint:z,hasParallax:A,isDark:_,isRepeated:v,minHeight:M,minHeightUnit:y,alt:k,allowedBlocks:S,templateLock:C,tagName:R="div",isUserOverlayColor:T,sizeSlug:E}=e,[B]=Ao("postType",l,"featured_media",c),{getSettings:N}=G(Q),{__unstableMarkNextChangeAsNotPersistent:j}=Oe(Q),{media:I}=G(ot=>({media:B&&h?ot(Me).getMedia(B,{context:"view"}):void 0}),[B,h]),P=(u=I?.media_details?.sizes?.[E]?.source_url)!==null&&u!==void 0?u:I?.source_url;x.useEffect(()=>{(async()=>{if(!h)return;const ot=await Ug(P);let Ue=o.color;T||(Ue=ot,j(),s(Ue));const yt=Jb(g,Ue,ot);j(),r({isDark:yt,isUserOverlayColor:T||!1})})()},[P]);const $=h?P:f?.replaceAll("&","&"),F=h?Dr:b,{createErrorNotice:X}=Oe(mt),{gradientClass:Z,gradientValue:V}=m_(),ee=async ot=>{const Ue=ben(ot),yt=[ot?.type,ot?.media_type].includes(Dr),fn=await Ug(yt?ot?.url:void 0);let Ln=o.color;T||(Ln=fn,s(Ln),j());const Mo=f===void 0&&g===100?50:g,rr=Jb(Mo,Ln,fn);if(F===Dr&&Ue?.id){const{imageDefaultSize:Jo}=N();E&&(ot?.sizes?.[E]||ot?.media_details?.sizes?.[E])?(Ue.sizeSlug=E,Ue.url=ot?.sizes?.[E]?.url||ot?.media_details?.sizes?.[E]?.source_url):ot?.sizes?.[Jo]||ot?.media_details?.sizes?.[Jo]?(Ue.sizeSlug=Jo,Ue.url=ot?.sizes?.[Jo]?.url||ot?.media_details?.sizes?.[Jo]?.source_url):Ue.sizeSlug=pN}r({...Ue,focalPoint:void 0,useFeaturedImage:void 0,dimRatio:Mo,isDark:rr,isUserOverlayColor:T||!1})},te=()=>{let ot=o.color;T||(ot=ltn,s(void 0),j());const Ue=Jb(g,ot,IM);r({url:void 0,id:void 0,backgroundType:void 0,focalPoint:void 0,hasParallax:void 0,isRepeated:void 0,useFeaturedImage:void 0,isDark:Ue})},J=async ot=>{const Ue=await Ug($),yt=Jb(g,ot,Ue);s(ot),j(),r({isUserOverlayColor:!0,isDark:yt})},ue=async ot=>{const Ue=await Ug($),yt=Jb(ot,o.color,Ue);r({dimRatio:ot,isDark:yt})},ce=ot=>{X(ot,{type:"snackbar"})},me=ptn(p,$),de=Dr===F,Ae=h0===F,Ne=Jr()==="default",[je,{height:ie,width:we}]=js(),re=x.useMemo(()=>({height:y==="px"?M:"auto",width:"auto"}),[M,y]),pe=M&&y?`${M}${y}`:M,ke=!(A||v),Se={minHeight:pe||void 0},se=$?`url(${$})`:void 0,L=Vs(z),U={backgroundColor:o.color},ne={objectPosition:z&&ke?Vs(z):void 0},ve=!!($||o.color||V),qe=G(ot=>ot(Q).getBlock(t).innerBlocks.length>0,[t]),Pe=x.useRef(),rt=Be({ref:Pe}),[qt]=Un("typography.fontSizes"),wt=qt?.length>0,Bt=dtn({fontSize:wt?"large":void 0}),ae=Nt({className:"wp-block-cover__inner-container"},{template:qe?void 0:Bt,templateInsertUpdatesSelection:!0,allowedBlocks:S,templateLock:C,dropZoneElement:Pe.current}),H=x.useRef(),Y={isVideoBackground:Ae,isImageBackground:de,mediaElement:H,hasInnerBlocks:qe,url:$,isImgElement:ke,overlayColor:o},fe=async()=>{const ot=!h,Ue=ot?await Ug(P):IM,yt=T?o.color:Ue;T||(s(ot?yt:void 0),j());const fn=g===100?50:g,Ln=Jb(fn,yt,Ue);r({id:void 0,url:void 0,useFeaturedImage:ot,dimRatio:fn,backgroundType:h?Dr:void 0,isDark:Ln})},Re=a.jsx(Len,{attributes:e,setAttributes:r,onSelectMedia:ee,currentSettings:Y,toggleUseFeaturedImage:fe,onClearMedia:te}),be=a.jsx(Nen,{attributes:e,setAttributes:r,clientId:t,setOverlayColor:J,coverRef:Pe,currentSettings:Y,toggleUseFeaturedImage:fe,updateDimRatio:ue,onClearMedia:te,featuredImage:I}),ze={className:"block-library-cover__resize-container",clientId:t,height:ie,minHeight:pe,onResizeStart:()=>{r({minHeightUnit:"px"}),i(!1)},onResize:ot=>{r({minHeight:ot})},onResizeStop:ot=>{i(!0),r({minHeight:ot})},showHandle:!e.style?.dimensions?.aspectRatio,size:re,width:we};if(!h&&!qe&&!ve)return a.jsxs(a.Fragment,{children:[Re,be,Ne&&n&&a.jsx(jne,{...ze}),a.jsxs(R,{...rt,className:oe("is-placeholder",rt.className),style:{...rt.style,minHeight:pe||void 0},children:[je,a.jsx(Pne,{onSelectMedia:ee,onError:ce,toggleUseFeaturedImage:fe,children:a.jsx("div",{className:"wp-block-cover__placeholder-background-options",children:a.jsx(Hze,{disableCustomColors:!0,value:o.color,onChange:J,clearable:!1})})})]})]});const nt=oe({"is-dark-theme":_,"is-light":!_,"is-transient":me,"has-parallax":A,"is-repeated":v,"has-custom-content-position":!Hi(d)},Ra(d)),Mt=$||!h||h&&!$;return a.jsxs(a.Fragment,{children:[Re,be,a.jsxs(R,{...rt,className:oe(nt,rt.className),style:{...Se,...rt.style},"data-url":$,children:[je,!$&&h&&a.jsx(vo,{className:"wp-block-cover__image--placeholder-image",withIllustration:!0}),$&&de&&(ke?a.jsx("img",{ref:H,className:"wp-block-cover__image-background",alt:k,src:$,style:ne}):a.jsx("div",{ref:H,role:k?"img":void 0,"aria-label":k||void 0,className:oe(nt,"wp-block-cover__image-background"),style:{backgroundImage:se,backgroundPosition:L}})),$&&Ae&&a.jsx("video",{ref:H,className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:$,style:ne}),Mt&&a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",lu(g),{[o.class]:o.class,"has-background-dim":g!==void 0,"wp-block-cover__gradient-background":$&&V&&g!==0,"has-background-gradient":V,[Z]:Z}),style:{backgroundImage:V,...U}}),me&&a.jsx(Xn,{}),a.jsx(Pne,{disableMediaButtons:!0,onSelectMedia:ee,onError:ce,toggleUseFeaturedImage:fe}),a.jsx("div",{...ae})]}),Ne&&n&&a.jsx(jne,{...ze})]})}const btn=Co([AO({overlayColor:"background-color"})])(ftn);function htn({attributes:e}){const{backgroundType:t,gradient:n,contentPosition:o,customGradient:r,customOverlayColor:s,dimRatio:i,focalPoint:c,useFeaturedImage:l,hasParallax:u,isDark:d,isRepeated:p,overlayColor:f,url:b,alt:h,id:g,minHeight:z,minHeightUnit:A,tagName:_,sizeSlug:v}=e,M=Pt("background-color",f),y=R1(n),k=z&&A?`${z}${A}`:z,S=Dr===t,C=h0===t,R=!(u||p),T={minHeight:k||void 0},E={backgroundColor:M?void 0:s,background:r||void 0},B=c&&R?Vs(c):void 0,N=b?`url(${b})`:void 0,j=Vs(c),I=oe({"is-light":!d,"has-parallax":u,"is-repeated":p,"has-custom-content-position":!Hi(o)},Ra(o)),P=oe("wp-block-cover__image-background",g?`wp-image-${g}`:null,{[`size-${v}`]:v,"has-parallax":u,"is-repeated":p}),$=n||r;return a.jsxs(_,{...Be.save({className:I,style:T}),children:[!l&&S&&b&&(R?a.jsx("img",{className:P,alt:h,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}):a.jsx("div",{role:h?"img":void 0,"aria-label":h||void 0,className:P,style:{backgroundPosition:j,backgroundImage:N}})),C&&b&&a.jsx("video",{className:oe("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:b,style:{objectPosition:B},"data-object-fit":"cover","data-object-position":B}),a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-cover__background",M,lu(i),{"has-background-dim":i!==void 0,"wp-block-cover__gradient-background":b&&$&&i!==0,"has-background-gradient":$,[y]:y}),style:E}),a.jsx("div",{...Nt.save({className:"wp-block-cover__inner-container"})})]})}const{cleanEmptyObject:Sv}=e0(jn),mtn={from:[{type:"block",blocks:["core/image"],transform:({caption:e,url:t,alt:n,align:o,id:r,anchor:s,style:i})=>Ee("core/cover",{dimRatio:50,url:t,alt:n,align:o,id:r,anchor:s,style:{color:{duotone:i?.color?.duotone}}},[Ee("core/paragraph",{content:e,fontSize:"large",align:"center"})])},{type:"block",blocks:["core/video"],transform:({caption:e,src:t,align:n,id:o,anchor:r})=>Ee("core/cover",{dimRatio:50,url:t,align:n,id:o,backgroundType:h0,anchor:r},[Ee("core/paragraph",{content:e,fontSize:"large",align:"center"})])},{type:"block",blocks:["core/group"],transform:(e,t)=>{const{align:n,anchor:o,backgroundColor:r,gradient:s,style:i}=e;if(t?.length===1&&t[0]?.name==="core/cover")return Ee("core/cover",t[0].attributes,t[0].innerBlocks);const c=r||s||i?.color?.background||i?.color?.gradient?void 0:50,l={align:n,anchor:o,dimRatio:c,overlayColor:r,customOverlayColor:i?.color?.background,gradient:s,customGradient:i?.color?.gradient},u={...e,backgroundColor:void 0,gradient:void 0,style:Sv({...e?.style,color:i?.color?{...i?.color,background:void 0,gradient:void 0}:void 0})};return Ee("core/cover",l,[Ee("core/group",u,t)])}}],to:[{type:"block",blocks:["core/image"],isMatch:({backgroundType:e,url:t,overlayColor:n,customOverlayColor:o,gradient:r,customGradient:s})=>t?e===Dr:!n&&!o&&!r&&!s,transform:({title:e,url:t,alt:n,align:o,id:r,anchor:s,style:i})=>Ee("core/image",{caption:e,url:t,alt:n,align:o,id:r,anchor:s,style:{color:{duotone:i?.color?.duotone}}})},{type:"block",blocks:["core/video"],isMatch:({backgroundType:e,url:t,overlayColor:n,customOverlayColor:o,gradient:r,customGradient:s})=>t?e===h0:!n&&!o&&!r&&!s,transform:({title:e,url:t,align:n,id:o,anchor:r})=>Ee("core/video",{caption:e,src:t,id:o,align:n,anchor:r})},{type:"block",blocks:["core/group"],isMatch:({url:e,useFeaturedImage:t})=>!(e||t),transform:(e,t)=>{const n={backgroundColor:e?.overlayColor,gradient:e?.gradient,style:Sv({...e?.style,color:e?.customOverlayColor||e?.customGradient||e?.style?.color?{background:e?.customOverlayColor,gradient:e?.customGradient,...e?.style?.color}:void 0})};if(t?.length===1&&t[0]?.name==="core/group"){const o=Sv(t[0].attributes||{});return o?.backgroundColor||o?.gradient||o?.style?.color?.background||o?.style?.color?.gradient?Ee("core/group",o,t[0]?.innerBlocks):Ee("core/group",{...n,...o,style:Sv({...o?.style,color:n?.style?.color||o?.style?.color?{...n?.style?.color,...o?.style?.color}:void 0})},t[0]?.innerBlocks)}return Ee("core/group",{...e,...n},t)}}]},gtn=[{name:"cover",title:m("Cover"),description:m("Add an image or video with a text overlay."),attributes:{layout:{type:"constrained"}},isDefault:!0,icon:NP}],S9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/cover",title:"Cover",category:"media",description:"Add an image or video with a text overlay.",textdomain:"default",attributes:{url:{type:"string"},useFeaturedImage:{type:"boolean",default:!1},id:{type:"number"},alt:{type:"string",default:""},hasParallax:{type:"boolean",default:!1},isRepeated:{type:"boolean",default:!1},dimRatio:{type:"number",default:100},overlayColor:{type:"string"},customOverlayColor:{type:"string"},isUserOverlayColor:{type:"boolean"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},isDark:{type:"boolean",default:!0},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]},tagName:{type:"string",default:"div"},sizeSlug:{type:"string"}},usesContext:["postId","postType"],supports:{anchor:!0,align:!0,html:!1,shadow:!0,spacing:{padding:!0,margin:["top","bottom"],blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",heading:!0,text:!0,background:!1,__experimentalSkipSerialization:["gradients"],enableContrastChecker:!1},dimensions:{aspectRatio:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowJustification:!1},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-cover-editor",style:"wp-block-cover"},{name:ZAe}=S9,QAe={icon:NP,example:{attributes:{customOverlayColor:"#065174",dimRatio:40,url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg",style:{typography:{fontSize:48},color:{text:"white"}}},innerBlocks:[{name:"core/paragraph",attributes:{content:m("<strong>Snow Patrol</strong>"),align:"center"}}]},transforms:mtn,save:htn,edit:btn,deprecated:Ren,variations:gtn},Mtn=()=>it({name:ZAe,metadata:S9,settings:QAe}),ztn=Object.freeze(Object.defineProperty({__proto__:null,init:Mtn,metadata:S9,name:ZAe,settings:QAe},Symbol.toStringTag,{value:"Module"})),Otn=[["core/paragraph",{placeholder:m("Type / to add a hidden block")}]];function ytn({attributes:e,setAttributes:t}){const{showContent:n,summary:o,allowedBlocks:r}=e,s=Be(),i=Nt(s,{template:Otn,__experimentalCaptureToolbars:!0,allowedBlocks:r}),[c,l]=x.useState(n),u=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{t({showContent:!1})},dropdownMenuProps:u,children:a.jsx(tt,{isShownByDefault:!0,label:m("Open by default"),hasValue:()=>n,onDeselect:()=>{t({showContent:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open by default"),checked:n,onChange:()=>t({showContent:!n})})})})}),a.jsxs("details",{...i,open:c,children:[a.jsx("summary",{onClick:d=>{d.preventDefault(),l(!c)},children:a.jsx(Ie,{identifier:"summary","aria-label":m("Write summary"),placeholder:m("Write summary…"),allowedFormats:[],withoutInteractiveFormatting:!0,value:o,onChange:d=>t({summary:d})})}),i.children]})]})}function Atn({attributes:e}){const{showContent:t}=e,n=e.summary?e.summary:"Details",o=Be.save();return a.jsxs("details",{...o,open:t,children:[a.jsx("summary",{children:a.jsx(Ie.Content,{value:n})}),a.jsx(Ht.Content,{})]})}const vtn={from:[{type:"block",isMultiBlock:!0,blocks:["*"],isMatch({},e){return!(e.length===1&&e[0].name==="core/details")},__experimentalConvert(e){return Ee("core/details",{},e.map(t=>jo(t)))}}]},C9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/details",title:"Details",category:"text",description:"Hide and show additional content.",keywords:["accordion","summary","toggle","disclosure"],textdomain:"default",attributes:{showContent:{type:"boolean",default:!1},summary:{type:"rich-text",source:"rich-text",selector:"summary"},allowedBlocks:{type:"array"}},supports:{__experimentalOnEnter:!0,align:["wide","full"],anchor:!0,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},__experimentalBorder:{color:!0,width:!0,style:!0},html:!1,spacing:{margin:!0,padding:!0,blockGap:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowEditing:!1},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-details-editor",style:"wp-block-details"},{name:JAe}=C9,eve={icon:TZe,example:{attributes:{summary:"La Mancha",showContent:!0},innerBlocks:[{name:"core/paragraph",attributes:{content:m("In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.")}}]},__experimentalLabel(e,{context:t}){const{summary:n}=e,o=e?.metadata?.name,r=n?.trim().length>0;if(t==="list-view"&&(o||r))return o||n;if(t==="accessibility")return r?xe(m("Details. %s"),n):m("Details. Empty.")},save:Atn,edit:ytn,transforms:vtn},xtn=()=>it({name:JAe,metadata:C9,settings:eve}),wtn=Object.freeze(Object.defineProperty({__proto__:null,init:xtn,metadata:C9,name:JAe,settings:eve},Symbol.toStringTag,{value:"Module"}));function _tn(e){return m(e?"This embed will preserve its aspect ratio when the browser is resized.":"This embed may not preserve its aspect ratio when the browser is resized.")}const ktn=({blockSupportsResponsive:e,showEditButton:t,themeSupportsResponsive:n,allowResponsive:o,toggleResponsive:r,switchBackToURLInput:s})=>a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{children:t&&a.jsx(Vt,{className:"components-toolbar__control",label:m("Edit URL"),icon:Nd,onClick:s})})}),n&&e&&a.jsx(et,{children:a.jsx(Qt,{title:m("Media settings"),className:"blocks-responsive",children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Resize for smaller devices"),checked:o,help:_tn,onChange:r})})})]}),Vu=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zm-6-9.5L16 12l-2.5 2.8 1.1 1L18 12l-3.5-3.5-1 1zm-3 0l-1-1L6 12l3.5 3.8 1.1-1L8 12l2.5-2.5z"})}),PT=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zM13.2 7.7c-.4.4-.7 1.1-.7 1.9v3.7c-.4-.3-.8-.4-1.3-.4-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2.5 0 1-.2 1.4-.5.9-.6 1.4-1.6 1.4-2.6V9.6c0-.4.1-.6.2-.8.3-.3 1-.3 1.6-.3h.2V7h-.2c-.7 0-1.8 0-2.6.7z"})}),Vne=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.2 4.5H19c.3 0 .5.2.5.5v8.4l-3-2.9c-.3-.3-.8-.3-1 0L11.9 14 9 12c-.3-.2-.6-.2-.8 0l-3.6 2.6V9.8l4.6-5.3zm9.8 15H5c-.3 0-.5-.2-.5-.5v-2.4l4.1-3 3 1.9c.3.2.7.2.9-.1L16 12l3.5 3.4V19c0 .3-.2.5-.5.5z"})}),e2=a.jsx(ge,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zM10 15l5-3-5-3v6z"})}),Stn={foreground:"#1da1f2",src:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(ow,{children:a.jsx(he,{d:"M22.23 5.924c-.736.326-1.527.547-2.357.646.847-.508 1.498-1.312 1.804-2.27-.793.47-1.67.812-2.606.996C18.325 4.498 17.258 4 16.078 4c-2.266 0-4.103 1.837-4.103 4.103 0 .322.036.635.106.935-3.41-.17-6.433-1.804-8.457-4.287-.353.607-.556 1.312-.556 2.064 0 1.424.724 2.68 1.825 3.415-.673-.022-1.305-.207-1.86-.514v.052c0 1.988 1.415 3.647 3.293 4.023-.344.095-.707.145-1.08.145-.265 0-.522-.026-.773-.074.522 1.63 2.038 2.817 3.833 2.85-1.404 1.1-3.174 1.757-5.096 1.757-.332 0-.66-.02-.98-.057 1.816 1.164 3.973 1.843 6.29 1.843 7.547 0 11.675-6.252 11.675-11.675 0-.178-.004-.355-.012-.53.802-.578 1.497-1.3 2.047-2.124z"})})})},Ctn={foreground:"#ff0000",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"})})},qtn={foreground:"#3b5998",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M20 3H4c-.6 0-1 .4-1 1v16c0 .5.4 1 1 1h8.6v-7h-2.3v-2.7h2.3v-2c0-2.3 1.4-3.6 3.5-3.6 1 0 1.8.1 2.1.1v2.4h-1.4c-1.1 0-1.3.5-1.3 1.3v1.7h2.7l-.4 2.8h-2.3v7H20c.5 0 1-.4 1-1V4c0-.6-.4-1-1-1z"})})},Rtn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(ow,{children:a.jsx(he,{d:"M12 4.622c2.403 0 2.688.01 3.637.052.877.04 1.354.187 1.67.31.42.163.72.358 1.036.673.315.315.51.615.673 1.035.123.317.27.794.31 1.67.043.95.052 1.235.052 3.638s-.01 2.688-.052 3.637c-.04.877-.187 1.354-.31 1.67-.163.42-.358.72-.673 1.036-.315.315-.615.51-1.035.673-.317.123-.794.27-1.67.31-.95.043-1.234.052-3.638.052s-2.688-.01-3.637-.052c-.877-.04-1.354-.187-1.67-.31-.42-.163-.72-.358-1.036-.673-.315-.315-.51-.615-.673-1.035-.123-.317-.27-.794-.31-1.67-.043-.95-.052-1.235-.052-3.638s.01-2.688.052-3.637c.04-.877.187-1.354.31-1.67.163-.42.358-.72.673-1.036.315-.315.615-.51 1.035-.673.317-.123.794-.27 1.67-.31.95-.043 1.235-.052 3.638-.052M12 3c-2.444 0-2.75.01-3.71.054s-1.613.196-2.185.418c-.592.23-1.094.538-1.594 1.04-.5.5-.807 1-1.037 1.593-.223.572-.375 1.226-.42 2.184C3.01 9.25 3 9.555 3 12s.01 2.75.054 3.71.196 1.613.418 2.186c.23.592.538 1.094 1.038 1.594s1.002.808 1.594 1.038c.572.222 1.227.375 2.185.418.96.044 1.266.054 3.71.054s2.75-.01 3.71-.054 1.613-.196 2.186-.418c.592-.23 1.094-.538 1.594-1.038s.808-1.002 1.038-1.594c.222-.572.375-1.227.418-2.185.044-.96.054-1.266.054-3.71s-.01-2.75-.054-3.71-.196-1.613-.418-2.186c-.23-.592-.538-1.094-1.038-1.594s-1.002-.808-1.594-1.038c-.572-.222-1.227-.375-2.185-.418C14.75 3.01 14.445 3 12 3zm0 4.378c-2.552 0-4.622 2.07-4.622 4.622s2.07 4.622 4.622 4.622 4.622-2.07 4.622-4.622S14.552 7.378 12 7.378zM12 15c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3zm4.804-8.884c-.596 0-1.08.484-1.08 1.08s.484 1.08 1.08 1.08c.596 0 1.08-.484 1.08-1.08s-.483-1.08-1.08-1.08z"})})}),Ttn={foreground:"#0073AA",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(ow,{children:a.jsx(he,{d:"M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z"})})})},Etn={foreground:"#1db954",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2m4.586 14.424c-.18.295-.563.387-.857.207-2.35-1.434-5.305-1.76-8.786-.963-.335.077-.67-.133-.746-.47-.077-.334.132-.67.47-.745 3.808-.87 7.076-.496 9.712 1.115.293.18.386.563.206.857M17.81 13.7c-.226.367-.706.482-1.072.257-2.687-1.652-6.785-2.13-9.965-1.166-.413.127-.848-.106-.973-.517-.125-.413.108-.848.52-.973 3.632-1.102 8.147-.568 11.234 1.328.366.226.48.707.256 1.072m.105-2.835C14.692 8.95 9.375 8.775 6.297 9.71c-.493.15-1.016-.13-1.166-.624-.148-.495.13-1.017.625-1.167 3.532-1.073 9.404-.866 13.115 1.337.445.264.59.838.327 1.282-.264.443-.838.59-1.282.325"})})},Wtn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"m6.5 7c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5zm11 0c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5z"})}),Ntn={foreground:"#1ab7ea",src:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(ow,{children:a.jsx(he,{d:"M22.396 7.164c-.093 2.026-1.507 4.8-4.245 8.32C15.323 19.16 12.93 21 10.97 21c-1.214 0-2.24-1.12-3.08-3.36-.56-2.052-1.118-4.105-1.68-6.158-.622-2.24-1.29-3.36-2.004-3.36-.156 0-.7.328-1.634.98l-.978-1.26c1.027-.903 2.04-1.806 3.037-2.71C6 3.95 7.03 3.328 7.716 3.265c1.62-.156 2.616.95 2.99 3.32.404 2.558.685 4.148.84 4.77.468 2.12.982 3.18 1.543 3.18.435 0 1.09-.687 1.963-2.064.872-1.376 1.34-2.422 1.402-3.142.125-1.187-.343-1.782-1.4-1.782-.5 0-1.013.115-1.542.34 1.023-3.35 2.977-4.976 5.862-4.883 2.14.063 3.148 1.45 3.024 4.16z"})})})},Btn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M22 12.068a2.184 2.184 0 0 0-2.186-2.186c-.592 0-1.13.233-1.524.609-1.505-1.075-3.566-1.774-5.86-1.864l1.004-4.695 3.261.699A1.56 1.56 0 1 0 18.255 3c-.61-.001-1.147.357-1.398.877l-3.638-.77a.382.382 0 0 0-.287.053.348.348 0 0 0-.161.251l-1.112 5.233c-2.33.072-4.426.77-5.95 1.864a2.201 2.201 0 0 0-1.523-.61 2.184 2.184 0 0 0-.896 4.176c-.036.215-.053.43-.053.663 0 3.37 3.924 6.111 8.763 6.111s8.763-2.724 8.763-6.11c0-.216-.017-.449-.053-.664A2.207 2.207 0 0 0 22 12.068Zm-15.018 1.56a1.56 1.56 0 0 1 3.118 0c0 .86-.699 1.558-1.559 1.558-.86.018-1.559-.699-1.559-1.559Zm8.728 4.139c-1.076 1.075-3.119 1.147-3.71 1.147-.61 0-2.652-.09-3.71-1.147a.4.4 0 0 1 0-.573.4.4 0 0 1 .574 0c.68.68 2.114.914 3.136.914 1.022 0 2.473-.233 3.136-.914a.4.4 0 0 1 .574 0 .436.436 0 0 1 0 .573Zm-.287-2.563a1.56 1.56 0 0 1 0-3.118c.86 0 1.56.699 1.56 1.56 0 .841-.7 1.558-1.56 1.558Z"})}),Ltn={foreground:"#35465c",src:a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M19 3H5a2 2 0 00-2 2v14c0 1.1.9 2 2 2h14a2 2 0 002-2V5a2 2 0 00-2-2zm-5.69 14.66c-2.72 0-3.1-1.9-3.1-3.16v-3.56H8.49V8.99c1.7-.62 2.54-1.99 2.64-2.87 0-.06.06-.41.06-.58h1.9v3.1h2.17v2.3h-2.18v3.1c0 .47.13 1.3 1.2 1.26h1.1v2.36c-1.01.02-2.07 0-2.07 0z"})})},Ptn=a.jsxs(ge,{viewBox:"0 0 24 24",children:[a.jsx(he,{d:"M18.42 14.58c-.51-.66-1.05-1.23-1.05-2.5V7.87c0-1.8.15-3.45-1.2-4.68-1.05-1.02-2.79-1.35-4.14-1.35-2.6 0-5.52.96-6.12 4.14-.06.36.18.54.4.57l2.66.3c.24-.03.42-.27.48-.5.24-1.12 1.17-1.63 2.2-1.63.56 0 1.22.21 1.55.7.4.56.33 1.31.33 1.97v.36c-1.59.18-3.66.27-5.16.93a4.63 4.63 0 0 0-2.93 4.44c0 2.82 1.8 4.23 4.1 4.23 1.95 0 3.03-.45 4.53-1.98.51.72.66 1.08 1.59 1.83.18.09.45.09.63-.1v.04l2.1-1.8c.24-.21.2-.48.03-.75zm-5.4-1.2c-.45.75-1.14 1.23-1.92 1.23-1.05 0-1.65-.81-1.65-1.98 0-2.31 2.1-2.73 4.08-2.73v.6c0 1.05.03 1.92-.5 2.88z"}),a.jsx(he,{d:"M21.69 19.2a17.62 17.62 0 0 1-21.6-1.57c-.23-.2 0-.5.28-.33a23.88 23.88 0 0 0 20.93 1.3c.45-.19.84.3.39.6z"}),a.jsx(he,{d:"M22.8 17.96c-.36-.45-2.22-.2-3.1-.12-.23.03-.3-.18-.05-.36 1.5-1.05 3.96-.75 4.26-.39.3.36-.1 2.82-1.5 4.02-.21.18-.42.1-.3-.15.3-.8 1.02-2.58.69-3z"})]}),jtn=a.jsxs(ge,{viewBox:"0 0 24 24",children:[a.jsx(he,{d:"m.0206909 21 19.8160091-13.07806 3.5831 6.20826z",fill:"#4bc7ee"}),a.jsx(he,{d:"m23.7254 19.0205-10.1074-17.18468c-.6421-1.114428-1.7087-1.114428-2.3249 0l-11.2931 19.16418h22.5655c1.279 0 1.8019-.8905 1.1599-1.9795z",fill:"#d4cdcb"}),a.jsx(he,{d:"m.0206909 21 15.2439091-16.38571 4.3029 7.32271z",fill:"#c3d82e"}),a.jsx(he,{d:"m13.618 1.83582c-.6421-1.114428-1.7087-1.114428-2.3249 0l-11.2931 19.16418 15.2646-16.38573z",fill:"#e4ecb0"}),a.jsx(he,{d:"m.0206909 21 19.5468091-9.063 1.6621 2.8344z",fill:"#209dbd"}),a.jsx(he,{d:"m.0206909 21 17.9209091-11.82623 1.6259 2.76323z",fill:"#7cb3c9"})]}),Itn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{d:"M11.903 16.568c-1.82 0-3.124-1.281-3.124-2.967a2.987 2.987 0 0 1 2.989-2.989c1.663 0 2.944 1.304 2.944 3.034 0 1.663-1.281 2.922-2.81 2.922ZM17.997 3l-3.308.73v5.107c-.809-1.034-2.045-1.37-3.505-1.37-1.529 0-2.9.561-4.023 1.662-1.259 1.214-1.933 2.764-1.933 4.495 0 1.888.72 3.506 2.113 4.742 1.056.944 2.314 1.415 3.775 1.415 1.438 0 2.517-.382 3.573-1.415v1.415h3.308V3Z",fill:"#333436"})}),Dtn=a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"})}),Ftn=a.jsx(ge,{viewBox:"0 0 44 44",children:a.jsx(he,{d:"M32.59521,22.001l4.31885-4.84473-6.34131-1.38379.646-6.459-5.94336,2.61035L22,6.31934l-3.27344,5.60351L12.78418,9.3125l.645,6.458L7.08643,17.15234,11.40479,21.999,7.08594,26.84375l6.34131,1.38379-.64551,6.458,5.94287-2.60938L22,37.68066l3.27344-5.60351,5.94287,2.61035-.64551-6.458,6.34277-1.38183Zm.44385,2.75244L30.772,23.97827l-1.59558-2.07391,1.97888.735Zm-8.82147,6.1579L22.75,33.424V30.88977l1.52228-2.22168ZM18.56226,13.48816,19.819,15.09534l-2.49219-.88642L15.94037,12.337Zm6.87719.00116,2.62043-1.15027-1.38654,1.86981L24.183,15.0946Zm3.59357,2.6029-1.22546,1.7381.07525-2.73486,1.44507-1.94867ZM22,29.33008l-2.16406-3.15686L22,23.23688l2.16406,2.93634Zm-4.25458-9.582-.10528-3.836,3.60986,1.284v3.73242Zm5.00458-2.552,3.60986-1.284-.10528,3.836L22.75,20.92853Zm-7.78174-1.10559-.29352-2.94263,1.44245,1.94739.07519,2.73321Zm2.30982,5.08319,3.50817,1.18164-2.16247,2.9342-3.678-1.08447Zm2.4486,7.49285L21.25,30.88977v2.53485L19.78052,30.91Zm3.48707-6.31121,3.50817-1.18164,2.33228,3.03137-3.678,1.08447Zm10.87219-4.28113-2.714,3.04529L28.16418,19.928l1.92176-2.72565ZM24.06036,12.81769l-2.06012,2.6322-2.059-2.63318L22,9.292ZM9.91455,18.07227l4.00079-.87195,1.921,2.72735-3.20794,1.19019Zm2.93024,4.565,1.9801-.73462L13.228,23.97827l-2.26838.77429Zm-1.55591,3.58819L13.701,25.4021l2.64935.78058-2.14447.67853Zm3.64868,1.977L18.19,27.17334l.08313,3.46332L14.52979,32.2793Zm10.7876,2.43549.08447-3.464,3.25165,1.03052.407,4.07684Zm4.06824-3.77478-2.14545-.68,2.65063-.781,2.41266.825Z"})}),$tn={foreground:"#f43e37",src:a.jsxs(ge,{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M24,12A12,12,0,1,1,12,0,12,12,0,0,1,24,12Z"}),a.jsx(he,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.67,12a9.33,9.33,0,0,1,18.66,0H19a7,7,0,1,0-7,7v2.33A9.33,9.33,0,0,1,2.67,12ZM12,17.6A5.6,5.6,0,1,1,17.6,12h-2A3.56,3.56,0,1,0,12,15.56Z",fill:"#fff"})]})},Vtn=a.jsx(ge,{viewBox:"0 0 24 24",children:a.jsx(he,{fill:"#0a7aff",d:"M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"})}),Htn=()=>a.jsx("div",{className:"wp-block-embed is-loading",children:a.jsx(Xn,{})}),Utn=({icon:e,label:t,value:n,onSubmit:o,onChange:r,cannotEmbed:s,fallback:i,tryAgain:c})=>a.jsxs(vo,{icon:a.jsx(Zn,{icon:e,showColors:!0}),label:t,className:"wp-block-embed",instructions:m("Paste a link to the content you want to display on your site."),children:[a.jsxs("form",{onSubmit:o,children:[a.jsx(N1,{__next40pxDefaultSize:!0,type:"url",value:n||"",className:"wp-block-embed__placeholder-input",label:t,hideLabelFromVision:!0,placeholder:m("Enter URL to embed here…"),onChange:r}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:We("Embed","button label")})]}),a.jsx("div",{className:"wp-block-embed__learn-more",children:a.jsx(hr,{href:m("https://wordpress.org/documentation/article/embeds/"),children:m("Learn more about embeds")})}),s&&a.jsxs(dt,{spacing:3,className:"components-placeholder__error",children:[a.jsx("div",{className:"components-placeholder__instructions",children:m("Sorry, this content could not be embedded.")}),a.jsxs(Ot,{expanded:!1,spacing:3,justify:"flex-start",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:c,children:We("Try again","button label")})," ",a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:i,children:We("Convert to link","button label")})]})]})]}),Xtn={class:"className",frameborder:"frameBorder",marginheight:"marginHeight",marginwidth:"marginWidth"};function Gtn({html:e}){const t=x.useRef(),n=x.useMemo(()=>{const r=new window.DOMParser().parseFromString(e,"text/html").querySelector("iframe"),s={};return r&&Array.from(r.attributes).forEach(({name:i,value:c})=>{i!=="style"&&(s[Xtn[i]||i]=c)}),s},[e]);return x.useEffect(()=>{const{ownerDocument:o}=t.current,{defaultView:r}=o;function s({data:{secret:i,message:c,value:l}={}}){c!=="height"||i!==n["data-secret"]||(t.current.height=l)}return r.addEventListener("message",s),()=>{r.removeEventListener("message",s)}},[]),a.jsx("div",{className:"wp-block-embed__wrapper",children:a.jsx("iframe",{ref:xn([t,C0e()]),title:n.title,...n})})}function Ktn({preview:e,previewable:t,url:n,type:o,isSelected:r,className:s,icon:i,label:c}){const[l,u]=x.useState(!1);!r&&l&&u(!1);const d=()=>{u(!0)},{scripts:p}=e,f=o==="photo"?_Zt(e):e.html,b=NN(n),h=xe(m("Embedded content from %s"),b),g=oe(o,s,"wp-block-embed__wrapper"),z=o==="wp-embed"?a.jsx(Gtn,{html:f}):a.jsxs("div",{className:"wp-block-embed__wrapper",children:[a.jsx(b2e,{html:f,scripts:p,title:h,type:g,onFocus:d}),!l&&a.jsx("div",{className:"block-library-embed__interactive-overlay",onMouseUp:d})]});return a.jsx(a.Fragment,{children:t?z:a.jsxs(vo,{icon:a.jsx(Zn,{icon:i,showColors:!0}),label:c,children:[a.jsx("p",{className:"components-placeholder__error",children:a.jsx("a",{href:n,children:n})}),a.jsx("p",{className:"components-placeholder__error",children:xe(m("Embedded content from %s can't be previewed in the editor."),b)})]})})}const Ytn=e=>{const{attributes:{providerNameSlug:t,previewable:n,responsive:o,url:r},attributes:s,isSelected:i,onReplace:c,setAttributes:l,insertBlocksAfter:u,onFocus:d}=e,p={title:We("Embed","block title"),icon:Vu},{icon:f,title:b}=vZt(t)||p,[h,g]=x.useState(r),[z,A]=x.useState(!1),{invalidateResolution:_}=Oe(Me),{preview:v,fetching:M,themeSupportsResponsive:y,cannotEmbed:k,hasResolved:S}=G(F=>{const{getEmbedPreview:X,isPreviewEmbedFallback:Z,isRequestingEmbedPreview:V,getThemeSupports:ee,hasFinishedResolution:te}=F(Me);if(!r)return{fetching:!1,cannotEmbed:!1};const J=X(r),ue=Z(r),ce=J?.html===!1&&J?.type===void 0,me=J?.data?.status===404,de=!!J&&!ce&&!me;return{preview:de?J:void 0,fetching:V(r),themeSupportsResponsive:ee()["responsive-embeds"],cannotEmbed:!de||ue,hasResolved:te("getEmbedPreview",[r])}},[r]),C=()=>qZt(s,v,b,o),R=()=>{const{allowResponsive:F,className:X}=s,{html:Z}=v,V=!F;l({allowResponsive:V,className:Qye(Z,X,o&&V)})};x.useEffect(()=>{if(v?.html||!k||!S)return;const F=r.replace(/\/$/,"");g(F),A(!1),l({url:F})},[v?.html,r,k,S,l]),x.useEffect(()=>{if(!(!k||M||!h)&&NN(h)==="x.com"){const F=new URL(h);F.host="twitter.com",l({url:F.toString()})}},[h,k,M,l]),x.useEffect(()=>{if(v&&!z){const F=C();if(l(F),c){const X=pk(e,F);X&&c(X)}}},[v,z]);const T=Be();if(M)return a.jsx(vd,{...T,children:a.jsx(Htn,{})});const E=xe(m("%s URL"),b);if(!v||k||z)return a.jsx(vd,{...T,children:a.jsx(Utn,{icon:f,label:E,onFocus:d,onSubmit:F=>{F&&F.preventDefault();const X=O4(s.className);A(!1),l({url:h,className:X})},value:h,cannotEmbed:k,onChange:F=>g(F),fallback:()=>SZt(h,c),tryAgain:()=>{_("getEmbedPreview",[h])}})});const{caption:N,type:j,allowResponsive:I,className:P}=C(),$=oe(P,e.className);return a.jsxs(a.Fragment,{children:[a.jsx(ktn,{showEditButton:v&&!k,themeSupportsResponsive:y,blockSupportsResponsive:o,allowResponsive:I,toggleResponsive:R,switchBackToURLInput:()=>A(!0)}),a.jsxs("figure",{...T,className:oe(T.className,$,{[`is-type-${j}`]:j,[`is-provider-${t}`]:t,[`wp-block-embed-${t}`]:t}),children:[a.jsx(Ktn,{preview:v,previewable:n,className:$,url:h,type:j,caption:N,onCaptionChange:F=>l({caption:F}),isSelected:i,icon:f,label:E,insertBlocksAfter:u,attributes:s,setAttributes:l}),a.jsx(fb,{attributes:s,setAttributes:l,isSelected:i,insertBlocksAfter:u,label:m("Embed caption text"),showToolbarButton:i})]})]})};function Ztn({attributes:e}){const{url:t,caption:n,type:o,providerNameSlug:r}=e;if(!t)return null;const s=oe("wp-block-embed",{[`is-type-${o}`]:o,[`is-provider-${r}`]:r,[`wp-block-embed-${r}`]:r});return a.jsxs("figure",{...Be.save({className:s}),children:[a.jsx("div",{className:"wp-block-embed__wrapper",children:` ${t} -`}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:n})]})}const Qtn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{name:Jtn}=Qtn,enn={from:[{type:"raw",isMatch:e=>e.nodeName==="P"&&/^\s*(https?:\/\/\S+)\s*$/i.test(e.textContent)&&e.textContent?.match(/https/gi)?.length===1,transform:e=>Ee(Jtn,{url:e.textContent.trim()})}],to:[{type:"block",blocks:["core/paragraph"],isMatch:({url:e})=>!!e,transform:({url:e,caption:t})=>{let n=`<a href="${e}">${e}</a>`;return t?.trim()&&(n+=`<br />${t}`),Ee("core/paragraph",{content:n})}}]};function oo(e){return xe(m("%s Embed"),e)}const nve=[{name:"twitter",title:oo("Twitter"),icon:Stn,keywords:["tweet",m("social")],description:m("Embed a tweet."),patterns:[/^https?:\/\/(www\.)?twitter\.com\/.+/i],attributes:{providerNameSlug:"twitter",responsive:!0}},{name:"youtube",title:oo("YouTube"),icon:Ctn,keywords:[m("music"),m("video")],description:m("Embed a YouTube video."),patterns:[/^https?:\/\/((m|www)\.)?youtube\.com\/.+/i,/^https?:\/\/youtu\.be\/.+/i],attributes:{providerNameSlug:"youtube",responsive:!0}},{name:"facebook",title:oo("Facebook"),icon:qtn,keywords:[m("social")],description:m("Embed a Facebook post."),scope:["block"],patterns:[],attributes:{providerNameSlug:"facebook",previewable:!1,responsive:!0}},{name:"instagram",title:oo("Instagram"),icon:Rtn,keywords:[m("image"),m("social")],description:m("Embed an Instagram post."),scope:["block"],patterns:[],attributes:{providerNameSlug:"instagram",responsive:!0}},{name:"wordpress",title:oo("WordPress"),icon:Ttn,keywords:[m("post"),m("blog")],description:m("Embed a WordPress post."),attributes:{providerNameSlug:"wordpress"}},{name:"soundcloud",title:oo("SoundCloud"),icon:jT,keywords:[m("music"),m("audio")],description:m("Embed SoundCloud content."),patterns:[/^https?:\/\/(www\.)?soundcloud\.com\/.+/i],attributes:{providerNameSlug:"soundcloud",responsive:!0}},{name:"spotify",title:oo("Spotify"),icon:Etn,keywords:[m("music"),m("audio")],description:m("Embed Spotify content."),patterns:[/^https?:\/\/(open|play)\.spotify\.com\/.+/i],attributes:{providerNameSlug:"spotify",responsive:!0}},{name:"flickr",title:oo("Flickr"),icon:Wtn,keywords:[m("image")],description:m("Embed Flickr content."),patterns:[/^https?:\/\/(www\.)?flickr\.com\/.+/i,/^https?:\/\/flic\.kr\/.+/i],attributes:{providerNameSlug:"flickr",responsive:!0}},{name:"vimeo",title:oo("Vimeo"),icon:Ntn,keywords:[m("video")],description:m("Embed a Vimeo video."),patterns:[/^https?:\/\/(www\.)?vimeo\.com\/.+/i],attributes:{providerNameSlug:"vimeo",responsive:!0}},{name:"animoto",title:oo("Animoto"),icon:jtn,description:m("Embed an Animoto video."),patterns:[/^https?:\/\/(www\.)?(animoto|video214)\.com\/.+/i],attributes:{providerNameSlug:"animoto",responsive:!0}},{name:"cloudup",title:oo("Cloudup"),icon:Vu,description:m("Embed Cloudup content."),patterns:[/^https?:\/\/cloudup\.com\/.+/i],attributes:{providerNameSlug:"cloudup",responsive:!0}},{name:"collegehumor",title:oo("CollegeHumor"),icon:e2,description:m("Embed CollegeHumor content."),scope:["block"],patterns:[],attributes:{providerNameSlug:"collegehumor",responsive:!0}},{name:"crowdsignal",title:oo("Crowdsignal"),icon:Vu,keywords:["polldaddy",m("survey")],description:m("Embed Crowdsignal (formerly Polldaddy) content."),patterns:[/^https?:\/\/((.+\.)?polldaddy\.com|poll\.fm|.+\.crowdsignal\.net|.+\.survey\.fm)\/.+/i],attributes:{providerNameSlug:"crowdsignal",responsive:!0}},{name:"dailymotion",title:oo("Dailymotion"),icon:Itn,keywords:[m("video")],description:m("Embed a Dailymotion video."),patterns:[/^https?:\/\/(www\.)?dailymotion\.com\/.+/i],attributes:{providerNameSlug:"dailymotion",responsive:!0}},{name:"imgur",title:oo("Imgur"),icon:Vne,description:m("Embed Imgur content."),patterns:[/^https?:\/\/(.+\.)?imgur\.com\/.+/i],attributes:{providerNameSlug:"imgur",responsive:!0}},{name:"issuu",title:oo("Issuu"),icon:Vu,description:m("Embed Issuu content."),patterns:[/^https?:\/\/(www\.)?issuu\.com\/.+/i],attributes:{providerNameSlug:"issuu",responsive:!0}},{name:"kickstarter",title:oo("Kickstarter"),icon:Vu,description:m("Embed Kickstarter content."),patterns:[/^https?:\/\/(www\.)?kickstarter\.com\/.+/i,/^https?:\/\/kck\.st\/.+/i],attributes:{providerNameSlug:"kickstarter",responsive:!0}},{name:"mixcloud",title:oo("Mixcloud"),icon:jT,keywords:[m("music"),m("audio")],description:m("Embed Mixcloud content."),patterns:[/^https?:\/\/(www\.)?mixcloud\.com\/.+/i],attributes:{providerNameSlug:"mixcloud",responsive:!0}},{name:"pocket-casts",title:oo("Pocket Casts"),icon:$tn,keywords:[m("podcast"),m("audio")],description:m("Embed a podcast player from Pocket Casts."),patterns:[/^https:\/\/pca.st\/\w+/i],attributes:{providerNameSlug:"pocket-casts",responsive:!0}},{name:"reddit",title:oo("Reddit"),icon:Btn,description:m("Embed a Reddit thread."),patterns:[/^https?:\/\/(www\.)?reddit\.com\/.+/i],attributes:{providerNameSlug:"reddit",responsive:!0}},{name:"reverbnation",title:oo("ReverbNation"),icon:jT,description:m("Embed ReverbNation content."),patterns:[/^https?:\/\/(www\.)?reverbnation\.com\/.+/i],attributes:{providerNameSlug:"reverbnation",responsive:!0}},{name:"screencast",title:oo("Screencast"),icon:e2,description:m("Embed Screencast content."),patterns:[/^https?:\/\/(www\.)?screencast\.com\/.+/i],attributes:{providerNameSlug:"screencast",responsive:!0}},{name:"scribd",title:oo("Scribd"),icon:Vu,description:m("Embed Scribd content."),patterns:[/^https?:\/\/(www\.)?scribd\.com\/.+/i],attributes:{providerNameSlug:"scribd",responsive:!0}},{name:"smugmug",title:oo("SmugMug"),icon:Vne,description:m("Embed SmugMug content."),patterns:[/^https?:\/\/(.+\.)?smugmug\.com\/.*/i],attributes:{providerNameSlug:"smugmug",previewable:!1,responsive:!0}},{name:"speaker-deck",title:oo("Speaker Deck"),icon:Vu,description:m("Embed Speaker Deck content."),patterns:[/^https?:\/\/(www\.)?speakerdeck\.com\/.+/i],attributes:{providerNameSlug:"speaker-deck",responsive:!0}},{name:"tiktok",title:oo("TikTok"),icon:e2,keywords:[m("video")],description:m("Embed a TikTok video."),patterns:[/^https?:\/\/(www\.)?tiktok\.com\/.+/i],attributes:{providerNameSlug:"tiktok",responsive:!0}},{name:"ted",title:oo("TED"),icon:e2,description:m("Embed a TED video."),patterns:[/^https?:\/\/(www\.|embed\.)?ted\.com\/.+/i],attributes:{providerNameSlug:"ted",responsive:!0}},{name:"tumblr",title:oo("Tumblr"),icon:Ltn,keywords:[m("social")],description:m("Embed a Tumblr post."),patterns:[/^https?:\/\/(.+)\.tumblr\.com\/.+/i],attributes:{providerNameSlug:"tumblr",responsive:!0}},{name:"videopress",title:oo("VideoPress"),icon:e2,keywords:[m("video")],description:m("Embed a VideoPress video."),patterns:[/^https?:\/\/videopress\.com\/.+/i],attributes:{providerNameSlug:"videopress",responsive:!0}},{name:"wordpress-tv",title:oo("WordPress.tv"),icon:e2,description:m("Embed a WordPress.tv video."),patterns:[/^https?:\/\/wordpress\.tv\/.+/i],attributes:{providerNameSlug:"wordpress-tv",responsive:!0}},{name:"amazon-kindle",title:oo("Amazon Kindle"),icon:Ptn,keywords:[m("ebook")],description:m("Embed Amazon Kindle content."),patterns:[/^https?:\/\/([a-z0-9-]+\.)?(amazon|amzn)(\.[a-z]{2,4})+\/.+/i,/^https?:\/\/(www\.)?(a\.co|z\.cn)\/.+/i],attributes:{providerNameSlug:"amazon-kindle"}},{name:"pinterest",title:oo("Pinterest"),icon:Dtn,keywords:[m("social"),m("bookmark")],description:m("Embed Pinterest pins, boards, and profiles."),patterns:[/^https?:\/\/([a-z]{2}|www)\.pinterest\.com(\.(au|mx))?\/.*/i],attributes:{providerNameSlug:"pinterest"}},{name:"wolfram-cloud",title:oo("Wolfram"),icon:Ftn,description:m("Embed Wolfram notebook content."),patterns:[/^https?:\/\/(www\.)?wolframcloud\.com\/obj\/.+/i],attributes:{providerNameSlug:"wolfram-cloud",responsive:!0}},{name:"bluesky",title:oo("Bluesky"),icon:Vtn,description:m("Embed a Bluesky post."),patterns:[/^https?:\/\/bsky\.app\/profile\/.+\/post\/.+/i],attributes:{providerNameSlug:"bluesky"}}];nve.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.providerNameSlug===n.providerNameSlug)});const tnn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{attributes:ove}=tnn,nnn={attributes:ove,save({attributes:e}){const{url:t,caption:n,type:o,providerNameSlug:r}=e;if(!t)return null;const s=oe("wp-block-embed",{[`is-type-${o}`]:o,[`is-provider-${r}`]:r,[`wp-block-embed-${r}`]:r});return a.jsxs("figure",{...Be.save({className:s}),children:[a.jsx("div",{className:"wp-block-embed__wrapper",children:` +`}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:n})]})}const Qtn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{name:Jtn}=Qtn,enn={from:[{type:"raw",isMatch:e=>e.nodeName==="P"&&/^\s*(https?:\/\/\S+)\s*$/i.test(e.textContent)&&e.textContent?.match(/https/gi)?.length===1,transform:e=>Ee(Jtn,{url:e.textContent.trim()})}],to:[{type:"block",blocks:["core/paragraph"],isMatch:({url:e})=>!!e,transform:({url:e,caption:t})=>{let n=`<a href="${e}">${e}</a>`;return t?.trim()&&(n+=`<br />${t}`),Ee("core/paragraph",{content:n})}}]};function oo(e){return xe(m("%s Embed"),e)}const tve=[{name:"twitter",title:oo("Twitter"),icon:Stn,keywords:["tweet",m("social")],description:m("Embed a tweet."),patterns:[/^https?:\/\/(www\.)?twitter\.com\/.+/i],attributes:{providerNameSlug:"twitter",responsive:!0}},{name:"youtube",title:oo("YouTube"),icon:Ctn,keywords:[m("music"),m("video")],description:m("Embed a YouTube video."),patterns:[/^https?:\/\/((m|www)\.)?youtube\.com\/.+/i,/^https?:\/\/youtu\.be\/.+/i],attributes:{providerNameSlug:"youtube",responsive:!0}},{name:"facebook",title:oo("Facebook"),icon:qtn,keywords:[m("social")],description:m("Embed a Facebook post."),scope:["block"],patterns:[],attributes:{providerNameSlug:"facebook",previewable:!1,responsive:!0}},{name:"instagram",title:oo("Instagram"),icon:Rtn,keywords:[m("image"),m("social")],description:m("Embed an Instagram post."),scope:["block"],patterns:[],attributes:{providerNameSlug:"instagram",responsive:!0}},{name:"wordpress",title:oo("WordPress"),icon:Ttn,keywords:[m("post"),m("blog")],description:m("Embed a WordPress post."),attributes:{providerNameSlug:"wordpress"}},{name:"soundcloud",title:oo("SoundCloud"),icon:PT,keywords:[m("music"),m("audio")],description:m("Embed SoundCloud content."),patterns:[/^https?:\/\/(www\.)?soundcloud\.com\/.+/i],attributes:{providerNameSlug:"soundcloud",responsive:!0}},{name:"spotify",title:oo("Spotify"),icon:Etn,keywords:[m("music"),m("audio")],description:m("Embed Spotify content."),patterns:[/^https?:\/\/(open|play)\.spotify\.com\/.+/i],attributes:{providerNameSlug:"spotify",responsive:!0}},{name:"flickr",title:oo("Flickr"),icon:Wtn,keywords:[m("image")],description:m("Embed Flickr content."),patterns:[/^https?:\/\/(www\.)?flickr\.com\/.+/i,/^https?:\/\/flic\.kr\/.+/i],attributes:{providerNameSlug:"flickr",responsive:!0}},{name:"vimeo",title:oo("Vimeo"),icon:Ntn,keywords:[m("video")],description:m("Embed a Vimeo video."),patterns:[/^https?:\/\/(www\.)?vimeo\.com\/.+/i],attributes:{providerNameSlug:"vimeo",responsive:!0}},{name:"animoto",title:oo("Animoto"),icon:jtn,description:m("Embed an Animoto video."),patterns:[/^https?:\/\/(www\.)?(animoto|video214)\.com\/.+/i],attributes:{providerNameSlug:"animoto",responsive:!0}},{name:"cloudup",title:oo("Cloudup"),icon:Vu,description:m("Embed Cloudup content."),patterns:[/^https?:\/\/cloudup\.com\/.+/i],attributes:{providerNameSlug:"cloudup",responsive:!0}},{name:"collegehumor",title:oo("CollegeHumor"),icon:e2,description:m("Embed CollegeHumor content."),scope:["block"],patterns:[],attributes:{providerNameSlug:"collegehumor",responsive:!0}},{name:"crowdsignal",title:oo("Crowdsignal"),icon:Vu,keywords:["polldaddy",m("survey")],description:m("Embed Crowdsignal (formerly Polldaddy) content."),patterns:[/^https?:\/\/((.+\.)?polldaddy\.com|poll\.fm|.+\.crowdsignal\.net|.+\.survey\.fm)\/.+/i],attributes:{providerNameSlug:"crowdsignal",responsive:!0}},{name:"dailymotion",title:oo("Dailymotion"),icon:Itn,keywords:[m("video")],description:m("Embed a Dailymotion video."),patterns:[/^https?:\/\/(www\.)?dailymotion\.com\/.+/i],attributes:{providerNameSlug:"dailymotion",responsive:!0}},{name:"imgur",title:oo("Imgur"),icon:Vne,description:m("Embed Imgur content."),patterns:[/^https?:\/\/(.+\.)?imgur\.com\/.+/i],attributes:{providerNameSlug:"imgur",responsive:!0}},{name:"issuu",title:oo("Issuu"),icon:Vu,description:m("Embed Issuu content."),patterns:[/^https?:\/\/(www\.)?issuu\.com\/.+/i],attributes:{providerNameSlug:"issuu",responsive:!0}},{name:"kickstarter",title:oo("Kickstarter"),icon:Vu,description:m("Embed Kickstarter content."),patterns:[/^https?:\/\/(www\.)?kickstarter\.com\/.+/i,/^https?:\/\/kck\.st\/.+/i],attributes:{providerNameSlug:"kickstarter",responsive:!0}},{name:"mixcloud",title:oo("Mixcloud"),icon:PT,keywords:[m("music"),m("audio")],description:m("Embed Mixcloud content."),patterns:[/^https?:\/\/(www\.)?mixcloud\.com\/.+/i],attributes:{providerNameSlug:"mixcloud",responsive:!0}},{name:"pocket-casts",title:oo("Pocket Casts"),icon:$tn,keywords:[m("podcast"),m("audio")],description:m("Embed a podcast player from Pocket Casts."),patterns:[/^https:\/\/pca.st\/\w+/i],attributes:{providerNameSlug:"pocket-casts",responsive:!0}},{name:"reddit",title:oo("Reddit"),icon:Btn,description:m("Embed a Reddit thread."),patterns:[/^https?:\/\/(www\.)?reddit\.com\/.+/i],attributes:{providerNameSlug:"reddit",responsive:!0}},{name:"reverbnation",title:oo("ReverbNation"),icon:PT,description:m("Embed ReverbNation content."),patterns:[/^https?:\/\/(www\.)?reverbnation\.com\/.+/i],attributes:{providerNameSlug:"reverbnation",responsive:!0}},{name:"screencast",title:oo("Screencast"),icon:e2,description:m("Embed Screencast content."),patterns:[/^https?:\/\/(www\.)?screencast\.com\/.+/i],attributes:{providerNameSlug:"screencast",responsive:!0}},{name:"scribd",title:oo("Scribd"),icon:Vu,description:m("Embed Scribd content."),patterns:[/^https?:\/\/(www\.)?scribd\.com\/.+/i],attributes:{providerNameSlug:"scribd",responsive:!0}},{name:"smugmug",title:oo("SmugMug"),icon:Vne,description:m("Embed SmugMug content."),patterns:[/^https?:\/\/(.+\.)?smugmug\.com\/.*/i],attributes:{providerNameSlug:"smugmug",previewable:!1,responsive:!0}},{name:"speaker-deck",title:oo("Speaker Deck"),icon:Vu,description:m("Embed Speaker Deck content."),patterns:[/^https?:\/\/(www\.)?speakerdeck\.com\/.+/i],attributes:{providerNameSlug:"speaker-deck",responsive:!0}},{name:"tiktok",title:oo("TikTok"),icon:e2,keywords:[m("video")],description:m("Embed a TikTok video."),patterns:[/^https?:\/\/(www\.)?tiktok\.com\/.+/i],attributes:{providerNameSlug:"tiktok",responsive:!0}},{name:"ted",title:oo("TED"),icon:e2,description:m("Embed a TED video."),patterns:[/^https?:\/\/(www\.|embed\.)?ted\.com\/.+/i],attributes:{providerNameSlug:"ted",responsive:!0}},{name:"tumblr",title:oo("Tumblr"),icon:Ltn,keywords:[m("social")],description:m("Embed a Tumblr post."),patterns:[/^https?:\/\/(.+)\.tumblr\.com\/.+/i],attributes:{providerNameSlug:"tumblr",responsive:!0}},{name:"videopress",title:oo("VideoPress"),icon:e2,keywords:[m("video")],description:m("Embed a VideoPress video."),patterns:[/^https?:\/\/videopress\.com\/.+/i],attributes:{providerNameSlug:"videopress",responsive:!0}},{name:"wordpress-tv",title:oo("WordPress.tv"),icon:e2,description:m("Embed a WordPress.tv video."),patterns:[/^https?:\/\/wordpress\.tv\/.+/i],attributes:{providerNameSlug:"wordpress-tv",responsive:!0}},{name:"amazon-kindle",title:oo("Amazon Kindle"),icon:Ptn,keywords:[m("ebook")],description:m("Embed Amazon Kindle content."),patterns:[/^https?:\/\/([a-z0-9-]+\.)?(amazon|amzn)(\.[a-z]{2,4})+\/.+/i,/^https?:\/\/(www\.)?(a\.co|z\.cn)\/.+/i],attributes:{providerNameSlug:"amazon-kindle"}},{name:"pinterest",title:oo("Pinterest"),icon:Dtn,keywords:[m("social"),m("bookmark")],description:m("Embed Pinterest pins, boards, and profiles."),patterns:[/^https?:\/\/([a-z]{2}|www)\.pinterest\.com(\.(au|mx))?\/.*/i],attributes:{providerNameSlug:"pinterest"}},{name:"wolfram-cloud",title:oo("Wolfram"),icon:Ftn,description:m("Embed Wolfram notebook content."),patterns:[/^https?:\/\/(www\.)?wolframcloud\.com\/obj\/.+/i],attributes:{providerNameSlug:"wolfram-cloud",responsive:!0}},{name:"bluesky",title:oo("Bluesky"),icon:Vtn,description:m("Embed a Bluesky post."),patterns:[/^https?:\/\/bsky\.app\/profile\/.+\/post\/.+/i],attributes:{providerNameSlug:"bluesky"}}];tve.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.providerNameSlug===n.providerNameSlug)});const tnn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{attributes:nve}=tnn,nnn={attributes:nve,save({attributes:e}){const{url:t,caption:n,type:o,providerNameSlug:r}=e;if(!t)return null;const s=oe("wp-block-embed",{[`is-type-${o}`]:o,[`is-provider-${r}`]:r,[`wp-block-embed-${r}`]:r});return a.jsxs("figure",{...Be.save({className:s}),children:[a.jsx("div",{className:"wp-block-embed__wrapper",children:` ${t} -`}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n})]})}},onn={attributes:ove,save({attributes:{url:e,caption:t,type:n,providerNameSlug:o}}){if(!e)return null;const r=oe("wp-block-embed",{[`is-type-${n}`]:n,[`is-provider-${o}`]:o});return a.jsxs("figure",{className:r,children:[` +`}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n})]})}},onn={attributes:nve,save({attributes:{url:e,caption:t,type:n,providerNameSlug:o}}){if(!e)return null;const r=oe("wp-block-embed",{[`is-type-${n}`]:n,[`is-provider-${o}`]:o});return a.jsxs("figure",{className:r,children:[` ${e} -`,!Ie.isEmpty(t)&&a.jsx(Ie.Content,{tagName:"figcaption",value:t})]})}},rnn=[nnn,onn],R9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{name:rve}=R9,sve={icon:Vu,edit:Ytn,save:Ztn,transforms:enn,variations:nve,deprecated:rnn},snn=()=>it({name:rve,metadata:R9,settings:sve}),inn=Object.freeze(Object.defineProperty({__proto__:null,init:snn,metadata:R9,name:rve,settings:sve},Symbol.toStringTag,{value:"Module"})),ann={attributes:{id:{type:"number"},href:{type:"string"},fileId:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"id"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},save({attributes:e}){const{href:t,fileId:n,fileName:o,textLinkHref:r,textLinkTarget:s,showDownloadButton:i,downloadButtonText:c,displayPreview:l,previewHeight:u}=e,d=Ie.isEmpty(o)?m("PDF embed"):xe(m("Embed of %s."),o),p=!Ie.isEmpty(o),f=p?n:void 0;return t&&a.jsxs("div",{...Be.save(),children:[l&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${u}px`},"aria-label":d})}),p&&a.jsx("a",{id:f,href:r,target:s,rel:s?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:o})}),i&&a.jsx("a",{href:t,className:oe("wp-block-file__button",z0("button")),download:!0,"aria-describedby":f,children:a.jsx(Ie.Content,{value:c})})]})}},cnn={attributes:{id:{type:"number"},href:{type:"string"},fileId:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"id"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},save({attributes:e}){const{href:t,fileId:n,fileName:o,textLinkHref:r,textLinkTarget:s,showDownloadButton:i,downloadButtonText:c,displayPreview:l,previewHeight:u}=e,d=Ie.isEmpty(o)?m("PDF embed"):xe(m("Embed of %s."),o),p=!Ie.isEmpty(o),f=p?n:void 0;return t&&a.jsxs("div",{...Be.save(),children:[l&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${u}px`},"aria-label":d})}),p&&a.jsx("a",{id:f,href:r,target:s,rel:s?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:o})}),i&&a.jsx("a",{href:t,className:"wp-block-file__button",download:!0,"aria-describedby":f,children:a.jsx(Ie.Content,{value:c})})]})}},lnn={attributes:{id:{type:"number"},href:{type:"string"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},save({attributes:e}){const{href:t,fileName:n,textLinkHref:o,textLinkTarget:r,showDownloadButton:s,downloadButtonText:i,displayPreview:c,previewHeight:l}=e,u=Ie.isEmpty(n)?m("PDF embed"):xe(m("Embed of %s."),n);return t&&a.jsxs("div",{...Be.save(),children:[c&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${l}px`},"aria-label":u})}),!Ie.isEmpty(n)&&a.jsx("a",{href:o,target:r,rel:r?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:n})}),s&&a.jsx("a",{href:t,className:"wp-block-file__button",download:!0,children:a.jsx(Ie.Content,{value:i})})]})}},unn=[ann,cnn,lnn];function dnn({hrefs:e,openInNewWindow:t,showDownloadButton:n,changeLinkDestinationOption:o,changeOpenInNewWindow:r,changeShowDownloadButton:s,displayPreview:i,changeDisplayPreview:c,previewHeight:l,changePreviewHeight:u}){const{href:d,textLinkHref:p,attachmentPage:f}=e;let b=[{value:d,label:m("URL")}];return f&&(b=[{value:d,label:m("Media file")},{value:f,label:m("Attachment page")}]),a.jsx(a.Fragment,{children:a.jsxs(et,{children:[d.endsWith(".pdf")&&a.jsxs(Qt,{title:m("PDF settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show inline embed"),help:i?m("Note: Most phone and tablet browsers won't display embedded PDFs."):null,checked:!!i,onChange:c}),i&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Height in pixels"),min:hN,max:Math.max(ive,l),value:l,onChange:u})]}),a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link to"),value:p,options:b,onChange:o}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),checked:t,onChange:r}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show download button"),checked:n,onChange:s})]})]})})}const pnn=()=>!(window.navigator.userAgent.indexOf("Mobi")>-1||window.navigator.userAgent.indexOf("Android")>-1||window.navigator.userAgent.indexOf("Macintosh")>-1&&window.navigator.maxTouchPoints&&window.navigator.maxTouchPoints>2||(window.ActiveXObject||"ActiveXObject"in window)&&!(Hne("AcroPDF.PDF")||Hne("PDF.PdfCtrl"))),Hne=e=>{let t;try{t=new window.ActiveXObject(e)}catch{t=void 0}return t},hN=200,ive=2e3;function fnn({text:e,disabled:t}){const{createNotice:n}=Oe(mt),o=Ul(e,()=>{n("info",m("Copied URL to clipboard."),{isDismissible:!0,type:"snackbar"})});return a.jsx(Vt,{className:"components-clipboard-toolbar-button",ref:o,disabled:t,children:m("Copy URL")})}function bnn({attributes:e,isSelected:t,setAttributes:n,clientId:o}){const{id:r,fileName:s,href:i,textLinkHref:c,textLinkTarget:l,showDownloadButton:u,downloadButtonText:d,displayPreview:p,previewHeight:f}=e,[b,h]=x.useState(e.blob),{media:g}=G(j=>({media:r===void 0?void 0:j(Me).getMedia(r)}),[r]),{createErrorNotice:z}=Oe(mt),{toggleSelection:A,__unstableMarkNextChangeAsNotPersistent:_}=Oe(Q);pk({url:b,onChange:v,onError:M}),x.useEffect(()=>{Ie.isEmpty(d)&&(_(),n({downloadButtonText:We("Download","button label")}))},[]);function v(j){var I,P;if(!j||!j.url){n({href:void 0,fileName:void 0,textLinkHref:void 0,id:void 0,fileId:void 0,displayPreview:void 0,previewHeight:void 0}),h();return}if(Nr(j.url)){h(j.url);return}const $=j.url.endsWith(".pdf"),F={displayPreview:$?(I=e.displayPreview)!==null&&I!==void 0?I:!0:void 0,previewHeight:$?(P=e.previewHeight)!==null&&P!==void 0?P:600:void 0};n({href:j.url,fileName:j.title,textLinkHref:j.url,id:j.id,fileId:`wp-block-file--media-${o}`,blob:void 0,...F}),h()}function M(j){n({href:void 0}),z(j,{type:"snackbar"})}function y(j){n({textLinkHref:j})}function k(j){n({textLinkTarget:j?"_blank":!1})}function S(j){n({showDownloadButton:j})}function C(j){n({displayPreview:j})}function R(j,I,P,$){A(!0);const F=parseInt(f+$.height,10);n({previewHeight:F})}function T(j){const I=Math.max(parseInt(j,10),hN);n({previewHeight:I})}const E=g&&g.link,B=Be({className:oe(!!b&&Mle({type:"loading"}),{"is-transient":!!b})}),N=pnn()&&p;return!i&&!b?a.jsx("div",{...B,children:a.jsx(au,{icon:a.jsx(Zn,{icon:LP}),labels:{title:m("File"),instructions:m("Drag and drop a file, upload, or choose from your library.")},onSelect:v,onError:M,accept:"*"})}):a.jsxs(a.Fragment,{children:[a.jsx(dnn,{hrefs:{href:i||b,textLinkHref:c,attachmentPage:E},openInNewWindow:!!l,showDownloadButton:u,changeLinkDestinationOption:y,changeOpenInNewWindow:k,changeShowDownloadButton:S,displayPreview:p,changeDisplayPreview:C,previewHeight:f,changePreviewHeight:T}),a.jsxs(bt,{group:"other",children:[a.jsx(Pc,{mediaId:r,mediaURL:i,accept:"*",onSelect:v,onError:M,onReset:()=>v(void 0)}),a.jsx(fnn,{text:i,disabled:Nr(i)})]}),a.jsxs("div",{...B,children:[N&&a.jsxs(Ca,{size:{height:f,width:"100%"},minHeight:hN,maxHeight:ive,grid:[1,10],enable:{top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},onResizeStart:()=>A(!1),onResizeStop:R,showHandle:t,children:[a.jsx("object",{className:"wp-block-file__preview",data:i,type:"application/pdf","aria-label":m("Embed of the selected PDF file.")}),!t&&a.jsx("div",{className:"wp-block-file__preview-overlay"})]}),a.jsxs("div",{className:"wp-block-file__content-wrapper",children:[a.jsx(Ie,{identifier:"fileName",tagName:"a",value:s,placeholder:m("Write file name…"),withoutInteractiveFormatting:!0,onChange:j=>n({fileName:pN(j)}),href:c}),u&&a.jsx("div",{className:"wp-block-file__button-richtext-wrapper",children:a.jsx(Ie,{identifier:"downloadButtonText",tagName:"div","aria-label":m("Download button text"),className:oe("wp-block-file__button",z0("button")),value:d,withoutInteractiveFormatting:!0,placeholder:m("Add text…"),onChange:j=>n({downloadButtonText:pN(j)})})})]})]})]})}function hnn({attributes:e}){const{href:t,fileId:n,fileName:o,textLinkHref:r,textLinkTarget:s,showDownloadButton:i,downloadButtonText:c,displayPreview:l,previewHeight:u}=e,d=Ie.isEmpty(o)?"PDF embed":o.toString(),p=!Ie.isEmpty(o),f=p?n:void 0;return t&&a.jsxs("div",{...Be.save(),children:[l&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${u}px`},"aria-label":d})}),p&&a.jsx("a",{id:f,href:r,target:s,rel:s?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:o})}),i&&a.jsx("a",{href:t,className:oe("wp-block-file__button",z0("button")),download:!0,"aria-describedby":f,children:a.jsx(Ie.Content,{value:c})})]})}const mnn={from:[{type:"files",isMatch(e){return e.length>0},priority:15,transform:e=>{const t=[];return e.forEach(n=>{const o=ls(n);n.type.startsWith("video/")?t.push(Ee("core/video",{blob:ls(n)})):n.type.startsWith("image/")?t.push(Ee("core/image",{blob:ls(n)})):n.type.startsWith("audio/")?t.push(Ee("core/audio",{blob:ls(n)})):t.push(Ee("core/file",{blob:o,fileName:n.name}))}),t}},{type:"block",blocks:["core/audio"],transform:e=>Ee("core/file",{href:e.src,fileName:e.caption,textLinkHref:e.src,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/video"],transform:e=>Ee("core/file",{href:e.src,fileName:e.caption,textLinkHref:e.src,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/image"],transform:e=>Ee("core/file",{href:e.url,fileName:e.caption||If(e.url),textLinkHref:e.url,id:e.id,anchor:e.anchor})}],to:[{type:"block",blocks:["core/audio"],isMatch:({id:e})=>{if(!e)return!1;const{getMedia:t}=uo(Me),n=t(e);return!!n&&n.mime_type.includes("audio")},transform:e=>Ee("core/audio",{src:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/video"],isMatch:({id:e})=>{if(!e)return!1;const{getMedia:t}=uo(Me),n=t(e);return!!n&&n.mime_type.includes("video")},transform:e=>Ee("core/video",{src:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/image"],isMatch:({id:e})=>{if(!e)return!1;const{getMedia:t}=uo(Me),n=t(e);return!!n&&n.mime_type.includes("image")},transform:e=>Ee("core/image",{url:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})}]},T9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/file",title:"File",category:"media",description:"Add a link to a downloadable file.",keywords:["document","pdf","download"],textdomain:"default",attributes:{id:{type:"number"},blob:{type:"string",role:"local"},href:{type:"string",role:"content"},fileId:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"id"},fileName:{type:"rich-text",source:"rich-text",selector:"a:not([download])",role:"content"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href",role:"content"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"rich-text",source:"rich-text",selector:"a[download]",role:"content"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},interactivity:!0},editorStyle:"wp-block-file-editor",style:"wp-block-file"},{name:ave}=T9,cve={icon:LP,example:{attributes:{href:"https://upload.wikimedia.org/wikipedia/commons/d/dd/Armstrong_Small_Step.ogg",fileName:We("Armstrong_Small_Step","Name of the file")}},transforms:mnn,deprecated:unn,edit:bnn,save:hnn},gnn=()=>it({name:ave,metadata:T9,settings:cve}),Mnn=Object.freeze(Object.defineProperty({__proto__:null,init:gnn,metadata:T9,name:ave,settings:cve},Symbol.toStringTag,{value:"Module"})),lve=["core/form-submission-notification",{type:"success"},[["core/paragraph",{content:'<mark style="background-color:rgba(0, 0, 0, 0);color:#345C00" class="has-inline-color">'+m("Your form has been submitted successfully")+"</mark>"}]]],uve=["core/form-submission-notification",{type:"error"},[["core/paragraph",{content:'<mark style="background-color:rgba(0, 0, 0, 0);color:#CF2E2E" class="has-inline-color">'+m("There was an error submitting your form.")+"</mark>"}]]],znn=[lve,uve,["core/form-input",{type:"text",label:m("Name"),required:!0}],["core/form-input",{type:"email",label:m("Email"),required:!0}],["core/form-input",{type:"textarea",label:m("Comment"),required:!0}],["core/form-submit-button",{}]],Onn=({attributes:e,setAttributes:t,clientId:n})=>{const{action:o,method:r,email:s,submissionMethod:i}=e,c=Be(),{hasInnerBlocks:l}=G(d=>{const{getBlock:p}=d(Q),f=p(n);return{hasInnerBlocks:!!(f&&f.innerBlocks.length)}},[n]),u=Nt(c,{template:znn,renderAppender:l?void 0:Ht.ButtonBlockAppender});return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Submissions method"),options:[{label:m("Send email"),value:"email"},{label:m("- Custom -"),value:"custom"}],value:i,onChange:d=>t({submissionMethod:d}),help:m(i==="custom"?'Select the method to use for form submissions. Additional options for the "custom" mode can be found in the "Advanced" section.':"Select the method to use for form submissions.")}),i==="email"&&a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,autoComplete:"off",label:m("Email for form submissions"),value:s,required:!0,onChange:d=>{t({email:d}),t({action:`mailto:${d}`}),t({method:"post"})},help:m("The email address where form submissions will be sent. Separate multiple email addresses with a comma.")})]})}),i!=="email"&&a.jsxs(et,{group:"advanced",children:[a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Method"),options:[{label:"Get",value:"get"},{label:"Post",value:"post"}],value:r,onChange:d=>t({method:d}),help:m("Select the method to use for form submissions.")}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,autoComplete:"off",label:m("Form action"),value:o,onChange:d=>{t({action:d})},help:m("The URL where the form should be submitted.")})]}),a.jsx("form",{...u,className:"wp-block-form",encType:i==="email"?"text/plain":null})]})};function ynn({attributes:e}){const t=Be.save(),{submissionMethod:n}=e;return a.jsx("form",{...t,className:"wp-block-form",encType:n==="email"?"text/plain":null,children:a.jsx(Ht.Content,{})})}const Ann=[{name:"comment-form",title:m("Experimental Comment form"),description:m("A comment form for posts and pages."),attributes:{submissionMethod:"custom",action:"{SITE_URL}/wp-comments-post.php",method:"post",anchor:"comment-form"},isDefault:!1,innerBlocks:[["core/form-input",{type:"text",name:"author",label:m("Name"),required:!0,visibilityPermissions:"logged-out"}],["core/form-input",{type:"email",name:"email",label:m("Email"),required:!0,visibilityPermissions:"logged-out"}],["core/form-input",{type:"textarea",name:"comment",label:m("Comment"),required:!0,visibilityPermissions:"all"}],["core/form-submit-button",{}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="text"},{name:"wp-privacy-form",title:m("Experimental privacy request form"),keywords:["GDPR"],description:m("A form to request data exports and/or deletion."),attributes:{submissionMethod:"custom",action:"",method:"post",anchor:"gdpr-form"},isDefault:!1,innerBlocks:[lve,uve,["core/paragraph",{content:m("To request an export or deletion of your personal data on this site, please fill-in the form below. You can define the type of request you wish to perform, and your email address. Once the form is submitted, you will receive a confirmation email with instructions on the next steps.")}],["core/form-input",{type:"email",name:"email",label:m("Enter your email address."),required:!0,visibilityPermissions:"all"}],["core/form-input",{type:"checkbox",name:"export_personal_data",label:m("Request data export"),required:!1,visibilityPermissions:"all"}],["core/form-input",{type:"checkbox",name:"remove_personal_data",label:m("Request data deletion"),required:!1,visibilityPermissions:"all"}],["core/form-submit-button",{}],["core/form-input",{type:"hidden",name:"wp-action",value:"wp_privacy_send_request"}],["core/form-input",{type:"hidden",name:"wp-privacy-request",value:"1"}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="text"}],E9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form",title:"Form",category:"common",allowedBlocks:["core/paragraph","core/heading","core/form-input","core/form-submit-button","core/form-submission-notification","core/group","core/columns"],description:"A form.",keywords:["container","wrapper","row","section"],textdomain:"default",icon:"feedback",attributes:{submissionMethod:{type:"string",default:"email"},method:{type:"string",default:"post"},action:{type:"string"},email:{type:"string"}},supports:{anchor:!0,className:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"form"}},{name:dve}=E9,pve={edit:Onn,save:ynn,variations:Ann},vnn=()=>{const e=["core/form"];return Bn("blockEditor.__unstableCanInsertBlockType","core/block-library/preventInsertingFormIntoAnotherForm",(t,n,o,{getBlock:r,getBlockParentsByBlockName:s})=>{if(n.name!=="core/form")return t;for(const i of e)if(r(o)?.name===i||s(o,i).length)return!1;return!0}),it({name:dve,metadata:E9,settings:pve})},xnn=Object.freeze(Object.defineProperty({__proto__:null,init:vnn,metadata:E9,name:dve,settings:pve},Symbol.toStringTag,{value:"Module"})),fve=e=>ms(v1(e)).replace(/[^\p{L}\p{N}]+/gu,"-").toLowerCase().replace(/(^-+)|(-+$)/g,""),wnn={attributes:{type:{type:"string",default:"text"},name:{type:"string"},label:{type:"string",default:"Label",selector:".wp-block-form-input__label-content",source:"html",role:"content"},inlineLabel:{type:"boolean",default:!1},required:{type:"boolean",default:!1,selector:".wp-block-form-input__input",source:"attribute",attribute:"required"},placeholder:{type:"string",selector:".wp-block-form-input__input",source:"attribute",attribute:"placeholder",role:"content"},value:{type:"string",default:"",selector:"input",source:"attribute",attribute:"value"},visibilityPermissions:{type:"string",default:"all"}},supports:{anchor:!0,reusable:!1,spacing:{margin:["top","bottom"]},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}}},save({attributes:e}){const{type:t,name:n,label:o,inlineLabel:r,required:s,placeholder:i,value:c}=e,l=X1(e),u=P1(e),d={...l.style,...u.style},p=oe("wp-block-form-input__input",u.className,l.className),f=t==="textarea"?"textarea":"input",b=Be.save();return t==="hidden"?a.jsx("input",{type:t,name:n,value:c}):a.jsx("div",{...b,children:a.jsxs("label",{className:oe("wp-block-form-input__label",{"is-label-inline":r}),children:[a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})}),a.jsx(f,{className:p,type:t==="textarea"?void 0:t,name:n||fve(o),required:s,"aria-required":s,placeholder:i||void 0,style:d})]})})}},_nn={attributes:{type:{type:"string",default:"text"},name:{type:"string"},label:{type:"string",default:"Label",selector:".wp-block-form-input__label-content",source:"html",role:"content"},inlineLabel:{type:"boolean",default:!1},required:{type:"boolean",default:!1,selector:".wp-block-form-input__input",source:"attribute",attribute:"required"},placeholder:{type:"string",selector:".wp-block-form-input__input",source:"attribute",attribute:"placeholder",role:"content"},value:{type:"string",default:"",selector:"input",source:"attribute",attribute:"value"},visibilityPermissions:{type:"string",default:"all"}},supports:{className:!1,anchor:!0,reusable:!1,spacing:{margin:["top","bottom"]},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}}},save({attributes:e}){const{type:t,name:n,label:o,inlineLabel:r,required:s,placeholder:i,value:c}=e,l=X1(e),u=P1(e),d={...l.style,...u.style},p=oe("wp-block-form-input__input",u.className,l.className),f=t==="textarea"?"textarea":"input";return t==="hidden"?a.jsx("input",{type:t,name:n,value:c}):a.jsxs("label",{className:oe("wp-block-form-input__label",{"is-label-inline":r}),children:[a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})}),a.jsx(f,{className:p,type:t==="textarea"?void 0:t,name:n||fve(o),required:s,"aria-required":s,placeholder:i||void 0,style:d})]})}},knn=[wnn,_nn];function Snn({attributes:e,setAttributes:t,className:n}){const{type:o,name:r,label:s,inlineLabel:i,required:c,placeholder:l,value:u}=e,d=Be(),p=x.useRef(),f=o==="textarea"?"textarea":"input",b=cu(e),h=BO(e);p.current&&p.current.focus();const g=o==="checkbox"||o==="radio",z=a.jsxs(a.Fragment,{children:[o!=="hidden"&&a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[o!=="checkbox"&&a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Inline label"),checked:i,onChange:_=>{t({inlineLabel:_})}}),a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Required"),checked:c,onChange:_=>{t({required:_})}})]})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,autoComplete:"off",label:m("Name"),value:r,onChange:_=>{t({name:_})},help:m('Affects the "name" attribute of the input element, and is used as a name for the form submission results.')})})]}),A=a.jsx(Ie,{tagName:"span",className:"wp-block-form-input__label-content",value:s,onChange:_=>t({label:_}),"aria-label":m(s?"Label":"Empty label"),"data-empty":!s,placeholder:m("Type the label for this input")});return o==="hidden"?a.jsxs(a.Fragment,{children:[z,a.jsx("input",{type:"hidden",className:oe(n,"wp-block-form-input__input",h.className,b.className),"aria-label":m("Value"),value:u,onChange:_=>t({value:_.target.value})})]}):a.jsxs("div",{...d,children:[z,a.jsxs("span",{className:oe("wp-block-form-input__label",{"is-label-inline":i||o==="checkbox"}),children:[!g&&A,a.jsx(f,{type:o==="textarea"?void 0:o,className:oe(n,"wp-block-form-input__input",h.className,b.className),"aria-label":m("Optional placeholder text"),placeholder:l?void 0:m("Optional placeholder…"),value:l,onChange:_=>t({placeholder:_.target.value}),"aria-required":c,style:{...b.style,...h.style}}),g&&A]})]})}const Cnn=e=>ms(v1(e)).replace(/[^\p{L}\p{N}]+/gu,"-").toLowerCase().replace(/(^-+)|(-+$)/g,"");function qnn({attributes:e}){const{type:t,name:n,label:o,inlineLabel:r,required:s,placeholder:i,value:c}=e,l=X1(e),u=P1(e),d={...l.style,...u.style},p=oe("wp-block-form-input__input",u.className,l.className),f=t==="textarea"?"textarea":"input",b=Be.save(),h=t==="checkbox"||t==="radio";return t==="hidden"?a.jsx("input",{type:t,name:n,value:c}):a.jsx("div",{...b,children:a.jsxs("label",{className:oe("wp-block-form-input__label",{"is-label-inline":r}),children:[!h&&a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})}),a.jsx(f,{className:p,type:t==="textarea"?void 0:t,name:n||Cnn(o),required:s,"aria-required":s,placeholder:i||void 0,style:d}),h&&a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})})]})})}const Rnn=[{name:"text",title:m("Text Input"),icon:"edit-page",description:m("A generic text input."),attributes:{type:"text"},isDefault:!0,scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="text"},{name:"textarea",title:m("Textarea Input"),icon:"testimonial",description:m("A textarea input to allow entering multiple lines of text."),attributes:{type:"textarea"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="textarea"},{name:"checkbox",title:m("Checkbox Input"),description:m("A simple checkbox input."),icon:"forms",attributes:{type:"checkbox",inlineLabel:!0},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="checkbox"},{name:"email",title:m("Email Input"),icon:"email",description:m("Used for email addresses."),attributes:{type:"email"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="email"},{name:"url",title:m("URL Input"),icon:"admin-site",description:m("Used for URLs."),attributes:{type:"url"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="url"},{name:"tel",title:m("Telephone Input"),icon:"phone",description:m("Used for phone numbers."),attributes:{type:"tel"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="tel"},{name:"number",title:m("Number Input"),icon:"edit-page",description:m("A numeric input."),attributes:{type:"number"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="number"}],W9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form-input",title:"Input Field",category:"common",ancestor:["core/form"],description:"The basic building block for forms.",keywords:["input","form"],textdomain:"default",icon:"forms",attributes:{type:{type:"string",default:"text"},name:{type:"string"},label:{type:"rich-text",default:"Label",selector:".wp-block-form-input__label-content",source:"rich-text",role:"content"},inlineLabel:{type:"boolean",default:!1},required:{type:"boolean",default:!1,selector:".wp-block-form-input__input",source:"attribute",attribute:"required"},placeholder:{type:"string",selector:".wp-block-form-input__input",source:"attribute",attribute:"placeholder",role:"content"},value:{type:"string",default:"",selector:"input",source:"attribute",attribute:"value"},visibilityPermissions:{type:"string",default:"all"}},supports:{anchor:!0,reusable:!1,spacing:{margin:["top","bottom"]},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}}},style:["wp-block-form-input"]},{name:bve}=W9,hve={deprecated:knn,edit:Snn,save:qnn,variations:Rnn},Tnn=()=>it({name:bve,metadata:W9,settings:hve}),Enn=Object.freeze(Object.defineProperty({__proto__:null,init:Tnn,metadata:W9,name:bve,settings:hve},Symbol.toStringTag,{value:"Module"})),Wnn=[["core/buttons",{},[["core/button",{text:m("Submit"),tagName:"button",type:"submit"}]]]],Nnn=()=>{const e=Be(),t=Nt(e,{template:Wnn,templateLock:"all"});return a.jsx("div",{className:"wp-block-form-submit-wrapper",...t})};function Bnn(){const e=Be.save();return a.jsx("div",{className:"wp-block-form-submit-wrapper",...e,children:a.jsx(Ht.Content,{})})}const N9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form-submit-button",title:"Form Submit Button",category:"common",icon:"button",ancestor:["core/form"],allowedBlocks:["core/buttons","core/button"],description:"A submission button for forms.",keywords:["submit","button","form"],textdomain:"default",style:["wp-block-form-submit-button"]},{name:mve}=N9,gve={edit:Nnn,save:Bnn},Lnn=()=>it({name:mve,metadata:N9,settings:gve}),Pnn=Object.freeze(Object.defineProperty({__proto__:null,init:Lnn,metadata:N9,name:mve,settings:gve},Symbol.toStringTag,{value:"Module"})),jnn=[["core/paragraph",{content:m("Enter the message you wish displayed for form submission error/success, and select the type of the message (success/error) from the block's options.")}]],Inn=({attributes:e,clientId:t})=>{const{type:n}=e,o=Be({className:oe("wp-block-form-submission-notification",{[`form-notification-type-${n}`]:n})}),{hasInnerBlocks:r}=G(i=>{const{getBlock:c}=i(Q),l=c(t);return{hasInnerBlocks:!!(l&&l.innerBlocks.length)}},[t]),s=Nt(o,{template:jnn,renderAppender:r?void 0:Ht.ButtonBlockAppender});return a.jsx("div",{...s,"data-message-success":m("Submission success notification"),"data-message-error":m("Submission error notification")})};function Dnn({attributes:e}){const{type:t}=e;return a.jsx("div",{...Nt.save(Be.save({className:oe("wp-block-form-submission-notification",{[`form-notification-type-${t}`]:t})}))})}const Fnn=[{name:"form-submission-success",title:m("Form Submission Success"),description:m("Success message for form submissions."),attributes:{type:"success"},isDefault:!0,innerBlocks:[["core/paragraph",{content:m("Your form has been submitted successfully."),backgroundColor:"#00D084",textColor:"#000000",style:{elements:{link:{color:{text:"#000000"}}}}}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="success"},{name:"form-submission-error",title:m("Form Submission Error"),description:m("Error/failure message for form submissions."),attributes:{type:"error"},isDefault:!1,innerBlocks:[["core/paragraph",{content:m("There was an error submitting your form."),backgroundColor:"#CF2E2E",textColor:"#FFFFFF",style:{elements:{link:{color:{text:"#FFFFFF"}}}}}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="error"}],B9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form-submission-notification",title:"Form Submission Notification",category:"common",ancestor:["core/form"],description:"Provide a notification message after the form has been submitted.",keywords:["form","feedback","notification","message"],textdomain:"default",icon:"feedback",attributes:{type:{type:"string",default:"success"}}},{name:Mve}=B9,zve={icon:Zf,edit:Inn,save:Dnn,variations:Fnn},$nn=()=>it({name:Mve,metadata:B9,settings:zve}),Vnn=Object.freeze(Object.defineProperty({__proto__:null,init:$nn,metadata:B9,name:Mve,settings:zve},Symbol.toStringTag,{value:"Module"})),Eh="none",X2="media",L9="lightbox",G2="attachment",Hnn="file",Unn="post",Ove="file",yve="post";function Lm(e){return Math.min(3,e?.images?.length)}function Xnn(e,t){switch(t){case Ove:return{href:e?.source_url||e?.url,linkDestination:X2};case yve:return{href:e?.link,linkDestination:G2};case X2:return{href:e?.source_url||e?.url,linkDestination:X2};case G2:return{href:e?.link,linkDestination:G2};case Eh:return{href:void 0,linkDestination:Eh}}return{}}function Pm(e){let t=e.linkTo?e.linkTo:"none";t==="post"?t="attachment":t==="file"&&(t="media");const n=e.images.map(i=>Gnn(i,e.sizeSlug,t)),{images:o,ids:r,...s}=e;return[{...s,linkTo:t,allowResize:!1},n]}function Gnn(e,t,n){return Ee("core/image",{...e.id&&{id:parseInt(e.id)},url:e.url,alt:e.alt,caption:e.caption,sizeSlug:t,...Xnn(e,n)})}const Knn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},shortCodeTransforms:{type:"array",default:[],items:{type:"object"}},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},fixedHeight:{type:"boolean",default:!0},linkTarget:{type:"string"},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"},allowResize:{type:"boolean",default:!1}},save({attributes:e}){const{caption:t,columns:n,imageCrop:o}=e,r=oe("has-nested-images",{[`columns-${n}`]:n!==void 0,"columns-default":n===void 0,"is-cropped":o}),s=Be.save({className:r}),i=Nt.save(s);return a.jsxs("figure",{...i,children:[i.children,!Ie.isEmpty(t)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:t})]})}},Ynn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},fixedHeight:{type:"boolean",default:!0},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"}},supports:{anchor:!0,align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,caption:r,linkTo:s}=e,i=`columns-${n} ${o?"is-cropped":""}`;return a.jsxs("figure",{...Be.save({className:i}),children:[a.jsx("ul",{className:"blocks-gallery-grid",children:t.map(c=>{let l;switch(s){case Ove:l=c.fullUrl||c.url;break;case yve:l=c.link;break}const u=a.jsx("img",{src:c.url,alt:c.alt,"data-id":c.id,"data-full-url":c.fullUrl,"data-link":c.link,className:c.id?`wp-image-${c.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[l?a.jsx("a",{href:l,children:u}):u,!Ie.isEmpty(c.caption)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:c.caption})]})},c.id||c.url)})}),!Ie.isEmpty(r)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:r})]})},migrate(e){return Pm(e)}},Znn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"},sizeSlug:{type:"string",default:"large"}},supports:{align:!0},isEligible({linkTo:e}){return!e||e==="attachment"||e==="media"},migrate(e){return Pm(e)},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,caption:r,linkTo:s}=e;return a.jsxs("figure",{className:`columns-${n} ${o?"is-cropped":""}`,children:[a.jsx("ul",{className:"blocks-gallery-grid",children:t.map(i=>{let c;switch(s){case"media":c=i.fullUrl||i.url;break;case"attachment":c=i.link;break}const l=a.jsx("img",{src:i.url,alt:i.alt,"data-id":i.id,"data-full-url":i.fullUrl,"data-link":i.link,className:i.id?`wp-image-${i.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[c?a.jsx("a",{href:c,children:l}):l,!Ie.isEmpty(i.caption)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:i.caption})]})},i.id||i.url)})}),!Ie.isEmpty(r)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:r})]})}},Qnn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},fullUrl:{source:"attribute",selector:"img",attribute:"data-full-url"},link:{source:"attribute",selector:"img",attribute:"data-link"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",default:[]},columns:{type:"number"},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},supports:{align:!0},isEligible({ids:e}){return e&&e.some(t=>typeof t=="string")},migrate(e){return Pm(e)},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,caption:r,linkTo:s}=e;return a.jsxs("figure",{className:`columns-${n} ${o?"is-cropped":""}`,children:[a.jsx("ul",{className:"blocks-gallery-grid",children:t.map(i=>{let c;switch(s){case"media":c=i.fullUrl||i.url;break;case"attachment":c=i.link;break}const l=a.jsx("img",{src:i.url,alt:i.alt,"data-id":i.id,"data-full-url":i.fullUrl,"data-link":i.link,className:i.id?`wp-image-${i.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[c?a.jsx("a",{href:c,children:l}):l,!Ie.isEmpty(i.caption)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:i.caption})]})},i.id||i.url)})}),!Ie.isEmpty(r)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:r})]})}},Jnn={attributes:{images:{type:"array",default:[],source:"query",selector:"ul.wp-block-gallery .blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},fullUrl:{source:"attribute",selector:"img",attribute:"data-full-url"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},link:{source:"attribute",selector:"img",attribute:"data-link"},caption:{type:"string",source:"html",selector:"figcaption"}}},ids:{type:"array",default:[]},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},supports:{align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,linkTo:r}=e;return a.jsx("ul",{className:`columns-${n} ${o?"is-cropped":""}`,children:t.map(s=>{let i;switch(r){case"media":i=s.fullUrl||s.url;break;case"attachment":i=s.link;break}const c=a.jsx("img",{src:s.url,alt:s.alt,"data-id":s.id,"data-full-url":s.fullUrl,"data-link":s.link,className:s.id?`wp-image-${s.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[i?a.jsx("a",{href:i,children:c}):c,s.caption&&s.caption.length>0&&a.jsx(Ie.Content,{tagName:"figcaption",value:s.caption})]})},s.id||s.url)})})},migrate(e){return Pm(e)}},eon={attributes:{images:{type:"array",default:[],source:"query",selector:"ul.wp-block-gallery .blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},link:{source:"attribute",selector:"img",attribute:"data-link"},caption:{type:"string",source:"html",selector:"figcaption"}}},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},isEligible({images:e,ids:t}){return e&&e.length>0&&(!t&&e||t&&e&&t.length!==e.length||e.some((n,o)=>!n&&t[o]!==null?!0:parseInt(n,10)!==t[o]))},migrate(e){return Pm(e)},supports:{align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,linkTo:r}=e;return a.jsx("ul",{className:`columns-${n} ${o?"is-cropped":""}`,children:t.map(s=>{let i;switch(r){case"media":i=s.url;break;case"attachment":i=s.link;break}const c=a.jsx("img",{src:s.url,alt:s.alt,"data-id":s.id,"data-link":s.link,className:s.id?`wp-image-${s.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[i?a.jsx("a",{href:i,children:c}):c,s.caption&&s.caption.length>0&&a.jsx(Ie.Content,{tagName:"figcaption",value:s.caption})]})},s.id||s.url)})})}},ton={attributes:{images:{type:"array",default:[],source:"query",selector:"div.wp-block-gallery figure.blocks-gallery-image img",query:{url:{source:"attribute",attribute:"src"},alt:{source:"attribute",attribute:"alt",default:""},id:{source:"attribute",attribute:"data-id"}}},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"},align:{type:"string",default:"none"}},supports:{align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),align:o,imageCrop:r,linkTo:s}=e,i=oe(`columns-${n}`,{alignnone:o==="none","is-cropped":r});return a.jsx("div",{className:i,children:t.map(c=>{let l;switch(s){case"media":l=c.url;break;case"attachment":l=c.link;break}const u=a.jsx("img",{src:c.url,alt:c.alt,"data-id":c.id});return a.jsx("figure",{className:"blocks-gallery-image",children:l?a.jsx("a",{href:l,children:u}):u},c.id||c.url)})})},migrate(e){return Pm(e)}},non=[Knn,Ynn,Znn,Qnn,Jnn,eon,ton],oon=a.jsx(Zn,{icon:lde});function ron(e){return e?Math.min(3,e):3}const son=(e,t="large")=>{const n=Object.fromEntries(Object.entries(e??{}).filter(([r])=>["alt","id","link"].includes(r)));n.url=e?.sizes?.[t]?.url||e?.media_details?.sizes?.[t]?.source_url||e?.url||e?.source_url;const o=e?.sizes?.full?.url||e?.media_details?.sizes?.full?.source_url;return o&&(n.fullUrl=o),n},id=20,DM="none",x4="media",w4="attachment",Une="custom",ion=["noreferrer","noopener"],r3=["image"];function Xne(e,t,n,o,r){switch(n||t){case Hnn:case X2:return{href:e?.source_url||e?.url,linkDestination:x4,lightbox:r?.enabled?{...o?.lightbox,enabled:!1}:void 0};case Unn:case G2:return{href:e?.link,linkDestination:w4,lightbox:r?.enabled?{...o?.lightbox,enabled:!1}:void 0};case L9:return{href:void 0,lightbox:r?.enabled?void 0:{...o?.lightbox,enabled:!0},linkDestination:DM};case Eh:return{href:void 0,linkDestination:DM,lightbox:void 0}}return{}}function aon(e){const[t,n=1]=e.split("/").map(Number),o=t/n;return o===1/0||o===0?NaN:o}function con(e){let t=e;return e!==void 0&&t&&(ion.forEach(n=>{const o=new RegExp("\\b"+n+"\\b","gi");t=t.replace(o,"")}),t!==e&&(t=t.trim()),t||(t=void 0)),t}function Gne(e,{rel:t}){const n=e?"_blank":void 0;let o;return!n&&!t?o=void 0:o=con(t),{linkTarget:n,rel:o}}function lon(e,t){const n=e?.media_details?.sizes?.[t]?.source_url;return n?{url:n,width:void 0,height:void 0,sizeSlug:t}:{}}function Kne(e){return r3.some(t=>e.type.indexOf(t)===0)}function uon(e){const{attributes:t,isSelected:n,setAttributes:o,mediaPlaceholder:r,insertBlocksAfter:s,blockProps:i,__unstableLayoutClassNames:c,isContentLocked:l,multiGallerySelection:u}=e,{align:d,columns:p,imageCrop:f}=t;return a.jsxs("figure",{...i,className:oe(i.className,c,"blocks-gallery-grid",{[`align${d}`]:d,[`columns-${p}`]:p!==void 0,"columns-default":p===void 0,"is-cropped":f}),children:[i.children,n&&!i.children&&a.jsx(vd,{className:"blocks-gallery-media-placeholder-wrapper",children:r}),a.jsx(fb,{attributes:t,setAttributes:o,isSelected:n,insertBlocksAfter:s,showToolbarButton:!u&&!l,className:"blocks-gallery-caption",label:m("Gallery caption text"),placeholder:m("Add gallery caption")})]})}function don(e,t,n){return x.useMemo(()=>o(),[e,t]);function o(){if(!e||e.length===0)return;const{imageSizes:r}=n();let s={};t&&(s=e.reduce((c,l)=>{if(!l.id)return c;const u=r.reduce((d,p)=>{const f=l.sizes?.[p.slug]?.url,b=l.media_details?.sizes?.[p.slug]?.source_url;return{...d,[p.slug]:f||b}},{});return{...c,[parseInt(l.id,10)]:u}},{}));const i=Object.values(s);return r.filter(({slug:c})=>i.some(l=>l[c])).map(({name:c,slug:l})=>({value:l,label:c}))}}function pon(e,t){const[n,o]=x.useState([]);return x.useMemo(()=>r(),[e,t]);function r(){let s=!1;const i=n.filter(l=>e.find(u=>l.clientId===u.clientId));i.length<n.length&&(s=!0),e.forEach(l=>{l.fromSavedContent&&!i.find(u=>u.id===l.id)&&(s=!0,i.push(l))});const c=e.filter(l=>!i.find(u=>l.clientId&&u.clientId===l.clientId)&&t?.find(u=>u.id===l.id)&&!l.fromSavedContent);return(s||c?.length>0)&&o([...i,...c]),c.length>0?c:null}}const Yne=[];function fon(e){return G(t=>{var n;const o=e.map(r=>r.attributes.id).filter(r=>r!==void 0);return o.length===0?Yne:(n=t(Me).getMediaItems({include:o.join(","),per_page:-1,orderby:"include"}))!==null&&n!==void 0?n:Yne},[e])}function bon({blockGap:e,clientId:t}){const n="var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) )";let o=n,r=n,s;e&&(s=typeof e=="string"?us(e):us(e?.top)||n,r=typeof e=="string"?us(e):us(e?.left)||n,o=s===r?s:`${s} ${r}`);const i=`#block-${t} { +`,!Ie.isEmpty(t)&&a.jsx(Ie.Content,{tagName:"figcaption",value:t})]})}},rnn=[nnn,onn],q9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},type:{type:"string",role:"content"},providerNameSlug:{type:"string",role:"content"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1,role:"content"},previewable:{type:"boolean",default:!0,role:"content"}},supports:{align:!0,spacing:{margin:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{name:ove}=q9,rve={icon:Vu,edit:Ytn,save:Ztn,transforms:enn,variations:tve,deprecated:rnn},snn=()=>it({name:ove,metadata:q9,settings:rve}),inn=Object.freeze(Object.defineProperty({__proto__:null,init:snn,metadata:q9,name:ove,settings:rve},Symbol.toStringTag,{value:"Module"})),ann={attributes:{id:{type:"number"},href:{type:"string"},fileId:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"id"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},save({attributes:e}){const{href:t,fileId:n,fileName:o,textLinkHref:r,textLinkTarget:s,showDownloadButton:i,downloadButtonText:c,displayPreview:l,previewHeight:u}=e,d=Ie.isEmpty(o)?m("PDF embed"):xe(m("Embed of %s."),o),p=!Ie.isEmpty(o),f=p?n:void 0;return t&&a.jsxs("div",{...Be.save(),children:[l&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${u}px`},"aria-label":d})}),p&&a.jsx("a",{id:f,href:r,target:s,rel:s?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:o})}),i&&a.jsx("a",{href:t,className:oe("wp-block-file__button",z0("button")),download:!0,"aria-describedby":f,children:a.jsx(Ie.Content,{value:c})})]})}},cnn={attributes:{id:{type:"number"},href:{type:"string"},fileId:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"id"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},save({attributes:e}){const{href:t,fileId:n,fileName:o,textLinkHref:r,textLinkTarget:s,showDownloadButton:i,downloadButtonText:c,displayPreview:l,previewHeight:u}=e,d=Ie.isEmpty(o)?m("PDF embed"):xe(m("Embed of %s."),o),p=!Ie.isEmpty(o),f=p?n:void 0;return t&&a.jsxs("div",{...Be.save(),children:[l&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${u}px`},"aria-label":d})}),p&&a.jsx("a",{id:f,href:r,target:s,rel:s?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:o})}),i&&a.jsx("a",{href:t,className:"wp-block-file__button",download:!0,"aria-describedby":f,children:a.jsx(Ie.Content,{value:c})})]})}},lnn={attributes:{id:{type:"number"},href:{type:"string"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},save({attributes:e}){const{href:t,fileName:n,textLinkHref:o,textLinkTarget:r,showDownloadButton:s,downloadButtonText:i,displayPreview:c,previewHeight:l}=e,u=Ie.isEmpty(n)?m("PDF embed"):xe(m("Embed of %s."),n);return t&&a.jsxs("div",{...Be.save(),children:[c&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${l}px`},"aria-label":u})}),!Ie.isEmpty(n)&&a.jsx("a",{href:o,target:r,rel:r?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:n})}),s&&a.jsx("a",{href:t,className:"wp-block-file__button",download:!0,children:a.jsx(Ie.Content,{value:i})})]})}},unn=[ann,cnn,lnn];function dnn({hrefs:e,openInNewWindow:t,showDownloadButton:n,changeLinkDestinationOption:o,changeOpenInNewWindow:r,changeShowDownloadButton:s,displayPreview:i,changeDisplayPreview:c,previewHeight:l,changePreviewHeight:u}){const{href:d,textLinkHref:p,attachmentPage:f}=e;let b=[{value:d,label:m("URL")}];return f&&(b=[{value:d,label:m("Media file")},{value:f,label:m("Attachment page")}]),a.jsx(a.Fragment,{children:a.jsxs(et,{children:[d.endsWith(".pdf")&&a.jsxs(Qt,{title:m("PDF settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show inline embed"),help:i?m("Note: Most phone and tablet browsers won't display embedded PDFs."):null,checked:!!i,onChange:c}),i&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Height in pixels"),min:bN,max:Math.max(sve,l),value:l,onChange:u})]}),a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link to"),value:p,options:b,onChange:o}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),checked:t,onChange:r}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show download button"),checked:n,onChange:s})]})]})})}const pnn=()=>!(window.navigator.userAgent.indexOf("Mobi")>-1||window.navigator.userAgent.indexOf("Android")>-1||window.navigator.userAgent.indexOf("Macintosh")>-1&&window.navigator.maxTouchPoints&&window.navigator.maxTouchPoints>2||(window.ActiveXObject||"ActiveXObject"in window)&&!(Hne("AcroPDF.PDF")||Hne("PDF.PdfCtrl"))),Hne=e=>{let t;try{t=new window.ActiveXObject(e)}catch{t=void 0}return t},bN=200,sve=2e3;function fnn({text:e,disabled:t}){const{createNotice:n}=Oe(mt),o=Hl(e,()=>{n("info",m("Copied URL to clipboard."),{isDismissible:!0,type:"snackbar"})});return a.jsx(Vt,{className:"components-clipboard-toolbar-button",ref:o,disabled:t,children:m("Copy URL")})}function bnn({attributes:e,isSelected:t,setAttributes:n,clientId:o}){const{id:r,fileName:s,href:i,textLinkHref:c,textLinkTarget:l,showDownloadButton:u,downloadButtonText:d,displayPreview:p,previewHeight:f}=e,[b,h]=x.useState(e.blob),{media:g}=G(j=>({media:r===void 0?void 0:j(Me).getMedia(r)}),[r]),{createErrorNotice:z}=Oe(mt),{toggleSelection:A,__unstableMarkNextChangeAsNotPersistent:_}=Oe(Q);dk({url:b,onChange:v,onError:M}),x.useEffect(()=>{Ie.isEmpty(d)&&(_(),n({downloadButtonText:We("Download","button label")}))},[]);function v(j){var I,P;if(!j||!j.url){n({href:void 0,fileName:void 0,textLinkHref:void 0,id:void 0,fileId:void 0,displayPreview:void 0,previewHeight:void 0}),h();return}if(Nr(j.url)){h(j.url);return}const $=j.url.endsWith(".pdf"),F={displayPreview:$?(I=e.displayPreview)!==null&&I!==void 0?I:!0:void 0,previewHeight:$?(P=e.previewHeight)!==null&&P!==void 0?P:600:void 0};n({href:j.url,fileName:j.title,textLinkHref:j.url,id:j.id,fileId:`wp-block-file--media-${o}`,blob:void 0,...F}),h()}function M(j){n({href:void 0}),z(j,{type:"snackbar"})}function y(j){n({textLinkHref:j})}function k(j){n({textLinkTarget:j?"_blank":!1})}function S(j){n({showDownloadButton:j})}function C(j){n({displayPreview:j})}function R(j,I,P,$){A(!0);const F=parseInt(f+$.height,10);n({previewHeight:F})}function T(j){const I=Math.max(parseInt(j,10),bN);n({previewHeight:I})}const E=g&&g.link,B=Be({className:oe(!!b&&Mle({type:"loading"}),{"is-transient":!!b})}),N=pnn()&&p;return!i&&!b?a.jsx("div",{...B,children:a.jsx(iu,{icon:a.jsx(Zn,{icon:BP}),labels:{title:m("File"),instructions:m("Drag and drop a file, upload, or choose from your library.")},onSelect:v,onError:M,accept:"*"})}):a.jsxs(a.Fragment,{children:[a.jsx(dnn,{hrefs:{href:i||b,textLinkHref:c,attachmentPage:E},openInNewWindow:!!l,showDownloadButton:u,changeLinkDestinationOption:y,changeOpenInNewWindow:k,changeShowDownloadButton:S,displayPreview:p,changeDisplayPreview:C,previewHeight:f,changePreviewHeight:T}),a.jsxs(bt,{group:"other",children:[a.jsx(Pc,{mediaId:r,mediaURL:i,accept:"*",onSelect:v,onError:M,onReset:()=>v(void 0)}),a.jsx(fnn,{text:i,disabled:Nr(i)})]}),a.jsxs("div",{...B,children:[N&&a.jsxs(Ca,{size:{height:f,width:"100%"},minHeight:bN,maxHeight:sve,grid:[1,10],enable:{top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},onResizeStart:()=>A(!1),onResizeStop:R,showHandle:t,children:[a.jsx("object",{className:"wp-block-file__preview",data:i,type:"application/pdf","aria-label":m("Embed of the selected PDF file.")}),!t&&a.jsx("div",{className:"wp-block-file__preview-overlay"})]}),a.jsxs("div",{className:"wp-block-file__content-wrapper",children:[a.jsx(Ie,{identifier:"fileName",tagName:"a",value:s,placeholder:m("Write file name…"),withoutInteractiveFormatting:!0,onChange:j=>n({fileName:dN(j)}),href:c}),u&&a.jsx("div",{className:"wp-block-file__button-richtext-wrapper",children:a.jsx(Ie,{identifier:"downloadButtonText",tagName:"div","aria-label":m("Download button text"),className:oe("wp-block-file__button",z0("button")),value:d,withoutInteractiveFormatting:!0,placeholder:m("Add text…"),onChange:j=>n({downloadButtonText:dN(j)})})})]})]})]})}function hnn({attributes:e}){const{href:t,fileId:n,fileName:o,textLinkHref:r,textLinkTarget:s,showDownloadButton:i,downloadButtonText:c,displayPreview:l,previewHeight:u}=e,d=Ie.isEmpty(o)?"PDF embed":o.toString(),p=!Ie.isEmpty(o),f=p?n:void 0;return t&&a.jsxs("div",{...Be.save(),children:[l&&a.jsx(a.Fragment,{children:a.jsx("object",{className:"wp-block-file__embed",data:t,type:"application/pdf",style:{width:"100%",height:`${u}px`},"aria-label":d})}),p&&a.jsx("a",{id:f,href:r,target:s,rel:s?"noreferrer noopener":void 0,children:a.jsx(Ie.Content,{value:o})}),i&&a.jsx("a",{href:t,className:oe("wp-block-file__button",z0("button")),download:!0,"aria-describedby":f,children:a.jsx(Ie.Content,{value:c})})]})}const mnn={from:[{type:"files",isMatch(e){return e.length>0},priority:15,transform:e=>{const t=[];return e.forEach(n=>{const o=ls(n);n.type.startsWith("video/")?t.push(Ee("core/video",{blob:ls(n)})):n.type.startsWith("image/")?t.push(Ee("core/image",{blob:ls(n)})):n.type.startsWith("audio/")?t.push(Ee("core/audio",{blob:ls(n)})):t.push(Ee("core/file",{blob:o,fileName:n.name}))}),t}},{type:"block",blocks:["core/audio"],transform:e=>Ee("core/file",{href:e.src,fileName:e.caption,textLinkHref:e.src,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/video"],transform:e=>Ee("core/file",{href:e.src,fileName:e.caption,textLinkHref:e.src,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/image"],transform:e=>Ee("core/file",{href:e.url,fileName:e.caption||If(e.url),textLinkHref:e.url,id:e.id,anchor:e.anchor})}],to:[{type:"block",blocks:["core/audio"],isMatch:({id:e})=>{if(!e)return!1;const{getMedia:t}=uo(Me),n=t(e);return!!n&&n.mime_type.includes("audio")},transform:e=>Ee("core/audio",{src:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/video"],isMatch:({id:e})=>{if(!e)return!1;const{getMedia:t}=uo(Me),n=t(e);return!!n&&n.mime_type.includes("video")},transform:e=>Ee("core/video",{src:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/image"],isMatch:({id:e})=>{if(!e)return!1;const{getMedia:t}=uo(Me),n=t(e);return!!n&&n.mime_type.includes("image")},transform:e=>Ee("core/image",{url:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})}]},R9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/file",title:"File",category:"media",description:"Add a link to a downloadable file.",keywords:["document","pdf","download"],textdomain:"default",attributes:{id:{type:"number"},blob:{type:"string",role:"local"},href:{type:"string",role:"content"},fileId:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"id"},fileName:{type:"rich-text",source:"rich-text",selector:"a:not([download])",role:"content"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href",role:"content"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"rich-text",source:"rich-text",selector:"a[download]",role:"content"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},interactivity:!0},editorStyle:"wp-block-file-editor",style:"wp-block-file"},{name:ive}=R9,ave={icon:BP,example:{attributes:{href:"https://upload.wikimedia.org/wikipedia/commons/d/dd/Armstrong_Small_Step.ogg",fileName:We("Armstrong_Small_Step","Name of the file")}},transforms:mnn,deprecated:unn,edit:bnn,save:hnn},gnn=()=>it({name:ive,metadata:R9,settings:ave}),Mnn=Object.freeze(Object.defineProperty({__proto__:null,init:gnn,metadata:R9,name:ive,settings:ave},Symbol.toStringTag,{value:"Module"})),cve=["core/form-submission-notification",{type:"success"},[["core/paragraph",{content:'<mark style="background-color:rgba(0, 0, 0, 0);color:#345C00" class="has-inline-color">'+m("Your form has been submitted successfully")+"</mark>"}]]],lve=["core/form-submission-notification",{type:"error"},[["core/paragraph",{content:'<mark style="background-color:rgba(0, 0, 0, 0);color:#CF2E2E" class="has-inline-color">'+m("There was an error submitting your form.")+"</mark>"}]]],znn=[cve,lve,["core/form-input",{type:"text",label:m("Name"),required:!0}],["core/form-input",{type:"email",label:m("Email"),required:!0}],["core/form-input",{type:"textarea",label:m("Comment"),required:!0}],["core/form-submit-button",{}]],Onn=({attributes:e,setAttributes:t,clientId:n})=>{const{action:o,method:r,email:s,submissionMethod:i}=e,c=Be(),{hasInnerBlocks:l}=G(d=>{const{getBlock:p}=d(Q),f=p(n);return{hasInnerBlocks:!!(f&&f.innerBlocks.length)}},[n]),u=Nt(c,{template:znn,renderAppender:l?void 0:Ht.ButtonBlockAppender});return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Submissions method"),options:[{label:m("Send email"),value:"email"},{label:m("- Custom -"),value:"custom"}],value:i,onChange:d=>t({submissionMethod:d}),help:m(i==="custom"?'Select the method to use for form submissions. Additional options for the "custom" mode can be found in the "Advanced" section.':"Select the method to use for form submissions.")}),i==="email"&&a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,autoComplete:"off",label:m("Email for form submissions"),value:s,required:!0,onChange:d=>{t({email:d}),t({action:`mailto:${d}`}),t({method:"post"})},help:m("The email address where form submissions will be sent. Separate multiple email addresses with a comma.")})]})}),i!=="email"&&a.jsxs(et,{group:"advanced",children:[a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Method"),options:[{label:"Get",value:"get"},{label:"Post",value:"post"}],value:r,onChange:d=>t({method:d}),help:m("Select the method to use for form submissions.")}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,autoComplete:"off",label:m("Form action"),value:o,onChange:d=>{t({action:d})},help:m("The URL where the form should be submitted.")})]}),a.jsx("form",{...u,className:"wp-block-form",encType:i==="email"?"text/plain":null})]})};function ynn({attributes:e}){const t=Be.save(),{submissionMethod:n}=e;return a.jsx("form",{...t,className:"wp-block-form",encType:n==="email"?"text/plain":null,children:a.jsx(Ht.Content,{})})}const Ann=[{name:"comment-form",title:m("Experimental Comment form"),description:m("A comment form for posts and pages."),attributes:{submissionMethod:"custom",action:"{SITE_URL}/wp-comments-post.php",method:"post",anchor:"comment-form"},isDefault:!1,innerBlocks:[["core/form-input",{type:"text",name:"author",label:m("Name"),required:!0,visibilityPermissions:"logged-out"}],["core/form-input",{type:"email",name:"email",label:m("Email"),required:!0,visibilityPermissions:"logged-out"}],["core/form-input",{type:"textarea",name:"comment",label:m("Comment"),required:!0,visibilityPermissions:"all"}],["core/form-submit-button",{}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="text"},{name:"wp-privacy-form",title:m("Experimental privacy request form"),keywords:["GDPR"],description:m("A form to request data exports and/or deletion."),attributes:{submissionMethod:"custom",action:"",method:"post",anchor:"gdpr-form"},isDefault:!1,innerBlocks:[cve,lve,["core/paragraph",{content:m("To request an export or deletion of your personal data on this site, please fill-in the form below. You can define the type of request you wish to perform, and your email address. Once the form is submitted, you will receive a confirmation email with instructions on the next steps.")}],["core/form-input",{type:"email",name:"email",label:m("Enter your email address."),required:!0,visibilityPermissions:"all"}],["core/form-input",{type:"checkbox",name:"export_personal_data",label:m("Request data export"),required:!1,visibilityPermissions:"all"}],["core/form-input",{type:"checkbox",name:"remove_personal_data",label:m("Request data deletion"),required:!1,visibilityPermissions:"all"}],["core/form-submit-button",{}],["core/form-input",{type:"hidden",name:"wp-action",value:"wp_privacy_send_request"}],["core/form-input",{type:"hidden",name:"wp-privacy-request",value:"1"}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="text"}],T9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form",title:"Form",category:"common",allowedBlocks:["core/paragraph","core/heading","core/form-input","core/form-submit-button","core/form-submission-notification","core/group","core/columns"],description:"A form.",keywords:["container","wrapper","row","section"],textdomain:"default",icon:"feedback",attributes:{submissionMethod:{type:"string",default:"email"},method:{type:"string",default:"post"},action:{type:"string"},email:{type:"string"}},supports:{anchor:!0,className:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"form"}},{name:uve}=T9,dve={edit:Onn,save:ynn,variations:Ann},vnn=()=>{const e=["core/form"];return Bn("blockEditor.__unstableCanInsertBlockType","core/block-library/preventInsertingFormIntoAnotherForm",(t,n,o,{getBlock:r,getBlockParentsByBlockName:s})=>{if(n.name!=="core/form")return t;for(const i of e)if(r(o)?.name===i||s(o,i).length)return!1;return!0}),it({name:uve,metadata:T9,settings:dve})},xnn=Object.freeze(Object.defineProperty({__proto__:null,init:vnn,metadata:T9,name:uve,settings:dve},Symbol.toStringTag,{value:"Module"})),pve=e=>ms(v1(e)).replace(/[^\p{L}\p{N}]+/gu,"-").toLowerCase().replace(/(^-+)|(-+$)/g,""),wnn={attributes:{type:{type:"string",default:"text"},name:{type:"string"},label:{type:"string",default:"Label",selector:".wp-block-form-input__label-content",source:"html",role:"content"},inlineLabel:{type:"boolean",default:!1},required:{type:"boolean",default:!1,selector:".wp-block-form-input__input",source:"attribute",attribute:"required"},placeholder:{type:"string",selector:".wp-block-form-input__input",source:"attribute",attribute:"placeholder",role:"content"},value:{type:"string",default:"",selector:"input",source:"attribute",attribute:"value"},visibilityPermissions:{type:"string",default:"all"}},supports:{anchor:!0,reusable:!1,spacing:{margin:["top","bottom"]},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}}},save({attributes:e}){const{type:t,name:n,label:o,inlineLabel:r,required:s,placeholder:i,value:c}=e,l=X1(e),u=P1(e),d={...l.style,...u.style},p=oe("wp-block-form-input__input",u.className,l.className),f=t==="textarea"?"textarea":"input",b=Be.save();return t==="hidden"?a.jsx("input",{type:t,name:n,value:c}):a.jsx("div",{...b,children:a.jsxs("label",{className:oe("wp-block-form-input__label",{"is-label-inline":r}),children:[a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})}),a.jsx(f,{className:p,type:t==="textarea"?void 0:t,name:n||pve(o),required:s,"aria-required":s,placeholder:i||void 0,style:d})]})})}},_nn={attributes:{type:{type:"string",default:"text"},name:{type:"string"},label:{type:"string",default:"Label",selector:".wp-block-form-input__label-content",source:"html",role:"content"},inlineLabel:{type:"boolean",default:!1},required:{type:"boolean",default:!1,selector:".wp-block-form-input__input",source:"attribute",attribute:"required"},placeholder:{type:"string",selector:".wp-block-form-input__input",source:"attribute",attribute:"placeholder",role:"content"},value:{type:"string",default:"",selector:"input",source:"attribute",attribute:"value"},visibilityPermissions:{type:"string",default:"all"}},supports:{className:!1,anchor:!0,reusable:!1,spacing:{margin:["top","bottom"]},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}}},save({attributes:e}){const{type:t,name:n,label:o,inlineLabel:r,required:s,placeholder:i,value:c}=e,l=X1(e),u=P1(e),d={...l.style,...u.style},p=oe("wp-block-form-input__input",u.className,l.className),f=t==="textarea"?"textarea":"input";return t==="hidden"?a.jsx("input",{type:t,name:n,value:c}):a.jsxs("label",{className:oe("wp-block-form-input__label",{"is-label-inline":r}),children:[a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})}),a.jsx(f,{className:p,type:t==="textarea"?void 0:t,name:n||pve(o),required:s,"aria-required":s,placeholder:i||void 0,style:d})]})}},knn=[wnn,_nn];function Snn({attributes:e,setAttributes:t,className:n}){const{type:o,name:r,label:s,inlineLabel:i,required:c,placeholder:l,value:u}=e,d=Be(),p=x.useRef(),f=o==="textarea"?"textarea":"input",b=au(e),h=BO(e);p.current&&p.current.focus();const g=o==="checkbox"||o==="radio",z=a.jsxs(a.Fragment,{children:[o!=="hidden"&&a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[o!=="checkbox"&&a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Inline label"),checked:i,onChange:_=>{t({inlineLabel:_})}}),a.jsx(K0,{__nextHasNoMarginBottom:!0,label:m("Required"),checked:c,onChange:_=>{t({required:_})}})]})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,autoComplete:"off",label:m("Name"),value:r,onChange:_=>{t({name:_})},help:m('Affects the "name" attribute of the input element, and is used as a name for the form submission results.')})})]}),A=a.jsx(Ie,{tagName:"span",className:"wp-block-form-input__label-content",value:s,onChange:_=>t({label:_}),"aria-label":m(s?"Label":"Empty label"),"data-empty":!s,placeholder:m("Type the label for this input")});return o==="hidden"?a.jsxs(a.Fragment,{children:[z,a.jsx("input",{type:"hidden",className:oe(n,"wp-block-form-input__input",h.className,b.className),"aria-label":m("Value"),value:u,onChange:_=>t({value:_.target.value})})]}):a.jsxs("div",{...d,children:[z,a.jsxs("span",{className:oe("wp-block-form-input__label",{"is-label-inline":i||o==="checkbox"}),children:[!g&&A,a.jsx(f,{type:o==="textarea"?void 0:o,className:oe(n,"wp-block-form-input__input",h.className,b.className),"aria-label":m("Optional placeholder text"),placeholder:l?void 0:m("Optional placeholder…"),value:l,onChange:_=>t({placeholder:_.target.value}),"aria-required":c,style:{...b.style,...h.style}}),g&&A]})]})}const Cnn=e=>ms(v1(e)).replace(/[^\p{L}\p{N}]+/gu,"-").toLowerCase().replace(/(^-+)|(-+$)/g,"");function qnn({attributes:e}){const{type:t,name:n,label:o,inlineLabel:r,required:s,placeholder:i,value:c}=e,l=X1(e),u=P1(e),d={...l.style,...u.style},p=oe("wp-block-form-input__input",u.className,l.className),f=t==="textarea"?"textarea":"input",b=Be.save(),h=t==="checkbox"||t==="radio";return t==="hidden"?a.jsx("input",{type:t,name:n,value:c}):a.jsx("div",{...b,children:a.jsxs("label",{className:oe("wp-block-form-input__label",{"is-label-inline":r}),children:[!h&&a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})}),a.jsx(f,{className:p,type:t==="textarea"?void 0:t,name:n||Cnn(o),required:s,"aria-required":s,placeholder:i||void 0,style:d}),h&&a.jsx("span",{className:"wp-block-form-input__label-content",children:a.jsx(Ie.Content,{value:o})})]})})}const Rnn=[{name:"text",title:m("Text Input"),icon:"edit-page",description:m("A generic text input."),attributes:{type:"text"},isDefault:!0,scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="text"},{name:"textarea",title:m("Textarea Input"),icon:"testimonial",description:m("A textarea input to allow entering multiple lines of text."),attributes:{type:"textarea"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="textarea"},{name:"checkbox",title:m("Checkbox Input"),description:m("A simple checkbox input."),icon:"forms",attributes:{type:"checkbox",inlineLabel:!0},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="checkbox"},{name:"email",title:m("Email Input"),icon:"email",description:m("Used for email addresses."),attributes:{type:"email"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="email"},{name:"url",title:m("URL Input"),icon:"admin-site",description:m("Used for URLs."),attributes:{type:"url"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="url"},{name:"tel",title:m("Telephone Input"),icon:"phone",description:m("Used for phone numbers."),attributes:{type:"tel"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="tel"},{name:"number",title:m("Number Input"),icon:"edit-page",description:m("A numeric input."),attributes:{type:"number"},isDefault:!0,scope:["inserter","transform"],isActive:e=>e?.type==="number"}],E9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form-input",title:"Input Field",category:"common",ancestor:["core/form"],description:"The basic building block for forms.",keywords:["input","form"],textdomain:"default",icon:"forms",attributes:{type:{type:"string",default:"text"},name:{type:"string"},label:{type:"rich-text",default:"Label",selector:".wp-block-form-input__label-content",source:"rich-text",role:"content"},inlineLabel:{type:"boolean",default:!1},required:{type:"boolean",default:!1,selector:".wp-block-form-input__input",source:"attribute",attribute:"required"},placeholder:{type:"string",selector:".wp-block-form-input__input",source:"attribute",attribute:"placeholder",role:"content"},value:{type:"string",default:"",selector:"input",source:"attribute",attribute:"value"},visibilityPermissions:{type:"string",default:"all"}},supports:{anchor:!0,reusable:!1,spacing:{margin:["top","bottom"]},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{radius:!0}}},style:["wp-block-form-input"]},{name:fve}=E9,bve={deprecated:knn,edit:Snn,save:qnn,variations:Rnn},Tnn=()=>it({name:fve,metadata:E9,settings:bve}),Enn=Object.freeze(Object.defineProperty({__proto__:null,init:Tnn,metadata:E9,name:fve,settings:bve},Symbol.toStringTag,{value:"Module"})),Wnn=[["core/buttons",{},[["core/button",{text:m("Submit"),tagName:"button",type:"submit"}]]]],Nnn=()=>{const e=Be(),t=Nt(e,{template:Wnn,templateLock:"all"});return a.jsx("div",{className:"wp-block-form-submit-wrapper",...t})};function Bnn(){const e=Be.save();return a.jsx("div",{className:"wp-block-form-submit-wrapper",...e,children:a.jsx(Ht.Content,{})})}const W9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form-submit-button",title:"Form Submit Button",category:"common",icon:"button",ancestor:["core/form"],allowedBlocks:["core/buttons","core/button"],description:"A submission button for forms.",keywords:["submit","button","form"],textdomain:"default",style:["wp-block-form-submit-button"]},{name:hve}=W9,mve={edit:Nnn,save:Bnn},Lnn=()=>it({name:hve,metadata:W9,settings:mve}),Pnn=Object.freeze(Object.defineProperty({__proto__:null,init:Lnn,metadata:W9,name:hve,settings:mve},Symbol.toStringTag,{value:"Module"})),jnn=[["core/paragraph",{content:m("Enter the message you wish displayed for form submission error/success, and select the type of the message (success/error) from the block's options.")}]],Inn=({attributes:e,clientId:t})=>{const{type:n}=e,o=Be({className:oe("wp-block-form-submission-notification",{[`form-notification-type-${n}`]:n})}),{hasInnerBlocks:r}=G(i=>{const{getBlock:c}=i(Q),l=c(t);return{hasInnerBlocks:!!(l&&l.innerBlocks.length)}},[t]),s=Nt(o,{template:jnn,renderAppender:r?void 0:Ht.ButtonBlockAppender});return a.jsx("div",{...s,"data-message-success":m("Submission success notification"),"data-message-error":m("Submission error notification")})};function Dnn({attributes:e}){const{type:t}=e;return a.jsx("div",{...Nt.save(Be.save({className:oe("wp-block-form-submission-notification",{[`form-notification-type-${t}`]:t})}))})}const Fnn=[{name:"form-submission-success",title:m("Form Submission Success"),description:m("Success message for form submissions."),attributes:{type:"success"},isDefault:!0,innerBlocks:[["core/paragraph",{content:m("Your form has been submitted successfully."),backgroundColor:"#00D084",textColor:"#000000",style:{elements:{link:{color:{text:"#000000"}}}}}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="success"},{name:"form-submission-error",title:m("Form Submission Error"),description:m("Error/failure message for form submissions."),attributes:{type:"error"},isDefault:!1,innerBlocks:[["core/paragraph",{content:m("There was an error submitting your form."),backgroundColor:"#CF2E2E",textColor:"#FFFFFF",style:{elements:{link:{color:{text:"#FFFFFF"}}}}}]],scope:["inserter","transform"],isActive:e=>!e?.type||e?.type==="error"}],N9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/form-submission-notification",title:"Form Submission Notification",category:"common",ancestor:["core/form"],description:"Provide a notification message after the form has been submitted.",keywords:["form","feedback","notification","message"],textdomain:"default",icon:"feedback",attributes:{type:{type:"string",default:"success"}}},{name:gve}=N9,Mve={icon:Zf,edit:Inn,save:Dnn,variations:Fnn},$nn=()=>it({name:gve,metadata:N9,settings:Mve}),Vnn=Object.freeze(Object.defineProperty({__proto__:null,init:$nn,metadata:N9,name:gve,settings:Mve},Symbol.toStringTag,{value:"Module"})),Eh="none",X2="media",B9="lightbox",G2="attachment",Hnn="file",Unn="post",zve="file",Ove="post";function Lm(e){return Math.min(3,e?.images?.length)}function Xnn(e,t){switch(t){case zve:return{href:e?.source_url||e?.url,linkDestination:X2};case Ove:return{href:e?.link,linkDestination:G2};case X2:return{href:e?.source_url||e?.url,linkDestination:X2};case G2:return{href:e?.link,linkDestination:G2};case Eh:return{href:void 0,linkDestination:Eh}}return{}}function Pm(e){let t=e.linkTo?e.linkTo:"none";t==="post"?t="attachment":t==="file"&&(t="media");const n=e.images.map(i=>Gnn(i,e.sizeSlug,t)),{images:o,ids:r,...s}=e;return[{...s,linkTo:t,allowResize:!1},n]}function Gnn(e,t,n){return Ee("core/image",{...e.id&&{id:parseInt(e.id)},url:e.url,alt:e.alt,caption:e.caption,sizeSlug:t,...Xnn(e,n)})}const Knn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},shortCodeTransforms:{type:"array",default:[],items:{type:"object"}},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},fixedHeight:{type:"boolean",default:!0},linkTarget:{type:"string"},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"},allowResize:{type:"boolean",default:!1}},save({attributes:e}){const{caption:t,columns:n,imageCrop:o}=e,r=oe("has-nested-images",{[`columns-${n}`]:n!==void 0,"columns-default":n===void 0,"is-cropped":o}),s=Be.save({className:r}),i=Nt.save(s);return a.jsxs("figure",{...i,children:[i.children,!Ie.isEmpty(t)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:t})]})}},Ynn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},fixedHeight:{type:"boolean",default:!0},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"}},supports:{anchor:!0,align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,caption:r,linkTo:s}=e,i=`columns-${n} ${o?"is-cropped":""}`;return a.jsxs("figure",{...Be.save({className:i}),children:[a.jsx("ul",{className:"blocks-gallery-grid",children:t.map(c=>{let l;switch(s){case zve:l=c.fullUrl||c.url;break;case Ove:l=c.link;break}const u=a.jsx("img",{src:c.url,alt:c.alt,"data-id":c.id,"data-full-url":c.fullUrl,"data-link":c.link,className:c.id?`wp-image-${c.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[l?a.jsx("a",{href:l,children:u}):u,!Ie.isEmpty(c.caption)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:c.caption})]})},c.id||c.url)})}),!Ie.isEmpty(r)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:r})]})},migrate(e){return Pm(e)}},Znn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"},sizeSlug:{type:"string",default:"large"}},supports:{align:!0},isEligible({linkTo:e}){return!e||e==="attachment"||e==="media"},migrate(e){return Pm(e)},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,caption:r,linkTo:s}=e;return a.jsxs("figure",{className:`columns-${n} ${o?"is-cropped":""}`,children:[a.jsx("ul",{className:"blocks-gallery-grid",children:t.map(i=>{let c;switch(s){case"media":c=i.fullUrl||i.url;break;case"attachment":c=i.link;break}const l=a.jsx("img",{src:i.url,alt:i.alt,"data-id":i.id,"data-full-url":i.fullUrl,"data-link":i.link,className:i.id?`wp-image-${i.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[c?a.jsx("a",{href:c,children:l}):l,!Ie.isEmpty(i.caption)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:i.caption})]})},i.id||i.url)})}),!Ie.isEmpty(r)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:r})]})}},Qnn={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},fullUrl:{source:"attribute",selector:"img",attribute:"data-full-url"},link:{source:"attribute",selector:"img",attribute:"data-link"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",default:[]},columns:{type:"number"},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},supports:{align:!0},isEligible({ids:e}){return e&&e.some(t=>typeof t=="string")},migrate(e){return Pm(e)},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,caption:r,linkTo:s}=e;return a.jsxs("figure",{className:`columns-${n} ${o?"is-cropped":""}`,children:[a.jsx("ul",{className:"blocks-gallery-grid",children:t.map(i=>{let c;switch(s){case"media":c=i.fullUrl||i.url;break;case"attachment":c=i.link;break}const l=a.jsx("img",{src:i.url,alt:i.alt,"data-id":i.id,"data-full-url":i.fullUrl,"data-link":i.link,className:i.id?`wp-image-${i.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[c?a.jsx("a",{href:c,children:l}):l,!Ie.isEmpty(i.caption)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:i.caption})]})},i.id||i.url)})}),!Ie.isEmpty(r)&&a.jsx(Ie.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:r})]})}},Jnn={attributes:{images:{type:"array",default:[],source:"query",selector:"ul.wp-block-gallery .blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},fullUrl:{source:"attribute",selector:"img",attribute:"data-full-url"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},link:{source:"attribute",selector:"img",attribute:"data-link"},caption:{type:"string",source:"html",selector:"figcaption"}}},ids:{type:"array",default:[]},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},supports:{align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,linkTo:r}=e;return a.jsx("ul",{className:`columns-${n} ${o?"is-cropped":""}`,children:t.map(s=>{let i;switch(r){case"media":i=s.fullUrl||s.url;break;case"attachment":i=s.link;break}const c=a.jsx("img",{src:s.url,alt:s.alt,"data-id":s.id,"data-full-url":s.fullUrl,"data-link":s.link,className:s.id?`wp-image-${s.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[i?a.jsx("a",{href:i,children:c}):c,s.caption&&s.caption.length>0&&a.jsx(Ie.Content,{tagName:"figcaption",value:s.caption})]})},s.id||s.url)})})},migrate(e){return Pm(e)}},eon={attributes:{images:{type:"array",default:[],source:"query",selector:"ul.wp-block-gallery .blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},link:{source:"attribute",selector:"img",attribute:"data-link"},caption:{type:"string",source:"html",selector:"figcaption"}}},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},isEligible({images:e,ids:t}){return e&&e.length>0&&(!t&&e||t&&e&&t.length!==e.length||e.some((n,o)=>!n&&t[o]!==null?!0:parseInt(n,10)!==t[o]))},migrate(e){return Pm(e)},supports:{align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),imageCrop:o,linkTo:r}=e;return a.jsx("ul",{className:`columns-${n} ${o?"is-cropped":""}`,children:t.map(s=>{let i;switch(r){case"media":i=s.url;break;case"attachment":i=s.link;break}const c=a.jsx("img",{src:s.url,alt:s.alt,"data-id":s.id,"data-link":s.link,className:s.id?`wp-image-${s.id}`:null});return a.jsx("li",{className:"blocks-gallery-item",children:a.jsxs("figure",{children:[i?a.jsx("a",{href:i,children:c}):c,s.caption&&s.caption.length>0&&a.jsx(Ie.Content,{tagName:"figcaption",value:s.caption})]})},s.id||s.url)})})}},ton={attributes:{images:{type:"array",default:[],source:"query",selector:"div.wp-block-gallery figure.blocks-gallery-image img",query:{url:{source:"attribute",attribute:"src"},alt:{source:"attribute",attribute:"alt",default:""},id:{source:"attribute",attribute:"data-id"}}},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"},align:{type:"string",default:"none"}},supports:{align:!0},save({attributes:e}){const{images:t,columns:n=Lm(e),align:o,imageCrop:r,linkTo:s}=e,i=oe(`columns-${n}`,{alignnone:o==="none","is-cropped":r});return a.jsx("div",{className:i,children:t.map(c=>{let l;switch(s){case"media":l=c.url;break;case"attachment":l=c.link;break}const u=a.jsx("img",{src:c.url,alt:c.alt,"data-id":c.id});return a.jsx("figure",{className:"blocks-gallery-image",children:l?a.jsx("a",{href:l,children:u}):u},c.id||c.url)})})},migrate(e){return Pm(e)}},non=[Knn,Ynn,Znn,Qnn,Jnn,eon,ton],oon=a.jsx(Zn,{icon:lde});function ron(e){return e?Math.min(3,e):3}const son=(e,t="large")=>{const n=Object.fromEntries(Object.entries(e??{}).filter(([r])=>["alt","id","link"].includes(r)));n.url=e?.sizes?.[t]?.url||e?.media_details?.sizes?.[t]?.source_url||e?.url||e?.source_url;const o=e?.sizes?.full?.url||e?.media_details?.sizes?.full?.source_url;return o&&(n.fullUrl=o),n},id=20,DM="none",v4="media",x4="attachment",Une="custom",ion=["noreferrer","noopener"],r3=["image"];function Xne(e,t,n,o,r){switch(n||t){case Hnn:case X2:return{href:e?.source_url||e?.url,linkDestination:v4,lightbox:r?.enabled?{...o?.lightbox,enabled:!1}:void 0};case Unn:case G2:return{href:e?.link,linkDestination:x4,lightbox:r?.enabled?{...o?.lightbox,enabled:!1}:void 0};case B9:return{href:void 0,lightbox:r?.enabled?void 0:{...o?.lightbox,enabled:!0},linkDestination:DM};case Eh:return{href:void 0,linkDestination:DM,lightbox:void 0}}return{}}function aon(e){const[t,n=1]=e.split("/").map(Number),o=t/n;return o===1/0||o===0?NaN:o}function con(e){let t=e;return e!==void 0&&t&&(ion.forEach(n=>{const o=new RegExp("\\b"+n+"\\b","gi");t=t.replace(o,"")}),t!==e&&(t=t.trim()),t||(t=void 0)),t}function Gne(e,{rel:t}){const n=e?"_blank":void 0;let o;return!n&&!t?o=void 0:o=con(t),{linkTarget:n,rel:o}}function lon(e,t){const n=e?.media_details?.sizes?.[t]?.source_url;return n?{url:n,width:void 0,height:void 0,sizeSlug:t}:{}}function Kne(e){return r3.some(t=>e.type.indexOf(t)===0)}function uon(e){const{attributes:t,isSelected:n,setAttributes:o,mediaPlaceholder:r,insertBlocksAfter:s,blockProps:i,__unstableLayoutClassNames:c,isContentLocked:l,multiGallerySelection:u}=e,{align:d,columns:p,imageCrop:f}=t;return a.jsxs("figure",{...i,className:oe(i.className,c,"blocks-gallery-grid",{[`align${d}`]:d,[`columns-${p}`]:p!==void 0,"columns-default":p===void 0,"is-cropped":f}),children:[i.children,n&&!i.children&&a.jsx(vd,{className:"blocks-gallery-media-placeholder-wrapper",children:r}),a.jsx(fb,{attributes:t,setAttributes:o,isSelected:n,insertBlocksAfter:s,showToolbarButton:!u&&!l,className:"blocks-gallery-caption",label:m("Gallery caption text"),placeholder:m("Add gallery caption")})]})}function don(e,t,n){return x.useMemo(()=>o(),[e,t]);function o(){if(!e||e.length===0)return;const{imageSizes:r}=n();let s={};t&&(s=e.reduce((c,l)=>{if(!l.id)return c;const u=r.reduce((d,p)=>{const f=l.sizes?.[p.slug]?.url,b=l.media_details?.sizes?.[p.slug]?.source_url;return{...d,[p.slug]:f||b}},{});return{...c,[parseInt(l.id,10)]:u}},{}));const i=Object.values(s);return r.filter(({slug:c})=>i.some(l=>l[c])).map(({name:c,slug:l})=>({value:l,label:c}))}}function pon(e,t){const[n,o]=x.useState([]);return x.useMemo(()=>r(),[e,t]);function r(){let s=!1;const i=n.filter(l=>e.find(u=>l.clientId===u.clientId));i.length<n.length&&(s=!0),e.forEach(l=>{l.fromSavedContent&&!i.find(u=>u.id===l.id)&&(s=!0,i.push(l))});const c=e.filter(l=>!i.find(u=>l.clientId&&u.clientId===l.clientId)&&t?.find(u=>u.id===l.id)&&!l.fromSavedContent);return(s||c?.length>0)&&o([...i,...c]),c.length>0?c:null}}const Yne=[];function fon(e){return G(t=>{var n;const o=e.map(r=>r.attributes.id).filter(r=>r!==void 0);return o.length===0?Yne:(n=t(Me).getMediaItems({include:o.join(","),per_page:-1,orderby:"include"}))!==null&&n!==void 0?n:Yne},[e])}function bon({blockGap:e,clientId:t}){const n="var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) )";let o=n,r=n,s;e&&(s=typeof e=="string"?us(e):us(e?.top)||n,r=typeof e=="string"?us(e):us(e?.left)||n,o=s===r?s:`${s} ${r}`);const i=`#block-${t} { --wp--style--unstable-gallery-gap: ${r==="0"?"0px":r}; gap: ${o} - }`;return EO({css:i}),null}const hon=8,Zne=[{icon:Mde,label:m("Link images to attachment pages"),value:G2,noticeText:m("Attachment Pages")},{icon:Oz,label:m("Link images to media files"),value:X2,noticeText:m("Media Files")},{icon:zz,label:m("Enlarge on click"),value:L9,noticeText:m("Lightbox effect"),infoText:m("Scale images with a lightbox effect")},{icon:jl,label:We("None","Media item link option"),value:Eh,noticeText:m("None")}],IT=["image"],mon=f0.isNative?m("Add media"):m("Drag and drop images, upload, or choose from your library."),gon=f0.isNative?{type:"stepper"}:{},Mon={name:"core/image"},zon=[];function Oon(e){const{setAttributes:t,attributes:n,className:o,clientId:r,isSelected:s,insertBlocksAfter:i,isContentLocked:c,onFocus:l}=e,[u]=Un("blocks.core/image.lightbox"),d=u?.allowEditing?Zne:Zne.filter(re=>re.value!==L9),{columns:p,imageCrop:f,randomOrder:b,linkTarget:h,linkTo:g,sizeSlug:z}=n,{__unstableMarkNextChangeAsNotPersistent:A,replaceInnerBlocks:_,updateBlockAttributes:v,selectBlock:M}=Oe(Q),{createSuccessNotice:y,createErrorNotice:k}=Oe(mt),{getBlock:S,getSettings:C,innerBlockImages:R,blockWasJustInserted:T,multiGallerySelection:E}=G(re=>{var pe;const{getBlockName:ke,getMultiSelectedBlockClientIds:Se,getSettings:se,getBlock:L,wasBlockJustInserted:U}=re(Q),ne=Se();return{getBlock:L,getSettings:se,innerBlockImages:(pe=L(r)?.innerBlocks)!==null&&pe!==void 0?pe:zon,blockWasJustInserted:U(r,"inserter_menu"),multiGallerySelection:ne.length&&ne.every(ve=>ke(ve)==="core/gallery")}},[r]),B=x.useMemo(()=>R?.map(re=>({clientId:re.clientId,id:re.attributes.id,url:re.attributes.url,attributes:re.attributes,fromSavedContent:!!re.originalContent})),[R]),N=fon(R),j=pon(B,N);x.useEffect(()=>{j?.forEach(re=>{A(),v(re.clientId,{...P(re.attributes),id:re.id,align:void 0})})},[j]);const I=don(N,s,C);function P(re){const pe=re.id?N.find(({id:se})=>se===re.id):null;let ke;re.className&&re.className!==""&&(ke=re.className);let Se;return re.linkTarget||re.rel?Se={linkTarget:re.linkTarget,rel:re.rel}:Se=Gne(h,n),{...son(pe,z),...Xne(pe,g,re?.linkDestination),...Se,className:ke,sizeSlug:z,caption:re.caption||pe.caption?.raw,alt:re.alt||pe.alt_text}}function $(re){const pe=f0.isNative&&re.id?N.find(({id:Se})=>Se===re.id):null,ke=pe?pe?.media_type:re.type;return IT.some(Se=>ke?.indexOf(Se)===0)||re.blob}function F(re){const pe=Object.prototype.toString.call(re)==="[object FileList]",ke=pe?Array.from(re).map(ve=>ve.url?ve:{blob:ls(ve)}):re;ke.every($)||k(m("If uploading to a gallery all files need to be image formats"),{id:"gallery-upload-invalid-file",type:"snackbar"});const Se=ke.filter(ve=>ve.url||$(ve)).map(ve=>ve.url?ve:{blob:ve.blob||ls(ve)}),se=Se.reduce((ve,qe,Pe)=>(ve[qe.id]=Pe,ve),{}),L=pe?R:R.filter(ve=>Se.find(qe=>qe.id===ve.attributes.id)),ne=Se.filter(ve=>!L.find(qe=>ve.id===qe.attributes.id)).map(ve=>Ee("core/image",{id:ve.id,blob:ve.blob,url:ve.url,caption:ve.caption,alt:ve.alt}));_(r,L.concat(ne).sort((ve,qe)=>se[ve.attributes.id]-se[qe.attributes.id])),ne?.length>0&&M(ne[0].clientId)}function X(re){k(re,{type:"snackbar"})}function Z(re){t({linkTo:re});const pe={},ke=[];S(r).innerBlocks.forEach(se=>{ke.push(se.clientId);const L=se.attributes.id?N.find(({id:U})=>U===se.attributes.id):null;pe[se.clientId]=Xne(L,re,!1,se.attributes,u)}),v(ke,pe,!0);const Se=[...d].find(se=>se.value===re);y(xe(m("All gallery image links updated to: %s"),Se.noticeText),{id:"gallery-attributes-linkTo",type:"snackbar"})}function V(re){t({columns:re})}function ee(){t({imageCrop:!f})}function te(){t({randomOrder:!b})}function J(re){const pe=re?"_blank":void 0;t({linkTarget:pe});const ke={},Se=[];S(r).innerBlocks.forEach(L=>{Se.push(L.clientId),ke[L.clientId]=Gne(pe,L.attributes)}),v(Se,ke,!0);const se=m(re?"All gallery images updated to open in new tab":"All gallery images updated to not open in new tab");y(se,{id:"gallery-attributes-openInNewTab",type:"snackbar"})}function ue(re){t({sizeSlug:re});const pe={},ke=[];S(r).innerBlocks.forEach(se=>{ke.push(se.clientId);const L=se.attributes.id?N.find(({id:U})=>U===se.attributes.id):null;pe[se.clientId]=lon(L,re)}),v(ke,pe,!0);const Se=I.find(se=>se.value===re);y(xe(m("All gallery image sizes updated to: %s"),Se.label),{id:"gallery-attributes-sizeSlug",type:"snackbar"})}x.useEffect(()=>{g||(A(),t({linkTo:window?.wp?.media?.view?.settings?.defaultProps?.link||Eh}))},[g]);const ce=!!B.length,me=ce&&B.some(re=>!!re.id),de=B.some(re=>f0.isNative?re.url?.indexOf("file:")===0:!re.id&&re.url?.indexOf("blob:")===0),Ae=f0.select({web:{addToGallery:!1,disableMediaButtons:de,value:{}},native:{addToGallery:me,isAppender:ce,disableMediaButtons:ce&&!s||de,value:me?B:{},autoOpenMediaUpload:!ce&&s&&T,onFocus:l}}),ye=a.jsx(au,{handleUpload:!1,icon:oon,labels:{title:m("Gallery"),instructions:mon},onSelect:F,accept:"image/*",allowedTypes:IT,multiple:!0,onError:X,...Ae}),Ne=Be({className:oe(o,"has-nested-images")}),je=f0.isNative&&{marginHorizontal:0,marginVertical:0},ie=Nt(Ne,{defaultBlock:Mon,directInsert:!0,orientation:"horizontal",renderAppender:!1,...je});if(!ce)return a.jsxs(vd,{...ie,children:[ie.children,ye]});const we=g&&g!=="none";return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[B.length>1&&a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Columns"),value:p||ron(B.length),onChange:V,min:1,max:Math.min(hon,B.length),...gon,required:!0,__next40pxDefaultSize:!0}),I?.length>0&&a.jsx(jn,{__nextHasNoMarginBottom:!0,label:m("Resolution"),help:m("Select the size of the source images."),value:z,options:I,onChange:ue,hideCancelButton:!0,size:"__unstable-large"}),f0.isNative?a.jsx(jn,{__nextHasNoMarginBottom:!0,label:m("Link"),value:g,onChange:Z,options:d,hideCancelButton:!0,size:"__unstable-large"}):null,a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Crop images to fit"),checked:!!f,onChange:ee}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Randomize order"),checked:!!b,onChange:te}),we&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open images in new tab"),checked:h==="_blank",onChange:J}),!I&&me&&a.jsxs(no,{className:"gallery-image-sizes",__nextHasNoMarginBottom:!0,children:[a.jsx(no.VisualLabel,{children:m("Resolution")}),a.jsxs(vd,{className:"gallery-image-sizes__loading",children:[a.jsx(Xn,{}),m("Loading options…")]})]})]})}),a.jsx(bt,{group:"block",children:a.jsx(Lc,{icon:xa,label:m("Link"),children:({onClose:re})=>a.jsx(Cn,{children:d.map(pe=>{const ke=g===pe.value;return a.jsx(Ct,{isSelected:ke,className:oe("components-dropdown-menu__menu-item",{"is-active":ke}),iconPosition:"left",icon:pe.icon,onClick:()=>{Z(pe.value),re()},role:"menuitemradio",info:pe.infoText,children:pe.label},pe.value)})})})}),a.jsxs(a.Fragment,{children:[!E&&a.jsx(bt,{group:"other",children:a.jsx(Pc,{allowedTypes:IT,accept:"image/*",handleUpload:!1,onSelect:F,name:m("Add"),multiple:!0,mediaIds:B.filter(re=>re.id).map(re=>re.id),addToGallery:me})}),a.jsx(bon,{blockGap:n.style?.spacing?.blockGap,clientId:r})]}),a.jsx(uon,{...e,isContentLocked:c,images:B,mediaPlaceholder:!ce||f0.isNative?ye:void 0,blockProps:ie,insertBlocksAfter:i,multiGallerySelection:E})]})}function yon({attributes:e}){const{caption:t,columns:n,imageCrop:o}=e,r=oe("has-nested-images",{[`columns-${n}`]:n!==void 0,"columns-default":n===void 0,"is-cropped":o}),s=Be.save({className:r}),i=Nt.save(s);return a.jsxs("figure",{...i,children:[i.children,!Ie.isEmpty(t)&&a.jsx(Ie.Content,{tagName:"figcaption",className:oe("blocks-gallery-caption",z0("caption")),value:t})]})}const Aon=e=>e?e.split(",").map(t=>parseInt(t,10)):[];function von(e){if(e.name==="core/gallery"&&e.attributes?.images.length>0){const t=e.attributes.images.map(({url:n,id:o,alt:r})=>Ee("core/image",{url:n,id:o?parseInt(o,10):null,alt:r,sizeSlug:e.attributes.sizeSlug,linkDestination:e.attributes.linkDestination}));delete e.attributes.ids,delete e.attributes.images,e.innerBlocks=t}return e}Bn("blocks.switchToBlockType.transformedBlock","core/gallery/update-third-party-transform-to",von);function xon(e,t){const o=(Array.isArray(t)?t:[t]).find(r=>r.name==="core/gallery"&&r.innerBlocks.length>0&&!r.attributes.images?.length>0&&!e.name.includes("core/"));if(o){const r=o.innerBlocks.map(({attributes:{url:i,id:c,alt:l}})=>({url:i,id:c?parseInt(c,10):null,alt:l})),s=r.map(({id:i})=>i);o.attributes.images=r,o.attributes.ids=s}return e}Bn("blocks.switchToBlockType.transformedBlock","core/gallery/update-third-party-transform-from",xon);const won={from:[{type:"block",isMultiBlock:!0,blocks:["core/image"],transform:e=>{let{align:t,sizeSlug:n}=e[0];t=e.every(s=>s.align===t)?t:void 0,n=e.every(s=>s.sizeSlug===n)?n:void 0;const r=e.filter(({url:s})=>s).map(s=>(s.width=void 0,s.height=void 0,Ee("core/image",s)));return Ee("core/gallery",{align:t,sizeSlug:n},r)}},{type:"shortcode",tag:"gallery",transform({named:{ids:e,columns:t=3,link:n,orderby:o}}){const r=Aon(e).map(c=>parseInt(c,10));let s=Eh;return n==="post"?s=G2:n==="file"&&(s=X2),Ee("core/gallery",{columns:parseInt(t,10),linkTo:s,randomOrder:o==="rand"},r.map(c=>Ee("core/image",{id:c})))},isMatch({named:e}){return e.ids!==void 0}},{type:"files",priority:1,isMatch(e){return e.length!==1&&e.every(t=>t.type.indexOf("image/")===0)},transform(e){const t=e.map(n=>Ee("core/image",{blob:ls(n)}));return Ee("core/gallery",{},t)}}],to:[{type:"block",blocks:["core/image"],transform:({align:e},t)=>t.length>0?t.map(({attributes:{url:n,alt:o,caption:r,title:s,href:i,rel:c,linkClass:l,id:u,sizeSlug:d,linkDestination:p,linkTarget:f,anchor:b,className:h}})=>Ee("core/image",{align:e,url:n,alt:o,caption:r,title:s,href:i,rel:c,linkClass:l,id:u,sizeSlug:d,linkDestination:p,linkTarget:f,anchor:b,className:h})):Ee("core/image",{align:e})}]},P9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/gallery",title:"Gallery",category:"media",allowedBlocks:["core/image"],description:"Display multiple images in a rich gallery.",keywords:["images","photos"],textdomain:"default",attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"rich-text",source:"rich-text",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},shortCodeTransforms:{type:"array",items:{type:"object"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"rich-text",source:"rich-text",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},randomOrder:{type:"boolean",default:!1},fixedHeight:{type:"boolean",default:!0},linkTarget:{type:"string"},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"},allowResize:{type:"boolean",default:!1}},providesContext:{allowResize:"allowResize",imageCrop:"imageCrop",fixedHeight:"fixedHeight"},supports:{anchor:!0,align:!0,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{color:!0,radius:!0}},html:!1,units:["px","em","rem","vh","vw"],spacing:{margin:!0,padding:!0,blockGap:["horizontal","vertical"],__experimentalSkipSerialization:["blockGap"],__experimentalDefaultControls:{blockGap:!0,margin:!1,padding:!1}},color:{text:!1,background:!0,gradients:!0},layout:{allowSwitching:!1,allowInheriting:!1,allowEditing:!1,default:{type:"flex"}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-gallery-editor",style:"wp-block-gallery"},{name:Ave}=P9,vve={icon:lde,example:{attributes:{columns:2},innerBlocks:[{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Glacial_lakes%2C_Bhutan.jpg"}},{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Sediment_off_the_Yucatan_Peninsula.jpg"}}]},transforms:won,edit:Oon,save:yon,deprecated:non},_on=()=>it({name:Ave,metadata:P9,settings:vve}),kon=Object.freeze(Object.defineProperty({__proto__:null,init:_on,metadata:P9,name:Ave,settings:vve},Symbol.toStringTag,{value:"Module"})),DT=e=>{if(e.tagName||(e={...e,tagName:"div"}),!e.customTextColor&&!e.customBackgroundColor)return e;const t={color:{}};e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor);const{customTextColor:n,customBackgroundColor:o,...r}=e;return{...r,style:t}},Son=[{attributes:{tagName:{type:"string",default:"div"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},supports:{__experimentalOnEnter:!0,__experimentalSettings:!0,align:["wide","full"],anchor:!0,ariaLabel:!0,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:["top","bottom"],padding:!0,blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},layout:!0},save({attributes:{tagName:e}}){return a.jsx(e,{...Nt.save(Be.save())})},isEligible:({layout:e})=>e?.inherit||e?.contentSize&&e?.type!=="constrained",migrate:e=>{const{layout:t=null}=e;if(t?.inherit||t?.contentSize)return{...e,layout:{...t,type:"constrained"}}}},{attributes:{tagName:{type:"string",default:"div"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},supports:{align:["wide","full"],anchor:!0,color:{gradients:!0,link:!0},spacing:{padding:!0},__experimentalBorder:{radius:!0}},save({attributes:e}){const{tagName:t}=e;return a.jsx(t,{...Be.save(),children:a.jsx("div",{className:"wp-block-group__inner-container",children:a.jsx(Ht.Content,{})})})}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1},migrate:DT,save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,textColor:o,customTextColor:r}=e,s=Pt("background-color",t),i=Pt("color",o),c=oe(s,i,{"has-text-color":o||r,"has-background":t||n}),l={backgroundColor:s?void 0:n,color:i?void 0:r};return a.jsx("div",{className:c,style:l,children:a.jsx("div",{className:"wp-block-group__inner-container",children:a.jsx(Ht.Content,{})})})}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}},migrate:DT,supports:{align:["wide","full"],anchor:!0,html:!1},save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,textColor:o,customTextColor:r}=e,s=Pt("background-color",t),i=Pt("color",o),c=oe(s,{"has-text-color":o||r,"has-background":t||n}),l={backgroundColor:s?void 0:n,color:i?void 0:r};return a.jsx("div",{className:c,style:l,children:a.jsx("div",{className:"wp-block-group__inner-container",children:a.jsx(Ht.Content,{})})})}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1},migrate:DT,save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n}=e,o=Pt("background-color",t),r=oe(o,{"has-background":t||n}),s={backgroundColor:o?void 0:n};return a.jsx("div",{className:r,style:s,children:a.jsx(Ht.Content,{})})}}],Con=(e="group")=>({group:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Z"})}),"group-row":a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V10Z"})}),"group-stack":a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm0 17a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V27Z"})}),"group-grid":a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V10ZM0 27a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V27Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V27Z"})})})?.[e];function qon({attributes:e={style:void 0,backgroundColor:void 0,textColor:void 0,fontSize:void 0},usedLayoutType:t="",hasInnerBlocks:n=!1}){const{style:o,backgroundColor:r,textColor:s,fontSize:i}=e,[c,l]=x.useState(!n&&!r&&!i&&!s&&!o&&t!=="flex"&&t!=="grid");return x.useEffect(()=>{(n||r||i||s||o||t==="flex")&&l(!1)},[r,i,s,o,t,n]),[c,l]}function Ron({name:e,onSelect:t}){const n=G(r=>r(kt).getBlockVariations(e,"block"),[e]),o=Be({className:"wp-block-group__placeholder"});return x.useEffect(()=>{n&&n.length===1&&t(n[0])},[t,n]),a.jsx("div",{...o,children:a.jsx(vo,{instructions:m("Group blocks together. Select a layout:"),children:a.jsx("ul",{role:"list",className:"wp-block-group-placeholder__variations","aria-label":m("Block variations"),children:n.map(r=>a.jsx("li",{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",icon:Con(r.name),iconSize:48,onClick:()=>t(r),className:"wp-block-group-placeholder__variation-button",label:`${r.title}: ${r.description}`})},r.name))})})})}function Ton({tagName:e,onSelectTagName:t}){const n={header:m("The <header> element should represent introductory content, typically a group of introductory or navigational aids."),main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),article:m("The <article> element should represent a self-contained, syndicatable portion of the document."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content."),footer:m("The <footer> element should represent a footer for its nearest sectioning element (e.g.: <section>, <article>, <main> etc.).")};return a.jsx(et,{group:"advanced",children:a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"}],value:e,onChange:t,help:n[e]})})}function Eon({attributes:e,name:t,setAttributes:n,clientId:o}){const{hasInnerBlocks:r,themeSupportsLayout:s}=G(M=>{const{getBlock:y,getSettings:k}=M(Q),S=y(o);return{hasInnerBlocks:!!(S&&S.innerBlocks.length),themeSupportsLayout:k()?.supportsLayout}},[o]),{tagName:i="div",templateLock:c,allowedBlocks:l,layout:u={}}=e,{type:d="default"}=u,p=s||d==="flex"||d==="grid",f=x.useRef(),b=Be({ref:f}),[h,g]=qon({attributes:e,usedLayoutType:d,hasInnerBlocks:r});let z;h?z=!1:r||(z=Ht.ButtonBlockAppender);const A=Nt(p?b:{className:"wp-block-group__inner-container"},{dropZoneElement:f.current,templateLock:c,allowedBlocks:l,renderAppender:z}),{selectBlock:_}=Oe(Q),v=M=>{n(M.attributes),_(o,-1),g(!1)};return a.jsxs(a.Fragment,{children:[a.jsx(Ton,{tagName:i,onSelectTagName:M=>n({tagName:M})}),h&&a.jsxs(vd,{children:[A.children,a.jsx(Ron,{name:t,onSelect:v})]}),p&&!h&&a.jsx(i,{...A}),!p&&!h&&a.jsx(i,{...b,children:a.jsx("div",{...A})})]})}function Won({attributes:{tagName:e}}){return a.jsx(e,{...Nt.save(Be.save())})}const Non={from:[{type:"block",isMultiBlock:!0,blocks:["*"],__experimentalConvert(e){const t=["wide","full"],n=e.reduce((r,s)=>{const{align:i}=s.attributes;return t.indexOf(i)>t.indexOf(r)?i:r},void 0),o=e.map(r=>Ee(r.name,r.attributes,r.innerBlocks));return Ee("core/group",{align:n,layout:{type:"constrained"}},o)}}]},FT={innerBlocks:[{name:"core/paragraph",attributes:{customTextColor:"#cf2e2e",fontSize:"large",content:m("One.")}},{name:"core/paragraph",attributes:{customTextColor:"#ff6900",fontSize:"large",content:m("Two.")}},{name:"core/paragraph",attributes:{customTextColor:"#fcb900",fontSize:"large",content:m("Three.")}},{name:"core/paragraph",attributes:{customTextColor:"#00d084",fontSize:"large",content:m("Four.")}},{name:"core/paragraph",attributes:{customTextColor:"#0693e3",fontSize:"large",content:m("Five.")}},{name:"core/paragraph",attributes:{customTextColor:"#9b51e0",fontSize:"large",content:m("Six.")}}]},Bon=[{name:"group",title:m("Group"),description:m("Gather blocks in a container."),attributes:{layout:{type:"constrained"}},isDefault:!0,scope:["block","inserter","transform"],isActive:e=>!e.layout||!e.layout?.type||e.layout?.type==="default"||e.layout?.type==="constrained",icon:Zf},{name:"group-row",title:We("Row","single horizontal line"),description:m("Arrange blocks horizontally."),attributes:{layout:{type:"flex",flexWrap:"nowrap"}},scope:["block","inserter","transform"],isActive:e=>e.layout?.type==="flex"&&(!e.layout?.orientation||e.layout?.orientation==="horizontal"),icon:Nde,example:FT},{name:"group-stack",title:m("Stack"),description:m("Arrange blocks vertically."),attributes:{layout:{type:"flex",orientation:"vertical"}},scope:["block","inserter","transform"],isActive:e=>e.layout?.type==="flex"&&e.layout?.orientation==="vertical",icon:Dde,example:FT},{name:"group-grid",title:m("Grid"),description:m("Arrange blocks in a grid."),attributes:{layout:{type:"grid"}},scope:["block","inserter","transform"],isActive:e=>e.layout?.type==="grid",icon:X3,example:FT}],j9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/group",title:"Group",category:"design",description:"Gather blocks in a layout container.",keywords:["container","wrapper","row","section"],textdomain:"default",attributes:{tagName:{type:"string",default:"div"},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]},allowedBlocks:{type:"array"}},supports:{__experimentalOnEnter:!0,__experimentalOnMerge:!0,__experimentalSettings:!0,align:["wide","full"],anchor:!0,ariaLabel:!0,html:!1,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},color:{gradients:!0,heading:!0,button:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},shadow:!0,spacing:{margin:["top","bottom"],padding:!0,blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},dimensions:{minHeight:!0},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},position:{sticky:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowSizingOnChildren:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-group-editor",style:"wp-block-group"},{name:I9}=j9,xve={icon:Zf,example:{attributes:{layout:{type:"constrained",justifyContent:"center"},style:{spacing:{padding:{top:"4em",right:"3em",bottom:"4em",left:"3em"}}}},innerBlocks:[{name:"core/heading",attributes:{content:m("La Mancha"),textAlign:"center"}},{name:"core/paragraph",attributes:{align:"center",content:m("In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.")}},{name:"core/spacer",attributes:{height:"10px"}},{name:"core/button",attributes:{text:m("Read more")}}],viewportWidth:600},transforms:Non,edit:Eon,save:Won,deprecated:Son,variations:Bon},Lon=()=>it({name:I9,metadata:j9,settings:xve}),Pon=Object.freeze(Object.defineProperty({__proto__:null,init:Lon,metadata:j9,name:I9,settings:xve},Symbol.toStringTag,{value:"Module"})),D9={className:!1,anchor:!0},hk={align:{type:"string"},content:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},level:{type:"number",default:2},placeholder:{type:"string"}},F9=e=>{if(!e.customTextColor)return e;const t={color:{text:e.customTextColor}},{customTextColor:n,...o}=e;return{...o,style:t}},wve=["left","right","center"],mk=e=>{const{align:t,...n}=e;return wve.includes(t)?{...n,textAlign:t}:e},jon={supports:D9,attributes:{...hk,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>F9(mk(e)),save({attributes:e}){const{align:t,level:n,content:o,textColor:r,customTextColor:s}=e,i="h"+n,c=Pt("color",r),l=oe({[c]:c});return a.jsx(Ie.Content,{className:l||void 0,tagName:i,style:{textAlign:t,color:c?void 0:s},value:o})}},Ion={attributes:{...hk,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>F9(mk(e)),save({attributes:e}){const{align:t,content:n,customTextColor:o,level:r,textColor:s}=e,i="h"+r,c=Pt("color",s),l=oe({[c]:c,[`has-text-align-${t}`]:t});return a.jsx(Ie.Content,{className:l||void 0,tagName:i,style:{color:c?void 0:o},value:n})},supports:D9},Don={supports:D9,attributes:{...hk,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>F9(mk(e)),save({attributes:e}){const{align:t,content:n,customTextColor:o,level:r,textColor:s}=e,i="h"+r,c=Pt("color",s),l=oe({[c]:c,"has-text-color":s||o,[`has-text-align-${t}`]:t});return a.jsx(Ie.Content,{className:l||void 0,tagName:i,style:{color:c?void 0:o},value:n})}},Fon={supports:{align:["wide","full"],anchor:!0,className:!1,color:{link:!0},fontSize:!0,lineHeight:!0,__experimentalSelector:{"core/heading/h1":"h1","core/heading/h2":"h2","core/heading/h3":"h3","core/heading/h4":"h4","core/heading/h5":"h5","core/heading/h6":"h6"},__unstablePasteTextInline:!0},attributes:hk,isEligible:({align:e})=>wve.includes(e),migrate:mk,save({attributes:e}){const{align:t,content:n,level:o}=e,r="h"+o,s=oe({[`has-text-align-${t}`]:t});return a.jsx(r,{...Be.save({className:s}),children:a.jsx(Ie.Content,{value:n})})}},$on={supports:{align:["wide","full"],anchor:!0,className:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0,textTransform:!0}},__experimentalSelector:"h1,h2,h3,h4,h5,h6",__unstablePasteTextInline:!0,__experimentalSlashInserter:!0},attributes:{textAlign:{type:"string"},content:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:"",role:"content"},level:{type:"number",default:2},placeholder:{type:"string"}},save({attributes:e}){const{textAlign:t,content:n,level:o}=e,r="h"+o,s=oe({[`has-text-align-${t}`]:t});return a.jsx(r,{...Be.save({className:s}),children:a.jsx(Ie.Content,{value:n})})}},Von=[$on,Fon,Don,Ion,jon],mN={},Hon=e=>{const t=document.createElement("div");return t.innerHTML=e,t.innerText},Uon=e=>ms(Hon(e)).replace(/[^\p{L}\p{N}]+/gu,"-").toLowerCase().replace(/(^-+)|(-+$)/g,""),$T=(e,t)=>{const n=Uon(t);if(n==="")return null;delete mN[e];let o=n,r=0;for(;Object.values(mN).includes(o);)r+=1,o=n+"-"+r;return o},Qne=(e,t)=>{mN[e]=t};function Xon({attributes:e,setAttributes:t,mergeBlocks:n,onReplace:o,style:r,clientId:s}){const{textAlign:i,content:c,level:l,levelOptions:u,placeholder:d,anchor:p}=e,f="h"+l,b=Be({className:oe({[`has-text-align-${i}`]:i}),style:r}),h=Jr(),{canGenerateAnchors:g}=G(_=>{const{getGlobalBlockCount:v,getSettings:M}=_(Q);return{canGenerateAnchors:!!M().generateAnchors||v("core/table-of-contents")>0}},[]),{__unstableMarkNextChangeAsNotPersistent:z}=Oe(Q);x.useEffect(()=>{if(g)return!p&&c&&(z(),t({anchor:$T(s,c)})),Qne(s,p),()=>Qne(s,null)},[p,c,s,g]);const A=_=>{const v={content:_};g&&(!p||!_||$T(s,c)===p)&&(v.anchor=$T(s,_)),t(v)};return a.jsxs(a.Fragment,{children:[h==="default"&&a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:l,options:u,onChange:_=>t({level:_})}),a.jsx(nr,{value:i,onChange:_=>{t({textAlign:_})}})]}),a.jsx(Ie,{identifier:"content",tagName:f,value:c,onChange:A,onMerge:n,onReplace:o,onRemove:()=>o([]),placeholder:d||m("Heading"),textAlign:i,...f0.isNative&&{deleteEnter:!0},...b})]})}function Gon({attributes:e}){const{textAlign:t,content:n,level:o}=e,r="h"+o,s=oe({[`has-text-align-${t}`]:t});return a.jsx(r,{...Be.save({className:s}),children:a.jsx(Ie.Content,{value:n})})}function Kon(e){return Number(e.substr(1))}const Yon={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>e.map(({content:t,anchor:n,align:o,metadata:r})=>Ee("core/heading",{content:t,anchor:n,textAlign:o,metadata:U2(r,"core/heading",({content:s})=>({content:s}))}))},{type:"raw",selector:"h1,h2,h3,h4,h5,h6",schema:({phrasingContentSchema:e,isPaste:t})=>{const n={children:e,attributes:t?[]:["style","id"]};return{h1:n,h2:n,h3:n,h4:n,h5:n,h6:n}},transform(e){const t=Nl("core/heading",e.outerHTML),{textAlign:n}=e.style||{};return t.level=Kon(e.nodeName),(n==="left"||n==="center"||n==="right")&&(t.align=n),Ee("core/heading",t)}},...[1,2,3,4,5,6].map(e=>({type:"prefix",prefix:Array(e+1).join("#"),transform(t){return Ee("core/heading",{level:e,content:t})}})),...[1,2,3,4,5,6].map(e=>({type:"enter",regExp:new RegExp(`^/(h|H)${e}$`),transform:()=>Ee("core/heading",{level:e})}))],to:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>e.map(({content:t,textAlign:n,metadata:o})=>Ee("core/paragraph",{content:t,align:n,metadata:U2(o,"core/paragraph",({content:r})=>({content:r}))}))}]},$9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/heading",title:"Heading",category:"text",description:"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.",keywords:["title","subtitle"],textdomain:"default",attributes:{textAlign:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"h1,h2,h3,h4,h5,h6",role:"content"},level:{type:"number",default:2},levelOptions:{type:"array"},placeholder:{type:"string"}},supports:{align:["wide","full"],anchor:!0,className:!0,splitting:!0,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},__unstablePasteTextInline:!0,__experimentalSlashInserter:!0,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-heading-editor",style:"wp-block-heading"},{name:_ve}=$9,kve={icon:eQe,example:{attributes:{content:m("Code is Poetry"),level:2,textAlign:"center"}},__experimentalLabel(e,{context:t}){const{content:n,level:o}=e,r=e?.metadata?.name,s=n?.trim().length>0;if(t==="list-view"&&(r||s))return r||n;if(t==="accessibility")return s?xe(m("Level %1$s. %2$s"),o,n):xe(m("Level %s. Empty."),o)},transforms:Yon,deprecated:Von,merge(e,t){return{content:(e.content||"")+(t.content||"")}},edit:Xon,save:Gon},Zon=()=>it({name:_ve,metadata:$9,settings:kve}),Qon=Object.freeze(Object.defineProperty({__proto__:null,init:Zon,metadata:$9,name:_ve,settings:kve},Symbol.toStringTag,{value:"Module"})),Jon=e=>e.preventDefault();function ern({attributes:e,setAttributes:t,context:n}){var o;const r=G(u=>u(Me).getEntityRecord("root","__unstableBase")?.home,[]),{textColor:s,backgroundColor:i,style:c}=n,l=Be({className:oe("wp-block-navigation-item",{"has-text-color":!!s||!!c?.color?.text,[`has-${s}-color`]:!!s,"has-background":!!i||!!c?.color?.background,[`has-${i}-background-color`]:!!i}),style:{color:c?.color?.text,backgroundColor:c?.color?.background}});return a.jsx("div",{...l,children:a.jsx("a",{className:"wp-block-home-link__content wp-block-navigation-item__content",href:r,onClick:Jon,children:a.jsx(Ie,{identifier:"label",className:"wp-block-home-link__label",value:(o=e.label)!==null&&o!==void 0?o:m("Home"),onChange:u=>{t({label:u})},"aria-label":m("Home link text"),placeholder:m("Add home link"),withoutInteractiveFormatting:!0,allowedFormats:["core/bold","core/italic","core/image","core/strikethrough"]})})})}function trn(){return a.jsx(Ht.Content,{})}const V9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/home-link",category:"design",parent:["core/navigation"],title:"Home Link",description:"Create a link that always points to the homepage of the site. Usually not necessary if there is already a site title link present in the header.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","fontSize","customFontSize","style"],supports:{reusable:!1,html:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-home-link-editor",style:"wp-block-home-link"},{name:Sve}=V9,Cve={icon:dde,edit:ern,save:trn,example:{attributes:{label:We("Home Link","block example")}}},nrn=()=>it({name:Sve,metadata:V9,settings:Cve}),orn=Object.freeze(Object.defineProperty({__proto__:null,init:nrn,metadata:V9,name:Sve,settings:Cve},Symbol.toStringTag,{value:"Module"})),rrn=` + }`;return EO({css:i}),null}const hon=8,Zne=[{icon:Mde,label:m("Link images to attachment pages"),value:G2,noticeText:m("Attachment Pages")},{icon:Oz,label:m("Link images to media files"),value:X2,noticeText:m("Media Files")},{icon:zz,label:m("Enlarge on click"),value:B9,noticeText:m("Lightbox effect"),infoText:m("Scale images with a lightbox effect")},{icon:Pl,label:We("None","Media item link option"),value:Eh,noticeText:m("None")}],jT=["image"],mon=f0.isNative?m("Add media"):m("Drag and drop images, upload, or choose from your library."),gon=f0.isNative?{type:"stepper"}:{},Mon={name:"core/image"},zon=[];function Oon(e){const{setAttributes:t,attributes:n,className:o,clientId:r,isSelected:s,insertBlocksAfter:i,isContentLocked:c,onFocus:l}=e,[u]=Un("blocks.core/image.lightbox"),d=u?.allowEditing?Zne:Zne.filter(re=>re.value!==B9),{columns:p,imageCrop:f,randomOrder:b,linkTarget:h,linkTo:g,sizeSlug:z}=n,{__unstableMarkNextChangeAsNotPersistent:A,replaceInnerBlocks:_,updateBlockAttributes:v,selectBlock:M}=Oe(Q),{createSuccessNotice:y,createErrorNotice:k}=Oe(mt),{getBlock:S,getSettings:C,innerBlockImages:R,blockWasJustInserted:T,multiGallerySelection:E}=G(re=>{var pe;const{getBlockName:ke,getMultiSelectedBlockClientIds:Se,getSettings:se,getBlock:L,wasBlockJustInserted:U}=re(Q),ne=Se();return{getBlock:L,getSettings:se,innerBlockImages:(pe=L(r)?.innerBlocks)!==null&&pe!==void 0?pe:zon,blockWasJustInserted:U(r,"inserter_menu"),multiGallerySelection:ne.length&&ne.every(ve=>ke(ve)==="core/gallery")}},[r]),B=x.useMemo(()=>R?.map(re=>({clientId:re.clientId,id:re.attributes.id,url:re.attributes.url,attributes:re.attributes,fromSavedContent:!!re.originalContent})),[R]),N=fon(R),j=pon(B,N);x.useEffect(()=>{j?.forEach(re=>{A(),v(re.clientId,{...P(re.attributes),id:re.id,align:void 0})})},[j]);const I=don(N,s,C);function P(re){const pe=re.id?N.find(({id:se})=>se===re.id):null;let ke;re.className&&re.className!==""&&(ke=re.className);let Se;return re.linkTarget||re.rel?Se={linkTarget:re.linkTarget,rel:re.rel}:Se=Gne(h,n),{...son(pe,z),...Xne(pe,g,re?.linkDestination),...Se,className:ke,sizeSlug:z,caption:re.caption||pe.caption?.raw,alt:re.alt||pe.alt_text}}function $(re){const pe=f0.isNative&&re.id?N.find(({id:Se})=>Se===re.id):null,ke=pe?pe?.media_type:re.type;return jT.some(Se=>ke?.indexOf(Se)===0)||re.blob}function F(re){const pe=Object.prototype.toString.call(re)==="[object FileList]",ke=pe?Array.from(re).map(ve=>ve.url?ve:{blob:ls(ve)}):re;ke.every($)||k(m("If uploading to a gallery all files need to be image formats"),{id:"gallery-upload-invalid-file",type:"snackbar"});const Se=ke.filter(ve=>ve.url||$(ve)).map(ve=>ve.url?ve:{blob:ve.blob||ls(ve)}),se=Se.reduce((ve,qe,Pe)=>(ve[qe.id]=Pe,ve),{}),L=pe?R:R.filter(ve=>Se.find(qe=>qe.id===ve.attributes.id)),ne=Se.filter(ve=>!L.find(qe=>ve.id===qe.attributes.id)).map(ve=>Ee("core/image",{id:ve.id,blob:ve.blob,url:ve.url,caption:ve.caption,alt:ve.alt}));_(r,L.concat(ne).sort((ve,qe)=>se[ve.attributes.id]-se[qe.attributes.id])),ne?.length>0&&M(ne[0].clientId)}function X(re){k(re,{type:"snackbar"})}function Z(re){t({linkTo:re});const pe={},ke=[];S(r).innerBlocks.forEach(se=>{ke.push(se.clientId);const L=se.attributes.id?N.find(({id:U})=>U===se.attributes.id):null;pe[se.clientId]=Xne(L,re,!1,se.attributes,u)}),v(ke,pe,!0);const Se=[...d].find(se=>se.value===re);y(xe(m("All gallery image links updated to: %s"),Se.noticeText),{id:"gallery-attributes-linkTo",type:"snackbar"})}function V(re){t({columns:re})}function ee(){t({imageCrop:!f})}function te(){t({randomOrder:!b})}function J(re){const pe=re?"_blank":void 0;t({linkTarget:pe});const ke={},Se=[];S(r).innerBlocks.forEach(L=>{Se.push(L.clientId),ke[L.clientId]=Gne(pe,L.attributes)}),v(Se,ke,!0);const se=m(re?"All gallery images updated to open in new tab":"All gallery images updated to not open in new tab");y(se,{id:"gallery-attributes-openInNewTab",type:"snackbar"})}function ue(re){t({sizeSlug:re});const pe={},ke=[];S(r).innerBlocks.forEach(se=>{ke.push(se.clientId);const L=se.attributes.id?N.find(({id:U})=>U===se.attributes.id):null;pe[se.clientId]=lon(L,re)}),v(ke,pe,!0);const Se=I.find(se=>se.value===re);y(xe(m("All gallery image sizes updated to: %s"),Se.label),{id:"gallery-attributes-sizeSlug",type:"snackbar"})}x.useEffect(()=>{g||(A(),t({linkTo:window?.wp?.media?.view?.settings?.defaultProps?.link||Eh}))},[g]);const ce=!!B.length,me=ce&&B.some(re=>!!re.id),de=B.some(re=>f0.isNative?re.url?.indexOf("file:")===0:!re.id&&re.url?.indexOf("blob:")===0),Ae=f0.select({web:{addToGallery:!1,disableMediaButtons:de,value:{}},native:{addToGallery:me,isAppender:ce,disableMediaButtons:ce&&!s||de,value:me?B:{},autoOpenMediaUpload:!ce&&s&&T,onFocus:l}}),ye=a.jsx(iu,{handleUpload:!1,icon:oon,labels:{title:m("Gallery"),instructions:mon},onSelect:F,accept:"image/*",allowedTypes:jT,multiple:!0,onError:X,...Ae}),Ne=Be({className:oe(o,"has-nested-images")}),je=f0.isNative&&{marginHorizontal:0,marginVertical:0},ie=Nt(Ne,{defaultBlock:Mon,directInsert:!0,orientation:"horizontal",renderAppender:!1,...je});if(!ce)return a.jsxs(vd,{...ie,children:[ie.children,ye]});const we=g&&g!=="none";return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[B.length>1&&a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Columns"),value:p||ron(B.length),onChange:V,min:1,max:Math.min(hon,B.length),...gon,required:!0,__next40pxDefaultSize:!0}),I?.length>0&&a.jsx(Pn,{__nextHasNoMarginBottom:!0,label:m("Resolution"),help:m("Select the size of the source images."),value:z,options:I,onChange:ue,hideCancelButton:!0,size:"__unstable-large"}),f0.isNative?a.jsx(Pn,{__nextHasNoMarginBottom:!0,label:m("Link"),value:g,onChange:Z,options:d,hideCancelButton:!0,size:"__unstable-large"}):null,a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Crop images to fit"),checked:!!f,onChange:ee}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Randomize order"),checked:!!b,onChange:te}),we&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open images in new tab"),checked:h==="_blank",onChange:J}),!I&&me&&a.jsxs(no,{className:"gallery-image-sizes",__nextHasNoMarginBottom:!0,children:[a.jsx(no.VisualLabel,{children:m("Resolution")}),a.jsxs(vd,{className:"gallery-image-sizes__loading",children:[a.jsx(Xn,{}),m("Loading options…")]})]})]})}),a.jsx(bt,{group:"block",children:a.jsx(Lc,{icon:xa,label:m("Link"),children:({onClose:re})=>a.jsx(Cn,{children:d.map(pe=>{const ke=g===pe.value;return a.jsx(Ct,{isSelected:ke,className:oe("components-dropdown-menu__menu-item",{"is-active":ke}),iconPosition:"left",icon:pe.icon,onClick:()=>{Z(pe.value),re()},role:"menuitemradio",info:pe.infoText,children:pe.label},pe.value)})})})}),a.jsxs(a.Fragment,{children:[!E&&a.jsx(bt,{group:"other",children:a.jsx(Pc,{allowedTypes:jT,accept:"image/*",handleUpload:!1,onSelect:F,name:m("Add"),multiple:!0,mediaIds:B.filter(re=>re.id).map(re=>re.id),addToGallery:me})}),a.jsx(bon,{blockGap:n.style?.spacing?.blockGap,clientId:r})]}),a.jsx(uon,{...e,isContentLocked:c,images:B,mediaPlaceholder:!ce||f0.isNative?ye:void 0,blockProps:ie,insertBlocksAfter:i,multiGallerySelection:E})]})}function yon({attributes:e}){const{caption:t,columns:n,imageCrop:o}=e,r=oe("has-nested-images",{[`columns-${n}`]:n!==void 0,"columns-default":n===void 0,"is-cropped":o}),s=Be.save({className:r}),i=Nt.save(s);return a.jsxs("figure",{...i,children:[i.children,!Ie.isEmpty(t)&&a.jsx(Ie.Content,{tagName:"figcaption",className:oe("blocks-gallery-caption",z0("caption")),value:t})]})}const Aon=e=>e?e.split(",").map(t=>parseInt(t,10)):[];function von(e){if(e.name==="core/gallery"&&e.attributes?.images.length>0){const t=e.attributes.images.map(({url:n,id:o,alt:r})=>Ee("core/image",{url:n,id:o?parseInt(o,10):null,alt:r,sizeSlug:e.attributes.sizeSlug,linkDestination:e.attributes.linkDestination}));delete e.attributes.ids,delete e.attributes.images,e.innerBlocks=t}return e}Bn("blocks.switchToBlockType.transformedBlock","core/gallery/update-third-party-transform-to",von);function xon(e,t){const o=(Array.isArray(t)?t:[t]).find(r=>r.name==="core/gallery"&&r.innerBlocks.length>0&&!r.attributes.images?.length>0&&!e.name.includes("core/"));if(o){const r=o.innerBlocks.map(({attributes:{url:i,id:c,alt:l}})=>({url:i,id:c?parseInt(c,10):null,alt:l})),s=r.map(({id:i})=>i);o.attributes.images=r,o.attributes.ids=s}return e}Bn("blocks.switchToBlockType.transformedBlock","core/gallery/update-third-party-transform-from",xon);const won={from:[{type:"block",isMultiBlock:!0,blocks:["core/image"],transform:e=>{let{align:t,sizeSlug:n}=e[0];t=e.every(s=>s.align===t)?t:void 0,n=e.every(s=>s.sizeSlug===n)?n:void 0;const r=e.filter(({url:s})=>s).map(s=>(s.width=void 0,s.height=void 0,Ee("core/image",s)));return Ee("core/gallery",{align:t,sizeSlug:n},r)}},{type:"shortcode",tag:"gallery",transform({named:{ids:e,columns:t=3,link:n,orderby:o}}){const r=Aon(e).map(c=>parseInt(c,10));let s=Eh;return n==="post"?s=G2:n==="file"&&(s=X2),Ee("core/gallery",{columns:parseInt(t,10),linkTo:s,randomOrder:o==="rand"},r.map(c=>Ee("core/image",{id:c})))},isMatch({named:e}){return e.ids!==void 0}},{type:"files",priority:1,isMatch(e){return e.length!==1&&e.every(t=>t.type.indexOf("image/")===0)},transform(e){const t=e.map(n=>Ee("core/image",{blob:ls(n)}));return Ee("core/gallery",{},t)}}],to:[{type:"block",blocks:["core/image"],transform:({align:e},t)=>t.length>0?t.map(({attributes:{url:n,alt:o,caption:r,title:s,href:i,rel:c,linkClass:l,id:u,sizeSlug:d,linkDestination:p,linkTarget:f,anchor:b,className:h}})=>Ee("core/image",{align:e,url:n,alt:o,caption:r,title:s,href:i,rel:c,linkClass:l,id:u,sizeSlug:d,linkDestination:p,linkTarget:f,anchor:b,className:h})):Ee("core/image",{align:e})}]},L9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/gallery",title:"Gallery",category:"media",allowedBlocks:["core/image"],description:"Display multiple images in a rich gallery.",keywords:["images","photos"],textdomain:"default",attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"rich-text",source:"rich-text",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},shortCodeTransforms:{type:"array",items:{type:"object"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"rich-text",source:"rich-text",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},randomOrder:{type:"boolean",default:!1},fixedHeight:{type:"boolean",default:!0},linkTarget:{type:"string"},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"},allowResize:{type:"boolean",default:!1}},providesContext:{allowResize:"allowResize",imageCrop:"imageCrop",fixedHeight:"fixedHeight"},supports:{anchor:!0,align:!0,__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{color:!0,radius:!0}},html:!1,units:["px","em","rem","vh","vw"],spacing:{margin:!0,padding:!0,blockGap:["horizontal","vertical"],__experimentalSkipSerialization:["blockGap"],__experimentalDefaultControls:{blockGap:!0,margin:!1,padding:!1}},color:{text:!1,background:!0,gradients:!0},layout:{allowSwitching:!1,allowInheriting:!1,allowEditing:!1,default:{type:"flex"}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-gallery-editor",style:"wp-block-gallery"},{name:yve}=L9,Ave={icon:lde,example:{attributes:{columns:2},innerBlocks:[{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Glacial_lakes%2C_Bhutan.jpg"}},{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Sediment_off_the_Yucatan_Peninsula.jpg"}}]},transforms:won,edit:Oon,save:yon,deprecated:non},_on=()=>it({name:yve,metadata:L9,settings:Ave}),kon=Object.freeze(Object.defineProperty({__proto__:null,init:_on,metadata:L9,name:yve,settings:Ave},Symbol.toStringTag,{value:"Module"})),IT=e=>{if(e.tagName||(e={...e,tagName:"div"}),!e.customTextColor&&!e.customBackgroundColor)return e;const t={color:{}};e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor);const{customTextColor:n,customBackgroundColor:o,...r}=e;return{...r,style:t}},Son=[{attributes:{tagName:{type:"string",default:"div"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},supports:{__experimentalOnEnter:!0,__experimentalSettings:!0,align:["wide","full"],anchor:!0,ariaLabel:!0,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:["top","bottom"],padding:!0,blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},layout:!0},save({attributes:{tagName:e}}){return a.jsx(e,{...Nt.save(Be.save())})},isEligible:({layout:e})=>e?.inherit||e?.contentSize&&e?.type!=="constrained",migrate:e=>{const{layout:t=null}=e;if(t?.inherit||t?.contentSize)return{...e,layout:{...t,type:"constrained"}}}},{attributes:{tagName:{type:"string",default:"div"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},supports:{align:["wide","full"],anchor:!0,color:{gradients:!0,link:!0},spacing:{padding:!0},__experimentalBorder:{radius:!0}},save({attributes:e}){const{tagName:t}=e;return a.jsx(t,{...Be.save(),children:a.jsx("div",{className:"wp-block-group__inner-container",children:a.jsx(Ht.Content,{})})})}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1},migrate:IT,save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,textColor:o,customTextColor:r}=e,s=Pt("background-color",t),i=Pt("color",o),c=oe(s,i,{"has-text-color":o||r,"has-background":t||n}),l={backgroundColor:s?void 0:n,color:i?void 0:r};return a.jsx("div",{className:c,style:l,children:a.jsx("div",{className:"wp-block-group__inner-container",children:a.jsx(Ht.Content,{})})})}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}},migrate:IT,supports:{align:["wide","full"],anchor:!0,html:!1},save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,textColor:o,customTextColor:r}=e,s=Pt("background-color",t),i=Pt("color",o),c=oe(s,{"has-text-color":o||r,"has-background":t||n}),l={backgroundColor:s?void 0:n,color:i?void 0:r};return a.jsx("div",{className:c,style:l,children:a.jsx("div",{className:"wp-block-group__inner-container",children:a.jsx(Ht.Content,{})})})}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1},migrate:IT,save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n}=e,o=Pt("background-color",t),r=oe(o,{"has-background":t||n}),s={backgroundColor:o?void 0:n};return a.jsx("div",{className:r,style:s,children:a.jsx(Ht.Content,{})})}}],Con=(e="group")=>({group:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Z"})}),"group-row":a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V10Z"})}),"group-stack":a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm0 17a2 2 0 0 1 2-2h44a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V27Z"})}),"group-grid":a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"48",height:"48",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M0 10a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V10Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V10ZM0 27a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V27Zm25 0a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H27a2 2 0 0 1-2-2V27Z"})})})?.[e];function qon({attributes:e={style:void 0,backgroundColor:void 0,textColor:void 0,fontSize:void 0},usedLayoutType:t="",hasInnerBlocks:n=!1}){const{style:o,backgroundColor:r,textColor:s,fontSize:i}=e,[c,l]=x.useState(!n&&!r&&!i&&!s&&!o&&t!=="flex"&&t!=="grid");return x.useEffect(()=>{(n||r||i||s||o||t==="flex")&&l(!1)},[r,i,s,o,t,n]),[c,l]}function Ron({name:e,onSelect:t}){const n=G(r=>r(kt).getBlockVariations(e,"block"),[e]),o=Be({className:"wp-block-group__placeholder"});return x.useEffect(()=>{n&&n.length===1&&t(n[0])},[t,n]),a.jsx("div",{...o,children:a.jsx(vo,{instructions:m("Group blocks together. Select a layout:"),children:a.jsx("ul",{role:"list",className:"wp-block-group-placeholder__variations","aria-label":m("Block variations"),children:n.map(r=>a.jsx("li",{children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",icon:Con(r.name),iconSize:48,onClick:()=>t(r),className:"wp-block-group-placeholder__variation-button",label:`${r.title}: ${r.description}`})},r.name))})})})}function Ton({tagName:e,onSelectTagName:t}){const n={header:m("The <header> element should represent introductory content, typically a group of introductory or navigational aids."),main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),article:m("The <article> element should represent a self-contained, syndicatable portion of the document."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content."),footer:m("The <footer> element should represent a footer for its nearest sectioning element (e.g.: <section>, <article>, <main> etc.).")};return a.jsx(et,{group:"advanced",children:a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"}],value:e,onChange:t,help:n[e]})})}function Eon({attributes:e,name:t,setAttributes:n,clientId:o}){const{hasInnerBlocks:r,themeSupportsLayout:s}=G(M=>{const{getBlock:y,getSettings:k}=M(Q),S=y(o);return{hasInnerBlocks:!!(S&&S.innerBlocks.length),themeSupportsLayout:k()?.supportsLayout}},[o]),{tagName:i="div",templateLock:c,allowedBlocks:l,layout:u={}}=e,{type:d="default"}=u,p=s||d==="flex"||d==="grid",f=x.useRef(),b=Be({ref:f}),[h,g]=qon({attributes:e,usedLayoutType:d,hasInnerBlocks:r});let z;h?z=!1:r||(z=Ht.ButtonBlockAppender);const A=Nt(p?b:{className:"wp-block-group__inner-container"},{dropZoneElement:f.current,templateLock:c,allowedBlocks:l,renderAppender:z}),{selectBlock:_}=Oe(Q),v=M=>{n(M.attributes),_(o,-1),g(!1)};return a.jsxs(a.Fragment,{children:[a.jsx(Ton,{tagName:i,onSelectTagName:M=>n({tagName:M})}),h&&a.jsxs(vd,{children:[A.children,a.jsx(Ron,{name:t,onSelect:v})]}),p&&!h&&a.jsx(i,{...A}),!p&&!h&&a.jsx(i,{...b,children:a.jsx("div",{...A})})]})}function Won({attributes:{tagName:e}}){return a.jsx(e,{...Nt.save(Be.save())})}const Non={from:[{type:"block",isMultiBlock:!0,blocks:["*"],__experimentalConvert(e){const t=["wide","full"],n=e.reduce((r,s)=>{const{align:i}=s.attributes;return t.indexOf(i)>t.indexOf(r)?i:r},void 0),o=e.map(r=>Ee(r.name,r.attributes,r.innerBlocks));return Ee("core/group",{align:n,layout:{type:"constrained"}},o)}}]},DT={innerBlocks:[{name:"core/paragraph",attributes:{customTextColor:"#cf2e2e",fontSize:"large",content:m("One.")}},{name:"core/paragraph",attributes:{customTextColor:"#ff6900",fontSize:"large",content:m("Two.")}},{name:"core/paragraph",attributes:{customTextColor:"#fcb900",fontSize:"large",content:m("Three.")}},{name:"core/paragraph",attributes:{customTextColor:"#00d084",fontSize:"large",content:m("Four.")}},{name:"core/paragraph",attributes:{customTextColor:"#0693e3",fontSize:"large",content:m("Five.")}},{name:"core/paragraph",attributes:{customTextColor:"#9b51e0",fontSize:"large",content:m("Six.")}}]},Bon=[{name:"group",title:m("Group"),description:m("Gather blocks in a container."),attributes:{layout:{type:"constrained"}},isDefault:!0,scope:["block","inserter","transform"],isActive:e=>!e.layout||!e.layout?.type||e.layout?.type==="default"||e.layout?.type==="constrained",icon:Zf},{name:"group-row",title:We("Row","single horizontal line"),description:m("Arrange blocks horizontally."),attributes:{layout:{type:"flex",flexWrap:"nowrap"}},scope:["block","inserter","transform"],isActive:e=>e.layout?.type==="flex"&&(!e.layout?.orientation||e.layout?.orientation==="horizontal"),icon:Nde,example:DT},{name:"group-stack",title:m("Stack"),description:m("Arrange blocks vertically."),attributes:{layout:{type:"flex",orientation:"vertical"}},scope:["block","inserter","transform"],isActive:e=>e.layout?.type==="flex"&&e.layout?.orientation==="vertical",icon:Dde,example:DT},{name:"group-grid",title:m("Grid"),description:m("Arrange blocks in a grid."),attributes:{layout:{type:"grid"}},scope:["block","inserter","transform"],isActive:e=>e.layout?.type==="grid",icon:X3,example:DT}],P9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/group",title:"Group",category:"design",description:"Gather blocks in a layout container.",keywords:["container","wrapper","row","section"],textdomain:"default",attributes:{tagName:{type:"string",default:"div"},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]},allowedBlocks:{type:"array"}},supports:{__experimentalOnEnter:!0,__experimentalOnMerge:!0,__experimentalSettings:!0,align:["wide","full"],anchor:!0,ariaLabel:!0,html:!1,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},color:{gradients:!0,heading:!0,button:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},shadow:!0,spacing:{margin:["top","bottom"],padding:!0,blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},dimensions:{minHeight:!0},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},position:{sticky:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},layout:{allowSizingOnChildren:!0},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-group-editor",style:"wp-block-group"},{name:j9}=P9,vve={icon:Zf,example:{attributes:{layout:{type:"constrained",justifyContent:"center"},style:{spacing:{padding:{top:"4em",right:"3em",bottom:"4em",left:"3em"}}}},innerBlocks:[{name:"core/heading",attributes:{content:m("La Mancha"),textAlign:"center"}},{name:"core/paragraph",attributes:{align:"center",content:m("In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.")}},{name:"core/spacer",attributes:{height:"10px"}},{name:"core/button",attributes:{text:m("Read more")}}],viewportWidth:600},transforms:Non,edit:Eon,save:Won,deprecated:Son,variations:Bon},Lon=()=>it({name:j9,metadata:P9,settings:vve}),Pon=Object.freeze(Object.defineProperty({__proto__:null,init:Lon,metadata:P9,name:j9,settings:vve},Symbol.toStringTag,{value:"Module"})),I9={className:!1,anchor:!0},bk={align:{type:"string"},content:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},level:{type:"number",default:2},placeholder:{type:"string"}},D9=e=>{if(!e.customTextColor)return e;const t={color:{text:e.customTextColor}},{customTextColor:n,...o}=e;return{...o,style:t}},xve=["left","right","center"],hk=e=>{const{align:t,...n}=e;return xve.includes(t)?{...n,textAlign:t}:e},jon={supports:I9,attributes:{...bk,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>D9(hk(e)),save({attributes:e}){const{align:t,level:n,content:o,textColor:r,customTextColor:s}=e,i="h"+n,c=Pt("color",r),l=oe({[c]:c});return a.jsx(Ie.Content,{className:l||void 0,tagName:i,style:{textAlign:t,color:c?void 0:s},value:o})}},Ion={attributes:{...bk,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>D9(hk(e)),save({attributes:e}){const{align:t,content:n,customTextColor:o,level:r,textColor:s}=e,i="h"+r,c=Pt("color",s),l=oe({[c]:c,[`has-text-align-${t}`]:t});return a.jsx(Ie.Content,{className:l||void 0,tagName:i,style:{color:c?void 0:o},value:n})},supports:I9},Don={supports:I9,attributes:{...bk,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>D9(hk(e)),save({attributes:e}){const{align:t,content:n,customTextColor:o,level:r,textColor:s}=e,i="h"+r,c=Pt("color",s),l=oe({[c]:c,"has-text-color":s||o,[`has-text-align-${t}`]:t});return a.jsx(Ie.Content,{className:l||void 0,tagName:i,style:{color:c?void 0:o},value:n})}},Fon={supports:{align:["wide","full"],anchor:!0,className:!1,color:{link:!0},fontSize:!0,lineHeight:!0,__experimentalSelector:{"core/heading/h1":"h1","core/heading/h2":"h2","core/heading/h3":"h3","core/heading/h4":"h4","core/heading/h5":"h5","core/heading/h6":"h6"},__unstablePasteTextInline:!0},attributes:bk,isEligible:({align:e})=>xve.includes(e),migrate:hk,save({attributes:e}){const{align:t,content:n,level:o}=e,r="h"+o,s=oe({[`has-text-align-${t}`]:t});return a.jsx(r,{...Be.save({className:s}),children:a.jsx(Ie.Content,{value:n})})}},$on={supports:{align:["wide","full"],anchor:!0,className:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0,textTransform:!0}},__experimentalSelector:"h1,h2,h3,h4,h5,h6",__unstablePasteTextInline:!0,__experimentalSlashInserter:!0},attributes:{textAlign:{type:"string"},content:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:"",role:"content"},level:{type:"number",default:2},placeholder:{type:"string"}},save({attributes:e}){const{textAlign:t,content:n,level:o}=e,r="h"+o,s=oe({[`has-text-align-${t}`]:t});return a.jsx(r,{...Be.save({className:s}),children:a.jsx(Ie.Content,{value:n})})}},Von=[$on,Fon,Don,Ion,jon],hN={},Hon=e=>{const t=document.createElement("div");return t.innerHTML=e,t.innerText},Uon=e=>ms(Hon(e)).replace(/[^\p{L}\p{N}]+/gu,"-").toLowerCase().replace(/(^-+)|(-+$)/g,""),FT=(e,t)=>{const n=Uon(t);if(n==="")return null;delete hN[e];let o=n,r=0;for(;Object.values(hN).includes(o);)r+=1,o=n+"-"+r;return o},Qne=(e,t)=>{hN[e]=t};function Xon({attributes:e,setAttributes:t,mergeBlocks:n,onReplace:o,style:r,clientId:s}){const{textAlign:i,content:c,level:l,levelOptions:u,placeholder:d,anchor:p}=e,f="h"+l,b=Be({className:oe({[`has-text-align-${i}`]:i}),style:r}),h=Jr(),{canGenerateAnchors:g}=G(_=>{const{getGlobalBlockCount:v,getSettings:M}=_(Q);return{canGenerateAnchors:!!M().generateAnchors||v("core/table-of-contents")>0}},[]),{__unstableMarkNextChangeAsNotPersistent:z}=Oe(Q);x.useEffect(()=>{if(g)return!p&&c&&(z(),t({anchor:FT(s,c)})),Qne(s,p),()=>Qne(s,null)},[p,c,s,g]);const A=_=>{const v={content:_};g&&(!p||!_||FT(s,c)===p)&&(v.anchor=FT(s,_)),t(v)};return a.jsxs(a.Fragment,{children:[h==="default"&&a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:l,options:u,onChange:_=>t({level:_})}),a.jsx(nr,{value:i,onChange:_=>{t({textAlign:_})}})]}),a.jsx(Ie,{identifier:"content",tagName:f,value:c,onChange:A,onMerge:n,onReplace:o,onRemove:()=>o([]),placeholder:d||m("Heading"),textAlign:i,...f0.isNative&&{deleteEnter:!0},...b})]})}function Gon({attributes:e}){const{textAlign:t,content:n,level:o}=e,r="h"+o,s=oe({[`has-text-align-${t}`]:t});return a.jsx(r,{...Be.save({className:s}),children:a.jsx(Ie.Content,{value:n})})}function Kon(e){return Number(e.substr(1))}const Yon={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>e.map(({content:t,anchor:n,align:o,metadata:r})=>Ee("core/heading",{content:t,anchor:n,textAlign:o,metadata:U2(r,"core/heading",({content:s})=>({content:s}))}))},{type:"raw",selector:"h1,h2,h3,h4,h5,h6",schema:({phrasingContentSchema:e,isPaste:t})=>{const n={children:e,attributes:t?[]:["style","id"]};return{h1:n,h2:n,h3:n,h4:n,h5:n,h6:n}},transform(e){const t=Wl("core/heading",e.outerHTML),{textAlign:n}=e.style||{};return t.level=Kon(e.nodeName),(n==="left"||n==="center"||n==="right")&&(t.align=n),Ee("core/heading",t)}},...[1,2,3,4,5,6].map(e=>({type:"prefix",prefix:Array(e+1).join("#"),transform(t){return Ee("core/heading",{level:e,content:t})}})),...[1,2,3,4,5,6].map(e=>({type:"enter",regExp:new RegExp(`^/(h|H)${e}$`),transform:()=>Ee("core/heading",{level:e})}))],to:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>e.map(({content:t,textAlign:n,metadata:o})=>Ee("core/paragraph",{content:t,align:n,metadata:U2(o,"core/paragraph",({content:r})=>({content:r}))}))}]},F9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/heading",title:"Heading",category:"text",description:"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.",keywords:["title","subtitle"],textdomain:"default",attributes:{textAlign:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"h1,h2,h3,h4,h5,h6",role:"content"},level:{type:"number",default:2},levelOptions:{type:"array"},placeholder:{type:"string"}},supports:{align:["wide","full"],anchor:!0,className:!0,splitting:!0,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},__unstablePasteTextInline:!0,__experimentalSlashInserter:!0,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-heading-editor",style:"wp-block-heading"},{name:wve}=F9,_ve={icon:JZe,example:{attributes:{content:m("Code is Poetry"),level:2,textAlign:"center"}},__experimentalLabel(e,{context:t}){const{content:n,level:o}=e,r=e?.metadata?.name,s=n?.trim().length>0;if(t==="list-view"&&(r||s))return r||n;if(t==="accessibility")return s?xe(m("Level %1$s. %2$s"),o,n):xe(m("Level %s. Empty."),o)},transforms:Yon,deprecated:Von,merge(e,t){return{content:(e.content||"")+(t.content||"")}},edit:Xon,save:Gon},Zon=()=>it({name:wve,metadata:F9,settings:_ve}),Qon=Object.freeze(Object.defineProperty({__proto__:null,init:Zon,metadata:F9,name:wve,settings:_ve},Symbol.toStringTag,{value:"Module"})),Jon=e=>e.preventDefault();function ern({attributes:e,setAttributes:t,context:n}){var o;const r=G(u=>u(Me).getEntityRecord("root","__unstableBase")?.home,[]),{textColor:s,backgroundColor:i,style:c}=n,l=Be({className:oe("wp-block-navigation-item",{"has-text-color":!!s||!!c?.color?.text,[`has-${s}-color`]:!!s,"has-background":!!i||!!c?.color?.background,[`has-${i}-background-color`]:!!i}),style:{color:c?.color?.text,backgroundColor:c?.color?.background}});return a.jsx("div",{...l,children:a.jsx("a",{className:"wp-block-home-link__content wp-block-navigation-item__content",href:r,onClick:Jon,children:a.jsx(Ie,{identifier:"label",className:"wp-block-home-link__label",value:(o=e.label)!==null&&o!==void 0?o:m("Home"),onChange:u=>{t({label:u})},"aria-label":m("Home link text"),placeholder:m("Add home link"),withoutInteractiveFormatting:!0,allowedFormats:["core/bold","core/italic","core/image","core/strikethrough"]})})})}function trn(){return a.jsx(Ht.Content,{})}const $9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/home-link",category:"design",parent:["core/navigation"],title:"Home Link",description:"Create a link that always points to the homepage of the site. Usually not necessary if there is already a site title link present in the header.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","fontSize","customFontSize","style"],supports:{reusable:!1,html:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-home-link-editor",style:"wp-block-home-link"},{name:kve}=$9,Sve={icon:dde,edit:ern,save:trn,example:{attributes:{label:We("Home Link","block example")}}},nrn=()=>it({name:kve,metadata:$9,settings:Sve}),orn=Object.freeze(Object.defineProperty({__proto__:null,init:nrn,metadata:$9,name:kve,settings:Sve},Symbol.toStringTag,{value:"Module"})),rrn=` html,body,:root { margin: 0 !important; padding: 0 !important; overflow: visible !important; min-height: auto !important; } -`;function srn({content:e,isSelected:t}){const n=G(r=>r(Q).getSettings().styles,[]),o=x.useMemo(()=>[rrn,...Hx((n??[]).filter(r=>r.css))],[n]);return a.jsxs(a.Fragment,{children:[a.jsx(b2e,{html:e,styles:o,title:m("Custom HTML Preview"),tabIndex:-1}),!t&&a.jsx("div",{className:"block-library-html__preview-overlay"})]})}function qve({attributes:e,setAttributes:t,isSelected:n}){const[o,r]=x.useState(),s=x.useContext(I1.Context),i=vt(qve,"html-edit-desc"),c=G(p=>p(Q).getSettings().isPreviewMode,[]);function l(){r(!0)}function u(){r(!1)}const d=Be({className:"block-library-html__edit","aria-describedby":o?i:void 0});return a.jsxs("div",{...d,children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[a.jsx(Vt,{isPressed:!o,onClick:u,children:"HTML"}),a.jsx(Vt,{isPressed:o,onClick:l,children:m("Preview")})]})}),o||c||s?a.jsxs(a.Fragment,{children:[a.jsx(srn,{content:e.content,isSelected:n}),a.jsx(qn,{id:i,children:m("HTML preview is not yet fully accessible. Please switch screen reader to virtualized mode to navigate the below iFrame.")})]}):a.jsx(Gd,{value:e.content,onChange:p=>t({content:p}),placeholder:m("Write HTML…"),"aria-label":m("HTML")})]})}function irn({attributes:e}){return a.jsx(i0,{children:e.content})}const arn={from:[{type:"block",blocks:["core/code"],transform:({content:e})=>Ee("core/html",{content:eo({html:e}).text})}]},H9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/html",title:"Custom HTML",category:"widgets",description:"Add custom HTML code and preview it as you edit.",keywords:["embed"],textdomain:"default",attributes:{content:{type:"string",source:"raw"}},supports:{customClassName:!1,className:!1,html:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-html-editor"},{name:Rve}=H9,Tve={icon:nQe,example:{attributes:{content:"<marquee>"+m("Welcome to the wonderful world of blocks…")+"</marquee>"}},edit:qve,save:irn,transforms:arn},crn=()=>it({name:Rve,metadata:H9,settings:Tve}),lrn=Object.freeze(Object.defineProperty({__proto__:null,init:crn,metadata:H9,name:Rve,settings:Tve},Symbol.toStringTag,{value:"Module"})),urn={attributes:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"array",source:"children",selector:"figcaption"},href:{type:"string",source:"attribute",selector:"a",attribute:"href"},id:{type:"number"},align:{type:"string"},width:{type:"number"},height:{type:"number"}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,width:i,height:c}=e,l=i||c?{width:i,height:c}:{},u=a.jsx("img",{src:t,alt:n,...l});let d={};return i?d={width:i}:(r==="left"||r==="right")&&(d={maxWidth:"50%"}),a.jsxs("figure",{className:r?`align${r}`:null,style:d,children:[s?a.jsx("a",{href:s,children:u}):u,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]})}},drn={attributes:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"array",source:"children",selector:"figcaption"},href:{type:"string",source:"attribute",selector:"a",attribute:"href"},id:{type:"number"},align:{type:"string"},width:{type:"number"},height:{type:"number"}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,width:i,height:c,id:l}=e,u=a.jsx("img",{src:t,alt:n,className:l?`wp-image-${l}`:null,width:i,height:c});return a.jsxs("figure",{className:r?`align${r}`:null,children:[s?a.jsx("a",{href:s,children:u}):u,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]})}},prn={attributes:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"array",source:"children",selector:"figcaption"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},id:{type:"number"},align:{type:"string"},width:{type:"number"},height:{type:"number"},linkDestination:{type:"string",default:"none"}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,width:i,height:c,id:l}=e,u=oe({[`align${r}`]:r,"is-resized":i||c}),d=a.jsx("img",{src:t,alt:n,className:l?`wp-image-${l}`:null,width:i,height:c});return a.jsxs("figure",{className:u,children:[s?a.jsx("a",{href:s,children:d}):d,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]})}},frn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"string",source:"html",selector:"figcaption"},title:{type:"string",source:"attribute",selector:"img",attribute:"title"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number"},width:{type:"number"},height:{type:"number"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,id:d,linkTarget:p,sizeSlug:f,title:b}=e,h=i||void 0,g=oe({[`align${r}`]:r,[`size-${f}`]:f,"is-resized":l||u}),z=a.jsx("img",{src:t,alt:n,className:d?`wp-image-${d}`:null,width:l,height:u,title:b}),A=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:p,rel:h,children:z}):z,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]});return r==="left"||r==="right"||r==="center"?a.jsx("div",{...Be.save(),children:a.jsx("figure",{className:g,children:A})}):a.jsx("figure",{...Be.save({className:g}),children:A})}},brn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"string",source:"html",selector:"figcaption"},title:{type:"string",source:"attribute",selector:"img",attribute:"title"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number"},width:{type:"number"},height:{type:"number"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{__experimentalDuotone:"img",text:!1,background:!1},__experimentalBorder:{radius:!0,__experimentalDefaultControls:{radius:!0}},__experimentalStyle:{spacing:{margin:"0 0 1em 0"}}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,id:d,linkTarget:p,sizeSlug:f,title:b}=e,h=i||void 0,g=oe({[`align${r}`]:r,[`size-${f}`]:f,"is-resized":l||u}),z=a.jsx("img",{src:t,alt:n,className:d?`wp-image-${d}`:null,width:l,height:u,title:b}),A=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:p,rel:h,children:z}):z,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:g}),children:A})}},hrn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"string",source:"html",selector:"figcaption",role:"content"},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"number"},height:{type:"number"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}}},migrate(e){const{height:t,width:n}=e;return{...e,width:typeof n=="number"?`${n}px`:n,height:typeof t=="number"?`${t}px`:t}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=oe({[`align${r}`]:r,[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),v=oe(A.className,{[`wp-image-${f}`]:!!f}),M=a.jsx("img",{src:t,alt:n,className:v||void 0,style:{...A.style,aspectRatio:d,objectFit:p},width:l,height:u,title:g}),y=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:M}):M,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:_}),children:y})}},mrn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"string",source:"html",selector:"figcaption",role:"content"},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"number"},height:{type:"number"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}}},migrate({width:e,height:t,...n}){return{...n,width:`${e}px`,height:`${t}px`}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=oe({[`align${r}`]:r,[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),v=oe(A.className,{[`wp-image-${f}`]:!!f}),M=a.jsx("img",{src:t,alt:n,className:v||void 0,style:{...A.style,aspectRatio:d,objectFit:p,width:l,height:u},width:l,height:u,title:g}),y=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:M}):M,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:_}),children:y})}},grn={attributes:{align:{type:"string"},behaviors:{type:"object"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"string",source:"html",selector:"figcaption",role:"content"},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"string"},height:{type:"string"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}}},migrate({width:e,height:t,...n}){if(!n.behaviors?.lightbox)return n;const{behaviors:{lightbox:{enabled:o}}}=n,r={...n,lightbox:{enabled:o}};return delete r.behaviors,r},isEligible(e){return!!e.behaviors},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=oe({[`align${r}`]:r,[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),v=oe(A.className,{[`wp-image-${f}`]:!!f}),M=a.jsx("img",{src:t,alt:n,className:v||void 0,style:{...A.style,aspectRatio:d,objectFit:p,width:l,height:u},title:g}),y=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:M}):M,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:_}),children:y})}},Mrn=[grn,mrn,hrn,brn,frn,prn,drn,urn],{DimensionsTool:Jne,ResolutionTool:zrn}=e0(Ln),Orn=[{value:"cover",label:We("Cover","Scale option for dimensions control"),help:m("Image covers the space evenly.")},{value:"contain",label:We("Contain","Scale option for dimensions control"),help:m("Image is contained without distortion.")}],yrn={placement:"bottom-start"},VT=({href:e,children:t})=>e?a.jsx("a",{href:e,onClick:n=>n.preventDefault(),"aria-disabled":!0,style:{pointerEvents:"none",cursor:"default",display:"inline"},children:t}):t;function Arn({attributes:e,setAttributes:t,lockAltControls:n,lockAltControlsMessage:o,lockTitleControls:r,lockTitleControlsMessage:s}){const[i,c]=x.useState(null),[l,u]=x.useState(!1),[d,p]=x.useState(!1);return a.jsxs(a.Fragment,{children:[a.jsx(bs,{ref:c,children:f=>a.jsx(c0,{icon:nu,label:m("More"),toggleProps:{...f,description:m("Displays more controls.")},popoverProps:yrn,children:({onClose:b})=>a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>{u(!0),b()},"aria-haspopup":"dialog",children:We("Alternative text","Alternative text for an image. Block toolbar label, a low character count is preferred.")}),a.jsx(Ct,{onClick:()=>{p(!0),b()},"aria-haspopup":"dialog",children:m("Title text")})]})})}),l&&a.jsx(Io,{placement:"bottom-start",anchor:i,onClose:()=>u(!1),offset:13,variant:"toolbar",children:a.jsx("div",{className:"wp-block-image__toolbar_content_textarea__container",children:a.jsx(Pi,{className:"wp-block-image__toolbar_content_textarea",label:m("Alternative text"),value:e.alt||"",onChange:f=>t({alt:f}),disabled:n,help:n?a.jsx(a.Fragment,{children:o}):a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]}),__nextHasNoMarginBottom:!0})})}),d&&a.jsx(Io,{placement:"bottom-start",anchor:i,onClose:()=>p(!1),offset:13,variant:"toolbar",children:a.jsx("div",{className:"wp-block-image__toolbar_content_textarea__container",children:a.jsx(dn,{__next40pxDefaultSize:!0,className:"wp-block-image__toolbar_content_textarea",__nextHasNoMarginBottom:!0,label:m("Title attribute"),value:e.title||"",onChange:f=>t({title:f}),disabled:r,help:r?a.jsx(a.Fragment,{children:s}):a.jsxs(a.Fragment,{children:[m("Describe the role of this image on the page."),a.jsx(hr,{href:"https://www.w3.org/TR/html52/dom.html#the-title-attribute",children:m("(Note: many devices and browsers do not display this text.)")})]})})})})]})}function vrn({temporaryURL:e,attributes:t,setAttributes:n,isSingleSelected:o,insertBlocksAfter:r,onReplace:s,onSelectImage:i,onSelectURL:c,onUploadError:l,context:u,clientId:d,blockEditingMode:p,parentLayoutType:f,maxContentWidth:b}){const{url:h="",alt:g,align:z,id:A,href:_,rel:v,linkClass:M,linkDestination:y,title:k,width:S,height:C,aspectRatio:R,scale:T,linkTarget:E,sizeSlug:B,lightbox:N,metadata:j}=t,I=S?parseInt(S,10):void 0,P=C?parseInt(C,10):void 0,$=x.useRef(),{allowResize:F=!0}=u,{getBlock:X,getSettings:Z}=G(Q),V=G(bn=>A&&o?bn(Me).getMedia(A,{context:"view"}):null,[A,o]),{canInsertCover:ee,imageEditing:te,imageSizes:J,maxWidth:ue}=G(bn=>{const{getBlockRootClientId:vr,canInsertBlockType:T1}=bn(Q),$o=vr(d),ei=Z();return{imageEditing:ei.imageEditing,imageSizes:ei.imageSizes,maxWidth:ei.maxWidth,canInsertCover:T1("core/cover",$o)}},[d]),{replaceBlocks:ce,toggleSelection:me}=Oe(Q),{createErrorNotice:de,createSuccessNotice:Ae}=Oe(mt),ye=Yn("medium"),Ne=["wide","full"].includes(z),[{loadedNaturalWidth:je,loadedNaturalHeight:ie},we]=x.useState({}),[re,pe]=x.useState(!1),[ke,Se]=x.useState(),[se,L]=x.useState(!1),U=p==="default",ne=p==="contentOnly",ve=F&&U&&!Ne&&ye,qe=J.filter(({slug:bn})=>V?.media_details?.sizes?.[bn]?.source_url).map(({name:bn,slug:vr})=>({value:vr,label:bn}));x.useEffect(()=>{if(!Eve(A,h)||!o||!Z().mediaUpload){Se();return}ke||window.fetch(h.includes("?")?h:h+"?").then(bn=>bn.blob()).then(bn=>Se(bn)).catch(()=>{})},[A,h,o,ke]);const{naturalWidth:Pe,naturalHeight:rt}=x.useMemo(()=>({naturalWidth:$.current?.naturalWidth||je||void 0,naturalHeight:$.current?.naturalHeight||ie||void 0}),[je,ie,$.current?.complete]);function qt(){me(!1)}function wt(){me(!0)}function Bt(){L(!0);const bn=fk({attributes:{url:h}});bn!==void 0&&s(bn)}function ae(bn){L(!1),we({loadedNaturalWidth:bn.target?.naturalWidth,loadedNaturalHeight:bn.target?.naturalHeight})}function H(bn){n(bn)}function Y(bn){bn&&!fn?.enabled?n({lightbox:{enabled:!0}}):!bn&&fn?.enabled?n({lightbox:{enabled:!1}}):n({lightbox:void 0})}function fe(){fn?.enabled&&fn?.allowEditing?n({lightbox:{enabled:!1}}):n({lightbox:void 0})}function Re(bn){n({title:bn})}function be(bn){n({alt:bn})}function ze(bn){const vr=V?.media_details?.sizes?.[bn]?.source_url;if(!vr)return null;n({url:vr,sizeSlug:bn})}function nt(){const{mediaUpload:bn}=Z();bn&&bn({filesList:[ke],onFileChange([vr]){i(vr),!Nr(vr.url)&&(Se(),Ae(m("Image uploaded."),{type:"snackbar"}))},allowedTypes:r3,onError(vr){de(vr,{type:"snackbar"})}})}x.useEffect(()=>{o||pe(!1)},[o]);const Mt=A&&Pe&&rt&&te,ot=o&&Mt&&!re&&!ne;function Ue(){ce(d,Kr(X(d),"core/cover"))}const yt=U1({availableUnits:["px"]}),[fn]=Un("lightbox"),Pn=!!N&&N?.enabled!==fn?.enabled||fn?.allowEditing,Mo=!!N?.enabled||!N&&!!fn?.enabled,rr=Qo(),Jo=a.jsx(Jne,{value:{width:S,height:C,scale:T,aspectRatio:R},onChange:({width:bn,height:vr,scale:T1,aspectRatio:$o})=>{n({width:!bn&&vr?"auto":bn,height:vr,scale:T1,aspectRatio:$o})},defaultScale:"cover",defaultAspectRatio:"auto",scaleOptions:Orn,unitsOptions:yt}),To=a.jsx(Jne,{value:{aspectRatio:R},onChange:({aspectRatio:bn})=>{n({aspectRatio:bn,scale:"cover"})},defaultAspectRatio:"auto",tools:["aspectRatio"]}),Br=()=>{n({alt:void 0,width:void 0,height:void 0,scale:void 0,aspectRatio:void 0,lightbox:void 0})},Rt=a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:Br,dropdownMenuProps:rr,children:ve&&(f==="grid"?To:Jo)})}),Qe=j?.bindings?.__default?.source==="core/pattern-overrides",{lockUrlControls:xt=!1,lockHrefControls:Gt=!1,lockAltControls:On=!1,lockAltControlsMessage:$n,lockTitleControls:Jn=!1,lockTitleControlsMessage:pr,lockCaption:O0=!1}=G(bn=>{if(!o)return{};const{url:vr,alt:T1,title:$o}=j?.bindings||{},ei=!!u["pattern/overrides"],I0=xl(vr?.source),mp=xl(T1?.source),gp=xl($o?.source);return{lockUrlControls:!!vr&&!I0?.canUserEditValue?.({select:bn,context:u,args:vr?.args}),lockHrefControls:ei||Qe,lockCaption:ei,lockAltControls:!!T1&&!mp?.canUserEditValue?.({select:bn,context:u,args:T1?.args}),lockAltControlsMessage:mp?.label?xe(m("Connected to %s"),mp.label):m("Connected to dynamic data"),lockTitleControls:!!$o&&!gp?.canUserEditValue?.({select:bn,context:u,args:$o?.args}),lockTitleControlsMessage:gp?.label?xe(m("Connected to %s"),gp.label):m("Connected to dynamic data")}},[Qe,u,o,j?.bindings]),o1=o&&!re&&!Gt&&!xt,yr=o&&ee,Js=o1||ot||yr,ao=o&&!re&&!xt&&a.jsx(bt,{group:ne?"inline":"other",children:a.jsx(Pc,{mediaId:A,mediaURL:h,allowedTypes:r3,accept:"image/*",onSelect:i,onSelectURL:c,onError:l,name:m(h?"Replace":"Add image"),onReset:()=>i(void 0)})}),Dc=a.jsxs(a.Fragment,{children:[Js&&a.jsxs(bt,{group:"block",children:[o1&&a.jsx(u3e,{url:_||"",onChangeUrl:H,linkDestination:y,mediaUrl:V&&V.source_url||h,mediaLink:V&&V.link,linkTarget:E,linkClass:M,rel:v,showLightboxSetting:Pn,lightboxEnabled:Mo,onSetLightbox:Y,resetLightbox:fe}),ot&&a.jsx(Vt,{onClick:()=>pe(!0),icon:tde,label:m("Crop")}),yr&&a.jsx(Vt,{icon:MQe,label:m("Add text over image"),onClick:Ue})]}),o&&ke&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:nt,icon:cm,label:m("Upload to Media Library")})})}),ne&&a.jsx(bt,{group:"block",children:a.jsx(Arn,{attributes:t,setAttributes:n,lockAltControls:On,lockAltControlsMessage:$n,lockTitleControls:Jn,lockTitleControlsMessage:pr})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:Br,dropdownMenuProps:rr,children:[o&&a.jsx(tt,{label:m("Alternative text"),isShownByDefault:!0,hasValue:()=>!!g,onDeselect:()=>n({alt:void 0}),children:a.jsx(Pi,{label:m("Alternative text"),value:g||"",onChange:be,readOnly:On,help:On?a.jsx(a.Fragment,{children:$n}):a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]}),__nextHasNoMarginBottom:!0})}),ve&&(f==="grid"?To:Jo),!!qe.length&&a.jsx(zrn,{value:B,onChange:ze,options:qe})]})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Title attribute"),value:k||"",onChange:Re,readOnly:Jn,help:Jn?a.jsx(a.Fragment,{children:pr}):a.jsxs(a.Fragment,{children:[m("Describe the role of this image on the page."),a.jsx(hr,{href:"https://www.w3.org/TR/html52/dom.html#the-title-attribute",children:m("(Note: many devices and browsers do not display this text.)")})]})})})]}),Xi=If(h);let _s;g?_s=g:Xi?_s=xe(m("This image has an empty alt attribute; its file name is %s"),Xi):_s=m("This image has an empty alt attribute");const Gi=cu(t),gb=db(t),hp=t.className?.includes("is-style-rounded"),{postType:QO,postId:JO,queryId:Sk}=u,Ar=Number.isFinite(Sk),[,Ck]=Ao("postType",QO,"featured_media",JO);let Ta=e&&se?a.jsx(vo,{className:"wp-block-image__placeholder",withIllustration:!0,children:a.jsx(Xn,{})}):a.jsxs(a.Fragment,{children:[a.jsx("img",{src:e||h,alt:_s,onError:Bt,onLoad:ae,ref:$,className:Gi.className,style:{width:S&&C||R?"100%":void 0,height:S&&C||R?"100%":void 0,objectFit:T,...Gi.style,...gb.style}}),e&&a.jsx(Xn,{})]});if(Mt&&re)Ta=a.jsx(VT,{href:_,children:a.jsx(Qze,{id:A,url:h,width:I,height:P,naturalHeight:rt,naturalWidth:Pe,onSaveImage:bn=>n(bn),onFinishEditing:()=>{pe(!1)},borderProps:hp?void 0:Gi})});else if(!ve||f==="grid")Ta=a.jsx("div",{style:{width:S,height:C,aspectRatio:R},children:a.jsx(VT,{href:_,children:Ta})});else{const bn=R&&aon(R),vr=I/P,T1=Pe/rt,$o=bn||vr||T1||1,ei=!I&&P?P*$o:I,I0=!P&&I?I/$o:P,mp=Pe<rt?id:id*$o,gp=rt<Pe?id:id/$o,qk=ue*2.5,Mp=b||qk;let Fc=!1,Ea=!1;z==="center"?(Fc=!0,Ea=!0):jt()?z==="left"?Fc=!0:Ea=!0:z==="right"?Ea=!0:Fc=!0,Ta=a.jsx(Ca,{style:{display:"block",objectFit:T,aspectRatio:!S&&!C&&R?R:void 0},size:{width:ei??"auto",height:I0??"auto"},showHandle:o,minWidth:mp,maxWidth:Mp,minHeight:gp,maxHeight:Mp/$o,lockAspectRatio:$o,enable:{top:!1,right:Fc,bottom:!0,left:Ea},onResizeStart:qt,onResizeStop:(Dm,xF,ty)=>{if(wt(),b&&Pe>=b&&Math.abs(ty.offsetWidth-b)<10){n({width:void 0,height:void 0});return}n({width:`${ty.offsetWidth}px`,height:"auto",aspectRatio:$o===T1?void 0:String($o)})},resizeRatio:z==="center"?2:1,children:a.jsx(VT,{href:_,children:Ta})})}if(!h&&!e)return a.jsxs(a.Fragment,{children:[ao,j?.bindings?Dc:Rt]});const ey=()=>{Ck(A),Ae(m("Post featured image updated."),{type:"snackbar"})},Mb=a.jsx(cb,{children:({selectedClientIds:bn})=>bn.length===1&&!Ar&&JO&&A&&d===bn[0]&&a.jsx(Ct,{onClick:ey,children:m("Set as featured image")})});return a.jsxs(a.Fragment,{children:[ao,Dc,Mb,Ta,a.jsx(fb,{attributes:t,setAttributes:n,isSelected:o,insertBlocksAfter:r,label:m("Image caption text"),showToolbarButton:o&&U&&!Qe,readOnly:O0})]})}function xrn(){const[e,{width:t}]=js(),n=x.useRef();return[a.jsx("div",{className:"wp-block","aria-hidden":"true",style:{position:"absolute",inset:0,width:"100%",height:0,margin:0},ref:n,children:e}),t]}const wrn=(e,t)=>{const n=Object.fromEntries(Object.entries(e??{}).filter(([o])=>["alt","id","link","caption"].includes(o)));return n.url=e?.sizes?.[t]?.url||e?.media_details?.sizes?.[t]?.source_url||e.url,n},Eve=(e,t)=>t&&!e&&!Nr(t);function eoe(e,t){var n,o;return"url"in((n=e?.sizes?.[t])!==null&&n!==void 0?n:{})||"source_url"in((o=e?.media_details?.sizes?.[t])!==null&&o!==void 0?o:{})}function _rn({attributes:e,setAttributes:t,isSelected:n,className:o,insertBlocksAfter:r,onReplace:s,context:i,clientId:c,__unstableParentLayout:l}){const{url:u="",alt:d,caption:p,id:f,width:b,height:h,sizeSlug:g,aspectRatio:z,scale:A,align:_,metadata:v}=e,[M,y]=x.useState(e.blob),k=x.useRef(),S=!l||l.type!=="flex"&&l.type!=="grid",[C,R]=xrn(),[T,{width:E}]=js(),B=E&&E<160,N=x.useRef();x.useEffect(()=>{N.current=d},[d]);const j=x.useRef();x.useEffect(()=>{j.current=p},[p]);const{__unstableMarkNextChangeAsNotPersistent:I,replaceBlock:P}=Oe(Q);x.useEffect(()=>{["wide","full"].includes(_)&&(I(),t({width:void 0,height:void 0,aspectRatio:void 0,scale:void 0}))},[I,_,t]);const{getSettings:$,getBlockRootClientId:F,getBlockName:X,canInsertBlockType:Z}=G(Q),V=Jr(),{createErrorNotice:ee}=Oe(mt);function te(ke){ee(ke,{type:"snackbar"}),t({src:void 0,id:void 0,url:void 0,blob:void 0})}function J(ke){const Se=k.current?.ownerDocument.defaultView;if(ke.every(se=>se instanceof Se.File)){const se=ke,L=F(c);se.some(ne=>!Kne(ne))&&ee(m("If uploading to a gallery all files need to be image formats"),{id:"gallery-upload-invalid-file",type:"snackbar"});const U=se.filter(ne=>Kne(ne)).map(ne=>Ee("core/image",{blob:ls(ne)}));if(X(L)==="core/gallery")P(c,U);else if(Z("core/gallery",L)){const ne=Ee("core/gallery",{},U);P(c,ne)}}}function ue(ke){if(Array.isArray(ke)){J(ke);return}if(!ke||!ke.url){t({url:void 0,alt:void 0,id:void 0,title:void 0,caption:void 0,blob:void 0}),y();return}if(Nr(ke.url)){y(ke.url);return}const{imageDefaultSize:Se}=$();let se="full";g&&eoe(ke,g)?se=g:eoe(ke,Se)&&(se=Se);let L=wrn(ke,se);if(j.current&&!L.caption){const{caption:qe,...Pe}=L;L=Pe}let U;!ke.id||ke.id!==f?U={sizeSlug:se}:U={url:u};let ne=e.linkDestination;if(!ne)switch(window?.wp?.media?.view?.settings?.defaultProps?.link||DM){case"file":case x4:ne=x4;break;case"post":case w4:ne=w4;break;case Une:ne=Une;break;case DM:ne=DM;break}let ve;switch(ne){case x4:ve=ke.url;break;case w4:ve=ke.link;break}L.href=ve,t({blob:void 0,...L,...U,linkDestination:ne}),y()}function ce(ke){ke!==u&&(t({blob:void 0,url:ke,id:void 0,sizeSlug:$().imageDefaultSize}),y())}pk({url:M,allowedTypes:r3,onChange:ue,onError:te});const de=Eve(f,u)?u:void 0,Ae=!!u&&a.jsx("img",{alt:m("Edit image"),title:m("Edit image"),className:"edit-image-preview",src:u}),ye=cu(e),Ne=db(e),je=oe(o,{"is-transient":!!M,"is-resized":!!b||!!h,[`size-${g}`]:g,"has-custom-border":!!ye.className||ye.style&&Object.keys(ye.style).length>0}),ie=Be({ref:k,className:je}),{lockUrlControls:we=!1,lockUrlControlsMessage:re}=G(ke=>{if(!n)return{};const Se=xl(v?.bindings?.url?.source);return{lockUrlControls:!!v?.bindings?.url&&!Se?.canUserEditValue?.({select:ke,context:i,args:v?.bindings?.url?.args}),lockUrlControlsMessage:Se?.label?xe(m("Connected to %s"),Se.label):m("Connected to dynamic data")}},[i,n,v?.bindings?.url]),pe=ke=>a.jsxs(vo,{className:oe("block-editor-media-placeholder",{[ye.className]:!!ye.className&&!n}),icon:!B&&(we?AQe:Oz),withIllustration:!n||B,label:!B&&m("Image"),instructions:!we&&!B&&m("Drag and drop an image, upload, or choose from your library."),style:{aspectRatio:!(b&&h)&&z?z:void 0,width:h&&z?"100%":b,height:b&&z?"100%":h,objectFit:A,...ye.style,...Ne.style},children:[we&&!B&&re,!we&&!B&&ke,T]});return a.jsxs(a.Fragment,{children:[a.jsxs("figure",{...ie,children:[a.jsx(vrn,{temporaryURL:M,attributes:e,setAttributes:t,isSingleSelected:n,insertBlocksAfter:r,onReplace:s,onSelectImage:ue,onSelectURL:ce,onUploadError:te,context:i,clientId:c,blockEditingMode:V,parentLayoutType:l?.type,maxContentWidth:R}),a.jsx(au,{icon:a.jsx(Zn,{icon:Oz}),onSelect:ue,onSelectURL:ce,onError:te,placeholder:pe,accept:"image/*",allowedTypes:r3,handleUpload:ke=>ke.length===1,value:{id:f,src:de},mediaPreview:Ae,disableMediaButtons:M||u})]}),n&&S&&C]})}function krn({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=db(e),v=oe({alignnone:r==="none",[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),M=oe(A.className,{[`wp-image-${f}`]:!!f}),y=a.jsx("img",{src:t,alt:n,className:M||void 0,style:{...A.style,..._.style,aspectRatio:d,objectFit:p,width:l,height:u},title:g}),k=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:y}):y,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:v}),children:k})}function Srn(e,{shortcode:t}){const{body:n}=document.implementation.createHTMLDocument("");n.innerHTML=t.content;let o=n.querySelector("img");for(;o&&o.parentNode&&o.parentNode!==n;)o=o.parentNode;return o&&o.parentNode.removeChild(o),n.innerHTML.trim()}function HT(e,t){const{body:n}=document.implementation.createHTMLDocument("");n.innerHTML=e;const{firstElementChild:o}=n;if(o&&o.nodeName==="A")return o.getAttribute(t)||void 0}const toe={img:{attributes:["src","alt","title"],classes:["alignleft","aligncenter","alignright","alignnone",/^wp-image-\d+$/]}},Crn=({phrasingContentSchema:e})=>({figure:{require:["img"],children:{...toe,a:{attributes:["href","rel","target"],classes:["*"],children:toe},figcaption:{children:e}}}}),qrn={from:[{type:"raw",isMatch:e=>e.nodeName==="FIGURE"&&!!e.querySelector("img"),schema:Crn,transform:e=>{const t=e.className+" "+e.querySelector("img").className,n=/(?:^|\s)align(left|center|right)(?:$|\s)/.exec(t),o=e.id===""?void 0:e.id,r=n?n[1]:void 0,s=/(?:^|\s)wp-image-(\d+)(?:$|\s)/.exec(t),i=s?Number(s[1]):void 0,c=e.querySelector("a"),l=c&&c.href?"custom":void 0,u=c&&c.href?c.href:void 0,d=c&&c.rel?c.rel:void 0,p=c&&c.className?c.className:void 0,f=Nl("core/image",e.outerHTML,{align:r,id:i,linkDestination:l,href:u,rel:d,linkClass:p,anchor:o});return Nr(f.url)&&(f.blob=f.url,delete f.url),Ee("core/image",f)}},{type:"files",isMatch(e){return e.every(t=>t.type.indexOf("image/")===0)},transform(e){return e.map(n=>Ee("core/image",{blob:ls(n)}))}},{type:"shortcode",tag:"caption",attributes:{url:{type:"string",source:"attribute",attribute:"src",selector:"img"},alt:{type:"string",source:"attribute",attribute:"alt",selector:"img"},caption:{shortcode:Srn},href:{shortcode:(e,{shortcode:t})=>HT(t.content,"href")},rel:{shortcode:(e,{shortcode:t})=>HT(t.content,"rel")},linkClass:{shortcode:(e,{shortcode:t})=>HT(t.content,"class")},id:{type:"number",shortcode:({named:{id:e}})=>{if(e)return parseInt(e.replace("attachment_",""),10)}},align:{type:"string",shortcode:({named:{align:e="alignnone"}})=>e.replace("align","")}}}]},U9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/image",title:"Image",category:"media",usesContext:["allowResize","imageCrop","fixedHeight","postId","postType","queryId"],description:"Insert an image to make a visual statement.",keywords:["img","photo","picture"],textdomain:"default",attributes:{blob:{type:"string",role:"local"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},lightbox:{type:"object",enabled:{type:"boolean"}},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"string"},height:{type:"string"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{interactivity:!0,align:["left","center","right","wide","full"],anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},spacing:{margin:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}},shadow:{__experimentalSkipSerialization:!0}},selectors:{border:".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",shadow:".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",filter:{duotone:".wp-block-image img, .wp-block-image .components-placeholder"}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"rounded",label:"Rounded"}],editorStyle:"wp-block-image-editor",style:"wp-block-image"},{name:Wve}=U9,Nve={icon:Oz,example:{attributes:{sizeSlug:"large",url:"https://s.w.org/images/core/5.3/MtBlanc1.jpg",caption:m("Mont Blanc appears—still, snowy, and serene.")}},__experimentalLabel(e,{context:t}){const n=e?.metadata?.name;if(t==="list-view"&&n)return n;if(t==="accessibility"){const{caption:o,alt:r,url:s}=e;return s?r?r+(o?". "+o:""):o||"":m("Empty")}},getEditWrapperProps(e){return{"data-align":e.align}},transforms:qrn,edit:_rn,save:krn,deprecated:Mrn},Rrn=()=>it({name:Wve,metadata:U9,settings:Nve}),Trn=Object.freeze(Object.defineProperty({__proto__:null,init:Rrn,metadata:U9,name:Wve,settings:Nve},Symbol.toStringTag,{value:"Module"})),Ern=1,Wrn=100;function Nrn({attributes:e,setAttributes:t}){const{commentsToShow:n,displayAvatar:o,displayDate:r,displayExcerpt:s}=e,i={...e,style:{...e?.style,spacing:void 0}};return a.jsxs("div",{...Be(),children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display avatar"),checked:o,onChange:()=>t({displayAvatar:!o})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display date"),checked:r,onChange:()=>t({displayDate:!r})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display excerpt"),checked:s,onChange:()=>t({displayExcerpt:!s})}),a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of comments"),value:n,onChange:c=>t({commentsToShow:c}),min:Ern,max:Wrn,required:!0})]})}),a.jsx(I1,{children:a.jsx(FO,{block:"core/latest-comments",attributes:i,urlQueryArgs:{_locale:"site"}})})]})}const X9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/latest-comments",title:"Latest Comments",category:"widgets",description:"Display a list of your most recent comments.",keywords:["recent comments"],textdomain:"default",attributes:{commentsToShow:{type:"number",default:5,minimum:1,maximum:100},displayAvatar:{type:"boolean",default:!0},displayDate:{type:"boolean",default:!0},displayExcerpt:{type:"boolean",default:!0}},supports:{align:!0,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},html:!1,spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-latest-comments-editor",style:"wp-block-latest-comments"},{name:Bve}=X9,Lve={icon:U3,example:{},edit:Nrn},Brn=()=>it({name:Bve,metadata:X9,settings:Lve}),Lrn=Object.freeze(Object.defineProperty({__proto__:null,init:Brn,metadata:X9,name:Bve,settings:Lve},Symbol.toStringTag,{value:"Module"})),Prn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/latest-posts",title:"Latest Posts",category:"widgets",description:"Display a list of your most recent posts.",keywords:["recent posts"],textdomain:"default",attributes:{categories:{type:"array",items:{type:"object"}},selectedAuthor:{type:"number"},postsToShow:{type:"number",default:5},displayPostContent:{type:"boolean",default:!1},displayPostContentRadio:{type:"string",default:"excerpt"},excerptLength:{type:"number",default:55},displayAuthor:{type:"boolean",default:!1},displayPostDate:{type:"boolean",default:!1},postLayout:{type:"string",default:"list"},columns:{type:"number",default:3},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},displayFeaturedImage:{type:"boolean",default:!1},featuredImageAlign:{type:"string",enum:["left","center","right"]},featuredImageSizeSlug:{type:"string",default:"thumbnail"},featuredImageSizeWidth:{type:"number",default:null},featuredImageSizeHeight:{type:"number",default:null},addLinkToFeaturedImage:{type:"boolean",default:!1}},supports:{align:!0,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-latest-posts-editor",style:"wp-block-latest-posts"},{attributes:jrn}=Prn,Irn=[{attributes:{...jrn,categories:{type:"string"}},supports:{align:!0,html:!1},migrate:e=>({...e,categories:[{id:Number(e.categories)}]}),isEligible:({categories:e})=>e&&typeof e=="string",save:()=>null}],Drn=10,Frn=100,noe=6,$rn={per_page:-1,context:"view"},Vrn={per_page:-1,has_published_posts:["post"],context:"view"};function Hrn(e,t){var n;const o=e._embedded?.["wp:featuredmedia"]?.["0"];return{url:(n=o?.media_details?.sizes?.[t]?.source_url)!==null&&n!==void 0?n:o?.source_url,alt:o?.alt_text}}function Pve({attributes:e,setAttributes:t}){var n;const o=vt(Pve),{postsToShow:r,order:s,orderBy:i,categories:c,selectedAuthor:l,displayFeaturedImage:u,displayPostContentRadio:d,displayPostContent:p,displayPostDate:f,displayAuthor:b,postLayout:h,columns:g,excerptLength:z,featuredImageAlign:A,featuredImageSizeSlug:_,featuredImageSizeWidth:v,featuredImageSizeHeight:M,addLinkToFeaturedImage:y}=e,{imageSizes:k,latestPosts:S,defaultImageWidth:C,defaultImageHeight:R,categoriesList:T,authorList:E}=G(J=>{var ue,ce;const{getEntityRecords:me,getUsers:de}=J(Me),Ae=J(Q).getSettings(),ye=c&&c.length>0?c.map(je=>je.id):[],Ne=Object.fromEntries(Object.entries({categories:ye,author:l,order:s,orderby:i,per_page:r,_embed:"wp:featuredmedia"}).filter(([,je])=>typeof je<"u"));return{defaultImageWidth:(ue=Ae.imageDimensions?.[_]?.width)!==null&&ue!==void 0?ue:0,defaultImageHeight:(ce=Ae.imageDimensions?.[_]?.height)!==null&&ce!==void 0?ce:0,imageSizes:Ae.imageSizes,latestPosts:me("postType","post",Ne),categoriesList:me("taxonomy","category",$rn),authorList:de(Vrn)}},[_,r,s,i,c,l]),{createWarningNotice:B}=Oe(mt),N=J=>{J.preventDefault(),B(m("Links are disabled in the editor."),{id:`block-library/core/latest-posts/redirection-prevented/${o}`,type:"snackbar"})},j=k.filter(({slug:J})=>J!=="full").map(({name:J,slug:ue})=>({value:ue,label:J})),I=(n=T?.reduce((J,ue)=>({...J,[ue.name]:ue}),{}))!==null&&n!==void 0?n:{},P=J=>{if(J.some(me=>typeof me=="string"&&!I[me]))return;const ce=J.map(me=>typeof me=="string"?I[me]:me);if(ce.includes(null))return!1;t({categories:ce})},$=[{value:"none",icon:Tw,label:m("None")},{value:"left",icon:Ade,label:m("Left")},{value:"center",icon:yde,label:m("Center")},{value:"right",icon:vde,label:m("Right")}],F=!!S?.length,X=a.jsxs(et,{children:[a.jsxs(Qt,{title:m("Post content"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Post content"),checked:p,onChange:J=>t({displayPostContent:J})}),p&&a.jsx(sb,{label:m("Show"),selected:d,options:[{label:m("Excerpt"),value:"excerpt"},{label:m("Full post"),value:"full_post"}],onChange:J=>t({displayPostContentRadio:J})}),p&&d==="excerpt"&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Max number of words"),value:z,onChange:J=>t({excerptLength:J}),min:Drn,max:Frn})]}),a.jsxs(Qt,{title:m("Post meta"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display author name"),checked:b,onChange:J=>t({displayAuthor:J})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display post date"),checked:f,onChange:J=>t({displayPostDate:J})})]}),a.jsxs(Qt,{title:m("Featured image"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display featured image"),checked:u,onChange:J=>t({displayFeaturedImage:J})}),u&&a.jsxs(a.Fragment,{children:[a.jsx(HWt,{onChange:J=>{const ue={};J.hasOwnProperty("width")&&(ue.featuredImageSizeWidth=J.width),J.hasOwnProperty("height")&&(ue.featuredImageSizeHeight=J.height),t(ue)},slug:_,width:v,height:M,imageWidth:C,imageHeight:R,imageSizeOptions:j,imageSizeHelp:m("Select the size of the source image."),onChangeImage:J=>t({featuredImageSizeSlug:J,featuredImageSizeWidth:void 0,featuredImageSizeHeight:void 0})}),a.jsx(Do,{className:"editor-latest-posts-image-alignment-control",__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image alignment"),value:A||"none",onChange:J=>t({featuredImageAlign:J!=="none"?J:void 0}),children:$.map(({value:J,icon:ue,label:ce})=>a.jsx(Ma,{value:J,icon:ue,label:ce},J))}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Add link to featured image"),checked:y,onChange:J=>t({addLinkToFeaturedImage:J})})]})]}),a.jsxs(Qt,{title:m("Sorting and filtering"),children:[a.jsx(z2t,{order:s,orderBy:i,numberOfItems:r,onOrderChange:J=>t({order:J}),onOrderByChange:J=>t({orderBy:J}),onNumberOfItemsChange:J=>t({postsToShow:J}),categorySuggestions:I,onCategoryChange:P,selectedCategories:c,onAuthorChange:J=>t({selectedAuthor:J!==""?Number(J):void 0}),authorList:E??[],selectedAuthorId:l}),h==="grid"&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:g,onChange:J=>t({columns:J}),min:2,max:F?Math.min(noe,S.length):noe,required:!0})]})]}),Z=Be({className:oe({"wp-block-latest-posts__list":!0,"is-grid":h==="grid","has-dates":f,"has-author":b,[`columns-${g}`]:h==="grid"})});if(!F)return a.jsxs("div",{...Z,children:[X,a.jsx(vo,{icon:xde,label:m("Latest Posts"),children:Array.isArray(S)?m("No posts found."):a.jsx(Xn,{})})]});const V=S.length>r?S.slice(0,r):S,ee=[{icon:Iw,title:We("List view","Latest posts block display setting"),onClick:()=>t({postLayout:"list"}),isActive:h==="list"},{icon:X3,title:We("Grid view","Latest posts block display setting"),onClick:()=>t({postLayout:"grid"}),isActive:h==="grid"}],te=Sa().formats.date;return a.jsxs(a.Fragment,{children:[X,a.jsx(bt,{children:a.jsx(Wn,{controls:ee})}),a.jsx("ul",{...Z,children:V.map(J=>{const ue=J.title.rendered.trim();let ce=J.excerpt.rendered;const me=E?.find(pe=>pe.id===J.author),de=document.createElement("div");de.innerHTML=ce,ce=de.textContent||de.innerText||"";const{url:Ae,alt:ye}=Hrn(J,_),Ne=oe({"wp-block-latest-posts__featured-image":!0,[`align${A}`]:!!A}),je=u&&Ae,ie=je&&a.jsx("img",{src:Ae,alt:ye,style:{maxWidth:v,maxHeight:M}}),re=z<ce.trim().split(" ").length&&J.excerpt.raw===""?a.jsxs(a.Fragment,{children:[ce.trim().split(" ",z).join(" "),cr(xe(m("… <a>Read more<span>: %1$s</span></a>"),ue||m("(no title)")),{a:a.jsx("a",{className:"wp-block-latest-posts__read-more",href:J.link,rel:"noopener noreferrer",onClick:N}),span:a.jsx("span",{className:"screen-reader-text"})})]}):ce;return a.jsxs("li",{children:[je&&a.jsx("div",{className:Ne,children:y?a.jsx("a",{href:J.link,rel:"noreferrer noopener",onClick:N,children:ie}):ie}),a.jsx("a",{className:"wp-block-latest-posts__post-title",href:J.link,rel:"noreferrer noopener",dangerouslySetInnerHTML:ue?{__html:ue}:void 0,onClick:N,children:ue?null:m("(no title)")}),b&&me&&a.jsx("div",{className:"wp-block-latest-posts__post-author",children:xe(m("by %s"),me.name)}),f&&J.date_gmt&&a.jsx("time",{dateTime:Lj("c",J.date_gmt),className:"wp-block-latest-posts__post-date",children:r0(te,J.date_gmt)}),p&&d==="excerpt"&&a.jsx("div",{className:"wp-block-latest-posts__post-excerpt",children:re}),p&&d==="full_post"&&a.jsx("div",{className:"wp-block-latest-posts__post-full-content",dangerouslySetInnerHTML:{__html:J.content.raw.trim()}})]},J.id)})})]})}const G9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/latest-posts",title:"Latest Posts",category:"widgets",description:"Display a list of your most recent posts.",keywords:["recent posts"],textdomain:"default",attributes:{categories:{type:"array",items:{type:"object"}},selectedAuthor:{type:"number"},postsToShow:{type:"number",default:5},displayPostContent:{type:"boolean",default:!1},displayPostContentRadio:{type:"string",default:"excerpt"},excerptLength:{type:"number",default:55},displayAuthor:{type:"boolean",default:!1},displayPostDate:{type:"boolean",default:!1},postLayout:{type:"string",default:"list"},columns:{type:"number",default:3},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},displayFeaturedImage:{type:"boolean",default:!1},featuredImageAlign:{type:"string",enum:["left","center","right"]},featuredImageSizeSlug:{type:"string",default:"thumbnail"},featuredImageSizeWidth:{type:"number",default:null},featuredImageSizeHeight:{type:"number",default:null},addLinkToFeaturedImage:{type:"boolean",default:!1}},supports:{align:!0,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-latest-posts-editor",style:"wp-block-latest-posts"},{name:jve}=G9,Ive={icon:HP,example:{},edit:Pve,deprecated:Irn},Urn=()=>it({name:jve,metadata:G9,settings:Ive}),Xrn=Object.freeze(Object.defineProperty({__proto__:null,init:Urn,metadata:G9,name:jve,settings:Ive},Symbol.toStringTag,{value:"Module"})),l5={A:"upper-alpha",a:"lower-alpha",I:"upper-roman",i:"lower-roman"};function Dve(e){const t=e.getAttribute("type"),n={ordered:e.tagName==="OL",anchor:e.id===""?void 0:e.id,start:e.getAttribute("start")?parseInt(e.getAttribute("start"),10):void 0,reversed:e.hasAttribute("reversed")?!0:void 0,type:t&&l5[t]?l5[t]:void 0},o=Array.from(e.children).map(r=>{const s=Array.from(r.childNodes).filter(f=>f.nodeType!==f.TEXT_NODE||f.textContent.trim().length!==0);s.reverse();const[i,...c]=s;if(!(i?.tagName==="UL"||i?.tagName==="OL"))return Ee("core/list-item",{content:r.innerHTML});const u=c.map(f=>f.nodeType===f.TEXT_NODE?f.textContent:f.outerHTML);u.reverse();const d={content:u.join("").trim()},p=[Dve(i)];return Ee("core/list-item",d,p)});return Ee("core/list",n,o)}function Fve(e){const{values:t,start:n,reversed:o,ordered:r,type:s,...i}=e,c=document.createElement(r?"ol":"ul");c.innerHTML=t,n&&c.setAttribute("start",n),o&&c.setAttribute("reversed",!0),s&&c.setAttribute("type",s);const[l]=O3({HTML:c.outerHTML});return[{...i,...l.attributes},l.innerBlocks]}function Grn(e){const{type:t}=e;return t&&l5[t]?{...e,type:l5[t]}:e}const Krn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,__experimentalFontFamily:!0},color:{gradients:!0,link:!0},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},save({attributes:e}){const{ordered:t,values:n,type:o,reversed:r,start:s}=e,i=t?"ol":"ul";return a.jsx(i,{...Be.save({type:o,reversed:r,start:s}),children:a.jsx(Ie.Content,{value:n,multiline:"li"})})},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Yrn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,__experimentalFontFamily:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},save({attributes:e}){const{ordered:t,values:n,type:o,reversed:r,start:s}=e,i=t?"ol":"ul";return a.jsx(i,{...Be.save({type:o,reversed:r,start:s}),children:a.jsx(Ie.Content,{value:n,multiline:"li"})})},migrate:Fve},Zrn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},isEligible({type:e}){return!!e},save({attributes:e}){const{ordered:t,type:n,reversed:o,start:r}=e,s=t?"ol":"ul";return a.jsx(s,{...Be.save({type:n,reversed:o,start:r}),children:a.jsx(Ht.Content,{})})},migrate:Grn},Qrn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalOnMerge:"true",__experimentalSlashInserter:!0},save({attributes:e}){const{ordered:t,type:n,reversed:o,start:r}=e,s=t?"ol":"ul";return a.jsx(s,{...Be.save({reversed:o,start:r,style:{listStyleType:t&&n!=="decimal"?n:void 0}}),children:a.jsx(Ht.Content,{})})}},Jrn=[Qrn,Zrn,Yrn,Krn],e0n=({setAttributes:e,reversed:t,start:n,type:o})=>a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("List style"),options:[{label:m("Numbers"),value:"decimal"},{label:m("Uppercase letters"),value:"upper-alpha"},{label:m("Lowercase letters"),value:"lower-alpha"},{label:m("Uppercase Roman numerals"),value:"upper-roman"},{label:m("Lowercase Roman numerals"),value:"lower-roman"}],value:o,onChange:r=>e({type:r})}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Start value"),type:"number",onChange:r=>{const s=parseInt(r,10);e({start:isNaN(s)?void 0:s})},value:Number.isInteger(n)?n.toString(10):"",step:"1"}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Reverse order"),checked:t||!1,onChange:r=>{e({reversed:r||void 0})}})]})});function t0n(e,t){const{ordered:n,...o}=e,r=n?"ol":"ul";return a.jsx(r,{ref:t,...o})}const n0n=x.forwardRef(t0n),o0n={name:"core/list-item"},r0n=[["core/list-item"]],ooe=8;function s0n(e,t){const n=Fn(),{updateBlockAttributes:o,replaceInnerBlocks:r}=Oe(Q);x.useEffect(()=>{if(!e.values)return;const[s,i]=Fve(e);Ke("Value attribute on the list block",{since:"6.0",version:"6.5",alternative:"inner blocks"}),n.batch(()=>{o(t,s),r(t,i)})},[e.values])}function i0n(e){const{replaceBlocks:t,selectionChange:n}=Oe(Q),{getBlockRootClientId:o,getBlockAttributes:r,getBlock:s}=G(Q);return x.useCallback(()=>{const i=o(e),c=r(i),l=Ee("core/list-item",c),{innerBlocks:u}=s(e);t([i],[l,...u]),n(u[u.length-1].clientId)},[e])}function a0n({clientId:e}){const t=i0n(e),n=G(o=>{const{getBlockRootClientId:r,getBlockName:s}=o(Q);return s(r(e))==="core/list-item"},[e]);return a.jsx(a.Fragment,{children:a.jsx(Vt,{icon:jt()?ade:ide,title:m("Outdent"),description:m("Outdent list item"),disabled:!n,onClick:t})})}function c0n({attributes:e,setAttributes:t,clientId:n,style:o}){const{ordered:r,type:s,reversed:i,start:c}=e,l=Be({style:{...f0.isNative&&o,listStyleType:r&&s!=="decimal"?s:void 0}}),u=Nt(l,{defaultBlock:o0n,directInsert:!0,template:r0n,templateLock:!1,templateInsertUpdatesSelection:!0,...f0.isNative&&{marginVertical:ooe,marginHorizontal:ooe,renderAppender:!1},__experimentalCaptureToolbars:!0});s0n(e,n);const d=a.jsxs(bt,{group:"block",children:[a.jsx(Vt,{icon:jt()?FZe:sde,title:m("Unordered"),description:m("Convert to unordered list"),isActive:r===!1,onClick:()=>{t({ordered:!1})}}),a.jsx(Vt,{icon:jt()?$Ze:Mz,title:m("Ordered"),description:m("Convert to ordered list"),isActive:r===!0,onClick:()=>{t({ordered:!0})}}),a.jsx(a0n,{clientId:n})]});return a.jsxs(a.Fragment,{children:[a.jsx(n0n,{ordered:r,reversed:i,start:c,...u}),d,r&&a.jsx(e0n,{setAttributes:t,reversed:i,start:c,type:s})]})}function l0n({attributes:e}){const{ordered:t,type:n,reversed:o,start:r}=e,s=t?"ol":"ul";return a.jsx(s,{...Be.save({reversed:o,start:r,style:{listStyleType:t&&n!=="decimal"?n:void 0}}),children:a.jsx(Ht.Content,{})})}function roe({phrasingContentSchema:e}){const t={...e,ul:{},ol:{attributes:["type","start","reversed"]}};return["ul","ol"].forEach(n=>{t[n].children={li:{children:t}}}),t}function gN(e){return e.flatMap(({name:t,attributes:n,innerBlocks:o=[]})=>t==="core/list-item"?[n.content,...gN(o)]:gN(o))}const u0n={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph","core/heading"],transform:e=>{let t=[];if(e.length>1)t=e.map(({content:n})=>Ee("core/list-item",{content:n}));else if(e.length===1){const n=eo({html:e[0].content});t=nB(n,` -`).map(o=>Ee("core/list-item",{content:T0({value:o})}))}return Ee("core/list",{anchor:e.anchor},t)}},{type:"raw",selector:"ol,ul",schema:e=>({ol:roe(e).ol,ul:roe(e).ul}),transform:Dve},...["*","-"].map(e=>({type:"prefix",prefix:e,transform(t){return Ee("core/list",{},[Ee("core/list-item",{content:t})])}})),...["1.","1)"].map(e=>({type:"prefix",prefix:e,transform(t){return Ee("core/list",{ordered:!0},[Ee("core/list-item",{content:t})])}}))],to:[...["core/paragraph","core/heading"].map(e=>({type:"block",blocks:[e],transform:(t,n)=>gN(n).map(o=>Ee(e,{content:o}))}))]},K9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/list",title:"List",category:"text",allowedBlocks:["core/list-item"],description:"An organized collection of items displayed in a specific order.",keywords:["bullet list","ordered list","numbered list"],textdomain:"default",attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,html:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__unstablePasteTextInline:!0,__experimentalOnMerge:!0,__experimentalSlashInserter:!0,interactivity:{clientNavigation:!0}},selectors:{border:".wp-block-list:not(.wp-block-list .wp-block-list)"},editorStyle:"wp-block-list-editor",style:"wp-block-list"},{name:$ve}=K9,Vve={icon:Iw,example:{innerBlocks:[{name:"core/list-item",attributes:{content:m("Alice.")}},{name:"core/list-item",attributes:{content:m("The White Rabbit.")}},{name:"core/list-item",attributes:{content:m("The Cheshire Cat.")}},{name:"core/list-item",attributes:{content:m("The Mad Hatter.")}},{name:"core/list-item",attributes:{content:m("The Queen of Hearts.")}}]},transforms:u0n,edit:c0n,save:l0n,deprecated:Jrn},d0n=()=>it({name:$ve,metadata:K9,settings:Vve}),p0n=Object.freeze(Object.defineProperty({__proto__:null,init:d0n,metadata:K9,name:$ve,settings:Vve},Symbol.toStringTag,{value:"Module"}));function gk(){const e=Fn(),{moveBlocksToPosition:t,removeBlock:n,insertBlock:o,updateBlockListSettings:r}=Oe(Q),{getBlockRootClientId:s,getBlockName:i,getBlockOrder:c,getBlockIndex:l,getSelectedBlockClientIds:u,getBlock:d,getBlockListSettings:p}=G(Q);function f(b){const h=s(b),g=s(h);if(g&&i(g)==="core/list-item")return g}return x.useCallback((b=u())=>{if(Array.isArray(b)||(b=[b]),!b.length)return;const h=b[0];if(i(h)!=="core/list-item")return;const g=f(h);if(!g)return;const z=s(h),A=b[b.length-1],v=c(z).slice(l(A)+1);return e.batch(()=>{if(v.length){let M=c(h)[0];if(!M){const y=jo(d(z),{},[]);M=y.clientId,o(y,0,h,!1),r(M,p(z))}t(v,z,M)}t(b,z,s(g),l(g)+1),c(z).length||n(z,!1)}),!0},[])}function Hve(e){const{replaceBlocks:t,selectionChange:n,multiSelect:o}=Oe(Q),{getBlock:r,getPreviousBlockClientId:s,getSelectionStart:i,getSelectionEnd:c,hasMultiSelection:l,getMultiSelectedBlockClientIds:u}=G(Q);return x.useCallback(()=>{const d=l(),p=d?u():[e],f=p.map(A=>jo(r(A))),b=s(e),h=jo(r(b));h.innerBlocks?.length||(h.innerBlocks=[Ee("core/list")]),h.innerBlocks[h.innerBlocks.length-1].innerBlocks.push(...f);const g=i(),z=c();return t([b,...p],[h]),d?o(f[0].clientId,f[f.length-1].clientId):n(f[0].clientId,z.attributeKey,z.clientId===g.clientId?g.offset:z.offset,z.offset),!0},[e])}function f0n(e){const{replaceBlocks:t,selectionChange:n}=Oe(Q),{getBlock:o,getBlockRootClientId:r,getBlockIndex:s,getBlockName:i}=G(Q),c=x.useRef(e);c.current=e;const l=gk();return Mn(u=>{function d(p){if(p.defaultPrevented||p.keyCode!==Gr)return;const{content:f,clientId:b}=c.current;if(f.length)return;if(p.preventDefault(),i(r(r(c.current.clientId)))==="core/list-item"){l();return}const g=o(r(b)),z=s(b),A=jo({...g,innerBlocks:g.innerBlocks.slice(0,z)}),_=Ee(Mr()),v=[...g.innerBlocks[z].innerBlocks[0]?.innerBlocks||[],...g.innerBlocks.slice(z+1)],M=v.length?[jo({...g,innerBlocks:v})]:[];t(g.clientId,[A,_,...M],1),n(_.clientId)}return u.addEventListener("keydown",d),()=>{u.removeEventListener("keydown",d)}},[])}function b0n(e){const{getSelectionStart:t,getSelectionEnd:n,getBlockIndex:o}=G(Q),r=Hve(e),s=gk();return Mn(i=>{function c(l){const{keyCode:u,shiftKey:d,altKey:p,metaKey:f,ctrlKey:b}=l;if(l.defaultPrevented||u!==VN&&u!==Z2||p||f||b)return;const h=t(),g=n();h.offset===0&&g.offset===0&&(d?u===Z2&&s()&&l.preventDefault():o(e)!==0&&r()&&l.preventDefault())}return i.addEventListener("keydown",c),()=>{i.removeEventListener("keydown",c)}},[e,r])}function h0n(e,t){const n=Fn(),{getPreviousBlockClientId:o,getNextBlockClientId:r,getBlockOrder:s,getBlockRootClientId:i,getBlockName:c}=G(Q),{mergeBlocks:l,moveBlocksToPosition:u}=Oe(Q),d=gk();function p(g){const z=s(g);return z.length?p(z[z.length-1]):g}function f(g){const z=i(g),A=i(z);if(A&&c(A)==="core/list-item")return A}function b(g){const z=r(g);if(z)return z;const A=f(g);if(A)return b(A)}function h(g){const z=s(g);return z.length?s(z[0])[0]:b(g)}return g=>{function z(A,_){n.batch(()=>{const[v]=s(_);v&&(o(_)===A&&!s(A).length?u([v],_,A):u(s(v),v,i(A))),l(A,_)})}if(g){const A=h(e);if(!A){t(g);return}f(A)?d(A):z(e,A)}else{const A=o(e);if(f(e))d(e);else if(A){const _=p(A);z(_,e)}else t(g)}}}function m0n({clientId:e}){const t=Hve(e),n=gk(),{canIndent:o,canOutdent:r}=G(s=>{const{getBlockIndex:i,getBlockRootClientId:c,getBlockName:l}=s(Q);return{canIndent:i(e)>0,canOutdent:l(c(c(e)))==="core/list-item"}},[e]);return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{icon:jt()?ade:ide,title:m("Outdent"),description:m("Outdent list item"),disabled:!r,onClick:()=>n()}),a.jsx(Vt,{icon:jt()?IZe:jZe,title:m("Indent"),description:m("Indent list item"),disabled:!o,onClick:()=>t()})]})}function g0n({attributes:e,setAttributes:t,clientId:n,mergeBlocks:o}){const{placeholder:r,content:s}=e,i=Be(),c=Nt(i,{renderAppender:!1,__unstableDisableDropZone:!0}),l=f0n({content:s,clientId:n}),u=b0n(n),d=h0n(n,o);return a.jsxs(a.Fragment,{children:[a.jsxs("li",{...c,children:[a.jsx(Ie,{ref:xn([l,u]),identifier:"content",tagName:"div",onChange:p=>t({content:p}),value:s,"aria-label":m("List text"),placeholder:r||m("List"),onMerge:d}),c.children]}),a.jsx(bt,{group:"block",children:a.jsx(m0n,{clientId:n})})]})}function M0n({attributes:e}){return a.jsxs("li",{...Be.save(),children:[a.jsx(Ie.Content,{value:e.content}),a.jsx(Ht.Content,{})]})}const z0n={to:[{type:"block",blocks:["core/paragraph"],transform:(e,t=[])=>[Ee("core/paragraph",e),...t.map(n=>jo(n))]}]},Y9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/list-item",title:"List item",category:"text",parent:["core/list"],allowedBlocks:["core/list"],description:"An individual item within a list.",textdomain:"default",attributes:{placeholder:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"li",role:"content"}},supports:{anchor:!0,className:!1,splitting:!0,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,background:!0,__experimentalDefaultControls:{text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},selectors:{root:".wp-block-list > li",border:".wp-block-list:not(.wp-block-list .wp-block-list) > li"}},{name:Uve}=Y9,Xve={icon:pQe,edit:g0n,save:M0n,merge(e,t){return{...e,content:e.content+t.content}},transforms:z0n,[e0(Ln).requiresWrapperOnCopy]:!0},O0n=()=>it({name:Uve,metadata:Y9,settings:Xve}),y0n=Object.freeze(Object.defineProperty({__proto__:null,init:O0n,metadata:Y9,name:Uve,settings:Xve},Symbol.toStringTag,{value:"Module"}));function A0n({attributes:e,setAttributes:t}){const{displayLoginAsForm:n,redirectToCurrent:o}=e,r=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({displayLoginAsForm:!1,redirectToCurrent:!0})},dropdownMenuProps:r,children:[a.jsx(tt,{label:m("Display login as form"),isShownByDefault:!0,hasValue:()=>n,onDeselect:()=>t({displayLoginAsForm:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display login as form"),checked:n,onChange:()=>t({displayLoginAsForm:!n})})}),a.jsx(tt,{label:m("Redirect to current URL"),isShownByDefault:!0,hasValue:()=>!o,onDeselect:()=>t({redirectToCurrent:!0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Redirect to current URL"),checked:o,onChange:()=>t({redirectToCurrent:!o})})})]})}),a.jsx("div",{...Be({className:"logged-in"}),children:a.jsx("a",{href:"#login-pseudo-link",children:m("Log out")})})]})}const Z9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/loginout",title:"Login/out",category:"theme",description:"Show login & logout links.",keywords:["login","logout","form"],textdomain:"default",attributes:{displayLoginAsForm:{type:"boolean",default:!1},redirectToCurrent:{type:"boolean",default:!0}},example:{viewportWidth:350},supports:{className:!0,color:{background:!0,text:!1,gradients:!0,link:!0},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},interactivity:{clientNavigation:!0}},style:"wp-block-loginout"},{name:Gve}=Z9,Kve={icon:bQe,edit:A0n},v0n=()=>it({name:Gve,metadata:Z9,settings:Kve}),x0n=Object.freeze(Object.defineProperty({__proto__:null,init:v0n,metadata:Z9,name:Gve,settings:Kve},Symbol.toStringTag,{value:"Module"})),jm="full",u5=15,w0n="media",_0n="attachment",k0n=[["core/paragraph",{placeholder:We("Content…","content placeholder")}]],Mk=(e,t)=>e?{backgroundImage:`url(${e})`,backgroundPosition:t?`${t.x*100}% ${t.y*100}%`:"50% 50%"}:{},Yve=(e,t)=>e?{backgroundImage:`url(${e})`,backgroundPosition:t?`${Math.round(t.x*100)}% ${Math.round(t.y*100)}%`:"50% 50%"}:{},mb=50,Cc=()=>{},Zve=e=>{if(!e.customBackgroundColor)return e;const t={color:{background:e.customBackgroundColor}},{customBackgroundColor:n,...o}=e;return{...o,style:t}},Im=e=>e.align?e:{...e,align:"wide"},zk={align:{type:"string",default:"wide"},mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:""},mediaPosition:{type:"string",default:"left"},mediaId:{type:"number"},mediaType:{type:"string"},mediaWidth:{type:"number",default:50},isStackedOnMobile:{type:"boolean",default:!1}},Q9={...zk,isStackedOnMobile:{type:"boolean",default:!0},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},mediaSizeSlug:{type:"string"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},Qve={...Q9,mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:"",role:"content"},mediaId:{type:"number",role:"content"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src",role:"content"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href",role:"content"},mediaType:{type:"string",role:"content"}},S0n={...Qve,align:{type:"string",default:"none"},useFeaturedImage:{type:"boolean",default:!1}},J9={anchor:!0,align:["wide","full"],html:!1,color:{gradients:!0,link:!0}},Jve={...J9,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}}},C0n={...Jve,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},interactivity:{clientNavigation:!0}},q0n={attributes:S0n,supports:C0n,usesContext:["postId","postType"],save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=s?a.jsx("img",{src:s,alt:n,className:A||null}):null;f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?Yve(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()})]}):a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})}},R0n={attributes:Qve,supports:Jve,save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=a.jsx("img",{src:s,alt:n,className:A||null});f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?Yve(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()})]}):a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})},migrate:Im,isEligible(e,t,{block:n}){const{attributes:o}=n;return e.align===void 0&&!!o.className?.includes("alignwide")}},T0n={attributes:Q9,supports:J9,save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=a.jsx("img",{src:s,alt:n,className:A||null});f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?Mk(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()})]}):a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})},migrate:Im},E0n={attributes:Q9,supports:J9,save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=a.jsx("img",{src:s,alt:n,className:A||null});f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?Mk(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})},migrate:Im},W0n={attributes:{...zk,isStackedOnMobile:{type:"boolean",default:!0},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},migrate:Co(Zve,Im),save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,isStackedOnMobile:o,mediaAlt:r,mediaPosition:s,mediaType:i,mediaUrl:c,mediaWidth:l,mediaId:u,verticalAlignment:d,imageFill:p,focalPoint:f,linkClass:b,href:h,linkTarget:g,rel:z}=e,A=z||void 0;let _=a.jsx("img",{src:c,alt:r,className:u&&i==="image"?`wp-image-${u}`:null});h&&(_=a.jsx("a",{className:b,href:h,target:g,rel:A,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:c})},M=Pt("background-color",t),y=oe({"has-media-on-the-right":s==="right","has-background":M||n,[M]:M,"is-stacked-on-mobile":o,[`is-vertically-aligned-${d}`]:d,"is-image-fill":p}),k=p?Mk(c,f):{};let S;l!==mb&&(S=s==="right"?`auto ${l}%`:`${l}% auto`);const C={backgroundColor:M?void 0:n,gridTemplateColumns:S};return a.jsxs("div",{className:y,style:C,children:[a.jsx("figure",{className:"wp-block-media-text__media",style:k,children:(v[i]||Cc)()}),a.jsx("div",{className:"wp-block-media-text__content",children:a.jsx(Ht.Content,{})})]})}},N0n={attributes:{...zk,backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},migrate:Co(Zve,Im),save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,isStackedOnMobile:o,mediaAlt:r,mediaPosition:s,mediaType:i,mediaUrl:c,mediaWidth:l,mediaId:u,verticalAlignment:d,imageFill:p,focalPoint:f}=e,b={image:()=>a.jsx("img",{src:c,alt:r,className:u&&i==="image"?`wp-image-${u}`:null}),video:()=>a.jsx("video",{controls:!0,src:c})},h=Pt("background-color",t),g=oe({"has-media-on-the-right":s==="right",[h]:h,"is-stacked-on-mobile":o,[`is-vertically-aligned-${d}`]:d,"is-image-fill":p}),z=p?Mk(c,f):{};let A;l!==mb&&(A=s==="right"?`auto ${l}%`:`${l}% auto`);const _={backgroundColor:h?void 0:n,gridTemplateColumns:A};return a.jsxs("div",{className:g,style:_,children:[a.jsx("figure",{className:"wp-block-media-text__media",style:z,children:(b[i]||Cc)()}),a.jsx("div",{className:"wp-block-media-text__content",children:a.jsx(Ht.Content,{})})]})}},B0n={attributes:{...zk,backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"}},migrate:Im,save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,isStackedOnMobile:o,mediaAlt:r,mediaPosition:s,mediaType:i,mediaUrl:c,mediaWidth:l}=e,u={image:()=>a.jsx("img",{src:c,alt:r}),video:()=>a.jsx("video",{controls:!0,src:c})},d=Pt("background-color",t),p=oe({"has-media-on-the-right":s==="right",[d]:d,"is-stacked-on-mobile":o});let f;l!==mb&&(f=s==="right"?`auto ${l}%`:`${l}% auto`);const b={backgroundColor:d?void 0:n,gridTemplateColumns:f};return a.jsxs("div",{className:p,style:b,children:[a.jsx("figure",{className:"wp-block-media-text__media",children:(u[i]||Cc)()}),a.jsx("div",{className:"wp-block-media-text__content",children:a.jsx(Ht.Content,{})})]})}},L0n=[q0n,R0n,T0n,E0n,W0n,N0n,B0n];function e4e(e,t){return e?{objectPosition:t?`${Math.round(t.x*100)}% ${Math.round(t.y*100)}%`:"50% 50%"}:{}}const t4e=["image","video"],P0n=()=>{},j0n=x.forwardRef(({isSelected:e,isStackedOnMobile:t,...n},o)=>{const r=Yn("small","<");return a.jsx(Ca,{ref:o,showHandle:e&&(!r||!t),...n})});function I0n({mediaId:e,mediaUrl:t,onSelectMedia:n,toggleUseFeaturedImage:o,useFeaturedImage:r}){return a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:e,mediaURL:t,allowedTypes:t4e,accept:"image/*,video/*",onSelect:n,onToggleFeaturedImage:o,useFeaturedImage:r,onReset:()=>n(void 0)})})}function soe({className:e,mediaUrl:t,onSelectMedia:n,toggleUseFeaturedImage:o}){const{createErrorNotice:r}=Oe(mt),s=i=>{r(i,{type:"snackbar"})};return a.jsx(au,{icon:a.jsx(Zn,{icon:DP}),labels:{title:m("Media area")},className:e,onSelect:n,accept:"image/*,video/*",onToggleFeaturedImage:o,allowedTypes:t4e,onError:s,disableMediaButtons:t})}function D0n(e,t){const{className:n,commitWidthChange:o,focalPoint:r,imageFill:s,isSelected:i,isStackedOnMobile:c,mediaAlt:l,mediaId:u,mediaPosition:d,mediaType:p,mediaUrl:f,mediaWidth:b,onSelectMedia:h,onWidthChange:g,enableResize:z,toggleUseFeaturedImage:A,useFeaturedImage:_,featuredImageURL:v,featuredImageAlt:M,refMedia:y}=e,k=!u&&Nr(f),{toggleSelection:S}=Oe(Q);if(f||v||_){const C=()=>{S(!1)},R=(j,I,P)=>{g(parseInt(P.style.width))},T=(j,I,P)=>{S(!0),o(parseInt(P.style.width))},E={right:z&&d==="left",left:z&&d==="right"},B=p==="image"&&s?e4e(f||v,r):{},N={image:()=>_&&v?a.jsx("img",{ref:y,src:v,alt:M,style:B}):f&&a.jsx("img",{ref:y,src:f,alt:l,style:B}),video:()=>a.jsx("video",{controls:!0,ref:y,src:f})};return a.jsxs(j0n,{as:"figure",className:oe(n,"editor-media-container__resizer",{"is-transient":k}),size:{width:b+"%"},minWidth:"10%",maxWidth:"100%",enable:E,onResizeStart:C,onResize:R,onResizeStop:T,axis:"x",isSelected:i,isStackedOnMobile:c,ref:t,children:[a.jsx(I0n,{onSelectMedia:h,mediaUrl:_&&v?v:f,mediaId:u,toggleUseFeaturedImage:A}),(N[p]||P0n)(),k&&a.jsx(Xn,{}),!_&&a.jsx(soe,{...e}),!v&&_&&a.jsx(vo,{className:"wp-block-media-text--placeholder-image",style:B,withIllustration:!0})]})}return a.jsx(soe,{...e})}const F0n=x.forwardRef(D0n),{ResolutionTool:$0n}=e0(Ln),ioe=e=>Math.max(u5,Math.min(e,100-u5));function n4e(e,t){return e?.media_details?.sizes?.[t]?.source_url}function V0n({attributes:{linkDestination:e,href:t},setAttributes:n}){return o=>{if(!o||!o.url){n({mediaAlt:void 0,mediaId:void 0,mediaType:void 0,mediaUrl:void 0,mediaLink:void 0,href:void 0,focalPoint:void 0,useFeaturedImage:!1});return}Nr(o.url)&&(o.type=Zie(o.url));let r,s;o.media_type?o.media_type==="image"?r="image":r="video":r=o.type,r==="image"&&(s=o.sizes?.large?.url||o.media_details?.sizes?.large?.source_url);let i=t;e===w0n&&(i=o.url),e===_0n&&(i=o.link),n({mediaAlt:o.alt,mediaId:o.id,mediaType:r,mediaUrl:s||o.url,mediaLink:o.link||void 0,href:i,focalPoint:void 0,useFeaturedImage:!1})}}function H0n({image:e,value:t,onChange:n}){const{imageSizes:o}=G(s=>{const{getSettings:i}=s(Q);return{imageSizes:i().imageSizes}},[]);if(!o?.length)return null;const r=o.filter(({slug:s})=>n4e(e,s)).map(({name:s,slug:i})=>({value:i,label:s}));return a.jsx($0n,{value:t,defaultValue:jm,options:r,onChange:n})}function U0n({attributes:e,isSelected:t,setAttributes:n,context:{postId:o,postType:r}}){const{focalPoint:s,href:i,imageFill:c,isStackedOnMobile:l,linkClass:u,linkDestination:d,linkTarget:p,mediaAlt:f,mediaId:b,mediaPosition:h,mediaType:g,mediaUrl:z,mediaWidth:A,mediaSizeSlug:_,rel:v,verticalAlignment:M,allowedBlocks:y,useFeaturedImage:k}=e,[S]=Ao("postType",r,"featured_media",o),{featuredImageMedia:C}=G(ie=>({featuredImageMedia:S&&k?ie(Me).getMedia(S,{context:"view"}):void 0}),[S,k]),{image:R}=G(ie=>({image:b&&t?ie(Me).getMedia(b,{context:"view"}):null}),[t,b]),T=k?C?.source_url:"",E=k?C?.alt_text:"",B=()=>{n({imageFill:!1,mediaType:"image",mediaId:void 0,mediaUrl:void 0,mediaAlt:void 0,mediaLink:void 0,linkDestination:void 0,linkTarget:void 0,linkClass:void 0,rel:void 0,href:void 0,useFeaturedImage:!k})},N=x.useRef(),j=ie=>{const{style:we}=N.current,{x:re,y:pe}=ie;we.objectPosition=`${re*100}% ${pe*100}%`},[I,P]=x.useState(null),$=V0n({attributes:e,setAttributes:n}),F=ie=>{n(ie)},X=ie=>{P(ioe(ie))},Z=ie=>{n({mediaWidth:ioe(ie)}),P(null)},V=oe({"has-media-on-the-right":h==="right","is-selected":t,"is-stacked-on-mobile":l,[`is-vertically-aligned-${M}`]:M,"is-image-fill-element":c}),ee=`${I||A}%`,te=h==="right"?`1fr ${ee}`:`${ee} 1fr`,J={gridTemplateColumns:te,msGridColumns:te},ue=ie=>{n({mediaAlt:ie})},ce=ie=>{n({verticalAlignment:ie})},me=ie=>{const we=n4e(R,ie);if(!we)return null;n({mediaUrl:we,mediaSizeSlug:ie})},de=Qo(),Ae=a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({isStackedOnMobile:!0,imageFill:!1,mediaAlt:"",focalPoint:void 0,mediaWidth:50,mediaSizeSlug:void 0})},dropdownMenuProps:de,children:[a.jsx(tt,{label:m("Media width"),isShownByDefault:!0,hasValue:()=>A!==50,onDeselect:()=>n({mediaWidth:50}),children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Media width"),value:I||A,onChange:Z,min:u5,max:100-u5})}),a.jsx(tt,{label:m("Stack on mobile"),isShownByDefault:!0,hasValue:()=>!l,onDeselect:()=>n({isStackedOnMobile:!0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Stack on mobile"),checked:l,onChange:()=>n({isStackedOnMobile:!l})})}),g==="image"&&a.jsx(tt,{label:m("Crop image to fill"),isShownByDefault:!0,hasValue:()=>!!c,onDeselect:()=>n({imageFill:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Crop image to fill"),checked:!!c,onChange:()=>n({imageFill:!c})})}),c&&(z||T)&&g==="image"&&a.jsx(tt,{label:m("Focal point"),isShownByDefault:!0,hasValue:()=>!!s,onDeselect:()=>n({focalPoint:void 0}),children:a.jsx(u_,{__nextHasNoMarginBottom:!0,label:m("Focal point"),url:k&&T?T:z,value:s,onChange:ie=>n({focalPoint:ie}),onDragStart:j,onDrag:j})}),g==="image"&&z&&!k&&a.jsx(tt,{label:m("Alternative text"),isShownByDefault:!0,hasValue:()=>!!f,onDeselect:()=>n({mediaAlt:""}),children:a.jsx(Pi,{__nextHasNoMarginBottom:!0,label:m("Alternative text"),value:f,onChange:ue,help:a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]})})}),g==="image"&&!k&&a.jsx(H0n,{image:R,value:_,onChange:me})]}),ye=Be({className:V,style:J}),Ne=Nt({className:"wp-block-media-text__content"},{template:k0n,allowedBlocks:y}),je=Jr();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:Ae}),a.jsxs(bt,{group:"block",children:[je==="default"&&a.jsxs(a.Fragment,{children:[a.jsx($ze,{onChange:ce,value:M}),a.jsx(Vt,{icon:CQe,title:m("Show media on left"),isActive:h==="left",onClick:()=>n({mediaPosition:"left"})}),a.jsx(Vt,{icon:qQe,title:m("Show media on right"),isActive:h==="right",onClick:()=>n({mediaPosition:"right"})})]}),g==="image"&&!k&&a.jsx(u3e,{url:i||"",onChangeUrl:F,linkDestination:d,mediaType:g,mediaUrl:R&&R.source_url,mediaLink:R&&R.link,linkTarget:p,linkClass:u,rel:v})]}),a.jsxs("div",{...ye,children:[h==="right"&&a.jsx("div",{...Ne}),a.jsx(F0n,{className:"wp-block-media-text__media",onSelectMedia:$,onWidthChange:X,commitWidthChange:Z,refMedia:N,enableResize:je==="default",toggleUseFeaturedImage:B,focalPoint:s,imageFill:c,isSelected:t,isStackedOnMobile:l,mediaAlt:f,mediaId:b,mediaPosition:h,mediaType:g,mediaUrl:z,mediaWidth:A,useFeaturedImage:k,featuredImageURL:T,featuredImageAlt:E}),h!=="right"&&a.jsx("div",{...Ne})]})]})}const X0n=50,aoe=()=>{};function G0n({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"}),_=u?e4e(s,d):{};let v=s?a.jsx("img",{src:s,alt:n,className:A||null,style:_}):null;f&&(v=a.jsx("a",{className:p,href:f,target:b,rel:z,children:v}));const M={image:()=>v,video:()=>a.jsx("video",{controls:!0,src:s})},y=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill-element":u});let k;i!==X0n&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:y,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",children:(M[r]||aoe)()})]}):a.jsxs("div",{...Be.save({className:y,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",children:(M[r]||aoe)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})}const K0n={from:[{type:"block",blocks:["core/image"],transform:({alt:e,url:t,id:n,anchor:o})=>Ee("core/media-text",{mediaAlt:e,mediaId:n,mediaUrl:t,mediaType:"image",anchor:o})},{type:"block",blocks:["core/video"],transform:({src:e,id:t,anchor:n})=>Ee("core/media-text",{mediaId:t,mediaUrl:e,mediaType:"video",anchor:n})},{type:"block",blocks:["core/cover"],transform:({align:e,alt:t,anchor:n,backgroundType:o,customGradient:r,customOverlayColor:s,gradient:i,id:c,overlayColor:l,style:u,textColor:d,url:p},f)=>{let b={};return r?b={style:{color:{gradient:r}}}:s&&(b={style:{color:{background:s}}}),u?.color?.text&&(b.style={color:{...b.style?.color,text:u.color.text}}),Ee("core/media-text",{align:e,anchor:n,backgroundColor:l,gradient:i,mediaAlt:t,mediaId:c,mediaType:o,mediaUrl:p,textColor:d,...b},f)}}],to:[{type:"block",blocks:["core/image"],isMatch:({mediaType:e,mediaUrl:t})=>!t||e==="image",transform:({mediaAlt:e,mediaId:t,mediaUrl:n,anchor:o})=>Ee("core/image",{alt:e,id:t,url:n,anchor:o})},{type:"block",blocks:["core/video"],isMatch:({mediaType:e,mediaUrl:t})=>!t||e==="video",transform:({mediaId:e,mediaUrl:t,anchor:n})=>Ee("core/video",{id:e,src:t,anchor:n})},{type:"block",blocks:["core/cover"],transform:({align:e,anchor:t,backgroundColor:n,focalPoint:o,gradient:r,mediaAlt:s,mediaId:i,mediaType:c,mediaUrl:l,style:u,textColor:d},p)=>{const f={};u?.color?.gradient?f.customGradient=u.color.gradient:u?.color?.background&&(f.customOverlayColor=u.color.background),u?.color?.text&&(f.style={color:{text:u.color.text}});const b={align:e,alt:s,anchor:t,backgroundType:c,dimRatio:l?50:100,focalPoint:o,gradient:r,id:i,overlayColor:n,textColor:d,url:l,...f};return Ee("core/cover",b,p)}}]},eD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/media-text",title:"Media & Text",category:"media",description:"Set media and words side-by-side for a richer layout.",keywords:["image","video"],textdomain:"default",attributes:{align:{type:"string",default:"none"},mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:"",role:"content"},mediaPosition:{type:"string",default:"left"},mediaId:{type:"number",role:"content"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src",role:"content"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},mediaType:{type:"string",role:"content"},mediaWidth:{type:"number",default:50},mediaSizeSlug:{type:"string"},isStackedOnMobile:{type:"boolean",default:!0},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"},allowedBlocks:{type:"array"},useFeaturedImage:{type:"boolean",default:!1}},usesContext:["postId","postType"],supports:{anchor:!0,align:["wide","full"],html:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-media-text-editor",style:"wp-block-media-text"},{name:o4e}=eD,r4e={icon:mQe,example:{viewportWidth:601,attributes:{mediaType:"image",mediaUrl:"https://s.w.org/images/core/5.3/Biologia_Centrali-Americana_-_Cantorchilus_semibadius_1902.jpg"},innerBlocks:[{name:"core/paragraph",attributes:{content:m("The wren<br>Earns his living<br>Noiselessly.")}},{name:"core/paragraph",attributes:{content:m("— Kobayashi Issa (一茶)")}}]},transforms:K0n,edit:U0n,save:G0n,deprecated:L0n},Y0n=()=>it({name:o4e,metadata:eD,settings:r4e}),Z0n=Object.freeze(Object.defineProperty({__proto__:null,init:Y0n,metadata:eD,name:o4e,settings:r4e},Symbol.toStringTag,{value:"Module"}));function Q0n({attributes:e,clientId:t}){const{originalName:n,originalUndelimitedContent:o}=e,r=!!o,{hasFreeformBlock:s,hasHTMLBlock:i}=G(f=>{const{canInsertBlockType:b,getBlockRootClientId:h}=f(Q);return{hasFreeformBlock:b("core/freeform",h(t)),hasHTMLBlock:b("core/html",h(t))}},[t]),{replaceBlock:c}=Oe(Q);function l(){c(t,Ee("core/html",{content:o}))}const u=[];let d;const p=a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:l,variant:"primary",children:m("Keep as HTML")},"convert");return r&&!s&&!n?i?(d=m("It appears you are trying to use the deprecated Classic block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely. Alternatively, you can refresh the page to use the Classic block."),u.push(p)):d=m("It appears you are trying to use the deprecated Classic block. You can leave this block intact, or remove it entirely. Alternatively, you can refresh the page to use the Classic block."):r&&i?(d=xe(m('Your site doesn’t include support for the "%s" block. You can leave it as-is, convert it to custom HTML, or remove it.'),n),u.push(p)):d=xe(m('Your site doesn’t include support for the "%s" block. You can leave it as-is or remove it.'),n),a.jsxs("div",{...Be({className:"has-warning"}),children:[a.jsx(Er,{actions:u,children:d}),a.jsx(i0,{children:q5(o)})]})}function J0n({attributes:e}){return a.jsx(i0,{children:e.originalContent})}const tD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/missing",title:"Unsupported",category:"text",description:"Your site doesn’t include support for this block.",textdomain:"default",attributes:{originalName:{type:"string"},originalUndelimitedContent:{type:"string"},originalContent:{type:"string",source:"raw"}},supports:{className:!1,customClassName:!1,inserter:!1,html:!1,reusable:!1,interactivity:{clientNavigation:!0}}},{name:Ok}=tD,s4e={name:Ok,__experimentalLabel(e,{context:t}){if(t==="accessibility"){const{originalName:n}=e,o=n?on(n):void 0;return o?o.settings.title||n:""}},edit:Q0n,save:J0n},e1n=()=>it({name:Ok,metadata:tD,settings:s4e}),t1n=Object.freeze(Object.defineProperty({__proto__:null,init:e1n,metadata:tD,name:Ok,settings:s4e},Symbol.toStringTag,{value:"Module"})),coe=m("Read more");function n1n({attributes:{customText:e,noTeaser:t},insertBlocksAfter:n,setAttributes:o}){const r=d=>{o({customText:d.target.value})},s=({keyCode:d})=>{d===Gr&&n([Ee(Mr())])},i=d=>m(d?"The excerpt is hidden.":"The excerpt is visible."),c=()=>o({noTeaser:!t}),l={width:`${(e||coe).length+1.2}em`},u=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{o({noTeaser:!1})},dropdownMenuProps:u,children:a.jsx(tt,{label:m("Hide excerpt"),isShownByDefault:!0,hasValue:()=>t,onDeselect:()=>o({noTeaser:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Hide the excerpt on the full content page"),checked:!!t,onChange:c,help:i})})})}),a.jsx("div",{...Be(),children:a.jsx("input",{"aria-label":m("“Read more” link text"),type:"text",value:e,placeholder:coe,onChange:r,onKeyDown:s,style:l})})]})}function o1n({attributes:{customText:e,noTeaser:t}}){const n=e?`<!--more ${e}-->`:"<!--more-->",o=t?"<!--noteaser-->":"";return a.jsx(i0,{children:[n,o].filter(Boolean).join(` -`)})}const r1n={from:[{type:"raw",schema:{"wp-block":{attributes:["data-block"]}},isMatch:e=>e.dataset&&e.dataset.block==="core/more",transform(e){const{customText:t,noTeaser:n}=e.dataset,o={};return t&&(o.customText=t),n===""&&(o.noTeaser=!0),Ee("core/more",o)}}]},nD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/more",title:"More",category:"design",description:"Content before this block will be shown in the excerpt on your archives page.",keywords:["read more"],textdomain:"default",attributes:{customText:{type:"string",default:""},noTeaser:{type:"boolean",default:!1}},supports:{customClassName:!1,className:!1,html:!1,multiple:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-more-editor"},{name:i4e}=nD,a4e={icon:gQe,example:{},__experimentalLabel(e,{context:t}){const n=e?.metadata?.name;if(t==="list-view"&&n)return n;if(t==="accessibility")return e.customText},transforms:r1n,edit:n1n,save:o1n},s1n=()=>it({name:i4e,metadata:nD,settings:a4e}),i1n=Object.freeze(Object.defineProperty({__proto__:null,init:s1n,metadata:nD,name:i4e,settings:a4e},Symbol.toStringTag,{value:"Module"})),c4e={name:"core/navigation-link"},a1n=["core/navigation-link/page","core/navigation-link"],l4e={per_page:100,status:["publish","draft"],order:"desc",orderby:"date"},c1n=["postType","wp_navigation",l4e];function oD(e){const t=tie({kind:"postType",name:"wp_navigation",id:e}),{navigationMenu:n,isNavigationMenuResolved:o,isNavigationMenuMissing:r}=G(h=>l1n(h,e),[e]),{canCreate:s,canUpdate:i,canDelete:c,isResolving:l,hasResolved:u}=t,{records:d,isResolving:p,hasResolved:f}=vl("postType","wp_navigation",l4e),b=e?d?.length>1:d?.length>0;return{navigationMenu:n,isNavigationMenuResolved:o,isNavigationMenuMissing:r,navigationMenus:d,isResolvingNavigationMenus:p,hasResolvedNavigationMenus:f,canSwitchNavigationMenu:b,canUserCreateNavigationMenus:s,isResolvingCanUserCreateNavigationMenus:l,hasResolvedCanUserCreateNavigationMenus:u,canUserUpdateNavigationMenu:i,hasResolvedCanUserUpdateNavigationMenu:e?u:void 0,canUserDeleteNavigationMenu:c,hasResolvedCanUserDeleteNavigationMenu:e?u:void 0}}function l1n(e,t){if(!t)return{isNavigationMenuResolved:!1,isNavigationMenuMissing:!0};const{getEntityRecord:n,getEditedEntityRecord:o,hasFinishedResolution:r}=e(Me),s=["postType","wp_navigation",t],i=n(...s),c=o(...s),l=r("getEditedEntityRecord",s),u=c.status==="publish"||c.status==="draft";return{isNavigationMenuResolved:l,isNavigationMenuMissing:l&&(!i||!u),navigationMenu:u?c:null}}function rD(e){const{records:t,isResolving:n,hasResolved:o}=vl("root","menu",{per_page:-1,context:"view"}),{records:r,isResolving:s,hasResolved:i}=vl("postType","page",{parent:0,order:"asc",orderby:"id",per_page:-1,context:"view"}),{records:c,hasResolved:l}=vl("root","menuItem",{menus:e,per_page:-1,context:"view"},{enabled:!!e});return{pages:r,isResolvingPages:s,hasResolvedPages:i,hasPages:!!(i&&r?.length),menus:t,isResolvingMenus:n,hasResolvedMenus:o,hasMenus:!!(o&&t?.length),menuItems:c,hasResolvedMenuItems:l}}const u4e=({isVisible:e=!0})=>a.jsx("div",{"aria-hidden":e?void 0:!0,className:"wp-block-navigation-placeholder__preview",children:a.jsxs("div",{className:"wp-block-navigation-placeholder__actions__indicator",children:[a.jsx(wn,{icon:G3}),m("Navigation")]})});function u1n(e,t,n){return e?n==="publish"?Lt(e):xe(m("%1$s (%2$s)"),Lt(e),n):xe(m("(no title %s)"),t)}function d4e({currentMenuId:e,onSelectNavigationMenu:t,onSelectClassicMenu:n,onCreateNew:o,actionLabel:r,createNavigationMenuIsSuccess:s,createNavigationMenuIsError:i}){const c=m("Create from '%s'"),[l,u]=x.useState(!1);r=r||c;const{menus:d}=rD(),{navigationMenus:p,isResolvingNavigationMenus:f,hasResolvedNavigationMenus:b,canUserCreateNavigationMenus:h,canSwitchNavigationMenu:g,isNavigationMenuMissing:z}=oD(e),[A]=Ao("postType","wp_navigation","title"),_=x.useMemo(()=>p?.map(({id:N,title:j,status:I},P)=>{const $=u1n(j?.rendered,P+1,I);return{value:N,label:$,ariaLabel:xe(r,$),disabled:l||f||!b}})||[],[p,r,f,b,l]),v=!!p?.length,M=!!d?.length,y=!!g,k=!!h,S=v&&!e,C=!v&&b,R=b&&e===null,T=e&&z;let E="";return f?E=m("Loading…"):S||C||R||T?E=m("Choose or create a Navigation Menu"):E=A,x.useEffect(()=>{l&&(s||i)&&u(!1)},[b,s,h,i,l,R,C,S]),a.jsx(c0,{label:E,icon:Wc,toggleProps:{size:"small"},children:({onClose:N})=>a.jsxs(a.Fragment,{children:[y&&v&&a.jsx(Cn,{label:m("Menus"),children:a.jsx(kf,{value:e,onSelect:j=>{t(j),N()},choices:_})}),k&&M&&a.jsx(Cn,{label:m("Import Classic Menus"),children:d?.map(j=>{const I=Lt(j.name);return a.jsx(Ct,{onClick:async()=>{u(!0),await n(j),u(!1),N()},"aria-label":xe(c,I),disabled:l||f||!b,children:I},j.id)})}),h&&a.jsx(Cn,{label:m("Tools"),children:a.jsx(Ct,{onClick:async()=>{u(!0),await o(),u(!1),N()},disabled:l||f||!b,children:m("Create new Menu")})})]})})}function d1n({isSelected:e,currentMenuId:t,clientId:n,canUserCreateNavigationMenus:o=!1,isResolvingCanUserCreateNavigationMenus:r,onSelectNavigationMenu:s,onSelectClassicMenu:i,onCreateEmpty:c}){const{isResolvingMenus:l,hasResolvedMenus:u}=rD();x.useEffect(()=>{e&&(l&&Yt(m("Loading navigation block setup options…")),u&&Yt(m("Navigation block setup options ready.")))},[u,l,e]);const d=l&&r;return a.jsx(a.Fragment,{children:a.jsxs(vo,{className:"wp-block-navigation-placeholder",children:[a.jsx(u4e,{isVisible:!e}),a.jsx("div",{"aria-hidden":e?void 0:!0,className:"wp-block-navigation-placeholder__controls",children:a.jsxs("div",{className:"wp-block-navigation-placeholder__actions",children:[a.jsxs("div",{className:"wp-block-navigation-placeholder__actions__indicator",children:[a.jsx(wn,{icon:G3})," ",m("Navigation")]}),a.jsx("hr",{}),d&&a.jsx(Xn,{}),a.jsx(d4e,{currentMenuId:t,clientId:n,onSelectNavigationMenu:s,onSelectClassicMenu:i}),a.jsx("hr",{}),o&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:c,children:m("Start empty")})]})})]})})}function d5({icon:e}){return e==="menu"?a.jsx(wn,{icon:mde}):a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:[a.jsx(S0,{x:"4",y:"7.5",width:"16",height:"1.5"}),a.jsx(S0,{x:"4",y:"15",width:"16",height:"1.5"})]})}function loe({children:e,id:t,isOpen:n,isResponsive:o,onToggle:r,isHiddenByDefault:s,overlayBackgroundColor:i,overlayTextColor:c,hasIcon:l,icon:u}){if(!o)return e;const d=oe("wp-block-navigation__responsive-container",{"has-text-color":!!c.color||!!c?.class,[Pt("color",c?.slug)]:!!c?.slug,"has-background":!!i.color||i?.class,[Pt("background-color",i?.slug)]:!!i?.slug,"is-menu-open":n,"hidden-by-default":s}),p={color:!c?.slug&&c?.color,backgroundColor:!i?.slug&&i?.color&&i.color},f=oe("wp-block-navigation__responsive-container-open",{"always-shown":s}),b=`${t}-modal`,h={className:"wp-block-navigation__responsive-dialog",...n&&{role:"dialog","aria-modal":!0,"aria-label":m("Menu")}};return a.jsxs(a.Fragment,{children:[!n&&a.jsxs(Ce,{__next40pxDefaultSize:!0,"aria-haspopup":"true","aria-label":l&&m("Open menu"),className:f,onClick:()=>r(!0),children:[l&&a.jsx(d5,{icon:u}),!l&&m("Menu")]}),a.jsx("div",{className:d,style:p,id:b,children:a.jsx("div",{className:"wp-block-navigation__responsive-close",tabIndex:"-1",children:a.jsxs("div",{...h,children:[a.jsxs(Ce,{__next40pxDefaultSize:!0,className:"wp-block-navigation__responsive-container-close","aria-label":l&&m("Close menu"),onClick:()=>r(!1),children:[l&&a.jsx(wn,{icon:im}),!l&&m("Close")]}),a.jsx("div",{className:"wp-block-navigation__responsive-container-content",id:`${b}-content`,children:e})]})})})]})}function p1n({clientId:e,hasCustomPlaceholder:t,orientation:n,templateLock:o}){const{isImmediateParentOfSelectedBlock:r,selectedBlockHasChildren:s,isSelected:i}=G(g=>{const{getBlockCount:z,hasSelectedInnerBlock:A,getSelectedBlockClientId:_}=g(Q),v=_();return{isImmediateParentOfSelectedBlock:A(e,!1),selectedBlockHasChildren:!!z(v),isSelected:v===e}},[e]),[c,l,u]=Ni("postType","wp_navigation"),d=i||r&&!s,p=x.useMemo(()=>a.jsx(u4e,{}),[]),f=!!c?.length,b=!t&&!f&&!i,h=Nt({className:"wp-block-navigation__container"},{value:c,onInput:l,onChange:u,prioritizedInserterBlocks:a1n,defaultBlock:c4e,directInsert:!0,orientation:n,templateLock:o,renderAppender:i||r&&!s||d?Ht.ButtonBlockAppender:!1,placeholder:b?p:void 0,__experimentalCaptureToolbars:!0,__unstableDisableLayoutClassNames:!0});return a.jsx("div",{...h})}function f1n(){const[e,t]=Ao("postType","wp_navigation","title");return a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Menu name"),value:e,onChange:t})}function b1n(e,t){return!p4e(e,t,(n,o)=>{if(o?.name==="core/page-list"&&n==="innerBlocks")return!0})}const p4e=(e,t,n)=>{if(e===t)return!0;if(typeof e=="object"&&e!==null&&e!==void 0&&typeof t=="object"&&t!==null&&t!==void 0){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const o in e)if(t.hasOwnProperty(o)){if(n&&n(o,e))return!0;if(!p4e(e[o],t[o],n))return!1}else return!1;return!0}return!1},h1n={};function m1n({blocks:e,createNavigationMenu:t,hasSelection:n}){const o=x.useRef();x.useEffect(()=>{o?.current||(o.current=e)},[e]);const r=b1n(o?.current,e),s=x.useContext(I1.Context),i=Nt({className:"wp-block-navigation__container"},{renderAppender:n?void 0:!1,defaultBlock:c4e,directInsert:!0}),{isSaving:c,hasResolvedAllNavigationMenus:l}=G(d=>{if(s)return h1n;const{hasFinishedResolution:p,isSavingEntityRecord:f}=d(Me);return{isSaving:f("postType","wp_navigation"),hasResolvedAllNavigationMenus:p("getEntityRecords",c1n)}},[s]);x.useEffect(()=>{s||c||!l||!n||!r||t(null,e)},[e,t,s,c,l,r,n]);const u=c?I1:"div";return a.jsx(u,{...i})}function g1n({onDelete:e}){const[t,n]=x.useState(!1),o=YB("postType","wp_navigation"),{deleteEntityRecord:r}=Oe(Me);return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"wp-block-navigation-delete-menu-button",variant:"secondary",isDestructive:!0,onClick:()=>{n(!0)},children:m("Delete menu")}),t&&a.jsx(wf,{isOpen:!0,onConfirm:()=>{r("postType","wp_navigation",o,{force:!0}),e()},onCancel:()=>{n(!1)},confirmButtonText:m("Delete"),size:"medium",children:m("Are you sure you want to delete this Navigation Menu?")})]})}function UT({name:e,message:t=""}={}){const n=x.useRef(),{createWarningNotice:o,removeNotice:r}=Oe(mt),s=x.useCallback(c=>{n.current||(n.current=e,o(c||t,{id:n.current,type:"snackbar"}))},[n,o,t,e]),i=x.useCallback(()=>{n.current&&(r(n.current),n.current=null)},[n,r]);return[s,i]}function uoe({setAttributes:e,hasIcon:t,icon:n}){return a.jsxs(a.Fragment,{children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show icon button"),help:m("Configure the visual appearance of the button that toggles the overlay menu."),onChange:o=>e({hasIcon:o}),checked:t}),a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"wp-block-navigation__overlay-menu-icon-toggle-group",label:m("Icon"),value:n,onChange:o=>e({icon:o}),isBlock:!0,children:[a.jsx(Kn,{value:"handle","aria-label":m("handle"),label:a.jsx(d5,{icon:"handle"})}),a.jsx(Kn,{value:"menu","aria-label":m("menu"),label:a.jsx(d5,{icon:"menu"})})]})]})}function M1n(e){if(!e)return null;const t=O1n(e),n=f4e(t);return gr("blocks.navigation.__unstableMenuItemsToBlocks",n,e)}function f4e(e,t=0){let n={};return{innerBlocks:[...e].sort((s,i)=>s.menu_order-i.menu_order).map(s=>{if(s.type==="block"){const[p]=Ko(s.content.raw);return p||Ee("core/freeform",{content:s.content})}const i=s.children?.length?"core/navigation-submenu":"core/navigation-link",c=z1n(s,i,t),{innerBlocks:l=[],mapping:u={}}=s.children?.length?f4e(s.children,t+1):{};n={...n,...u};const d=Ee(i,c,l);return n[s.id]=d.clientId,d}),mapping:n}}function z1n({title:e,xfn:t,classes:n,attr_title:o,object:r,object_id:s,description:i,url:c,type:l,target:u},d,p){return r&&r==="post_tag"&&(r="tag"),{label:e?.rendered||"",...r?.length&&{type:r},kind:l?.replace("_","-")||"custom",url:c||"",...t?.length&&t.join(" ").trim()&&{rel:t.join(" ").trim()},...n?.length&&n.join(" ").trim()&&{className:n.join(" ").trim()},...o?.length&&{title:o},...s&&r!=="custom"&&{id:s},...i?.length&&{description:i},...u==="_blank"&&{opensInNewTab:!0},...d==="core/navigation-submenu"&&{isTopLevelItem:p===0},...d==="core/navigation-link"&&{isTopLevelLink:p===0}}}function O1n(e,t="id",n="parent"){const o=Object.create(null),r=[];for(const s of e)o[s[t]]={...s,children:[]},s[n]?(o[s[n]]=o[s[n]]||{},o[s[n]].children=o[s[n]].children||[],o[s[n]].children.push(o[s[t]])):r.push(o[s[t]]);return r}const b4e="success",MN="error",zN="pending",y1n="idle";let qv=null;function A1n(e,{throwOnError:t=!1}={}){const n=Fn(),{editEntityRecord:o}=Oe(Me),[r,s]=x.useState(y1n),[i,c]=x.useState(null),l=x.useCallback(async(d,p,f="publish")=>{let b,h;try{h=await n.resolveSelect(Me).getMenuItems({menus:d,per_page:-1,context:"view"})}catch(z){throw new Error(xe(m('Unable to fetch classic menu "%s" from API.'),p),{cause:z})}if(h===null)throw new Error(xe(m('Unable to fetch classic menu "%s" from API.'),p));const{innerBlocks:g}=M1n(h);try{b=await e(p,g,f),await o("postType","wp_navigation",b.id,{status:"publish"},{throwOnError:!0})}catch(z){throw new Error(xe(m('Unable to create Navigation Menu "%s".'),p),{cause:z})}return b},[e,o,n]);return{convert:x.useCallback(async(d,p,f)=>{if(qv!==d){if(qv=d,!d||!p){c("Unable to convert menu. Missing menu details."),s(MN);return}return s(zN),c(null),await l(d,p,f).then(b=>(s(b4e),qv=null,b)).catch(b=>{if(c(b?.message),s(MN),qv=null,t)throw new Error(xe(m('Unable to create Navigation Menu "%s".'),p),{cause:b})})}},[l,t]),status:r,error:i}}function yk(e,t){return e&&t?e+"//"+t:null}const h4e=e=>e==="header"?YP:e==="footer"?KP:e==="sidebar"?ZP:Qf;function v1n(e){return G(t=>{if(!e)return;const{getBlock:n,getBlockParentsByBlockName:o}=t(Q),s=o(e,"core/template-part",!0);if(!s?.length)return;const c=(t(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[]).map(d=>({...d,icon:h4e(d.icon)})),{getCurrentTheme:l,getEditedEntityRecord:u}=t(Me);for(const d of s){const p=n(d),{theme:f=l()?.stylesheet,slug:b}=p.attributes,h=yk(f,b),g=u("postType","wp_template_part",h);if(g?.area)return c.find(z=>z.area!=="uncategorized"&&z.area===g.area)?.label}},[e])}const x1n=["postType","wp_navigation",{status:"draft",per_page:-1}],w1n=["postType","wp_navigation",{per_page:-1,status:"publish"}];function _1n(e){const t=x.useContext(I1.Context),n=v1n(t?void 0:e),o=Fn();return x.useCallback(async()=>{if(t)return"";const{getEntityRecords:r}=o.resolveSelect(Me),[s,i]=await Promise.all([r(...x1n),r(...w1n)]),c=n?xe(m("%s navigation"),n):m("Navigation"),l=[...s,...i].reduce((d,p)=>p?.title?.raw?.startsWith(c)?d+1:d,0);return(l>0?`${c} ${l+1}`:c)||""},[t,n,o])}const doe="success",Rv="error",poe="pending",foe="idle";function k1n(e){const[t,n]=x.useState(foe),[o,r]=x.useState(null),[s,i]=x.useState(null),{saveEntityRecord:c,editEntityRecord:l}=Oe(Me),u=_1n(e);return{create:x.useCallback(async(p=null,f=[],b)=>{if(p&&typeof p!="string")throw i("Invalid title supplied when creating Navigation Menu."),n(Rv),new Error("Value of supplied title argument was not a string.");n(poe),r(null),i(null),p||(p=await u().catch(g=>{throw i(g?.message),n(Rv),new Error("Failed to create title when saving new Navigation Menu.",{cause:g})}));const h={title:p,content:Ks(f),status:b};return c("postType","wp_navigation",h).then(g=>(r(g),n(doe),b!=="publish"&&l("postType","wp_navigation",g.id,{status:"publish"}),g)).catch(g=>{throw i(g?.message),n(Rv),new Error("Unable to save new Navigation Menu",{cause:g})})},[c,l,u]),status:t,value:o,error:s,isIdle:t===foe,isPending:t===poe,isSuccess:t===doe,isError:t===Rv}}const S1n=[];function C1n(e){return G(t=>{const{getBlock:n,getBlocks:o,hasSelectedInnerBlock:r}=t(Q),s=n(e).innerBlocks,i=!!s?.length,c=i?S1n:o(e);return{innerBlocks:i?s:c,hasUncontrolledInnerBlocks:i,uncontrolledInnerBlocks:s,controlledInnerBlocks:c,isInnerBlockSelected:r(e,!0)}},[e])}function XT(e){return e.ownerDocument.defaultView.getComputedStyle(e)}function boe(e,t,n){if(!e)return;t(XT(e).color);let o=e,r=XT(o).backgroundColor;for(;r==="rgba(0, 0, 0, 0)"&&o.parentNode&&o.parentNode.nodeType===o.parentNode.ELEMENT_NODE;)o=o.parentNode,r=XT(o).backgroundColor;n(r)}function p5(e,t){const{textColor:n,customTextColor:o,backgroundColor:r,customBackgroundColor:s,overlayTextColor:i,customOverlayTextColor:c,overlayBackgroundColor:l,customOverlayBackgroundColor:u,style:d}=e,p={};return t&&c?p.customTextColor=c:t&&i?p.textColor=i:o?p.customTextColor=o:n?p.textColor=n:d?.color?.text&&(p.customTextColor=d.color.text),t&&u?p.customBackgroundColor=u:t&&l?p.backgroundColor=l:s?p.customBackgroundColor=s:r?p.backgroundColor=r:d?.color?.background&&(p.customTextColor=d.color.background),p}function m4e(e){return{className:oe("wp-block-navigation__submenu-container",{"has-text-color":!!(e.textColor||e.customTextColor),[`has-${e.textColor}-color`]:!!e.textColor,"has-background":!!(e.backgroundColor||e.customBackgroundColor),[`has-${e.backgroundColor}-background-color`]:!!e.backgroundColor}),style:{color:e.customTextColor,backgroundColor:e.customBackgroundColor}}}const q1n=({className:e="",disabled:t,isMenuItem:n=!1})=>{let o=Ce;return n&&(o=Ct),a.jsx(o,{variant:"link",disabled:t,className:e,href:tn("edit.php",{post_type:"wp_navigation"}),children:m("Manage menus")})};function g4e({onCreateNew:e,isNotice:t=!1}){const[n,o]=x.useState(!1),r=()=>{o(!0),e()},s=cr(m("Navigation Menu has been deleted or is unavailable. <button>Create a new Menu?</button>"),{button:a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:r,variant:"link",disabled:n,accessibleWhenDisabled:!0})});return t?a.jsx(L1,{status:"warning",isDismissible:!1,children:s}):a.jsx(Er,{children:s})}const R1n={className:"block-editor-block-settings-menu__popover",placement:"bottom-start"},T1n=["core/navigation-link","core/navigation-submenu"];function E1n({block:e,onClose:t,expandedState:n,expand:o,setInsertedBlock:r}){const{insertBlock:s,replaceBlock:i,replaceInnerBlocks:c}=Oe(Q),l=e.clientId,u=!T1n.includes(e.name);return a.jsx(Ct,{icon:TP,disabled:u,onClick:()=>{const p=Ee("core/navigation-link");if(e.name==="core/navigation-submenu")s(p,e.innerBlocks.length,l,!1);else{const f=Ee("core/navigation-submenu",e.attributes,e.innerBlocks);i(l,f),c(f.clientId,[p],!1)}r(p),n[e.clientId]||o(e.clientId),t()},children:m("Add submenu link")})}function W1n(e){const{block:t}=e,{clientId:n}=t,{moveBlocksDown:o,moveBlocksUp:r,removeBlocks:s}=Oe(Q),i=xe(m("Remove %s"),_W({clientId:n,maximumLength:25})),c=G(l=>{const{getBlockRootClientId:u}=l(Q);return u(n)},[n]);return a.jsx(c0,{icon:Wc,label:m("Options"),className:"block-editor-block-settings-menu",popoverProps:R1n,noIcons:!0,...e,children:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{children:[a.jsx(Ct,{icon:Nw,onClick:()=>{r([n],c),l()},children:m("Move up")}),a.jsx(Ct,{icon:nu,onClick:()=>{o([n],c),l()},children:m("Move down")}),a.jsx(E1n,{block:t,onClose:l,expanded:!0,expandedState:e.expandedState,expand:e.expand,setInsertedBlock:e.setInsertedBlock})]}),a.jsx(Cn,{children:a.jsx(Ct,{onClick:()=>{s([n],!1),l()},children:i})})]})})}const Ak=(e={},t,n={})=>{const{label:o="",kind:r="",type:s=""}=n,{title:i="",url:c="",opensInNewTab:l,id:u,kind:d=r,type:p=s}=e,f=i.replace(/http(s?):\/\//gi,""),b=c.replace(/http(s?):\/\//gi,""),g=i&&i!==o&&f!==b?gE(i):o||gE(b),z=p==="post_tag"?"tag":p.replace("-","_"),A=["post","page","tag","category"].indexOf(z)>-1,v=!d&&!A||d==="custom"?"custom":d;t({...c&&{url:encodeURI(c3(c))},...g&&{label:g},...l!==void 0&&{opensInNewTab:l},...u&&Number.isInteger(u)&&{id:u},...v&&{kind:v},...z&&z!=="URL"&&{type:z}})},{PrivateQuickInserter:N1n}=e0(Ln);function B1n(e,t){switch(e){case"post":case"page":return{type:"post",subtype:e};case"category":return{type:"term",subtype:"category"};case"tag":return{type:"term",subtype:"post_tag"};case"post_format":return{type:"post-format"};default:return t==="taxonomy"?{type:"term",subtype:e}:t==="post-type"?{type:"post",subtype:e}:{initialSuggestionsSearchOptions:{type:"post",subtype:"page",perPage:20}}}}function L1n({clientId:e,onBack:t}){const{rootBlockClientId:n}=G(i=>{const{getBlockRootClientId:c}=i(Q);return{rootBlockClientId:c(e)}},[e]),o=E5("firstElement"),r=vt(kc,"link-ui-block-inserter__title"),s=vt(kc,"link-ui-block-inserter__description");return e?a.jsxs("div",{className:"link-ui-block-inserter",role:"dialog","aria-labelledby":r,"aria-describedby":s,ref:o,children:[a.jsxs(qn,{children:[a.jsx("h2",{id:r,children:m("Add block")}),a.jsx("p",{id:s,children:m("Choose a block to add to your Navigation.")})]}),a.jsx(Ce,{className:"link-ui-block-inserter__back",icon:jt()?Af:Ww,onClick:i=>{i.preventDefault(),t()},size:"small",children:m("Back")}),a.jsx(N1n,{rootClientId:n,clientId:e,isAppender:!1,prioritizePatterns:!1,selectBlockOnInsert:!0,hasSearch:!1})]}):null}function P1n(e,t){const{label:n,url:o,opensInNewTab:r,type:s,kind:i}=e.link,c=s||"page",[l,u]=x.useState(!1),[d,p]=x.useState(!1),{saveEntityRecord:f}=Oe(Me),b=tie({kind:"postType",name:c});async function h(_){const v=await f("postType",c,{title:_,status:"draft"});return{id:v.id,type:c,title:Lt(v.title.rendered),url:v.link,kind:"post-type"}}const g=x.useMemo(()=>({url:o,opensInNewTab:r,title:n&&v1(n)}),[n,r,o]),z=vt(s3,"link-ui-link-control__title"),A=vt(s3,"link-ui-link-control__description");return a.jsxs(Io,{ref:t,placement:"bottom",onClose:e.onClose,anchor:e.anchor,shift:!0,children:[!l&&a.jsxs("div",{role:"dialog","aria-labelledby":z,"aria-describedby":A,children:[a.jsxs(qn,{children:[a.jsx("h2",{id:z,children:m("Add link")}),a.jsx("p",{id:A,children:m("Search for and add a link to your Navigation.")})]}),a.jsx(kc,{hasTextControl:!0,hasRichPreviews:!0,value:g,showInitialSuggestions:!0,withCreateSuggestion:b.canCreate,createSuggestion:h,createSuggestionButtonText:_=>{let v;return s==="post"?v=m("Create draft post: <mark>%s</mark>"):v=m("Create draft page: <mark>%s</mark>"),cr(xe(v,_),{mark:a.jsx("mark",{})})},noDirectEntry:!!s,noURLSuggestion:!!s,suggestionsQuery:B1n(s,i),onChange:e.onChange,onRemove:e.onRemove,onCancel:e.onCancel,renderControlBottom:()=>!g?.url?.length&&a.jsx(j1n,{focusAddBlockButton:d,setAddingBlock:()=>{u(!0),p(!1)}})})]}),l&&a.jsx(L1n,{clientId:e.clientId,onBack:()=>{u(!1),p(!0)}})]})}const s3=x.forwardRef(P1n),j1n=({setAddingBlock:e,focusAddBlockButton:t})=>{const n="listbox",o=x.useRef();return x.useEffect(()=>{t&&o.current?.focus()},[t]),a.jsx(dt,{className:"link-ui-tools",children:a.jsx(Ce,{__next40pxDefaultSize:!0,ref:o,icon:Fs,onClick:r=>{r.preventDefault(),e(!0)},"aria-haspopup":n,children:m("Add block")})})},I1n=m("Switch to '%s'"),D1n=["core/navigation-link","core/navigation-submenu"],{PrivateListView:F1n}=e0(Ln);function $1n({block:e,insertedBlock:t,setInsertedBlock:n}){const{updateBlockAttributes:o}=Oe(Q),r=D1n?.includes(t?.name),s=t?.clientId===e.clientId;if(!(r&&s))return null;const c=l=>u=>{l&&o(l,u)};return a.jsx(s3,{clientId:t?.clientId,link:t?.attributes,onClose:()=>{n(null)},onChange:l=>{Ak(l,c(t?.clientId),t?.attributes),n(null)},onCancel:()=>{n(null)}})}const V1n=({clientId:e,currentMenuId:t,isLoading:n,isNavigationMenuMissing:o,onCreateNew:r})=>{const s=G(l=>!!l(Q).getBlockCount(e),[e]),{navigationMenu:i}=oD(t);if(t&&o)return a.jsx(g4e,{onCreateNew:r,isNotice:!0});if(n)return a.jsx(Xn,{});const c=i?xe(m("Structure for Navigation Menu: %s"),i?.title||m("Untitled menu")):m("You have not yet created any menus. Displaying a list of your Pages");return a.jsxs("div",{className:"wp-block-navigation__menu-inspector-controls",children:[!s&&a.jsx("p",{className:"wp-block-navigation__menu-inspector-controls__empty-message",children:m("This Navigation Menu is empty.")}),a.jsx(F1n,{rootClientId:e,isExpanded:!0,description:c,showAppender:!0,blockSettingsMenu:W1n,additionalBlockContent:$1n})]})},GT=e=>{const{createNavigationMenuIsSuccess:t,createNavigationMenuIsError:n,currentMenuId:o=null,onCreateNew:r,onSelectClassicMenu:s,onSelectNavigationMenu:i,isManageMenusButtonDisabled:c,blockEditingMode:l}=e;return a.jsx(et,{group:"list",children:a.jsxs(Qt,{title:null,children:[a.jsxs(Ot,{className:"wp-block-navigation-off-canvas-editor__header",children:[a.jsx(_a,{className:"wp-block-navigation-off-canvas-editor__title",level:2,children:m("Menu")}),l==="default"&&a.jsx(d4e,{currentMenuId:o,onSelectClassicMenu:s,onSelectNavigationMenu:i,onCreateNew:r,createNavigationMenuIsSuccess:t,createNavigationMenuIsError:n,actionLabel:I1n,isManageMenusButtonDisabled:c})]}),a.jsx(V1n,{...e})]})})};function M4e({id:e,children:t}){return a.jsx(qn,{children:a.jsx("div",{id:e,className:"wp-block-navigation__description",children:t})})}function H1n({id:e}){const[t]=Ao("postType","wp_navigation","title"),n=xe(m('Navigation Menu: "%s"'),t);return a.jsx(M4e,{id:e,children:n})}function U1n({textColor:e,setTextColor:t,backgroundColor:n,setBackgroundColor:o,overlayTextColor:r,setOverlayTextColor:s,overlayBackgroundColor:i,setOverlayBackgroundColor:c,clientId:l,navRef:u}){const[d,p]=x.useState(),[f,b]=x.useState(),[h,g]=x.useState(),[z,A]=x.useState(),_=f0.OS==="web";x.useEffect(()=>{boe(u.current,b,p);const M=u.current?.querySelector('[data-type="core/navigation-submenu"] [data-type="core/navigation-link"]');M&&(r.color||i.color)&&boe(M,A,g)},[_,r.color,i.color,u]);const v=ub();return v.hasColorsOrGradients?a.jsxs(a.Fragment,{children:[a.jsx(ek,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:e.color,label:m("Text"),onColorChange:t,resetAllFilter:()=>t(),clearable:!0},{colorValue:n.color,label:m("Background"),onColorChange:o,resetAllFilter:()=>o(),clearable:!0},{colorValue:r.color,label:m("Submenu & overlay text"),onColorChange:s,resetAllFilter:()=>s(),clearable:!0},{colorValue:i.color,label:m("Submenu & overlay background"),onColorChange:c,resetAllFilter:()=>c(),clearable:!0}],panelId:l,...v,gradients:[],disableCustomGradients:!0}),a.jsxs(a.Fragment,{children:[a.jsx(Jx,{backgroundColor:d,textColor:f}),a.jsx(Jx,{backgroundColor:h,textColor:z})]})]}):null}function X1n({attributes:e,setAttributes:t,clientId:n,isSelected:o,className:r,backgroundColor:s,setBackgroundColor:i,textColor:c,setTextColor:l,overlayBackgroundColor:u,setOverlayBackgroundColor:d,overlayTextColor:p,setOverlayTextColor:f,hasSubmenuIndicatorSetting:b=!0,customPlaceholder:h=null,__unstableLayoutClassNames:g}){const{openSubmenusOnClick:z,overlayMenu:A,showSubmenuIcon:_,templateLock:v,layout:{justifyContent:M,orientation:y="horizontal",flexWrap:k="wrap"}={},hasIcon:S,icon:C="handle"}=e,R=e.ref,T=x.useCallback(ao=>{t({ref:ao})},[t]),E=`navigationMenu/${R}`,B=ok(E),N=Jr(),{menus:j}=rD(),[I,P]=UT({name:"block-library/core/navigation/status"}),[$,F]=UT({name:"block-library/core/navigation/classic-menu-conversion"}),[X,Z]=UT({name:"block-library/core/navigation/permissions/update"}),{create:V,status:ee,error:te,value:J,isPending:ue,isSuccess:ce,isError:me}=k1n(n),de=async()=>{await V("")},{hasUncontrolledInnerBlocks:Ae,uncontrolledInnerBlocks:ye,isInnerBlockSelected:Ne,innerBlocks:je}=C1n(n),ie=!!je.find(ao=>ao.name==="core/navigation-submenu"),{replaceInnerBlocks:we,selectBlock:re,__unstableMarkNextChangeAsNotPersistent:pe}=Oe(Q),[ke,Se]=x.useState(!1),[se,L]=x.useState(!1),{hasResolvedNavigationMenus:U,isNavigationMenuResolved:ne,isNavigationMenuMissing:ve,canUserUpdateNavigationMenu:qe,hasResolvedCanUserUpdateNavigationMenu:Pe,canUserDeleteNavigationMenu:rt,hasResolvedCanUserDeleteNavigationMenu:qt,canUserCreateNavigationMenus:wt,isResolvingCanUserCreateNavigationMenus:Bt,hasResolvedCanUserCreateNavigationMenus:ae}=oD(R),H=U&&ve,{convert:Y,status:fe,error:Re}=A1n(V),be=fe===zN,ze=x.useCallback((ao,Dc={focusNavigationBlock:!1})=>{const{focusNavigationBlock:Xi}=Dc;T(ao),Xi&&re(n)},[re,n,T]),nt=!ve&&ne,Mt=Ae&&!nt,{getNavigationFallbackId:ot}=e0(G(Me)),Ue=R||Mt?null:ot();x.useEffect(()=>{R||Mt||!Ue||(pe(),T(Ue))},[R,T,Mt,Ue,pe]);const yt=x.useRef(),fn="nav",Pn=!R&&!ue&&!be&&U&&j?.length===0&&!Ae,Mo=!U||ue||be||!!(R&&!nt&&!be),rr=e.style?.typography?.textDecoration,Jo=G(ao=>ao(Q).__unstableHasActiveBlockOverlayActive(n),[n]),To=A!=="never",Br=Be({ref:yt,className:oe(r,{"items-justified-right":M==="right","items-justified-space-between":M==="space-between","items-justified-left":M==="left","items-justified-center":M==="center","is-vertical":y==="vertical","no-wrap":k==="nowrap","is-responsive":To,"has-text-color":!!c.color||!!c?.class,[Pt("color",c?.slug)]:!!c?.slug,"has-background":!!s.color||s.class,[Pt("background-color",s?.slug)]:!!s?.slug,[`has-text-decoration-${rr}`]:rr,"block-editor-block-content-overlay":Jo},g),style:{color:!c?.slug&&c?.color,backgroundColor:!s?.slug&&s?.color}}),Rt=async ao=>Y(ao.id,ao.name,"draft"),Qe=ao=>{ze(ao)};x.useEffect(()=>{P(),ue&&Yt(m("Creating Navigation Menu.")),ce&&(ze(J?.id,{focusNavigationBlock:!0}),I(m("Navigation Menu successfully created."))),me&&I(m("Failed to create Navigation Menu."))},[ee,te,J?.id,me,ce,ue,ze,P,I]),x.useEffect(()=>{F(),fe===zN&&Yt(m("Classic menu importing.")),fe===b4e&&($(m("Classic menu imported successfully.")),ze(J?.id,{focusNavigationBlock:!0})),fe===MN&&$(m("Classic menu import failed."))},[fe,Re,F,$,J?.id,ze]),x.useEffect(()=>{!o&&!Ne&&Z(),(o||Ne)&&(R&&!H&&Pe&&!qe&&X(m("You do not have permission to edit this Menu. Any changes made will not be saved.")),!R&&ae&&!wt&&X(m("You do not have permission to create Navigation Menus.")))},[o,Ne,qe,Pe,wt,ae,R,Z,X,H]);const xt=wt||qe,Gt=oe("wp-block-navigation__overlay-menu-preview",{open:se}),On=!_&&!z?m('The current menu options offer reduced accessibility for users and are not recommended. Enabling either "Open on Click" or "Show arrow" offers enhanced accessibility by allowing keyboard users to browse submenus selectively.'):"",$n=x.useRef(!0);x.useEffect(()=>{!$n.current&&On&&Yt(On),$n.current=!1},[On]);const Jn=vt(uoe,"overlay-menu-preview"),pr=a.jsxs(a.Fragment,{children:[a.jsx(et,{children:b&&a.jsxs(Qt,{title:m("Display"),children:[To&&a.jsxs(a.Fragment,{children:[a.jsxs(Ce,{__next40pxDefaultSize:!0,className:Gt,onClick:()=>{L(!se)},"aria-label":m("Overlay menu controls"),"aria-controls":Jn,"aria-expanded":se,children:[S&&a.jsxs(a.Fragment,{children:[a.jsx(d5,{icon:C}),a.jsx(wn,{icon:im})]}),!S&&a.jsxs(a.Fragment,{children:[a.jsx("span",{children:m("Menu")}),a.jsx("span",{children:m("Close")})]})]}),a.jsx("div",{id:Jn,children:se&&a.jsx(uoe,{setAttributes:t,hasIcon:S,icon:C,hidden:!se})})]}),a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Overlay Menu"),"aria-label":m("Configure overlay menu"),value:A,help:m("Collapses the navigation options in a menu icon opening an overlay."),onChange:ao=>t({overlayMenu:ao}),isBlock:!0,children:[a.jsx(Kn,{value:"never",label:m("Off")}),a.jsx(Kn,{value:"mobile",label:m("Mobile")}),a.jsx(Kn,{value:"always",label:m("Always")})]}),ie&&a.jsxs(a.Fragment,{children:[a.jsx("h3",{children:m("Submenus")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,checked:z,onChange:ao=>{t({openSubmenusOnClick:ao,...ao&&{showSubmenuIcon:!0}})},label:m("Open on click")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,checked:_,onChange:ao=>{t({showSubmenuIcon:ao})},disabled:e.openSubmenusOnClick,label:m("Show arrow")}),On&&a.jsx("div",{children:a.jsx(L1,{spokenMessage:null,status:"warning",isDismissible:!1,children:On})})]})]})}),a.jsx(et,{group:"color",children:a.jsx(U1n,{textColor:c,setTextColor:l,backgroundColor:s,setBackgroundColor:i,overlayTextColor:p,setOverlayTextColor:f,overlayBackgroundColor:u,setOverlayBackgroundColor:d,clientId:n,navRef:yt})})]}),O0=`${n}-desc`,o1=A==="always",yr=!xt||!U;if(Mt&&!ue)return a.jsxs(fn,{...Br,"aria-describedby":Pn?void 0:O0,children:[a.jsx(M4e,{id:O0,children:m("Unsaved Navigation Menu.")}),a.jsx(GT,{clientId:n,createNavigationMenuIsSuccess:ce,createNavigationMenuIsError:me,currentMenuId:R,isNavigationMenuMissing:ve,isManageMenusButtonDisabled:yr,onCreateNew:de,onSelectClassicMenu:Rt,onSelectNavigationMenu:Qe,isLoading:Mo,blockEditingMode:N}),N==="default"&&pr,a.jsx(loe,{id:n,onToggle:Se,isOpen:ke,hasIcon:S,icon:C,isResponsive:To,isHiddenByDefault:o1,overlayBackgroundColor:u,overlayTextColor:p,children:a.jsx(m1n,{createNavigationMenu:V,blocks:ye,hasSelection:o||Ne})})]});if(R&&ve)return a.jsxs(fn,{...Br,children:[a.jsx(GT,{clientId:n,createNavigationMenuIsSuccess:ce,createNavigationMenuIsError:me,currentMenuId:R,isNavigationMenuMissing:ve,isManageMenusButtonDisabled:yr,onCreateNew:de,onSelectClassicMenu:Rt,onSelectNavigationMenu:Qe,isLoading:Mo,blockEditingMode:N}),a.jsx(g4e,{onCreateNew:de})]});if(nt&&B)return a.jsx("div",{...Br,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})});const Js=h||d1n;return Pn&&h?a.jsx(fn,{...Br,children:a.jsx(Js,{isSelected:o,currentMenuId:R,clientId:n,canUserCreateNavigationMenus:wt,isResolvingCanUserCreateNavigationMenus:Bt,onSelectNavigationMenu:Qe,onSelectClassicMenu:Rt,onCreateEmpty:de})}):a.jsx(KE,{kind:"postType",type:"wp_navigation",id:R,children:a.jsxs(TO,{uniqueId:E,children:[a.jsx(GT,{clientId:n,createNavigationMenuIsSuccess:ce,createNavigationMenuIsError:me,currentMenuId:R,isNavigationMenuMissing:ve,isManageMenusButtonDisabled:yr,onCreateNew:de,onSelectClassicMenu:Rt,onSelectNavigationMenu:Qe,isLoading:Mo,blockEditingMode:N}),N==="default"&&pr,N==="default"&&nt&&a.jsxs(et,{group:"advanced",children:[Pe&&qe&&a.jsx(f1n,{}),qt&&rt&&a.jsx(g1n,{onDelete:()=>{we(n,[]),I(m("Navigation Menu successfully deleted."))}}),a.jsx(q1n,{disabled:yr,className:"wp-block-navigation-manage-menus-button"})]}),a.jsxs(fn,{...Br,"aria-describedby":!Pn&&!Mo?O0:void 0,children:[Mo&&!o1&&a.jsx("div",{className:"wp-block-navigation__loading-indicator-container",children:a.jsx(Xn,{className:"wp-block-navigation__loading-indicator"})}),(!Mo||o1)&&a.jsxs(a.Fragment,{children:[a.jsx(H1n,{id:O0}),a.jsx(loe,{id:n,onToggle:Se,hasIcon:S,icon:C,isOpen:ke,isResponsive:To,isHiddenByDefault:o1,overlayBackgroundColor:u,overlayTextColor:p,children:nt&&a.jsx(p1n,{clientId:n,hasCustomPlaceholder:!!h,templateLock:v,orientation:y})})]})]})]})})}const G1n=AO({textColor:"color"},{backgroundColor:"color"},{overlayBackgroundColor:"color"},{overlayTextColor:"color"})(X1n);function K1n({attributes:e}){if(!e.ref)return a.jsx(Ht.Content,{})}const ON={fontStyle:"var:preset|font-style|",fontWeight:"var:preset|font-weight|",textDecoration:"var:preset|text-decoration|",textTransform:"var:preset|text-transform|"},K2=({navigationMenuId:e,...t})=>({...t,ref:e}),f5=e=>{if(e.layout)return e;const{itemsJustification:t,orientation:n,...o}=e;return(t||n)&&Object.assign(o,{layout:{type:"flex",...t&&{justifyContent:t},...n&&{orientation:n}}}),o},Y1n={attributes:{navigationMenuId:{type:"number"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"mobile"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}}},save(){return a.jsx(Ht.Content,{})},isEligible:({navigationMenuId:e})=>!!e,migrate:K2},Z1n={attributes:{navigationMenuId:{type:"number"},orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"never"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}}},save(){return a.jsx(Ht.Content,{})},isEligible:({itemsJustification:e,orientation:t})=>!!e||!!t,migrate:Co(K2,f5)},Q1n={attributes:{orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"never"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}}},save(){return a.jsx(Ht.Content,{})},migrate:Co(K2,f5,A1),isEligible({style:e}){return e?.typography?.fontFamily}},J1n=function(e){return delete e.isResponsive,{...e,overlayMenu:"mobile"}},esn=function(e){var t;return{...e,style:{...e.style,typography:Object.fromEntries(Object.entries((t=e.style.typography)!==null&&t!==void 0?t:{}).map(([n,o])=>{const r=ON[n];if(r&&o.startsWith(r)){const s=o.slice(r.length);return n==="textDecoration"&&s==="strikethrough"?[n,"line-through"]:[n,s]}return[n,o]}))}}},tsn=[Y1n,Z1n,Q1n,{attributes:{orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},isResponsive:{type:"boolean",default:"false"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0}},isEligible(e){return e.isResponsive},migrate:Co(K2,f5,A1,J1n),save(){return a.jsx(Ht.Content,{})}},{attributes:{orientation:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,fontSize:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,color:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0},save(){return a.jsx(Ht.Content,{})},isEligible(e){if(!e.style||!e.style.typography)return!1;for(const t in ON){const n=e.style.typography[t];if(n&&n.startsWith(ON[t]))return!0}return!1},migrate:Co(K2,f5,A1,esn)},{attributes:{className:{type:"string"},textColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},fontSize:{type:"string"},customFontSize:{type:"number"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean"}},isEligible(e){return e.rgbTextColor||e.rgbBackgroundColor},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0},migrate:Co(K2,e=>{const{rgbTextColor:t,rgbBackgroundColor:n,...o}=e;return{...o,customTextColor:e.textColor?void 0:e.rgbTextColor,customBackgroundColor:e.backgroundColor?void 0:e.rgbBackgroundColor}}),save(){return a.jsx(Ht.Content,{})}}],sD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/navigation",title:"Navigation",category:"theme",allowedBlocks:["core/navigation-link","core/search","core/social-links","core/page-list","core/spacer","core/home-link","core/site-title","core/site-logo","core/navigation-submenu","core/loginout","core/buttons"],description:"A collection of blocks that allow visitors to get around your site.",keywords:["menu","navigation","links"],textdomain:"default",attributes:{ref:{type:"number"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"mobile"},icon:{type:"string",default:"handle"},hasIcon:{type:"boolean",default:!0},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"},maxNestingLevel:{type:"number",default:5},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]}},providesContext:{textColor:"textColor",customTextColor:"customTextColor",backgroundColor:"backgroundColor",customBackgroundColor:"customBackgroundColor",overlayTextColor:"overlayTextColor",customOverlayTextColor:"customOverlayTextColor",overlayBackgroundColor:"overlayBackgroundColor",customOverlayBackgroundColor:"customOverlayBackgroundColor",fontSize:"fontSize",customFontSize:"customFontSize",showSubmenuIcon:"showSubmenuIcon",openSubmenusOnClick:"openSubmenusOnClick",style:"style",maxNestingLevel:"maxNestingLevel"},supports:{align:["wide","full"],ariaLabel:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalLetterSpacing:!0,__experimentalTextDecoration:!0,__experimentalSkipSerialization:["textDecoration"],__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}},layout:{allowSwitching:!1,allowInheriting:!1,allowVerticalAlignment:!1,allowSizingOnChildren:!0,default:{type:"flex"}},interactivity:!0,renaming:!1},editorStyle:"wp-block-navigation-editor",style:"wp-block-navigation"},{name:z4e}=sD,O4e={icon:G3,example:{attributes:{overlayMenu:"never"},innerBlocks:[{name:"core/navigation-link",attributes:{label:m("Home"),url:"https://make.wordpress.org/"}},{name:"core/navigation-link",attributes:{label:m("About"),url:"https://make.wordpress.org/"}},{name:"core/navigation-link",attributes:{label:m("Contact"),url:"https://make.wordpress.org/"}}]},edit:G1n,save:K1n,__experimentalLabel:({ref:e})=>{if(!e)return;const t=uo(Me).getEditedEntityRecord("postType","wp_navigation",e);if(t?.title)return Lt(t.title)},deprecated:tsn},nsn=()=>it({name:z4e,metadata:sD,settings:O4e}),osn=Object.freeze(Object.defineProperty({__proto__:null,init:nsn,metadata:sD,name:z4e,settings:O4e},Symbol.toStringTag,{value:"Module"})),rsn={name:"core/navigation-link"},ssn=e=>{const[t,n]=x.useState(!1);return x.useEffect(()=>{const{ownerDocument:o}=e.current;function r(c){i(c)}function s(){n(!1)}function i(c){e.current.contains(c.target)?n(!0):n(!1)}return o.addEventListener("dragstart",r),o.addEventListener("dragend",s),o.addEventListener("dragenter",i),()=>{o.removeEventListener("dragstart",r),o.removeEventListener("dragend",s),o.removeEventListener("dragenter",i)}},[e]),t},isn=(e,t,n)=>{const o=e==="post-type"||t==="post"||t==="page",r=Number.isInteger(n),s=G(l=>{if(!o)return null;const{getEntityRecord:u}=l(Me);return u("postType",t,n)?.status},[o,t,n]);return[o&&r&&s&&s==="trash",s==="draft"]};function asn(e){let t="";switch(e){case"post":t=m("Select post");break;case"page":t=m("Select page");break;case"category":t=m("Select category");break;case"tag":t=m("Select tag");break;default:t=m("Add link")}return t}function csn({attributes:e,setAttributes:t,setIsLabelFieldFocused:n}){const{label:o,url:r,description:s,title:i,rel:c}=e;return a.jsxs(En,{label:m("Settings"),children:[a.jsx(tt,{hasValue:()=>!!o,label:m("Text"),onDeselect:()=>t({label:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Text"),value:o?v1(o):"",onChange:l=>{t({label:l})},autoComplete:"off",onFocus:()=>n(!0),onBlur:()=>n(!1)})}),a.jsx(tt,{hasValue:()=>!!r,label:m("Link"),onDeselect:()=>t({url:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Link"),value:r?c3(r):"",onChange:l=>{Ak({url:l},t,e)},autoComplete:"off"})}),a.jsx(tt,{hasValue:()=>!!s,label:m("Description"),onDeselect:()=>t({description:""}),isShownByDefault:!0,children:a.jsx(Pi,{__nextHasNoMarginBottom:!0,label:m("Description"),value:s||"",onChange:l=>{t({description:l})},help:m("The description will be displayed in the menu if the current theme supports it.")})}),a.jsx(tt,{hasValue:()=>!!i,label:m("Title attribute"),onDeselect:()=>t({title:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Title attribute"),value:i||"",onChange:l=>{t({title:l})},autoComplete:"off",help:m("Additional information to help clarify the purpose of the link.")})}),a.jsx(tt,{hasValue:()=>!!c,label:m("Rel attribute"),onDeselect:()=>t({rel:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Rel attribute"),value:c||"",onChange:l=>{t({rel:l})},autoComplete:"off",help:m("The relationship of the linked URL as space-separated link types.")})})]})}function lsn({attributes:e,isSelected:t,setAttributes:n,insertBlocksAfter:o,mergeBlocks:r,onReplace:s,context:i,clientId:c}){const{id:l,label:u,type:d,url:p,description:f,kind:b}=e,[h,g]=isn(b,d,l),{maxNestingLevel:z}=i,{replaceBlock:A,__unstableMarkNextChangeAsNotPersistent:_,selectBlock:v,selectPreviousBlock:M}=Oe(Q),[y,k]=x.useState(t&&!p),[S,C]=x.useState(null),[R,T]=x.useState(null),E=x.useRef(null),B=ssn(E),N=m("Add label…"),j=x.useRef(),I=x.useRef(),P=Fr(p),[$,F]=x.useState(!1),{isAtMaxNesting:X,isTopLevelLink:Z,isParentOfSelectedBlock:V,hasChildren:ee}=G(Se=>{const{getBlockCount:se,getBlockName:L,getBlockRootClientId:U,hasSelectedInnerBlock:ne,getBlockParentsByBlockName:ve}=Se(Q);return{isAtMaxNesting:ve(c,["core/navigation-link","core/navigation-submenu"]).length>=z,isTopLevelLink:L(U(c))==="core/navigation",isParentOfSelectedBlock:ne(c,!0),hasChildren:!!se(c)}},[c,z]),{getBlocks:te}=G(Q),J=()=>{let Se=te(c);Se.length===0&&(Se=[Ee("core/navigation-link")],v(Se[0].clientId));const se=Ee("core/navigation-submenu",e,Se);A(c,se)};x.useEffect(()=>{ee&&(_(),J())},[ee]),x.useEffect(()=>{!P&&p&&y&&Pf(jf(u))&&/^.+\.[a-z]+/.test(u)&&ue()},[P,p,y,u]);function ue(){j.current.focus();const{ownerDocument:Se}=j.current,{defaultView:se}=Se,L=se.getSelection(),U=Se.createRange();U.selectNodeContents(j.current),L.removeAllRanges(),L.addRange(U)}function ce(){n({url:void 0,label:void 0,id:void 0,kind:void 0,type:void 0,opensInNewTab:!1}),k(!1)}const{textColor:me,customTextColor:de,backgroundColor:Ae,customBackgroundColor:ye}=p5(i,!Z);function Ne(Se){lc.primary(Se,"k")&&(Se.preventDefault(),Se.stopPropagation(),k(!0),C(j.current))}const je=Be({ref:xn([T,E]),className:oe("wp-block-navigation-item",{"is-editing":t||V,"is-dragging-within":B,"has-link":!!p,"has-child":ee,"has-text-color":!!me||!!de,[Pt("color",me)]:!!me,"has-background":!!Ae||ye,[Pt("background-color",Ae)]:!!Ae}),style:{color:!me&&de,backgroundColor:!Ae&&ye},onKeyDown:Ne}),ie=Nt({...je,className:"remove-outline"},{defaultBlock:rsn,directInsert:!0,renderAppender:!1});(!p||h||g)&&(je.onClick=()=>{k(!0),C(j.current)});const we=oe("wp-block-navigation-item__content",{"wp-block-navigation-link__placeholder":!p||h||g}),re=asn(d),pe=`(${m(h?"Invalid":"Draft")})`,ke=m(h||g?"This item has been deleted, or is a draft":"This item is missing a link");return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[a.jsx(Vt,{name:"link",icon:xa,title:m("Link"),shortcut:j1.primary("k"),onClick:Se=>{k(!0),C(Se.currentTarget)}}),!X&&a.jsx(Vt,{name:"submenu",icon:TP,title:m("Add submenu"),onClick:J})]})}),a.jsx(et,{children:a.jsx(csn,{attributes:e,setAttributes:n,setIsLabelFieldFocused:F})}),a.jsxs("div",{...je,children:[a.jsxs("a",{className:we,children:[p?a.jsxs(a.Fragment,{children:[!h&&!g&&!$&&a.jsxs(a.Fragment,{children:[a.jsx(Ie,{ref:j,identifier:"label",className:"wp-block-navigation-item__label",value:u,onChange:Se=>n({label:Se}),onMerge:r,onReplace:s,__unstableOnSplitAtEnd:()=>o(Ee("core/navigation-link")),"aria-label":m("Navigation link text"),placeholder:N,withoutInteractiveFormatting:!0}),f&&a.jsx("span",{className:"wp-block-navigation-item__description",children:f})]}),(h||g||$)&&a.jsx("div",{className:"wp-block-navigation-link__placeholder-text wp-block-navigation-link__label",children:a.jsx(B0,{text:ke,children:a.jsx("span",{"aria-label":m("Navigation link text"),children:`${Lt(u)} ${h||g?pe:""}`.trim()})})})]}):a.jsx("div",{className:"wp-block-navigation-link__placeholder-text",children:a.jsx(B0,{text:ke,children:a.jsx("span",{children:re})})}),y&&a.jsx(s3,{ref:I,clientId:c,link:e,onClose:()=>{if(!p){I.current.contains(window.document.activeElement)&&M(c,!0),s([]);return}k(!1),S?(S.focus(),C(null)):j.current?j.current.focus():M(c,!0)},anchor:R,onRemove:ce,onChange:Se=>{Ak(Se,n,e)}})]}),a.jsx("div",{...ie})]})]})}function usn(){return a.jsx(Ht.Content,{})}function dsn(e){switch(e){case"post":return HP;case"page":return wa;case"tag":return GP;case"category":return gz;default:return TZe}}function psn(e,t){if(t!=="core/navigation-link")return e;if(e.variations){const n=(r,s)=>r.type===s.type,o=e.variations.map(r=>({...r,...!r.icon&&{icon:dsn(r.name)},...!r.isActive&&{isActive:n}}));return{...e,variations:o}}return e}const fsn={from:[{type:"block",blocks:["core/site-logo"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/spacer"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/home-link"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/social-links"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/search"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/page-list"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/buttons"],transform:()=>Ee("core/navigation-link")}],to:[{type:"block",blocks:["core/navigation-submenu"],transform:(e,t)=>Ee("core/navigation-submenu",e,t)},{type:"block",blocks:["core/spacer"],transform:()=>Ee("core/spacer")},{type:"block",blocks:["core/site-logo"],transform:()=>Ee("core/site-logo")},{type:"block",blocks:["core/home-link"],transform:()=>Ee("core/home-link")},{type:"block",blocks:["core/social-links"],transform:()=>Ee("core/social-links")},{type:"block",blocks:["core/search"],transform:()=>Ee("core/search",{showLabel:!1,buttonUseIcon:!0,buttonPosition:"button-inside"})},{type:"block",blocks:["core/page-list"],transform:()=>Ee("core/page-list")},{type:"block",blocks:["core/buttons"],transform:({label:e,url:t,rel:n,title:o,opensInNewTab:r})=>Ee("core/buttons",{},[Ee("core/button",{text:e,url:t,rel:n,title:o,linkTarget:r?"_blank":void 0})])}]},iD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/navigation-link",title:"Custom Link",category:"design",parent:["core/navigation"],allowedBlocks:["core/navigation-link","core/navigation-submenu","core/page-list"],description:"Add a page, link, or another item to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelLink:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","maxNestingLevel","style"],supports:{reusable:!1,html:!1,__experimentalSlashInserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},renaming:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-navigation-link-editor",style:"wp-block-navigation-link"},{name:y4e}=iD,A4e={icon:Mde,__experimentalLabel:({label:e})=>e,merge(e,{label:t=""}){return{...e,label:e.label+t}},edit:lsn,save:usn,example:{attributes:{label:We("Example Link","navigation link preview example"),url:"https://example.com"}},deprecated:[{isEligible(e){return e.nofollow},attributes:{label:{type:"string"},type:{type:"string"},nofollow:{type:"boolean"},description:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"}},migrate({nofollow:e,...t}){return{rel:e?"nofollow":"",...t}},save(){return a.jsx(Ht.Content,{})}}],transforms:fsn},bsn=()=>(Bn("blocks.registerBlockType","core/navigation-link",psn),it({name:y4e,metadata:iD,settings:A4e})),hsn=Object.freeze(Object.defineProperty({__proto__:null,init:bsn,metadata:iD,name:y4e,settings:A4e},Symbol.toStringTag,{value:"Module"})),msn=()=>a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:a.jsx(he,{d:"M1.50002 4L6.00002 8L10.5 4",strokeWidth:"1.5"})}),hoe=["core/navigation-link","core/navigation-submenu","core/page-list"],gsn={name:"core/navigation-link"},Msn=e=>{const[t,n]=x.useState(!1);return x.useEffect(()=>{const{ownerDocument:o}=e.current;function r(c){i(c)}function s(){n(!1)}function i(c){e.current.contains(c.target)?n(!0):n(!1)}return o.addEventListener("dragstart",r),o.addEventListener("dragend",s),o.addEventListener("dragenter",i),()=>{o.removeEventListener("dragstart",r),o.removeEventListener("dragend",s),o.removeEventListener("dragenter",i)}},[]),t};function zsn({attributes:e,isSelected:t,setAttributes:n,mergeBlocks:o,onReplace:r,context:s,clientId:i}){const{label:c,url:l,description:u,rel:d,title:p}=e,{showSubmenuIcon:f,maxNestingLevel:b,openSubmenusOnClick:h}=s,{__unstableMarkNextChangeAsNotPersistent:g,replaceBlock:z,selectBlock:A}=Oe(Q),[_,v]=x.useState(!1),[M,y]=x.useState(null),[k,S]=x.useState(null),C=x.useRef(null),R=Msn(C),T=m("Add text…"),E=x.useRef(),B=Qo(),{parentCount:N,isParentOfSelectedBlock:j,isImmediateParentOfSelectedBlock:I,hasChildren:P,selectedBlockHasChildren:$,onlyDescendantIsEmptyLink:F}=G(we=>{const{hasSelectedInnerBlock:re,getSelectedBlockClientId:pe,getBlockParentsByBlockName:ke,getBlock:Se,getBlockCount:se,getBlockOrder:L}=we(Q);let U;const ne=pe(),ve=L(ne);if(ve?.length===1){const qe=Se(ve[0]);U=qe?.name==="core/navigation-link"&&!qe?.attributes?.label}return{parentCount:ke(i,"core/navigation-submenu").length,isParentOfSelectedBlock:re(i,!0),isImmediateParentOfSelectedBlock:re(i,!1),hasChildren:!!se(i),selectedBlockHasChildren:!!ve?.length,onlyDescendantIsEmptyLink:U}},[i]),X=Fr(P);x.useEffect(()=>{!h&&!l&&v(!0)},[]),x.useEffect(()=>{t||v(!1)},[t]),x.useEffect(()=>{_&&l&&Pf(jf(c))&&/^.+\.[a-z]+/.test(c)&&Z()},[l]);function Z(){E.current.focus();const{ownerDocument:we}=E.current,{defaultView:re}=we,pe=re.getSelection(),ke=we.createRange();ke.selectNodeContents(E.current),pe.removeAllRanges(),pe.addRange(ke)}const{textColor:V,customTextColor:ee,backgroundColor:te,customBackgroundColor:J}=p5(s,N>0);function ue(we){lc.primary(we,"k")&&(we.preventDefault(),we.stopPropagation(),v(!0),y(E.current))}const ce=Be({ref:xn([S,C]),className:oe("wp-block-navigation-item",{"is-editing":t||j,"is-dragging-within":R,"has-link":!!l,"has-child":P,"has-text-color":!!V||!!ee,[Pt("color",V)]:!!V,"has-background":!!te||J,[Pt("background-color",te)]:!!te,"open-on-click":h}),style:{color:!V&&ee,backgroundColor:!te&&J},onKeyDown:ue}),me=p5(s,!0),de=N>=b?hoe.filter(we=>we!=="core/navigation-submenu"):hoe,Ae=m4e(me),ye=Nt(Ae,{allowedBlocks:de,defaultBlock:gsn,directInsert:!0,__experimentalCaptureToolbars:!0,renderAppender:t||I&&!$||P?Ht.ButtonBlockAppender:!1}),Ne=h?"button":"a";function je(){const we=Ee("core/navigation-link",e);z(i,we)}x.useEffect(()=>{!P&&X&&(g(),je())},[P,X]);const ie=!$||F;return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[!h&&a.jsx(Vt,{name:"link",icon:xa,title:m("Link"),shortcut:j1.primary("k"),onClick:we=>{v(!0),y(we.currentTarget)}}),a.jsx(Vt,{name:"revert",icon:EQe,title:m("Convert to Link"),onClick:je,className:"wp-block-navigation__submenu__revert",disabled:!ie})]})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({label:"",url:"",description:"",title:"",rel:""})},dropdownMenuProps:B,children:[a.jsx(tt,{label:m("Text"),isShownByDefault:!0,hasValue:()=>!!c,onDeselect:()=>n({label:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:c||"",onChange:we=>{n({label:we})},label:m("Text"),autoComplete:"off"})}),a.jsx(tt,{label:m("Link"),isShownByDefault:!0,hasValue:()=>!!l,onDeselect:()=>n({url:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:l||"",onChange:we=>{n({url:we})},label:m("Link"),autoComplete:"off"})}),a.jsx(tt,{label:m("Description"),isShownByDefault:!0,hasValue:()=>!!u,onDeselect:()=>n({description:""}),children:a.jsx(Pi,{__nextHasNoMarginBottom:!0,value:u||"",onChange:we=>{n({description:we})},label:m("Description"),help:m("The description will be displayed in the menu if the current theme supports it.")})}),a.jsx(tt,{label:m("Title attribute"),isShownByDefault:!0,hasValue:()=>!!p,onDeselect:()=>n({title:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:p||"",onChange:we=>{n({title:we})},label:m("Title attribute"),autoComplete:"off",help:m("Additional information to help clarify the purpose of the link.")})}),a.jsx(tt,{label:m("Rel attribute"),isShownByDefault:!0,hasValue:()=>!!d,onDeselect:()=>n({rel:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:d||"",onChange:we=>{n({rel:we})},label:m("Rel attribute"),autoComplete:"off",help:m("The relationship of the linked URL as space-separated link types.")})})]})}),a.jsxs("div",{...ce,children:[a.jsxs(Ne,{className:"wp-block-navigation-item__content",children:[a.jsx(Ie,{ref:E,identifier:"label",className:"wp-block-navigation-item__label",value:c,onChange:we=>n({label:we}),onMerge:o,onReplace:r,"aria-label":m("Navigation link text"),placeholder:T,withoutInteractiveFormatting:!0,onClick:()=>{!h&&!l&&(v(!0),y(E.current))}}),u&&a.jsx("span",{className:"wp-block-navigation-item__description",children:u}),!h&&_&&a.jsx(s3,{clientId:i,link:e,onClose:()=>{v(!1),M?(M.focus(),y(null)):A(i)},anchor:k,onRemove:()=>{n({url:""}),Yt(m("Link removed."),"assertive")},onChange:we=>{Ak(we,n,e)}})]}),(f||h)&&a.jsx("span",{className:"wp-block-navigation__submenu-icon",children:a.jsx(msn,{})}),a.jsx("div",{...ye})]})]})}function Osn(){return a.jsx(Ht.Content,{})}const ysn={to:[{type:"block",blocks:["core/navigation-link"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:e=>Ee("core/navigation-link",e)},{type:"block",blocks:["core/spacer"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/spacer")},{type:"block",blocks:["core/site-logo"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/site-logo")},{type:"block",blocks:["core/home-link"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/home-link")},{type:"block",blocks:["core/social-links"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/social-links")},{type:"block",blocks:["core/search"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/search")}]},aD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/navigation-submenu",title:"Submenu",category:"design",parent:["core/navigation"],description:"Add a submenu to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelItem:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","maxNestingLevel","openSubmenusOnClick","style"],supports:{reusable:!1,html:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-navigation-submenu-editor",style:"wp-block-navigation-submenu"},{name:v4e}=aD,x4e={icon:({context:e})=>e==="list-view"?wa:TP,__experimentalLabel(e,{context:t}){const{label:n}=e,o=e?.metadata?.name;return t==="list-view"&&(o||n)&&e?.metadata?.name||n},edit:zsn,save:Osn,transforms:ysn},Asn=()=>it({name:v4e,metadata:aD,settings:x4e}),vsn=Object.freeze(Object.defineProperty({__proto__:null,init:Asn,metadata:aD,name:v4e,settings:x4e},Symbol.toStringTag,{value:"Module"}));function xsn(){return a.jsx("div",{...Be(),children:a.jsx("span",{children:m("Page break")})})}function wsn(){return a.jsx(i0,{children:"<!--nextpage-->"})}const _sn={from:[{type:"raw",schema:{"wp-block":{attributes:["data-block"]}},isMatch:e=>e.dataset&&e.dataset.block==="core/nextpage",transform(){return Ee("core/nextpage",{})}}]},cD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/nextpage",title:"Page Break",category:"design",description:"Separate your content into a multi-page experience.",keywords:["next page","pagination"],parent:["core/post-content"],textdomain:"default",supports:{customClassName:!1,className:!1,html:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-nextpage-editor"},{name:w4e}=cD,_4e={icon:zQe,example:{},transforms:_sn,edit:xsn,save:wsn},ksn=()=>it({name:w4e,metadata:cD,settings:_4e}),Ssn=Object.freeze(Object.defineProperty({__proto__:null,init:ksn,metadata:cD,name:w4e,settings:_4e},Symbol.toStringTag,{value:"Module"})),KT=new WeakMap;function Csn(){const e=Fn();if(!KT.has(e)){const t=new Map;KT.set(e,qsn.bind(null,t))}return KT.get(e)}function qsn(e,{name:t,blocks:n}){const o=[...n];for(;o.length;){const s=o.shift();for(const i of(r=s.innerBlocks)!==null&&r!==void 0?r:[]){var r;o.unshift(i)}s.name==="core/pattern"&&Rsn(e,t,s.attributes.slug)}}function Rsn(e,t,n){if(e.has(t)||e.set(t,new Set),e.get(t).add(n),k4e(e,t))throw new TypeError(`Pattern ${t} has a circular dependency and cannot be rendered.`)}function k4e(e,t,n=new Set,o=new Set){var r;n.add(t),o.add(t);const s=(r=e.get(t))!==null&&r!==void 0?r:new Set;for(const i of s)if(n.has(i)){if(o.has(i))return!0}else if(k4e(e,i,n,o))return!0;return o.delete(t),!1}const Tsn=({attributes:e,clientId:t})=>{const n=Fn(),o=G(g=>g(Q).__experimentalGetParsedPattern(e.slug),[e.slug]),r=G(g=>g(Me).getCurrentTheme()?.stylesheet,[]),{replaceBlocks:s,setBlockEditingMode:i,__unstableMarkNextChangeAsNotPersistent:c}=Oe(Q),{getBlockRootClientId:l,getBlockEditingMode:u}=G(Q),[d,p]=x.useState(!1),f=Csn();function b(g){return g.innerBlocks.find(z=>z.name==="core/template-part")&&(g.innerBlocks=g.innerBlocks.map(z=>(z.name==="core/template-part"&&z.attributes.theme===void 0&&(z.attributes.theme=r),z))),g.name==="core/template-part"&&g.attributes.theme===void 0&&(g.attributes.theme=r),g}x.useEffect(()=>{if(!d&&o?.blocks){try{f(o)}catch{p(!0);return}window.queueMicrotask(()=>{const g=l(t),z=o.blocks.map(_=>jo(b(_)));z.length===1&&o.categories?.length>0&&(z[0].attributes={...z[0].attributes,metadata:{...z[0].attributes.metadata,categories:o.categories,patternName:o.name,name:z[0].attributes.metadata.name||o.title}});const A=u(g);n.batch(()=>{c(),i(g,"default"),c(),s(t,z),c(),i(g,A)})})}},[t,d,o,c,s,u,i,l]);const h=Be();return d?a.jsx("div",{...h,children:a.jsx(Er,{children:xe(m('Pattern "%s" cannot be rendered inside itself.'),o?.name)})}):a.jsx("div",{...h})},lD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/pattern",title:"Pattern placeholder",category:"theme",description:"Show a block pattern.",supports:{html:!1,inserter:!1,renaming:!1,interactivity:{clientNavigation:!0}},textdomain:"default",attributes:{slug:{type:"string"}}},{name:S4e}=lD,C4e={edit:Tsn},Esn=()=>it({name:S4e,metadata:lD,settings:C4e}),Wsn=Object.freeze(Object.defineProperty({__proto__:null,init:Esn,metadata:lD,name:S4e,settings:C4e},Symbol.toStringTag,{value:"Module"}));function Nsn(e=[]){const t={},n=[];return e.forEach(({id:o,title:r,link:s,type:i,parent:c})=>{var l;const u=(l=t[o]?.innerBlocks)!==null&&l!==void 0?l:[];t[o]=Ee("core/navigation-link",{id:o,label:r.rendered,url:s,type:i,kind:"post-type"},u),c?(t[c]||(t[c]={innerBlocks:[]}),t[c].innerBlocks.push(t[o])):n.push(t[o])}),n}function q4e(e,t){for(const n of e){if(n.attributes.id===t)return n;if(n.innerBlocks&&n.innerBlocks.length){const o=q4e(n.innerBlocks,t);if(o)return o}}return null}function Bsn(e=[],t=null){let n=Nsn(e);if(t){const r=q4e(n,t);r&&r.innerBlocks&&(n=r.innerBlocks)}const o=r=>{r.forEach((s,i,c)=>{const{attributes:l,innerBlocks:u}=s;if(u.length!==0){o(u);const d=Ee("core/navigation-submenu",l,u);c[i]=d}})};return o(n),n}function Lsn({clientId:e,pages:t,parentClientId:n,parentPageID:o}){const{replaceBlock:r,selectBlock:s}=Oe(Q);return()=>{const i=Bsn(t,o);r(e,i),s(n)}}const R4e=m("This Navigation Menu displays your website's pages. Editing it will enable you to add, delete, or reorder pages. However, new pages will no longer be added automatically.");function yN({onClick:e,onClose:t,disabled:n}){return a.jsxs(Zo,{onRequestClose:t,title:m("Edit Page List"),className:"wp-block-page-list-modal",aria:{describedby:vt(yN,"wp-block-page-list-modal__description")},children:[a.jsx("p",{id:vt(yN,"wp-block-page-list-modal__description"),children:R4e}),a.jsxs("div",{className:"wp-block-page-list-modal-buttons",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",accessibleWhenDisabled:!0,disabled:n,onClick:e,children:m("Edit")})]})]})}const moe=100,goe=()=>{};function Psn({blockProps:e,innerBlocksProps:t,hasResolvedPages:n,blockList:o,pages:r,parentPageID:s}){if(!n)return a.jsx("div",{...e,children:a.jsx("div",{className:"wp-block-page-list__loading-indicator-container",children:a.jsx(Xn,{className:"wp-block-page-list__loading-indicator"})})});if(r===null)return a.jsx("div",{...e,children:a.jsx(L1,{status:"warning",isDismissible:!1,children:m("Page List: Cannot retrieve Pages.")})});if(r.length===0)return a.jsx("div",{...e,children:a.jsx(L1,{status:"info",isDismissible:!1,children:m("Page List: Cannot retrieve Pages.")})});if(o.length===0){const i=r.find(c=>c.id===s);return i?.title?.rendered?a.jsx("div",{...e,children:a.jsx(Er,{children:xe(m('Page List: "%s" page has no children.'),i.title.rendered)})}):a.jsx("div",{...e,children:a.jsx(L1,{status:"warning",isDismissible:!1,children:m("Page List: Cannot retrieve Pages.")})})}if(r.length>0)return a.jsx("ul",{...t})}function jsn({context:e,clientId:t,attributes:n,setAttributes:o}){const{parentPageID:r}=n,[s,i]=x.useState(!1),c=x.useCallback(()=>i(!0),[]),l=()=>i(!1),u=Qo(),{records:d,hasResolved:p}=vl("postType","page",{per_page:moe,_fields:["id","link","menu_order","parent","title","type"],orderby:"menu_order",order:"asc"}),f="showSubmenuIcon"in e&&d?.length>0&&d?.length<=moe,b=x.useMemo(()=>d===null?new Map:d.sort((T,E)=>T.menu_order===E.menu_order?T.title.rendered.localeCompare(E.title.rendered):T.menu_order-E.menu_order).reduce((T,E)=>{const{parent:B}=E;return T.has(B)?T.get(B).push(E):T.set(B,[E]),T},new Map),[d]),h=Be({className:oe("wp-block-page-list",{"has-text-color":!!e.textColor,[Pt("color",e.textColor)]:!!e.textColor,"has-background":!!e.backgroundColor,[Pt("background-color",e.backgroundColor)]:!!e.backgroundColor}),style:{...e.style?.color}}),g=x.useMemo(function R(T=0,E=0){const B=b.get(T);return B?.length?B.reduce((N,j)=>{const I=b.has(j.id),P={value:j.id,label:"— ".repeat(E)+j.title.rendered,rawName:j.title.rendered};return N.push(P),I&&N.push(...R(j.id,E+1)),N},[]):[]},[b]),z=x.useMemo(function R(T=r){const E=b.get(T);return E?.length?E.reduce((B,N)=>{const j=b.has(N.id),I={id:N.id,label:N.title?.rendered?.trim()!==""?N.title?.rendered:m("(no title)"),title:N.title?.rendered?.trim()!==""?N.title?.rendered:m("(no title)"),link:N.url,hasChildren:j};let P=null;const $=R(N.id);return P=Ee("core/page-list-item",I,$),B.push(P),B},[]):[]},[b,r]),{isNested:A,hasSelectedChild:_,parentClientId:v,hasDraggedChild:M,isChildOfNavigation:y}=G(R=>{const{getBlockParentsByBlockName:T,hasSelectedInnerBlock:E,hasDraggedInnerBlock:B}=R(Q),N=T(t,"core/navigation-submenu",!0),j=T(t,"core/navigation",!0);return{isNested:N.length>0,isChildOfNavigation:j.length>0,hasSelectedChild:E(t,!0),hasDraggedChild:B(t,!0),parentClientId:j[0]}},[t]),k=Lsn({clientId:t,pages:d,parentClientId:v,parentPageID:r}),S=Nt(h,{renderAppender:!1,__unstableDisableDropZone:!0,templateLock:y?!1:"all",onInput:goe,onChange:goe,value:z}),{selectBlock:C}=Oe(Q);return x.useEffect(()=>{(_||M)&&(c(),C(v))},[_,M,v,C,c]),x.useEffect(()=>{o({isNested:A})},[A,o]),a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{o({parentPageID:0})},dropdownMenuProps:u,children:[g.length>0&&a.jsx(tt,{label:m("Parent Page"),hasValue:()=>r!==0,onDeselect:()=>o({parentPageID:0}),isShownByDefault:!0,children:a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,className:"editor-page-attributes__parent",label:m("Parent"),value:r,options:g,onChange:R=>o({parentPageID:R??0}),help:m("Choose a page to show only its subpages.")})}),f&&a.jsxs("div",{style:{gridColumn:"1 / -1"},children:[a.jsx("p",{children:R4e}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",accessibleWhenDisabled:!0,disabled:!p,onClick:k,children:m("Edit")})]})]})}),f&&a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"other",children:a.jsx(Vt,{title:m("Edit"),onClick:c,children:m("Edit")})}),s&&a.jsx(yN,{onClick:k,onClose:l,disabled:!p})]}),a.jsx(Psn,{blockProps:h,innerBlocksProps:S,hasResolvedPages:p,blockList:z,pages:d,parentPageID:r})]})}const uD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/page-list",title:"Page List",category:"widgets",allowedBlocks:["core/page-list-item"],description:"Display a list of all pages.",keywords:["menu","navigation"],textdomain:"default",attributes:{parentPageID:{type:"integer",default:0},isNested:{type:"boolean",default:!1}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","style","openSubmenusOnClick"],supports:{reusable:!1,html:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},color:{text:!0,background:!0,link:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},spacing:{padding:!0,margin:!0,__experimentalDefaultControls:{padding:!1,margin:!1}}},editorStyle:"wp-block-page-list-editor",style:"wp-block-page-list"},{name:T4e}=uD,E4e={icon:OQe,example:{},edit:jsn},Isn=()=>it({name:T4e,metadata:uD,settings:E4e}),Dsn=Object.freeze(Object.defineProperty({__proto__:null,init:Isn,metadata:uD,name:T4e,settings:E4e},Symbol.toStringTag,{value:"Module"})),Moe=()=>a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:a.jsx(he,{d:"M1.50002 4L6.00002 8L10.5 4",strokeWidth:"1.5"})});function Fsn(){return G(e=>{if(!e(Me).canUser("read",{kind:"root",name:"site"}))return;const n=e(Me).getEntityRecord("root","site");return n?.show_on_front==="page"&&n?.page_on_front},[])}function $sn({context:e,attributes:t}){const{id:n,label:o,link:r,hasChildren:s,title:i}=t,c="showSubmenuIcon"in e,l=Fsn(),u=p5(e,!0),d=m4e(u),p=Be(d,{className:"wp-block-pages-list__item"}),f=Nt(p);return a.jsxs("li",{className:oe("wp-block-pages-list__item",{"has-child":s,"wp-block-navigation-item":c,"open-on-click":e.openSubmenusOnClick,"open-on-hover-click":!e.openSubmenusOnClick&&e.showSubmenuIcon,"menu-item-home":n===l}),children:[s&&e.openSubmenusOnClick?a.jsxs(a.Fragment,{children:[a.jsx("button",{type:"button",className:"wp-block-navigation-item__content wp-block-navigation-submenu__toggle","aria-expanded":"false",children:Lt(o)}),a.jsx("span",{className:"wp-block-page-list__submenu-icon wp-block-navigation__submenu-icon",children:a.jsx(Moe,{})})]}):a.jsx("a",{className:oe("wp-block-pages-list__item__link",{"wp-block-navigation-item__content":c}),href:r,children:Lt(i)}),s&&a.jsxs(a.Fragment,{children:[!e.openSubmenusOnClick&&e.showSubmenuIcon&&a.jsx("button",{className:"wp-block-navigation-item__content wp-block-navigation-submenu__toggle wp-block-page-list__submenu-icon wp-block-navigation__submenu-icon","aria-expanded":"false",type:"button",children:a.jsx(Moe,{})}),a.jsx("ul",{...f})]})]},n)}const dD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/page-list-item",title:"Page List Item",category:"widgets",parent:["core/page-list"],description:"Displays a page inside a list of all pages.",keywords:["page","menu","navigation"],textdomain:"default",attributes:{id:{type:"number"},label:{type:"string"},title:{type:"string"},link:{type:"string"},hasChildren:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","style","openSubmenusOnClick"],supports:{reusable:!1,html:!1,lock:!1,inserter:!1,__experimentalToolbar:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-page-list-editor",style:"wp-block-page-list"},{name:W4e}=dD,N4e={__experimentalLabel:({label:e})=>e,icon:wa,example:{},edit:$sn},Vsn=()=>it({name:W4e,metadata:dD,settings:N4e}),Hsn=Object.freeze(Object.defineProperty({__proto__:null,init:Vsn,metadata:dD,name:W4e,settings:N4e},Symbol.toStringTag,{value:"Module"})),t2={className:!1},B4e={align:{type:"string"},content:{type:"string",source:"html",selector:"p",default:""},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},textColor:{type:"string"},backgroundColor:{type:"string"},fontSize:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]},style:{type:"object"}},Tv=e=>{if(!e.customTextColor&&!e.customBackgroundColor&&!e.customFontSize)return e;const t={};(e.customTextColor||e.customBackgroundColor)&&(t.color={}),e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),e.customFontSize&&(t.typography={fontSize:e.customFontSize});const{customTextColor:n,customBackgroundColor:o,customFontSize:r,...s}=e;return{...s,style:t}},{style:dgn,...Xg}=B4e,Usn=[{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},save({attributes:e}){const{align:t,content:n,dropCap:o,direction:r}=e,s=oe({"has-drop-cap":t===(jt()?"left":"right")||t==="center"?!1:o,[`has-text-align-${t}`]:t});return a.jsx("p",{...Be.save({className:s,dir:r}),children:a.jsx(Ie.Content,{value:n})})}},{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},migrate:Tv,save({attributes:e}){const{align:t,content:n,dropCap:o,backgroundColor:r,textColor:s,customBackgroundColor:i,customTextColor:c,fontSize:l,customFontSize:u,direction:d}=e,p=Pt("color",s),f=Pt("background-color",r),b=Nx(l),h=oe({"has-text-color":s||c,"has-background":r||i,"has-drop-cap":o,[`has-text-align-${t}`]:t,[b]:b,[p]:p,[f]:f}),g={backgroundColor:f?void 0:i,color:p?void 0:c,fontSize:b?void 0:u};return a.jsx(Ie.Content,{tagName:"p",style:g,className:h||void 0,value:n,dir:d})}},{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},migrate:Tv,save({attributes:e}){const{align:t,content:n,dropCap:o,backgroundColor:r,textColor:s,customBackgroundColor:i,customTextColor:c,fontSize:l,customFontSize:u,direction:d}=e,p=Pt("color",s),f=Pt("background-color",r),b=Nx(l),h=oe({"has-text-color":s||c,"has-background":r||i,"has-drop-cap":o,[b]:b,[p]:p,[f]:f}),g={backgroundColor:f?void 0:i,color:p?void 0:c,fontSize:b?void 0:u,textAlign:t};return a.jsx(Ie.Content,{tagName:"p",style:g,className:h||void 0,value:n,dir:d})}},{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"},width:{type:"string"}},migrate:Tv,save({attributes:e}){const{width:t,align:n,content:o,dropCap:r,backgroundColor:s,textColor:i,customBackgroundColor:c,customTextColor:l,fontSize:u,customFontSize:d}=e,p=Pt("color",i),f=Pt("background-color",s),b=u&&`is-${u}-text`,h=oe({[`align${t}`]:t,"has-background":s||c,"has-drop-cap":r,[b]:b,[p]:p,[f]:f}),g={backgroundColor:f?void 0:c,color:p?void 0:l,fontSize:b?void 0:d,textAlign:n};return a.jsx(Ie.Content,{tagName:"p",style:g,className:h||void 0,value:o})}},{supports:t2,attributes:{...Xg,fontSize:{type:"number"}},save({attributes:e}){const{width:t,align:n,content:o,dropCap:r,backgroundColor:s,textColor:i,fontSize:c}=e,l=oe({[`align${t}`]:t,"has-background":s,"has-drop-cap":r}),u={backgroundColor:s,color:i,fontSize:c,textAlign:n};return a.jsx("p",{style:u,className:l||void 0,children:o})},migrate(e){return Tv({...e,customFontSize:Number.isFinite(e.fontSize)?e.fontSize:void 0,customTextColor:e.textColor&&e.textColor[0]==="#"?e.textColor:void 0,customBackgroundColor:e.backgroundColor&&e.backgroundColor[0]==="#"?e.backgroundColor:void 0})}},{supports:t2,attributes:{...B4e,content:{type:"string",source:"html",default:""}},save({attributes:e}){return a.jsx(i0,{children:e.content})},migrate(e){return e}}];function Xsn(e){const{batch:t}=Fn(),{moveBlocksToPosition:n,replaceInnerBlocks:o,duplicateBlocks:r,insertBlock:s}=Oe(Q),{getBlockRootClientId:i,getBlockIndex:c,getBlockOrder:l,getBlockName:u,getBlock:d,getNextBlockClientId:p,canInsertBlockType:f}=G(Q),b=x.useRef(e);return b.current=e,Mn(h=>{function g(z){if(z.defaultPrevented||z.keyCode!==Gr)return;const{content:A,clientId:_}=b.current;if(A.length)return;const v=i(_);if(!Et(u(v),"__experimentalOnEnter",!1))return;const M=l(v),y=M.indexOf(_);if(y===M.length-1){let C=v;for(;!f(u(_),i(C));)C=i(C);typeof C=="string"&&(z.preventDefault(),n([_],v,i(C),c(C)+1));return}const k=Mr();if(!f(k,i(v)))return;z.preventDefault();const S=d(v);t(()=>{r([v]);const C=c(v);o(v,S.innerBlocks.slice(0,y)),o(p(v),S.innerBlocks.slice(y+1)),s(Ee(k),C+1,i(v),!0)})}return h.addEventListener("keydown",g),()=>{h.removeEventListener("keydown",g)}},[])}function Gsn({direction:e,setDirection:t}){return jt()&&a.jsx(Vt,{icon:VZe,title:We("Left to right","editor button"),isActive:e==="ltr",onClick:()=>{t(e==="ltr"?void 0:"ltr")}})}function b5(e){return e===(jt()?"left":"right")||e==="center"}function Ksn({clientId:e,attributes:t,setAttributes:n,name:o}){const[r]=Un("typography.dropCap");if(!r)return null;const{align:s,dropCap:i}=t;let c;b5(s)?c=m("Not available for aligned text."):i?c=m("Showing large initial letter."):c=m("Show a large initial letter.");const l=An(o,"typography.defaultControls.dropCap",!1);return a.jsx(et,{group:"typography",children:a.jsx(tt,{hasValue:()=>!!i,label:m("Drop cap"),isShownByDefault:l,onDeselect:()=>n({dropCap:void 0}),resetAllFilter:()=>({dropCap:void 0}),panelId:e,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Drop cap"),checked:!!i,onChange:()=>n({dropCap:!i}),help:c,disabled:b5(s)})})})}function Ysn({attributes:e,mergeBlocks:t,onReplace:n,onRemove:o,setAttributes:r,clientId:s,isSelected:i,name:c}){const l=G(z=>e0(z(Q)).isZoomOut()),{align:u,content:d,direction:p,dropCap:f}=e,b=Be({ref:Xsn({clientId:s,content:d}),className:oe({"has-drop-cap":b5(u)?!1:f,[`has-text-align-${u}`]:u}),style:{direction:p}}),h=Jr();let{placeholder:g}=e;return l?g="":g||(g=m("Type / to choose a block")),a.jsxs(a.Fragment,{children:[h==="default"&&a.jsxs(bt,{group:"block",children:[a.jsx(nr,{value:u,onChange:z=>r({align:z,dropCap:b5(z)?!1:f})}),a.jsx(Gsn,{direction:p,setDirection:z=>r({direction:z})})]}),i&&a.jsx(Ksn,{name:c,clientId:s,attributes:e,setAttributes:r}),a.jsx(Ie,{identifier:"content",tagName:"p",...b,value:d,onChange:z=>r({content:z}),onMerge:t,onReplace:n,onRemove:o,"aria-label":Ie.isEmpty(d)?m("Empty block; start writing or type forward slash to choose a block"):m("Block: Paragraph"),"data-empty":Ie.isEmpty(d),placeholder:g,"data-custom-placeholder":g&&!l?!0:void 0,__unstableEmbedURLOnPaste:!0,__unstableAllowPrefixTransformations:!0})]})}function Zsn({attributes:e}){const{align:t,content:n,dropCap:o,direction:r}=e,s=oe({"has-drop-cap":t===(jt()?"left":"right")||t==="center"?!1:o,[`has-text-align-${t}`]:t});return a.jsx("p",{...Be.save({className:s,dir:r}),children:a.jsx(Ie.Content,{value:n})})}const{name:zoe}={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/paragraph",title:"Paragraph",category:"text",description:"Start with the basic building block of all narrative.",keywords:["text"],textdomain:"default",attributes:{align:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"p",role:"content"},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]}},supports:{splitting:!0,anchor:!0,className:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"p",__unstablePasteTextInline:!0,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-paragraph-editor",style:"wp-block-paragraph"},Qsn={from:[{type:"raw",priority:20,selector:"p",schema:({phrasingContentSchema:e,isPaste:t})=>({p:{children:e,attributes:t?[]:["style","id"]}}),transform(e){const t=Nl(zoe,e.outerHTML),{textAlign:n}=e.style||{};return(n==="left"||n==="center"||n==="right")&&(t.align=n),Ee(zoe,t)}}]},pD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/paragraph",title:"Paragraph",category:"text",description:"Start with the basic building block of all narrative.",keywords:["text"],textdomain:"default",attributes:{align:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"p",role:"content"},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]}},supports:{splitting:!0,anchor:!0,className:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"p",__unstablePasteTextInline:!0,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-paragraph-editor",style:"wp-block-paragraph"},{name:fD}=pD,L4e={icon:zde,example:{attributes:{content:m("In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.")}},__experimentalLabel(e,{context:t}){const n=e?.metadata?.name;if(t==="list-view"&&n)return n;if(t==="accessibility"){if(n)return n;const{content:o}=e;return!o||o.length===0?m("Empty"):o}},transforms:Qsn,deprecated:Usn,merge(e,t){return{content:(e.content||"")+(t.content||"")}},edit:Ysn,save:Zsn},Jsn=()=>it({name:fD,metadata:pD,settings:L4e}),ein=Object.freeze(Object.defineProperty({__proto__:null,init:Jsn,metadata:pD,name:fD,settings:L4e},Symbol.toStringTag,{value:"Module"})),tin=25,nin={who:"authors",per_page:100};function oin({isSelected:e,context:{postType:t,postId:n,queryId:o},attributes:r,setAttributes:s}){const i=Number.isFinite(o),{authorId:c,authorDetails:l,authors:u,supportsAuthor:d}=G(R=>{var T;const{getEditedEntityRecord:E,getUser:B,getUsers:N,getPostType:j}=R(Me),I=E("postType",t,n)?.author;return{authorId:I,authorDetails:I?B(I):null,authors:N(nin),supportsAuthor:(T=j(t)?.supports?.author)!==null&&T!==void 0?T:!1}},[t,n]),{editEntityRecord:p}=Oe(Me),{textAlign:f,showAvatar:b,showBio:h,byline:g,isLink:z,linkTarget:A}=r,_=[],v=l?.name||m("Post Author");l?.avatar_urls&&Object.keys(l.avatar_urls).forEach(R=>{_.push({value:R,label:`${R} x ${R}`})});const M=Be({className:oe({[`has-text-align-${f}`]:f})}),y=u?.length?u.map(({id:R,name:T})=>({value:R,label:T})):[],k=R=>{p("postType",t,n,{author:R})},S=y.length>=tin,C=!!n&&!i&&y.length>0;return d?a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsxs(dt,{spacing:4,className:"wp-block-post-author__inspector-settings",children:[C&&(S&&a.jsx(nb,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Author"),options:y,value:c,onChange:k,allowReset:!1})||a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Author"),value:c,options:y,onChange:k})),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show avatar"),checked:b,onChange:()=>s({showAvatar:!b})}),b&&a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Avatar size"),value:r.avatarSize,options:_,onChange:R=>{s({avatarSize:Number(R)})}}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show bio"),checked:h,onChange:()=>s({showBio:!h})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link author name to author page"),checked:z,onChange:()=>s({isLink:!z})}),z&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:R=>s({linkTarget:R?"_blank":"_self"}),checked:A==="_blank"})]})})}),a.jsx(bt,{group:"block",children:a.jsx(nr,{value:f,onChange:R=>{s({textAlign:R})}})}),a.jsxs("div",{...M,children:[b&&l?.avatar_urls&&a.jsx("div",{className:"wp-block-post-author__avatar",children:a.jsx("img",{width:r.avatarSize,src:l.avatar_urls[r.avatarSize],alt:l.name})}),a.jsxs("div",{className:"wp-block-post-author__content",children:[(!Ie.isEmpty(g)||e)&&a.jsx(Ie,{identifier:"byline",className:"wp-block-post-author__byline","aria-label":m("Post author byline text"),placeholder:m("Write byline…"),value:g,onChange:R=>s({byline:R})}),a.jsx("p",{className:"wp-block-post-author__name",children:z?a.jsx("a",{href:"#post-author-pseudo-link",onClick:R=>R.preventDefault(),children:v}):v}),h&&a.jsx("p",{className:"wp-block-post-author__bio",dangerouslySetInnerHTML:{__html:l?.description}})]})]})]}):a.jsx("div",{...M,children:xe(m("This post type (%s) does not support the author."),t)})}const bD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-author",title:"Author",category:"theme",description:"Display post author details such as name, avatar, and bio.",textdomain:"default",attributes:{textAlign:{type:"string"},avatarSize:{type:"number",default:48},showAvatar:{type:"boolean",default:!0},showBio:{type:"boolean"},byline:{type:"string"},isLink:{type:"boolean",default:!1,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},usesContext:["postType","postId","queryId"],supports:{html:!1,spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDuotone:".wp-block-post-author__avatar img",__experimentalDefaultControls:{background:!0,text:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-post-author-editor",style:"wp-block-post-author"},{name:P4e}=bD,j4e={icon:FP,example:{viewportWidth:350,attributes:{showBio:!0,byline:m("Posted by")}},edit:oin},rin=()=>it({name:P4e,metadata:bD,settings:j4e}),sin=Object.freeze(Object.defineProperty({__proto__:null,init:rin,metadata:bD,name:P4e,settings:j4e},Symbol.toStringTag,{value:"Module"}));function iin({context:{postType:e,postId:t},attributes:{textAlign:n,isLink:o,linkTarget:r},setAttributes:s}){const{authorName:i,supportsAuthor:c}=G(f=>{var b;const{getEditedEntityRecord:h,getUser:g,getPostType:z}=f(Me),A=h("postType",e,t)?.author;return{authorName:A?g(A):null,supportsAuthor:(b=z(e)?.supports?.author)!==null&&b!==void 0?b:!1}},[e,t]),l=Be({className:oe({[`has-text-align-${n}`]:n})}),u=i?.name||m("Author Name"),d=o?a.jsx("a",{href:"#author-pseudo-link",onClick:f=>f.preventDefault(),className:"wp-block-post-author-name__link",children:u}):u,p=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:n,onChange:f=>{s({textAlign:f})}})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{s({isLink:!1,linkTarget:"_self"})},dropdownMenuProps:p,children:[a.jsx(tt,{label:m("Link to author archive"),isShownByDefault:!0,hasValue:()=>o,onDeselect:()=>s({isLink:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to author archive"),onChange:()=>s({isLink:!o}),checked:o})}),o&&a.jsx(tt,{label:m("Open in new tab"),isShownByDefault:!0,hasValue:()=>r!=="_self",onDeselect:()=>s({linkTarget:"_self"}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:f=>s({linkTarget:f?"_blank":"_self"}),checked:r==="_blank"})})]})}),a.jsx("div",{...l,children:c?d:xe(m("This post type (%s) does not support the author."),e)})]})}const ain={from:[{type:"block",blocks:["core/post-author"],transform:({textAlign:e})=>Ee("core/post-author-name",{textAlign:e})}],to:[{type:"block",blocks:["core/post-author"],transform:({textAlign:e})=>Ee("core/post-author",{textAlign:e})}]},hD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-author-name",title:"Author Name",category:"theme",description:"The author name.",textdomain:"default",attributes:{textAlign:{type:"string"},isLink:{type:"boolean",default:!1,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},usesContext:["postType","postId"],example:{viewportWidth:350},supports:{html:!1,spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-author-name"},{name:I4e}=hD,D4e={icon:FP,transforms:ain,edit:iin},cin=()=>it({name:I4e,metadata:hD,settings:D4e}),lin=Object.freeze(Object.defineProperty({__proto__:null,init:cin,metadata:hD,name:I4e,settings:D4e},Symbol.toStringTag,{value:"Module"}));function uin({context:{postType:e,postId:t},attributes:{textAlign:n},setAttributes:o}){const{authorDetails:r}=G(c=>{const{getEditedEntityRecord:l,getUser:u}=c(Me),d=l("postType",e,t)?.author;return{authorDetails:d?u(d):null}},[e,t]),s=Be({className:oe({[`has-text-align-${n}`]:n})}),i=r?.description||m("Author Biography");return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:n,onChange:c=>{o({textAlign:c})}})}),a.jsx("div",{...s,dangerouslySetInnerHTML:{__html:i}})]})}const mD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-author-biography",title:"Author Biography",category:"theme",description:"The author biography.",textdomain:"default",attributes:{textAlign:{type:"string"}},usesContext:["postType","postId"],example:{viewportWidth:350},supports:{spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-author-biography"},{name:F4e}=mD,$4e={icon:FP,edit:uin},din=()=>it({name:F4e,metadata:mD,settings:$4e}),pin=Object.freeze(Object.defineProperty({__proto__:null,init:din,metadata:mD,name:F4e,settings:$4e},Symbol.toStringTag,{value:"Module"})),fin=[["core/avatar"],["core/comment-author-name"],["core/comment-date"],["core/comment-content"],["core/comment-reply-link"],["core/comment-edit-link"]];function bin({attributes:{commentId:e},setAttributes:t}){const[n,o]=x.useState(e),r=Be(),s=Nt(r,{template:fin});return e?a.jsx("div",{...s}):a.jsx("div",{...r,children:a.jsxs(vo,{icon:Ew,label:We("Post Comment","block title"),instructions:m("To show a comment, input the comment ID."),children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:e,onChange:i=>o(parseInt(i))}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:()=>{t({commentId:n})},children:m("Save")})]})})}function hin(){const e=Be.save(),t=Nt.save(e);return a.jsx("div",{...t})}const gD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/post-comment",title:"Comment (deprecated)",category:"theme",allowedBlocks:["core/avatar","core/comment-author-name","core/comment-content","core/comment-date","core/comment-edit-link","core/comment-reply-link"],description:"This block is deprecated. Please use the Comments block instead.",textdomain:"default",attributes:{commentId:{type:"number"}},providesContext:{commentId:"commentId"},supports:{html:!1,inserter:!1,interactivity:{clientNavigation:!0}}},{name:V4e}=gD,H4e={icon:U3,edit:bin,save:hin},min=()=>it({name:V4e,metadata:gD,settings:H4e}),gin=Object.freeze(Object.defineProperty({__proto__:null,init:min,metadata:gD,name:V4e,settings:H4e},Symbol.toStringTag,{value:"Module"}));function Min({attributes:e,context:t,setAttributes:n}){const{textAlign:o}=e,{postId:r}=t,[s,i]=x.useState(),c=Be({className:oe({[`has-text-align-${o}`]:o})});x.useEffect(()=>{if(!r)return;const d=r;Tt({path:tn("/wp/v2/comments",{post:r}),parse:!1}).then(p=>{d===r&&i(p.headers.get("X-WP-Total"))})},[r]);const l=r&&s!==void 0,u={...c.style,textDecoration:l?c.style?.textDecoration:void 0};return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:d=>{n({textAlign:d})}})}),a.jsx("div",{...c,style:u,children:l?s:a.jsx(Er,{children:m("Post Comments Count block: post not found.")})})]})}const MD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/post-comments-count",title:"Comments Count",category:"theme",description:"Display a post's comments count.",textdomain:"default",attributes:{textAlign:{type:"string"}},usesContext:["postId"],supports:{html:!1,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:U4e}=MD,X4e={icon:_de,edit:Min},zin=()=>it({name:U4e,metadata:MD,settings:X4e}),Oin=Object.freeze(Object.defineProperty({__proto__:null,init:zin,metadata:MD,name:U4e,settings:X4e},Symbol.toStringTag,{value:"Module"}));function G4e({attributes:e,context:t,setAttributes:n}){const{textAlign:o}=e,{postId:r,postType:s}=t,i=vt(G4e),c=xe("comments-form-edit-%d-desc",i),l=Be({className:oe({[`has-text-align-${o}`]:o}),"aria-describedby":c});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:u=>{n({textAlign:u})}})}),a.jsxs("div",{...l,children:[a.jsx(yAe,{postId:r,postType:s}),a.jsx(qn,{id:c,children:m("Comments form disabled in editor.")})]})]})}const zD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-comments-form",title:"Comments Form",category:"theme",description:"Display a post's comments form.",textdomain:"default",attributes:{textAlign:{type:"string"}},usesContext:["postId","postType"],supports:{html:!1,color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-post-comments-form-editor",style:["wp-block-post-comments-form","wp-block-buttons","wp-block-button"],example:{attributes:{textAlign:"center"}}},{name:K4e}=zD,Y4e={icon:wQe,edit:G4e},yin=()=>it({name:K4e,metadata:zD,settings:Y4e}),Ain=Object.freeze(Object.defineProperty({__proto__:null,init:yin,metadata:zD,name:K4e,settings:Y4e},Symbol.toStringTag,{value:"Module"}));function vin({context:e,attributes:t,setAttributes:n}){const{textAlign:o}=t,{postType:r,postId:s}=e,[i,c]=x.useState(),l=Be({className:oe({[`has-text-align-${o}`]:o})});x.useEffect(()=>{if(!s)return;const f=s;Tt({path:tn("/wp/v2/comments",{post:s}),parse:!1}).then(b=>{f===s&&c(b.headers.get("X-WP-Total"))})},[s]);const u=G(f=>f(Me).getEditedEntityRecord("postType",r,s),[r,s]);if(!u)return null;const{link:d}=u;let p;if(i!==void 0){const f=parseInt(i);f===0?p=m("No comments"):p=xe(Dn("%s comment","%s comments",f),f.toLocaleString())}return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:f=>{n({textAlign:f})}})}),a.jsx("div",{...l,children:d&&p!==void 0?a.jsx("a",{href:d+"#comments",onClick:f=>f.preventDefault(),children:p}):a.jsx(Er,{children:m("Post Comments Link block: post not found.")})})]})}const OD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/post-comments-link",title:"Comments Link",category:"theme",description:"Displays the link to the current post comments.",textdomain:"default",usesContext:["postType","postId"],attributes:{textAlign:{type:"string"}},supports:{html:!1,color:{link:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-comments-link"},{name:Z4e}=OD,Q4e={edit:vin,icon:_de},xin=()=>it({name:Z4e,metadata:OD,settings:Q4e}),win=Object.freeze(Object.defineProperty({__proto__:null,init:xin,metadata:OD,name:Z4e,settings:Q4e},Symbol.toStringTag,{value:"Module"}));function _in({parentLayout:e,layoutClassNames:t,userCanEdit:n,postType:o,postId:r}){const[,,s]=Ao("postType",o,"content",r),i=Be({className:t}),c=x.useMemo(()=>s?.raw?Ko(s.raw):[],[s?.raw]),l=H7({blocks:c,props:i,layout:e});return n?a.jsx("div",{...l}):s?.protected?a.jsx("div",{...i,children:a.jsx(Er,{children:m("This content is password protected.")})}):a.jsx("div",{...i,dangerouslySetInnerHTML:{__html:s?.rendered}})}function kin({context:e={}}){const{postType:t,postId:n}=e,[o,r,s]=Ni("postType",t,{id:n}),c=!!G(d=>d(Me).getEntityRecord("postType",t,n),[t,n])?.content?.raw||o?.length,l=[["core/paragraph"]],u=Nt(Be({className:"entry-content"}),{value:o,onInput:r,onChange:s,template:c?void 0:l});return a.jsx("div",{...u})}function Sin(e){const{context:{queryId:t,postType:n,postId:o}={},layoutClassNames:r}=e,s=$ye("postType",n,o);if(s===void 0)return null;const i=Number.isFinite(t);return s&&!i?a.jsx(kin,{...e}):a.jsx(_in,{parentLayout:e.parentLayout,layoutClassNames:r,userCanEdit:s,postType:n,postId:o})}function Cin({layoutClassNames:e}){const t=Be({className:e});return a.jsxs("div",{...t,children:[a.jsx("p",{children:m("This is the Content block, it will display all the blocks in any single post or page.")}),a.jsx("p",{children:m("That might be a simple arrangement like consecutive paragraphs in a blog post, or a more elaborate composition that includes image galleries, videos, tables, columns, and any other block types.")}),a.jsx("p",{children:m("If there are any Custom Post Types registered at your site, the Content block can display the contents of those entries as well.")})]})}function qin(){const e=Be();return a.jsx("div",{...e,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})})}function Rin({context:e,__unstableLayoutClassNames:t,__unstableParentLayout:n}){const{postId:o,postType:r}=e,s=ok(o);return o&&r&&s?a.jsx(qin,{}):a.jsx(TO,{uniqueId:o,children:o&&r?a.jsx(Sin,{context:e,parentLayout:n,layoutClassNames:t}):a.jsx(Cin,{layoutClassNames:t})})}const yD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-content",title:"Content",category:"theme",description:"Displays the contents of a post or page.",textdomain:"default",usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{align:["wide","full"],html:!1,layout:!0,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},dimensions:{minHeight:!0},spacing:{blockGap:!0,padding:!0,margin:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!1,text:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-content",editorStyle:"wp-block-post-content-editor"},{name:J4e}=yD,exe={icon:vQe,edit:Rin},Tin=()=>it({name:J4e,metadata:yD,settings:exe}),Ein=Object.freeze(Object.defineProperty({__proto__:null,init:Tin,metadata:yD,name:J4e,settings:exe},Symbol.toStringTag,{value:"Module"}));function Win({attributes:{textAlign:e,format:t,isLink:n,displayType:o},context:{postId:r,postType:s,queryId:i},setAttributes:c}){const l=Be({className:oe({[`has-text-align-${e}`]:e,"wp-block-post-date__modified-date":o==="modified"})}),u=Qo(),[d,p]=x.useState(null),f=x.useMemo(()=>({anchor:d}),[d]),b=Number.isFinite(i),h=Sa(),[g=h.formats.date]=Ao("root","site","date_format"),[z=h.formats.time]=Ao("root","site","time_format"),[A,_]=Ao("postType",s,o,r),v=G(k=>s?k(Me).getPostType(s):null,[s]),M=m(o==="date"?"Post Date":"Post Modified Date");let y=A?a.jsx("time",{dateTime:r0("c",A),ref:p,children:t==="human-diff"?c_(A):r0(t||g,A)}):M;return n&&A&&(y=a.jsx("a",{href:"#post-date-pseudo-link",onClick:k=>k.preventDefault(),children:y})),a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(nr,{value:e,onChange:k=>{c({textAlign:k})}}),A&&o==="date"&&!b&&a.jsx(Wn,{children:a.jsx(so,{popoverProps:f,renderContent:({onClose:k})=>a.jsx(sBt,{currentDate:A,onChange:_,is12Hour:Nin(z),onClose:k,dateOrder:We("dmy","date order")}),renderToggle:({isOpen:k,onToggle:S})=>{const C=R=>{!k&&R.keyCode===Ps&&(R.preventDefault(),S())};return a.jsx(Vt,{"aria-expanded":k,icon:Nd,title:m("Change Date"),onClick:S,onKeyDown:C})}})})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{c({format:void 0,isLink:!1,displayType:"date"})},dropdownMenuProps:u,children:[a.jsx(tt,{hasValue:()=>t!==void 0&&t!==g,label:m("Date Format"),onDeselect:()=>c({format:void 0}),isShownByDefault:!0,children:a.jsx(Uze,{format:t,defaultFormat:g,onChange:k=>c({format:k})})}),a.jsx(tt,{hasValue:()=>n!==!1,label:v?.labels.singular_name?xe(m("Link to %s"),v.labels.singular_name.toLowerCase()):m("Link to post"),onDeselect:()=>c({isLink:!1}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:v?.labels.singular_name?xe(m("Link to %s"),v.labels.singular_name.toLowerCase()):m("Link to post"),onChange:()=>c({isLink:!n}),checked:n})}),a.jsx(tt,{hasValue:()=>o!=="date",label:m("Display last modified date"),onDeselect:()=>c({displayType:"date"}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display last modified date"),onChange:k=>c({displayType:k?"modified":"date"}),checked:o==="modified",help:m("Only shows if the post has been modified")})})]})}),a.jsx("div",{...l,children:y})]})}function Nin(e){return/(?:^|[^\\])[aAgh]/.test(e)}const Bin={attributes:{textAlign:{type:"string"},format:{type:"string"},isLink:{type:"boolean",default:!1}},supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Lin=[Bin],Pin=[{name:"post-date-modified",title:m("Modified Date"),description:m("Display a post's last updated date."),attributes:{displayType:"modified"},scope:["block","inserter"],isActive:e=>e.displayType==="modified",icon:VP}],AD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-date",title:"Date",category:"theme",description:"Display the publish date for an entry such as a post or page.",textdomain:"default",attributes:{textAlign:{type:"string"},format:{type:"string"},isLink:{type:"boolean",default:!1,role:"content"},displayType:{type:"string",default:"date"}},usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}}},{name:txe}=AD,nxe={icon:VP,edit:Win,deprecated:Lin,variations:Pin},jin=()=>it({name:txe,metadata:AD,settings:nxe}),Iin=Object.freeze(Object.defineProperty({__proto__:null,init:jin,metadata:AD,name:txe,settings:nxe},Symbol.toStringTag,{value:"Module"})),Ooe="…";function Din({attributes:{textAlign:e,moreText:t,showMoreOnNewLine:n,excerptLength:o},setAttributes:r,isSelected:s,context:{postId:i,postType:c,queryId:l}}){const u=Number.isFinite(l),d=$ye("postType",c,i),[p,f,{rendered:b,protected:h}={}]=Ao("postType",c,"excerpt",i),g=Qo(),z=G(E=>c==="page"?!0:!!E(Me).getPostType(c)?.supports?.excerpt,[c]),A=d&&!u&&z,_=Be({className:oe({[`has-text-align-${e}`]:e})}),v=We("words","Word count type. Do not translate!"),M=x.useMemo(()=>{if(!b)return"";const E=new window.DOMParser().parseFromString(b,"text/html");return E.body.textContent||E.body.innerText||""},[b]);if(!c||!i)return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:e,onChange:E=>r({textAlign:E})})}),a.jsx("div",{..._,children:a.jsx("p",{children:m("This block will display the excerpt.")})})]});if(h&&!d)return a.jsx("div",{..._,children:a.jsx(Er,{children:m("The content is currently protected and does not have the available excerpt.")})});const y=a.jsx(Ie,{identifier:"moreText",className:"wp-block-post-excerpt__more-link",tagName:"a","aria-label":m("“Read more” link text"),placeholder:m('Add "read more" link text'),value:t,onChange:E=>r({moreText:E}),withoutInteractiveFormatting:!0}),k=oe("wp-block-post-excerpt__excerpt",{"is-inline":!n}),S=(p||M).trim();let C="";if(v==="words")C=S.split(" ",o).join(" ");else if(v==="characters_excluding_spaces"){const E=S.split("",o).join(""),B=E.length-E.replaceAll(" ","").length;C=S.split("",o+B).join("")}else v==="characters_including_spaces"&&(C=S.split("",o).join(""));const R=C!==S,T=A?a.jsx(Ie,{className:k,"aria-label":m("Excerpt text"),value:s?S:(R?C+Ooe:S)||m("No excerpt found"),onChange:f,tagName:"p"}):a.jsx("p",{className:k,children:R?C+Ooe:S||m("No excerpt found")});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:e,onChange:E=>r({textAlign:E})})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{r({showMoreOnNewLine:!0,excerptLength:55})},dropdownMenuProps:g,children:[a.jsx(tt,{hasValue:()=>n!==!0,label:m("Show link on new line"),onDeselect:()=>r({showMoreOnNewLine:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show link on new line"),checked:n,onChange:E=>r({showMoreOnNewLine:E})})}),a.jsx(tt,{hasValue:()=>o!==55,label:m("Max number of words"),onDeselect:()=>r({excerptLength:55}),isShownByDefault:!0,children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Max number of words"),value:o,onChange:E=>{r({excerptLength:E})},min:"10",max:"100"})})]})}),a.jsxs("div",{..._,children:[T,!n&&" ",n?a.jsx("p",{className:"wp-block-post-excerpt__more-text",children:y}):y]})]})}const Fin={from:[{type:"block",blocks:["core/post-content"],transform:()=>Ee("core/post-excerpt")}],to:[{type:"block",blocks:["core/post-content"],transform:()=>Ee("core/post-content")}]},vD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-excerpt",title:"Excerpt",category:"theme",description:"Display the excerpt.",textdomain:"default",attributes:{textAlign:{type:"string"},moreText:{type:"string"},showMoreOnNewLine:{type:"boolean",default:!0},excerptLength:{type:"number",default:55}},usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-post-excerpt-editor",style:"wp-block-post-excerpt"},{name:oxe}=vD,rxe={icon:_Qe,transforms:Fin,edit:Din},$in=()=>it({name:oxe,metadata:vD,settings:rxe}),Vin=Object.freeze(Object.defineProperty({__proto__:null,init:$in,metadata:vD,name:oxe,settings:rxe},Symbol.toStringTag,{value:"Module"})),{ResolutionTool:Hin}=e0(Ln),Uin=a.jsxs(a.Fragment,{children:[a.jsx(Kn,{value:"cover",label:We("Cover","Scale option for Image dimension control")}),a.jsx(Kn,{value:"contain",label:We("Contain","Scale option for Image dimension control")}),a.jsx(Kn,{value:"fill",label:We("Fill","Scale option for Image dimension control")})]}),YT="cover",yoe="full",Xin={cover:m("Image is scaled and cropped to fill the entire space without being distorted."),contain:m("Image is scaled to fill the space without clipping nor distorting."),fill:m("Image will be stretched and distorted to completely fill the space.")},Gin=({clientId:e,attributes:{aspectRatio:t,width:n,height:o,scale:r,sizeSlug:s},setAttributes:i,media:c})=>{const[l,u,d,p]=Un("spacing.units","dimensions.aspectRatios.default","dimensions.aspectRatios.theme","dimensions.defaultAspectRatios"),f=U1({availableUnits:l||["px","%","vw","em","rem"]}),h=G(y=>y(Q).getSettings().imageSizes,[]).filter(({slug:y})=>c?.media_details?.sizes?.[y]?.source_url).map(({name:y,slug:k})=>({value:k,label:y})),g=(y,k)=>{const S=parseFloat(k);isNaN(S)&&k||i({[y]:S<0?"0":k})},z=We("Scale","Image scaling options"),A=o||t&&t!=="auto",_=d?.map(({name:y,ratio:k})=>({label:y,value:k})),v=u?.map(({name:y,ratio:k})=>({label:y,value:k})),M=[{label:We("Original","Aspect ratio option for dimensions control"),value:"auto"},...p?v:[],..._||[]];return a.jsxs(a.Fragment,{children:[a.jsx(tt,{hasValue:()=>!!t,label:m("Aspect ratio"),onDeselect:()=>i({aspectRatio:void 0}),resetAllFilter:()=>({aspectRatio:void 0}),isShownByDefault:!0,panelId:e,children:a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Aspect ratio"),value:t,options:M,onChange:y=>i({aspectRatio:y})})}),a.jsx(tt,{className:"single-column",hasValue:()=>!!o,label:m("Height"),onDeselect:()=>i({height:void 0}),resetAllFilter:()=>({height:void 0}),isShownByDefault:!0,panelId:e,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Height"),labelPosition:"top",value:o||"",min:0,onChange:y=>g("height",y),units:f})}),a.jsx(tt,{className:"single-column",hasValue:()=>!!n,label:m("Width"),onDeselect:()=>i({width:void 0}),resetAllFilter:()=>({width:void 0}),isShownByDefault:!0,panelId:e,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Width"),labelPosition:"top",value:n||"",min:0,onChange:y=>g("width",y),units:f})}),A&&a.jsx(tt,{hasValue:()=>!!r&&r!==YT,label:z,onDeselect:()=>i({scale:YT}),resetAllFilter:()=>({scale:YT}),isShownByDefault:!0,panelId:e,children:a.jsx(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:z,value:r,help:Xin[r],onChange:y=>i({scale:y}),isBlock:!0,children:Uin})}),!!h.length&&a.jsx(Hin,{panelId:e,value:s,defaultValue:yoe,options:h,onChange:y=>i({sizeSlug:y}),isShownByDefault:!1,resetAllFilter:()=>({sizeSlug:yoe})})]})},Kin=({clientId:e,attributes:t,setAttributes:n,overlayColor:o,setOverlayColor:r})=>{const{dimRatio:s}=t,{gradientValue:i,setGradient:c}=g_(),l=ub();return l.hasColorsOrGradients?a.jsxs(a.Fragment,{children:[a.jsx(ek,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:o.color,gradientValue:i,label:m("Overlay"),onColorChange:r,onGradientChange:c,isShownByDefault:!0,resetAllFilter:()=>({overlayColor:void 0,customOverlayColor:void 0,gradient:void 0,customGradient:void 0}),clearable:!0}],panelId:e,...l}),a.jsx(tt,{hasValue:()=>s!==void 0,label:m("Overlay opacity"),onDeselect:()=>n({dimRatio:0}),resetAllFilter:()=>({dimRatio:0}),isShownByDefault:!0,panelId:e,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Overlay opacity"),value:s,onChange:u=>n({dimRatio:u}),min:0,max:100,step:10,required:!0,__next40pxDefaultSize:!0})})]}):null},Yin=Co([AO({overlayColor:"background-color"})])(Kin);function Zin(e){return e===void 0?null:"has-background-dim-"+10*Math.round(e/10)}const Qin=({attributes:e,overlayColor:t})=>{const{dimRatio:n}=e,{gradientClass:o,gradientValue:r}=g_(),s=ub(),i=cu(e),c={backgroundColor:t.color,backgroundImage:r,...i.style};return!s.hasColorsOrGradients||!n?null:a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-post-featured-image__overlay",Zin(n),{[t.class]:t.class,"has-background-dim":n!==void 0,"has-background-gradient":r,[o]:o},i.className),style:c})},Aoe=Co([AO({overlayColor:"background-color"})])(Qin),voe=["image"];function Jin(e,t){return e?.media_details?.sizes?.[t]?.source_url||e?.source_url}const xoe={onClick:e=>e.preventDefault(),"aria-disabled":!0};function ean({clientId:e,attributes:t,setAttributes:n,context:{postId:o,postType:r,queryId:s}}){const i=Number.isFinite(s),{isLink:c,aspectRatio:l,height:u,width:d,scale:p,sizeSlug:f,rel:b,linkTarget:h,useFirstImageFromPost:g}=t,[z,A]=x.useState(),[_,v]=Ao("postType",r,"featured_media",o),[M]=Ao("postType",r,"content",o),y=x.useMemo(()=>{if(_)return _;if(!g)return;const te=/<!--\s+wp:(?:core\/)?image\s+(?<attrs>{(?:(?:[^}]+|}+(?=})|(?!}\s+\/?-->).)*)?}\s+)?-->/.exec(M);return te?.groups?.attrs&&JSON.parse(te.groups.attrs)?.id},[_,g,M]),{media:k,postType:S,postPermalink:C}=G(te=>{const{getMedia:J,getPostType:ue,getEditedEntityRecord:ce}=te(Me);return{media:y&&J(y,{context:"view"}),postType:r&&ue(r),postPermalink:ce("postType",r,o)?.link}},[y,r,o]),R=Jin(k,f),T=Be({style:{width:d,height:u,aspectRatio:l},className:oe({"is-transient":z})}),E=cu(t),B=db(t),N=Jr(),j=te=>a.jsx(vo,{className:oe("block-editor-media-placeholder",E.className),withIllustration:!0,style:{height:!!l&&"100%",width:!!l&&"100%",...E.style,...B.style},children:te}),I=te=>{te?.id&&v(te.id),te?.url&&Nr(te.url)&&A(te.url)};x.useEffect(()=>{R&&z&&A()},[R,z]);const{createErrorNotice:P}=Oe(mt),$=te=>{P(te,{type:"snackbar"}),A()},F=Qo(),X=N==="default"&&a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"color",children:a.jsx(Yin,{attributes:t,setAttributes:n,clientId:e})}),a.jsx(et,{group:"dimensions",children:a.jsx(Gin,{clientId:e,attributes:t,setAttributes:n,media:k})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({isLink:!1,linkTarget:"_self",rel:""})},dropdownMenuProps:F,children:[a.jsx(tt,{label:S?.labels.singular_name?xe(m("Link to %s"),S.labels.singular_name):m("Link to post"),isShownByDefault:!0,hasValue:()=>!!c,onDeselect:()=>n({isLink:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:S?.labels.singular_name?xe(m("Link to %s"),S.labels.singular_name):m("Link to post"),onChange:()=>n({isLink:!c}),checked:c})}),c&&a.jsx(tt,{label:m("Open in new tab"),isShownByDefault:!0,hasValue:()=>h!=="_self",onDeselect:()=>n({linkTarget:"_self"}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:te=>n({linkTarget:te?"_blank":"_self"}),checked:h==="_blank"})}),c&&a.jsx(tt,{label:m("Link rel"),isShownByDefault:!0,hasValue:()=>!!b,onDeselect:()=>n({rel:""}),children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:b,onChange:te=>n({rel:te})})})]})})]});let Z;if(!y&&(i||!o))return a.jsxs(a.Fragment,{children:[X,a.jsxs("div",{...T,children:[c?a.jsx("a",{href:C,target:h,...xoe,children:j()}):j(),a.jsx(Aoe,{attributes:t,setAttributes:n,clientId:e})]})]});const V=m("Add a featured image"),ee={...E.style,...B.style,height:l?"100%":u,width:!!l&&"100%",objectFit:!!(u||l)&&p};return!y&&!z?Z=a.jsx(au,{onSelect:I,accept:"image/*",allowedTypes:voe,onError:$,placeholder:j,mediaLibraryButton:({open:te})=>a.jsx(Ce,{__next40pxDefaultSize:!0,icon:cm,variant:"primary",label:V,showTooltip:!0,tooltipPosition:"top center",onClick:()=>{te()}})}):Z=!k&&!z?j():a.jsxs(a.Fragment,{children:[a.jsx("img",{className:E.className,src:z||R,alt:k&&k?.alt_text?xe(m("Featured image: %s"),k.alt_text):m("Featured image"),style:ee}),z&&a.jsx(Xn,{})]}),a.jsxs(a.Fragment,{children:[!z&&X,!!k&&!i&&a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:y,mediaURL:R,allowedTypes:voe,accept:"image/*",onSelect:I,onError:$,onReset:()=>v(0)})}),a.jsxs("figure",{...T,children:[c?a.jsx("a",{href:C,target:h,...xoe,children:Z}):Z,a.jsx(Aoe,{attributes:t,setAttributes:n,clientId:e})]})]})}const xD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-featured-image",title:"Featured Image",category:"theme",description:"Display a post's featured image.",textdomain:"default",attributes:{isLink:{type:"boolean",default:!1,role:"content"},aspectRatio:{type:"string"},width:{type:"string"},height:{type:"string"},scale:{type:"string",default:"cover"},sizeSlug:{type:"string"},rel:{type:"string",attribute:"rel",default:"",role:"content"},linkTarget:{type:"string",default:"_self",role:"content"},overlayColor:{type:"string"},customOverlayColor:{type:"string"},dimRatio:{type:"number",default:0},gradient:{type:"string"},customGradient:{type:"string"},useFirstImageFromPost:{type:"boolean",default:!1}},usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{align:["left","right","center","wide","full"],color:{text:!1,background:!1},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}},filter:{duotone:!0},shadow:{__experimentalSkipSerialization:!0},html:!1,spacing:{margin:!0,padding:!0},interactivity:{clientNavigation:!0}},selectors:{border:".wp-block-post-featured-image img, .wp-block-post-featured-image .block-editor-media-placeholder, .wp-block-post-featured-image .wp-block-post-featured-image__overlay",shadow:".wp-block-post-featured-image img, .wp-block-post-featured-image .components-placeholder",filter:{duotone:".wp-block-post-featured-image img, .wp-block-post-featured-image .wp-block-post-featured-image__placeholder, .wp-block-post-featured-image .components-placeholder__illustration, .wp-block-post-featured-image .components-placeholder::before"}},editorStyle:"wp-block-post-featured-image-editor",style:"wp-block-post-featured-image"},{name:sxe}=xD,ixe={icon:kde,edit:ean},tan=()=>it({name:sxe,metadata:xD,settings:ixe}),nan=Object.freeze(Object.defineProperty({__proto__:null,init:tan,metadata:xD,name:sxe,settings:ixe},Symbol.toStringTag,{value:"Module"}));function oan({context:{postType:e},attributes:{type:t,label:n,showTitle:o,textAlign:r,linkLabel:s,arrow:i,taxonomy:c},setAttributes:l}){const u=t==="next";let d=m(u?"Next":"Previous");const f={none:"",arrow:u?"→":"←",chevron:u?"»":"«"}[i];o&&(d=m(u?"Next: ":"Previous: "));const b=m(u?"Next post":"Previous post"),h=Be({className:oe({[`has-text-align-${r}`]:r})}),g=G(A=>{const{getTaxonomies:_}=A(Me);return _({type:e,per_page:-1})},[e]),z=()=>{const A={label:m("Unfiltered"),value:""},_=(g??[]).filter(({visibility:v})=>!!v?.publicly_queryable).map(v=>({value:v.slug,label:v.name}));return[A,..._]};return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display the title as a link"),help:m("If you have entered a custom label, it will be prepended before the title."),checked:!!o,onChange:()=>l({showTitle:!o})}),o&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Include the label as part of the link"),checked:!!s,onChange:()=>l({linkLabel:!s})}),a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Arrow"),value:i,onChange:A=>{l({arrow:A})},help:m("A decorative arrow for the next and previous link."),isBlock:!0,children:[a.jsx(Kn,{value:"none",label:We("None","Arrow option for Next/Previous link")}),a.jsx(Kn,{value:"arrow",label:We("Arrow","Arrow option for Next/Previous link")}),a.jsx(Kn,{value:"chevron",label:We("Chevron","Arrow option for Next/Previous link")})]})]})}),a.jsx(et,{group:"advanced",children:a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Filter by taxonomy"),value:c,options:z(),onChange:A=>l({taxonomy:A}),help:m("Only link to posts that have the same taxonomy terms as the current post. For example the same tags or categories.")})}),a.jsx(bt,{children:a.jsx(jz,{value:r,onChange:A=>{l({textAlign:A})}})}),a.jsxs("div",{...h,children:[!u&&f&&a.jsx("span",{className:`wp-block-post-navigation-link__arrow-previous is-arrow-${i}`,children:f}),a.jsx(Ie,{tagName:"a",identifier:"label","aria-label":b,placeholder:d,value:n,allowedFormats:["core/bold","core/italic"],onChange:A=>l({label:A})}),o&&a.jsx("a",{href:"#post-navigation-pseudo-link",onClick:A=>A.preventDefault(),children:m("An example title")}),u&&f&&a.jsx("span",{className:`wp-block-post-navigation-link__arrow-next is-arrow-${i}`,"aria-hidden":!0,children:f})]})]})}const axe=[{isDefault:!0,name:"post-next",title:m("Next post"),description:m("Displays the post link that follows the current post."),icon:Cde,attributes:{type:"next"},scope:["inserter","transform"],example:{attributes:{label:m("Next post"),arrow:"arrow"}}},{name:"post-previous",title:m("Previous post"),description:m("Displays the post link that precedes the current post."),icon:Sde,attributes:{type:"previous"},scope:["inserter","transform"],example:{attributes:{label:m("Previous post"),arrow:"arrow"}}}];axe.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.type===n.type)});const wD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-navigation-link",title:"Post Navigation Link",category:"theme",description:"Displays the next or previous post link that is adjacent to the current post.",textdomain:"default",attributes:{textAlign:{type:"string"},type:{type:"string",default:"next"},label:{type:"string"},showTitle:{type:"boolean",default:!1},linkLabel:{type:"boolean",default:!1},arrow:{type:"string",default:"none"},taxonomy:{type:"string",default:""}},usesContext:["postType"],supports:{reusable:!1,html:!1,color:{link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-post-navigation-link"},{name:cxe}=wD,lxe={edit:oan,variations:axe,example:{attributes:{label:m("Next post"),arrow:"arrow"}}},ran=()=>it({name:cxe,metadata:wD,settings:lxe}),san=Object.freeze(Object.defineProperty({__proto__:null,init:ran,metadata:wD,name:cxe,settings:lxe},Symbol.toStringTag,{value:"Module"})),ian=[["core/post-title"],["core/post-date"],["core/post-excerpt"]];function aan({classList:e}){const t=Nt({className:oe("wp-block-post",e)},{template:ian,__unstableDisableLayoutClassNames:!0});return a.jsx("li",{...t})}function can({blocks:e,blockContextId:t,classList:n,isHidden:o,setActiveBlockContextId:r}){const s=H7({blocks:e,props:{className:oe("wp-block-post",n)}}),i=()=>{r(t)},c={display:o?"none":void 0};return a.jsx("li",{...s,tabIndex:0,role:"button",onClick:i,onKeyPress:i,style:c})}const lan=x.memo(can);function uan({setAttributes:e,clientId:t,context:{query:{perPage:n,offset:o=0,postType:r,order:s,orderBy:i,author:c,search:l,exclude:u,sticky:d,inherit:p,taxQuery:f,parents:b,pages:h,format:g,...z}={},templateSlug:A,previewPostType:_},attributes:{layout:v},__unstableLayoutClassNames:M}){const{type:y,columnCount:k=3}=v||{},[S,C]=x.useState(),{posts:R,blocks:T}=G(I=>{const{getEntityRecords:P,getTaxonomies:$}=I(Me),{getBlocks:F}=I(Q),X=p&&A?.startsWith("category-")&&P("taxonomy","category",{context:"view",per_page:1,_fields:["id"],slug:A.replace("category-","")}),Z=p&&A?.startsWith("tag-")&&P("taxonomy","post_tag",{context:"view",per_page:1,_fields:["id"],slug:A.replace("tag-","")}),V={offset:o||0,order:s,orderby:i};if(f&&!p){const te=$({type:r,per_page:-1,context:"view"}),J=Object.entries(f).reduce((ue,[ce,me])=>{const de=te?.find(({slug:Ae})=>Ae===ce);return de?.rest_base&&(ue[de?.rest_base]=me),ue},{});Object.keys(J).length&&Object.assign(V,J)}return n&&(V.per_page=n),c&&(V.author=c),l&&(V.search=l),u?.length&&(V.exclude=u),b?.length&&(V.parent=b),g?.length&&(V.format=g),d&&(V.sticky=d==="only"),p&&(A?.startsWith("archive-")?(V.postType=A.replace("archive-",""),r=V.postType):X?V.categories=X[0]?.id:Z?V.tags=Z[0]?.id:A?.startsWith("taxonomy-post_format")&&(V.format=A.replace("taxonomy-post_format-post-format-",""))),{posts:P("postType",_||r,{...V,...z}),blocks:F(t)}},[n,o,s,i,t,c,l,r,u,d,p,A,f,b,g,z,_]),E=x.useMemo(()=>R?.map(I=>{var P;return{postType:I.type,postId:I.id,classList:(P=I.class_list)!==null&&P!==void 0?P:""}}),[R]),B=Be({className:oe(M,{[`columns-${k}`]:y==="grid"&&k})});if(!R)return a.jsx("p",{...B,children:a.jsx(Xn,{})});if(!R.length)return a.jsxs("p",{...B,children:[" ",m("No results found.")]});const N=I=>e({layout:{...v,...I}}),j=[{icon:Iw,title:We("List view","Post template block display setting"),onClick:()=>N({type:"default"}),isActive:y==="default"||y==="constrained"},{icon:X3,title:We("Grid view","Post template block display setting"),onClick:()=>N({type:"grid",columnCount:k}),isActive:y==="grid"}];return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{controls:j})}),a.jsx("ul",{...B,children:E&&E.map(I=>a.jsxs(uO,{value:I,children:[I.postId===(S||E[0]?.postId)?a.jsx(aan,{classList:I.classList}):null,a.jsx(lan,{blocks:T,blockContextId:I.postId,classList:I.classList,setActiveBlockContextId:C,isHidden:I.postId===(S||E[0]?.postId)})]},I.postId))})]})}function dan(){return a.jsx(Ht.Content,{})}const _D={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-template",title:"Post Template",category:"theme",ancestor:["core/query"],description:"Contains the block elements used to render a post, like the title, date, featured image, content or excerpt, and more.",textdomain:"default",usesContext:["queryId","query","displayLayout","templateSlug","previewPostType","enhancedPagination","postType"],supports:{reusable:!1,html:!1,align:["wide","full"],layout:!0,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{margin:!0,padding:!0,blockGap:{__experimentalDefault:"1.25em"},__experimentalDefaultControls:{blockGap:!0,padding:!1,margin:!1}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},style:"wp-block-post-template",editorStyle:"wp-block-post-template-editor"},{name:uxe}=_D,dxe={icon:ou,edit:uan,save:dan},pan=()=>it({name:uxe,metadata:_D,settings:dxe}),fan=Object.freeze(Object.defineProperty({__proto__:null,init:pan,metadata:_D,name:uxe,settings:dxe},Symbol.toStringTag,{value:"Module"})),ban=[];function han({postId:e,term:t}){const{slug:n}=t;return G(o=>{if(!t?.visibility?.publicly_queryable)return{postTerms:ban,isLoading:!1,hasPostTerms:!1};const{getEntityRecords:s,isResolving:i}=o(Me),c=["taxonomy",n,{post:e,per_page:-1,context:"view"}],l=s(...c);return{postTerms:l,isLoading:i("getEntityRecords",c),hasPostTerms:!!l?.length}},[e,t?.visibility?.publicly_queryable,n])}const woe=["core/bold","core/image","core/italic","core/link","core/strikethrough","core/text-color"];function man({attributes:e,clientId:t,context:n,isSelected:o,setAttributes:r,insertBlocksAfter:s}){const{term:i,textAlign:c,separator:l,prefix:u,suffix:d}=e,{postId:p,postType:f}=n,b=G(M=>{if(!i)return{};const{getTaxonomy:y}=M(Me),k=y(i);return k?.visibility?.publicly_queryable?k:{}},[i]),{postTerms:h,hasPostTerms:g,isLoading:z}=han({postId:p,term:b}),A=p&&f,_=Ii(t),v=Be({className:oe({[`has-text-align-${c}`]:c,[`taxonomy-${i}`]:i})});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:c,onChange:M=>{r({textAlign:M})}})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,autoComplete:"off",label:m("Separator"),value:l||"",onChange:M=>{r({separator:M})},help:m("Enter character(s) used to separate terms.")})}),a.jsxs("div",{...v,children:[z&&A&&a.jsx(Xn,{}),!z&&(o||u)&&a.jsx(Ie,{identifier:"prefix",allowedFormats:woe,className:"wp-block-post-terms__prefix","aria-label":m("Prefix"),placeholder:m("Prefix")+" ",value:u,onChange:M=>r({prefix:M}),tagName:"span"}),(!A||!i)&&a.jsx("span",{children:_.title}),A&&!z&&g&&h.map(M=>a.jsx("a",{href:M.link,onClick:y=>y.preventDefault(),children:Lt(M.name)},M.id)).reduce((M,y)=>a.jsxs(a.Fragment,{children:[M,a.jsx("span",{className:"wp-block-post-terms__separator",children:l||" "}),y]})),A&&!z&&!g&&(b?.labels?.no_terms||m("Term items not found.")),!z&&(o||d)&&a.jsx(Ie,{identifier:"suffix",allowedFormats:woe,className:"wp-block-post-terms__suffix","aria-label":m("Suffix"),placeholder:" "+m("Suffix"),value:d,onChange:M=>r({suffix:M}),tagName:"span",__unstableOnSplitAtEnd:()=>s(Ee(Mr()))})]})]})}const gan={category:$P,post_tag:kQe};function Man(e,t){if(t!=="core/post-terms")return e;const n=e.variations.map(o=>{var r;return{...o,icon:(r=gan[o.name])!==null&&r!==void 0?r:$P}});return{...e,variations:n}}const kD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-terms",title:"Post Terms",category:"theme",description:"Post terms.",textdomain:"default",attributes:{term:{type:"string"},textAlign:{type:"string"},separator:{type:"string",default:", "},prefix:{type:"string",default:""},suffix:{type:"string",default:""}},usesContext:["postId","postType"],example:{viewportWidth:350},supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-terms"},{name:pxe}=kD,fxe={icon:$P,edit:man},zan=()=>(Bn("blocks.registerBlockType","core/template-part",Man),it({name:pxe,metadata:kD,settings:fxe})),Oan=Object.freeze(Object.defineProperty({__proto__:null,init:zan,metadata:kD,name:pxe,settings:fxe},Symbol.toStringTag,{value:"Module"})),yan=189;function Aan({attributes:e,setAttributes:t,context:n}){const{textAlign:o}=e,{postId:r,postType:s}=n,[i]=Ao("postType",s,"content",r),[c]=Ni("postType",s,{id:r}),l=x.useMemo(()=>{let d;i instanceof Function?d=i({blocks:c}):c?d=Jd(c):d=i;const p=We("words","Word count type. Do not translate!"),f=Math.max(1,Math.round(DO(d||"",p)/yan));return xe(Dn("%s minute","%s minutes",f),f)},[i,c]),u=Be({className:oe({[`has-text-align-${o}`]:o})});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:d=>{t({textAlign:d})}})}),a.jsx("div",{...u,children:l})]})}const van=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16.5c-4.1 0-7.5-3.4-7.5-7.5S7.9 4.5 12 4.5s7.5 3.4 7.5 7.5-3.4 7.5-7.5 7.5zM12 7l-1 5c0 .3.2.6.4.8l4.2 2.8-2.7-4.1L12 7z"})}),SD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/post-time-to-read",title:"Time To Read",category:"theme",description:"Show minutes required to finish reading the post.",textdomain:"default",usesContext:["postId","postType"],attributes:{textAlign:{type:"string"}},supports:{color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},html:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}}},{name:bxe}=SD,hxe={icon:van,edit:Aan,example:{}},xan=()=>it({name:bxe,metadata:SD,settings:hxe}),wan=Object.freeze(Object.defineProperty({__proto__:null,init:xan,metadata:SD,name:bxe,settings:hxe},Symbol.toStringTag,{value:"Module"}));function _an({attributes:{level:e,levelOptions:t,textAlign:n,isLink:o,rel:r,linkTarget:s},setAttributes:i,context:{postType:c,postId:l,queryId:u},insertBlocksAfter:d}){const p=e===0?"p":`h${e}`,f=Number.isFinite(u),b=G(k=>f?!1:k(Me).canUser("update",{kind:"postType",name:c,id:l}),[f,c,l]),[h="",g,z]=Ao("postType",c,"title",l),[A]=Ao("postType",c,"link",l),_=()=>{d(Ee(Mr()))},v=Be({className:oe({[`has-text-align-${n}`]:n})}),M=Jr();let y=a.jsx(p,{...v,children:m("Title")});return c&&l&&(y=b?a.jsx(Gd,{tagName:p,placeholder:m("No title"),value:h,onChange:g,__experimentalVersion:2,__unstableOnSplitAtEnd:_,...v}):a.jsx(p,{...v,dangerouslySetInnerHTML:{__html:z?.rendered}})),o&&c&&l&&(y=b?a.jsx(p,{...v,children:a.jsx(Gd,{tagName:"a",href:A,target:s,rel:r,placeholder:h.length?null:m("No title"),value:h,onChange:g,__experimentalVersion:2,__unstableOnSplitAtEnd:_})}):a.jsx(p,{...v,children:a.jsx("a",{href:A,target:s,rel:r,onClick:k=>k.preventDefault(),dangerouslySetInnerHTML:{__html:z?.rendered}})})),a.jsxs(a.Fragment,{children:[M==="default"&&a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:e,options:t,onChange:k=>i({level:k})}),a.jsx(nr,{value:n,onChange:k=>{i({textAlign:k})}})]}),a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Make title a link"),onChange:()=>i({isLink:!o}),checked:o}),o&&a.jsxs(a.Fragment,{children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:k=>i({linkTarget:k?"_blank":"_self"}),checked:s==="_blank"}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:r,onChange:k=>i({rel:k})})]})]})})]}),y]})}const kan={attributes:{textAlign:{type:"string"},level:{type:"number",default:2},isLink:{type:"boolean",default:!1},rel:{type:"string",attribute:"rel",default:""},linkTarget:{type:"string",default:"_self"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},San=[kan],CD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-title",title:"Title",category:"theme",description:"Displays the title of a post, page, or any other content-type.",textdomain:"default",usesContext:["postId","postType","queryId"],attributes:{textAlign:{type:"string"},level:{type:"number",default:2},levelOptions:{type:"array"},isLink:{type:"boolean",default:!1,role:"content"},rel:{type:"string",attribute:"rel",default:"",role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},example:{viewportWidth:350},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-title"},{name:mxe}=CD,gxe={icon:yz,edit:_an,deprecated:San},Can=()=>it({name:mxe,metadata:CD,settings:gxe}),qan=Object.freeze(Object.defineProperty({__proto__:null,init:Can,metadata:CD,name:mxe,settings:gxe},Symbol.toStringTag,{value:"Module"}));function Ran({attributes:e,mergeBlocks:t,setAttributes:n,onRemove:o,insertBlocksAfter:r,style:s}){const{content:i}=e,c=Be({style:s});return a.jsx(Ie,{tagName:"pre",identifier:"content",preserveWhiteSpace:!0,value:i,onChange:l=>{n({content:l})},onRemove:o,"aria-label":m("Preformatted text"),placeholder:m("Write preformatted text…"),onMerge:t,...c,__unstablePastePlainText:!0,__unstableOnSplitAtDoubleLineEnd:()=>r(Ee(Mr()))})}function Tan({attributes:e}){const{content:t}=e;return a.jsx("pre",{...Be.save(),children:a.jsx(Ie.Content,{value:t})})}const Ean={from:[{type:"block",blocks:["core/code","core/paragraph"],transform:({content:e,anchor:t})=>Ee("core/preformatted",{content:e,anchor:t})},{type:"raw",isMatch:e=>e.nodeName==="PRE"&&!(e.children.length===1&&e.firstChild.nodeName==="CODE"),schema:({phrasingContentSchema:e})=>({pre:{children:e}})}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>Ee("core/paragraph",e)},{type:"block",blocks:["core/code"],transform:e=>Ee("core/code",e)}]},qD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/preformatted",title:"Preformatted",category:"text",description:"Add text that respects your spacing and tabs, and also allows styling.",textdomain:"default",attributes:{content:{type:"rich-text",source:"rich-text",selector:"pre",__unstablePreserveWhiteSpace:!0,role:"content"}},supports:{anchor:!0,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-preformatted"},{name:Mxe}=qD,zxe={icon:SQe,example:{attributes:{content:m(`EXT. XANADU - FAINT DAWN - 1940 (MINIATURE) +`;function srn({content:e,isSelected:t}){const n=G(r=>r(Q).getSettings().styles,[]),o=x.useMemo(()=>[rrn,...Vx((n??[]).filter(r=>r.css))],[n]);return a.jsxs(a.Fragment,{children:[a.jsx(b2e,{html:e,styles:o,title:m("Custom HTML Preview"),tabIndex:-1}),!t&&a.jsx("div",{className:"block-library-html__preview-overlay"})]})}function Cve({attributes:e,setAttributes:t,isSelected:n}){const[o,r]=x.useState(),s=x.useContext(I1.Context),i=vt(Cve,"html-edit-desc"),c=G(p=>p(Q).getSettings().isPreviewMode,[]);function l(){r(!0)}function u(){r(!1)}const d=Be({className:"block-library-html__edit","aria-describedby":o?i:void 0});return a.jsxs("div",{...d,children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[a.jsx(Vt,{isPressed:!o,onClick:u,children:"HTML"}),a.jsx(Vt,{isPressed:o,onClick:l,children:m("Preview")})]})}),o||c||s?a.jsxs(a.Fragment,{children:[a.jsx(srn,{content:e.content,isSelected:n}),a.jsx(qn,{id:i,children:m("HTML preview is not yet fully accessible. Please switch screen reader to virtualized mode to navigate the below iFrame.")})]}):a.jsx(Gd,{value:e.content,onChange:p=>t({content:p}),placeholder:m("Write HTML…"),"aria-label":m("HTML")})]})}function irn({attributes:e}){return a.jsx(i0,{children:e.content})}const arn={from:[{type:"block",blocks:["core/code"],transform:({content:e})=>Ee("core/html",{content:eo({html:e}).text})}]},V9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/html",title:"Custom HTML",category:"widgets",description:"Add custom HTML code and preview it as you edit.",keywords:["embed"],textdomain:"default",attributes:{content:{type:"string",source:"raw"}},supports:{customClassName:!1,className:!1,html:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-html-editor"},{name:qve}=V9,Rve={icon:tQe,example:{attributes:{content:"<marquee>"+m("Welcome to the wonderful world of blocks…")+"</marquee>"}},edit:Cve,save:irn,transforms:arn},crn=()=>it({name:qve,metadata:V9,settings:Rve}),lrn=Object.freeze(Object.defineProperty({__proto__:null,init:crn,metadata:V9,name:qve,settings:Rve},Symbol.toStringTag,{value:"Module"})),urn={attributes:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"array",source:"children",selector:"figcaption"},href:{type:"string",source:"attribute",selector:"a",attribute:"href"},id:{type:"number"},align:{type:"string"},width:{type:"number"},height:{type:"number"}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,width:i,height:c}=e,l=i||c?{width:i,height:c}:{},u=a.jsx("img",{src:t,alt:n,...l});let d={};return i?d={width:i}:(r==="left"||r==="right")&&(d={maxWidth:"50%"}),a.jsxs("figure",{className:r?`align${r}`:null,style:d,children:[s?a.jsx("a",{href:s,children:u}):u,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]})}},drn={attributes:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"array",source:"children",selector:"figcaption"},href:{type:"string",source:"attribute",selector:"a",attribute:"href"},id:{type:"number"},align:{type:"string"},width:{type:"number"},height:{type:"number"}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,width:i,height:c,id:l}=e,u=a.jsx("img",{src:t,alt:n,className:l?`wp-image-${l}`:null,width:i,height:c});return a.jsxs("figure",{className:r?`align${r}`:null,children:[s?a.jsx("a",{href:s,children:u}):u,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]})}},prn={attributes:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"array",source:"children",selector:"figcaption"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},id:{type:"number"},align:{type:"string"},width:{type:"number"},height:{type:"number"},linkDestination:{type:"string",default:"none"}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,width:i,height:c,id:l}=e,u=oe({[`align${r}`]:r,"is-resized":i||c}),d=a.jsx("img",{src:t,alt:n,className:l?`wp-image-${l}`:null,width:i,height:c});return a.jsxs("figure",{className:u,children:[s?a.jsx("a",{href:s,children:d}):d,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]})}},frn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"string",source:"html",selector:"figcaption"},title:{type:"string",source:"attribute",selector:"img",attribute:"title"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number"},width:{type:"number"},height:{type:"number"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,id:d,linkTarget:p,sizeSlug:f,title:b}=e,h=i||void 0,g=oe({[`align${r}`]:r,[`size-${f}`]:f,"is-resized":l||u}),z=a.jsx("img",{src:t,alt:n,className:d?`wp-image-${d}`:null,width:l,height:u,title:b}),A=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:p,rel:h,children:z}):z,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]});return r==="left"||r==="right"||r==="center"?a.jsx("div",{...Be.save(),children:a.jsx("figure",{className:g,children:A})}):a.jsx("figure",{...Be.save({className:g}),children:A})}},brn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"string",source:"html",selector:"figcaption"},title:{type:"string",source:"attribute",selector:"img",attribute:"title"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number"},width:{type:"number"},height:{type:"number"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{__experimentalDuotone:"img",text:!1,background:!1},__experimentalBorder:{radius:!0,__experimentalDefaultControls:{radius:!0}},__experimentalStyle:{spacing:{margin:"0 0 1em 0"}}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,id:d,linkTarget:p,sizeSlug:f,title:b}=e,h=i||void 0,g=oe({[`align${r}`]:r,[`size-${f}`]:f,"is-resized":l||u}),z=a.jsx("img",{src:t,alt:n,className:d?`wp-image-${d}`:null,width:l,height:u,title:b}),A=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:p,rel:h,children:z}):z,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:g}),children:A})}},hrn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"string",source:"html",selector:"figcaption",role:"content"},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"number"},height:{type:"number"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}}},migrate(e){const{height:t,width:n}=e;return{...e,width:typeof n=="number"?`${n}px`:n,height:typeof t=="number"?`${t}px`:t}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=oe({[`align${r}`]:r,[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),v=oe(A.className,{[`wp-image-${f}`]:!!f}),M=a.jsx("img",{src:t,alt:n,className:v||void 0,style:{...A.style,aspectRatio:d,objectFit:p},width:l,height:u,title:g}),y=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:M}):M,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:_}),children:y})}},mrn={attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"string",source:"html",selector:"figcaption",role:"content"},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"number"},height:{type:"number"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}}},migrate({width:e,height:t,...n}){return{...n,width:`${e}px`,height:`${t}px`}},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=oe({[`align${r}`]:r,[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),v=oe(A.className,{[`wp-image-${f}`]:!!f}),M=a.jsx("img",{src:t,alt:n,className:v||void 0,style:{...A.style,aspectRatio:d,objectFit:p,width:l,height:u},width:l,height:u,title:g}),y=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:M}):M,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:_}),children:y})}},grn={attributes:{align:{type:"string"},behaviors:{type:"object"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"string",source:"html",selector:"figcaption",role:"content"},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"string"},height:{type:"string"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}}},migrate({width:e,height:t,...n}){if(!n.behaviors?.lightbox)return n;const{behaviors:{lightbox:{enabled:o}}}=n,r={...n,lightbox:{enabled:o}};return delete r.behaviors,r},isEligible(e){return!!e.behaviors},save({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=oe({[`align${r}`]:r,[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),v=oe(A.className,{[`wp-image-${f}`]:!!f}),M=a.jsx("img",{src:t,alt:n,className:v||void 0,style:{...A.style,aspectRatio:d,objectFit:p,width:l,height:u},title:g}),y=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:M}):M,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:_}),children:y})}},Mrn=[grn,mrn,hrn,brn,frn,prn,drn,urn],{DimensionsTool:Jne,ResolutionTool:zrn}=e0(jn),Orn=[{value:"cover",label:We("Cover","Scale option for dimensions control"),help:m("Image covers the space evenly.")},{value:"contain",label:We("Contain","Scale option for dimensions control"),help:m("Image is contained without distortion.")}],yrn={placement:"bottom-start"},$T=({href:e,children:t})=>e?a.jsx("a",{href:e,onClick:n=>n.preventDefault(),"aria-disabled":!0,style:{pointerEvents:"none",cursor:"default",display:"inline"},children:t}):t;function Arn({attributes:e,setAttributes:t,lockAltControls:n,lockAltControlsMessage:o,lockTitleControls:r,lockTitleControlsMessage:s}){const[i,c]=x.useState(null),[l,u]=x.useState(!1),[d,p]=x.useState(!1);return a.jsxs(a.Fragment,{children:[a.jsx(bs,{ref:c,children:f=>a.jsx(c0,{icon:tu,label:m("More"),toggleProps:{...f,description:m("Displays more controls.")},popoverProps:yrn,children:({onClose:b})=>a.jsxs(a.Fragment,{children:[a.jsx(Ct,{onClick:()=>{u(!0),b()},"aria-haspopup":"dialog",children:We("Alternative text","Alternative text for an image. Block toolbar label, a low character count is preferred.")}),a.jsx(Ct,{onClick:()=>{p(!0),b()},"aria-haspopup":"dialog",children:m("Title text")})]})})}),l&&a.jsx(Io,{placement:"bottom-start",anchor:i,onClose:()=>u(!1),offset:13,variant:"toolbar",children:a.jsx("div",{className:"wp-block-image__toolbar_content_textarea__container",children:a.jsx(Li,{className:"wp-block-image__toolbar_content_textarea",label:m("Alternative text"),value:e.alt||"",onChange:f=>t({alt:f}),disabled:n,help:n?a.jsx(a.Fragment,{children:o}):a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]}),__nextHasNoMarginBottom:!0})})}),d&&a.jsx(Io,{placement:"bottom-start",anchor:i,onClose:()=>p(!1),offset:13,variant:"toolbar",children:a.jsx("div",{className:"wp-block-image__toolbar_content_textarea__container",children:a.jsx(dn,{__next40pxDefaultSize:!0,className:"wp-block-image__toolbar_content_textarea",__nextHasNoMarginBottom:!0,label:m("Title attribute"),value:e.title||"",onChange:f=>t({title:f}),disabled:r,help:r?a.jsx(a.Fragment,{children:s}):a.jsxs(a.Fragment,{children:[m("Describe the role of this image on the page."),a.jsx(hr,{href:"https://www.w3.org/TR/html52/dom.html#the-title-attribute",children:m("(Note: many devices and browsers do not display this text.)")})]})})})})]})}function vrn({temporaryURL:e,attributes:t,setAttributes:n,isSingleSelected:o,insertBlocksAfter:r,onReplace:s,onSelectImage:i,onSelectURL:c,onUploadError:l,context:u,clientId:d,blockEditingMode:p,parentLayoutType:f,maxContentWidth:b}){const{url:h="",alt:g,align:z,id:A,href:_,rel:v,linkClass:M,linkDestination:y,title:k,width:S,height:C,aspectRatio:R,scale:T,linkTarget:E,sizeSlug:B,lightbox:N,metadata:j}=t,I=S?parseInt(S,10):void 0,P=C?parseInt(C,10):void 0,$=x.useRef(),{allowResize:F=!0}=u,{getBlock:X,getSettings:Z}=G(Q),V=G(bn=>A&&o?bn(Me).getMedia(A,{context:"view"}):null,[A,o]),{canInsertCover:ee,imageEditing:te,imageSizes:J,maxWidth:ue}=G(bn=>{const{getBlockRootClientId:vr,canInsertBlockType:T1}=bn(Q),$o=vr(d),ei=Z();return{imageEditing:ei.imageEditing,imageSizes:ei.imageSizes,maxWidth:ei.maxWidth,canInsertCover:T1("core/cover",$o)}},[d]),{replaceBlocks:ce,toggleSelection:me}=Oe(Q),{createErrorNotice:de,createSuccessNotice:Ae}=Oe(mt),ye=Yn("medium"),Ne=["wide","full"].includes(z),[{loadedNaturalWidth:je,loadedNaturalHeight:ie},we]=x.useState({}),[re,pe]=x.useState(!1),[ke,Se]=x.useState(),[se,L]=x.useState(!1),U=p==="default",ne=p==="contentOnly",ve=F&&U&&!Ne&&ye,qe=J.filter(({slug:bn})=>V?.media_details?.sizes?.[bn]?.source_url).map(({name:bn,slug:vr})=>({value:vr,label:bn}));x.useEffect(()=>{if(!Tve(A,h)||!o||!Z().mediaUpload){Se();return}ke||window.fetch(h.includes("?")?h:h+"?").then(bn=>bn.blob()).then(bn=>Se(bn)).catch(()=>{})},[A,h,o,ke]);const{naturalWidth:Pe,naturalHeight:rt}=x.useMemo(()=>({naturalWidth:$.current?.naturalWidth||je||void 0,naturalHeight:$.current?.naturalHeight||ie||void 0}),[je,ie,$.current?.complete]);function qt(){me(!1)}function wt(){me(!0)}function Bt(){L(!0);const bn=pk({attributes:{url:h}});bn!==void 0&&s(bn)}function ae(bn){L(!1),we({loadedNaturalWidth:bn.target?.naturalWidth,loadedNaturalHeight:bn.target?.naturalHeight})}function H(bn){n(bn)}function Y(bn){bn&&!fn?.enabled?n({lightbox:{enabled:!0}}):!bn&&fn?.enabled?n({lightbox:{enabled:!1}}):n({lightbox:void 0})}function fe(){fn?.enabled&&fn?.allowEditing?n({lightbox:{enabled:!1}}):n({lightbox:void 0})}function Re(bn){n({title:bn})}function be(bn){n({alt:bn})}function ze(bn){const vr=V?.media_details?.sizes?.[bn]?.source_url;if(!vr)return null;n({url:vr,sizeSlug:bn})}function nt(){const{mediaUpload:bn}=Z();bn&&bn({filesList:[ke],onFileChange([vr]){i(vr),!Nr(vr.url)&&(Se(),Ae(m("Image uploaded."),{type:"snackbar"}))},allowedTypes:r3,onError(vr){de(vr,{type:"snackbar"})}})}x.useEffect(()=>{o||pe(!1)},[o]);const Mt=A&&Pe&&rt&&te,ot=o&&Mt&&!re&&!ne;function Ue(){ce(d,Kr(X(d),"core/cover"))}const yt=U1({availableUnits:["px"]}),[fn]=Un("lightbox"),Ln=!!N&&N?.enabled!==fn?.enabled||fn?.allowEditing,Mo=!!N?.enabled||!N&&!!fn?.enabled,rr=Qo(),Jo=a.jsx(Jne,{value:{width:S,height:C,scale:T,aspectRatio:R},onChange:({width:bn,height:vr,scale:T1,aspectRatio:$o})=>{n({width:!bn&&vr?"auto":bn,height:vr,scale:T1,aspectRatio:$o})},defaultScale:"cover",defaultAspectRatio:"auto",scaleOptions:Orn,unitsOptions:yt}),To=a.jsx(Jne,{value:{aspectRatio:R},onChange:({aspectRatio:bn})=>{n({aspectRatio:bn,scale:"cover"})},defaultAspectRatio:"auto",tools:["aspectRatio"]}),Br=()=>{n({alt:void 0,width:void 0,height:void 0,scale:void 0,aspectRatio:void 0,lightbox:void 0})},Rt=a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:Br,dropdownMenuProps:rr,children:ve&&(f==="grid"?To:Jo)})}),Qe=j?.bindings?.__default?.source==="core/pattern-overrides",{lockUrlControls:xt=!1,lockHrefControls:Gt=!1,lockAltControls:On=!1,lockAltControlsMessage:$n,lockTitleControls:Jn=!1,lockTitleControlsMessage:pr,lockCaption:O0=!1}=G(bn=>{if(!o)return{};const{url:vr,alt:T1,title:$o}=j?.bindings||{},ei=!!u["pattern/overrides"],I0=vl(vr?.source),mp=vl(T1?.source),gp=vl($o?.source);return{lockUrlControls:!!vr&&!I0?.canUserEditValue?.({select:bn,context:u,args:vr?.args}),lockHrefControls:ei||Qe,lockCaption:ei,lockAltControls:!!T1&&!mp?.canUserEditValue?.({select:bn,context:u,args:T1?.args}),lockAltControlsMessage:mp?.label?xe(m("Connected to %s"),mp.label):m("Connected to dynamic data"),lockTitleControls:!!$o&&!gp?.canUserEditValue?.({select:bn,context:u,args:$o?.args}),lockTitleControlsMessage:gp?.label?xe(m("Connected to %s"),gp.label):m("Connected to dynamic data")}},[Qe,u,o,j?.bindings]),o1=o&&!re&&!Gt&&!xt,yr=o&&ee,Js=o1||ot||yr,ao=o&&!re&&!xt&&a.jsx(bt,{group:ne?"inline":"other",children:a.jsx(Pc,{mediaId:A,mediaURL:h,allowedTypes:r3,accept:"image/*",onSelect:i,onSelectURL:c,onError:l,name:m(h?"Replace":"Add image"),onReset:()=>i(void 0)})}),Ic=a.jsxs(a.Fragment,{children:[Js&&a.jsxs(bt,{group:"block",children:[o1&&a.jsx(u3e,{url:_||"",onChangeUrl:H,linkDestination:y,mediaUrl:V&&V.source_url||h,mediaLink:V&&V.link,linkTarget:E,linkClass:M,rel:v,showLightboxSetting:Ln,lightboxEnabled:Mo,onSetLightbox:Y,resetLightbox:fe}),ot&&a.jsx(Vt,{onClick:()=>pe(!0),icon:tde,label:m("Crop")}),yr&&a.jsx(Vt,{icon:gQe,label:m("Add text over image"),onClick:Ue})]}),o&&ke&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:nt,icon:cm,label:m("Upload to Media Library")})})}),ne&&a.jsx(bt,{group:"block",children:a.jsx(Arn,{attributes:t,setAttributes:n,lockAltControls:On,lockAltControlsMessage:$n,lockTitleControls:Jn,lockTitleControlsMessage:pr})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:Br,dropdownMenuProps:rr,children:[o&&a.jsx(tt,{label:m("Alternative text"),isShownByDefault:!0,hasValue:()=>!!g,onDeselect:()=>n({alt:void 0}),children:a.jsx(Li,{label:m("Alternative text"),value:g||"",onChange:be,readOnly:On,help:On?a.jsx(a.Fragment,{children:$n}):a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]}),__nextHasNoMarginBottom:!0})}),ve&&(f==="grid"?To:Jo),!!qe.length&&a.jsx(zrn,{value:B,onChange:ze,options:qe})]})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Title attribute"),value:k||"",onChange:Re,readOnly:Jn,help:Jn?a.jsx(a.Fragment,{children:pr}):a.jsxs(a.Fragment,{children:[m("Describe the role of this image on the page."),a.jsx(hr,{href:"https://www.w3.org/TR/html52/dom.html#the-title-attribute",children:m("(Note: many devices and browsers do not display this text.)")})]})})})]}),Ui=If(h);let _s;g?_s=g:Ui?_s=xe(m("This image has an empty alt attribute; its file name is %s"),Ui):_s=m("This image has an empty alt attribute");const Xi=au(t),gb=db(t),hp=t.className?.includes("is-style-rounded"),{postType:ZO,postId:QO,queryId:kk}=u,Ar=Number.isFinite(kk),[,Sk]=Ao("postType",ZO,"featured_media",QO);let Ta=e&&se?a.jsx(vo,{className:"wp-block-image__placeholder",withIllustration:!0,children:a.jsx(Xn,{})}):a.jsxs(a.Fragment,{children:[a.jsx("img",{src:e||h,alt:_s,onError:Bt,onLoad:ae,ref:$,className:Xi.className,style:{width:S&&C||R?"100%":void 0,height:S&&C||R?"100%":void 0,objectFit:T,...Xi.style,...gb.style}}),e&&a.jsx(Xn,{})]});if(Mt&&re)Ta=a.jsx($T,{href:_,children:a.jsx(Qze,{id:A,url:h,width:I,height:P,naturalHeight:rt,naturalWidth:Pe,onSaveImage:bn=>n(bn),onFinishEditing:()=>{pe(!1)},borderProps:hp?void 0:Xi})});else if(!ve||f==="grid")Ta=a.jsx("div",{style:{width:S,height:C,aspectRatio:R},children:a.jsx($T,{href:_,children:Ta})});else{const bn=R&&aon(R),vr=I/P,T1=Pe/rt,$o=bn||vr||T1||1,ei=!I&&P?P*$o:I,I0=!P&&I?I/$o:P,mp=Pe<rt?id:id*$o,gp=rt<Pe?id:id/$o,Ck=ue*2.5,Mp=b||Ck;let Dc=!1,Ea=!1;z==="center"?(Dc=!0,Ea=!0):jt()?z==="left"?Dc=!0:Ea=!0:z==="right"?Ea=!0:Dc=!0,Ta=a.jsx(Ca,{style:{display:"block",objectFit:T,aspectRatio:!S&&!C&&R?R:void 0},size:{width:ei??"auto",height:I0??"auto"},showHandle:o,minWidth:mp,maxWidth:Mp,minHeight:gp,maxHeight:Mp/$o,lockAspectRatio:$o,enable:{top:!1,right:Dc,bottom:!0,left:Ea},onResizeStart:qt,onResizeStop:(Dm,xF,ey)=>{if(wt(),b&&Pe>=b&&Math.abs(ey.offsetWidth-b)<10){n({width:void 0,height:void 0});return}n({width:`${ey.offsetWidth}px`,height:"auto",aspectRatio:$o===T1?void 0:String($o)})},resizeRatio:z==="center"?2:1,children:a.jsx($T,{href:_,children:Ta})})}if(!h&&!e)return a.jsxs(a.Fragment,{children:[ao,j?.bindings?Ic:Rt]});const JO=()=>{Sk(A),Ae(m("Post featured image updated."),{type:"snackbar"})},Mb=a.jsx(cb,{children:({selectedClientIds:bn})=>bn.length===1&&!Ar&&QO&&A&&d===bn[0]&&a.jsx(Ct,{onClick:JO,children:m("Set as featured image")})});return a.jsxs(a.Fragment,{children:[ao,Ic,Mb,Ta,a.jsx(fb,{attributes:t,setAttributes:n,isSelected:o,insertBlocksAfter:r,label:m("Image caption text"),showToolbarButton:o&&U&&!Qe,readOnly:O0})]})}function xrn(){const[e,{width:t}]=js(),n=x.useRef();return[a.jsx("div",{className:"wp-block","aria-hidden":"true",style:{position:"absolute",inset:0,width:"100%",height:0,margin:0},ref:n,children:e}),t]}const wrn=(e,t)=>{const n=Object.fromEntries(Object.entries(e??{}).filter(([o])=>["alt","id","link","caption"].includes(o)));return n.url=e?.sizes?.[t]?.url||e?.media_details?.sizes?.[t]?.source_url||e.url,n},Tve=(e,t)=>t&&!e&&!Nr(t);function eoe(e,t){var n,o;return"url"in((n=e?.sizes?.[t])!==null&&n!==void 0?n:{})||"source_url"in((o=e?.media_details?.sizes?.[t])!==null&&o!==void 0?o:{})}function _rn({attributes:e,setAttributes:t,isSelected:n,className:o,insertBlocksAfter:r,onReplace:s,context:i,clientId:c,__unstableParentLayout:l}){const{url:u="",alt:d,caption:p,id:f,width:b,height:h,sizeSlug:g,aspectRatio:z,scale:A,align:_,metadata:v}=e,[M,y]=x.useState(e.blob),k=x.useRef(),S=!l||l.type!=="flex"&&l.type!=="grid",[C,R]=xrn(),[T,{width:E}]=js(),B=E&&E<160,N=x.useRef();x.useEffect(()=>{N.current=d},[d]);const j=x.useRef();x.useEffect(()=>{j.current=p},[p]);const{__unstableMarkNextChangeAsNotPersistent:I,replaceBlock:P}=Oe(Q);x.useEffect(()=>{["wide","full"].includes(_)&&(I(),t({width:void 0,height:void 0,aspectRatio:void 0,scale:void 0}))},[I,_,t]);const{getSettings:$,getBlockRootClientId:F,getBlockName:X,canInsertBlockType:Z}=G(Q),V=Jr(),{createErrorNotice:ee}=Oe(mt);function te(ke){ee(ke,{type:"snackbar"}),t({src:void 0,id:void 0,url:void 0,blob:void 0})}function J(ke){const Se=k.current?.ownerDocument.defaultView;if(ke.every(se=>se instanceof Se.File)){const se=ke,L=F(c);se.some(ne=>!Kne(ne))&&ee(m("If uploading to a gallery all files need to be image formats"),{id:"gallery-upload-invalid-file",type:"snackbar"});const U=se.filter(ne=>Kne(ne)).map(ne=>Ee("core/image",{blob:ls(ne)}));if(X(L)==="core/gallery")P(c,U);else if(Z("core/gallery",L)){const ne=Ee("core/gallery",{},U);P(c,ne)}}}function ue(ke){if(Array.isArray(ke)){J(ke);return}if(!ke||!ke.url){t({url:void 0,alt:void 0,id:void 0,title:void 0,caption:void 0,blob:void 0}),y();return}if(Nr(ke.url)){y(ke.url);return}const{imageDefaultSize:Se}=$();let se="full";g&&eoe(ke,g)?se=g:eoe(ke,Se)&&(se=Se);let L=wrn(ke,se);if(j.current&&!L.caption){const{caption:qe,...Pe}=L;L=Pe}let U;!ke.id||ke.id!==f?U={sizeSlug:se}:U={url:u};let ne=e.linkDestination;if(!ne)switch(window?.wp?.media?.view?.settings?.defaultProps?.link||DM){case"file":case v4:ne=v4;break;case"post":case x4:ne=x4;break;case Une:ne=Une;break;case DM:ne=DM;break}let ve;switch(ne){case v4:ve=ke.url;break;case x4:ve=ke.link;break}L.href=ve,t({blob:void 0,...L,...U,linkDestination:ne}),y()}function ce(ke){ke!==u&&(t({blob:void 0,url:ke,id:void 0,sizeSlug:$().imageDefaultSize}),y())}dk({url:M,allowedTypes:r3,onChange:ue,onError:te});const de=Tve(f,u)?u:void 0,Ae=!!u&&a.jsx("img",{alt:m("Edit image"),title:m("Edit image"),className:"edit-image-preview",src:u}),ye=au(e),Ne=db(e),je=oe(o,{"is-transient":!!M,"is-resized":!!b||!!h,[`size-${g}`]:g,"has-custom-border":!!ye.className||ye.style&&Object.keys(ye.style).length>0}),ie=Be({ref:k,className:je}),{lockUrlControls:we=!1,lockUrlControlsMessage:re}=G(ke=>{if(!n)return{};const Se=vl(v?.bindings?.url?.source);return{lockUrlControls:!!v?.bindings?.url&&!Se?.canUserEditValue?.({select:ke,context:i,args:v?.bindings?.url?.args}),lockUrlControlsMessage:Se?.label?xe(m("Connected to %s"),Se.label):m("Connected to dynamic data")}},[i,n,v?.bindings?.url]),pe=ke=>a.jsxs(vo,{className:oe("block-editor-media-placeholder",{[ye.className]:!!ye.className&&!n}),icon:!B&&(we?yQe:Oz),withIllustration:!n||B,label:!B&&m("Image"),instructions:!we&&!B&&m("Drag and drop an image, upload, or choose from your library."),style:{aspectRatio:!(b&&h)&&z?z:void 0,width:h&&z?"100%":b,height:b&&z?"100%":h,objectFit:A,...ye.style,...Ne.style},children:[we&&!B&&re,!we&&!B&&ke,T]});return a.jsxs(a.Fragment,{children:[a.jsxs("figure",{...ie,children:[a.jsx(vrn,{temporaryURL:M,attributes:e,setAttributes:t,isSingleSelected:n,insertBlocksAfter:r,onReplace:s,onSelectImage:ue,onSelectURL:ce,onUploadError:te,context:i,clientId:c,blockEditingMode:V,parentLayoutType:l?.type,maxContentWidth:R}),a.jsx(iu,{icon:a.jsx(Zn,{icon:Oz}),onSelect:ue,onSelectURL:ce,onError:te,placeholder:pe,accept:"image/*",allowedTypes:r3,handleUpload:ke=>ke.length===1,value:{id:f,src:de},mediaPreview:Ae,disableMediaButtons:M||u})]}),n&&S&&C]})}function krn({attributes:e}){const{url:t,alt:n,caption:o,align:r,href:s,rel:i,linkClass:c,width:l,height:u,aspectRatio:d,scale:p,id:f,linkTarget:b,sizeSlug:h,title:g}=e,z=i||void 0,A=X1(e),_=db(e),v=oe({alignnone:r==="none",[`size-${h}`]:h,"is-resized":l||u,"has-custom-border":!!A.className||A.style&&Object.keys(A.style).length>0}),M=oe(A.className,{[`wp-image-${f}`]:!!f}),y=a.jsx("img",{src:t,alt:n,className:M||void 0,style:{...A.style,..._.style,aspectRatio:d,objectFit:p,width:l,height:u},title:g}),k=a.jsxs(a.Fragment,{children:[s?a.jsx("a",{className:c,href:s,target:b,rel:z,children:y}):y,!Ie.isEmpty(o)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:o})]});return a.jsx("figure",{...Be.save({className:v}),children:k})}function Srn(e,{shortcode:t}){const{body:n}=document.implementation.createHTMLDocument("");n.innerHTML=t.content;let o=n.querySelector("img");for(;o&&o.parentNode&&o.parentNode!==n;)o=o.parentNode;return o&&o.parentNode.removeChild(o),n.innerHTML.trim()}function VT(e,t){const{body:n}=document.implementation.createHTMLDocument("");n.innerHTML=e;const{firstElementChild:o}=n;if(o&&o.nodeName==="A")return o.getAttribute(t)||void 0}const toe={img:{attributes:["src","alt","title"],classes:["alignleft","aligncenter","alignright","alignnone",/^wp-image-\d+$/]}},Crn=({phrasingContentSchema:e})=>({figure:{require:["img"],children:{...toe,a:{attributes:["href","rel","target"],classes:["*"],children:toe},figcaption:{children:e}}}}),qrn={from:[{type:"raw",isMatch:e=>e.nodeName==="FIGURE"&&!!e.querySelector("img"),schema:Crn,transform:e=>{const t=e.className+" "+e.querySelector("img").className,n=/(?:^|\s)align(left|center|right)(?:$|\s)/.exec(t),o=e.id===""?void 0:e.id,r=n?n[1]:void 0,s=/(?:^|\s)wp-image-(\d+)(?:$|\s)/.exec(t),i=s?Number(s[1]):void 0,c=e.querySelector("a"),l=c&&c.href?"custom":void 0,u=c&&c.href?c.href:void 0,d=c&&c.rel?c.rel:void 0,p=c&&c.className?c.className:void 0,f=Wl("core/image",e.outerHTML,{align:r,id:i,linkDestination:l,href:u,rel:d,linkClass:p,anchor:o});return Nr(f.url)&&(f.blob=f.url,delete f.url),Ee("core/image",f)}},{type:"files",isMatch(e){return e.every(t=>t.type.indexOf("image/")===0)},transform(e){return e.map(n=>Ee("core/image",{blob:ls(n)}))}},{type:"shortcode",tag:"caption",attributes:{url:{type:"string",source:"attribute",attribute:"src",selector:"img"},alt:{type:"string",source:"attribute",attribute:"alt",selector:"img"},caption:{shortcode:Srn},href:{shortcode:(e,{shortcode:t})=>VT(t.content,"href")},rel:{shortcode:(e,{shortcode:t})=>VT(t.content,"rel")},linkClass:{shortcode:(e,{shortcode:t})=>VT(t.content,"class")},id:{type:"number",shortcode:({named:{id:e}})=>{if(e)return parseInt(e.replace("attachment_",""),10)}},align:{type:"string",shortcode:({named:{align:e="alignnone"}})=>e.replace("align","")}}}]},H9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/image",title:"Image",category:"media",usesContext:["allowResize","imageCrop","fixedHeight","postId","postType","queryId"],description:"Insert an image to make a visual statement.",keywords:["img","photo","picture"],textdomain:"default",attributes:{blob:{type:"string",role:"local"},url:{type:"string",source:"attribute",selector:"img",attribute:"src",role:"content"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:"",role:"content"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},lightbox:{type:"object",enabled:{type:"boolean"}},title:{type:"string",source:"attribute",selector:"img",attribute:"title",role:"content"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number",role:"content"},width:{type:"string"},height:{type:"string"},aspectRatio:{type:"string"},scale:{type:"string"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{interactivity:!0,align:["left","center","right","wide","full"],anchor:!0,color:{text:!1,background:!1},filter:{duotone:!0},spacing:{margin:!0},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}},shadow:{__experimentalSkipSerialization:!0}},selectors:{border:".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",shadow:".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",filter:{duotone:".wp-block-image img, .wp-block-image .components-placeholder"}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"rounded",label:"Rounded"}],editorStyle:"wp-block-image-editor",style:"wp-block-image"},{name:Eve}=H9,Wve={icon:Oz,example:{attributes:{sizeSlug:"large",url:"https://s.w.org/images/core/5.3/MtBlanc1.jpg",caption:m("Mont Blanc appears—still, snowy, and serene.")}},__experimentalLabel(e,{context:t}){const n=e?.metadata?.name;if(t==="list-view"&&n)return n;if(t==="accessibility"){const{caption:o,alt:r,url:s}=e;return s?r?r+(o?". "+o:""):o||"":m("Empty")}},getEditWrapperProps(e){return{"data-align":e.align}},transforms:qrn,edit:_rn,save:krn,deprecated:Mrn},Rrn=()=>it({name:Eve,metadata:H9,settings:Wve}),Trn=Object.freeze(Object.defineProperty({__proto__:null,init:Rrn,metadata:H9,name:Eve,settings:Wve},Symbol.toStringTag,{value:"Module"})),Ern=1,Wrn=100;function Nrn({attributes:e,setAttributes:t}){const{commentsToShow:n,displayAvatar:o,displayDate:r,displayExcerpt:s}=e,i={...e,style:{...e?.style,spacing:void 0}};return a.jsxs("div",{...Be(),children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display avatar"),checked:o,onChange:()=>t({displayAvatar:!o})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display date"),checked:r,onChange:()=>t({displayDate:!r})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display excerpt"),checked:s,onChange:()=>t({displayExcerpt:!s})}),a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of comments"),value:n,onChange:c=>t({commentsToShow:c}),min:Ern,max:Wrn,required:!0})]})}),a.jsx(I1,{children:a.jsx(FO,{block:"core/latest-comments",attributes:i,urlQueryArgs:{_locale:"site"}})})]})}const U9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/latest-comments",title:"Latest Comments",category:"widgets",description:"Display a list of your most recent comments.",keywords:["recent comments"],textdomain:"default",attributes:{commentsToShow:{type:"number",default:5,minimum:1,maximum:100},displayAvatar:{type:"boolean",default:!0},displayDate:{type:"boolean",default:!0},displayExcerpt:{type:"boolean",default:!0}},supports:{align:!0,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},html:!1,spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-latest-comments-editor",style:"wp-block-latest-comments"},{name:Nve}=U9,Bve={icon:U3,example:{},edit:Nrn},Brn=()=>it({name:Nve,metadata:U9,settings:Bve}),Lrn=Object.freeze(Object.defineProperty({__proto__:null,init:Brn,metadata:U9,name:Nve,settings:Bve},Symbol.toStringTag,{value:"Module"})),Prn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/latest-posts",title:"Latest Posts",category:"widgets",description:"Display a list of your most recent posts.",keywords:["recent posts"],textdomain:"default",attributes:{categories:{type:"array",items:{type:"object"}},selectedAuthor:{type:"number"},postsToShow:{type:"number",default:5},displayPostContent:{type:"boolean",default:!1},displayPostContentRadio:{type:"string",default:"excerpt"},excerptLength:{type:"number",default:55},displayAuthor:{type:"boolean",default:!1},displayPostDate:{type:"boolean",default:!1},postLayout:{type:"string",default:"list"},columns:{type:"number",default:3},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},displayFeaturedImage:{type:"boolean",default:!1},featuredImageAlign:{type:"string",enum:["left","center","right"]},featuredImageSizeSlug:{type:"string",default:"thumbnail"},featuredImageSizeWidth:{type:"number",default:null},featuredImageSizeHeight:{type:"number",default:null},addLinkToFeaturedImage:{type:"boolean",default:!1}},supports:{align:!0,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-latest-posts-editor",style:"wp-block-latest-posts"},{attributes:jrn}=Prn,Irn=[{attributes:{...jrn,categories:{type:"string"}},supports:{align:!0,html:!1},migrate:e=>({...e,categories:[{id:Number(e.categories)}]}),isEligible:({categories:e})=>e&&typeof e=="string",save:()=>null}],Drn=10,Frn=100,noe=6,$rn={per_page:-1,context:"view"},Vrn={per_page:-1,has_published_posts:["post"],context:"view"};function Hrn(e,t){var n;const o=e._embedded?.["wp:featuredmedia"]?.["0"];return{url:(n=o?.media_details?.sizes?.[t]?.source_url)!==null&&n!==void 0?n:o?.source_url,alt:o?.alt_text}}function Lve({attributes:e,setAttributes:t}){var n;const o=vt(Lve),{postsToShow:r,order:s,orderBy:i,categories:c,selectedAuthor:l,displayFeaturedImage:u,displayPostContentRadio:d,displayPostContent:p,displayPostDate:f,displayAuthor:b,postLayout:h,columns:g,excerptLength:z,featuredImageAlign:A,featuredImageSizeSlug:_,featuredImageSizeWidth:v,featuredImageSizeHeight:M,addLinkToFeaturedImage:y}=e,{imageSizes:k,latestPosts:S,defaultImageWidth:C,defaultImageHeight:R,categoriesList:T,authorList:E}=G(J=>{var ue,ce;const{getEntityRecords:me,getUsers:de}=J(Me),Ae=J(Q).getSettings(),ye=c&&c.length>0?c.map(je=>je.id):[],Ne=Object.fromEntries(Object.entries({categories:ye,author:l,order:s,orderby:i,per_page:r,_embed:"wp:featuredmedia"}).filter(([,je])=>typeof je<"u"));return{defaultImageWidth:(ue=Ae.imageDimensions?.[_]?.width)!==null&&ue!==void 0?ue:0,defaultImageHeight:(ce=Ae.imageDimensions?.[_]?.height)!==null&&ce!==void 0?ce:0,imageSizes:Ae.imageSizes,latestPosts:me("postType","post",Ne),categoriesList:me("taxonomy","category",$rn),authorList:de(Vrn)}},[_,r,s,i,c,l]),{createWarningNotice:B}=Oe(mt),N=J=>{J.preventDefault(),B(m("Links are disabled in the editor."),{id:`block-library/core/latest-posts/redirection-prevented/${o}`,type:"snackbar"})},j=k.filter(({slug:J})=>J!=="full").map(({name:J,slug:ue})=>({value:ue,label:J})),I=(n=T?.reduce((J,ue)=>({...J,[ue.name]:ue}),{}))!==null&&n!==void 0?n:{},P=J=>{if(J.some(me=>typeof me=="string"&&!I[me]))return;const ce=J.map(me=>typeof me=="string"?I[me]:me);if(ce.includes(null))return!1;t({categories:ce})},$=[{value:"none",icon:Rw,label:m("None")},{value:"left",icon:Ade,label:m("Left")},{value:"center",icon:yde,label:m("Center")},{value:"right",icon:vde,label:m("Right")}],F=!!S?.length,X=a.jsxs(et,{children:[a.jsxs(Qt,{title:m("Post content"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Post content"),checked:p,onChange:J=>t({displayPostContent:J})}),p&&a.jsx(sb,{label:m("Show"),selected:d,options:[{label:m("Excerpt"),value:"excerpt"},{label:m("Full post"),value:"full_post"}],onChange:J=>t({displayPostContentRadio:J})}),p&&d==="excerpt"&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Max number of words"),value:z,onChange:J=>t({excerptLength:J}),min:Drn,max:Frn})]}),a.jsxs(Qt,{title:m("Post meta"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display author name"),checked:b,onChange:J=>t({displayAuthor:J})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display post date"),checked:f,onChange:J=>t({displayPostDate:J})})]}),a.jsxs(Qt,{title:m("Featured image"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display featured image"),checked:u,onChange:J=>t({displayFeaturedImage:J})}),u&&a.jsxs(a.Fragment,{children:[a.jsx(VWt,{onChange:J=>{const ue={};J.hasOwnProperty("width")&&(ue.featuredImageSizeWidth=J.width),J.hasOwnProperty("height")&&(ue.featuredImageSizeHeight=J.height),t(ue)},slug:_,width:v,height:M,imageWidth:C,imageHeight:R,imageSizeOptions:j,imageSizeHelp:m("Select the size of the source image."),onChangeImage:J=>t({featuredImageSizeSlug:J,featuredImageSizeWidth:void 0,featuredImageSizeHeight:void 0})}),a.jsx(Do,{className:"editor-latest-posts-image-alignment-control",__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image alignment"),value:A||"none",onChange:J=>t({featuredImageAlign:J!=="none"?J:void 0}),children:$.map(({value:J,icon:ue,label:ce})=>a.jsx(ga,{value:J,icon:ue,label:ce},J))}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Add link to featured image"),checked:y,onChange:J=>t({addLinkToFeaturedImage:J})})]})]}),a.jsxs(Qt,{title:m("Sorting and filtering"),children:[a.jsx(M2t,{order:s,orderBy:i,numberOfItems:r,onOrderChange:J=>t({order:J}),onOrderByChange:J=>t({orderBy:J}),onNumberOfItemsChange:J=>t({postsToShow:J}),categorySuggestions:I,onCategoryChange:P,selectedCategories:c,onAuthorChange:J=>t({selectedAuthor:J!==""?Number(J):void 0}),authorList:E??[],selectedAuthorId:l}),h==="grid"&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:g,onChange:J=>t({columns:J}),min:2,max:F?Math.min(noe,S.length):noe,required:!0})]})]}),Z=Be({className:oe({"wp-block-latest-posts__list":!0,"is-grid":h==="grid","has-dates":f,"has-author":b,[`columns-${g}`]:h==="grid"})});if(!F)return a.jsxs("div",{...Z,children:[X,a.jsx(vo,{icon:xde,label:m("Latest Posts"),children:Array.isArray(S)?m("No posts found."):a.jsx(Xn,{})})]});const V=S.length>r?S.slice(0,r):S,ee=[{icon:jw,title:We("List view","Latest posts block display setting"),onClick:()=>t({postLayout:"list"}),isActive:h==="list"},{icon:X3,title:We("Grid view","Latest posts block display setting"),onClick:()=>t({postLayout:"grid"}),isActive:h==="grid"}],te=Sa().formats.date;return a.jsxs(a.Fragment,{children:[X,a.jsx(bt,{children:a.jsx(Wn,{controls:ee})}),a.jsx("ul",{...Z,children:V.map(J=>{const ue=J.title.rendered.trim();let ce=J.excerpt.rendered;const me=E?.find(pe=>pe.id===J.author),de=document.createElement("div");de.innerHTML=ce,ce=de.textContent||de.innerText||"";const{url:Ae,alt:ye}=Hrn(J,_),Ne=oe({"wp-block-latest-posts__featured-image":!0,[`align${A}`]:!!A}),je=u&&Ae,ie=je&&a.jsx("img",{src:Ae,alt:ye,style:{maxWidth:v,maxHeight:M}}),re=z<ce.trim().split(" ").length&&J.excerpt.raw===""?a.jsxs(a.Fragment,{children:[ce.trim().split(" ",z).join(" "),cr(xe(m("… <a>Read more<span>: %1$s</span></a>"),ue||m("(no title)")),{a:a.jsx("a",{className:"wp-block-latest-posts__read-more",href:J.link,rel:"noopener noreferrer",onClick:N}),span:a.jsx("span",{className:"screen-reader-text"})})]}):ce;return a.jsxs("li",{children:[je&&a.jsx("div",{className:Ne,children:y?a.jsx("a",{href:J.link,rel:"noreferrer noopener",onClick:N,children:ie}):ie}),a.jsx("a",{className:"wp-block-latest-posts__post-title",href:J.link,rel:"noreferrer noopener",dangerouslySetInnerHTML:ue?{__html:ue}:void 0,onClick:N,children:ue?null:m("(no title)")}),b&&me&&a.jsx("div",{className:"wp-block-latest-posts__post-author",children:xe(m("by %s"),me.name)}),f&&J.date_gmt&&a.jsx("time",{dateTime:Bj("c",J.date_gmt),className:"wp-block-latest-posts__post-date",children:r0(te,J.date_gmt)}),p&&d==="excerpt"&&a.jsx("div",{className:"wp-block-latest-posts__post-excerpt",children:re}),p&&d==="full_post"&&a.jsx("div",{className:"wp-block-latest-posts__post-full-content",dangerouslySetInnerHTML:{__html:J.content.raw.trim()}})]},J.id)})})]})}const X9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/latest-posts",title:"Latest Posts",category:"widgets",description:"Display a list of your most recent posts.",keywords:["recent posts"],textdomain:"default",attributes:{categories:{type:"array",items:{type:"object"}},selectedAuthor:{type:"number"},postsToShow:{type:"number",default:5},displayPostContent:{type:"boolean",default:!1},displayPostContentRadio:{type:"string",default:"excerpt"},excerptLength:{type:"number",default:55},displayAuthor:{type:"boolean",default:!1},displayPostDate:{type:"boolean",default:!1},postLayout:{type:"string",default:"list"},columns:{type:"number",default:3},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},displayFeaturedImage:{type:"boolean",default:!1},featuredImageAlign:{type:"string",enum:["left","center","right"]},featuredImageSizeSlug:{type:"string",default:"thumbnail"},featuredImageSizeWidth:{type:"number",default:null},featuredImageSizeHeight:{type:"number",default:null},addLinkToFeaturedImage:{type:"boolean",default:!1}},supports:{align:!0,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-latest-posts-editor",style:"wp-block-latest-posts"},{name:Pve}=X9,jve={icon:VP,example:{},edit:Lve,deprecated:Irn},Urn=()=>it({name:Pve,metadata:X9,settings:jve}),Xrn=Object.freeze(Object.defineProperty({__proto__:null,init:Urn,metadata:X9,name:Pve,settings:jve},Symbol.toStringTag,{value:"Module"})),c5={A:"upper-alpha",a:"lower-alpha",I:"upper-roman",i:"lower-roman"};function Ive(e){const t=e.getAttribute("type"),n={ordered:e.tagName==="OL",anchor:e.id===""?void 0:e.id,start:e.getAttribute("start")?parseInt(e.getAttribute("start"),10):void 0,reversed:e.hasAttribute("reversed")?!0:void 0,type:t&&c5[t]?c5[t]:void 0},o=Array.from(e.children).map(r=>{const s=Array.from(r.childNodes).filter(f=>f.nodeType!==f.TEXT_NODE||f.textContent.trim().length!==0);s.reverse();const[i,...c]=s;if(!(i?.tagName==="UL"||i?.tagName==="OL"))return Ee("core/list-item",{content:r.innerHTML});const u=c.map(f=>f.nodeType===f.TEXT_NODE?f.textContent:f.outerHTML);u.reverse();const d={content:u.join("").trim()},p=[Ive(i)];return Ee("core/list-item",d,p)});return Ee("core/list",n,o)}function Dve(e){const{values:t,start:n,reversed:o,ordered:r,type:s,...i}=e,c=document.createElement(r?"ol":"ul");c.innerHTML=t,n&&c.setAttribute("start",n),o&&c.setAttribute("reversed",!0),s&&c.setAttribute("type",s);const[l]=O3({HTML:c.outerHTML});return[{...i,...l.attributes},l.innerBlocks]}function Grn(e){const{type:t}=e;return t&&c5[t]?{...e,type:c5[t]}:e}const Krn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,__experimentalFontFamily:!0},color:{gradients:!0,link:!0},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},save({attributes:e}){const{ordered:t,values:n,type:o,reversed:r,start:s}=e,i=t?"ol":"ul";return a.jsx(i,{...Be.save({type:o,reversed:r,start:s}),children:a.jsx(Ie.Content,{value:n,multiline:"li"})})},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Yrn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,__experimentalFontFamily:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},save({attributes:e}){const{ordered:t,values:n,type:o,reversed:r,start:s}=e,i=t?"ol":"ul";return a.jsx(i,{...Be.save({type:o,reversed:r,start:s}),children:a.jsx(Ie.Content,{value:n,multiline:"li"})})},migrate:Dve},Zrn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},isEligible({type:e}){return!!e},save({attributes:e}){const{ordered:t,type:n,reversed:o,start:r}=e,s=t?"ol":"ul";return a.jsx(s,{...Be.save({type:n,reversed:o,start:r}),children:a.jsx(Ht.Content,{})})},migrate:Grn},Qrn={attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalOnMerge:"true",__experimentalSlashInserter:!0},save({attributes:e}){const{ordered:t,type:n,reversed:o,start:r}=e,s=t?"ol":"ul";return a.jsx(s,{...Be.save({reversed:o,start:r,style:{listStyleType:t&&n!=="decimal"?n:void 0}}),children:a.jsx(Ht.Content,{})})}},Jrn=[Qrn,Zrn,Yrn,Krn],e0n=({setAttributes:e,reversed:t,start:n,type:o})=>a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("List style"),options:[{label:m("Numbers"),value:"decimal"},{label:m("Uppercase letters"),value:"upper-alpha"},{label:m("Lowercase letters"),value:"lower-alpha"},{label:m("Uppercase Roman numerals"),value:"upper-roman"},{label:m("Lowercase Roman numerals"),value:"lower-roman"}],value:o,onChange:r=>e({type:r})}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Start value"),type:"number",onChange:r=>{const s=parseInt(r,10);e({start:isNaN(s)?void 0:s})},value:Number.isInteger(n)?n.toString(10):"",step:"1"}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Reverse order"),checked:t||!1,onChange:r=>{e({reversed:r||void 0})}})]})});function t0n(e,t){const{ordered:n,...o}=e,r=n?"ol":"ul";return a.jsx(r,{ref:t,...o})}const n0n=x.forwardRef(t0n),o0n={name:"core/list-item"},r0n=[["core/list-item"]],ooe=8;function s0n(e,t){const n=Fn(),{updateBlockAttributes:o,replaceInnerBlocks:r}=Oe(Q);x.useEffect(()=>{if(!e.values)return;const[s,i]=Dve(e);Ke("Value attribute on the list block",{since:"6.0",version:"6.5",alternative:"inner blocks"}),n.batch(()=>{o(t,s),r(t,i)})},[e.values])}function i0n(e){const{replaceBlocks:t,selectionChange:n}=Oe(Q),{getBlockRootClientId:o,getBlockAttributes:r,getBlock:s}=G(Q);return x.useCallback(()=>{const i=o(e),c=r(i),l=Ee("core/list-item",c),{innerBlocks:u}=s(e);t([i],[l,...u]),n(u[u.length-1].clientId)},[e])}function a0n({clientId:e}){const t=i0n(e),n=G(o=>{const{getBlockRootClientId:r,getBlockName:s}=o(Q);return s(r(e))==="core/list-item"},[e]);return a.jsx(a.Fragment,{children:a.jsx(Vt,{icon:jt()?ade:ide,title:m("Outdent"),description:m("Outdent list item"),disabled:!n,onClick:t})})}function c0n({attributes:e,setAttributes:t,clientId:n,style:o}){const{ordered:r,type:s,reversed:i,start:c}=e,l=Be({style:{...f0.isNative&&o,listStyleType:r&&s!=="decimal"?s:void 0}}),u=Nt(l,{defaultBlock:o0n,directInsert:!0,template:r0n,templateLock:!1,templateInsertUpdatesSelection:!0,...f0.isNative&&{marginVertical:ooe,marginHorizontal:ooe,renderAppender:!1},__experimentalCaptureToolbars:!0});s0n(e,n);const d=a.jsxs(bt,{group:"block",children:[a.jsx(Vt,{icon:jt()?DZe:sde,title:m("Unordered"),description:m("Convert to unordered list"),isActive:r===!1,onClick:()=>{t({ordered:!1})}}),a.jsx(Vt,{icon:jt()?FZe:Mz,title:m("Ordered"),description:m("Convert to ordered list"),isActive:r===!0,onClick:()=>{t({ordered:!0})}}),a.jsx(a0n,{clientId:n})]});return a.jsxs(a.Fragment,{children:[a.jsx(n0n,{ordered:r,reversed:i,start:c,...u}),d,r&&a.jsx(e0n,{setAttributes:t,reversed:i,start:c,type:s})]})}function l0n({attributes:e}){const{ordered:t,type:n,reversed:o,start:r}=e,s=t?"ol":"ul";return a.jsx(s,{...Be.save({reversed:o,start:r,style:{listStyleType:t&&n!=="decimal"?n:void 0}}),children:a.jsx(Ht.Content,{})})}function roe({phrasingContentSchema:e}){const t={...e,ul:{},ol:{attributes:["type","start","reversed"]}};return["ul","ol"].forEach(n=>{t[n].children={li:{children:t}}}),t}function mN(e){return e.flatMap(({name:t,attributes:n,innerBlocks:o=[]})=>t==="core/list-item"?[n.content,...mN(o)]:mN(o))}const u0n={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph","core/heading"],transform:e=>{let t=[];if(e.length>1)t=e.map(({content:n})=>Ee("core/list-item",{content:n}));else if(e.length===1){const n=eo({html:e[0].content});t=tB(n,` +`).map(o=>Ee("core/list-item",{content:T0({value:o})}))}return Ee("core/list",{anchor:e.anchor},t)}},{type:"raw",selector:"ol,ul",schema:e=>({ol:roe(e).ol,ul:roe(e).ul}),transform:Ive},...["*","-"].map(e=>({type:"prefix",prefix:e,transform(t){return Ee("core/list",{},[Ee("core/list-item",{content:t})])}})),...["1.","1)"].map(e=>({type:"prefix",prefix:e,transform(t){return Ee("core/list",{ordered:!0},[Ee("core/list-item",{content:t})])}}))],to:[...["core/paragraph","core/heading"].map(e=>({type:"block",blocks:[e],transform:(t,n)=>mN(n).map(o=>Ee(e,{content:o}))}))]},G9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/list",title:"List",category:"text",allowedBlocks:["core/list-item"],description:"An organized collection of items displayed in a specific order.",keywords:["bullet list","ordered list","numbered list"],textdomain:"default",attributes:{ordered:{type:"boolean",default:!1,role:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",role:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,html:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__unstablePasteTextInline:!0,__experimentalOnMerge:!0,__experimentalSlashInserter:!0,interactivity:{clientNavigation:!0}},selectors:{border:".wp-block-list:not(.wp-block-list .wp-block-list)"},editorStyle:"wp-block-list-editor",style:"wp-block-list"},{name:Fve}=G9,$ve={icon:jw,example:{innerBlocks:[{name:"core/list-item",attributes:{content:m("Alice.")}},{name:"core/list-item",attributes:{content:m("The White Rabbit.")}},{name:"core/list-item",attributes:{content:m("The Cheshire Cat.")}},{name:"core/list-item",attributes:{content:m("The Mad Hatter.")}},{name:"core/list-item",attributes:{content:m("The Queen of Hearts.")}}]},transforms:u0n,edit:c0n,save:l0n,deprecated:Jrn},d0n=()=>it({name:Fve,metadata:G9,settings:$ve}),p0n=Object.freeze(Object.defineProperty({__proto__:null,init:d0n,metadata:G9,name:Fve,settings:$ve},Symbol.toStringTag,{value:"Module"}));function mk(){const e=Fn(),{moveBlocksToPosition:t,removeBlock:n,insertBlock:o,updateBlockListSettings:r}=Oe(Q),{getBlockRootClientId:s,getBlockName:i,getBlockOrder:c,getBlockIndex:l,getSelectedBlockClientIds:u,getBlock:d,getBlockListSettings:p}=G(Q);function f(b){const h=s(b),g=s(h);if(g&&i(g)==="core/list-item")return g}return x.useCallback((b=u())=>{if(Array.isArray(b)||(b=[b]),!b.length)return;const h=b[0];if(i(h)!=="core/list-item")return;const g=f(h);if(!g)return;const z=s(h),A=b[b.length-1],v=c(z).slice(l(A)+1);return e.batch(()=>{if(v.length){let M=c(h)[0];if(!M){const y=jo(d(z),{},[]);M=y.clientId,o(y,0,h,!1),r(M,p(z))}t(v,z,M)}t(b,z,s(g),l(g)+1),c(z).length||n(z,!1)}),!0},[])}function Vve(e){const{replaceBlocks:t,selectionChange:n,multiSelect:o}=Oe(Q),{getBlock:r,getPreviousBlockClientId:s,getSelectionStart:i,getSelectionEnd:c,hasMultiSelection:l,getMultiSelectedBlockClientIds:u}=G(Q);return x.useCallback(()=>{const d=l(),p=d?u():[e],f=p.map(A=>jo(r(A))),b=s(e),h=jo(r(b));h.innerBlocks?.length||(h.innerBlocks=[Ee("core/list")]),h.innerBlocks[h.innerBlocks.length-1].innerBlocks.push(...f);const g=i(),z=c();return t([b,...p],[h]),d?o(f[0].clientId,f[f.length-1].clientId):n(f[0].clientId,z.attributeKey,z.clientId===g.clientId?g.offset:z.offset,z.offset),!0},[e])}function f0n(e){const{replaceBlocks:t,selectionChange:n}=Oe(Q),{getBlock:o,getBlockRootClientId:r,getBlockIndex:s,getBlockName:i}=G(Q),c=x.useRef(e);c.current=e;const l=mk();return Mn(u=>{function d(p){if(p.defaultPrevented||p.keyCode!==Gr)return;const{content:f,clientId:b}=c.current;if(f.length)return;if(p.preventDefault(),i(r(r(c.current.clientId)))==="core/list-item"){l();return}const g=o(r(b)),z=s(b),A=jo({...g,innerBlocks:g.innerBlocks.slice(0,z)}),_=Ee(Mr()),v=[...g.innerBlocks[z].innerBlocks[0]?.innerBlocks||[],...g.innerBlocks.slice(z+1)],M=v.length?[jo({...g,innerBlocks:v})]:[];t(g.clientId,[A,_,...M],1),n(_.clientId)}return u.addEventListener("keydown",d),()=>{u.removeEventListener("keydown",d)}},[])}function b0n(e){const{getSelectionStart:t,getSelectionEnd:n,getBlockIndex:o}=G(Q),r=Vve(e),s=mk();return Mn(i=>{function c(l){const{keyCode:u,shiftKey:d,altKey:p,metaKey:f,ctrlKey:b}=l;if(l.defaultPrevented||u!==$N&&u!==Z2||p||f||b)return;const h=t(),g=n();h.offset===0&&g.offset===0&&(d?u===Z2&&s()&&l.preventDefault():o(e)!==0&&r()&&l.preventDefault())}return i.addEventListener("keydown",c),()=>{i.removeEventListener("keydown",c)}},[e,r])}function h0n(e,t){const n=Fn(),{getPreviousBlockClientId:o,getNextBlockClientId:r,getBlockOrder:s,getBlockRootClientId:i,getBlockName:c}=G(Q),{mergeBlocks:l,moveBlocksToPosition:u}=Oe(Q),d=mk();function p(g){const z=s(g);return z.length?p(z[z.length-1]):g}function f(g){const z=i(g),A=i(z);if(A&&c(A)==="core/list-item")return A}function b(g){const z=r(g);if(z)return z;const A=f(g);if(A)return b(A)}function h(g){const z=s(g);return z.length?s(z[0])[0]:b(g)}return g=>{function z(A,_){n.batch(()=>{const[v]=s(_);v&&(o(_)===A&&!s(A).length?u([v],_,A):u(s(v),v,i(A))),l(A,_)})}if(g){const A=h(e);if(!A){t(g);return}f(A)?d(A):z(e,A)}else{const A=o(e);if(f(e))d(e);else if(A){const _=p(A);z(_,e)}else t(g)}}}function m0n({clientId:e}){const t=Vve(e),n=mk(),{canIndent:o,canOutdent:r}=G(s=>{const{getBlockIndex:i,getBlockRootClientId:c,getBlockName:l}=s(Q);return{canIndent:i(e)>0,canOutdent:l(c(c(e)))==="core/list-item"}},[e]);return a.jsxs(a.Fragment,{children:[a.jsx(Vt,{icon:jt()?ade:ide,title:m("Outdent"),description:m("Outdent list item"),disabled:!r,onClick:()=>n()}),a.jsx(Vt,{icon:jt()?jZe:PZe,title:m("Indent"),description:m("Indent list item"),disabled:!o,onClick:()=>t()})]})}function g0n({attributes:e,setAttributes:t,clientId:n,mergeBlocks:o}){const{placeholder:r,content:s}=e,i=Be(),c=Nt(i,{renderAppender:!1,__unstableDisableDropZone:!0}),l=f0n({content:s,clientId:n}),u=b0n(n),d=h0n(n,o);return a.jsxs(a.Fragment,{children:[a.jsxs("li",{...c,children:[a.jsx(Ie,{ref:xn([l,u]),identifier:"content",tagName:"div",onChange:p=>t({content:p}),value:s,"aria-label":m("List text"),placeholder:r||m("List"),onMerge:d}),c.children]}),a.jsx(bt,{group:"block",children:a.jsx(m0n,{clientId:n})})]})}function M0n({attributes:e}){return a.jsxs("li",{...Be.save(),children:[a.jsx(Ie.Content,{value:e.content}),a.jsx(Ht.Content,{})]})}const z0n={to:[{type:"block",blocks:["core/paragraph"],transform:(e,t=[])=>[Ee("core/paragraph",e),...t.map(n=>jo(n))]}]},K9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/list-item",title:"List item",category:"text",parent:["core/list"],allowedBlocks:["core/list"],description:"An individual item within a list.",textdomain:"default",attributes:{placeholder:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"li",role:"content"}},supports:{anchor:!0,className:!1,splitting:!0,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,background:!0,__experimentalDefaultControls:{text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},selectors:{root:".wp-block-list > li",border:".wp-block-list:not(.wp-block-list .wp-block-list) > li"}},{name:Hve}=K9,Uve={icon:dQe,edit:g0n,save:M0n,merge(e,t){return{...e,content:e.content+t.content}},transforms:z0n,[e0(jn).requiresWrapperOnCopy]:!0},O0n=()=>it({name:Hve,metadata:K9,settings:Uve}),y0n=Object.freeze(Object.defineProperty({__proto__:null,init:O0n,metadata:K9,name:Hve,settings:Uve},Symbol.toStringTag,{value:"Module"}));function A0n({attributes:e,setAttributes:t}){const{displayLoginAsForm:n,redirectToCurrent:o}=e,r=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({displayLoginAsForm:!1,redirectToCurrent:!0})},dropdownMenuProps:r,children:[a.jsx(tt,{label:m("Display login as form"),isShownByDefault:!0,hasValue:()=>n,onDeselect:()=>t({displayLoginAsForm:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display login as form"),checked:n,onChange:()=>t({displayLoginAsForm:!n})})}),a.jsx(tt,{label:m("Redirect to current URL"),isShownByDefault:!0,hasValue:()=>!o,onDeselect:()=>t({redirectToCurrent:!0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Redirect to current URL"),checked:o,onChange:()=>t({redirectToCurrent:!o})})})]})}),a.jsx("div",{...Be({className:"logged-in"}),children:a.jsx("a",{href:"#login-pseudo-link",children:m("Log out")})})]})}const Y9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/loginout",title:"Login/out",category:"theme",description:"Show login & logout links.",keywords:["login","logout","form"],textdomain:"default",attributes:{displayLoginAsForm:{type:"boolean",default:!1},redirectToCurrent:{type:"boolean",default:!0}},example:{viewportWidth:350},supports:{className:!0,color:{background:!0,text:!1,gradients:!0,link:!0},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},interactivity:{clientNavigation:!0}},style:"wp-block-loginout"},{name:Xve}=Y9,Gve={icon:fQe,edit:A0n},v0n=()=>it({name:Xve,metadata:Y9,settings:Gve}),x0n=Object.freeze(Object.defineProperty({__proto__:null,init:v0n,metadata:Y9,name:Xve,settings:Gve},Symbol.toStringTag,{value:"Module"})),jm="full",l5=15,w0n="media",_0n="attachment",k0n=[["core/paragraph",{placeholder:We("Content…","content placeholder")}]],gk=(e,t)=>e?{backgroundImage:`url(${e})`,backgroundPosition:t?`${t.x*100}% ${t.y*100}%`:"50% 50%"}:{},Kve=(e,t)=>e?{backgroundImage:`url(${e})`,backgroundPosition:t?`${Math.round(t.x*100)}% ${Math.round(t.y*100)}%`:"50% 50%"}:{},mb=50,Cc=()=>{},Yve=e=>{if(!e.customBackgroundColor)return e;const t={color:{background:e.customBackgroundColor}},{customBackgroundColor:n,...o}=e;return{...o,style:t}},Im=e=>e.align?e:{...e,align:"wide"},Mk={align:{type:"string",default:"wide"},mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:""},mediaPosition:{type:"string",default:"left"},mediaId:{type:"number"},mediaType:{type:"string"},mediaWidth:{type:"number",default:50},isStackedOnMobile:{type:"boolean",default:!1}},Z9={...Mk,isStackedOnMobile:{type:"boolean",default:!0},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},mediaSizeSlug:{type:"string"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},Zve={...Z9,mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:"",role:"content"},mediaId:{type:"number",role:"content"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src",role:"content"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href",role:"content"},mediaType:{type:"string",role:"content"}},S0n={...Zve,align:{type:"string",default:"none"},useFeaturedImage:{type:"boolean",default:!1}},Q9={anchor:!0,align:["wide","full"],html:!1,color:{gradients:!0,link:!0}},Qve={...Q9,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}}},C0n={...Qve,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},interactivity:{clientNavigation:!0}},q0n={attributes:S0n,supports:C0n,usesContext:["postId","postType"],save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=s?a.jsx("img",{src:s,alt:n,className:A||null}):null;f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?Kve(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()})]}):a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})}},R0n={attributes:Zve,supports:Qve,save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=a.jsx("img",{src:s,alt:n,className:A||null});f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?Kve(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()})]}):a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})},migrate:Im,isEligible(e,t,{block:n}){const{attributes:o}=n;return e.align===void 0&&!!o.className?.includes("alignwide")}},T0n={attributes:Z9,supports:Q9,save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=a.jsx("img",{src:s,alt:n,className:A||null});f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?gk(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()})]}):a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})},migrate:Im},E0n={attributes:Z9,supports:Q9,save({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"});let _=a.jsx("img",{src:s,alt:n,className:A||null});f&&(_=a.jsx("a",{className:p,href:f,target:b,rel:z,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:s})},M=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill":u}),y=u?gk(s,d):{};let k;i!==mb&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return a.jsxs("div",{...Be.save({className:M,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",style:y,children:(v[r]||Cc)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})},migrate:Im},W0n={attributes:{...Mk,isStackedOnMobile:{type:"boolean",default:!0},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},migrate:Co(Yve,Im),save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,isStackedOnMobile:o,mediaAlt:r,mediaPosition:s,mediaType:i,mediaUrl:c,mediaWidth:l,mediaId:u,verticalAlignment:d,imageFill:p,focalPoint:f,linkClass:b,href:h,linkTarget:g,rel:z}=e,A=z||void 0;let _=a.jsx("img",{src:c,alt:r,className:u&&i==="image"?`wp-image-${u}`:null});h&&(_=a.jsx("a",{className:b,href:h,target:g,rel:A,children:_}));const v={image:()=>_,video:()=>a.jsx("video",{controls:!0,src:c})},M=Pt("background-color",t),y=oe({"has-media-on-the-right":s==="right","has-background":M||n,[M]:M,"is-stacked-on-mobile":o,[`is-vertically-aligned-${d}`]:d,"is-image-fill":p}),k=p?gk(c,f):{};let S;l!==mb&&(S=s==="right"?`auto ${l}%`:`${l}% auto`);const C={backgroundColor:M?void 0:n,gridTemplateColumns:S};return a.jsxs("div",{className:y,style:C,children:[a.jsx("figure",{className:"wp-block-media-text__media",style:k,children:(v[i]||Cc)()}),a.jsx("div",{className:"wp-block-media-text__content",children:a.jsx(Ht.Content,{})})]})}},N0n={attributes:{...Mk,backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},migrate:Co(Yve,Im),save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,isStackedOnMobile:o,mediaAlt:r,mediaPosition:s,mediaType:i,mediaUrl:c,mediaWidth:l,mediaId:u,verticalAlignment:d,imageFill:p,focalPoint:f}=e,b={image:()=>a.jsx("img",{src:c,alt:r,className:u&&i==="image"?`wp-image-${u}`:null}),video:()=>a.jsx("video",{controls:!0,src:c})},h=Pt("background-color",t),g=oe({"has-media-on-the-right":s==="right",[h]:h,"is-stacked-on-mobile":o,[`is-vertically-aligned-${d}`]:d,"is-image-fill":p}),z=p?gk(c,f):{};let A;l!==mb&&(A=s==="right"?`auto ${l}%`:`${l}% auto`);const _={backgroundColor:h?void 0:n,gridTemplateColumns:A};return a.jsxs("div",{className:g,style:_,children:[a.jsx("figure",{className:"wp-block-media-text__media",style:z,children:(b[i]||Cc)()}),a.jsx("div",{className:"wp-block-media-text__content",children:a.jsx(Ht.Content,{})})]})}},B0n={attributes:{...Mk,backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"}},migrate:Im,save({attributes:e}){const{backgroundColor:t,customBackgroundColor:n,isStackedOnMobile:o,mediaAlt:r,mediaPosition:s,mediaType:i,mediaUrl:c,mediaWidth:l}=e,u={image:()=>a.jsx("img",{src:c,alt:r}),video:()=>a.jsx("video",{controls:!0,src:c})},d=Pt("background-color",t),p=oe({"has-media-on-the-right":s==="right",[d]:d,"is-stacked-on-mobile":o});let f;l!==mb&&(f=s==="right"?`auto ${l}%`:`${l}% auto`);const b={backgroundColor:d?void 0:n,gridTemplateColumns:f};return a.jsxs("div",{className:p,style:b,children:[a.jsx("figure",{className:"wp-block-media-text__media",children:(u[i]||Cc)()}),a.jsx("div",{className:"wp-block-media-text__content",children:a.jsx(Ht.Content,{})})]})}},L0n=[q0n,R0n,T0n,E0n,W0n,N0n,B0n];function Jve(e,t){return e?{objectPosition:t?`${Math.round(t.x*100)}% ${Math.round(t.y*100)}%`:"50% 50%"}:{}}const e4e=["image","video"],P0n=()=>{},j0n=x.forwardRef(({isSelected:e,isStackedOnMobile:t,...n},o)=>{const r=Yn("small","<");return a.jsx(Ca,{ref:o,showHandle:e&&(!r||!t),...n})});function I0n({mediaId:e,mediaUrl:t,onSelectMedia:n,toggleUseFeaturedImage:o,useFeaturedImage:r}){return a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:e,mediaURL:t,allowedTypes:e4e,accept:"image/*,video/*",onSelect:n,onToggleFeaturedImage:o,useFeaturedImage:r,onReset:()=>n(void 0)})})}function soe({className:e,mediaUrl:t,onSelectMedia:n,toggleUseFeaturedImage:o}){const{createErrorNotice:r}=Oe(mt),s=i=>{r(i,{type:"snackbar"})};return a.jsx(iu,{icon:a.jsx(Zn,{icon:IP}),labels:{title:m("Media area")},className:e,onSelect:n,accept:"image/*,video/*",onToggleFeaturedImage:o,allowedTypes:e4e,onError:s,disableMediaButtons:t})}function D0n(e,t){const{className:n,commitWidthChange:o,focalPoint:r,imageFill:s,isSelected:i,isStackedOnMobile:c,mediaAlt:l,mediaId:u,mediaPosition:d,mediaType:p,mediaUrl:f,mediaWidth:b,onSelectMedia:h,onWidthChange:g,enableResize:z,toggleUseFeaturedImage:A,useFeaturedImage:_,featuredImageURL:v,featuredImageAlt:M,refMedia:y}=e,k=!u&&Nr(f),{toggleSelection:S}=Oe(Q);if(f||v||_){const C=()=>{S(!1)},R=(j,I,P)=>{g(parseInt(P.style.width))},T=(j,I,P)=>{S(!0),o(parseInt(P.style.width))},E={right:z&&d==="left",left:z&&d==="right"},B=p==="image"&&s?Jve(f||v,r):{},N={image:()=>_&&v?a.jsx("img",{ref:y,src:v,alt:M,style:B}):f&&a.jsx("img",{ref:y,src:f,alt:l,style:B}),video:()=>a.jsx("video",{controls:!0,ref:y,src:f})};return a.jsxs(j0n,{as:"figure",className:oe(n,"editor-media-container__resizer",{"is-transient":k}),size:{width:b+"%"},minWidth:"10%",maxWidth:"100%",enable:E,onResizeStart:C,onResize:R,onResizeStop:T,axis:"x",isSelected:i,isStackedOnMobile:c,ref:t,children:[a.jsx(I0n,{onSelectMedia:h,mediaUrl:_&&v?v:f,mediaId:u,toggleUseFeaturedImage:A}),(N[p]||P0n)(),k&&a.jsx(Xn,{}),!_&&a.jsx(soe,{...e}),!v&&_&&a.jsx(vo,{className:"wp-block-media-text--placeholder-image",style:B,withIllustration:!0})]})}return a.jsx(soe,{...e})}const F0n=x.forwardRef(D0n),{ResolutionTool:$0n}=e0(jn),ioe=e=>Math.max(l5,Math.min(e,100-l5));function t4e(e,t){return e?.media_details?.sizes?.[t]?.source_url}function V0n({attributes:{linkDestination:e,href:t},setAttributes:n}){return o=>{if(!o||!o.url){n({mediaAlt:void 0,mediaId:void 0,mediaType:void 0,mediaUrl:void 0,mediaLink:void 0,href:void 0,focalPoint:void 0,useFeaturedImage:!1});return}Nr(o.url)&&(o.type=Zie(o.url));let r,s;o.media_type?o.media_type==="image"?r="image":r="video":r=o.type,r==="image"&&(s=o.sizes?.large?.url||o.media_details?.sizes?.large?.source_url);let i=t;e===w0n&&(i=o.url),e===_0n&&(i=o.link),n({mediaAlt:o.alt,mediaId:o.id,mediaType:r,mediaUrl:s||o.url,mediaLink:o.link||void 0,href:i,focalPoint:void 0,useFeaturedImage:!1})}}function H0n({image:e,value:t,onChange:n}){const{imageSizes:o}=G(s=>{const{getSettings:i}=s(Q);return{imageSizes:i().imageSizes}},[]);if(!o?.length)return null;const r=o.filter(({slug:s})=>t4e(e,s)).map(({name:s,slug:i})=>({value:i,label:s}));return a.jsx($0n,{value:t,defaultValue:jm,options:r,onChange:n})}function U0n({attributes:e,isSelected:t,setAttributes:n,context:{postId:o,postType:r}}){const{focalPoint:s,href:i,imageFill:c,isStackedOnMobile:l,linkClass:u,linkDestination:d,linkTarget:p,mediaAlt:f,mediaId:b,mediaPosition:h,mediaType:g,mediaUrl:z,mediaWidth:A,mediaSizeSlug:_,rel:v,verticalAlignment:M,allowedBlocks:y,useFeaturedImage:k}=e,[S]=Ao("postType",r,"featured_media",o),{featuredImageMedia:C}=G(ie=>({featuredImageMedia:S&&k?ie(Me).getMedia(S,{context:"view"}):void 0}),[S,k]),{image:R}=G(ie=>({image:b&&t?ie(Me).getMedia(b,{context:"view"}):null}),[t,b]),T=k?C?.source_url:"",E=k?C?.alt_text:"",B=()=>{n({imageFill:!1,mediaType:"image",mediaId:void 0,mediaUrl:void 0,mediaAlt:void 0,mediaLink:void 0,linkDestination:void 0,linkTarget:void 0,linkClass:void 0,rel:void 0,href:void 0,useFeaturedImage:!k})},N=x.useRef(),j=ie=>{const{style:we}=N.current,{x:re,y:pe}=ie;we.objectPosition=`${re*100}% ${pe*100}%`},[I,P]=x.useState(null),$=V0n({attributes:e,setAttributes:n}),F=ie=>{n(ie)},X=ie=>{P(ioe(ie))},Z=ie=>{n({mediaWidth:ioe(ie)}),P(null)},V=oe({"has-media-on-the-right":h==="right","is-selected":t,"is-stacked-on-mobile":l,[`is-vertically-aligned-${M}`]:M,"is-image-fill-element":c}),ee=`${I||A}%`,te=h==="right"?`1fr ${ee}`:`${ee} 1fr`,J={gridTemplateColumns:te,msGridColumns:te},ue=ie=>{n({mediaAlt:ie})},ce=ie=>{n({verticalAlignment:ie})},me=ie=>{const we=t4e(R,ie);if(!we)return null;n({mediaUrl:we,mediaSizeSlug:ie})},de=Qo(),Ae=a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({isStackedOnMobile:!0,imageFill:!1,mediaAlt:"",focalPoint:void 0,mediaWidth:50,mediaSizeSlug:void 0})},dropdownMenuProps:de,children:[a.jsx(tt,{label:m("Media width"),isShownByDefault:!0,hasValue:()=>A!==50,onDeselect:()=>n({mediaWidth:50}),children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Media width"),value:I||A,onChange:Z,min:l5,max:100-l5})}),a.jsx(tt,{label:m("Stack on mobile"),isShownByDefault:!0,hasValue:()=>!l,onDeselect:()=>n({isStackedOnMobile:!0}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Stack on mobile"),checked:l,onChange:()=>n({isStackedOnMobile:!l})})}),g==="image"&&a.jsx(tt,{label:m("Crop image to fill"),isShownByDefault:!0,hasValue:()=>!!c,onDeselect:()=>n({imageFill:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Crop image to fill"),checked:!!c,onChange:()=>n({imageFill:!c})})}),c&&(z||T)&&g==="image"&&a.jsx(tt,{label:m("Focal point"),isShownByDefault:!0,hasValue:()=>!!s,onDeselect:()=>n({focalPoint:void 0}),children:a.jsx(l_,{__nextHasNoMarginBottom:!0,label:m("Focal point"),url:k&&T?T:z,value:s,onChange:ie=>n({focalPoint:ie}),onDragStart:j,onDrag:j})}),g==="image"&&z&&!k&&a.jsx(tt,{label:m("Alternative text"),isShownByDefault:!0,hasValue:()=>!!f,onDeselect:()=>n({mediaAlt:""}),children:a.jsx(Li,{__nextHasNoMarginBottom:!0,label:m("Alternative text"),value:f,onChange:ue,help:a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]})})}),g==="image"&&!k&&a.jsx(H0n,{image:R,value:_,onChange:me})]}),ye=Be({className:V,style:J}),Ne=Nt({className:"wp-block-media-text__content"},{template:k0n,allowedBlocks:y}),je=Jr();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:Ae}),a.jsxs(bt,{group:"block",children:[je==="default"&&a.jsxs(a.Fragment,{children:[a.jsx($ze,{onChange:ce,value:M}),a.jsx(Vt,{icon:SQe,title:m("Show media on left"),isActive:h==="left",onClick:()=>n({mediaPosition:"left"})}),a.jsx(Vt,{icon:CQe,title:m("Show media on right"),isActive:h==="right",onClick:()=>n({mediaPosition:"right"})})]}),g==="image"&&!k&&a.jsx(u3e,{url:i||"",onChangeUrl:F,linkDestination:d,mediaType:g,mediaUrl:R&&R.source_url,mediaLink:R&&R.link,linkTarget:p,linkClass:u,rel:v})]}),a.jsxs("div",{...ye,children:[h==="right"&&a.jsx("div",{...Ne}),a.jsx(F0n,{className:"wp-block-media-text__media",onSelectMedia:$,onWidthChange:X,commitWidthChange:Z,refMedia:N,enableResize:je==="default",toggleUseFeaturedImage:B,focalPoint:s,imageFill:c,isSelected:t,isStackedOnMobile:l,mediaAlt:f,mediaId:b,mediaPosition:h,mediaType:g,mediaUrl:z,mediaWidth:A,useFeaturedImage:k,featuredImageURL:T,featuredImageAlt:E}),h!=="right"&&a.jsx("div",{...Ne})]})]})}const X0n=50,aoe=()=>{};function G0n({attributes:e}){const{isStackedOnMobile:t,mediaAlt:n,mediaPosition:o,mediaType:r,mediaUrl:s,mediaWidth:i,mediaId:c,verticalAlignment:l,imageFill:u,focalPoint:d,linkClass:p,href:f,linkTarget:b,rel:h}=e,g=e.mediaSizeSlug||jm,z=h||void 0,A=oe({[`wp-image-${c}`]:c&&r==="image",[`size-${g}`]:c&&r==="image"}),_=u?Jve(s,d):{};let v=s?a.jsx("img",{src:s,alt:n,className:A||null,style:_}):null;f&&(v=a.jsx("a",{className:p,href:f,target:b,rel:z,children:v}));const M={image:()=>v,video:()=>a.jsx("video",{controls:!0,src:s})},y=oe({"has-media-on-the-right":o==="right","is-stacked-on-mobile":t,[`is-vertically-aligned-${l}`]:l,"is-image-fill-element":u});let k;i!==X0n&&(k=o==="right"?`auto ${i}%`:`${i}% auto`);const S={gridTemplateColumns:k};return o==="right"?a.jsxs("div",{...Be.save({className:y,style:S}),children:[a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})}),a.jsx("figure",{className:"wp-block-media-text__media",children:(M[r]||aoe)()})]}):a.jsxs("div",{...Be.save({className:y,style:S}),children:[a.jsx("figure",{className:"wp-block-media-text__media",children:(M[r]||aoe)()}),a.jsx("div",{...Nt.save({className:"wp-block-media-text__content"})})]})}const K0n={from:[{type:"block",blocks:["core/image"],transform:({alt:e,url:t,id:n,anchor:o})=>Ee("core/media-text",{mediaAlt:e,mediaId:n,mediaUrl:t,mediaType:"image",anchor:o})},{type:"block",blocks:["core/video"],transform:({src:e,id:t,anchor:n})=>Ee("core/media-text",{mediaId:t,mediaUrl:e,mediaType:"video",anchor:n})},{type:"block",blocks:["core/cover"],transform:({align:e,alt:t,anchor:n,backgroundType:o,customGradient:r,customOverlayColor:s,gradient:i,id:c,overlayColor:l,style:u,textColor:d,url:p},f)=>{let b={};return r?b={style:{color:{gradient:r}}}:s&&(b={style:{color:{background:s}}}),u?.color?.text&&(b.style={color:{...b.style?.color,text:u.color.text}}),Ee("core/media-text",{align:e,anchor:n,backgroundColor:l,gradient:i,mediaAlt:t,mediaId:c,mediaType:o,mediaUrl:p,textColor:d,...b},f)}}],to:[{type:"block",blocks:["core/image"],isMatch:({mediaType:e,mediaUrl:t})=>!t||e==="image",transform:({mediaAlt:e,mediaId:t,mediaUrl:n,anchor:o})=>Ee("core/image",{alt:e,id:t,url:n,anchor:o})},{type:"block",blocks:["core/video"],isMatch:({mediaType:e,mediaUrl:t})=>!t||e==="video",transform:({mediaId:e,mediaUrl:t,anchor:n})=>Ee("core/video",{id:e,src:t,anchor:n})},{type:"block",blocks:["core/cover"],transform:({align:e,anchor:t,backgroundColor:n,focalPoint:o,gradient:r,mediaAlt:s,mediaId:i,mediaType:c,mediaUrl:l,style:u,textColor:d},p)=>{const f={};u?.color?.gradient?f.customGradient=u.color.gradient:u?.color?.background&&(f.customOverlayColor=u.color.background),u?.color?.text&&(f.style={color:{text:u.color.text}});const b={align:e,alt:s,anchor:t,backgroundType:c,dimRatio:l?50:100,focalPoint:o,gradient:r,id:i,overlayColor:n,textColor:d,url:l,...f};return Ee("core/cover",b,p)}}]},J9={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/media-text",title:"Media & Text",category:"media",description:"Set media and words side-by-side for a richer layout.",keywords:["image","video"],textdomain:"default",attributes:{align:{type:"string",default:"none"},mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:"",role:"content"},mediaPosition:{type:"string",default:"left"},mediaId:{type:"number",role:"content"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src",role:"content"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href",role:"content"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},mediaType:{type:"string",role:"content"},mediaWidth:{type:"number",default:50},mediaSizeSlug:{type:"string"},isStackedOnMobile:{type:"boolean",default:!0},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"},allowedBlocks:{type:"array"},useFeaturedImage:{type:"boolean",default:!1}},usesContext:["postId","postType"],supports:{anchor:!0,align:["wide","full"],html:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-media-text-editor",style:"wp-block-media-text"},{name:n4e}=J9,o4e={icon:hQe,example:{viewportWidth:601,attributes:{mediaType:"image",mediaUrl:"https://s.w.org/images/core/5.3/Biologia_Centrali-Americana_-_Cantorchilus_semibadius_1902.jpg"},innerBlocks:[{name:"core/paragraph",attributes:{content:m("The wren<br>Earns his living<br>Noiselessly.")}},{name:"core/paragraph",attributes:{content:m("— Kobayashi Issa (一茶)")}}]},transforms:K0n,edit:U0n,save:G0n,deprecated:L0n},Y0n=()=>it({name:n4e,metadata:J9,settings:o4e}),Z0n=Object.freeze(Object.defineProperty({__proto__:null,init:Y0n,metadata:J9,name:n4e,settings:o4e},Symbol.toStringTag,{value:"Module"}));function Q0n({attributes:e,clientId:t}){const{originalName:n,originalUndelimitedContent:o}=e,r=!!o,{hasFreeformBlock:s,hasHTMLBlock:i}=G(f=>{const{canInsertBlockType:b,getBlockRootClientId:h}=f(Q);return{hasFreeformBlock:b("core/freeform",h(t)),hasHTMLBlock:b("core/html",h(t))}},[t]),{replaceBlock:c}=Oe(Q);function l(){c(t,Ee("core/html",{content:o}))}const u=[];let d;const p=a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:l,variant:"primary",children:m("Keep as HTML")},"convert");return r&&!s&&!n?i?(d=m("It appears you are trying to use the deprecated Classic block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely. Alternatively, you can refresh the page to use the Classic block."),u.push(p)):d=m("It appears you are trying to use the deprecated Classic block. You can leave this block intact, or remove it entirely. Alternatively, you can refresh the page to use the Classic block."):r&&i?(d=xe(m('Your site doesn’t include support for the "%s" block. You can leave it as-is, convert it to custom HTML, or remove it.'),n),u.push(p)):d=xe(m('Your site doesn’t include support for the "%s" block. You can leave it as-is or remove it.'),n),a.jsxs("div",{...Be({className:"has-warning"}),children:[a.jsx(Er,{actions:u,children:d}),a.jsx(i0,{children:C5(o)})]})}function J0n({attributes:e}){return a.jsx(i0,{children:e.originalContent})}const eD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/missing",title:"Unsupported",category:"text",description:"Your site doesn’t include support for this block.",textdomain:"default",attributes:{originalName:{type:"string"},originalUndelimitedContent:{type:"string"},originalContent:{type:"string",source:"raw"}},supports:{className:!1,customClassName:!1,inserter:!1,html:!1,reusable:!1,interactivity:{clientNavigation:!0}}},{name:zk}=eD,r4e={name:zk,__experimentalLabel(e,{context:t}){if(t==="accessibility"){const{originalName:n}=e,o=n?on(n):void 0;return o?o.settings.title||n:""}},edit:Q0n,save:J0n},e1n=()=>it({name:zk,metadata:eD,settings:r4e}),t1n=Object.freeze(Object.defineProperty({__proto__:null,init:e1n,metadata:eD,name:zk,settings:r4e},Symbol.toStringTag,{value:"Module"})),coe=m("Read more");function n1n({attributes:{customText:e,noTeaser:t},insertBlocksAfter:n,setAttributes:o}){const r=d=>{o({customText:d.target.value})},s=({keyCode:d})=>{d===Gr&&n([Ee(Mr())])},i=d=>m(d?"The excerpt is hidden.":"The excerpt is visible."),c=()=>o({noTeaser:!t}),l={width:`${(e||coe).length+1.2}em`},u=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{o({noTeaser:!1})},dropdownMenuProps:u,children:a.jsx(tt,{label:m("Hide excerpt"),isShownByDefault:!0,hasValue:()=>t,onDeselect:()=>o({noTeaser:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Hide the excerpt on the full content page"),checked:!!t,onChange:c,help:i})})})}),a.jsx("div",{...Be(),children:a.jsx("input",{"aria-label":m("“Read more” link text"),type:"text",value:e,placeholder:coe,onChange:r,onKeyDown:s,style:l})})]})}function o1n({attributes:{customText:e,noTeaser:t}}){const n=e?`<!--more ${e}-->`:"<!--more-->",o=t?"<!--noteaser-->":"";return a.jsx(i0,{children:[n,o].filter(Boolean).join(` +`)})}const r1n={from:[{type:"raw",schema:{"wp-block":{attributes:["data-block"]}},isMatch:e=>e.dataset&&e.dataset.block==="core/more",transform(e){const{customText:t,noTeaser:n}=e.dataset,o={};return t&&(o.customText=t),n===""&&(o.noTeaser=!0),Ee("core/more",o)}}]},tD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/more",title:"More",category:"design",description:"Content before this block will be shown in the excerpt on your archives page.",keywords:["read more"],textdomain:"default",attributes:{customText:{type:"string",default:""},noTeaser:{type:"boolean",default:!1}},supports:{customClassName:!1,className:!1,html:!1,multiple:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-more-editor"},{name:s4e}=tD,i4e={icon:mQe,example:{},__experimentalLabel(e,{context:t}){const n=e?.metadata?.name;if(t==="list-view"&&n)return n;if(t==="accessibility")return e.customText},transforms:r1n,edit:n1n,save:o1n},s1n=()=>it({name:s4e,metadata:tD,settings:i4e}),i1n=Object.freeze(Object.defineProperty({__proto__:null,init:s1n,metadata:tD,name:s4e,settings:i4e},Symbol.toStringTag,{value:"Module"})),a4e={name:"core/navigation-link"},a1n=["core/navigation-link/page","core/navigation-link"],c4e={per_page:100,status:["publish","draft"],order:"desc",orderby:"date"},c1n=["postType","wp_navigation",c4e];function nD(e){const t=tie({kind:"postType",name:"wp_navigation",id:e}),{navigationMenu:n,isNavigationMenuResolved:o,isNavigationMenuMissing:r}=G(h=>l1n(h,e),[e]),{canCreate:s,canUpdate:i,canDelete:c,isResolving:l,hasResolved:u}=t,{records:d,isResolving:p,hasResolved:f}=Al("postType","wp_navigation",c4e),b=e?d?.length>1:d?.length>0;return{navigationMenu:n,isNavigationMenuResolved:o,isNavigationMenuMissing:r,navigationMenus:d,isResolvingNavigationMenus:p,hasResolvedNavigationMenus:f,canSwitchNavigationMenu:b,canUserCreateNavigationMenus:s,isResolvingCanUserCreateNavigationMenus:l,hasResolvedCanUserCreateNavigationMenus:u,canUserUpdateNavigationMenu:i,hasResolvedCanUserUpdateNavigationMenu:e?u:void 0,canUserDeleteNavigationMenu:c,hasResolvedCanUserDeleteNavigationMenu:e?u:void 0}}function l1n(e,t){if(!t)return{isNavigationMenuResolved:!1,isNavigationMenuMissing:!0};const{getEntityRecord:n,getEditedEntityRecord:o,hasFinishedResolution:r}=e(Me),s=["postType","wp_navigation",t],i=n(...s),c=o(...s),l=r("getEditedEntityRecord",s),u=c.status==="publish"||c.status==="draft";return{isNavigationMenuResolved:l,isNavigationMenuMissing:l&&(!i||!u),navigationMenu:u?c:null}}function oD(e){const{records:t,isResolving:n,hasResolved:o}=Al("root","menu",{per_page:-1,context:"view"}),{records:r,isResolving:s,hasResolved:i}=Al("postType","page",{parent:0,order:"asc",orderby:"id",per_page:-1,context:"view"}),{records:c,hasResolved:l}=Al("root","menuItem",{menus:e,per_page:-1,context:"view"},{enabled:!!e});return{pages:r,isResolvingPages:s,hasResolvedPages:i,hasPages:!!(i&&r?.length),menus:t,isResolvingMenus:n,hasResolvedMenus:o,hasMenus:!!(o&&t?.length),menuItems:c,hasResolvedMenuItems:l}}const l4e=({isVisible:e=!0})=>a.jsx("div",{"aria-hidden":e?void 0:!0,className:"wp-block-navigation-placeholder__preview",children:a.jsxs("div",{className:"wp-block-navigation-placeholder__actions__indicator",children:[a.jsx(wn,{icon:G3}),m("Navigation")]})});function u1n(e,t,n){return e?n==="publish"?Lt(e):xe(m("%1$s (%2$s)"),Lt(e),n):xe(m("(no title %s)"),t)}function u4e({currentMenuId:e,onSelectNavigationMenu:t,onSelectClassicMenu:n,onCreateNew:o,actionLabel:r,createNavigationMenuIsSuccess:s,createNavigationMenuIsError:i}){const c=m("Create from '%s'"),[l,u]=x.useState(!1);r=r||c;const{menus:d}=oD(),{navigationMenus:p,isResolvingNavigationMenus:f,hasResolvedNavigationMenus:b,canUserCreateNavigationMenus:h,canSwitchNavigationMenu:g,isNavigationMenuMissing:z}=nD(e),[A]=Ao("postType","wp_navigation","title"),_=x.useMemo(()=>p?.map(({id:N,title:j,status:I},P)=>{const $=u1n(j?.rendered,P+1,I);return{value:N,label:$,ariaLabel:xe(r,$),disabled:l||f||!b}})||[],[p,r,f,b,l]),v=!!p?.length,M=!!d?.length,y=!!g,k=!!h,S=v&&!e,C=!v&&b,R=b&&e===null,T=e&&z;let E="";return f?E=m("Loading…"):S||C||R||T?E=m("Choose or create a Navigation Menu"):E=A,x.useEffect(()=>{l&&(s||i)&&u(!1)},[b,s,h,i,l,R,C,S]),a.jsx(c0,{label:E,icon:Wc,toggleProps:{size:"small"},children:({onClose:N})=>a.jsxs(a.Fragment,{children:[y&&v&&a.jsx(Cn,{label:m("Menus"),children:a.jsx(kf,{value:e,onSelect:j=>{t(j),N()},choices:_})}),k&&M&&a.jsx(Cn,{label:m("Import Classic Menus"),children:d?.map(j=>{const I=Lt(j.name);return a.jsx(Ct,{onClick:async()=>{u(!0),await n(j),u(!1),N()},"aria-label":xe(c,I),disabled:l||f||!b,children:I},j.id)})}),h&&a.jsx(Cn,{label:m("Tools"),children:a.jsx(Ct,{onClick:async()=>{u(!0),await o(),u(!1),N()},disabled:l||f||!b,children:m("Create new Menu")})})]})})}function d1n({isSelected:e,currentMenuId:t,clientId:n,canUserCreateNavigationMenus:o=!1,isResolvingCanUserCreateNavigationMenus:r,onSelectNavigationMenu:s,onSelectClassicMenu:i,onCreateEmpty:c}){const{isResolvingMenus:l,hasResolvedMenus:u}=oD();x.useEffect(()=>{e&&(l&&Yt(m("Loading navigation block setup options…")),u&&Yt(m("Navigation block setup options ready.")))},[u,l,e]);const d=l&&r;return a.jsx(a.Fragment,{children:a.jsxs(vo,{className:"wp-block-navigation-placeholder",children:[a.jsx(l4e,{isVisible:!e}),a.jsx("div",{"aria-hidden":e?void 0:!0,className:"wp-block-navigation-placeholder__controls",children:a.jsxs("div",{className:"wp-block-navigation-placeholder__actions",children:[a.jsxs("div",{className:"wp-block-navigation-placeholder__actions__indicator",children:[a.jsx(wn,{icon:G3})," ",m("Navigation")]}),a.jsx("hr",{}),d&&a.jsx(Xn,{}),a.jsx(u4e,{currentMenuId:t,clientId:n,onSelectNavigationMenu:s,onSelectClassicMenu:i}),a.jsx("hr",{}),o&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:c,children:m("Start empty")})]})})]})})}function u5({icon:e}){return e==="menu"?a.jsx(wn,{icon:mde}):a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:[a.jsx(S0,{x:"4",y:"7.5",width:"16",height:"1.5"}),a.jsx(S0,{x:"4",y:"15",width:"16",height:"1.5"})]})}function loe({children:e,id:t,isOpen:n,isResponsive:o,onToggle:r,isHiddenByDefault:s,overlayBackgroundColor:i,overlayTextColor:c,hasIcon:l,icon:u}){if(!o)return e;const d=oe("wp-block-navigation__responsive-container",{"has-text-color":!!c.color||!!c?.class,[Pt("color",c?.slug)]:!!c?.slug,"has-background":!!i.color||i?.class,[Pt("background-color",i?.slug)]:!!i?.slug,"is-menu-open":n,"hidden-by-default":s}),p={color:!c?.slug&&c?.color,backgroundColor:!i?.slug&&i?.color&&i.color},f=oe("wp-block-navigation__responsive-container-open",{"always-shown":s}),b=`${t}-modal`,h={className:"wp-block-navigation__responsive-dialog",...n&&{role:"dialog","aria-modal":!0,"aria-label":m("Menu")}};return a.jsxs(a.Fragment,{children:[!n&&a.jsxs(Ce,{__next40pxDefaultSize:!0,"aria-haspopup":"true","aria-label":l&&m("Open menu"),className:f,onClick:()=>r(!0),children:[l&&a.jsx(u5,{icon:u}),!l&&m("Menu")]}),a.jsx("div",{className:d,style:p,id:b,children:a.jsx("div",{className:"wp-block-navigation__responsive-close",tabIndex:"-1",children:a.jsxs("div",{...h,children:[a.jsxs(Ce,{__next40pxDefaultSize:!0,className:"wp-block-navigation__responsive-container-close","aria-label":l&&m("Close menu"),onClick:()=>r(!1),children:[l&&a.jsx(wn,{icon:im}),!l&&m("Close")]}),a.jsx("div",{className:"wp-block-navigation__responsive-container-content",id:`${b}-content`,children:e})]})})})]})}function p1n({clientId:e,hasCustomPlaceholder:t,orientation:n,templateLock:o}){const{isImmediateParentOfSelectedBlock:r,selectedBlockHasChildren:s,isSelected:i}=G(g=>{const{getBlockCount:z,hasSelectedInnerBlock:A,getSelectedBlockClientId:_}=g(Q),v=_();return{isImmediateParentOfSelectedBlock:A(e,!1),selectedBlockHasChildren:!!z(v),isSelected:v===e}},[e]),[c,l,u]=ya("postType","wp_navigation"),d=i||r&&!s,p=x.useMemo(()=>a.jsx(l4e,{}),[]),f=!!c?.length,b=!t&&!f&&!i,h=Nt({className:"wp-block-navigation__container"},{value:c,onInput:l,onChange:u,prioritizedInserterBlocks:a1n,defaultBlock:a4e,directInsert:!0,orientation:n,templateLock:o,renderAppender:i||r&&!s||d?Ht.ButtonBlockAppender:!1,placeholder:b?p:void 0,__experimentalCaptureToolbars:!0,__unstableDisableLayoutClassNames:!0});return a.jsx("div",{...h})}function f1n(){const[e,t]=Ao("postType","wp_navigation","title");return a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Menu name"),value:e,onChange:t})}function b1n(e,t){return!d4e(e,t,(n,o)=>{if(o?.name==="core/page-list"&&n==="innerBlocks")return!0})}const d4e=(e,t,n)=>{if(e===t)return!0;if(typeof e=="object"&&e!==null&&e!==void 0&&typeof t=="object"&&t!==null&&t!==void 0){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const o in e)if(t.hasOwnProperty(o)){if(n&&n(o,e))return!0;if(!d4e(e[o],t[o],n))return!1}else return!1;return!0}return!1},h1n={};function m1n({blocks:e,createNavigationMenu:t,hasSelection:n}){const o=x.useRef();x.useEffect(()=>{o?.current||(o.current=e)},[e]);const r=b1n(o?.current,e),s=x.useContext(I1.Context),i=Nt({className:"wp-block-navigation__container"},{renderAppender:n?void 0:!1,defaultBlock:a4e,directInsert:!0}),{isSaving:c,hasResolvedAllNavigationMenus:l}=G(d=>{if(s)return h1n;const{hasFinishedResolution:p,isSavingEntityRecord:f}=d(Me);return{isSaving:f("postType","wp_navigation"),hasResolvedAllNavigationMenus:p("getEntityRecords",c1n)}},[s]);x.useEffect(()=>{s||c||!l||!n||!r||t(null,e)},[e,t,s,c,l,r,n]);const u=c?I1:"div";return a.jsx(u,{...i})}function g1n({onDelete:e}){const[t,n]=x.useState(!1),o=KB("postType","wp_navigation"),{deleteEntityRecord:r}=Oe(Me);return a.jsxs(a.Fragment,{children:[a.jsx(Ce,{__next40pxDefaultSize:!0,className:"wp-block-navigation-delete-menu-button",variant:"secondary",isDestructive:!0,onClick:()=>{n(!0)},children:m("Delete menu")}),t&&a.jsx(wf,{isOpen:!0,onConfirm:()=>{r("postType","wp_navigation",o,{force:!0}),e()},onCancel:()=>{n(!1)},confirmButtonText:m("Delete"),size:"medium",children:m("Are you sure you want to delete this Navigation Menu?")})]})}function HT({name:e,message:t=""}={}){const n=x.useRef(),{createWarningNotice:o,removeNotice:r}=Oe(mt),s=x.useCallback(c=>{n.current||(n.current=e,o(c||t,{id:n.current,type:"snackbar"}))},[n,o,t,e]),i=x.useCallback(()=>{n.current&&(r(n.current),n.current=null)},[n,r]);return[s,i]}function uoe({setAttributes:e,hasIcon:t,icon:n}){return a.jsxs(a.Fragment,{children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show icon button"),help:m("Configure the visual appearance of the button that toggles the overlay menu."),onChange:o=>e({hasIcon:o}),checked:t}),a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"wp-block-navigation__overlay-menu-icon-toggle-group",label:m("Icon"),value:n,onChange:o=>e({icon:o}),isBlock:!0,children:[a.jsx(Kn,{value:"handle","aria-label":m("handle"),label:a.jsx(u5,{icon:"handle"})}),a.jsx(Kn,{value:"menu","aria-label":m("menu"),label:a.jsx(u5,{icon:"menu"})})]})]})}function M1n(e){if(!e)return null;const t=O1n(e),n=p4e(t);return gr("blocks.navigation.__unstableMenuItemsToBlocks",n,e)}function p4e(e,t=0){let n={};return{innerBlocks:[...e].sort((s,i)=>s.menu_order-i.menu_order).map(s=>{if(s.type==="block"){const[p]=Ko(s.content.raw);return p||Ee("core/freeform",{content:s.content})}const i=s.children?.length?"core/navigation-submenu":"core/navigation-link",c=z1n(s,i,t),{innerBlocks:l=[],mapping:u={}}=s.children?.length?p4e(s.children,t+1):{};n={...n,...u};const d=Ee(i,c,l);return n[s.id]=d.clientId,d}),mapping:n}}function z1n({title:e,xfn:t,classes:n,attr_title:o,object:r,object_id:s,description:i,url:c,type:l,target:u},d,p){return r&&r==="post_tag"&&(r="tag"),{label:e?.rendered||"",...r?.length&&{type:r},kind:l?.replace("_","-")||"custom",url:c||"",...t?.length&&t.join(" ").trim()&&{rel:t.join(" ").trim()},...n?.length&&n.join(" ").trim()&&{className:n.join(" ").trim()},...o?.length&&{title:o},...s&&r!=="custom"&&{id:s},...i?.length&&{description:i},...u==="_blank"&&{opensInNewTab:!0},...d==="core/navigation-submenu"&&{isTopLevelItem:p===0},...d==="core/navigation-link"&&{isTopLevelLink:p===0}}}function O1n(e,t="id",n="parent"){const o=Object.create(null),r=[];for(const s of e)o[s[t]]={...s,children:[]},s[n]?(o[s[n]]=o[s[n]]||{},o[s[n]].children=o[s[n]].children||[],o[s[n]].children.push(o[s[t]])):r.push(o[s[t]]);return r}const f4e="success",gN="error",MN="pending",y1n="idle";let Cv=null;function A1n(e,{throwOnError:t=!1}={}){const n=Fn(),{editEntityRecord:o}=Oe(Me),[r,s]=x.useState(y1n),[i,c]=x.useState(null),l=x.useCallback(async(d,p,f="publish")=>{let b,h;try{h=await n.resolveSelect(Me).getMenuItems({menus:d,per_page:-1,context:"view"})}catch(z){throw new Error(xe(m('Unable to fetch classic menu "%s" from API.'),p),{cause:z})}if(h===null)throw new Error(xe(m('Unable to fetch classic menu "%s" from API.'),p));const{innerBlocks:g}=M1n(h);try{b=await e(p,g,f),await o("postType","wp_navigation",b.id,{status:"publish"},{throwOnError:!0})}catch(z){throw new Error(xe(m('Unable to create Navigation Menu "%s".'),p),{cause:z})}return b},[e,o,n]);return{convert:x.useCallback(async(d,p,f)=>{if(Cv!==d){if(Cv=d,!d||!p){c("Unable to convert menu. Missing menu details."),s(gN);return}return s(MN),c(null),await l(d,p,f).then(b=>(s(f4e),Cv=null,b)).catch(b=>{if(c(b?.message),s(gN),Cv=null,t)throw new Error(xe(m('Unable to create Navigation Menu "%s".'),p),{cause:b})})}},[l,t]),status:r,error:i}}function Ok(e,t){return e&&t?e+"//"+t:null}const b4e=e=>e==="header"?KP:e==="footer"?GP:e==="sidebar"?YP:Qf;function v1n(e){return G(t=>{if(!e)return;const{getBlock:n,getBlockParentsByBlockName:o}=t(Q),s=o(e,"core/template-part",!0);if(!s?.length)return;const c=(t(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[]).map(d=>({...d,icon:b4e(d.icon)})),{getCurrentTheme:l,getEditedEntityRecord:u}=t(Me);for(const d of s){const p=n(d),{theme:f=l()?.stylesheet,slug:b}=p.attributes,h=Ok(f,b),g=u("postType","wp_template_part",h);if(g?.area)return c.find(z=>z.area!=="uncategorized"&&z.area===g.area)?.label}},[e])}const x1n=["postType","wp_navigation",{status:"draft",per_page:-1}],w1n=["postType","wp_navigation",{per_page:-1,status:"publish"}];function _1n(e){const t=x.useContext(I1.Context),n=v1n(t?void 0:e),o=Fn();return x.useCallback(async()=>{if(t)return"";const{getEntityRecords:r}=o.resolveSelect(Me),[s,i]=await Promise.all([r(...x1n),r(...w1n)]),c=n?xe(m("%s navigation"),n):m("Navigation"),l=[...s,...i].reduce((d,p)=>p?.title?.raw?.startsWith(c)?d+1:d,0);return(l>0?`${c} ${l+1}`:c)||""},[t,n,o])}const doe="success",qv="error",poe="pending",foe="idle";function k1n(e){const[t,n]=x.useState(foe),[o,r]=x.useState(null),[s,i]=x.useState(null),{saveEntityRecord:c,editEntityRecord:l}=Oe(Me),u=_1n(e);return{create:x.useCallback(async(p=null,f=[],b)=>{if(p&&typeof p!="string")throw i("Invalid title supplied when creating Navigation Menu."),n(qv),new Error("Value of supplied title argument was not a string.");n(poe),r(null),i(null),p||(p=await u().catch(g=>{throw i(g?.message),n(qv),new Error("Failed to create title when saving new Navigation Menu.",{cause:g})}));const h={title:p,content:Ks(f),status:b};return c("postType","wp_navigation",h).then(g=>(r(g),n(doe),b!=="publish"&&l("postType","wp_navigation",g.id,{status:"publish"}),g)).catch(g=>{throw i(g?.message),n(qv),new Error("Unable to save new Navigation Menu",{cause:g})})},[c,l,u]),status:t,value:o,error:s,isIdle:t===foe,isPending:t===poe,isSuccess:t===doe,isError:t===qv}}const S1n=[];function C1n(e){return G(t=>{const{getBlock:n,getBlocks:o,hasSelectedInnerBlock:r}=t(Q),s=n(e).innerBlocks,i=!!s?.length,c=i?S1n:o(e);return{innerBlocks:i?s:c,hasUncontrolledInnerBlocks:i,uncontrolledInnerBlocks:s,controlledInnerBlocks:c,isInnerBlockSelected:r(e,!0)}},[e])}function UT(e){return e.ownerDocument.defaultView.getComputedStyle(e)}function boe(e,t,n){if(!e)return;t(UT(e).color);let o=e,r=UT(o).backgroundColor;for(;r==="rgba(0, 0, 0, 0)"&&o.parentNode&&o.parentNode.nodeType===o.parentNode.ELEMENT_NODE;)o=o.parentNode,r=UT(o).backgroundColor;n(r)}function d5(e,t){const{textColor:n,customTextColor:o,backgroundColor:r,customBackgroundColor:s,overlayTextColor:i,customOverlayTextColor:c,overlayBackgroundColor:l,customOverlayBackgroundColor:u,style:d}=e,p={};return t&&c?p.customTextColor=c:t&&i?p.textColor=i:o?p.customTextColor=o:n?p.textColor=n:d?.color?.text&&(p.customTextColor=d.color.text),t&&u?p.customBackgroundColor=u:t&&l?p.backgroundColor=l:s?p.customBackgroundColor=s:r?p.backgroundColor=r:d?.color?.background&&(p.customTextColor=d.color.background),p}function h4e(e){return{className:oe("wp-block-navigation__submenu-container",{"has-text-color":!!(e.textColor||e.customTextColor),[`has-${e.textColor}-color`]:!!e.textColor,"has-background":!!(e.backgroundColor||e.customBackgroundColor),[`has-${e.backgroundColor}-background-color`]:!!e.backgroundColor}),style:{color:e.customTextColor,backgroundColor:e.customBackgroundColor}}}const q1n=({className:e="",disabled:t,isMenuItem:n=!1})=>{let o=Ce;return n&&(o=Ct),a.jsx(o,{variant:"link",disabled:t,className:e,href:tn("edit.php",{post_type:"wp_navigation"}),children:m("Manage menus")})};function m4e({onCreateNew:e,isNotice:t=!1}){const[n,o]=x.useState(!1),r=()=>{o(!0),e()},s=cr(m("Navigation Menu has been deleted or is unavailable. <button>Create a new Menu?</button>"),{button:a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:r,variant:"link",disabled:n,accessibleWhenDisabled:!0})});return t?a.jsx(L1,{status:"warning",isDismissible:!1,children:s}):a.jsx(Er,{children:s})}const R1n={className:"block-editor-block-settings-menu__popover",placement:"bottom-start"},T1n=["core/navigation-link","core/navigation-submenu"];function E1n({block:e,onClose:t,expandedState:n,expand:o,setInsertedBlock:r}){const{insertBlock:s,replaceBlock:i,replaceInnerBlocks:c}=Oe(Q),l=e.clientId,u=!T1n.includes(e.name);return a.jsx(Ct,{icon:RP,disabled:u,onClick:()=>{const p=Ee("core/navigation-link");if(e.name==="core/navigation-submenu")s(p,e.innerBlocks.length,l,!1);else{const f=Ee("core/navigation-submenu",e.attributes,e.innerBlocks);i(l,f),c(f.clientId,[p],!1)}r(p),n[e.clientId]||o(e.clientId),t()},children:m("Add submenu link")})}function W1n(e){const{block:t}=e,{clientId:n}=t,{moveBlocksDown:o,moveBlocksUp:r,removeBlocks:s}=Oe(Q),i=xe(m("Remove %s"),wW({clientId:n,maximumLength:25})),c=G(l=>{const{getBlockRootClientId:u}=l(Q);return u(n)},[n]);return a.jsx(c0,{icon:Wc,label:m("Options"),className:"block-editor-block-settings-menu",popoverProps:R1n,noIcons:!0,...e,children:({onClose:l})=>a.jsxs(a.Fragment,{children:[a.jsxs(Cn,{children:[a.jsx(Ct,{icon:Ww,onClick:()=>{r([n],c),l()},children:m("Move up")}),a.jsx(Ct,{icon:tu,onClick:()=>{o([n],c),l()},children:m("Move down")}),a.jsx(E1n,{block:t,onClose:l,expanded:!0,expandedState:e.expandedState,expand:e.expand,setInsertedBlock:e.setInsertedBlock})]}),a.jsx(Cn,{children:a.jsx(Ct,{onClick:()=>{s([n],!1),l()},children:i})})]})})}const yk=(e={},t,n={})=>{const{label:o="",kind:r="",type:s=""}=n,{title:i="",url:c="",opensInNewTab:l,id:u,kind:d=r,type:p=s}=e,f=i.replace(/http(s?):\/\//gi,""),b=c.replace(/http(s?):\/\//gi,""),g=i&&i!==o&&f!==b?mE(i):o||mE(b),z=p==="post_tag"?"tag":p.replace("-","_"),A=["post","page","tag","category"].indexOf(z)>-1,v=!d&&!A||d==="custom"?"custom":d;t({...c&&{url:encodeURI(c3(c))},...g&&{label:g},...l!==void 0&&{opensInNewTab:l},...u&&Number.isInteger(u)&&{id:u},...v&&{kind:v},...z&&z!=="URL"&&{type:z}})},{PrivateQuickInserter:N1n}=e0(jn);function B1n(e,t){switch(e){case"post":case"page":return{type:"post",subtype:e};case"category":return{type:"term",subtype:"category"};case"tag":return{type:"term",subtype:"post_tag"};case"post_format":return{type:"post-format"};default:return t==="taxonomy"?{type:"term",subtype:e}:t==="post-type"?{type:"post",subtype:e}:{initialSuggestionsSearchOptions:{type:"post",subtype:"page",perPage:20}}}}function L1n({clientId:e,onBack:t}){const{rootBlockClientId:n}=G(i=>{const{getBlockRootClientId:c}=i(Q);return{rootBlockClientId:c(e)}},[e]),o=T5("firstElement"),r=vt(kc,"link-ui-block-inserter__title"),s=vt(kc,"link-ui-block-inserter__description");return e?a.jsxs("div",{className:"link-ui-block-inserter",role:"dialog","aria-labelledby":r,"aria-describedby":s,ref:o,children:[a.jsxs(qn,{children:[a.jsx("h2",{id:r,children:m("Add block")}),a.jsx("p",{id:s,children:m("Choose a block to add to your Navigation.")})]}),a.jsx(Ce,{className:"link-ui-block-inserter__back",icon:jt()?Af:Ew,onClick:i=>{i.preventDefault(),t()},size:"small",children:m("Back")}),a.jsx(N1n,{rootClientId:n,clientId:e,isAppender:!1,prioritizePatterns:!1,selectBlockOnInsert:!0,hasSearch:!1})]}):null}function P1n(e,t){const{label:n,url:o,opensInNewTab:r,type:s,kind:i}=e.link,c=s||"page",[l,u]=x.useState(!1),[d,p]=x.useState(!1),{saveEntityRecord:f}=Oe(Me),b=tie({kind:"postType",name:c});async function h(_){const v=await f("postType",c,{title:_,status:"draft"});return{id:v.id,type:c,title:Lt(v.title.rendered),url:v.link,kind:"post-type"}}const g=x.useMemo(()=>({url:o,opensInNewTab:r,title:n&&v1(n)}),[n,r,o]),z=vt(s3,"link-ui-link-control__title"),A=vt(s3,"link-ui-link-control__description");return a.jsxs(Io,{ref:t,placement:"bottom",onClose:e.onClose,anchor:e.anchor,shift:!0,children:[!l&&a.jsxs("div",{role:"dialog","aria-labelledby":z,"aria-describedby":A,children:[a.jsxs(qn,{children:[a.jsx("h2",{id:z,children:m("Add link")}),a.jsx("p",{id:A,children:m("Search for and add a link to your Navigation.")})]}),a.jsx(kc,{hasTextControl:!0,hasRichPreviews:!0,value:g,showInitialSuggestions:!0,withCreateSuggestion:b.canCreate,createSuggestion:h,createSuggestionButtonText:_=>{let v;return s==="post"?v=m("Create draft post: <mark>%s</mark>"):v=m("Create draft page: <mark>%s</mark>"),cr(xe(v,_),{mark:a.jsx("mark",{})})},noDirectEntry:!!s,noURLSuggestion:!!s,suggestionsQuery:B1n(s,i),onChange:e.onChange,onRemove:e.onRemove,onCancel:e.onCancel,renderControlBottom:()=>!g?.url?.length&&a.jsx(j1n,{focusAddBlockButton:d,setAddingBlock:()=>{u(!0),p(!1)}})})]}),l&&a.jsx(L1n,{clientId:e.clientId,onBack:()=>{u(!1),p(!0)}})]})}const s3=x.forwardRef(P1n),j1n=({setAddingBlock:e,focusAddBlockButton:t})=>{const n="listbox",o=x.useRef();return x.useEffect(()=>{t&&o.current?.focus()},[t]),a.jsx(dt,{className:"link-ui-tools",children:a.jsx(Ce,{__next40pxDefaultSize:!0,ref:o,icon:Fs,onClick:r=>{r.preventDefault(),e(!0)},"aria-haspopup":n,children:m("Add block")})})},I1n=m("Switch to '%s'"),D1n=["core/navigation-link","core/navigation-submenu"],{PrivateListView:F1n}=e0(jn);function $1n({block:e,insertedBlock:t,setInsertedBlock:n}){const{updateBlockAttributes:o}=Oe(Q),r=D1n?.includes(t?.name),s=t?.clientId===e.clientId;if(!(r&&s))return null;const c=l=>u=>{l&&o(l,u)};return a.jsx(s3,{clientId:t?.clientId,link:t?.attributes,onClose:()=>{n(null)},onChange:l=>{yk(l,c(t?.clientId),t?.attributes),n(null)},onCancel:()=>{n(null)}})}const V1n=({clientId:e,currentMenuId:t,isLoading:n,isNavigationMenuMissing:o,onCreateNew:r})=>{const s=G(l=>!!l(Q).getBlockCount(e),[e]),{navigationMenu:i}=nD(t);if(t&&o)return a.jsx(m4e,{onCreateNew:r,isNotice:!0});if(n)return a.jsx(Xn,{});const c=i?xe(m("Structure for Navigation Menu: %s"),i?.title||m("Untitled menu")):m("You have not yet created any menus. Displaying a list of your Pages");return a.jsxs("div",{className:"wp-block-navigation__menu-inspector-controls",children:[!s&&a.jsx("p",{className:"wp-block-navigation__menu-inspector-controls__empty-message",children:m("This Navigation Menu is empty.")}),a.jsx(F1n,{rootClientId:e,isExpanded:!0,description:c,showAppender:!0,blockSettingsMenu:W1n,additionalBlockContent:$1n})]})},XT=e=>{const{createNavigationMenuIsSuccess:t,createNavigationMenuIsError:n,currentMenuId:o=null,onCreateNew:r,onSelectClassicMenu:s,onSelectNavigationMenu:i,isManageMenusButtonDisabled:c,blockEditingMode:l}=e;return a.jsx(et,{group:"list",children:a.jsxs(Qt,{title:null,children:[a.jsxs(Ot,{className:"wp-block-navigation-off-canvas-editor__header",children:[a.jsx(_a,{className:"wp-block-navigation-off-canvas-editor__title",level:2,children:m("Menu")}),l==="default"&&a.jsx(u4e,{currentMenuId:o,onSelectClassicMenu:s,onSelectNavigationMenu:i,onCreateNew:r,createNavigationMenuIsSuccess:t,createNavigationMenuIsError:n,actionLabel:I1n,isManageMenusButtonDisabled:c})]}),a.jsx(V1n,{...e})]})})};function g4e({id:e,children:t}){return a.jsx(qn,{children:a.jsx("div",{id:e,className:"wp-block-navigation__description",children:t})})}function H1n({id:e}){const[t]=Ao("postType","wp_navigation","title"),n=xe(m('Navigation Menu: "%s"'),t);return a.jsx(g4e,{id:e,children:n})}function U1n({textColor:e,setTextColor:t,backgroundColor:n,setBackgroundColor:o,overlayTextColor:r,setOverlayTextColor:s,overlayBackgroundColor:i,setOverlayBackgroundColor:c,clientId:l,navRef:u}){const[d,p]=x.useState(),[f,b]=x.useState(),[h,g]=x.useState(),[z,A]=x.useState(),_=f0.OS==="web";x.useEffect(()=>{boe(u.current,b,p);const M=u.current?.querySelector('[data-type="core/navigation-submenu"] [data-type="core/navigation-link"]');M&&(r.color||i.color)&&boe(M,A,g)},[_,r.color,i.color,u]);const v=ub();return v.hasColorsOrGradients?a.jsxs(a.Fragment,{children:[a.jsx(J_,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:e.color,label:m("Text"),onColorChange:t,resetAllFilter:()=>t(),clearable:!0},{colorValue:n.color,label:m("Background"),onColorChange:o,resetAllFilter:()=>o(),clearable:!0},{colorValue:r.color,label:m("Submenu & overlay text"),onColorChange:s,resetAllFilter:()=>s(),clearable:!0},{colorValue:i.color,label:m("Submenu & overlay background"),onColorChange:c,resetAllFilter:()=>c(),clearable:!0}],panelId:l,...v,gradients:[],disableCustomGradients:!0}),a.jsxs(a.Fragment,{children:[a.jsx(Qx,{backgroundColor:d,textColor:f}),a.jsx(Qx,{backgroundColor:h,textColor:z})]})]}):null}function X1n({attributes:e,setAttributes:t,clientId:n,isSelected:o,className:r,backgroundColor:s,setBackgroundColor:i,textColor:c,setTextColor:l,overlayBackgroundColor:u,setOverlayBackgroundColor:d,overlayTextColor:p,setOverlayTextColor:f,hasSubmenuIndicatorSetting:b=!0,customPlaceholder:h=null,__unstableLayoutClassNames:g}){const{openSubmenusOnClick:z,overlayMenu:A,showSubmenuIcon:_,templateLock:v,layout:{justifyContent:M,orientation:y="horizontal",flexWrap:k="wrap"}={},hasIcon:S,icon:C="handle"}=e,R=e.ref,T=x.useCallback(ao=>{t({ref:ao})},[t]),E=`navigationMenu/${R}`,B=nk(E),N=Jr(),{menus:j}=oD(),[I,P]=HT({name:"block-library/core/navigation/status"}),[$,F]=HT({name:"block-library/core/navigation/classic-menu-conversion"}),[X,Z]=HT({name:"block-library/core/navigation/permissions/update"}),{create:V,status:ee,error:te,value:J,isPending:ue,isSuccess:ce,isError:me}=k1n(n),de=async()=>{await V("")},{hasUncontrolledInnerBlocks:Ae,uncontrolledInnerBlocks:ye,isInnerBlockSelected:Ne,innerBlocks:je}=C1n(n),ie=!!je.find(ao=>ao.name==="core/navigation-submenu"),{replaceInnerBlocks:we,selectBlock:re,__unstableMarkNextChangeAsNotPersistent:pe}=Oe(Q),[ke,Se]=x.useState(!1),[se,L]=x.useState(!1),{hasResolvedNavigationMenus:U,isNavigationMenuResolved:ne,isNavigationMenuMissing:ve,canUserUpdateNavigationMenu:qe,hasResolvedCanUserUpdateNavigationMenu:Pe,canUserDeleteNavigationMenu:rt,hasResolvedCanUserDeleteNavigationMenu:qt,canUserCreateNavigationMenus:wt,isResolvingCanUserCreateNavigationMenus:Bt,hasResolvedCanUserCreateNavigationMenus:ae}=nD(R),H=U&&ve,{convert:Y,status:fe,error:Re}=A1n(V),be=fe===MN,ze=x.useCallback((ao,Ic={focusNavigationBlock:!1})=>{const{focusNavigationBlock:Ui}=Ic;T(ao),Ui&&re(n)},[re,n,T]),nt=!ve&&ne,Mt=Ae&&!nt,{getNavigationFallbackId:ot}=e0(G(Me)),Ue=R||Mt?null:ot();x.useEffect(()=>{R||Mt||!Ue||(pe(),T(Ue))},[R,T,Mt,Ue,pe]);const yt=x.useRef(),fn="nav",Ln=!R&&!ue&&!be&&U&&j?.length===0&&!Ae,Mo=!U||ue||be||!!(R&&!nt&&!be),rr=e.style?.typography?.textDecoration,Jo=G(ao=>ao(Q).__unstableHasActiveBlockOverlayActive(n),[n]),To=A!=="never",Br=Be({ref:yt,className:oe(r,{"items-justified-right":M==="right","items-justified-space-between":M==="space-between","items-justified-left":M==="left","items-justified-center":M==="center","is-vertical":y==="vertical","no-wrap":k==="nowrap","is-responsive":To,"has-text-color":!!c.color||!!c?.class,[Pt("color",c?.slug)]:!!c?.slug,"has-background":!!s.color||s.class,[Pt("background-color",s?.slug)]:!!s?.slug,[`has-text-decoration-${rr}`]:rr,"block-editor-block-content-overlay":Jo},g),style:{color:!c?.slug&&c?.color,backgroundColor:!s?.slug&&s?.color}}),Rt=async ao=>Y(ao.id,ao.name,"draft"),Qe=ao=>{ze(ao)};x.useEffect(()=>{P(),ue&&Yt(m("Creating Navigation Menu.")),ce&&(ze(J?.id,{focusNavigationBlock:!0}),I(m("Navigation Menu successfully created."))),me&&I(m("Failed to create Navigation Menu."))},[ee,te,J?.id,me,ce,ue,ze,P,I]),x.useEffect(()=>{F(),fe===MN&&Yt(m("Classic menu importing.")),fe===f4e&&($(m("Classic menu imported successfully.")),ze(J?.id,{focusNavigationBlock:!0})),fe===gN&&$(m("Classic menu import failed."))},[fe,Re,F,$,J?.id,ze]),x.useEffect(()=>{!o&&!Ne&&Z(),(o||Ne)&&(R&&!H&&Pe&&!qe&&X(m("You do not have permission to edit this Menu. Any changes made will not be saved.")),!R&&ae&&!wt&&X(m("You do not have permission to create Navigation Menus.")))},[o,Ne,qe,Pe,wt,ae,R,Z,X,H]);const xt=wt||qe,Gt=oe("wp-block-navigation__overlay-menu-preview",{open:se}),On=!_&&!z?m('The current menu options offer reduced accessibility for users and are not recommended. Enabling either "Open on Click" or "Show arrow" offers enhanced accessibility by allowing keyboard users to browse submenus selectively.'):"",$n=x.useRef(!0);x.useEffect(()=>{!$n.current&&On&&Yt(On),$n.current=!1},[On]);const Jn=vt(uoe,"overlay-menu-preview"),pr=a.jsxs(a.Fragment,{children:[a.jsx(et,{children:b&&a.jsxs(Qt,{title:m("Display"),children:[To&&a.jsxs(a.Fragment,{children:[a.jsxs(Ce,{__next40pxDefaultSize:!0,className:Gt,onClick:()=>{L(!se)},"aria-label":m("Overlay menu controls"),"aria-controls":Jn,"aria-expanded":se,children:[S&&a.jsxs(a.Fragment,{children:[a.jsx(u5,{icon:C}),a.jsx(wn,{icon:im})]}),!S&&a.jsxs(a.Fragment,{children:[a.jsx("span",{children:m("Menu")}),a.jsx("span",{children:m("Close")})]})]}),a.jsx("div",{id:Jn,children:se&&a.jsx(uoe,{setAttributes:t,hasIcon:S,icon:C,hidden:!se})})]}),a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Overlay Menu"),"aria-label":m("Configure overlay menu"),value:A,help:m("Collapses the navigation options in a menu icon opening an overlay."),onChange:ao=>t({overlayMenu:ao}),isBlock:!0,children:[a.jsx(Kn,{value:"never",label:m("Off")}),a.jsx(Kn,{value:"mobile",label:m("Mobile")}),a.jsx(Kn,{value:"always",label:m("Always")})]}),ie&&a.jsxs(a.Fragment,{children:[a.jsx("h3",{children:m("Submenus")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,checked:z,onChange:ao=>{t({openSubmenusOnClick:ao,...ao&&{showSubmenuIcon:!0}})},label:m("Open on click")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,checked:_,onChange:ao=>{t({showSubmenuIcon:ao})},disabled:e.openSubmenusOnClick,label:m("Show arrow")}),On&&a.jsx("div",{children:a.jsx(L1,{spokenMessage:null,status:"warning",isDismissible:!1,children:On})})]})]})}),a.jsx(et,{group:"color",children:a.jsx(U1n,{textColor:c,setTextColor:l,backgroundColor:s,setBackgroundColor:i,overlayTextColor:p,setOverlayTextColor:f,overlayBackgroundColor:u,setOverlayBackgroundColor:d,clientId:n,navRef:yt})})]}),O0=`${n}-desc`,o1=A==="always",yr=!xt||!U;if(Mt&&!ue)return a.jsxs(fn,{...Br,"aria-describedby":Ln?void 0:O0,children:[a.jsx(g4e,{id:O0,children:m("Unsaved Navigation Menu.")}),a.jsx(XT,{clientId:n,createNavigationMenuIsSuccess:ce,createNavigationMenuIsError:me,currentMenuId:R,isNavigationMenuMissing:ve,isManageMenusButtonDisabled:yr,onCreateNew:de,onSelectClassicMenu:Rt,onSelectNavigationMenu:Qe,isLoading:Mo,blockEditingMode:N}),N==="default"&&pr,a.jsx(loe,{id:n,onToggle:Se,isOpen:ke,hasIcon:S,icon:C,isResponsive:To,isHiddenByDefault:o1,overlayBackgroundColor:u,overlayTextColor:p,children:a.jsx(m1n,{createNavigationMenu:V,blocks:ye,hasSelection:o||Ne})})]});if(R&&ve)return a.jsxs(fn,{...Br,children:[a.jsx(XT,{clientId:n,createNavigationMenuIsSuccess:ce,createNavigationMenuIsError:me,currentMenuId:R,isNavigationMenuMissing:ve,isManageMenusButtonDisabled:yr,onCreateNew:de,onSelectClassicMenu:Rt,onSelectNavigationMenu:Qe,isLoading:Mo,blockEditingMode:N}),a.jsx(m4e,{onCreateNew:de})]});if(nt&&B)return a.jsx("div",{...Br,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})});const Js=h||d1n;return Ln&&h?a.jsx(fn,{...Br,children:a.jsx(Js,{isSelected:o,currentMenuId:R,clientId:n,canUserCreateNavigationMenus:wt,isResolvingCanUserCreateNavigationMenus:Bt,onSelectNavigationMenu:Qe,onSelectClassicMenu:Rt,onCreateEmpty:de})}):a.jsx(GE,{kind:"postType",type:"wp_navigation",id:R,children:a.jsxs(TO,{uniqueId:E,children:[a.jsx(XT,{clientId:n,createNavigationMenuIsSuccess:ce,createNavigationMenuIsError:me,currentMenuId:R,isNavigationMenuMissing:ve,isManageMenusButtonDisabled:yr,onCreateNew:de,onSelectClassicMenu:Rt,onSelectNavigationMenu:Qe,isLoading:Mo,blockEditingMode:N}),N==="default"&&pr,N==="default"&&nt&&a.jsxs(et,{group:"advanced",children:[Pe&&qe&&a.jsx(f1n,{}),qt&&rt&&a.jsx(g1n,{onDelete:()=>{we(n,[]),I(m("Navigation Menu successfully deleted."))}}),a.jsx(q1n,{disabled:yr,className:"wp-block-navigation-manage-menus-button"})]}),a.jsxs(fn,{...Br,"aria-describedby":!Ln&&!Mo?O0:void 0,children:[Mo&&!o1&&a.jsx("div",{className:"wp-block-navigation__loading-indicator-container",children:a.jsx(Xn,{className:"wp-block-navigation__loading-indicator"})}),(!Mo||o1)&&a.jsxs(a.Fragment,{children:[a.jsx(H1n,{id:O0}),a.jsx(loe,{id:n,onToggle:Se,hasIcon:S,icon:C,isOpen:ke,isResponsive:To,isHiddenByDefault:o1,overlayBackgroundColor:u,overlayTextColor:p,children:nt&&a.jsx(p1n,{clientId:n,hasCustomPlaceholder:!!h,templateLock:v,orientation:y})})]})]})]})})}const G1n=AO({textColor:"color"},{backgroundColor:"color"},{overlayBackgroundColor:"color"},{overlayTextColor:"color"})(X1n);function K1n({attributes:e}){if(!e.ref)return a.jsx(Ht.Content,{})}const zN={fontStyle:"var:preset|font-style|",fontWeight:"var:preset|font-weight|",textDecoration:"var:preset|text-decoration|",textTransform:"var:preset|text-transform|"},K2=({navigationMenuId:e,...t})=>({...t,ref:e}),p5=e=>{if(e.layout)return e;const{itemsJustification:t,orientation:n,...o}=e;return(t||n)&&Object.assign(o,{layout:{type:"flex",...t&&{justifyContent:t},...n&&{orientation:n}}}),o},Y1n={attributes:{navigationMenuId:{type:"number"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"mobile"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}}},save(){return a.jsx(Ht.Content,{})},isEligible:({navigationMenuId:e})=>!!e,migrate:K2},Z1n={attributes:{navigationMenuId:{type:"number"},orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"never"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}}},save(){return a.jsx(Ht.Content,{})},isEligible:({itemsJustification:e,orientation:t})=>!!e||!!t,migrate:Co(K2,p5)},Q1n={attributes:{orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"never"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}}},save(){return a.jsx(Ht.Content,{})},migrate:Co(K2,p5,A1),isEligible({style:e}){return e?.typography?.fontFamily}},J1n=function(e){return delete e.isResponsive,{...e,overlayMenu:"mobile"}},esn=function(e){var t;return{...e,style:{...e.style,typography:Object.fromEntries(Object.entries((t=e.style.typography)!==null&&t!==void 0?t:{}).map(([n,o])=>{const r=zN[n];if(r&&o.startsWith(r)){const s=o.slice(r.length);return n==="textDecoration"&&s==="strikethrough"?[n,"line-through"]:[n,s]}return[n,o]}))}}},tsn=[Y1n,Z1n,Q1n,{attributes:{orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},isResponsive:{type:"boolean",default:"false"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0}},isEligible(e){return e.isResponsive},migrate:Co(K2,p5,A1,J1n),save(){return a.jsx(Ht.Content,{})}},{attributes:{orientation:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,fontSize:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,color:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0},save(){return a.jsx(Ht.Content,{})},isEligible(e){if(!e.style||!e.style.typography)return!1;for(const t in zN){const n=e.style.typography[t];if(n&&n.startsWith(zN[t]))return!0}return!1},migrate:Co(K2,p5,A1,esn)},{attributes:{className:{type:"string"},textColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},fontSize:{type:"string"},customFontSize:{type:"number"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean"}},isEligible(e){return e.rgbTextColor||e.rgbBackgroundColor},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0},migrate:Co(K2,e=>{const{rgbTextColor:t,rgbBackgroundColor:n,...o}=e;return{...o,customTextColor:e.textColor?void 0:e.rgbTextColor,customBackgroundColor:e.backgroundColor?void 0:e.rgbBackgroundColor}}),save(){return a.jsx(Ht.Content,{})}}],rD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/navigation",title:"Navigation",category:"theme",allowedBlocks:["core/navigation-link","core/search","core/social-links","core/page-list","core/spacer","core/home-link","core/site-title","core/site-logo","core/navigation-submenu","core/loginout","core/buttons"],description:"A collection of blocks that allow visitors to get around your site.",keywords:["menu","navigation","links"],textdomain:"default",attributes:{ref:{type:"number"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"mobile"},icon:{type:"string",default:"handle"},hasIcon:{type:"boolean",default:!0},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"},maxNestingLevel:{type:"number",default:5},templateLock:{type:["string","boolean"],enum:["all","insert","contentOnly",!1]}},providesContext:{textColor:"textColor",customTextColor:"customTextColor",backgroundColor:"backgroundColor",customBackgroundColor:"customBackgroundColor",overlayTextColor:"overlayTextColor",customOverlayTextColor:"customOverlayTextColor",overlayBackgroundColor:"overlayBackgroundColor",customOverlayBackgroundColor:"customOverlayBackgroundColor",fontSize:"fontSize",customFontSize:"customFontSize",showSubmenuIcon:"showSubmenuIcon",openSubmenusOnClick:"openSubmenusOnClick",style:"style",maxNestingLevel:"maxNestingLevel"},supports:{align:["wide","full"],ariaLabel:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalLetterSpacing:!0,__experimentalTextDecoration:!0,__experimentalSkipSerialization:["textDecoration"],__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}},layout:{allowSwitching:!1,allowInheriting:!1,allowVerticalAlignment:!1,allowSizingOnChildren:!0,default:{type:"flex"}},interactivity:!0,renaming:!1},editorStyle:"wp-block-navigation-editor",style:"wp-block-navigation"},{name:M4e}=rD,z4e={icon:G3,example:{attributes:{overlayMenu:"never"},innerBlocks:[{name:"core/navigation-link",attributes:{label:m("Home"),url:"https://make.wordpress.org/"}},{name:"core/navigation-link",attributes:{label:m("About"),url:"https://make.wordpress.org/"}},{name:"core/navigation-link",attributes:{label:m("Contact"),url:"https://make.wordpress.org/"}}]},edit:G1n,save:K1n,__experimentalLabel:({ref:e})=>{if(!e)return;const t=uo(Me).getEditedEntityRecord("postType","wp_navigation",e);if(t?.title)return Lt(t.title)},deprecated:tsn},nsn=()=>it({name:M4e,metadata:rD,settings:z4e}),osn=Object.freeze(Object.defineProperty({__proto__:null,init:nsn,metadata:rD,name:M4e,settings:z4e},Symbol.toStringTag,{value:"Module"})),rsn={name:"core/navigation-link"},ssn=e=>{const[t,n]=x.useState(!1);return x.useEffect(()=>{const{ownerDocument:o}=e.current;function r(c){i(c)}function s(){n(!1)}function i(c){e.current.contains(c.target)?n(!0):n(!1)}return o.addEventListener("dragstart",r),o.addEventListener("dragend",s),o.addEventListener("dragenter",i),()=>{o.removeEventListener("dragstart",r),o.removeEventListener("dragend",s),o.removeEventListener("dragenter",i)}},[e]),t},isn=(e,t,n)=>{const o=e==="post-type"||t==="post"||t==="page",r=Number.isInteger(n),s=G(l=>{if(!o)return null;const{getEntityRecord:u}=l(Me);return u("postType",t,n)?.status},[o,t,n]);return[o&&r&&s&&s==="trash",s==="draft"]};function asn(e){let t="";switch(e){case"post":t=m("Select post");break;case"page":t=m("Select page");break;case"category":t=m("Select category");break;case"tag":t=m("Select tag");break;default:t=m("Add link")}return t}function csn({attributes:e,setAttributes:t,setIsLabelFieldFocused:n}){const{label:o,url:r,description:s,title:i,rel:c}=e;return a.jsxs(En,{label:m("Settings"),children:[a.jsx(tt,{hasValue:()=>!!o,label:m("Text"),onDeselect:()=>t({label:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Text"),value:o?v1(o):"",onChange:l=>{t({label:l})},autoComplete:"off",onFocus:()=>n(!0),onBlur:()=>n(!1)})}),a.jsx(tt,{hasValue:()=>!!r,label:m("Link"),onDeselect:()=>t({url:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Link"),value:r?c3(r):"",onChange:l=>{yk({url:l},t,e)},autoComplete:"off"})}),a.jsx(tt,{hasValue:()=>!!s,label:m("Description"),onDeselect:()=>t({description:""}),isShownByDefault:!0,children:a.jsx(Li,{__nextHasNoMarginBottom:!0,label:m("Description"),value:s||"",onChange:l=>{t({description:l})},help:m("The description will be displayed in the menu if the current theme supports it.")})}),a.jsx(tt,{hasValue:()=>!!i,label:m("Title attribute"),onDeselect:()=>t({title:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Title attribute"),value:i||"",onChange:l=>{t({title:l})},autoComplete:"off",help:m("Additional information to help clarify the purpose of the link.")})}),a.jsx(tt,{hasValue:()=>!!c,label:m("Rel attribute"),onDeselect:()=>t({rel:""}),isShownByDefault:!0,children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Rel attribute"),value:c||"",onChange:l=>{t({rel:l})},autoComplete:"off",help:m("The relationship of the linked URL as space-separated link types.")})})]})}function lsn({attributes:e,isSelected:t,setAttributes:n,insertBlocksAfter:o,mergeBlocks:r,onReplace:s,context:i,clientId:c}){const{id:l,label:u,type:d,url:p,description:f,kind:b}=e,[h,g]=isn(b,d,l),{maxNestingLevel:z}=i,{replaceBlock:A,__unstableMarkNextChangeAsNotPersistent:_,selectBlock:v,selectPreviousBlock:M}=Oe(Q),[y,k]=x.useState(t&&!p),[S,C]=x.useState(null),[R,T]=x.useState(null),E=x.useRef(null),B=ssn(E),N=m("Add label…"),j=x.useRef(),I=x.useRef(),P=Fr(p),[$,F]=x.useState(!1),{isAtMaxNesting:X,isTopLevelLink:Z,isParentOfSelectedBlock:V,hasChildren:ee}=G(Se=>{const{getBlockCount:se,getBlockName:L,getBlockRootClientId:U,hasSelectedInnerBlock:ne,getBlockParentsByBlockName:ve}=Se(Q);return{isAtMaxNesting:ve(c,["core/navigation-link","core/navigation-submenu"]).length>=z,isTopLevelLink:L(U(c))==="core/navigation",isParentOfSelectedBlock:ne(c,!0),hasChildren:!!se(c)}},[c,z]),{getBlocks:te}=G(Q),J=()=>{let Se=te(c);Se.length===0&&(Se=[Ee("core/navigation-link")],v(Se[0].clientId));const se=Ee("core/navigation-submenu",e,Se);A(c,se)};x.useEffect(()=>{ee&&(_(),J())},[ee]),x.useEffect(()=>{!P&&p&&y&&Pf(jf(u))&&/^.+\.[a-z]+/.test(u)&&ue()},[P,p,y,u]);function ue(){j.current.focus();const{ownerDocument:Se}=j.current,{defaultView:se}=Se,L=se.getSelection(),U=Se.createRange();U.selectNodeContents(j.current),L.removeAllRanges(),L.addRange(U)}function ce(){n({url:void 0,label:void 0,id:void 0,kind:void 0,type:void 0,opensInNewTab:!1}),k(!1)}const{textColor:me,customTextColor:de,backgroundColor:Ae,customBackgroundColor:ye}=d5(i,!Z);function Ne(Se){lc.primary(Se,"k")&&(Se.preventDefault(),Se.stopPropagation(),k(!0),C(j.current))}const je=Be({ref:xn([T,E]),className:oe("wp-block-navigation-item",{"is-editing":t||V,"is-dragging-within":B,"has-link":!!p,"has-child":ee,"has-text-color":!!me||!!de,[Pt("color",me)]:!!me,"has-background":!!Ae||ye,[Pt("background-color",Ae)]:!!Ae}),style:{color:!me&&de,backgroundColor:!Ae&&ye},onKeyDown:Ne}),ie=Nt({...je,className:"remove-outline"},{defaultBlock:rsn,directInsert:!0,renderAppender:!1});(!p||h||g)&&(je.onClick=()=>{k(!0),C(j.current)});const we=oe("wp-block-navigation-item__content",{"wp-block-navigation-link__placeholder":!p||h||g}),re=asn(d),pe=`(${m(h?"Invalid":"Draft")})`,ke=m(h||g?"This item has been deleted, or is a draft":"This item is missing a link");return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[a.jsx(Vt,{name:"link",icon:xa,title:m("Link"),shortcut:j1.primary("k"),onClick:Se=>{k(!0),C(Se.currentTarget)}}),!X&&a.jsx(Vt,{name:"submenu",icon:RP,title:m("Add submenu"),onClick:J})]})}),a.jsx(et,{children:a.jsx(csn,{attributes:e,setAttributes:n,setIsLabelFieldFocused:F})}),a.jsxs("div",{...je,children:[a.jsxs("a",{className:we,children:[p?a.jsxs(a.Fragment,{children:[!h&&!g&&!$&&a.jsxs(a.Fragment,{children:[a.jsx(Ie,{ref:j,identifier:"label",className:"wp-block-navigation-item__label",value:u,onChange:Se=>n({label:Se}),onMerge:r,onReplace:s,__unstableOnSplitAtEnd:()=>o(Ee("core/navigation-link")),"aria-label":m("Navigation link text"),placeholder:N,withoutInteractiveFormatting:!0}),f&&a.jsx("span",{className:"wp-block-navigation-item__description",children:f})]}),(h||g||$)&&a.jsx("div",{className:"wp-block-navigation-link__placeholder-text wp-block-navigation-link__label",children:a.jsx(B0,{text:ke,children:a.jsx("span",{"aria-label":m("Navigation link text"),children:`${Lt(u)} ${h||g?pe:""}`.trim()})})})]}):a.jsx("div",{className:"wp-block-navigation-link__placeholder-text",children:a.jsx(B0,{text:ke,children:a.jsx("span",{children:re})})}),y&&a.jsx(s3,{ref:I,clientId:c,link:e,onClose:()=>{if(!p){I.current.contains(window.document.activeElement)&&M(c,!0),s([]);return}k(!1),S?(S.focus(),C(null)):j.current?j.current.focus():M(c,!0)},anchor:R,onRemove:ce,onChange:Se=>{yk(Se,n,e)}})]}),a.jsx("div",{...ie})]})]})}function usn(){return a.jsx(Ht.Content,{})}function dsn(e){switch(e){case"post":return VP;case"page":return wa;case"tag":return XP;case"category":return gz;default:return RZe}}function psn(e,t){if(t!=="core/navigation-link")return e;if(e.variations){const n=(r,s)=>r.type===s.type,o=e.variations.map(r=>({...r,...!r.icon&&{icon:dsn(r.name)},...!r.isActive&&{isActive:n}}));return{...e,variations:o}}return e}const fsn={from:[{type:"block",blocks:["core/site-logo"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/spacer"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/home-link"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/social-links"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/search"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/page-list"],transform:()=>Ee("core/navigation-link")},{type:"block",blocks:["core/buttons"],transform:()=>Ee("core/navigation-link")}],to:[{type:"block",blocks:["core/navigation-submenu"],transform:(e,t)=>Ee("core/navigation-submenu",e,t)},{type:"block",blocks:["core/spacer"],transform:()=>Ee("core/spacer")},{type:"block",blocks:["core/site-logo"],transform:()=>Ee("core/site-logo")},{type:"block",blocks:["core/home-link"],transform:()=>Ee("core/home-link")},{type:"block",blocks:["core/social-links"],transform:()=>Ee("core/social-links")},{type:"block",blocks:["core/search"],transform:()=>Ee("core/search",{showLabel:!1,buttonUseIcon:!0,buttonPosition:"button-inside"})},{type:"block",blocks:["core/page-list"],transform:()=>Ee("core/page-list")},{type:"block",blocks:["core/buttons"],transform:({label:e,url:t,rel:n,title:o,opensInNewTab:r})=>Ee("core/buttons",{},[Ee("core/button",{text:e,url:t,rel:n,title:o,linkTarget:r?"_blank":void 0})])}]},sD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/navigation-link",title:"Custom Link",category:"design",parent:["core/navigation"],allowedBlocks:["core/navigation-link","core/navigation-submenu","core/page-list"],description:"Add a page, link, or another item to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelLink:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","maxNestingLevel","style"],supports:{reusable:!1,html:!1,__experimentalSlashInserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},renaming:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-navigation-link-editor",style:"wp-block-navigation-link"},{name:O4e}=sD,y4e={icon:Mde,__experimentalLabel:({label:e})=>e,merge(e,{label:t=""}){return{...e,label:e.label+t}},edit:lsn,save:usn,example:{attributes:{label:We("Example Link","navigation link preview example"),url:"https://example.com"}},deprecated:[{isEligible(e){return e.nofollow},attributes:{label:{type:"string"},type:{type:"string"},nofollow:{type:"boolean"},description:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"}},migrate({nofollow:e,...t}){return{rel:e?"nofollow":"",...t}},save(){return a.jsx(Ht.Content,{})}}],transforms:fsn},bsn=()=>(Bn("blocks.registerBlockType","core/navigation-link",psn),it({name:O4e,metadata:sD,settings:y4e})),hsn=Object.freeze(Object.defineProperty({__proto__:null,init:bsn,metadata:sD,name:O4e,settings:y4e},Symbol.toStringTag,{value:"Module"})),msn=()=>a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:a.jsx(he,{d:"M1.50002 4L6.00002 8L10.5 4",strokeWidth:"1.5"})}),hoe=["core/navigation-link","core/navigation-submenu","core/page-list"],gsn={name:"core/navigation-link"},Msn=e=>{const[t,n]=x.useState(!1);return x.useEffect(()=>{const{ownerDocument:o}=e.current;function r(c){i(c)}function s(){n(!1)}function i(c){e.current.contains(c.target)?n(!0):n(!1)}return o.addEventListener("dragstart",r),o.addEventListener("dragend",s),o.addEventListener("dragenter",i),()=>{o.removeEventListener("dragstart",r),o.removeEventListener("dragend",s),o.removeEventListener("dragenter",i)}},[]),t};function zsn({attributes:e,isSelected:t,setAttributes:n,mergeBlocks:o,onReplace:r,context:s,clientId:i}){const{label:c,url:l,description:u,rel:d,title:p}=e,{showSubmenuIcon:f,maxNestingLevel:b,openSubmenusOnClick:h}=s,{__unstableMarkNextChangeAsNotPersistent:g,replaceBlock:z,selectBlock:A}=Oe(Q),[_,v]=x.useState(!1),[M,y]=x.useState(null),[k,S]=x.useState(null),C=x.useRef(null),R=Msn(C),T=m("Add text…"),E=x.useRef(),B=Qo(),{parentCount:N,isParentOfSelectedBlock:j,isImmediateParentOfSelectedBlock:I,hasChildren:P,selectedBlockHasChildren:$,onlyDescendantIsEmptyLink:F}=G(we=>{const{hasSelectedInnerBlock:re,getSelectedBlockClientId:pe,getBlockParentsByBlockName:ke,getBlock:Se,getBlockCount:se,getBlockOrder:L}=we(Q);let U;const ne=pe(),ve=L(ne);if(ve?.length===1){const qe=Se(ve[0]);U=qe?.name==="core/navigation-link"&&!qe?.attributes?.label}return{parentCount:ke(i,"core/navigation-submenu").length,isParentOfSelectedBlock:re(i,!0),isImmediateParentOfSelectedBlock:re(i,!1),hasChildren:!!se(i),selectedBlockHasChildren:!!ve?.length,onlyDescendantIsEmptyLink:U}},[i]),X=Fr(P);x.useEffect(()=>{!h&&!l&&v(!0)},[]),x.useEffect(()=>{t||v(!1)},[t]),x.useEffect(()=>{_&&l&&Pf(jf(c))&&/^.+\.[a-z]+/.test(c)&&Z()},[l]);function Z(){E.current.focus();const{ownerDocument:we}=E.current,{defaultView:re}=we,pe=re.getSelection(),ke=we.createRange();ke.selectNodeContents(E.current),pe.removeAllRanges(),pe.addRange(ke)}const{textColor:V,customTextColor:ee,backgroundColor:te,customBackgroundColor:J}=d5(s,N>0);function ue(we){lc.primary(we,"k")&&(we.preventDefault(),we.stopPropagation(),v(!0),y(E.current))}const ce=Be({ref:xn([S,C]),className:oe("wp-block-navigation-item",{"is-editing":t||j,"is-dragging-within":R,"has-link":!!l,"has-child":P,"has-text-color":!!V||!!ee,[Pt("color",V)]:!!V,"has-background":!!te||J,[Pt("background-color",te)]:!!te,"open-on-click":h}),style:{color:!V&&ee,backgroundColor:!te&&J},onKeyDown:ue}),me=d5(s,!0),de=N>=b?hoe.filter(we=>we!=="core/navigation-submenu"):hoe,Ae=h4e(me),ye=Nt(Ae,{allowedBlocks:de,defaultBlock:gsn,directInsert:!0,__experimentalCaptureToolbars:!0,renderAppender:t||I&&!$||P?Ht.ButtonBlockAppender:!1}),Ne=h?"button":"a";function je(){const we=Ee("core/navigation-link",e);z(i,we)}x.useEffect(()=>{!P&&X&&(g(),je())},[P,X]);const ie=!$||F;return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[!h&&a.jsx(Vt,{name:"link",icon:xa,title:m("Link"),shortcut:j1.primary("k"),onClick:we=>{v(!0),y(we.currentTarget)}}),a.jsx(Vt,{name:"revert",icon:TQe,title:m("Convert to Link"),onClick:je,className:"wp-block-navigation__submenu__revert",disabled:!ie})]})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({label:"",url:"",description:"",title:"",rel:""})},dropdownMenuProps:B,children:[a.jsx(tt,{label:m("Text"),isShownByDefault:!0,hasValue:()=>!!c,onDeselect:()=>n({label:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:c||"",onChange:we=>{n({label:we})},label:m("Text"),autoComplete:"off"})}),a.jsx(tt,{label:m("Link"),isShownByDefault:!0,hasValue:()=>!!l,onDeselect:()=>n({url:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:l||"",onChange:we=>{n({url:we})},label:m("Link"),autoComplete:"off"})}),a.jsx(tt,{label:m("Description"),isShownByDefault:!0,hasValue:()=>!!u,onDeselect:()=>n({description:""}),children:a.jsx(Li,{__nextHasNoMarginBottom:!0,value:u||"",onChange:we=>{n({description:we})},label:m("Description"),help:m("The description will be displayed in the menu if the current theme supports it.")})}),a.jsx(tt,{label:m("Title attribute"),isShownByDefault:!0,hasValue:()=>!!p,onDeselect:()=>n({title:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:p||"",onChange:we=>{n({title:we})},label:m("Title attribute"),autoComplete:"off",help:m("Additional information to help clarify the purpose of the link.")})}),a.jsx(tt,{label:m("Rel attribute"),isShownByDefault:!0,hasValue:()=>!!d,onDeselect:()=>n({rel:""}),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,value:d||"",onChange:we=>{n({rel:we})},label:m("Rel attribute"),autoComplete:"off",help:m("The relationship of the linked URL as space-separated link types.")})})]})}),a.jsxs("div",{...ce,children:[a.jsxs(Ne,{className:"wp-block-navigation-item__content",children:[a.jsx(Ie,{ref:E,identifier:"label",className:"wp-block-navigation-item__label",value:c,onChange:we=>n({label:we}),onMerge:o,onReplace:r,"aria-label":m("Navigation link text"),placeholder:T,withoutInteractiveFormatting:!0,onClick:()=>{!h&&!l&&(v(!0),y(E.current))}}),u&&a.jsx("span",{className:"wp-block-navigation-item__description",children:u}),!h&&_&&a.jsx(s3,{clientId:i,link:e,onClose:()=>{v(!1),M?(M.focus(),y(null)):A(i)},anchor:k,onRemove:()=>{n({url:""}),Yt(m("Link removed."),"assertive")},onChange:we=>{yk(we,n,e)}})]}),(f||h)&&a.jsx("span",{className:"wp-block-navigation__submenu-icon",children:a.jsx(msn,{})}),a.jsx("div",{...ye})]})]})}function Osn(){return a.jsx(Ht.Content,{})}const ysn={to:[{type:"block",blocks:["core/navigation-link"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:e=>Ee("core/navigation-link",e)},{type:"block",blocks:["core/spacer"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/spacer")},{type:"block",blocks:["core/site-logo"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/site-logo")},{type:"block",blocks:["core/home-link"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/home-link")},{type:"block",blocks:["core/social-links"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/social-links")},{type:"block",blocks:["core/search"],isMatch:(e,t)=>t?.innerBlocks?.length===0,transform:()=>Ee("core/search")}]},iD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/navigation-submenu",title:"Submenu",category:"design",parent:["core/navigation"],description:"Add a submenu to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelItem:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","maxNestingLevel","openSubmenusOnClick","style"],supports:{reusable:!1,html:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-navigation-submenu-editor",style:"wp-block-navigation-submenu"},{name:A4e}=iD,v4e={icon:({context:e})=>e==="list-view"?wa:RP,__experimentalLabel(e,{context:t}){const{label:n}=e,o=e?.metadata?.name;return t==="list-view"&&(o||n)&&e?.metadata?.name||n},edit:zsn,save:Osn,transforms:ysn},Asn=()=>it({name:A4e,metadata:iD,settings:v4e}),vsn=Object.freeze(Object.defineProperty({__proto__:null,init:Asn,metadata:iD,name:A4e,settings:v4e},Symbol.toStringTag,{value:"Module"}));function xsn(){return a.jsx("div",{...Be(),children:a.jsx("span",{children:m("Page break")})})}function wsn(){return a.jsx(i0,{children:"<!--nextpage-->"})}const _sn={from:[{type:"raw",schema:{"wp-block":{attributes:["data-block"]}},isMatch:e=>e.dataset&&e.dataset.block==="core/nextpage",transform(){return Ee("core/nextpage",{})}}]},aD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/nextpage",title:"Page Break",category:"design",description:"Separate your content into a multi-page experience.",keywords:["next page","pagination"],parent:["core/post-content"],textdomain:"default",supports:{customClassName:!1,className:!1,html:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-nextpage-editor"},{name:x4e}=aD,w4e={icon:MQe,example:{},transforms:_sn,edit:xsn,save:wsn},ksn=()=>it({name:x4e,metadata:aD,settings:w4e}),Ssn=Object.freeze(Object.defineProperty({__proto__:null,init:ksn,metadata:aD,name:x4e,settings:w4e},Symbol.toStringTag,{value:"Module"})),GT=new WeakMap;function Csn(){const e=Fn();if(!GT.has(e)){const t=new Map;GT.set(e,qsn.bind(null,t))}return GT.get(e)}function qsn(e,{name:t,blocks:n}){const o=[...n];for(;o.length;){const s=o.shift();for(const i of(r=s.innerBlocks)!==null&&r!==void 0?r:[]){var r;o.unshift(i)}s.name==="core/pattern"&&Rsn(e,t,s.attributes.slug)}}function Rsn(e,t,n){if(e.has(t)||e.set(t,new Set),e.get(t).add(n),_4e(e,t))throw new TypeError(`Pattern ${t} has a circular dependency and cannot be rendered.`)}function _4e(e,t,n=new Set,o=new Set){var r;n.add(t),o.add(t);const s=(r=e.get(t))!==null&&r!==void 0?r:new Set;for(const i of s)if(n.has(i)){if(o.has(i))return!0}else if(_4e(e,i,n,o))return!0;return o.delete(t),!1}const Tsn=({attributes:e,clientId:t})=>{const n=Fn(),o=G(g=>g(Q).__experimentalGetParsedPattern(e.slug),[e.slug]),r=G(g=>g(Me).getCurrentTheme()?.stylesheet,[]),{replaceBlocks:s,setBlockEditingMode:i,__unstableMarkNextChangeAsNotPersistent:c}=Oe(Q),{getBlockRootClientId:l,getBlockEditingMode:u}=G(Q),[d,p]=x.useState(!1),f=Csn();function b(g){return g.innerBlocks.find(z=>z.name==="core/template-part")&&(g.innerBlocks=g.innerBlocks.map(z=>(z.name==="core/template-part"&&z.attributes.theme===void 0&&(z.attributes.theme=r),z))),g.name==="core/template-part"&&g.attributes.theme===void 0&&(g.attributes.theme=r),g}x.useEffect(()=>{if(!d&&o?.blocks){try{f(o)}catch{p(!0);return}window.queueMicrotask(()=>{const g=l(t),z=o.blocks.map(_=>jo(b(_)));z.length===1&&o.categories?.length>0&&(z[0].attributes={...z[0].attributes,metadata:{...z[0].attributes.metadata,categories:o.categories,patternName:o.name,name:z[0].attributes.metadata.name||o.title}});const A=u(g);n.batch(()=>{c(),i(g,"default"),c(),s(t,z),c(),i(g,A)})})}},[t,d,o,c,s,u,i,l]);const h=Be();return d?a.jsx("div",{...h,children:a.jsx(Er,{children:xe(m('Pattern "%s" cannot be rendered inside itself.'),o?.name)})}):a.jsx("div",{...h})},cD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/pattern",title:"Pattern placeholder",category:"theme",description:"Show a block pattern.",supports:{html:!1,inserter:!1,renaming:!1,interactivity:{clientNavigation:!0}},textdomain:"default",attributes:{slug:{type:"string"}}},{name:k4e}=cD,S4e={edit:Tsn},Esn=()=>it({name:k4e,metadata:cD,settings:S4e}),Wsn=Object.freeze(Object.defineProperty({__proto__:null,init:Esn,metadata:cD,name:k4e,settings:S4e},Symbol.toStringTag,{value:"Module"}));function Nsn(e=[]){const t={},n=[];return e.forEach(({id:o,title:r,link:s,type:i,parent:c})=>{var l;const u=(l=t[o]?.innerBlocks)!==null&&l!==void 0?l:[];t[o]=Ee("core/navigation-link",{id:o,label:r.rendered,url:s,type:i,kind:"post-type"},u),c?(t[c]||(t[c]={innerBlocks:[]}),t[c].innerBlocks.push(t[o])):n.push(t[o])}),n}function C4e(e,t){for(const n of e){if(n.attributes.id===t)return n;if(n.innerBlocks&&n.innerBlocks.length){const o=C4e(n.innerBlocks,t);if(o)return o}}return null}function Bsn(e=[],t=null){let n=Nsn(e);if(t){const r=C4e(n,t);r&&r.innerBlocks&&(n=r.innerBlocks)}const o=r=>{r.forEach((s,i,c)=>{const{attributes:l,innerBlocks:u}=s;if(u.length!==0){o(u);const d=Ee("core/navigation-submenu",l,u);c[i]=d}})};return o(n),n}function Lsn({clientId:e,pages:t,parentClientId:n,parentPageID:o}){const{replaceBlock:r,selectBlock:s}=Oe(Q);return()=>{const i=Bsn(t,o);r(e,i),s(n)}}const q4e=m("This Navigation Menu displays your website's pages. Editing it will enable you to add, delete, or reorder pages. However, new pages will no longer be added automatically.");function ON({onClick:e,onClose:t,disabled:n}){return a.jsxs(Zo,{onRequestClose:t,title:m("Edit Page List"),className:"wp-block-page-list-modal",aria:{describedby:vt(ON,"wp-block-page-list-modal__description")},children:[a.jsx("p",{id:vt(ON,"wp-block-page-list-modal__description"),children:q4e}),a.jsxs("div",{className:"wp-block-page-list-modal-buttons",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:t,children:m("Cancel")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",accessibleWhenDisabled:!0,disabled:n,onClick:e,children:m("Edit")})]})]})}const moe=100,goe=()=>{};function Psn({blockProps:e,innerBlocksProps:t,hasResolvedPages:n,blockList:o,pages:r,parentPageID:s}){if(!n)return a.jsx("div",{...e,children:a.jsx("div",{className:"wp-block-page-list__loading-indicator-container",children:a.jsx(Xn,{className:"wp-block-page-list__loading-indicator"})})});if(r===null)return a.jsx("div",{...e,children:a.jsx(L1,{status:"warning",isDismissible:!1,children:m("Page List: Cannot retrieve Pages.")})});if(r.length===0)return a.jsx("div",{...e,children:a.jsx(L1,{status:"info",isDismissible:!1,children:m("Page List: Cannot retrieve Pages.")})});if(o.length===0){const i=r.find(c=>c.id===s);return i?.title?.rendered?a.jsx("div",{...e,children:a.jsx(Er,{children:xe(m('Page List: "%s" page has no children.'),i.title.rendered)})}):a.jsx("div",{...e,children:a.jsx(L1,{status:"warning",isDismissible:!1,children:m("Page List: Cannot retrieve Pages.")})})}if(r.length>0)return a.jsx("ul",{...t})}function jsn({context:e,clientId:t,attributes:n,setAttributes:o}){const{parentPageID:r}=n,[s,i]=x.useState(!1),c=x.useCallback(()=>i(!0),[]),l=()=>i(!1),u=Qo(),{records:d,hasResolved:p}=Al("postType","page",{per_page:moe,_fields:["id","link","menu_order","parent","title","type"],orderby:"menu_order",order:"asc"}),f="showSubmenuIcon"in e&&d?.length>0&&d?.length<=moe,b=x.useMemo(()=>d===null?new Map:d.sort((T,E)=>T.menu_order===E.menu_order?T.title.rendered.localeCompare(E.title.rendered):T.menu_order-E.menu_order).reduce((T,E)=>{const{parent:B}=E;return T.has(B)?T.get(B).push(E):T.set(B,[E]),T},new Map),[d]),h=Be({className:oe("wp-block-page-list",{"has-text-color":!!e.textColor,[Pt("color",e.textColor)]:!!e.textColor,"has-background":!!e.backgroundColor,[Pt("background-color",e.backgroundColor)]:!!e.backgroundColor}),style:{...e.style?.color}}),g=x.useMemo(function R(T=0,E=0){const B=b.get(T);return B?.length?B.reduce((N,j)=>{const I=b.has(j.id),P={value:j.id,label:"— ".repeat(E)+j.title.rendered,rawName:j.title.rendered};return N.push(P),I&&N.push(...R(j.id,E+1)),N},[]):[]},[b]),z=x.useMemo(function R(T=r){const E=b.get(T);return E?.length?E.reduce((B,N)=>{const j=b.has(N.id),I={id:N.id,label:N.title?.rendered?.trim()!==""?N.title?.rendered:m("(no title)"),title:N.title?.rendered?.trim()!==""?N.title?.rendered:m("(no title)"),link:N.url,hasChildren:j};let P=null;const $=R(N.id);return P=Ee("core/page-list-item",I,$),B.push(P),B},[]):[]},[b,r]),{isNested:A,hasSelectedChild:_,parentClientId:v,hasDraggedChild:M,isChildOfNavigation:y}=G(R=>{const{getBlockParentsByBlockName:T,hasSelectedInnerBlock:E,hasDraggedInnerBlock:B}=R(Q),N=T(t,"core/navigation-submenu",!0),j=T(t,"core/navigation",!0);return{isNested:N.length>0,isChildOfNavigation:j.length>0,hasSelectedChild:E(t,!0),hasDraggedChild:B(t,!0),parentClientId:j[0]}},[t]),k=Lsn({clientId:t,pages:d,parentClientId:v,parentPageID:r}),S=Nt(h,{renderAppender:!1,__unstableDisableDropZone:!0,templateLock:y?!1:"all",onInput:goe,onChange:goe,value:z}),{selectBlock:C}=Oe(Q);return x.useEffect(()=>{(_||M)&&(c(),C(v))},[_,M,v,C,c]),x.useEffect(()=>{o({isNested:A})},[A,o]),a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{o({parentPageID:0})},dropdownMenuProps:u,children:[g.length>0&&a.jsx(tt,{label:m("Parent Page"),hasValue:()=>r!==0,onDeselect:()=>o({parentPageID:0}),isShownByDefault:!0,children:a.jsx(nb,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,className:"editor-page-attributes__parent",label:m("Parent"),value:r,options:g,onChange:R=>o({parentPageID:R??0}),help:m("Choose a page to show only its subpages.")})}),f&&a.jsxs("div",{style:{gridColumn:"1 / -1"},children:[a.jsx("p",{children:q4e}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",accessibleWhenDisabled:!0,disabled:!p,onClick:k,children:m("Edit")})]})]})}),f&&a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"other",children:a.jsx(Vt,{title:m("Edit"),onClick:c,children:m("Edit")})}),s&&a.jsx(ON,{onClick:k,onClose:l,disabled:!p})]}),a.jsx(Psn,{blockProps:h,innerBlocksProps:S,hasResolvedPages:p,blockList:z,pages:d,parentPageID:r})]})}const lD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/page-list",title:"Page List",category:"widgets",allowedBlocks:["core/page-list-item"],description:"Display a list of all pages.",keywords:["menu","navigation"],textdomain:"default",attributes:{parentPageID:{type:"integer",default:0},isNested:{type:"boolean",default:!1}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","style","openSubmenusOnClick"],supports:{reusable:!1,html:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},color:{text:!0,background:!0,link:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},spacing:{padding:!0,margin:!0,__experimentalDefaultControls:{padding:!1,margin:!1}}},editorStyle:"wp-block-page-list-editor",style:"wp-block-page-list"},{name:R4e}=lD,T4e={icon:zQe,example:{},edit:jsn},Isn=()=>it({name:R4e,metadata:lD,settings:T4e}),Dsn=Object.freeze(Object.defineProperty({__proto__:null,init:Isn,metadata:lD,name:R4e,settings:T4e},Symbol.toStringTag,{value:"Module"})),Moe=()=>a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:a.jsx(he,{d:"M1.50002 4L6.00002 8L10.5 4",strokeWidth:"1.5"})});function Fsn(){return G(e=>{if(!e(Me).canUser("read",{kind:"root",name:"site"}))return;const n=e(Me).getEntityRecord("root","site");return n?.show_on_front==="page"&&n?.page_on_front},[])}function $sn({context:e,attributes:t}){const{id:n,label:o,link:r,hasChildren:s,title:i}=t,c="showSubmenuIcon"in e,l=Fsn(),u=d5(e,!0),d=h4e(u),p=Be(d,{className:"wp-block-pages-list__item"}),f=Nt(p);return a.jsxs("li",{className:oe("wp-block-pages-list__item",{"has-child":s,"wp-block-navigation-item":c,"open-on-click":e.openSubmenusOnClick,"open-on-hover-click":!e.openSubmenusOnClick&&e.showSubmenuIcon,"menu-item-home":n===l}),children:[s&&e.openSubmenusOnClick?a.jsxs(a.Fragment,{children:[a.jsx("button",{type:"button",className:"wp-block-navigation-item__content wp-block-navigation-submenu__toggle","aria-expanded":"false",children:Lt(o)}),a.jsx("span",{className:"wp-block-page-list__submenu-icon wp-block-navigation__submenu-icon",children:a.jsx(Moe,{})})]}):a.jsx("a",{className:oe("wp-block-pages-list__item__link",{"wp-block-navigation-item__content":c}),href:r,children:Lt(i)}),s&&a.jsxs(a.Fragment,{children:[!e.openSubmenusOnClick&&e.showSubmenuIcon&&a.jsx("button",{className:"wp-block-navigation-item__content wp-block-navigation-submenu__toggle wp-block-page-list__submenu-icon wp-block-navigation__submenu-icon","aria-expanded":"false",type:"button",children:a.jsx(Moe,{})}),a.jsx("ul",{...f})]})]},n)}const uD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/page-list-item",title:"Page List Item",category:"widgets",parent:["core/page-list"],description:"Displays a page inside a list of all pages.",keywords:["page","menu","navigation"],textdomain:"default",attributes:{id:{type:"number"},label:{type:"string"},title:{type:"string"},link:{type:"string"},hasChildren:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","style","openSubmenusOnClick"],supports:{reusable:!1,html:!1,lock:!1,inserter:!1,__experimentalToolbar:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-page-list-editor",style:"wp-block-page-list"},{name:E4e}=uD,W4e={__experimentalLabel:({label:e})=>e,icon:wa,example:{},edit:$sn},Vsn=()=>it({name:E4e,metadata:uD,settings:W4e}),Hsn=Object.freeze(Object.defineProperty({__proto__:null,init:Vsn,metadata:uD,name:E4e,settings:W4e},Symbol.toStringTag,{value:"Module"})),t2={className:!1},N4e={align:{type:"string"},content:{type:"string",source:"html",selector:"p",default:""},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},textColor:{type:"string"},backgroundColor:{type:"string"},fontSize:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]},style:{type:"object"}},Rv=e=>{if(!e.customTextColor&&!e.customBackgroundColor&&!e.customFontSize)return e;const t={};(e.customTextColor||e.customBackgroundColor)&&(t.color={}),e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),e.customFontSize&&(t.typography={fontSize:e.customFontSize});const{customTextColor:n,customBackgroundColor:o,customFontSize:r,...s}=e;return{...s,style:t}},{style:lgn,...Xg}=N4e,Usn=[{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},save({attributes:e}){const{align:t,content:n,dropCap:o,direction:r}=e,s=oe({"has-drop-cap":t===(jt()?"left":"right")||t==="center"?!1:o,[`has-text-align-${t}`]:t});return a.jsx("p",{...Be.save({className:s,dir:r}),children:a.jsx(Ie.Content,{value:n})})}},{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},migrate:Rv,save({attributes:e}){const{align:t,content:n,dropCap:o,backgroundColor:r,textColor:s,customBackgroundColor:i,customTextColor:c,fontSize:l,customFontSize:u,direction:d}=e,p=Pt("color",s),f=Pt("background-color",r),b=Wx(l),h=oe({"has-text-color":s||c,"has-background":r||i,"has-drop-cap":o,[`has-text-align-${t}`]:t,[b]:b,[p]:p,[f]:f}),g={backgroundColor:f?void 0:i,color:p?void 0:c,fontSize:b?void 0:u};return a.jsx(Ie.Content,{tagName:"p",style:g,className:h||void 0,value:n,dir:d})}},{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},migrate:Rv,save({attributes:e}){const{align:t,content:n,dropCap:o,backgroundColor:r,textColor:s,customBackgroundColor:i,customTextColor:c,fontSize:l,customFontSize:u,direction:d}=e,p=Pt("color",s),f=Pt("background-color",r),b=Wx(l),h=oe({"has-text-color":s||c,"has-background":r||i,"has-drop-cap":o,[b]:b,[p]:p,[f]:f}),g={backgroundColor:f?void 0:i,color:p?void 0:c,fontSize:b?void 0:u,textAlign:t};return a.jsx(Ie.Content,{tagName:"p",style:g,className:h||void 0,value:n,dir:d})}},{supports:t2,attributes:{...Xg,customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"},width:{type:"string"}},migrate:Rv,save({attributes:e}){const{width:t,align:n,content:o,dropCap:r,backgroundColor:s,textColor:i,customBackgroundColor:c,customTextColor:l,fontSize:u,customFontSize:d}=e,p=Pt("color",i),f=Pt("background-color",s),b=u&&`is-${u}-text`,h=oe({[`align${t}`]:t,"has-background":s||c,"has-drop-cap":r,[b]:b,[p]:p,[f]:f}),g={backgroundColor:f?void 0:c,color:p?void 0:l,fontSize:b?void 0:d,textAlign:n};return a.jsx(Ie.Content,{tagName:"p",style:g,className:h||void 0,value:o})}},{supports:t2,attributes:{...Xg,fontSize:{type:"number"}},save({attributes:e}){const{width:t,align:n,content:o,dropCap:r,backgroundColor:s,textColor:i,fontSize:c}=e,l=oe({[`align${t}`]:t,"has-background":s,"has-drop-cap":r}),u={backgroundColor:s,color:i,fontSize:c,textAlign:n};return a.jsx("p",{style:u,className:l||void 0,children:o})},migrate(e){return Rv({...e,customFontSize:Number.isFinite(e.fontSize)?e.fontSize:void 0,customTextColor:e.textColor&&e.textColor[0]==="#"?e.textColor:void 0,customBackgroundColor:e.backgroundColor&&e.backgroundColor[0]==="#"?e.backgroundColor:void 0})}},{supports:t2,attributes:{...N4e,content:{type:"string",source:"html",default:""}},save({attributes:e}){return a.jsx(i0,{children:e.content})},migrate(e){return e}}];function Xsn(e){const{batch:t}=Fn(),{moveBlocksToPosition:n,replaceInnerBlocks:o,duplicateBlocks:r,insertBlock:s}=Oe(Q),{getBlockRootClientId:i,getBlockIndex:c,getBlockOrder:l,getBlockName:u,getBlock:d,getNextBlockClientId:p,canInsertBlockType:f}=G(Q),b=x.useRef(e);return b.current=e,Mn(h=>{function g(z){if(z.defaultPrevented||z.keyCode!==Gr)return;const{content:A,clientId:_}=b.current;if(A.length)return;const v=i(_);if(!Et(u(v),"__experimentalOnEnter",!1))return;const M=l(v),y=M.indexOf(_);if(y===M.length-1){let C=v;for(;!f(u(_),i(C));)C=i(C);typeof C=="string"&&(z.preventDefault(),n([_],v,i(C),c(C)+1));return}const k=Mr();if(!f(k,i(v)))return;z.preventDefault();const S=d(v);t(()=>{r([v]);const C=c(v);o(v,S.innerBlocks.slice(0,y)),o(p(v),S.innerBlocks.slice(y+1)),s(Ee(k),C+1,i(v),!0)})}return h.addEventListener("keydown",g),()=>{h.removeEventListener("keydown",g)}},[])}function Gsn({direction:e,setDirection:t}){return jt()&&a.jsx(Vt,{icon:$Ze,title:We("Left to right","editor button"),isActive:e==="ltr",onClick:()=>{t(e==="ltr"?void 0:"ltr")}})}function f5(e){return e===(jt()?"left":"right")||e==="center"}function Ksn({clientId:e,attributes:t,setAttributes:n,name:o}){const[r]=Un("typography.dropCap");if(!r)return null;const{align:s,dropCap:i}=t;let c;f5(s)?c=m("Not available for aligned text."):i?c=m("Showing large initial letter."):c=m("Show a large initial letter.");const l=An(o,"typography.defaultControls.dropCap",!1);return a.jsx(et,{group:"typography",children:a.jsx(tt,{hasValue:()=>!!i,label:m("Drop cap"),isShownByDefault:l,onDeselect:()=>n({dropCap:void 0}),resetAllFilter:()=>({dropCap:void 0}),panelId:e,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Drop cap"),checked:!!i,onChange:()=>n({dropCap:!i}),help:c,disabled:f5(s)})})})}function Ysn({attributes:e,mergeBlocks:t,onReplace:n,onRemove:o,setAttributes:r,clientId:s,isSelected:i,name:c}){const l=G(z=>e0(z(Q)).isZoomOut()),{align:u,content:d,direction:p,dropCap:f}=e,b=Be({ref:Xsn({clientId:s,content:d}),className:oe({"has-drop-cap":f5(u)?!1:f,[`has-text-align-${u}`]:u}),style:{direction:p}}),h=Jr();let{placeholder:g}=e;return l?g="":g||(g=m("Type / to choose a block")),a.jsxs(a.Fragment,{children:[h==="default"&&a.jsxs(bt,{group:"block",children:[a.jsx(nr,{value:u,onChange:z=>r({align:z,dropCap:f5(z)?!1:f})}),a.jsx(Gsn,{direction:p,setDirection:z=>r({direction:z})})]}),i&&a.jsx(Ksn,{name:c,clientId:s,attributes:e,setAttributes:r}),a.jsx(Ie,{identifier:"content",tagName:"p",...b,value:d,onChange:z=>r({content:z}),onMerge:t,onReplace:n,onRemove:o,"aria-label":Ie.isEmpty(d)?m("Empty block; start writing or type forward slash to choose a block"):m("Block: Paragraph"),"data-empty":Ie.isEmpty(d),placeholder:g,"data-custom-placeholder":g&&!l?!0:void 0,__unstableEmbedURLOnPaste:!0,__unstableAllowPrefixTransformations:!0})]})}function Zsn({attributes:e}){const{align:t,content:n,dropCap:o,direction:r}=e,s=oe({"has-drop-cap":t===(jt()?"left":"right")||t==="center"?!1:o,[`has-text-align-${t}`]:t});return a.jsx("p",{...Be.save({className:s,dir:r}),children:a.jsx(Ie.Content,{value:n})})}const{name:zoe}={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/paragraph",title:"Paragraph",category:"text",description:"Start with the basic building block of all narrative.",keywords:["text"],textdomain:"default",attributes:{align:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"p",role:"content"},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]}},supports:{splitting:!0,anchor:!0,className:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"p",__unstablePasteTextInline:!0,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-paragraph-editor",style:"wp-block-paragraph"},Qsn={from:[{type:"raw",priority:20,selector:"p",schema:({phrasingContentSchema:e,isPaste:t})=>({p:{children:e,attributes:t?[]:["style","id"]}}),transform(e){const t=Wl(zoe,e.outerHTML),{textAlign:n}=e.style||{};return(n==="left"||n==="center"||n==="right")&&(t.align=n),Ee(zoe,t)}}]},dD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/paragraph",title:"Paragraph",category:"text",description:"Start with the basic building block of all narrative.",keywords:["text"],textdomain:"default",attributes:{align:{type:"string"},content:{type:"rich-text",source:"rich-text",selector:"p",role:"content"},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]}},supports:{splitting:!0,anchor:!0,className:!1,__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"p",__unstablePasteTextInline:!0,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-paragraph-editor",style:"wp-block-paragraph"},{name:pD}=dD,B4e={icon:zde,example:{attributes:{content:m("In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.")}},__experimentalLabel(e,{context:t}){const n=e?.metadata?.name;if(t==="list-view"&&n)return n;if(t==="accessibility"){if(n)return n;const{content:o}=e;return!o||o.length===0?m("Empty"):o}},transforms:Qsn,deprecated:Usn,merge(e,t){return{content:(e.content||"")+(t.content||"")}},edit:Ysn,save:Zsn},Jsn=()=>it({name:pD,metadata:dD,settings:B4e}),ein=Object.freeze(Object.defineProperty({__proto__:null,init:Jsn,metadata:dD,name:pD,settings:B4e},Symbol.toStringTag,{value:"Module"})),tin=25,nin={who:"authors",per_page:100};function oin({isSelected:e,context:{postType:t,postId:n,queryId:o},attributes:r,setAttributes:s}){const i=Number.isFinite(o),{authorId:c,authorDetails:l,authors:u,supportsAuthor:d}=G(R=>{var T;const{getEditedEntityRecord:E,getUser:B,getUsers:N,getPostType:j}=R(Me),I=E("postType",t,n)?.author;return{authorId:I,authorDetails:I?B(I):null,authors:N(nin),supportsAuthor:(T=j(t)?.supports?.author)!==null&&T!==void 0?T:!1}},[t,n]),{editEntityRecord:p}=Oe(Me),{textAlign:f,showAvatar:b,showBio:h,byline:g,isLink:z,linkTarget:A}=r,_=[],v=l?.name||m("Post Author");l?.avatar_urls&&Object.keys(l.avatar_urls).forEach(R=>{_.push({value:R,label:`${R} x ${R}`})});const M=Be({className:oe({[`has-text-align-${f}`]:f})}),y=u?.length?u.map(({id:R,name:T})=>({value:R,label:T})):[],k=R=>{p("postType",t,n,{author:R})},S=y.length>=tin,C=!!n&&!i&&y.length>0;return d?a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsxs(dt,{spacing:4,className:"wp-block-post-author__inspector-settings",children:[C&&(S&&a.jsx(nb,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Author"),options:y,value:c,onChange:k,allowReset:!1})||a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Author"),value:c,options:y,onChange:k})),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show avatar"),checked:b,onChange:()=>s({showAvatar:!b})}),b&&a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Avatar size"),value:r.avatarSize,options:_,onChange:R=>{s({avatarSize:Number(R)})}}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show bio"),checked:h,onChange:()=>s({showBio:!h})}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link author name to author page"),checked:z,onChange:()=>s({isLink:!z})}),z&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:R=>s({linkTarget:R?"_blank":"_self"}),checked:A==="_blank"})]})})}),a.jsx(bt,{group:"block",children:a.jsx(nr,{value:f,onChange:R=>{s({textAlign:R})}})}),a.jsxs("div",{...M,children:[b&&l?.avatar_urls&&a.jsx("div",{className:"wp-block-post-author__avatar",children:a.jsx("img",{width:r.avatarSize,src:l.avatar_urls[r.avatarSize],alt:l.name})}),a.jsxs("div",{className:"wp-block-post-author__content",children:[(!Ie.isEmpty(g)||e)&&a.jsx(Ie,{identifier:"byline",className:"wp-block-post-author__byline","aria-label":m("Post author byline text"),placeholder:m("Write byline…"),value:g,onChange:R=>s({byline:R})}),a.jsx("p",{className:"wp-block-post-author__name",children:z?a.jsx("a",{href:"#post-author-pseudo-link",onClick:R=>R.preventDefault(),children:v}):v}),h&&a.jsx("p",{className:"wp-block-post-author__bio",dangerouslySetInnerHTML:{__html:l?.description}})]})]})]}):a.jsx("div",{...M,children:xe(m("This post type (%s) does not support the author."),t)})}const fD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-author",title:"Author",category:"theme",description:"Display post author details such as name, avatar, and bio.",textdomain:"default",attributes:{textAlign:{type:"string"},avatarSize:{type:"number",default:48},showAvatar:{type:"boolean",default:!0},showBio:{type:"boolean"},byline:{type:"string"},isLink:{type:"boolean",default:!1,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},usesContext:["postType","postId","queryId"],supports:{html:!1,spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDuotone:".wp-block-post-author__avatar img",__experimentalDefaultControls:{background:!0,text:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-post-author-editor",style:"wp-block-post-author"},{name:L4e}=fD,P4e={icon:DP,example:{viewportWidth:350,attributes:{showBio:!0,byline:m("Posted by")}},edit:oin},rin=()=>it({name:L4e,metadata:fD,settings:P4e}),sin=Object.freeze(Object.defineProperty({__proto__:null,init:rin,metadata:fD,name:L4e,settings:P4e},Symbol.toStringTag,{value:"Module"}));function iin({context:{postType:e,postId:t},attributes:{textAlign:n,isLink:o,linkTarget:r},setAttributes:s}){const{authorName:i,supportsAuthor:c}=G(f=>{var b;const{getEditedEntityRecord:h,getUser:g,getPostType:z}=f(Me),A=h("postType",e,t)?.author;return{authorName:A?g(A):null,supportsAuthor:(b=z(e)?.supports?.author)!==null&&b!==void 0?b:!1}},[e,t]),l=Be({className:oe({[`has-text-align-${n}`]:n})}),u=i?.name||m("Author Name"),d=o?a.jsx("a",{href:"#author-pseudo-link",onClick:f=>f.preventDefault(),className:"wp-block-post-author-name__link",children:u}):u,p=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:n,onChange:f=>{s({textAlign:f})}})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{s({isLink:!1,linkTarget:"_self"})},dropdownMenuProps:p,children:[a.jsx(tt,{label:m("Link to author archive"),isShownByDefault:!0,hasValue:()=>o,onDeselect:()=>s({isLink:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link to author archive"),onChange:()=>s({isLink:!o}),checked:o})}),o&&a.jsx(tt,{label:m("Open in new tab"),isShownByDefault:!0,hasValue:()=>r!=="_self",onDeselect:()=>s({linkTarget:"_self"}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:f=>s({linkTarget:f?"_blank":"_self"}),checked:r==="_blank"})})]})}),a.jsx("div",{...l,children:c?d:xe(m("This post type (%s) does not support the author."),e)})]})}const ain={from:[{type:"block",blocks:["core/post-author"],transform:({textAlign:e})=>Ee("core/post-author-name",{textAlign:e})}],to:[{type:"block",blocks:["core/post-author"],transform:({textAlign:e})=>Ee("core/post-author",{textAlign:e})}]},bD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-author-name",title:"Author Name",category:"theme",description:"The author name.",textdomain:"default",attributes:{textAlign:{type:"string"},isLink:{type:"boolean",default:!1,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},usesContext:["postType","postId"],example:{viewportWidth:350},supports:{html:!1,spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-author-name"},{name:j4e}=bD,I4e={icon:DP,transforms:ain,edit:iin},cin=()=>it({name:j4e,metadata:bD,settings:I4e}),lin=Object.freeze(Object.defineProperty({__proto__:null,init:cin,metadata:bD,name:j4e,settings:I4e},Symbol.toStringTag,{value:"Module"}));function uin({context:{postType:e,postId:t},attributes:{textAlign:n},setAttributes:o}){const{authorDetails:r}=G(c=>{const{getEditedEntityRecord:l,getUser:u}=c(Me),d=l("postType",e,t)?.author;return{authorDetails:d?u(d):null}},[e,t]),s=Be({className:oe({[`has-text-align-${n}`]:n})}),i=r?.description||m("Author Biography");return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:n,onChange:c=>{o({textAlign:c})}})}),a.jsx("div",{...s,dangerouslySetInnerHTML:{__html:i}})]})}const hD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-author-biography",title:"Author Biography",category:"theme",description:"The author biography.",textdomain:"default",attributes:{textAlign:{type:"string"}},usesContext:["postType","postId"],example:{viewportWidth:350},supports:{spacing:{margin:!0,padding:!0},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-author-biography"},{name:D4e}=hD,F4e={icon:DP,edit:uin},din=()=>it({name:D4e,metadata:hD,settings:F4e}),pin=Object.freeze(Object.defineProperty({__proto__:null,init:din,metadata:hD,name:D4e,settings:F4e},Symbol.toStringTag,{value:"Module"})),fin=[["core/avatar"],["core/comment-author-name"],["core/comment-date"],["core/comment-content"],["core/comment-reply-link"],["core/comment-edit-link"]];function bin({attributes:{commentId:e},setAttributes:t}){const[n,o]=x.useState(e),r=Be(),s=Nt(r,{template:fin});return e?a.jsx("div",{...s}):a.jsx("div",{...r,children:a.jsxs(vo,{icon:Tw,label:We("Post Comment","block title"),instructions:m("To show a comment, input the comment ID."),children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,value:e,onChange:i=>o(parseInt(i))}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:()=>{t({commentId:n})},children:m("Save")})]})})}function hin(){const e=Be.save(),t=Nt.save(e);return a.jsx("div",{...t})}const mD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/post-comment",title:"Comment (deprecated)",category:"theme",allowedBlocks:["core/avatar","core/comment-author-name","core/comment-content","core/comment-date","core/comment-edit-link","core/comment-reply-link"],description:"This block is deprecated. Please use the Comments block instead.",textdomain:"default",attributes:{commentId:{type:"number"}},providesContext:{commentId:"commentId"},supports:{html:!1,inserter:!1,interactivity:{clientNavigation:!0}}},{name:$4e}=mD,V4e={icon:U3,edit:bin,save:hin},min=()=>it({name:$4e,metadata:mD,settings:V4e}),gin=Object.freeze(Object.defineProperty({__proto__:null,init:min,metadata:mD,name:$4e,settings:V4e},Symbol.toStringTag,{value:"Module"}));function Min({attributes:e,context:t,setAttributes:n}){const{textAlign:o}=e,{postId:r}=t,[s,i]=x.useState(),c=Be({className:oe({[`has-text-align-${o}`]:o})});x.useEffect(()=>{if(!r)return;const d=r;Tt({path:tn("/wp/v2/comments",{post:r}),parse:!1}).then(p=>{d===r&&i(p.headers.get("X-WP-Total"))})},[r]);const l=r&&s!==void 0,u={...c.style,textDecoration:l?c.style?.textDecoration:void 0};return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:d=>{n({textAlign:d})}})}),a.jsx("div",{...c,style:u,children:l?s:a.jsx(Er,{children:m("Post Comments Count block: post not found.")})})]})}const gD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/post-comments-count",title:"Comments Count",category:"theme",description:"Display a post's comments count.",textdomain:"default",attributes:{textAlign:{type:"string"}},usesContext:["postId"],supports:{html:!1,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:H4e}=gD,U4e={icon:_de,edit:Min},zin=()=>it({name:H4e,metadata:gD,settings:U4e}),Oin=Object.freeze(Object.defineProperty({__proto__:null,init:zin,metadata:gD,name:H4e,settings:U4e},Symbol.toStringTag,{value:"Module"}));function X4e({attributes:e,context:t,setAttributes:n}){const{textAlign:o}=e,{postId:r,postType:s}=t,i=vt(X4e),c=xe("comments-form-edit-%d-desc",i),l=Be({className:oe({[`has-text-align-${o}`]:o}),"aria-describedby":c});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:u=>{n({textAlign:u})}})}),a.jsxs("div",{...l,children:[a.jsx(OAe,{postId:r,postType:s}),a.jsx(qn,{id:c,children:m("Comments form disabled in editor.")})]})]})}const MD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-comments-form",title:"Comments Form",category:"theme",description:"Display a post's comments form.",textdomain:"default",attributes:{textAlign:{type:"string"}},usesContext:["postId","postType"],supports:{html:!1,color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-post-comments-form-editor",style:["wp-block-post-comments-form","wp-block-buttons","wp-block-button"],example:{attributes:{textAlign:"center"}}},{name:G4e}=MD,K4e={icon:xQe,edit:X4e},yin=()=>it({name:G4e,metadata:MD,settings:K4e}),Ain=Object.freeze(Object.defineProperty({__proto__:null,init:yin,metadata:MD,name:G4e,settings:K4e},Symbol.toStringTag,{value:"Module"}));function vin({context:e,attributes:t,setAttributes:n}){const{textAlign:o}=t,{postType:r,postId:s}=e,[i,c]=x.useState(),l=Be({className:oe({[`has-text-align-${o}`]:o})});x.useEffect(()=>{if(!s)return;const f=s;Tt({path:tn("/wp/v2/comments",{post:s}),parse:!1}).then(b=>{f===s&&c(b.headers.get("X-WP-Total"))})},[s]);const u=G(f=>f(Me).getEditedEntityRecord("postType",r,s),[r,s]);if(!u)return null;const{link:d}=u;let p;if(i!==void 0){const f=parseInt(i);f===0?p=m("No comments"):p=xe(Dn("%s comment","%s comments",f),f.toLocaleString())}return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:f=>{n({textAlign:f})}})}),a.jsx("div",{...l,children:d&&p!==void 0?a.jsx("a",{href:d+"#comments",onClick:f=>f.preventDefault(),children:p}):a.jsx(Er,{children:m("Post Comments Link block: post not found.")})})]})}const zD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:"fse",name:"core/post-comments-link",title:"Comments Link",category:"theme",description:"Displays the link to the current post comments.",textdomain:"default",usesContext:["postType","postId"],attributes:{textAlign:{type:"string"}},supports:{html:!1,color:{link:!0,text:!1,__experimentalDefaultControls:{background:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-comments-link"},{name:Y4e}=zD,Z4e={edit:vin,icon:_de},xin=()=>it({name:Y4e,metadata:zD,settings:Z4e}),win=Object.freeze(Object.defineProperty({__proto__:null,init:xin,metadata:zD,name:Y4e,settings:Z4e},Symbol.toStringTag,{value:"Module"}));function _in({parentLayout:e,layoutClassNames:t,userCanEdit:n,postType:o,postId:r}){const[,,s]=Ao("postType",o,"content",r),i=Be({className:t}),c=x.useMemo(()=>s?.raw?Ko(s.raw):[],[s?.raw]),l=V7({blocks:c,props:i,layout:e});return n?a.jsx("div",{...l}):s?.protected?a.jsx("div",{...i,children:a.jsx(Er,{children:m("This content is password protected.")})}):a.jsx("div",{...i,dangerouslySetInnerHTML:{__html:s?.rendered}})}function kin({context:e={}}){const{postType:t,postId:n}=e,[o,r,s]=ya("postType",t,{id:n}),c=!!G(d=>d(Me).getEntityRecord("postType",t,n),[t,n])?.content?.raw||o?.length,l=[["core/paragraph"]],u=Nt(Be({className:"entry-content"}),{value:o,onInput:r,onChange:s,template:c?void 0:l});return a.jsx("div",{...u})}function Sin(e){const{context:{queryId:t,postType:n,postId:o}={},layoutClassNames:r}=e,s=Fye("postType",n,o);if(s===void 0)return null;const i=Number.isFinite(t);return s&&!i?a.jsx(kin,{...e}):a.jsx(_in,{parentLayout:e.parentLayout,layoutClassNames:r,userCanEdit:s,postType:n,postId:o})}function Cin({layoutClassNames:e}){const t=Be({className:e});return a.jsxs("div",{...t,children:[a.jsx("p",{children:m("This is the Content block, it will display all the blocks in any single post or page.")}),a.jsx("p",{children:m("That might be a simple arrangement like consecutive paragraphs in a blog post, or a more elaborate composition that includes image galleries, videos, tables, columns, and any other block types.")}),a.jsx("p",{children:m("If there are any Custom Post Types registered at your site, the Content block can display the contents of those entries as well.")})]})}function qin(){const e=Be();return a.jsx("div",{...e,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})})}function Rin({context:e,__unstableLayoutClassNames:t,__unstableParentLayout:n}){const{postId:o,postType:r}=e,s=nk(o);return o&&r&&s?a.jsx(qin,{}):a.jsx(TO,{uniqueId:o,children:o&&r?a.jsx(Sin,{context:e,parentLayout:n,layoutClassNames:t}):a.jsx(Cin,{layoutClassNames:t})})}const OD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-content",title:"Content",category:"theme",description:"Displays the contents of a post or page.",textdomain:"default",usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{align:["wide","full"],html:!1,layout:!0,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},dimensions:{minHeight:!0},spacing:{blockGap:!0,padding:!0,margin:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!1,text:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-content",editorStyle:"wp-block-post-content-editor"},{name:Q4e}=OD,J4e={icon:AQe,edit:Rin},Tin=()=>it({name:Q4e,metadata:OD,settings:J4e}),Ein=Object.freeze(Object.defineProperty({__proto__:null,init:Tin,metadata:OD,name:Q4e,settings:J4e},Symbol.toStringTag,{value:"Module"}));function Win({attributes:{textAlign:e,format:t,isLink:n,displayType:o},context:{postId:r,postType:s,queryId:i},setAttributes:c}){const l=Be({className:oe({[`has-text-align-${e}`]:e,"wp-block-post-date__modified-date":o==="modified"})}),u=Qo(),[d,p]=x.useState(null),f=x.useMemo(()=>({anchor:d}),[d]),b=Number.isFinite(i),h=Sa(),[g=h.formats.date]=Ao("root","site","date_format"),[z=h.formats.time]=Ao("root","site","time_format"),[A,_]=Ao("postType",s,o,r),v=G(k=>s?k(Me).getPostType(s):null,[s]),M=m(o==="date"?"Post Date":"Post Modified Date");let y=A?a.jsx("time",{dateTime:r0("c",A),ref:p,children:t==="human-diff"?a_(A):r0(t||g,A)}):M;return n&&A&&(y=a.jsx("a",{href:"#post-date-pseudo-link",onClick:k=>k.preventDefault(),children:y})),a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(nr,{value:e,onChange:k=>{c({textAlign:k})}}),A&&o==="date"&&!b&&a.jsx(Wn,{children:a.jsx(so,{popoverProps:f,renderContent:({onClose:k})=>a.jsx(rBt,{currentDate:A,onChange:_,is12Hour:Nin(z),onClose:k,dateOrder:We("dmy","date order")}),renderToggle:({isOpen:k,onToggle:S})=>{const C=R=>{!k&&R.keyCode===Ps&&(R.preventDefault(),S())};return a.jsx(Vt,{"aria-expanded":k,icon:Nd,title:m("Change Date"),onClick:S,onKeyDown:C})}})})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{c({format:void 0,isLink:!1,displayType:"date"})},dropdownMenuProps:u,children:[a.jsx(tt,{hasValue:()=>t!==void 0&&t!==g,label:m("Date Format"),onDeselect:()=>c({format:void 0}),isShownByDefault:!0,children:a.jsx(Uze,{format:t,defaultFormat:g,onChange:k=>c({format:k})})}),a.jsx(tt,{hasValue:()=>n!==!1,label:v?.labels.singular_name?xe(m("Link to %s"),v.labels.singular_name.toLowerCase()):m("Link to post"),onDeselect:()=>c({isLink:!1}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:v?.labels.singular_name?xe(m("Link to %s"),v.labels.singular_name.toLowerCase()):m("Link to post"),onChange:()=>c({isLink:!n}),checked:n})}),a.jsx(tt,{hasValue:()=>o!=="date",label:m("Display last modified date"),onDeselect:()=>c({displayType:"date"}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display last modified date"),onChange:k=>c({displayType:k?"modified":"date"}),checked:o==="modified",help:m("Only shows if the post has been modified")})})]})}),a.jsx("div",{...l,children:y})]})}function Nin(e){return/(?:^|[^\\])[aAgh]/.test(e)}const Bin={attributes:{textAlign:{type:"string"},format:{type:"string"},isLink:{type:"boolean",default:!1}},supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Lin=[Bin],Pin=[{name:"post-date-modified",title:m("Modified Date"),description:m("Display a post's last updated date."),attributes:{displayType:"modified"},scope:["block","inserter"],isActive:e=>e.displayType==="modified",icon:$P}],yD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-date",title:"Date",category:"theme",description:"Display the publish date for an entry such as a post or page.",textdomain:"default",attributes:{textAlign:{type:"string"},format:{type:"string"},isLink:{type:"boolean",default:!1,role:"content"},displayType:{type:"string",default:"date"}},usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}}},{name:exe}=yD,txe={icon:$P,edit:Win,deprecated:Lin,variations:Pin},jin=()=>it({name:exe,metadata:yD,settings:txe}),Iin=Object.freeze(Object.defineProperty({__proto__:null,init:jin,metadata:yD,name:exe,settings:txe},Symbol.toStringTag,{value:"Module"})),Ooe="…";function Din({attributes:{textAlign:e,moreText:t,showMoreOnNewLine:n,excerptLength:o},setAttributes:r,isSelected:s,context:{postId:i,postType:c,queryId:l}}){const u=Number.isFinite(l),d=Fye("postType",c,i),[p,f,{rendered:b,protected:h}={}]=Ao("postType",c,"excerpt",i),g=Qo(),z=G(E=>c==="page"?!0:!!E(Me).getPostType(c)?.supports?.excerpt,[c]),A=d&&!u&&z,_=Be({className:oe({[`has-text-align-${e}`]:e})}),v=We("words","Word count type. Do not translate!"),M=x.useMemo(()=>{if(!b)return"";const E=new window.DOMParser().parseFromString(b,"text/html");return E.body.textContent||E.body.innerText||""},[b]);if(!c||!i)return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:e,onChange:E=>r({textAlign:E})})}),a.jsx("div",{..._,children:a.jsx("p",{children:m("This block will display the excerpt.")})})]});if(h&&!d)return a.jsx("div",{..._,children:a.jsx(Er,{children:m("The content is currently protected and does not have the available excerpt.")})});const y=a.jsx(Ie,{identifier:"moreText",className:"wp-block-post-excerpt__more-link",tagName:"a","aria-label":m("“Read more” link text"),placeholder:m('Add "read more" link text'),value:t,onChange:E=>r({moreText:E}),withoutInteractiveFormatting:!0}),k=oe("wp-block-post-excerpt__excerpt",{"is-inline":!n}),S=(p||M).trim();let C="";if(v==="words")C=S.split(" ",o).join(" ");else if(v==="characters_excluding_spaces"){const E=S.split("",o).join(""),B=E.length-E.replaceAll(" ","").length;C=S.split("",o+B).join("")}else v==="characters_including_spaces"&&(C=S.split("",o).join(""));const R=C!==S,T=A?a.jsx(Ie,{className:k,"aria-label":m("Excerpt text"),value:s?S:(R?C+Ooe:S)||m("No excerpt found"),onChange:f,tagName:"p"}):a.jsx("p",{className:k,children:R?C+Ooe:S||m("No excerpt found")});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:e,onChange:E=>r({textAlign:E})})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{r({showMoreOnNewLine:!0,excerptLength:55})},dropdownMenuProps:g,children:[a.jsx(tt,{hasValue:()=>n!==!0,label:m("Show link on new line"),onDeselect:()=>r({showMoreOnNewLine:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show link on new line"),checked:n,onChange:E=>r({showMoreOnNewLine:E})})}),a.jsx(tt,{hasValue:()=>o!==55,label:m("Max number of words"),onDeselect:()=>r({excerptLength:55}),isShownByDefault:!0,children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Max number of words"),value:o,onChange:E=>{r({excerptLength:E})},min:"10",max:"100"})})]})}),a.jsxs("div",{..._,children:[T,!n&&" ",n?a.jsx("p",{className:"wp-block-post-excerpt__more-text",children:y}):y]})]})}const Fin={from:[{type:"block",blocks:["core/post-content"],transform:()=>Ee("core/post-excerpt")}],to:[{type:"block",blocks:["core/post-content"],transform:()=>Ee("core/post-content")}]},AD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-excerpt",title:"Excerpt",category:"theme",description:"Display the excerpt.",textdomain:"default",attributes:{textAlign:{type:"string"},moreText:{type:"string"},showMoreOnNewLine:{type:"boolean",default:!0},excerptLength:{type:"number",default:55}},usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-post-excerpt-editor",style:"wp-block-post-excerpt"},{name:nxe}=AD,oxe={icon:wQe,transforms:Fin,edit:Din},$in=()=>it({name:nxe,metadata:AD,settings:oxe}),Vin=Object.freeze(Object.defineProperty({__proto__:null,init:$in,metadata:AD,name:nxe,settings:oxe},Symbol.toStringTag,{value:"Module"})),{ResolutionTool:Hin}=e0(jn),Uin=a.jsxs(a.Fragment,{children:[a.jsx(Kn,{value:"cover",label:We("Cover","Scale option for Image dimension control")}),a.jsx(Kn,{value:"contain",label:We("Contain","Scale option for Image dimension control")}),a.jsx(Kn,{value:"fill",label:We("Fill","Scale option for Image dimension control")})]}),KT="cover",yoe="full",Xin={cover:m("Image is scaled and cropped to fill the entire space without being distorted."),contain:m("Image is scaled to fill the space without clipping nor distorting."),fill:m("Image will be stretched and distorted to completely fill the space.")},Gin=({clientId:e,attributes:{aspectRatio:t,width:n,height:o,scale:r,sizeSlug:s},setAttributes:i,media:c})=>{const[l,u,d,p]=Un("spacing.units","dimensions.aspectRatios.default","dimensions.aspectRatios.theme","dimensions.defaultAspectRatios"),f=U1({availableUnits:l||["px","%","vw","em","rem"]}),h=G(y=>y(Q).getSettings().imageSizes,[]).filter(({slug:y})=>c?.media_details?.sizes?.[y]?.source_url).map(({name:y,slug:k})=>({value:k,label:y})),g=(y,k)=>{const S=parseFloat(k);isNaN(S)&&k||i({[y]:S<0?"0":k})},z=We("Scale","Image scaling options"),A=o||t&&t!=="auto",_=d?.map(({name:y,ratio:k})=>({label:y,value:k})),v=u?.map(({name:y,ratio:k})=>({label:y,value:k})),M=[{label:We("Original","Aspect ratio option for dimensions control"),value:"auto"},...p?v:[],..._||[]];return a.jsxs(a.Fragment,{children:[a.jsx(tt,{hasValue:()=>!!t,label:m("Aspect ratio"),onDeselect:()=>i({aspectRatio:void 0}),resetAllFilter:()=>({aspectRatio:void 0}),isShownByDefault:!0,panelId:e,children:a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Aspect ratio"),value:t,options:M,onChange:y=>i({aspectRatio:y})})}),a.jsx(tt,{className:"single-column",hasValue:()=>!!o,label:m("Height"),onDeselect:()=>i({height:void 0}),resetAllFilter:()=>({height:void 0}),isShownByDefault:!0,panelId:e,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Height"),labelPosition:"top",value:o||"",min:0,onChange:y=>g("height",y),units:f})}),a.jsx(tt,{className:"single-column",hasValue:()=>!!n,label:m("Width"),onDeselect:()=>i({width:void 0}),resetAllFilter:()=>({width:void 0}),isShownByDefault:!0,panelId:e,children:a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Width"),labelPosition:"top",value:n||"",min:0,onChange:y=>g("width",y),units:f})}),A&&a.jsx(tt,{hasValue:()=>!!r&&r!==KT,label:z,onDeselect:()=>i({scale:KT}),resetAllFilter:()=>({scale:KT}),isShownByDefault:!0,panelId:e,children:a.jsx(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:z,value:r,help:Xin[r],onChange:y=>i({scale:y}),isBlock:!0,children:Uin})}),!!h.length&&a.jsx(Hin,{panelId:e,value:s,defaultValue:yoe,options:h,onChange:y=>i({sizeSlug:y}),isShownByDefault:!1,resetAllFilter:()=>({sizeSlug:yoe})})]})},Kin=({clientId:e,attributes:t,setAttributes:n,overlayColor:o,setOverlayColor:r})=>{const{dimRatio:s}=t,{gradientValue:i,setGradient:c}=m_(),l=ub();return l.hasColorsOrGradients?a.jsxs(a.Fragment,{children:[a.jsx(J_,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:o.color,gradientValue:i,label:m("Overlay"),onColorChange:r,onGradientChange:c,isShownByDefault:!0,resetAllFilter:()=>({overlayColor:void 0,customOverlayColor:void 0,gradient:void 0,customGradient:void 0}),clearable:!0}],panelId:e,...l}),a.jsx(tt,{hasValue:()=>s!==void 0,label:m("Overlay opacity"),onDeselect:()=>n({dimRatio:0}),resetAllFilter:()=>({dimRatio:0}),isShownByDefault:!0,panelId:e,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,label:m("Overlay opacity"),value:s,onChange:u=>n({dimRatio:u}),min:0,max:100,step:10,required:!0,__next40pxDefaultSize:!0})})]}):null},Yin=Co([AO({overlayColor:"background-color"})])(Kin);function Zin(e){return e===void 0?null:"has-background-dim-"+10*Math.round(e/10)}const Qin=({attributes:e,overlayColor:t})=>{const{dimRatio:n}=e,{gradientClass:o,gradientValue:r}=m_(),s=ub(),i=au(e),c={backgroundColor:t.color,backgroundImage:r,...i.style};return!s.hasColorsOrGradients||!n?null:a.jsx("span",{"aria-hidden":"true",className:oe("wp-block-post-featured-image__overlay",Zin(n),{[t.class]:t.class,"has-background-dim":n!==void 0,"has-background-gradient":r,[o]:o},i.className),style:c})},Aoe=Co([AO({overlayColor:"background-color"})])(Qin),voe=["image"];function Jin(e,t){return e?.media_details?.sizes?.[t]?.source_url||e?.source_url}const xoe={onClick:e=>e.preventDefault(),"aria-disabled":!0};function ean({clientId:e,attributes:t,setAttributes:n,context:{postId:o,postType:r,queryId:s}}){const i=Number.isFinite(s),{isLink:c,aspectRatio:l,height:u,width:d,scale:p,sizeSlug:f,rel:b,linkTarget:h,useFirstImageFromPost:g}=t,[z,A]=x.useState(),[_,v]=Ao("postType",r,"featured_media",o),[M]=Ao("postType",r,"content",o),y=x.useMemo(()=>{if(_)return _;if(!g)return;const te=/<!--\s+wp:(?:core\/)?image\s+(?<attrs>{(?:(?:[^}]+|}+(?=})|(?!}\s+\/?-->).)*)?}\s+)?-->/.exec(M);return te?.groups?.attrs&&JSON.parse(te.groups.attrs)?.id},[_,g,M]),{media:k,postType:S,postPermalink:C}=G(te=>{const{getMedia:J,getPostType:ue,getEditedEntityRecord:ce}=te(Me);return{media:y&&J(y,{context:"view"}),postType:r&&ue(r),postPermalink:ce("postType",r,o)?.link}},[y,r,o]),R=Jin(k,f),T=Be({style:{width:d,height:u,aspectRatio:l},className:oe({"is-transient":z})}),E=au(t),B=db(t),N=Jr(),j=te=>a.jsx(vo,{className:oe("block-editor-media-placeholder",E.className),withIllustration:!0,style:{height:!!l&&"100%",width:!!l&&"100%",...E.style,...B.style},children:te}),I=te=>{te?.id&&v(te.id),te?.url&&Nr(te.url)&&A(te.url)};x.useEffect(()=>{R&&z&&A()},[R,z]);const{createErrorNotice:P}=Oe(mt),$=te=>{P(te,{type:"snackbar"}),A()},F=Qo(),X=N==="default"&&a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"color",children:a.jsx(Yin,{attributes:t,setAttributes:n,clientId:e})}),a.jsx(et,{group:"dimensions",children:a.jsx(Gin,{clientId:e,attributes:t,setAttributes:n,media:k})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({isLink:!1,linkTarget:"_self",rel:""})},dropdownMenuProps:F,children:[a.jsx(tt,{label:S?.labels.singular_name?xe(m("Link to %s"),S.labels.singular_name):m("Link to post"),isShownByDefault:!0,hasValue:()=>!!c,onDeselect:()=>n({isLink:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:S?.labels.singular_name?xe(m("Link to %s"),S.labels.singular_name):m("Link to post"),onChange:()=>n({isLink:!c}),checked:c})}),c&&a.jsx(tt,{label:m("Open in new tab"),isShownByDefault:!0,hasValue:()=>h!=="_self",onDeselect:()=>n({linkTarget:"_self"}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:te=>n({linkTarget:te?"_blank":"_self"}),checked:h==="_blank"})}),c&&a.jsx(tt,{label:m("Link rel"),isShownByDefault:!0,hasValue:()=>!!b,onDeselect:()=>n({rel:""}),children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:b,onChange:te=>n({rel:te})})})]})})]});let Z;if(!y&&(i||!o))return a.jsxs(a.Fragment,{children:[X,a.jsxs("div",{...T,children:[c?a.jsx("a",{href:C,target:h,...xoe,children:j()}):j(),a.jsx(Aoe,{attributes:t,setAttributes:n,clientId:e})]})]});const V=m("Add a featured image"),ee={...E.style,...B.style,height:l?"100%":u,width:!!l&&"100%",objectFit:!!(u||l)&&p};return!y&&!z?Z=a.jsx(iu,{onSelect:I,accept:"image/*",allowedTypes:voe,onError:$,placeholder:j,mediaLibraryButton:({open:te})=>a.jsx(Ce,{__next40pxDefaultSize:!0,icon:cm,variant:"primary",label:V,showTooltip:!0,tooltipPosition:"top center",onClick:()=>{te()}})}):Z=!k&&!z?j():a.jsxs(a.Fragment,{children:[a.jsx("img",{className:E.className,src:z||R,alt:k&&k?.alt_text?xe(m("Featured image: %s"),k.alt_text):m("Featured image"),style:ee}),z&&a.jsx(Xn,{})]}),a.jsxs(a.Fragment,{children:[!z&&X,!!k&&!i&&a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:y,mediaURL:R,allowedTypes:voe,accept:"image/*",onSelect:I,onError:$,onReset:()=>v(0)})}),a.jsxs("figure",{...T,children:[c?a.jsx("a",{href:C,target:h,...xoe,children:Z}):Z,a.jsx(Aoe,{attributes:t,setAttributes:n,clientId:e})]})]})}const vD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-featured-image",title:"Featured Image",category:"theme",description:"Display a post's featured image.",textdomain:"default",attributes:{isLink:{type:"boolean",default:!1,role:"content"},aspectRatio:{type:"string"},width:{type:"string"},height:{type:"string"},scale:{type:"string",default:"cover"},sizeSlug:{type:"string"},rel:{type:"string",attribute:"rel",default:"",role:"content"},linkTarget:{type:"string",default:"_self",role:"content"},overlayColor:{type:"string"},customOverlayColor:{type:"string"},dimRatio:{type:"number",default:0},gradient:{type:"string"},customGradient:{type:"string"},useFirstImageFromPost:{type:"boolean",default:!1}},usesContext:["postId","postType","queryId"],example:{viewportWidth:350},supports:{align:["left","right","center","wide","full"],color:{text:!1,background:!1},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}},filter:{duotone:!0},shadow:{__experimentalSkipSerialization:!0},html:!1,spacing:{margin:!0,padding:!0},interactivity:{clientNavigation:!0}},selectors:{border:".wp-block-post-featured-image img, .wp-block-post-featured-image .block-editor-media-placeholder, .wp-block-post-featured-image .wp-block-post-featured-image__overlay",shadow:".wp-block-post-featured-image img, .wp-block-post-featured-image .components-placeholder",filter:{duotone:".wp-block-post-featured-image img, .wp-block-post-featured-image .wp-block-post-featured-image__placeholder, .wp-block-post-featured-image .components-placeholder__illustration, .wp-block-post-featured-image .components-placeholder::before"}},editorStyle:"wp-block-post-featured-image-editor",style:"wp-block-post-featured-image"},{name:rxe}=vD,sxe={icon:kde,edit:ean},tan=()=>it({name:rxe,metadata:vD,settings:sxe}),nan=Object.freeze(Object.defineProperty({__proto__:null,init:tan,metadata:vD,name:rxe,settings:sxe},Symbol.toStringTag,{value:"Module"}));function oan({context:{postType:e},attributes:{type:t,label:n,showTitle:o,textAlign:r,linkLabel:s,arrow:i,taxonomy:c},setAttributes:l}){const u=t==="next";let d=m(u?"Next":"Previous");const f={none:"",arrow:u?"→":"←",chevron:u?"»":"«"}[i];o&&(d=m(u?"Next: ":"Previous: "));const b=m(u?"Next post":"Previous post"),h=Be({className:oe({[`has-text-align-${r}`]:r})}),g=G(A=>{const{getTaxonomies:_}=A(Me);return _({type:e,per_page:-1})},[e]),z=()=>{const A={label:m("Unfiltered"),value:""},_=(g??[]).filter(({visibility:v})=>!!v?.publicly_queryable).map(v=>({value:v.slug,label:v.name}));return[A,..._]};return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display the title as a link"),help:m("If you have entered a custom label, it will be prepended before the title."),checked:!!o,onChange:()=>l({showTitle:!o})}),o&&a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Include the label as part of the link"),checked:!!s,onChange:()=>l({linkLabel:!s})}),a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Arrow"),value:i,onChange:A=>{l({arrow:A})},help:m("A decorative arrow for the next and previous link."),isBlock:!0,children:[a.jsx(Kn,{value:"none",label:We("None","Arrow option for Next/Previous link")}),a.jsx(Kn,{value:"arrow",label:We("Arrow","Arrow option for Next/Previous link")}),a.jsx(Kn,{value:"chevron",label:We("Chevron","Arrow option for Next/Previous link")})]})]})}),a.jsx(et,{group:"advanced",children:a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Filter by taxonomy"),value:c,options:z(),onChange:A=>l({taxonomy:A}),help:m("Only link to posts that have the same taxonomy terms as the current post. For example the same tags or categories.")})}),a.jsx(bt,{children:a.jsx(jz,{value:r,onChange:A=>{l({textAlign:A})}})}),a.jsxs("div",{...h,children:[!u&&f&&a.jsx("span",{className:`wp-block-post-navigation-link__arrow-previous is-arrow-${i}`,children:f}),a.jsx(Ie,{tagName:"a",identifier:"label","aria-label":b,placeholder:d,value:n,allowedFormats:["core/bold","core/italic"],onChange:A=>l({label:A})}),o&&a.jsx("a",{href:"#post-navigation-pseudo-link",onClick:A=>A.preventDefault(),children:m("An example title")}),u&&f&&a.jsx("span",{className:`wp-block-post-navigation-link__arrow-next is-arrow-${i}`,"aria-hidden":!0,children:f})]})]})}const ixe=[{isDefault:!0,name:"post-next",title:m("Next post"),description:m("Displays the post link that follows the current post."),icon:Cde,attributes:{type:"next"},scope:["inserter","transform"],example:{attributes:{label:m("Next post"),arrow:"arrow"}}},{name:"post-previous",title:m("Previous post"),description:m("Displays the post link that precedes the current post."),icon:Sde,attributes:{type:"previous"},scope:["inserter","transform"],example:{attributes:{label:m("Previous post"),arrow:"arrow"}}}];ixe.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.type===n.type)});const xD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-navigation-link",title:"Post Navigation Link",category:"theme",description:"Displays the next or previous post link that is adjacent to the current post.",textdomain:"default",attributes:{textAlign:{type:"string"},type:{type:"string",default:"next"},label:{type:"string"},showTitle:{type:"boolean",default:!1},linkLabel:{type:"boolean",default:!1},arrow:{type:"string",default:"none"},taxonomy:{type:"string",default:""}},usesContext:["postType"],supports:{reusable:!1,html:!1,color:{link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-post-navigation-link"},{name:axe}=xD,cxe={edit:oan,variations:ixe,example:{attributes:{label:m("Next post"),arrow:"arrow"}}},ran=()=>it({name:axe,metadata:xD,settings:cxe}),san=Object.freeze(Object.defineProperty({__proto__:null,init:ran,metadata:xD,name:axe,settings:cxe},Symbol.toStringTag,{value:"Module"})),ian=[["core/post-title"],["core/post-date"],["core/post-excerpt"]];function aan({classList:e}){const t=Nt({className:oe("wp-block-post",e)},{template:ian,__unstableDisableLayoutClassNames:!0});return a.jsx("li",{...t})}function can({blocks:e,blockContextId:t,classList:n,isHidden:o,setActiveBlockContextId:r}){const s=V7({blocks:e,props:{className:oe("wp-block-post",n)}}),i=()=>{r(t)},c={display:o?"none":void 0};return a.jsx("li",{...s,tabIndex:0,role:"button",onClick:i,onKeyPress:i,style:c})}const lan=x.memo(can);function uan({setAttributes:e,clientId:t,context:{query:{perPage:n,offset:o=0,postType:r,order:s,orderBy:i,author:c,search:l,exclude:u,sticky:d,inherit:p,taxQuery:f,parents:b,pages:h,format:g,...z}={},templateSlug:A,previewPostType:_},attributes:{layout:v},__unstableLayoutClassNames:M}){const{type:y,columnCount:k=3}=v||{},[S,C]=x.useState(),{posts:R,blocks:T}=G(I=>{const{getEntityRecords:P,getTaxonomies:$}=I(Me),{getBlocks:F}=I(Q),X=p&&A?.startsWith("category-")&&P("taxonomy","category",{context:"view",per_page:1,_fields:["id"],slug:A.replace("category-","")}),Z=p&&A?.startsWith("tag-")&&P("taxonomy","post_tag",{context:"view",per_page:1,_fields:["id"],slug:A.replace("tag-","")}),V={offset:o||0,order:s,orderby:i};if(f&&!p){const te=$({type:r,per_page:-1,context:"view"}),J=Object.entries(f).reduce((ue,[ce,me])=>{const de=te?.find(({slug:Ae})=>Ae===ce);return de?.rest_base&&(ue[de?.rest_base]=me),ue},{});Object.keys(J).length&&Object.assign(V,J)}return n&&(V.per_page=n),c&&(V.author=c),l&&(V.search=l),u?.length&&(V.exclude=u),b?.length&&(V.parent=b),g?.length&&(V.format=g),d&&(V.sticky=d==="only"),p&&(A?.startsWith("archive-")?(V.postType=A.replace("archive-",""),r=V.postType):X?V.categories=X[0]?.id:Z?V.tags=Z[0]?.id:A?.startsWith("taxonomy-post_format")&&(V.format=A.replace("taxonomy-post_format-post-format-",""))),{posts:P("postType",_||r,{...V,...z}),blocks:F(t)}},[n,o,s,i,t,c,l,r,u,d,p,A,f,b,g,z,_]),E=x.useMemo(()=>R?.map(I=>{var P;return{postType:I.type,postId:I.id,classList:(P=I.class_list)!==null&&P!==void 0?P:""}}),[R]),B=Be({className:oe(M,{[`columns-${k}`]:y==="grid"&&k})});if(!R)return a.jsx("p",{...B,children:a.jsx(Xn,{})});if(!R.length)return a.jsxs("p",{...B,children:[" ",m("No results found.")]});const N=I=>e({layout:{...v,...I}}),j=[{icon:jw,title:We("List view","Post template block display setting"),onClick:()=>N({type:"default"}),isActive:y==="default"||y==="constrained"},{icon:X3,title:We("Grid view","Post template block display setting"),onClick:()=>N({type:"grid",columnCount:k}),isActive:y==="grid"}];return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{controls:j})}),a.jsx("ul",{...B,children:E&&E.map(I=>a.jsxs(uO,{value:I,children:[I.postId===(S||E[0]?.postId)?a.jsx(aan,{classList:I.classList}):null,a.jsx(lan,{blocks:T,blockContextId:I.postId,classList:I.classList,setActiveBlockContextId:C,isHidden:I.postId===(S||E[0]?.postId)})]},I.postId))})]})}function dan(){return a.jsx(Ht.Content,{})}const wD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-template",title:"Post Template",category:"theme",ancestor:["core/query"],description:"Contains the block elements used to render a post, like the title, date, featured image, content or excerpt, and more.",textdomain:"default",usesContext:["queryId","query","displayLayout","templateSlug","previewPostType","enhancedPagination","postType"],supports:{reusable:!1,html:!1,align:["wide","full"],layout:!0,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{margin:!0,padding:!0,blockGap:{__experimentalDefault:"1.25em"},__experimentalDefaultControls:{blockGap:!0,padding:!1,margin:!1}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},style:"wp-block-post-template",editorStyle:"wp-block-post-template-editor"},{name:lxe}=wD,uxe={icon:nu,edit:uan,save:dan},pan=()=>it({name:lxe,metadata:wD,settings:uxe}),fan=Object.freeze(Object.defineProperty({__proto__:null,init:pan,metadata:wD,name:lxe,settings:uxe},Symbol.toStringTag,{value:"Module"})),ban=[];function han({postId:e,term:t}){const{slug:n}=t;return G(o=>{if(!t?.visibility?.publicly_queryable)return{postTerms:ban,isLoading:!1,hasPostTerms:!1};const{getEntityRecords:s,isResolving:i}=o(Me),c=["taxonomy",n,{post:e,per_page:-1,context:"view"}],l=s(...c);return{postTerms:l,isLoading:i("getEntityRecords",c),hasPostTerms:!!l?.length}},[e,t?.visibility?.publicly_queryable,n])}const woe=["core/bold","core/image","core/italic","core/link","core/strikethrough","core/text-color"];function man({attributes:e,clientId:t,context:n,isSelected:o,setAttributes:r,insertBlocksAfter:s}){const{term:i,textAlign:c,separator:l,prefix:u,suffix:d}=e,{postId:p,postType:f}=n,b=G(M=>{if(!i)return{};const{getTaxonomy:y}=M(Me),k=y(i);return k?.visibility?.publicly_queryable?k:{}},[i]),{postTerms:h,hasPostTerms:g,isLoading:z}=han({postId:p,term:b}),A=p&&f,_=ji(t),v=Be({className:oe({[`has-text-align-${c}`]:c,[`taxonomy-${i}`]:i})});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:c,onChange:M=>{r({textAlign:M})}})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,autoComplete:"off",label:m("Separator"),value:l||"",onChange:M=>{r({separator:M})},help:m("Enter character(s) used to separate terms.")})}),a.jsxs("div",{...v,children:[z&&A&&a.jsx(Xn,{}),!z&&(o||u)&&a.jsx(Ie,{identifier:"prefix",allowedFormats:woe,className:"wp-block-post-terms__prefix","aria-label":m("Prefix"),placeholder:m("Prefix")+" ",value:u,onChange:M=>r({prefix:M}),tagName:"span"}),(!A||!i)&&a.jsx("span",{children:_.title}),A&&!z&&g&&h.map(M=>a.jsx("a",{href:M.link,onClick:y=>y.preventDefault(),children:Lt(M.name)},M.id)).reduce((M,y)=>a.jsxs(a.Fragment,{children:[M,a.jsx("span",{className:"wp-block-post-terms__separator",children:l||" "}),y]})),A&&!z&&!g&&(b?.labels?.no_terms||m("Term items not found.")),!z&&(o||d)&&a.jsx(Ie,{identifier:"suffix",allowedFormats:woe,className:"wp-block-post-terms__suffix","aria-label":m("Suffix"),placeholder:" "+m("Suffix"),value:d,onChange:M=>r({suffix:M}),tagName:"span",__unstableOnSplitAtEnd:()=>s(Ee(Mr()))})]})]})}const gan={category:FP,post_tag:_Qe};function Man(e,t){if(t!=="core/post-terms")return e;const n=e.variations.map(o=>{var r;return{...o,icon:(r=gan[o.name])!==null&&r!==void 0?r:FP}});return{...e,variations:n}}const _D={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-terms",title:"Post Terms",category:"theme",description:"Post terms.",textdomain:"default",attributes:{term:{type:"string"},textAlign:{type:"string"},separator:{type:"string",default:", "},prefix:{type:"string",default:""},suffix:{type:"string",default:""}},usesContext:["postId","postType"],example:{viewportWidth:350},supports:{html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-terms"},{name:dxe}=_D,pxe={icon:FP,edit:man},zan=()=>(Bn("blocks.registerBlockType","core/template-part",Man),it({name:dxe,metadata:_D,settings:pxe})),Oan=Object.freeze(Object.defineProperty({__proto__:null,init:zan,metadata:_D,name:dxe,settings:pxe},Symbol.toStringTag,{value:"Module"})),yan=189;function Aan({attributes:e,setAttributes:t,context:n}){const{textAlign:o}=e,{postId:r,postType:s}=n,[i]=Ao("postType",s,"content",r),[c]=ya("postType",s,{id:r}),l=x.useMemo(()=>{let d;i instanceof Function?d=i({blocks:c}):c?d=Jd(c):d=i;const p=We("words","Word count type. Do not translate!"),f=Math.max(1,Math.round(DO(d||"",p)/yan));return xe(Dn("%s minute","%s minutes",f),f)},[i,c]),u=Be({className:oe({[`has-text-align-${o}`]:o})});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:d=>{t({textAlign:d})}})}),a.jsx("div",{...u,children:l})]})}const van=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16.5c-4.1 0-7.5-3.4-7.5-7.5S7.9 4.5 12 4.5s7.5 3.4 7.5 7.5-3.4 7.5-7.5 7.5zM12 7l-1 5c0 .3.2.6.4.8l4.2 2.8-2.7-4.1L12 7z"})}),kD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/post-time-to-read",title:"Time To Read",category:"theme",description:"Show minutes required to finish reading the post.",textdomain:"default",usesContext:["postId","postType"],attributes:{textAlign:{type:"string"}},supports:{color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},html:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}}},{name:fxe}=kD,bxe={icon:van,edit:Aan,example:{}},xan=()=>it({name:fxe,metadata:kD,settings:bxe}),wan=Object.freeze(Object.defineProperty({__proto__:null,init:xan,metadata:kD,name:fxe,settings:bxe},Symbol.toStringTag,{value:"Module"}));function _an({attributes:{level:e,levelOptions:t,textAlign:n,isLink:o,rel:r,linkTarget:s},setAttributes:i,context:{postType:c,postId:l,queryId:u},insertBlocksAfter:d}){const p=e===0?"p":`h${e}`,f=Number.isFinite(u),b=G(k=>f?!1:k(Me).canUser("update",{kind:"postType",name:c,id:l}),[f,c,l]),[h="",g,z]=Ao("postType",c,"title",l),[A]=Ao("postType",c,"link",l),_=()=>{d(Ee(Mr()))},v=Be({className:oe({[`has-text-align-${n}`]:n})}),M=Jr();let y=a.jsx(p,{...v,children:m("Title")});return c&&l&&(y=b?a.jsx(Gd,{tagName:p,placeholder:m("No title"),value:h,onChange:g,__experimentalVersion:2,__unstableOnSplitAtEnd:_,...v}):a.jsx(p,{...v,dangerouslySetInnerHTML:{__html:z?.rendered}})),o&&c&&l&&(y=b?a.jsx(p,{...v,children:a.jsx(Gd,{tagName:"a",href:A,target:s,rel:r,placeholder:h.length?null:m("No title"),value:h,onChange:g,__experimentalVersion:2,__unstableOnSplitAtEnd:_})}):a.jsx(p,{...v,children:a.jsx("a",{href:A,target:s,rel:r,onClick:k=>k.preventDefault(),dangerouslySetInnerHTML:{__html:z?.rendered}})})),a.jsxs(a.Fragment,{children:[M==="default"&&a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:e,options:t,onChange:k=>i({level:k})}),a.jsx(nr,{value:n,onChange:k=>{i({textAlign:k})}})]}),a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Make title a link"),onChange:()=>i({isLink:!o}),checked:o}),o&&a.jsxs(a.Fragment,{children:[a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:k=>i({linkTarget:k?"_blank":"_self"}),checked:s==="_blank"}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:r,onChange:k=>i({rel:k})})]})]})})]}),y]})}const kan={attributes:{textAlign:{type:"string"},level:{type:"number",default:2},isLink:{type:"boolean",default:!1},rel:{type:"string",attribute:"rel",default:""},linkTarget:{type:"string",default:"_self"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},San=[kan],SD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/post-title",title:"Title",category:"theme",description:"Displays the title of a post, page, or any other content-type.",textdomain:"default",usesContext:["postId","postType","queryId"],attributes:{textAlign:{type:"string"},level:{type:"number",default:2},levelOptions:{type:"array"},isLink:{type:"boolean",default:!1,role:"content"},rel:{type:"string",attribute:"rel",default:"",role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},example:{viewportWidth:350},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-post-title"},{name:hxe}=SD,mxe={icon:yz,edit:_an,deprecated:San},Can=()=>it({name:hxe,metadata:SD,settings:mxe}),qan=Object.freeze(Object.defineProperty({__proto__:null,init:Can,metadata:SD,name:hxe,settings:mxe},Symbol.toStringTag,{value:"Module"}));function Ran({attributes:e,mergeBlocks:t,setAttributes:n,onRemove:o,insertBlocksAfter:r,style:s}){const{content:i}=e,c=Be({style:s});return a.jsx(Ie,{tagName:"pre",identifier:"content",preserveWhiteSpace:!0,value:i,onChange:l=>{n({content:l})},onRemove:o,"aria-label":m("Preformatted text"),placeholder:m("Write preformatted text…"),onMerge:t,...c,__unstablePastePlainText:!0,__unstableOnSplitAtDoubleLineEnd:()=>r(Ee(Mr()))})}function Tan({attributes:e}){const{content:t}=e;return a.jsx("pre",{...Be.save(),children:a.jsx(Ie.Content,{value:t})})}const Ean={from:[{type:"block",blocks:["core/code","core/paragraph"],transform:({content:e,anchor:t})=>Ee("core/preformatted",{content:e,anchor:t})},{type:"raw",isMatch:e=>e.nodeName==="PRE"&&!(e.children.length===1&&e.firstChild.nodeName==="CODE"),schema:({phrasingContentSchema:e})=>({pre:{children:e}})}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>Ee("core/paragraph",e)},{type:"block",blocks:["core/code"],transform:e=>Ee("core/code",e)}]},CD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/preformatted",title:"Preformatted",category:"text",description:"Add text that respects your spacing and tabs, and also allows styling.",textdomain:"default",attributes:{content:{type:"rich-text",source:"rich-text",selector:"pre",__unstablePreserveWhiteSpace:!0,role:"content"}},supports:{anchor:!0,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-preformatted"},{name:gxe}=CD,Mxe={icon:kQe,example:{attributes:{content:m(`EXT. XANADU - FAINT DAWN - 1940 (MINIATURE) Window, very small in the distance, illuminated. All around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;`)}},transforms:Ean,edit:Ran,save:Tan,merge(e,t){return{content:e.content+` -`+t.content}}},Wan=()=>it({name:Mxe,metadata:qD,settings:zxe}),Nan=Object.freeze(Object.defineProperty({__proto__:null,init:Wan,metadata:qD,name:Mxe,settings:zxe},Symbol.toStringTag,{value:"Module"})),Wh="is-style-solid-color",VO={value:{type:"string",source:"html",selector:"blockquote",multiline:"p"},citation:{type:"string",source:"html",selector:"cite",default:""},mainColor:{type:"string"},customMainColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}};function _oe(e){if(!e)return;const t=e.match(/border-color:([^;]+)[;]?/);if(t&&t[1])return t[1]}function Nf(e){e=e||"<p></p>";const n=`</p>${e}<p>`.split("</p><p>");return n.shift(),n.pop(),n.join("<br>")}const Ban={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",role:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",role:"content"},textAlign:{type:"string"}},save({attributes:e}){const{textAlign:t,citation:n,value:o}=e,r=!Ie.isEmpty(n);return a.jsx("figure",{...Be.save({className:oe({[`has-text-align-${t}`]:t})}),children:a.jsxs("blockquote",{children:[a.jsx(Ie.Content,{value:o,multiline:!0}),r&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})})},migrate({value:e,...t}){return{value:Nf(e),...t}}},Lan={attributes:{...VO},save({attributes:e}){const{mainColor:t,customMainColor:n,customTextColor:o,textColor:r,value:s,citation:i,className:c}=e,l=c?.includes(Wh);let u,d;if(l){const h=Pt("background-color",t);u=oe({"has-background":h||n,[h]:h}),d={backgroundColor:h?void 0:n}}else n&&(d={borderColor:n});const p=Pt("color",r),f=oe({"has-text-color":r||o,[p]:p}),b=p?void 0:{color:o};return a.jsx("figure",{...Be.save({className:u,style:d}),children:a.jsxs("blockquote",{className:f,style:b,children:[a.jsx(Ie.Content,{value:s,multiline:!0}),!Ie.isEmpty(i)&&a.jsx(Ie.Content,{tagName:"cite",value:i})]})})},migrate({value:e,className:t,mainColor:n,customMainColor:o,customTextColor:r,...s}){const i=t?.includes(Wh);let c;return o&&(i?c={color:{background:o}}:c={border:{color:o}}),r&&c&&(c.color={...c.color,text:r}),{value:Nf(e),className:t,backgroundColor:i?n:void 0,borderColor:i?void 0:n,textAlign:i?"left":void 0,style:c,...s}}},Pan={attributes:{...VO,figureStyle:{source:"attribute",selector:"figure",attribute:"style"}},save({attributes:e}){const{mainColor:t,customMainColor:n,textColor:o,customTextColor:r,value:s,citation:i,className:c,figureStyle:l}=e,u=c?.includes(Wh);let d,p;if(u){const g=Pt("background-color",t);d=oe({"has-background":g||n,[g]:g}),p={backgroundColor:g?void 0:n}}else n?p={borderColor:n}:t&&(p={borderColor:_oe(l)});const f=Pt("color",o),b=(o||r)&&oe("has-text-color",{[f]:f}),h=f?void 0:{color:r};return a.jsx("figure",{className:d,style:p,children:a.jsxs("blockquote",{className:b,style:h,children:[a.jsx(Ie.Content,{value:s,multiline:!0}),!Ie.isEmpty(i)&&a.jsx(Ie.Content,{tagName:"cite",value:i})]})})},migrate({value:e,className:t,figureStyle:n,mainColor:o,customMainColor:r,customTextColor:s,...i}){const c=t?.includes(Wh);let l;if(r&&(c?l={color:{background:r}}:l={border:{color:r}}),s&&l&&(l.color={...l.color,text:s}),!c&&o&&n){const u=_oe(n);if(u)return{value:Nf(e),...i,className:t,style:{border:{color:u}}}}return{value:Nf(e),className:t,backgroundColor:c?o:void 0,borderColor:c?void 0:o,textAlign:c?"left":void 0,style:l,...i}}},jan={attributes:VO,save({attributes:e}){const{mainColor:t,customMainColor:n,textColor:o,customTextColor:r,value:s,citation:i,className:c}=e,l=c?.includes(Wh);let u,d;if(l)u=Pt("background-color",t),u||(d={backgroundColor:n});else if(n)d={borderColor:n};else if(t){var p;const g=(p=uo(Q).getSettings().colors)!==null&&p!==void 0?p:[];d={borderColor:Sf(g,t).color}}const f=Pt("color",o),b=o||r?oe("has-text-color",{[f]:f}):void 0,h=f?void 0:{color:r};return a.jsx("figure",{className:u,style:d,children:a.jsxs("blockquote",{className:b,style:h,children:[a.jsx(Ie.Content,{value:s,multiline:!0}),!Ie.isEmpty(i)&&a.jsx(Ie.Content,{tagName:"cite",value:i})]})})},migrate({value:e,className:t,mainColor:n,customMainColor:o,customTextColor:r,...s}){const i=t?.includes(Wh);let c={};return o&&(i?c={color:{background:o}}:c={border:{color:o}}),r&&c&&(c.color={...c.color,text:r}),{value:Nf(e),className:t,backgroundColor:i?n:void 0,borderColor:i?void 0:n,textAlign:i?"left":void 0,style:c,...s}}},Ian={attributes:{...VO},save({attributes:e}){const{value:t,citation:n}=e;return a.jsxs("blockquote",{children:[a.jsx(Ie.Content,{value:t,multiline:!0}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})},migrate({value:e,...t}){return{value:Nf(e),...t}}},Dan={attributes:{...VO,citation:{type:"string",source:"html",selector:"footer"},align:{type:"string",default:"none"}},save({attributes:e}){const{value:t,citation:n,align:o}=e;return a.jsxs("blockquote",{className:`align${o}`,children:[a.jsx(Ie.Content,{value:t,multiline:!0}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"footer",value:n})]})},migrate({value:e,...t}){return{value:Nf(e),...t}}},Fan=[Ban,Lan,Pan,jan,Ian,Dan],$an="figure",Van="blockquote";function Han({attributes:e,setAttributes:t,isSelected:n,insertBlocksAfter:o}){const{textAlign:r,citation:s,value:i}=e,c=Be({className:oe({[`has-text-align-${r}`]:r})}),l=!Ie.isEmpty(s)||n;return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:r,onChange:u=>{t({textAlign:u})}})}),a.jsx($an,{...c,children:a.jsxs(Van,{children:[a.jsx(Ie,{identifier:"value",tagName:"p",value:i,onChange:u=>t({value:u}),"aria-label":m("Pullquote text"),placeholder:m("Add quote"),textAlign:"center"}),l&&a.jsx(Ie,{identifier:"citation",tagName:"cite",style:{display:"block"},value:s,"aria-label":m("Pullquote citation text"),placeholder:m("Add citation"),onChange:u=>t({citation:u}),className:"wp-block-pullquote__citation",__unstableMobileNoFocusOnMount:!0,textAlign:"center",__unstableOnSplitAtEnd:()=>o(Ee(Mr()))})]})})]})}function Uan({attributes:e}){const{textAlign:t,citation:n,value:o}=e,r=!Ie.isEmpty(n);return a.jsx("figure",{...Be.save({className:oe({[`has-text-align-${t}`]:t})}),children:a.jsxs("blockquote",{children:[a.jsx(Ie.Content,{tagName:"p",value:o}),r&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})})}const Xan={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>Ee("core/pullquote",{value:T0({value:Pqe(e.map(({content:t})=>eo({html:t})),` -`)}),anchor:e.anchor})},{type:"block",blocks:["core/heading"],transform:({content:e,anchor:t})=>Ee("core/pullquote",{value:e,anchor:t})}],to:[{type:"block",blocks:["core/paragraph"],transform:({value:e,citation:t})=>{const n=[];return e&&n.push(Ee("core/paragraph",{content:e})),t&&n.push(Ee("core/paragraph",{content:t})),n.length===0?Ee("core/paragraph",{content:""}):n}},{type:"block",blocks:["core/heading"],transform:({value:e,citation:t})=>{if(!e)return Ee("core/heading",{content:t});const n=Ee("core/heading",{content:e});return t?[n,Ee("core/heading",{content:t})]:n}}]},RD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/pullquote",title:"Pullquote",category:"text",description:"Give special visual emphasis to a quote from your text.",textdomain:"default",attributes:{value:{type:"rich-text",source:"rich-text",selector:"p",role:"content"},citation:{type:"rich-text",source:"rich-text",selector:"cite",role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,align:["left","right","wide","full"],background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},color:{gradients:!0,background:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},dimensions:{minHeight:!0,__experimentalDefaultControls:{minHeight:!1}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},__experimentalStyle:{typography:{fontSize:"1.5em",lineHeight:"1.6"}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-pullquote-editor",style:"wp-block-pullquote"},{name:Oxe}=RD,yxe={icon:RQe,example:{attributes:{value:m("One of the hardest things to do in technology is disrupt yourself."),citation:m("Matt Mullenweg")}},transforms:Xan,edit:Han,save:Uan,deprecated:Fan},Gan=()=>it({name:Oxe,metadata:RD,settings:yxe}),Kan=Object.freeze(Object.defineProperty({__proto__:null,init:Gan,metadata:RD,name:Oxe,settings:yxe},Symbol.toStringTag,{value:"Module"})),AN=e=>{const t=e?.reduce((n,o)=>{const{mapById:r,mapByName:s,names:i}=n;return r[o.id]=o,s[o.name]=o,i.push(o.name),n},{mapById:{},mapByName:{},names:[]});return{entities:e,...t}},Yan=(e,t)=>{const n=t.split(".");let o=e;return n.forEach(r=>{o=o?.[r]}),o},koe=(e,t)=>(e||[]).map(n=>({...n,name:Lt(Yan(n,t))})),Zan=()=>{const e=G(r=>{const{getPostTypes:s}=r(Me),i=["attachment"];return s({per_page:-1})?.filter(({viewable:l,slug:u})=>l&&!i.includes(u))},[]),t=x.useMemo(()=>{if(e?.length)return e.reduce((r,s)=>(r[s.slug]=s.taxonomies,r),{})},[e]),n=x.useMemo(()=>(e||[]).map(({labels:r,slug:s})=>({label:r.singular_name,value:s})),[e]),o=x.useMemo(()=>e?.length?e.reduce((r,s)=>(r[s.slug]=s.supports?.["post-formats"]||!1,r),{}):{},[e]);return{postTypesTaxonomiesMap:t,postTypesSelectOptions:n,postTypeFormatSupportMap:o}},Axe=e=>{const t=G(n=>{const{getTaxonomies:o,getPostType:r}=n(Me);return r(e)?.taxonomies?.length>0?o({type:e,per_page:-1}):[]},[e]);return x.useMemo(()=>t?.filter(({visibility:n})=>!!n?.publicly_queryable),[t])};function Qan(e){return G(t=>{const n=t(Me).getPostType(e);return n?.viewable&&n?.hierarchical},[e])}function Jan(e){return G(t=>t(kt).getActiveBlockVariation("core/query",e)?.allowedControls,[e])}function di(e,t){return e?e.includes(t):!0}const ecn=(e,t)=>{const{query:{postType:n,inherit:o},namespace:r}=t,s=e.map(l=>jo(l)),i=[],c=[...s];for(;c.length>0;){const l=c.shift();l.name==="core/query"&&(l.attributes.query={...l.attributes.query,postType:n,inherit:o},r&&(l.attributes.namespace=r),i.push(l.clientId)),l.innerBlocks?.forEach(u=>{c.push(u)})}return{newBlocks:s,queryClientIds:i}};function tcn(e,t){return G(n=>{const o=n(kt).getActiveBlockVariation("core/query",t)?.name;if(!o)return"core/query";const{getBlockRootClientId:r,getPatternsByBlockTypes:s}=n(Q),i=r(e);return s(`core/query/${o}`,i).length>0?`core/query/${o}`:"core/query"},[e,t])}function ncn(e){const{activeVariationName:t,blockVariations:n}=G(r=>{const{getActiveBlockVariation:s,getBlockVariations:i}=r(kt);return{activeVariationName:s("core/query",e)?.name,blockVariations:i("core/query","block")}},[e]);return x.useMemo(()=>{const r=i=>!i.attributes?.namespace;if(!t)return n.filter(r);const s=n.filter(i=>i.attributes?.namespace?.includes(t));return s.length?s:n.filter(r)},[t,n])}const ocn=(e,t)=>G(n=>{const{getBlockRootClientId:o,getPatternsByBlockTypes:r}=n(Q),s=o(e);return r(t,s)},[t,e]),vxe=e=>G(t=>{const{getClientIdsOfDescendants:n,getBlockName:o}=t(Q),r={};return n(e).forEach(s=>{const i=o(s),c=Object.is(An(i,"interactivity"),!0),l=An(i,"interactivity.clientNavigation");c||l?i==="core/post-content"&&(r.hasPostContentBlock=!0):r.hasBlocksFromPlugins=!0}),r.hasUnsupportedBlocks=r.hasBlocksFromPlugins||r.hasPostContentBlock,r},[e]);function rcn(e){if(!e)return{isSingular:!0};let t=!1,n=e==="wp"?"custom":e;const o=["404","blank","single","page","custom"],r=e.includes("-")?e.split("-",1)[0]:e;return(e.includes("-")?e.split("-").slice(1).join("-"):"")&&(n=r),t=o.includes(n),{isSingular:t,templateType:n}}function scn({enhancedPagination:e,setAttributes:t,clientId:n}){const{hasUnsupportedBlocks:o}=vxe(n),r=window.__experimentalFullPageClientSideNavigation;let s=m("Reload the full page—instead of just the posts list—when visitors navigate between pages.");return r?s=m("Experimental full-page client-side navigation setting enabled."):o&&(s=m("Enhancement disabled because there are non-compatible blocks inside the Query block.")),a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Reload full page"),help:s,checked:!e&&!r,disabled:o||r,onChange:i=>{t({enhancedPagination:!i})}})})}const icn=[{label:m("Newest to oldest"),value:"date/desc"},{label:m("Oldest to newest"),value:"date/asc"},{label:m("A → Z"),value:"title/asc"},{label:m("Z → A"),value:"title/desc"}];function acn({order:e,orderBy:t,onChange:n}){return a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Order by"),value:`${t}/${e}`,options:icn,onChange:o=>{const[r,s]=o.split("/");n({order:s,orderBy:r})}})}const ccn={who:"authors",per_page:-1,_fields:"id,name",context:"view"};function lcn({value:e,onChange:t}){const n=G(l=>{const{getUsers:u}=l(Me);return u(ccn)},[]);if(!n)return null;const o=AN(n),s=(e?e.toString().split(","):[]).reduce((l,u)=>{const d=o.mapById[u];return d&&l.push({id:u,value:d.name}),l},[]),i=(l,u)=>{const d=u?.id||l[u]?.id;if(d)return d},c=l=>{const u=Array.from(l.reduce((d,p)=>{const f=i(o.mapByName,p);return f&&d.add(f),d},new Set));t({author:u.join(",")})};return a.jsx(ip,{label:m("Authors"),value:s,suggestions:o.names,onChange:c,__experimentalShowHowTo:!1,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0})}const Lp=[],Soe={order:"asc",_fields:"id,title",context:"view"};function ucn({parents:e,postType:t,onChange:n}){const[o,r]=x.useState(""),[s,i]=x.useState(Lp),[c,l]=x.useState(Lp),u=C1(r,250),{searchResults:d,searchHasResolved:p}=G(z=>{if(!o)return{searchResults:Lp,searchHasResolved:!0};const{getEntityRecords:A,hasFinishedResolution:_}=z(Me),v=["postType",t,{...Soe,search:o,orderby:"relevance",exclude:e,per_page:20}];return{searchResults:A(...v),searchHasResolved:_("getEntityRecords",v)}},[o,e]),f=G(z=>{if(!e?.length)return Lp;const{getEntityRecords:A}=z(Me);return A("postType",t,{...Soe,include:e,per_page:e.length})},[e]);x.useEffect(()=>{if(e?.length||i(Lp),!f?.length)return;const z=AN(koe(f,"title.rendered")),A=e.reduce((_,v)=>{const M=z.mapById[v];return M&&_.push({id:v,value:M.name}),_},[]);i(A)},[e,f]);const b=x.useMemo(()=>d?.length?AN(koe(d,"title.rendered")):Lp,[d]);x.useEffect(()=>{p&&l(b.names)},[b.names,p]);const h=(z,A)=>{const _=A?.id||z?.[A]?.id;if(_)return _},g=z=>{const A=Array.from(z.reduce((_,v)=>{const M=h(b.mapByName,v);return M&&_.add(M),_},new Set));l(Lp),n({parents:A})};return a.jsx(ip,{__next40pxDefaultSize:!0,label:m("Parents"),value:s,onInputChange:u,suggestions:c,onChange:g,__experimentalShowHowTo:!1,__nextHasNoMarginBottom:!0})}const n2=[],Coe={order:"asc",_fields:"id,name",context:"view"},dcn=(e,t)=>{const n=t?.id||e?.find(r=>r.name===t)?.id;if(n)return n;const o=t.toLocaleLowerCase();return e?.find(r=>r.name.toLocaleLowerCase()===o)?.id};function pcn({onChange:e,query:t}){const{postType:n,taxQuery:o}=t,r=Axe(n);return!r||r.length===0?null:a.jsx(dt,{spacing:4,children:r.map(s=>{const i=o?.[s.slug]||[],c=l=>e({taxQuery:{...o,[s.slug]:l}});return a.jsx(fcn,{taxonomy:s,termIds:i,onChange:c},s.slug)})})}function fcn({taxonomy:e,termIds:t,onChange:n}){const[o,r]=x.useState(""),[s,i]=x.useState(n2),[c,l]=x.useState(n2),u=C1(r,250),{searchResults:d,searchHasResolved:p}=G(h=>{if(!o)return{searchResults:n2,searchHasResolved:!0};const{getEntityRecords:g,hasFinishedResolution:z}=h(Me),A=["taxonomy",e.slug,{...Coe,search:o,orderby:"name",exclude:t,per_page:20}];return{searchResults:g(...A),searchHasResolved:z("getEntityRecords",A)}},[o,t]),f=G(h=>{if(!t?.length)return n2;const{getEntityRecords:g}=h(Me);return g("taxonomy",e.slug,{...Coe,include:t,per_page:t.length})},[t]);x.useEffect(()=>{if(t?.length||i(n2),!f?.length)return;const h=t.reduce((g,z)=>{const A=f.find(_=>_.id===z);return A&&g.push({id:z,value:A.name}),g},[]);i(h)},[t,f]),x.useEffect(()=>{p&&l(d.map(h=>h.name))},[d,p]);const b=h=>{const g=new Set;for(const z of h){const A=dcn(d,z);A&&g.add(A)}l(n2),n(Array.from(g))};return a.jsx("div",{className:"block-library-query-inspector__taxonomy-control",children:a.jsx(ip,{label:e.name,value:s,onInputChange:u,suggestions:c,displayTransform:Lt,onChange:b,__experimentalShowHowTo:!1,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0})})}const bcn=[{value:"aside",label:m("Aside")},{value:"audio",label:m("Audio")},{value:"chat",label:m("Chat")},{value:"gallery",label:m("Gallery")},{value:"image",label:m("Image")},{value:"link",label:m("Link")},{value:"quote",label:m("Quote")},{value:"standard",label:m("Standard")},{value:"status",label:m("Status")},{value:"video",label:m("Video")}].sort((e,t)=>{const n=e.label.toUpperCase(),o=t.label.toUpperCase();return n<o?-1:n>o?1:0});function hcn(e,t){return e.map(n=>t.find(o=>o.label.toLocaleLowerCase()===n.toLocaleLowerCase())?.value).filter(Boolean)}function mcn({onChange:e,query:{format:t}}){const n=Array.isArray(t)?t:[t],{supportedFormats:o}=G(c=>({supportedFormats:c(Me).getThemeSupports().formats}),[]),r=bcn.filter(c=>o.includes(c.value)),s=n.map(c=>r.find(l=>l.value===c)?.label).filter(Boolean),i=r.filter(c=>!n.includes(c.value)).map(c=>c.label);return a.jsx(ip,{label:m("Formats"),value:s,suggestions:i,onChange:c=>{e({format:hcn(c,r)})},__experimentalShowHowTo:!1,__experimentalExpandOnFocus:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0})}const gcn=[{label:m("Include"),value:""},{label:m("Exclude"),value:"exclude"},{label:m("Only"),value:"only"}];function Mcn({value:e,onChange:t}){return a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Sticky posts"),options:gcn,value:e,onChange:t,help:m("Sticky posts always appear first, regardless of their publish date.")})}const qoe=1,Roe=100,zcn=({perPage:e,offset:t=0,onChange:n})=>a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Items per page"),min:qoe,max:Roe,onChange:o=>{isNaN(o)||o<qoe||o>Roe||n({perPage:o,offset:t})},value:parseInt(e,10)}),Toe=0,Ocn=100,ycn=({offset:e=0,onChange:t})=>a.jsx(g0,{__next40pxDefaultSize:!0,label:m("Offset"),value:e,min:Toe,onChange:n=>{isNaN(n)||n<Toe||n>Ocn||t({offset:n})}}),Acn=({pages:e,onChange:t})=>a.jsx(g0,{__next40pxDefaultSize:!0,label:m("Max pages to show"),value:e,min:0,onChange:n=>{isNaN(n)||n<0||t({pages:n})},help:m("Limit the pages you want to show, even if the query has more results. To show all pages use 0 (zero).")});function vcn(e){const{attributes:t,setQuery:n,setDisplayLayout:o,isSingular:r}=e,{query:s,displayLayout:i}=t,{order:c,orderBy:l,author:u,pages:d,postType:p,perPage:f,offset:b,sticky:h,inherit:g,taxQuery:z,parents:A,format:_}=s,v=Jan(t),M=p==="post",{postTypesTaxonomiesMap:y,postTypesSelectOptions:k,postTypeFormatSupportMap:S}=Zan(),C=Axe(p),R=Qan(p),T=we=>{const re={postType:we},pe=y[we],ke=Object.entries(z||{}).reduce((se,[L,U])=>(pe.includes(L)&&(se[L]=U),se),{});re.taxQuery=Object.keys(ke).length?ke:void 0,we!=="post"&&(re.sticky=""),re.parents=[],S[we]||(re.format=[]),n(re)},[E,B]=x.useState(s.search),N=x.useCallback(F1(()=>{s.search!==E&&n({search:E})},250),[E,s.search]);x.useEffect(()=>(N(),N.cancel),[E,N]);const j=!r&&di(v,"inherit"),I=!g&&di(v,"postType"),P=m("Post type"),$=m("Select the type of content to display: posts, pages, or custom post types."),F=!1,X=!g&&di(v,"order"),Z=!g&&M&&di(v,"sticky"),V=j||I||F||X||Z,ee=!!C?.length&&di(v,"taxQuery"),te=di(v,"author"),J=di(v,"search"),ue=di(v,"parents")&&R,ce=S[p],me=G(we=>{if(!ce||!di(v,"format"))return!1;const re=we(Me).getThemeSupports();return re.formats&&re.formats.length>0&&re.formats.some(pe=>pe!=="standard")},[v,ce]),de=ee||te||J||ue||me,Ae=Qo(),ye=di(v,"postCount"),Ne=di(v,"offset"),je=di(v,"pages"),ie=ye||Ne||je;return a.jsxs(a.Fragment,{children:[V&&a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({postType:"post",order:"desc",orderBy:"date",sticky:"",inherit:!0})},dropdownMenuProps:Ae,children:[j&&a.jsx(tt,{hasValue:()=>!g,label:m("Query type"),onDeselect:()=>n({inherit:!0}),isShownByDefault:!0,children:a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Query type"),isBlock:!0,onChange:we=>{n({inherit:we==="default"})},help:m(g?"Display a list of posts or custom post types based on the current template.":"Display a list of posts or custom post types based on specific criteria."),value:g?"default":"custom",children:[a.jsx(Kn,{value:"default",label:m("Default")}),a.jsx(Kn,{value:"custom",label:m("Custom")})]})}),I&&a.jsx(tt,{hasValue:()=>p!=="post",label:P,onDeselect:()=>T("post"),isShownByDefault:!0,children:k.length>2?a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,options:k,value:p,label:P,onChange:T,help:$}):a.jsx(Do,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,isBlock:!0,value:p,label:P,onChange:T,help:$,children:k.map(we=>a.jsx(Kn,{value:we.value,label:we.label},we.value))})}),F,X&&a.jsx(tt,{hasValue:()=>c!=="desc"||l!=="date",label:m("Order by"),onDeselect:()=>n({order:"desc",orderBy:"date"}),isShownByDefault:!0,children:a.jsx(acn,{order:c,orderBy:l,onChange:n})}),Z&&a.jsx(tt,{hasValue:()=>!!h,label:m("Sticky posts"),onDeselect:()=>n({sticky:""}),isShownByDefault:!0,children:a.jsx(Mcn,{value:h,onChange:we=>n({sticky:we})})})]}),!g&&ie&&a.jsxs(En,{className:"block-library-query-toolspanel__display",label:m("Display"),resetAll:()=>{n({offset:0,pages:0})},dropdownMenuProps:Ae,children:[a.jsx(tt,{label:m("Items per page"),hasValue:()=>f>0,children:a.jsx(zcn,{perPage:f,offset:b,onChange:n})}),a.jsx(tt,{label:m("Offset"),hasValue:()=>b>0,onDeselect:()=>n({offset:0}),children:a.jsx(ycn,{offset:b,onChange:n})}),a.jsx(tt,{label:m("Max pages to show"),hasValue:()=>d>0,onDeselect:()=>n({pages:0}),children:a.jsx(Acn,{pages:d,onChange:n})})]}),!g&&de&&a.jsxs(En,{className:"block-library-query-toolspanel__filters",label:m("Filters"),resetAll:()=>{n({author:"",parents:[],search:"",taxQuery:null,format:[]}),B("")},dropdownMenuProps:Ae,children:[ee&&a.jsx(tt,{label:m("Taxonomies"),hasValue:()=>Object.values(z||{}).some(we=>!!we.length),onDeselect:()=>n({taxQuery:null}),children:a.jsx(pcn,{onChange:n,query:s})}),te&&a.jsx(tt,{hasValue:()=>!!u,label:m("Authors"),onDeselect:()=>n({author:""}),children:a.jsx(lcn,{value:u,onChange:n})}),J&&a.jsx(tt,{hasValue:()=>!!E,label:m("Keyword"),onDeselect:()=>B(""),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Keyword"),value:E,onChange:B})}),ue&&a.jsx(tt,{hasValue:()=>!!A?.length,label:m("Parents"),onDeselect:()=>n({parents:[]}),children:a.jsx(ucn,{parents:A,postType:p,onChange:n})}),me&&a.jsx(tt,{hasValue:()=>!!_?.length,label:m("Formats"),onDeselect:()=>n({format:[]}),children:a.jsx(mcn,{onChange:n,query:s})})]})]})}const Eoe="wp-block-query-enhanced-pagination-modal__description";function xcn({clientId:e,attributes:{enhancedPagination:t},setAttributes:n}){const[o,r]=x.useState(!1),{hasBlocksFromPlugins:s,hasPostContentBlock:i,hasUnsupportedBlocks:c}=vxe(e);x.useEffect(()=>{t&&c&&!window.__experimentalFullPageClientSideNavigation&&(n({enhancedPagination:!1}),r(!0))},[t,c,n]);const l=()=>{r(!1)};let u=m('If you still want to prevent full page reloads, remove that block, then disable "Reload full page" again in the Query Block settings.');return s?u=m("Currently, avoiding full page reloads is not possible when non-interactive or non-client Navigation compatible blocks from plugins are present inside the Query block.")+" "+u:i&&(u=m("Currently, avoiding full page reloads is not possible when a Content block is present inside the Query block.")+" "+u),o&&a.jsx(Zo,{title:m("Query block: Reload full page enabled"),className:"wp-block-query__enhanced-pagination-modal",aria:{describedby:Eoe},role:"alertdialog",focusOnMount:"firstElement",isDismissible:!1,onRequestClose:l,children:a.jsxs(dt,{alignment:"right",spacing:5,children:[a.jsx("span",{id:Eoe,children:u}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:l,children:m("OK")})]})})}function Woe(e=""){return e=ms(e),e=e.trim().toLowerCase(),e}function wcn(e,t){const n=Woe(t),o=Woe(e.title);let r=0;return n===o?r+=30:o.startsWith(n)?r+=20:n.split(" ").every(c=>o.includes(c))&&(r+=10),r}function vN(e=[],t=""){if(!t)return e;const n=e.map(o=>[o,wcn(o,t)]).filter(([,o])=>o>0);return n.sort(([,o],[,r])=>r-o),n.map(([o])=>o)}function _cn({clientId:e,attributes:t,setIsPatternSelectionModalOpen:n}){return a.jsx(Zo,{overlayClassName:"block-library-query-pattern__selection-modal",title:m("Choose a pattern"),onRequestClose:()=>n(!1),isFullScreen:!0,children:a.jsx(xxe,{clientId:e,attributes:t})})}function TD(e,t){const n=tcn(e,t);return ocn(e,n)}function xxe({clientId:e,attributes:t,showTitlesAsTooltip:n=!1,showSearch:o=!0}){const[r,s]=x.useState(""),{replaceBlock:i,selectBlock:c}=Oe(Q),l=TD(e,t),u=x.useMemo(()=>({previewPostType:t.query.postType}),[t.query.postType]),d=x.useMemo(()=>vN(l,r),[l,r]),p=(f,b)=>{const{newBlocks:h,queryClientIds:g}=ecn(b,t);i(e,h),g[0]&&c(g[0])};return a.jsxs("div",{className:"block-library-query-pattern__selection-content",children:[o&&a.jsx("div",{className:"block-library-query-pattern__selection-search",children:a.jsx(iu,{__nextHasNoMarginBottom:!0,onChange:s,value:r,label:m("Search"),placeholder:m("Search")})}),a.jsx(uO,{value:u,children:a.jsx(qa,{blockPatterns:d,onClickPattern:p,showTitlesAsTooltip:n})})]})}function kcn({clientId:e,attributes:t}){return TD(e,t).length?a.jsx(Wn,{className:"wp-block-template-part__block-control-group",children:a.jsx($s,{children:a.jsx(so,{contentClassName:"block-editor-block-settings-menu__popover",focusOnMount:"firstElement",expandOnMobile:!0,renderToggle:({isOpen:o,onToggle:r})=>a.jsx(Vt,{"aria-haspopup":"true","aria-expanded":o,onClick:r,children:m("Change design")}),renderContent:()=>a.jsx(xxe,{clientId:e,attributes:t,showSearch:!1,showTitlesAsTooltip:!0})})})}):null}const Scn=3,Ccn=[["core/post-template"]];function wxe({attributes:e,setAttributes:t,clientId:n,context:o,name:r}){const{queryId:s,query:i,displayLayout:c,enhancedPagination:l,tagName:u="div",query:{inherit:d}={}}=e,{templateSlug:p}=o,{isSingular:f}=rcn(p),{__unstableMarkNextChangeAsNotPersistent:b}=Oe(Q),h=vt(wxe),g=Be(),z=Nt(g,{template:Ccn}),{postsPerPage:A}=G(y=>{const{getSettings:k}=y(Q),{getEntityRecord:S,getEntityRecordEdits:C,canUser:R}=y(Me),T=R("read",{kind:"root",name:"site"})?+S("root","site")?.posts_per_page:+k().postsPerPage;return{postsPerPage:+C("root","site")?.posts_per_page||T||Scn}},[]),_=x.useCallback(y=>t({query:{...i,...y}}),[i,t]);x.useEffect(()=>{const y={};(d&&i.perPage!==A||!i.perPage&&A)&&(y.perPage=A),f&&i.inherit&&(y.inherit=!1),Object.keys(y).length&&(b(),_(y))},[i.perPage,i.inherit,A,d,f,b,_]),x.useEffect(()=>{Number.isFinite(s)||(b(),t({queryId:h}))},[s,h,b,t]);const v=y=>t({displayLayout:{...c,...y}}),M={main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content.")};return a.jsxs(a.Fragment,{children:[a.jsx(xcn,{attributes:e,setAttributes:t,clientId:n}),a.jsx(et,{children:a.jsx(vcn,{name:r,attributes:e,setQuery:_,setDisplayLayout:v,setAttributes:t,clientId:n,isSingular:f})}),a.jsx(bt,{children:a.jsx(kcn,{attributes:e,clientId:n})}),a.jsxs(et,{group:"advanced",children:[a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<aside>",value:"aside"}],value:u,onChange:y=>t({tagName:y}),help:M[u]}),a.jsx(scn,{enhancedPagination:l,setAttributes:t,clientId:n})]}),a.jsx(u,{...z})]})}function qcn({attributes:e,clientId:t,name:n,openPatternSelectionModal:o}){const[r,s]=x.useState(!1),i=Be(),{blockType:c,activeBlockVariation:l}=G(f=>{const{getActiveBlockVariation:b,getBlockType:h}=f(kt);return{blockType:h(n),activeBlockVariation:b(n,e)}},[n,e]),u=!!TD(t,e).length,d=l?.icon?.src||l?.icon||c?.icon?.src,p=l?.title||c?.title;return r?a.jsx(Rcn,{clientId:t,attributes:e,icon:d,label:p}):a.jsx("div",{...i,children:a.jsxs(vo,{icon:d,label:p,instructions:m("Choose a pattern for the query loop or start blank."),children:[!!u&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:o,children:m("Choose")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>{s(!0)},children:m("Start blank")})]})})}function Rcn({clientId:e,attributes:t,icon:n,label:o}){const r=ncn(t),{replaceInnerBlocks:s}=Oe(Q),i=Be();return a.jsx("div",{...i,children:a.jsx(Dze,{icon:n,label:o,variations:r,onSelect:c=>{c.innerBlocks&&s(e,Ad(c.innerBlocks),!1)}})})}const Tcn=e=>{const{clientId:t,attributes:n}=e,[o,r]=x.useState(!1),i=G(c=>!!c(Q).getBlocks(t).length,[t])?wxe:qcn;return a.jsxs(a.Fragment,{children:[a.jsx(i,{...e,openPatternSelectionModal:()=>r(!0)}),o&&a.jsx(_cn,{clientId:t,attributes:n,setIsPatternSelectionModalOpen:r})]})};function Ecn({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})}const Wcn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M41 9H7v3h34V9zm-22 5H7v1h12v-1zM7 26h12v1H7v-1zm34-5H7v3h34v-3zM7 38h12v1H7v-1zm34-5H7v3h34v-3z"})}),Ncn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M41 9H7v3h34V9zm-4 5H7v1h30v-1zm4 3H7v1h34v-1zM7 20h30v1H7v-1zm0 12h30v1H7v-1zm34 3H7v1h34v-1zM7 38h30v1H7v-1zm34-11H7v3h34v-3z"})}),Bcn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M41 9H7v3h34V9zm-22 5H7v1h12v-1zm22 3H7v1h34v-1zM7 20h34v1H7v-1zm0 12h12v1H7v-1zm34 3H7v1h34v-1zM7 38h34v1H7v-1zm34-11H7v3h34v-3z"})}),Lcn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M7 9h34v6H7V9zm12 8H7v1h12v-1zm18 3H7v1h30v-1zm0 18H7v1h30v-1zM7 35h12v1H7v-1zm34-8H7v6h34v-6z"})}),Pcn=[{name:"title-date",title:m("Title & Date"),icon:Wcn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-date"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]},{name:"title-excerpt",title:m("Title & Excerpt"),icon:Ncn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-excerpt"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]},{name:"title-date-excerpt",title:m("Title, Date, & Excerpt"),icon:Bcn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-date"],["core/post-excerpt"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]},{name:"image-date-title",title:m("Image, Date, & Title"),icon:Lcn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-featured-image"],["core/post-date"],["core/post-title"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]}],{cleanEmptyObject:ZT}=e0(Ln),_xe=e=>{const{query:t}=e,{categoryIds:n,tagIds:o,...r}=t;return(t.categoryIds?.length||t.tagIds?.length)&&(r.taxQuery={category:t.categoryIds?.length?t.categoryIds:void 0,post_tag:t.tagIds?.length?t.tagIds:void 0}),{...e,query:r}},kxe=(e,t)=>{const{style:n,backgroundColor:o,gradient:r,textColor:s,...i}=e;if(!(o||r||s||n?.color||n?.elements?.link))return[e,t];if(n&&(i.style=ZT({...n,color:void 0,elements:{...n.elements,link:void 0}})),jcn(t)){const u=t[0],p=n?.color||n?.elements?.link||u.attributes.style?ZT({...u.attributes.style,color:n?.color,elements:n?.elements?.link?{link:n?.elements?.link}:void 0}):void 0,f=Ee("core/group",{...u.attributes,backgroundColor:o,gradient:r,textColor:s,style:p},u.innerBlocks);return[i,[f]]}const l=Ee("core/group",{backgroundColor:o,gradient:r,textColor:s,style:ZT({color:n?.color,elements:n?.elements?.link?{link:n?.elements?.link}:void 0})},t);return[i,[l]]},jcn=(e=[])=>e.length===1&&e[0].name==="core/group",ED=e=>{const{layout:t=null}=e;if(!t)return e;const{inherit:n=null,contentSize:o=null,...r}=t;return n||o?{...e,layout:{...r,contentSize:o,type:"constrained"}}:e},Sxe=(e=[])=>{let t=null;for(const n of e)if(n.name==="core/post-template"){t=n;break}else n.innerBlocks.length&&(t=Sxe(n.innerBlocks));return t},Cxe=(e=[],t)=>(e.forEach((n,o)=>{n.name==="core/post-template"?e.splice(o,1,t):n.innerBlocks.length&&(n.innerBlocks=Cxe(n.innerBlocks,t))}),e),HO=(e,t)=>{const{displayLayout:n=null,...o}=e;if(!n)return[e,t];const r=Sxe(t);if(!r)return[e,t];const{type:s,columns:i}=n,c=s==="flex"?"grid":"default",l=Ee("core/post-template",{...r.attributes,layout:{type:c,...i&&{columnCount:i}}},r.innerBlocks);return[o,Cxe(t,l)]},Icn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0}},layout:{type:"object",default:{type:"list"}}},supports:{html:!1},migrate(e,t){const n=_xe(e),{layout:o,...r}=n,s={...r,displayLayout:n.layout};return HO(s,t)},save(){return a.jsx(Ht.Content,{})}},Dcn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},layout:!0},isEligible:({query:{categoryIds:e,tagIds:t}={}})=>e||t,migrate(e,t){const n=_xe(e),[o,r]=kxe(n,t),s=ED(o);return HO(s,r)},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})}},Fcn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[]}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}},namespace:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},layout:!0},isEligible(e){const{style:t,backgroundColor:n,gradient:o,textColor:r}=e;return n||o||r||t?.color||t?.elements?.link},migrate(e,t){const[n,o]=kxe(e,t),r=ED(n);return HO(r,o)},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})}},$cn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[]}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}},namespace:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},layout:!0},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})},isEligible:({layout:e})=>e?.inherit||e?.contentSize&&e?.type!=="constrained",migrate(e,t){const n=ED(e);return HO(n,t)}},Vcn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[]}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}},namespace:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,layout:!0},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})},isEligible:({displayLayout:e})=>!!e,migrate:HO},Hcn=[Vcn,$cn,Fcn,Dcn,Icn],WD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query",title:"Query Loop",category:"theme",description:"An advanced block that allows displaying post types based on different query parameters and visual configurations.",keywords:["posts","list","blog","blogs","custom post types"],textdomain:"default",attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[],format:[]}},tagName:{type:"string",default:"div"},namespace:{type:"string"},enhancedPagination:{type:"boolean",default:!1}},usesContext:["templateSlug"],providesContext:{queryId:"queryId",query:"query",displayLayout:"displayLayout",enhancedPagination:"enhancedPagination"},supports:{align:["wide","full"],html:!1,layout:!0,interactivity:!0},editorStyle:"wp-block-query-editor"},{name:qxe}=WD,Rxe={icon:hde,edit:Tcn,example:{viewportWidth:650,attributes:{namespace:"core/posts-list",query:{perPage:4,pages:1,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",sticky:"exclude",inherit:!1}},innerBlocks:[{name:"core/post-template",attributes:{layout:{type:"grid",columnCount:2}},innerBlocks:[{name:"core/post-title"},{name:"core/post-date"},{name:"core/post-excerpt"}]}]},save:Ecn,variations:Pcn,deprecated:Hcn},Ucn=()=>it({name:qxe,metadata:WD,settings:Rxe}),Xcn=Object.freeze(Object.defineProperty({__proto__:null,init:Ucn,metadata:WD,name:qxe,settings:Rxe},Symbol.toStringTag,{value:"Module"})),Gcn=[["core/paragraph",{placeholder:m("Add text or blocks that will display when a query returns no results.")}]];function Kcn(){const e=Be(),t=Nt(e,{template:Gcn});return a.jsx("div",{...t})}function Ycn(){return a.jsx(Ht.Content,{})}const ND={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-no-results",title:"No results",category:"theme",description:"Contains the block elements used to render content when no query results are found.",ancestor:["core/query"],textdomain:"default",usesContext:["queryId","query"],supports:{align:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:Txe}=ND,Exe={icon:hde,edit:Kcn,save:Ycn,example:{innerBlocks:[{name:"core/paragraph",attributes:{content:m("No posts were found.")}}]}},Zcn=()=>it({name:Txe,metadata:ND,settings:Exe}),Qcn=Object.freeze(Object.defineProperty({__proto__:null,init:Zcn,metadata:ND,name:Txe,settings:Exe},Symbol.toStringTag,{value:"Module"}));function Jcn({value:e,onChange:t}){return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Arrow"),value:e,onChange:t,help:m("A decorative arrow appended to the next and previous page link."),isBlock:!0,children:[a.jsx(Kn,{value:"none",label:We("None","Arrow option for Query Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"arrow",label:We("Arrow","Arrow option for Query Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"chevron",label:We("Chevron","Arrow option for Query Pagination Next/Previous blocks")})]})}function eln({value:e,onChange:t}){return a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show label text"),help:m('Make label text visible, e.g. "Next Page".'),onChange:t,checked:e===!0})}const tln=[["core/query-pagination-previous"],["core/query-pagination-numbers"],["core/query-pagination-next"]];function nln({attributes:{paginationArrow:e,showLabel:t},setAttributes:n,clientId:o}){const r=G(u=>{const{getBlocks:d}=u(Q);return d(o)?.find(f=>["core/query-pagination-next","core/query-pagination-previous"].includes(f.name))},[o]),{__unstableMarkNextChangeAsNotPersistent:s}=Oe(Q),i=Qo(),c=Be(),l=Nt(c,{template:tln});return x.useEffect(()=>{e==="none"&&!t&&(s(),n({showLabel:!0}))},[e,n,t,s]),a.jsxs(a.Fragment,{children:[r&&a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({paginationArrow:"none",showLabel:!0})},dropdownMenuProps:i,children:[a.jsx(tt,{hasValue:()=>e!=="none",label:m("Pagination arrow"),onDeselect:()=>n({paginationArrow:"none"}),isShownByDefault:!0,children:a.jsx(Jcn,{value:e,onChange:u=>{n({paginationArrow:u})}})}),e!=="none"&&a.jsx(tt,{hasValue:()=>!t,label:m("Show text"),onDeselect:()=>n({showLabel:!0}),isShownByDefault:!0,children:a.jsx(eln,{value:t,onChange:u=>{n({showLabel:u})}})})]})}),a.jsx("nav",{...l})]})}function oln(){return a.jsx(Ht.Content,{})}const rln=[{save(){return a.jsx("div",{...Be.save(),children:a.jsx(Ht.Content,{})})}}],BD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination",title:"Pagination",category:"theme",ancestor:["core/query"],allowedBlocks:["core/query-pagination-previous","core/query-pagination-numbers","core/query-pagination-next"],description:"Displays a paginated navigation to next/previous set of posts, when applicable.",textdomain:"default",attributes:{paginationArrow:{type:"string",default:"none"},showLabel:{type:"boolean",default:!0}},usesContext:["queryId","query"],providesContext:{paginationArrow:"paginationArrow",showLabel:"showLabel"},supports:{align:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-query-pagination-editor",style:"wp-block-query-pagination"},{name:Wxe}=BD,Nxe={icon:qde,edit:nln,save:oln,deprecated:rln},sln=()=>it({name:Wxe,metadata:BD,settings:Nxe}),iln=Object.freeze(Object.defineProperty({__proto__:null,init:sln,metadata:BD,name:Wxe,settings:Nxe},Symbol.toStringTag,{value:"Module"})),aln={none:"",arrow:"→",chevron:"»"};function cln({attributes:{label:e},setAttributes:t,context:{paginationArrow:n,showLabel:o}}){const r=aln[n];return a.jsxs("a",{href:"#pagination-next-pseudo-link",onClick:s=>s.preventDefault(),...Be(),children:[o&&a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Next page link"),placeholder:m("Next Page"),value:e,onChange:s=>t({label:s})}),r&&a.jsx("span",{className:`wp-block-query-pagination-next-arrow is-arrow-${n}`,"aria-hidden":!0,children:r})]})}const LD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination-next",title:"Next Page",category:"theme",parent:["core/query-pagination"],description:"Displays the next posts page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["queryId","query","paginationArrow","showLabel","enhancedPagination"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:Bxe}=LD,Lxe={icon:Rde,edit:cln},lln=()=>it({name:Bxe,metadata:LD,settings:Lxe}),uln=Object.freeze(Object.defineProperty({__proto__:null,init:lln,metadata:LD,name:Bxe,settings:Lxe},Symbol.toStringTag,{value:"Module"})),Gg=(e,t="a",n="")=>a.jsx(t,{className:`page-numbers ${n}`,children:e},e),dln=e=>{const t=[];for(let n=1;n<=e;n++)t.push(Gg(n));t.push(Gg(e+1,"span","current"));for(let n=1;n<=e;n++)t.push(Gg(e+1+n));return t.push(Gg("...","span","dots")),t.push(Gg(e*2+3)),a.jsx(a.Fragment,{children:t})};function pln({attributes:e,setAttributes:t}){const{midSize:n}=e,o=dln(parseInt(n,10)),r=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>t({midSize:2}),dropdownMenuProps:r,children:a.jsx(tt,{label:m("Number of links"),hasValue:()=>n!==void 0,onDeselect:()=>t({midSize:2}),isShownByDefault:!0,children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Number of links"),help:m("Specify how many links can appear before and after the current page number. Links to the first, current and last page are always visible."),value:n,onChange:s=>{t({midSize:parseInt(s,10)})},min:0,max:5,withInputField:!1})})})}),a.jsx("div",{...Be(),children:o})]})}const PD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination-numbers",title:"Page Numbers",category:"theme",parent:["core/query-pagination"],description:"Displays a list of page numbers for pagination.",textdomain:"default",attributes:{midSize:{type:"number",default:2}},usesContext:["queryId","query","enhancedPagination"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-query-pagination-numbers-editor"},{name:Pxe}=PD,jxe={icon:Tde,edit:pln,example:{}},fln=()=>it({name:Pxe,metadata:PD,settings:jxe}),bln=Object.freeze(Object.defineProperty({__proto__:null,init:fln,metadata:PD,name:Pxe,settings:jxe},Symbol.toStringTag,{value:"Module"})),hln={none:"",arrow:"←",chevron:"«"};function mln({attributes:{label:e},setAttributes:t,context:{paginationArrow:n,showLabel:o}}){const r=hln[n];return a.jsxs("a",{href:"#pagination-previous-pseudo-link",onClick:s=>s.preventDefault(),...Be(),children:[r&&a.jsx("span",{className:`wp-block-query-pagination-previous-arrow is-arrow-${n}`,"aria-hidden":!0,children:r}),o&&a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Previous page link"),placeholder:m("Previous Page"),value:e,onChange:s=>t({label:s})})]})}const jD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination-previous",title:"Previous Page",category:"theme",parent:["core/query-pagination"],description:"Displays the previous posts page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["queryId","query","paginationArrow","showLabel","enhancedPagination"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:Ixe}=jD,Dxe={icon:Ede,edit:mln},gln=()=>it({name:Ixe,metadata:jD,settings:Dxe}),Mln=Object.freeze(Object.defineProperty({__proto__:null,init:gln,metadata:jD,name:Ixe,settings:Dxe},Symbol.toStringTag,{value:"Module"}));function zln(){const e=G(i=>{const{getCurrentPostId:c,getCurrentPostType:l,getCurrentTemplateId:u}=i("core/editor"),d=l(),p=u()||(d==="wp_template"?c():null);return p?i(Me).getEditedEntityRecord("postType","wp_template",p)?.slug:null},[]),t=e?.match(/^(category|tag|taxonomy-([^-]+))$|^(((category|tag)|taxonomy-([^-]+))-(.+))$/);let n,o,r=!1,s;if(t)t[1]?n=t[2]?t[2]:t[1]:t[3]&&(n=t[6]?t[6]:t[4],o=t[7]),n=n==="tag"?"post_tag":n;else{const i=e?.match(/^(author)$|^author-(.+)$/);i&&(r=!0,i[2]&&(s=i[2]))}return G(i=>{const{getEntityRecords:c,getTaxonomy:l,getAuthors:u}=i(Me);let d,p;if(n&&(d=l(n)?.labels?.singular_name),o){const f=c("taxonomy",n,{slug:o,per_page:1});f&&f[0]&&(p=f[0].name)}if(r&&(d="Author",s)){const f=u({slug:s});f&&f[0]&&(p=f[0].name)}return{archiveTypeLabel:d,archiveNameLabel:p}},[s,r,n,o])}const Oln=["archive","search"];function yln({attributes:{type:e,level:t,levelOptions:n,textAlign:o,showPrefix:r,showSearchTerm:s},setAttributes:i}){const{archiveTypeLabel:c,archiveNameLabel:l}=zln(),u=Qo(),d=`h${t}`,p=Be({className:oe("wp-block-query-title__placeholder",{[`has-text-align-${o}`]:o})});if(!Oln.includes(e))return a.jsx("div",{...p,children:a.jsx(Er,{children:m("Provided type is not supported.")})});let f;if(e==="archive"){let b;c?r?l?b=xe(We("%1$s: %2$s","archive label"),c,l):b=xe(m("%s: Name"),c):l?b=l:b=xe(m("%s name"),c):b=m(r?"Archive type: Name":"Archive title"),f=a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>i({showPrefix:!0}),dropdownMenuProps:u,children:a.jsx(tt,{hasValue:()=>!r,label:m("Show archive type in title"),onDeselect:()=>i({showPrefix:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show archive type in title"),onChange:()=>i({showPrefix:!r}),checked:r})})})}),a.jsx(d,{...p,children:b})]})}return e==="search"&&(f=a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>i({showSearchTerm:!0}),children:a.jsx(tt,{hasValue:()=>!s,label:m("Show search term in title"),onDeselect:()=>i({showSearchTerm:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show search term in title"),onChange:()=>i({showSearchTerm:!s}),checked:s})})})}),a.jsx(d,{...p,children:m(s?"Search results for: “search term”":"Search results")})]})),a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:t,options:n,onChange:b=>i({level:b})}),a.jsx(nr,{value:o,onChange:b=>{i({textAlign:b})}})]}),f]})}const Fxe=[{isDefault:!0,name:"archive-title",title:m("Archive Title"),description:m("Display the archive title based on the queried object."),icon:yz,attributes:{type:"archive"},scope:["inserter"]},{isDefault:!1,name:"search-title",title:m("Search Results Title"),description:m("Display the search results title based on the queried object."),icon:yz,attributes:{type:"search"},scope:["inserter"]}];Fxe.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.type===n.type)});const Aln={attributes:{type:{type:"string"},textAlign:{type:"string"},level:{type:"number",default:1}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},vln=[Aln],ID={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-title",title:"Query Title",category:"theme",description:"Display the query title.",textdomain:"default",attributes:{type:{type:"string"},textAlign:{type:"string"},level:{type:"number",default:1},levelOptions:{type:"array"},showPrefix:{type:"boolean",default:!0},showSearchTerm:{type:"boolean",default:!0}},example:{attributes:{type:"search"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-query-title"},{name:$xe}=ID,Vxe={icon:yz,edit:yln,variations:Fxe,deprecated:vln},xln=()=>it({name:$xe,metadata:ID,settings:Vxe}),wln=Object.freeze(Object.defineProperty({__proto__:null,init:xln,metadata:ID,name:$xe,settings:Vxe},Symbol.toStringTag,{value:"Module"})),Noe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:a.jsx(he,{d:"M4 11h4v2H4v-2zm6 0h6v2h-6v-2zm8 0h2v2h-2v-2z"})}),Boe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:a.jsx(he,{d:"M4 13h2v-2H4v2zm4 0h10v-2H8v2zm12 0h2v-2h-2v2z"})}),_ln=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2Zm.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12Zm-7-6-4.1 5h8.8v-3h-1.5v1.5h-4.2l2.9-3.5-2.9-3.5h4.2V10h1.5V7H7.4l4.1 5Z"})});function kln({attributes:e,setAttributes:t}){const{displayType:n}=e,o=Be(),r=()=>{switch(n){case"total-results":return Noe;case"range-display":return Boe}},s=[{role:"menuitemradio",title:m("Total results"),isActive:n==="total-results",icon:Noe,onClick:()=>{t({displayType:"total-results"})}},{role:"menuitemradio",title:m("Range display"),isActive:n==="range-display",icon:Boe,onClick:()=>{t({displayType:"range-display"})}}],i=a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Lc,{icon:r(),label:m("Change display type"),controls:s})})}),c=()=>n==="total-results"?a.jsx(a.Fragment,{children:m("12 results found")}):n==="range-display"?a.jsx(a.Fragment,{children:m("Displaying 1 – 10 of 12")}):null;return a.jsxs("div",{...o,children:[i,c()]})}const DD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-total",title:"Query Total",category:"theme",ancestor:["core/query"],description:"Display the total number of results in a query.",textdomain:"default",attributes:{displayType:{type:"string",default:"total-results"}},usesContext:["queryId","query"],supports:{align:["wide","full"],html:!1,spacing:{margin:!0,padding:!0},color:{gradients:!0,text:!0,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-query-total"},{name:Hxe}=DD,Uxe={icon:_ln,edit:kln},Sln=()=>it({name:Hxe,metadata:DD,settings:Uxe}),Cln=Object.freeze(Object.defineProperty({__proto__:null,init:Sln,metadata:DD,name:Hxe,settings:Uxe},Symbol.toStringTag,{value:"Module"})),Bf=e=>{const{value:t,...n}=e;return[{...n},t?tw(t,{type:"array",source:"query",selector:"p",query:{content:{type:"string",source:"html"}}}).map(({content:o})=>Ee("core/paragraph",{content:o})):Ee("core/paragraph")]},Xxe=["left","right","center"],Lf=(e,t)=>{const{align:n,...o}=e;return[Xxe.includes(n)?{...o,textAlign:n}:e,t]},qln=(e,t)=>[{...e,className:e.className?e.className+" is-style-large":"is-style-large"},t],Rln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:"",role:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",role:"content"},align:{type:"string"}},supports:{anchor:!0,html:!1,__experimentalOnEnter:!0,__experimentalOnMerge:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}}},isEligible:({align:e})=>Xxe.includes(e),save({attributes:e}){const{align:t,citation:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsxs("blockquote",{...Be.save({className:o}),children:[a.jsx(Ht.Content,{}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})},migrate:Lf},Tln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:"",role:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",role:"content"},align:{type:"string"}},supports:{anchor:!0,__experimentalSlashInserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0}}},save({attributes:e}){const{align:t,value:n,citation:o}=e,r=oe({[`has-text-align-${t}`]:t});return a.jsxs("blockquote",{...Be.save({className:r}),children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"cite",value:o})]})},migrate(e){return Lf(...Bf(e))}},Eln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:""},citation:{type:"string",source:"html",selector:"cite",default:""},align:{type:"string"}},migrate(e){return Lf(...Bf(e))},save({attributes:e}){const{align:t,value:n,citation:o}=e;return a.jsxs("blockquote",{style:{textAlign:t||null},children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"cite",value:o})]})}},Wln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:""},citation:{type:"string",source:"html",selector:"cite",default:""},align:{type:"string"},style:{type:"number",default:1}},migrate(e){if(e.style===2){const{style:t,...n}=e;return Lf(...qln(...Bf(n)))}return Lf(...Bf(e))},save({attributes:e}){const{align:t,value:n,citation:o,style:r}=e;return a.jsxs("blockquote",{className:r===2?"is-large":"",style:{textAlign:t||null},children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"cite",value:o})]})}},Nln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:""},citation:{type:"string",source:"html",selector:"footer",default:""},align:{type:"string"},style:{type:"number",default:1}},migrate(e){if(!isNaN(parseInt(e.style))){const{style:t,...n}=e;return Lf(...Bf(n))}return Lf(...Bf(e))},save({attributes:e}){const{align:t,value:n,citation:o,style:r}=e;return a.jsxs("blockquote",{className:`blocks-quote-style-${r}`,style:{textAlign:t||null},children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"footer",value:o})]})}},Bln=[Rln,Tln,Eln,Wln,Nln],Lln=f0.OS==="web",Pln=[["core/paragraph",{}]],jln=(e,t)=>{const n=Fn(),{updateBlockAttributes:o,replaceInnerBlocks:r}=Oe(Q);x.useEffect(()=>{if(!e.value)return;const[s,i]=Bf(e);Ke("Value attribute on the quote block",{since:"6.0",version:"6.5",alternative:"inner blocks"}),n.batch(()=>{o(t,s),r(t,i)})},[e.value])};function Iln({attributes:e,setAttributes:t,insertBlocksAfter:n,clientId:o,className:r,style:s,isSelected:i}){const{textAlign:c}=e;jln(e,o);const l=Be({className:oe(r,{[`has-text-align-${c}`]:c}),...!Lln}),u=Nt(l,{template:Pln,templateInsertUpdatesSelection:!0,__experimentalCaptureToolbars:!0,renderAppender:!1});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:c,onChange:d=>{t({textAlign:d})}})}),a.jsxs(O7e,{...u,children:[u.children,a.jsx(fb,{attributeKey:"citation",tagName:"cite",style:{display:"block"},isSelected:i,attributes:e,setAttributes:t,__unstableMobileNoFocusOnMount:!0,icon:$w,label:m("Quote citation"),placeholder:m("Add citation"),addLabel:m("Add citation"),removeLabel:m("Remove citation"),excludeElementClassName:!0,className:"wp-block-quote__citation",insertBlocksAfter:n})]})]})}function Dln({attributes:e}){const{textAlign:t,citation:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsxs("blockquote",{...Be.save({className:o}),children:[a.jsx(Ht.Content,{}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})}const Fln={from:[{type:"block",blocks:["core/pullquote"],transform:({value:e,align:t,citation:n,anchor:o,fontSize:r,style:s})=>Ee("core/quote",{align:t,citation:n,anchor:o,fontSize:r,style:s},[Ee("core/paragraph",{content:e})])},{type:"prefix",prefix:">",transform:e=>Ee("core/quote",{},[Ee("core/paragraph",{content:e})])},{type:"raw",schema:()=>({blockquote:{children:"*"}}),selector:"blockquote",transform:(e,t)=>Ee("core/quote",{},t({HTML:e.innerHTML,mode:"BLOCKS"}))},{type:"block",isMultiBlock:!0,blocks:["*"],isMatch:({},e)=>e.length===1?["core/paragraph","core/heading","core/list","core/pullquote"].includes(e[0].name):!e.some(({name:t})=>t==="core/quote"),__experimentalConvert:e=>Ee("core/quote",{},e.map(t=>Ee(t.name,t.attributes,t.innerBlocks)))}],to:[{type:"block",blocks:["core/pullquote"],isMatch:({},e)=>e.innerBlocks.every(({name:t})=>t==="core/paragraph"),transform:({align:e,citation:t,anchor:n,fontSize:o,style:r},s)=>{const i=s.map(({attributes:c})=>`${c.content}`).join("<br>");return Ee("core/pullquote",{value:i,align:e,citation:t,anchor:n,fontSize:o,style:r})}},{type:"block",blocks:["core/paragraph"],transform:({citation:e},t)=>Ie.isEmpty(e)?t:[...t,Ee("core/paragraph",{content:e})]},{type:"block",blocks:["core/group"],transform:({citation:e,anchor:t},n)=>Ee("core/group",{anchor:t},Ie.isEmpty(e)?n:[...n,Ee("core/paragraph",{content:e})])}],ungroup:({citation:e},t)=>Ie.isEmpty(e)?t:[...t,Ee("core/paragraph",{content:e})]},FD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/quote",title:"Quote",category:"text",description:'Give quoted text visual emphasis. "In quoting others, we cite ourselves." — Julio Cortázar',keywords:["blockquote","cite"],textdomain:"default",attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:"",role:"content"},citation:{type:"rich-text",source:"rich-text",selector:"cite",role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,align:["left","right","wide","full"],html:!1,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},dimensions:{minHeight:!0,__experimentalDefaultControls:{minHeight:!1}},__experimentalOnEnter:!0,__experimentalOnMerge:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},layout:{allowEditing:!1},spacing:{blockGap:!0,padding:!0,margin:!0},interactivity:{clientNavigation:!0}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"plain",label:"Plain"}],editorStyle:"wp-block-quote-editor",style:"wp-block-quote"},{name:Gxe}=FD,Kxe={icon:TQe,example:{attributes:{citation:"Julio Cortázar"},innerBlocks:[{name:"core/paragraph",attributes:{content:m("In quoting others, we cite ourselves.")}}]},transforms:Fln,edit:Iln,save:Dln,deprecated:Bln},$ln=()=>it({name:Gxe,metadata:FD,settings:Kxe}),Vln=Object.freeze(Object.defineProperty({__proto__:null,init:$ln,metadata:FD,name:Gxe,settings:Kxe},Symbol.toStringTag,{value:"Module"})),{useLayoutClasses:Hln}=e0(Ln),{hasOverridableBlocks:Uln}=e0(Hi),Xln=["full","wide","left","right"],Gln=(e,t)=>{const n=x.useRef();return x.useMemo(()=>{if(!e?.length)return{};let o=n.current;if(o===void 0){const s=t?.type==="constrained",i=e.some(c=>Xln.includes(c.attributes.align));o=s&&i?"full":null,n.current=o}return{alignment:o,layout:o?t:void 0}},[e,t])};function Kln(){const e=Be();return a.jsx("div",{...e,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})})}const Loe=()=>{};function Yln(e){const{ref:t}=e.attributes;return ok(t)?a.jsx(Kln,{}):a.jsx(TO,{uniqueId:t,children:a.jsx(Qln,{...e})})}function Zln({recordId:e,canOverrideBlocks:t,hasContent:n,handleEditOriginal:o,resetContent:r}){const s=G(i=>!!i(Me).canUser("update",{kind:"postType",name:"wp_block",id:e}),[e]);return a.jsxs(a.Fragment,{children:[s&&!!o&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:o,children:m("Edit original")})})}),t&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:r,disabled:!n,children:m("Reset")})})})]})}function Qln({name:e,attributes:{ref:t,content:n},__unstableParentLayout:o,setAttributes:r}){const{record:s,hasResolved:i}=Z5("postType","wp_block",t),[c]=Ni("postType","wp_block",{id:t}),l=i&&!s,{__unstableMarkLastChangeAsPersistent:u}=Oe(Q),{onNavigateToEntityRecord:d,hasPatternOverridesSource:p}=G(y=>{const{getSettings:k}=y(Q);return{onNavigateToEntityRecord:k().onNavigateToEntityRecord,hasPatternOverridesSource:!!xl("core/pattern-overrides")}},[]),f=x.useMemo(()=>p&&Uln(c),[p,c]),{alignment:b,layout:h}=Gln(c,o),g=Hln({layout:h},e),z=Be({className:oe("block-library-block__reusable-block-container",h&&g,{[`align${b}`]:b})}),A=Nt(z,{layout:h,value:c,onInput:Loe,onChange:Loe,renderAppender:c?.length?void 0:Ht.ButtonBlockAppender}),_=()=>{d({postId:t,postType:"wp_block"})},v=()=>{n&&(u(),r({content:void 0}))};let M=null;return l&&(M=a.jsx(Er,{children:m("Block has been deleted or is unavailable.")})),i||(M=a.jsx(vo,{children:a.jsx(Xn,{})})),a.jsxs(a.Fragment,{children:[i&&!l&&a.jsx(Zln,{recordId:t,canOverrideBlocks:f,hasContent:!!n,handleEditOriginal:d?_:void 0,resetContent:v}),M===null?a.jsx("div",{...A}):a.jsx("div",{...z,children:M})]})}const Jln=e=>typeof e=="object"&&!Array.isArray(e)&&e!==null,eun={attributes:{ref:{type:"number"},content:{type:"object"}},supports:{customClassName:!1,html:!1,inserter:!1,renaming:!1},isEligible({content:e}){return!!e&&Object.keys(e).every(t=>e[t].values&&Jln(e[t].values))},migrate(e){const{content:t,...n}=e;if(t&&Object.keys(t).length){const o={...t};for(const r in t)o[r]=t[r].values;return{...n,content:o}}return e}},tun={attributes:{ref:{type:"number"},overrides:{type:"object"}},supports:{customClassName:!1,html:!1,inserter:!1,renaming:!1},isEligible({overrides:e}){return!!e},migrate(e){const{overrides:t,...n}=e,o={};return Object.keys(t).forEach(r=>{o[r]=t[r]}),{...n,content:o}}},nun=[eun,tun],$D={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/block",title:"Pattern",category:"reusable",description:"Reuse this design across your site.",keywords:["reusable"],textdomain:"default",attributes:{ref:{type:"number"},content:{type:"object",default:{}}},providesContext:{"pattern/overrides":"content"},supports:{customClassName:!1,html:!1,inserter:!1,renaming:!1,interactivity:{clientNavigation:!0}}},{name:Yxe}=$D,Zxe={deprecated:nun,edit:Yln,icon:Bd,__experimentalLabel:({ref:e})=>{if(!e)return;const t=uo(Me).getEditedEntityRecord("postType","wp_block",e);if(t?.title)return Lt(t.title)}},oun=()=>it({name:Yxe,metadata:$D,settings:Zxe}),run=Object.freeze(Object.defineProperty({__proto__:null,init:oun,metadata:$D,name:Yxe,settings:Zxe},Symbol.toStringTag,{value:"Module"}));function sun({attributes:{content:e,linkTarget:t},setAttributes:n,insertBlocksAfter:o}){const r=Be();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:s=>n({linkTarget:s?"_blank":"_self"}),checked:t==="_blank"})})}),a.jsx(Ie,{identifier:"content",tagName:"a","aria-label":m("“Read more” link text"),placeholder:m("Read more"),value:e,onChange:s=>n({content:s}),__unstableOnSplitAtEnd:()=>o(Ee(Mr())),withoutInteractiveFormatting:!0,...r})]})}const VD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/read-more",title:"Read More",category:"theme",description:"Displays the link of a post, page, or any other content-type.",textdomain:"default",attributes:{content:{type:"string"},linkTarget:{type:"string",default:"_self"}},usesContext:["postId"],supports:{html:!1,color:{gradients:!0,text:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0,textDecoration:!0}},spacing:{margin:["top","bottom"],padding:!0,__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalDefaultControls:{width:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-read-more"},{name:Qxe}=VD,Jxe={icon:xa,edit:sun,example:{attributes:{content:m("Read more")}}},iun=()=>it({name:Qxe,metadata:VD,settings:Jxe}),aun=Object.freeze(Object.defineProperty({__proto__:null,init:iun,metadata:VD,name:Qxe,settings:Jxe},Symbol.toStringTag,{value:"Module"})),cun=1,lun=20;function uun({attributes:e,setAttributes:t}){const[n,o]=x.useState(!e.feedURL),{blockLayout:r,columns:s,displayAuthor:i,displayDate:c,displayExcerpt:l,excerptLength:u,feedURL:d,itemsToShow:p}=e;function f(A){return()=>{const _=e[A];t({[A]:!_})}}function b(A){A.preventDefault(),d&&(t({feedURL:jf(d)}),o(!1))}const h=Be(),g=m("RSS URL");if(n)return a.jsx("div",{...h,children:a.jsx(vo,{icon:Lde,label:g,instructions:m("Display entries from any RSS or Atom feed."),children:a.jsxs("form",{onSubmit:b,className:"wp-block-rss__placeholder-form",children:[a.jsx(N1,{__next40pxDefaultSize:!0,label:g,type:"url",hideLabelFromVision:!0,placeholder:m("Enter URL here…"),value:d,onChange:A=>t({feedURL:A}),className:"wp-block-rss__placeholder-input"}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Apply")})]})})});const z=[{icon:Nd,title:m("Edit RSS URL"),onClick:()=>o(!0)},{icon:Iw,title:We("List view","RSS block display setting"),onClick:()=>t({blockLayout:"list"}),isActive:r==="list"},{icon:X3,title:We("Grid view","RSS block display setting"),onClick:()=>t({blockLayout:"grid"}),isActive:r==="grid"}];return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{controls:z})}),a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of items"),value:p,onChange:A=>t({itemsToShow:A}),min:cun,max:lun,required:!0}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display author"),checked:i,onChange:f("displayAuthor")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display date"),checked:c,onChange:f("displayDate")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display excerpt"),checked:l,onChange:f("displayExcerpt")}),l&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Max number of words in excerpt"),value:u,onChange:A=>t({excerptLength:A}),min:10,max:100,required:!0}),r==="grid"&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:s,onChange:A=>t({columns:A}),min:2,max:6,required:!0})]})}),a.jsx("div",{...h,children:a.jsx(I1,{children:a.jsx(FO,{block:"core/rss",attributes:e})})})]})}const HD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/rss",title:"RSS",category:"widgets",description:"Display entries from any RSS or Atom feed.",keywords:["atom","feed"],textdomain:"default",attributes:{columns:{type:"number",default:2},blockLayout:{type:"string",default:"list"},feedURL:{type:"string",default:""},itemsToShow:{type:"number",default:5},displayExcerpt:{type:"boolean",default:!1},displayAuthor:{type:"boolean",default:!1},displayDate:{type:"boolean",default:!1},excerptLength:{type:"number",default:55}},supports:{align:!0,html:!1,interactivity:{clientNavigation:!0},color:{background:!0,text:!0,gradients:!0,link:!0}},editorStyle:"wp-block-rss-editor",style:"wp-block-rss"},{name:e5e}=HD,t5e={icon:Lde,example:{attributes:{feedURL:"https://wordpress.org"}},edit:uun},dun=()=>it({name:e5e,metadata:HD,settings:t5e}),pun=Object.freeze(Object.defineProperty({__proto__:null,init:dun,metadata:HD,name:e5e,settings:t5e},Symbol.toStringTag,{value:"Module"})),Poe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(S0,{x:"7",y:"10",width:"10",height:"4",rx:"1",fill:"currentColor"})}),joe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"15.25",width:"6.5",height:"9.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",strokeWidth:"1.5",fill:"none"}),a.jsx(S0,{x:"16",y:"10",width:"4",height:"4",rx:"1",fill:"currentColor"})]}),Ioe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"15.25",width:"6.5",height:"14.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",strokeWidth:"1.5",fill:"none"}),a.jsx(S0,{x:"14",y:"10",width:"4",height:"4",rx:"1",fill:"currentColor"})]}),Doe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(S0,{x:"4.75",y:"15.25",width:"6.5",height:"14.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",fill:"none",strokeWidth:"1.5"})}),fun=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"7.75",width:"14.5",height:"8.5",rx:"1.25",stroke:"currentColor",fill:"none",strokeWidth:"1.5"}),a.jsx(S0,{x:"8",y:"11",width:"8",height:"2",fill:"currentColor"})]}),bun=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"17.25",width:"5.5",height:"14.5",transform:"rotate(-90 4.75 17.25)",stroke:"currentColor",fill:"none",strokeWidth:"1.5"}),a.jsx(S0,{x:"4",y:"7",width:"10",height:"2",fill:"currentColor"})]}),Foe=50,$oe=350,Voe=220;function Hoe(e){return e==="%"}const Uoe="4px",Xoe=[25,50,75,100];function hun({className:e,attributes:t,setAttributes:n,toggleSelection:o,isSelected:r,clientId:s}){const{label:i,showLabel:c,placeholder:l,width:u,widthUnit:d,align:p,buttonText:f,buttonPosition:b,buttonUseIcon:h,isSearchFieldHidden:g,style:z}=t,A=G(Ae=>{const{getBlockParentsByBlockName:ye,wasBlockJustInserted:Ne}=Ae(Q);return!!ye(s,"core/navigation")?.length&&Ne(s)},[s]),{__unstableMarkNextChangeAsNotPersistent:_}=Oe(Q);x.useEffect(()=>{A&&(_(),n({showLabel:!1,buttonUseIcon:!0,buttonPosition:"button-inside"}))},[_,A,n]);const v=z?.border?.radius;let M=cu(t);typeof v=="number"&&(M={...M,style:{...M.style,borderRadius:`${v}px`}});const y=BO(t),[k,S]=Un("typography.fluid","layout"),C=SI(t,{typography:{fluid:k},layout:{wideSize:S?.wideSize}}),T=`wp-block-search__width-${vt(Ro)}`,E=b==="button-inside",B=b==="button-outside",N=b==="no-button",j=b==="button-only",I=x.useRef(),P=x.useRef(),$=U1({availableUnits:["%","px"],defaultValues:{"%":Foe,px:$oe}});x.useEffect(()=>{j&&!r&&n({isSearchFieldHidden:!0})},[j,r,n]),x.useEffect(()=>{!j||!r||n({isSearchFieldHidden:!1})},[j,r,n,u]);const F=()=>oe(e,E?"wp-block-search__button-inside":void 0,B?"wp-block-search__button-outside":void 0,N?"wp-block-search__no-button":void 0,j?"wp-block-search__button-only":void 0,!h&&!N?"wp-block-search__text-button":void 0,h&&!N?"wp-block-search__icon-button":void 0,j&&g?"wp-block-search__searchfield-hidden":void 0),X=[{role:"menuitemradio",title:m("Button outside"),isActive:b==="button-outside",icon:joe,onClick:()=>{n({buttonPosition:"button-outside",isSearchFieldHidden:!1})}},{role:"menuitemradio",title:m("Button inside"),isActive:b==="button-inside",icon:Ioe,onClick:()=>{n({buttonPosition:"button-inside",isSearchFieldHidden:!1})}},{role:"menuitemradio",title:m("No button"),isActive:b==="no-button",icon:Doe,onClick:()=>{n({buttonPosition:"no-button",isSearchFieldHidden:!1})}},{role:"menuitemradio",title:m("Button only"),isActive:b==="button-only",icon:Poe,onClick:()=>{n({buttonPosition:"button-only",isSearchFieldHidden:!0})}}],Z=()=>{switch(b){case"button-inside":return Ioe;case"button-outside":return joe;case"no-button":return Doe;case"button-only":return Poe}},V=()=>j?{}:{right:p!=="right",left:p==="right"},ee=()=>{const Ae=oe("wp-block-search__input",E?void 0:M.className,C.className),ye={...E?{borderRadius:v}:M.style,...C.style,textDecoration:void 0};return a.jsx("input",{type:"search",className:Ae,style:ye,"aria-label":m("Optional placeholder text"),placeholder:l?void 0:m("Optional placeholder…"),value:l,onChange:Ne=>n({placeholder:Ne.target.value}),ref:I})},te=()=>{const Ae=oe("wp-block-search__button",y.className,C.className,E?void 0:M.className,h?"has-icon":void 0,z0("button")),ye={...y.style,...C.style,...E?{borderRadius:v}:M.style},Ne=()=>{j&&n({isSearchFieldHidden:!g})};return a.jsxs(a.Fragment,{children:[h&&a.jsx("button",{type:"button",className:Ae,style:ye,"aria-label":f?v1(f):m("Search"),onClick:Ne,ref:P,children:a.jsx(wn,{icon:Fw})}),!h&&a.jsx(Ie,{identifier:"buttonText",className:Ae,style:ye,"aria-label":m("Button text"),placeholder:m("Add button text…"),withoutInteractiveFormatting:!0,value:f,onChange:je=>n({buttonText:je}),onClick:Ne})]})},J=a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[a.jsx(Vt,{title:m("Show search label"),icon:bun,onClick:()=>{n({showLabel:!c})},className:c?"is-pressed":void 0}),a.jsx(Lc,{icon:Z(),label:m("Change button position"),controls:X}),!N&&a.jsx(Vt,{title:m("Use button with icon"),icon:fun,onClick:()=>{n({buttonUseIcon:!h})},className:h?"is-pressed":void 0})]})}),a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsxs(dt,{className:"wp-block-search__inspector-controls",spacing:4,children:[a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Width"),id:T,min:Hoe(d)?0:Voe,max:Hoe(d)?100:void 0,step:1,onChange:Ae=>{const ye=Ae===""?void 0:parseInt(Ae,10);n({width:ye})},onUnitChange:Ae=>{n({width:Ae==="%"?Foe:$oe,widthUnit:Ae})},__unstableInputWidth:"80px",value:`${u}${d}`,units:$}),a.jsx(Do,{label:m("Percentage Width"),value:Xoe.includes(u)&&d==="%"?u:void 0,hideLabelFromVision:!0,onChange:Ae=>{n({width:Ae,widthUnit:"%"})},isBlock:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:Xoe.map(Ae=>a.jsx(Kn,{value:Ae,label:xe(m("%d%%"),Ae)},Ae))})]})})})]}),ue=Ae=>Ae?`calc(${Ae} + ${Uoe})`:void 0,ce=()=>{const Ae=E?M.style:{borderRadius:M.style?.borderRadius,borderTopLeftRadius:M.style?.borderTopLeftRadius,borderTopRightRadius:M.style?.borderTopRightRadius,borderBottomLeftRadius:M.style?.borderBottomLeftRadius,borderBottomRightRadius:M.style?.borderBottomRightRadius},ye=v!==void 0&&parseInt(v,10)!==0;if(E&&ye){if(typeof v=="object"){const{topLeft:je,topRight:ie,bottomLeft:we,bottomRight:re}=v;return{...Ae,borderTopLeftRadius:ue(je),borderTopRightRadius:ue(ie),borderBottomLeftRadius:ue(we),borderBottomRightRadius:ue(re)}}const Ne=Number.isInteger(v)?`${v}px`:v;Ae.borderRadius=`calc(${Ne} + ${Uoe})`}return Ae},me=Be({className:F(),style:{...C.style,textDecoration:void 0}}),de=oe("wp-block-search__label",C.className);return a.jsxs("div",{...me,children:[J,c&&a.jsx(Ie,{identifier:"label",className:de,"aria-label":m("Label text"),placeholder:m("Add label…"),withoutInteractiveFormatting:!0,value:i,onChange:Ae=>n({label:Ae}),style:C.style}),a.jsxs(Ca,{size:{width:u===void 0?"auto":`${u}${d}`,height:"auto"},className:oe("wp-block-search__inside-wrapper",E?M.className:void 0),style:ce(),minWidth:Voe,enable:V(),onResizeStart:(Ae,ye,Ne)=>{n({width:parseInt(Ne.offsetWidth,10),widthUnit:"px"}),o(!1)},onResizeStop:(Ae,ye,Ne,je)=>{n({width:parseInt(u+je.width,10)}),o(!0)},showHandle:r,children:[(E||B||j)&&a.jsxs(a.Fragment,{children:[ee(),te()]}),N&&ee()]})]})}const mun=[{name:"default",isDefault:!0,attributes:{buttonText:m("Search"),label:m("Search")}}],UD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/search",title:"Search",category:"widgets",description:"Help visitors find your content.",keywords:["find"],textdomain:"default",attributes:{label:{type:"string",role:"content"},showLabel:{type:"boolean",default:!0},placeholder:{type:"string",default:"",role:"content"},width:{type:"number"},widthUnit:{type:"string"},buttonText:{type:"string",role:"content"},buttonPosition:{type:"string",default:"button-outside"},buttonUseIcon:{type:"boolean",default:!1},query:{type:"object",default:{}},isSearchFieldHidden:{type:"boolean",default:!1}},supports:{align:["left","center","right"],color:{gradients:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{background:!0,text:!0}},interactivity:!0,typography:{__experimentalSkipSerialization:!0,__experimentalSelector:".wp-block-search__label, .wp-block-search__input, .wp-block-search__button",fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}},spacing:{margin:!0},html:!1},editorStyle:"wp-block-search-editor",style:"wp-block-search"},{name:n5e}=UD,o5e={icon:Fw,example:{attributes:{buttonText:m("Search"),label:m("Search")},viewportWidth:400},variations:mun,edit:hun},gun=()=>it({name:n5e,metadata:UD,settings:o5e}),Mun=Object.freeze(Object.defineProperty({__proto__:null,init:gun,metadata:UD,name:n5e,settings:o5e},Symbol.toStringTag,{value:"Module"}));function zun(e,t,n){const[o,r]=x.useState(!1),s=Fr(t);x.useEffect(()=>{e==="css"&&!t&&!s&&r(!0)},[t,s,e]),x.useEffect(()=>{e==="css"&&(o&&t||s&&t!==s)&&(n({opacity:"alpha-channel"}),r(!1))},[o,t,s])}const Oun={div:m("The <div> element should only be used if the separator is a design element that should not be announced.")};function yun({attributes:e,setAttributes:t}){const{backgroundColor:n,opacity:o,style:r,tagName:s}=e,i=BO(e),c=i?.style?.backgroundColor,l=!!r?.color?.background;zun(o,c,t);const u=Pt("color",n),d=oe({"has-text-color":n||c,[u]:u,"has-css-opacity":o==="css","has-alpha-channel-opacity":o==="alpha-channel"},i.className),p={color:c,backgroundColor:c},f=s==="hr"?z7e:s;return a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"advanced",children:a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<hr>)"),value:"hr"},{label:"<div>",value:"div"}],value:s,onChange:b=>t({tagName:b}),help:Oun[s]})}),a.jsx(f,{...Be({className:d,style:l?p:void 0})})]})}function Aun({attributes:e}){const{backgroundColor:t,style:n,opacity:o,tagName:r}=e,s=n?.color?.background,i=P1(e),c=Pt("color",t),l=oe({"has-text-color":t||s,[c]:c,"has-css-opacity":o==="css","has-alpha-channel-opacity":o==="alpha-channel"},i.className),u={backgroundColor:i?.style?.backgroundColor,color:c?void 0:s};return a.jsx(r,{...Be.save({className:l,style:u})})}const vun={from:[{type:"enter",regExp:/^-{3,}$/,transform:()=>Ee("core/separator")},{type:"raw",selector:"hr",schema:{hr:{}}}],to:[{type:"block",blocks:["core/spacer"],transform:({anchor:e})=>Ee("core/spacer",{anchor:e||""})}]},xun={attributes:{color:{type:"string"},customColor:{type:"string"}},save({attributes:e}){const{color:t,customColor:n}=e,o=Pt("background-color",t),r=Pt("color",t),s=oe({"has-text-color has-background":t||n,[o]:o,[r]:r}),i={backgroundColor:o?void 0:n,color:r?void 0:n};return a.jsx("hr",{...Be.save({className:s,style:i})})},migrate(e){const{color:t,customColor:n,...o}=e;return{...o,backgroundColor:t||void 0,opacity:"css",style:n?{color:{background:n}}:void 0,tagName:"hr"}}},wun=[xun],XD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/separator",title:"Separator",category:"design",description:"Create a break between ideas or sections with a horizontal separator.",keywords:["horizontal-line","hr","divider"],textdomain:"default",attributes:{opacity:{type:"string",default:"alpha-channel"},tagName:{type:"string",enum:["hr","div"],default:"hr"}},supports:{anchor:!0,align:["center","wide","full"],color:{enableContrastChecker:!1,__experimentalSkipSerialization:!0,gradients:!0,background:!0,text:!1,__experimentalDefaultControls:{background:!0}},spacing:{margin:["top","bottom"]},interactivity:{clientNavigation:!0}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"wide",label:"Wide Line"},{name:"dots",label:"Dots"}],editorStyle:"wp-block-separator-editor",style:"wp-block-separator"},{name:r5e}=XD,s5e={icon:BQe,example:{attributes:{customColor:"#065174",className:"is-style-wide"}},transforms:vun,edit:yun,save:Aun,deprecated:wun},_un=()=>it({name:r5e,metadata:XD,settings:s5e}),kun=Object.freeze(Object.defineProperty({__proto__:null,init:_un,metadata:XD,name:r5e,settings:s5e},Symbol.toStringTag,{value:"Module"}));function i5e({attributes:e,setAttributes:t}){const o=`blocks-shortcode-input-${vt(i5e)}`;return a.jsx("div",{...Be(),children:a.jsx(vo,{icon:Ide,label:m("Shortcode"),children:a.jsx(Gd,{className:"blocks-shortcode__textarea",id:o,value:e.text,"aria-label":m("Shortcode text"),placeholder:m("Write shortcode here…"),onChange:r=>t({text:r})})})})}function Sun({attributes:e}){return a.jsx(i0,{children:e.text})}const Cun={from:[{type:"shortcode",tag:"[a-z][a-z0-9_-]*",attributes:{text:{type:"string",shortcode:(e,{content:t})=>_ie(wie(t))}},priority:20}]},GD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/shortcode",title:"Shortcode",category:"widgets",description:"Insert additional custom elements with a WordPress shortcode.",textdomain:"default",attributes:{text:{type:"string",source:"raw"}},supports:{className:!1,customClassName:!1,html:!1},editorStyle:"wp-block-shortcode-editor"},{name:a5e}=GD,c5e={icon:Ide,transforms:Cun,edit:i5e,save:Sun},qun=()=>it({name:a5e,metadata:GD,settings:c5e}),Run=Object.freeze(Object.defineProperty({__proto__:null,init:qun,metadata:GD,name:a5e,settings:c5e},Symbol.toStringTag,{value:"Module"})),xN=["image"],l5e="image/*",Tun=({alt:e,attributes:{align:t,width:n,height:o,isLink:r,linkTarget:s,shouldSyncIcon:i},isSelected:c,setAttributes:l,setLogo:u,logoUrl:d,siteUrl:p,logoId:f,iconId:b,setIcon:h,canUserEdit:g})=>{const z=Yn("medium"),_=!["wide","full"].includes(t)&&z,[{naturalWidth:v,naturalHeight:M},y]=x.useState({}),[k,S]=x.useState(!1),{toggleSelection:C}=Oe(Q),{imageEditing:R,maxWidth:T,title:E}=G(ye=>{const Ne=ye(Q).getSettings();return{title:ye(Me).getEntityRecord("root","__unstableBase")?.name,imageEditing:Ne.imageEditing,maxWidth:Ne.maxWidth}},[]);x.useEffect(()=>{i&&f!==b&&l({shouldSyncIcon:!1})},[]),x.useEffect(()=>{c||S(!1)},[c]);function B(){C(!1)}function N(){C(!0)}const j=a.jsxs(a.Fragment,{children:[a.jsx("img",{className:"custom-logo",src:d,alt:e,onLoad:ye=>{y({naturalWidth:ye.target.naturalWidth,naturalHeight:ye.target.naturalHeight})}}),Nr(d)&&a.jsx(Xn,{})]});let I=j;if(r&&(I=a.jsx("a",{href:p,className:"custom-logo-link",rel:"home",title:E,onClick:ye=>ye.preventDefault(),children:j})),!_||!v||!M)return a.jsx("div",{style:{width:n,height:o},children:I});const P=120,$=n||P,F=v/M,X=$/F,Z=v<M?id:Math.ceil(id*F),V=M<v?id:Math.ceil(id/F),ee=T*2.5;let te=!1,J=!1;t==="center"?(te=!0,J=!0):jt()?t==="left"?te=!0:J=!0:t==="right"?J=!0:te=!0;const ue=f&&v&&M&&R,ce=ue&&k?a.jsx(Qze,{id:f,url:d,width:$,height:X,naturalHeight:M,naturalWidth:v,onSaveImage:ye=>{u(ye.id)},onFinishEditing:()=>{S(!1)}}):a.jsx(Ca,{size:{width:$,height:X},showHandle:c,minWidth:Z,maxWidth:ee,minHeight:V,maxHeight:ee/F,lockAspectRatio:!0,enable:{top:!1,right:te,bottom:!0,left:J},onResizeStart:B,onResizeStop:(ye,Ne,je,ie)=>{N(),l({width:parseInt($+ie.width,10),height:parseInt(X+ie.height,10)})},children:I}),de=!window?.__experimentalUseCustomizerSiteLogoUrl?p+"/wp-admin/options-general.php":p+"/wp-admin/customize.php?autofocus[section]=title_tagline",Ae=cr(m("Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. To use a custom icon that is different from your site logo, use the <a>Site Icon settings</a>."),{a:a.jsx("a",{href:de,target:"_blank",rel:"noopener noreferrer"})});return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image width"),onChange:ye=>l({width:ye}),min:Z,max:ee,initialPosition:Math.min(P,ee),value:n||"",disabled:!_}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link image to home"),onChange:()=>l({isLink:!r}),checked:r}),r&&a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:ye=>l({linkTarget:ye?"_blank":"_self"}),checked:s==="_blank"})}),g&&a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Use as Site Icon"),onChange:ye=>{l({shouldSyncIcon:ye}),h(ye?f:void 0)},checked:!!i,help:Ae})})]})}),a.jsx(bt,{group:"block",children:ue&&!k&&a.jsx(Vt,{onClick:()=>S(!0),icon:tde,label:m("Crop")})}),ce]})};function Goe({mediaURL:e,...t}){return a.jsx(Pc,{...t,mediaURL:e,allowedTypes:xN,accept:l5e})}const Koe=({media:e,itemGroupProps:t})=>{const{alt_text:n,source_url:o,slug:r,media_details:s}=e??{},i=s?.sizes?.full?.file||r;return a.jsx(tb,{...t,as:"span",children:a.jsxs(Ot,{justify:"flex-start",as:"span",children:[a.jsx("img",{src:o,alt:n}),a.jsx(Tn,{as:"span",children:a.jsx(zs,{numberOfLines:1,className:"block-library-site-logo__inspector-media-replace-title",children:i})})]})})};function Eun({attributes:e,className:t,setAttributes:n,isSelected:o}){const{width:r,shouldSyncIcon:s}=e,{siteLogoId:i,canUserEdit:c,url:l,siteIconId:u,mediaItemData:d,isRequestingMediaItem:p}=G(F=>{const{canUser:X,getEntityRecord:Z,getEditedEntityRecord:V}=F(Me),ee=X("update",{kind:"root",name:"site"}),te=ee?V("root","site"):void 0,J=Z("root","__unstableBase"),ue=ee?te?.site_logo:J?.site_logo,ce=te?.site_icon,me=ue&&F(Me).getMedia(ue,{context:"view"}),de=!!ue&&!F(Me).hasFinishedResolution("getMedia",[ue,{context:"view"}]);return{siteLogoId:ue,canUserEdit:ee,url:J?.home,mediaItemData:me,isRequestingMediaItem:de,siteIconId:ce}},[]),{getSettings:f}=G(Q),[b,h]=x.useState(),{editEntityRecord:g}=Oe(Me),z=(F,X=!1)=>{(s||X)&&A(F),g("root","site",void 0,{site_logo:F})},A=F=>g("root","site",void 0,{site_icon:F??null}),{alt_text:_,source_url:v}=d??{},M=F=>{if(s===void 0){const X=!u;n({shouldSyncIcon:X}),y(F,X);return}y(F)},y=(F,X=!1)=>{if(F){if(!F.id&&F.url){h(F.url),z(void 0);return}z(F.id,X)}},k=()=>{z(null),n({width:void 0})},{createErrorNotice:S}=Oe(mt),C=F=>{S(F,{type:"snackbar"}),h()},R=F=>{if(F?.length>1){C(m("Only one image can be used as a site logo."));return}f().mediaUpload({allowedTypes:xN,filesList:F,onFileChange([X]){if(Nr(X?.url)){h(X.url);return}M(X)},onError:C})},T={mediaURL:v,name:m(v?"Replace":"Choose logo"),onSelect:y,onError:C,onReset:k},E=c&&a.jsx(bt,{group:"other",children:a.jsx(Goe,{...T})});let B;const N=i===void 0||p;N&&(B=a.jsx(Xn,{})),x.useEffect(()=>{v&&b&&h()},[v,b]),(v||b)&&(B=a.jsxs(a.Fragment,{children:[a.jsx(Tun,{alt:_,attributes:e,className:t,isSelected:o,setAttributes:n,logoUrl:b||v,setLogo:z,logoId:d?.id||i,siteUrl:l,setIcon:A,iconId:u,canUserEdit:c}),c&&a.jsx(Tz,{onFilesDrop:R})]}));const j=F=>{const X=oe("block-editor-media-placeholder",t);return a.jsx(vo,{className:X,preview:B,withIllustration:!0,style:{width:r},children:F})},I=oe(t,{"is-default-size":!r,"is-transient":b}),P=Be({className:I}),$=(c||v)&&a.jsx(et,{children:a.jsx(Qt,{title:m("Media"),children:a.jsx("div",{className:"block-library-site-logo__inspector-media-replace-container",children:c?a.jsxs(a.Fragment,{children:[a.jsx(Goe,{...T,name:v?a.jsx(Koe,{media:d}):m("Choose logo"),renderToggle:F=>a.jsx(Ce,{...F,__next40pxDefaultSize:!0,children:b?a.jsx(Xn,{}):F.children})}),a.jsx(Tz,{onFilesDrop:R})]}):a.jsx(Koe,{media:d,itemGroupProps:{isBordered:!0,className:"block-library-site-logo__inspector-readonly-logo-preview"}})})})});return a.jsxs("div",{...P,children:[E,$,(!!v||!!b)&&B,(N||!b&&!v&&!c)&&a.jsx(vo,{className:"site-logo_placeholder",withIllustration:!0,children:N&&a.jsx("span",{className:"components-placeholder__preview",children:a.jsx(Xn,{})})}),!N&&!b&&!v&&c&&a.jsx(au,{onSelect:M,accept:l5e,allowedTypes:xN,onError:C,placeholder:j,mediaLibraryButton:({open:F})=>a.jsx(Ce,{__next40pxDefaultSize:!0,icon:cm,variant:"primary",label:m("Choose logo"),showTooltip:!0,tooltipPosition:"middle right",onClick:()=>{F()}})})]})}const Wun={to:[{type:"block",blocks:["core/site-title"],transform:({isLink:e,linkTarget:t})=>Ee("core/site-title",{isLink:e,linkTarget:t})}]},KD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/site-logo",title:"Site Logo",category:"theme",description:"Display an image to represent this site. Update this block and the changes apply everywhere.",textdomain:"default",attributes:{width:{type:"number"},isLink:{type:"boolean",default:!0,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"},shouldSyncIcon:{type:"boolean"}},example:{viewportWidth:500,attributes:{width:350,className:"block-editor-block-types-list__site-logo-example"}},supports:{html:!1,align:!0,alignWide:!1,color:{__experimentalDuotone:"img, .components-placeholder__illustration, .components-placeholder::before",text:!1,background:!1},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"rounded",label:"Rounded"}],editorStyle:"wp-block-site-logo-editor",style:"wp-block-site-logo"},{name:u5e}=KD,d5e={icon:PQe,example:{},edit:Eun,transforms:Wun},Nun=()=>it({name:u5e,metadata:KD,settings:d5e}),Bun=Object.freeze(Object.defineProperty({__proto__:null,init:Nun,metadata:KD,name:u5e,settings:d5e},Symbol.toStringTag,{value:"Module"}));function Lun({attributes:e,setAttributes:t,insertBlocksAfter:n}){const{textAlign:o,level:r,levelOptions:s}=e,{canUserEdit:i,tagline:c}=G(b=>{const{canUser:h,getEntityRecord:g,getEditedEntityRecord:z}=b(Me),A=h("update",{kind:"root",name:"site"}),_=A?z("root","site"):{},v=g("root","__unstableBase");return{canUserEdit:A,tagline:A?_?.description:v?.description}},[]),l=r===0?"p":`h${r}`,{editEntityRecord:u}=Oe(Me);function d(b){u("root","site",void 0,{description:b})}const p=Be({className:oe({[`has-text-align-${o}`]:o,"wp-block-site-tagline__placeholder":!i&&!c})}),f=i?a.jsx(Ie,{allowedFormats:[],onChange:d,"aria-label":m("Site tagline text"),placeholder:m("Write site tagline…"),tagName:l,value:c,disableLineBreaks:!0,__unstableOnSplitAtEnd:()=>n(Ee(Mr())),...p}):a.jsx(l,{...p,children:c||m("Site Tagline placeholder")});return a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:r,options:s,onChange:b=>t({level:b})}),a.jsx(nr,{onChange:b=>t({textAlign:b}),value:o})]}),f]})}const Pun=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",children:a.jsx(he,{d:"M4 10.5h16V9H4v1.5ZM4 15h9v-1.5H4V15Z"})}),jun={attributes:{textAlign:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Iun=[jun],YD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/site-tagline",title:"Site Tagline",category:"theme",description:"Describe in a few words what the site is about. The tagline can be used in search results or when sharing on social networks even if it’s not displayed in the theme design.",keywords:["description"],textdomain:"default",attributes:{textAlign:{type:"string"},level:{type:"number",default:0},levelOptions:{type:"array",default:[0,1,2,3,4,5,6]}},example:{viewportWidth:350,attributes:{textAlign:"center"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},editorStyle:"wp-block-site-tagline-editor",style:"wp-block-site-tagline"},{name:p5e}=YD,f5e={icon:Pun,edit:Lun,deprecated:Iun},Dun=()=>it({name:p5e,metadata:YD,settings:f5e}),Fun=Object.freeze(Object.defineProperty({__proto__:null,init:Dun,metadata:YD,name:p5e,settings:f5e},Symbol.toStringTag,{value:"Module"}));function $un({attributes:e,setAttributes:t,insertBlocksAfter:n}){const{level:o,levelOptions:r,textAlign:s,isLink:i,linkTarget:c}=e,{canUserEdit:l,title:u}=G(z=>{const{canUser:A,getEntityRecord:_,getEditedEntityRecord:v}=z(Me),M=A("update",{kind:"root",name:"site"}),y=M?v("root","site"):{},k=_("root","__unstableBase");return{canUserEdit:M,title:M?y?.title:k?.name}},[]),{editEntityRecord:d}=Oe(Me),p=Qo();function f(z){d("root","site",void 0,{title:z})}const b=o===0?"p":`h${o}`,h=Be({className:oe({[`has-text-align-${s}`]:s,"wp-block-site-title__placeholder":!l&&!u})}),g=l?a.jsx(b,{...h,children:a.jsx(Ie,{tagName:i?"a":"span",href:i?"#site-title-pseudo-link":void 0,"aria-label":m("Site title text"),placeholder:m("Write site title…"),value:u,onChange:f,allowedFormats:[],disableLineBreaks:!0,__unstableOnSplitAtEnd:()=>n(Ee(Mr()))})}):a.jsx(b,{...h,children:i?a.jsx("a",{href:"#site-title-pseudo-link",onClick:z=>z.preventDefault(),children:Lt(u)||m("Site Title placeholder")}):a.jsx("span",{children:Lt(u)||m("Site Title placeholder")})});return a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:o,options:r,onChange:z=>t({level:z})}),a.jsx(nr,{value:s,onChange:z=>{t({textAlign:z})}})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({isLink:!0,linkTarget:"_self"})},dropdownMenuProps:p,children:[a.jsx(tt,{hasValue:()=>!i,label:m("Make title link to home"),onDeselect:()=>t({isLink:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Make title link to home"),onChange:()=>t({isLink:!i}),checked:i})}),i&&a.jsx(tt,{hasValue:()=>c!=="_self",label:m("Open in new tab"),onDeselect:()=>t({linkTarget:"_self"}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:z=>t({linkTarget:z?"_blank":"_self"}),checked:c==="_blank"})})]})}),g]})}const Vun={attributes:{level:{type:"number",default:1},textAlign:{type:"string"},isLink:{type:"boolean",default:!0},linkTarget:{type:"string",default:"_self"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Hun=[Vun],Uun={to:[{type:"block",blocks:["core/site-logo"],transform:({isLink:e,linkTarget:t})=>Ee("core/site-logo",{isLink:e,linkTarget:t})}]},ZD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/site-title",title:"Site Title",category:"theme",description:"Displays the name of this site. Update the block, and the changes apply everywhere it’s used. This will also appear in the browser title bar and in search results.",textdomain:"default",attributes:{level:{type:"number",default:1},levelOptions:{type:"array",default:[0,1,2,3,4,5,6]},textAlign:{type:"string"},isLink:{type:"boolean",default:!0,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},example:{viewportWidth:500},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{padding:!0,margin:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},editorStyle:"wp-block-site-title-editor",style:"wp-block-site-title"},{name:b5e}=ZD,h5e={icon:hQe,example:{viewportWidth:350,attributes:{textAlign:"center"}},edit:$un,transforms:Uun,deprecated:Hun},Xun=()=>it({name:b5e,metadata:ZD,settings:h5e}),Gun=Object.freeze(Object.defineProperty({__proto__:null,init:Xun,metadata:ZD,name:b5e,settings:h5e},Symbol.toStringTag,{value:"Module"})),Kun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M13.582,8.182C11.934,8.367,9.78,8.49,8.238,9.166c-1.781,0.769-3.03,2.337-3.03,4.644 c0,2.953,1.86,4.429,4.253,4.429c2.02,0,3.125-0.477,4.685-2.065c0.516,0.747,0.685,1.109,1.629,1.894 c0.212,0.114,0.483,0.103,0.672-0.066l0.006,0.006c0.567-0.505,1.599-1.401,2.18-1.888c0.231-0.188,0.19-0.496,0.009-0.754 c-0.52-0.718-1.072-1.303-1.072-2.634V8.305c0-1.876,0.133-3.599-1.249-4.891C15.23,2.369,13.422,2,12.04,2 C9.336,2,6.318,3.01,5.686,6.351C5.618,6.706,5.877,6.893,6.109,6.945l2.754,0.298C9.121,7.23,9.308,6.977,9.357,6.72 c0.236-1.151,1.2-1.706,2.284-1.706c0.584,0,1.249,0.215,1.595,0.738c0.398,0.584,0.346,1.384,0.346,2.061V8.182z M13.049,14.088 c-0.451,0.8-1.169,1.291-1.967,1.291c-1.09,0-1.728-0.83-1.728-2.061c0-2.42,2.171-2.86,4.227-2.86v0.615 C13.582,12.181,13.608,13.104,13.049,14.088z M20.683,19.339C18.329,21.076,14.917,22,11.979,22c-4.118,0-7.826-1.522-10.632-4.057 c-0.22-0.199-0.024-0.471,0.241-0.317c3.027,1.762,6.771,2.823,10.639,2.823c2.608,0,5.476-0.541,8.115-1.66 C20.739,18.62,21.072,19.051,20.683,19.339z M21.336,21.043c-0.194,0.163-0.379,0.076-0.293-0.139 c0.284-0.71,0.92-2.298,0.619-2.684c-0.301-0.386-1.99-0.183-2.749-0.092c-0.23,0.027-0.266-0.173-0.059-0.319 c1.348-0.946,3.555-0.673,3.811-0.356C22.925,17.773,22.599,19.986,21.336,21.043z"})}),Yun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289"})}),Zun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M7.799,5.698c0.589,0,1.12,0.051,1.606,0.156c0.482,0.102,0.894,0.273,1.241,0.507c0.344,0.235,0.612,0.546,0.804,0.938 c0.188,0.387,0.281,0.871,0.281,1.443c0,0.619-0.141,1.137-0.421,1.551c-0.284,0.413-0.7,0.751-1.255,1.014 c0.756,0.218,1.317,0.601,1.689,1.146c0.374,0.549,0.557,1.205,0.557,1.975c0,0.623-0.12,1.161-0.359,1.612 c-0.241,0.457-0.569,0.828-0.973,1.114c-0.408,0.288-0.876,0.5-1.399,0.637C9.052,17.931,8.514,18,7.963,18H2V5.698H7.799 M7.449,10.668c0.481,0,0.878-0.114,1.192-0.345c0.311-0.228,0.463-0.603,0.463-1.119c0-0.286-0.051-0.523-0.152-0.707 C8.848,8.315,8.711,8.171,8.536,8.07C8.362,7.966,8.166,7.894,7.94,7.854c-0.224-0.044-0.457-0.06-0.697-0.06H4.709v2.874H7.449z M7.6,15.905c0.267,0,0.521-0.024,0.759-0.077c0.243-0.053,0.457-0.137,0.637-0.261c0.182-0.12,0.332-0.283,0.441-0.491 C9.547,14.87,9.6,14.602,9.6,14.278c0-0.633-0.18-1.084-0.533-1.357c-0.356-0.27-0.83-0.404-1.413-0.404H4.709v3.388L7.6,15.905z M16.162,15.864c0.367,0.358,0.897,0.538,1.583,0.538c0.493,0,0.92-0.125,1.277-0.374c0.354-0.248,0.571-0.514,0.654-0.79h2.155 c-0.347,1.072-0.872,1.838-1.589,2.299C19.534,18,18.67,18.23,17.662,18.23c-0.701,0-1.332-0.113-1.899-0.337 c-0.567-0.227-1.041-0.544-1.439-0.958c-0.389-0.415-0.689-0.907-0.904-1.484c-0.213-0.574-0.32-1.21-0.32-1.899 c0-0.666,0.11-1.288,0.329-1.863c0.222-0.577,0.529-1.075,0.933-1.492c0.406-0.42,0.885-0.751,1.444-0.994 c0.558-0.241,1.175-0.363,1.857-0.363c0.754,0,1.414,0.145,1.98,0.44c0.563,0.291,1.026,0.686,1.389,1.181 c0.363,0.493,0.622,1.057,0.783,1.69c0.16,0.632,0.217,1.292,0.171,1.983h-6.428C15.557,14.84,15.795,15.506,16.162,15.864 M18.973,11.184c-0.291-0.321-0.783-0.496-1.384-0.496c-0.39,0-0.714,0.066-0.973,0.2c-0.254,0.132-0.461,0.297-0.621,0.491 c-0.157,0.197-0.265,0.405-0.328,0.628c-0.063,0.217-0.101,0.413-0.111,0.587h3.98C19.478,11.969,19.265,11.509,18.973,11.184z M15.057,7.738h4.985V6.524h-4.985L15.057,7.738z"})}),Qun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"})}),m5e=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})}),Jun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22.016,8.84c-0.002-0.013-0.005-0.025-0.007-0.037c-0.005-0.025-0.008-0.048-0.015-0.072 c-0.003-0.015-0.01-0.028-0.013-0.042c-0.008-0.02-0.015-0.04-0.023-0.062c-0.007-0.015-0.013-0.028-0.02-0.042 c-0.008-0.02-0.018-0.037-0.03-0.057c-0.007-0.013-0.017-0.027-0.025-0.038c-0.012-0.018-0.023-0.035-0.035-0.052 c-0.01-0.013-0.02-0.025-0.03-0.037c-0.015-0.017-0.028-0.032-0.043-0.045c-0.01-0.012-0.022-0.023-0.035-0.035 c-0.015-0.015-0.032-0.028-0.048-0.04c-0.012-0.01-0.025-0.02-0.037-0.03c-0.005-0.003-0.01-0.008-0.015-0.012l-9.161-6.096 c-0.289-0.192-0.666-0.192-0.955,0L2.359,8.237C2.354,8.24,2.349,8.245,2.344,8.249L2.306,8.277 c-0.017,0.013-0.033,0.027-0.048,0.04C2.246,8.331,2.234,8.342,2.222,8.352c-0.015,0.015-0.028,0.03-0.042,0.047 c-0.012,0.013-0.022,0.023-0.03,0.037C2.139,8.453,2.125,8.471,2.115,8.488C2.107,8.501,2.099,8.514,2.09,8.526 C2.079,8.548,2.069,8.565,2.06,8.585C2.054,8.6,2.047,8.613,2.04,8.626C2.032,8.648,2.025,8.67,2.019,8.69 c-0.005,0.013-0.01,0.027-0.013,0.042C1.999,8.755,1.995,8.778,1.99,8.803C1.989,8.817,1.985,8.828,1.984,8.84 C1.978,8.879,1.975,8.915,1.975,8.954v6.093c0,0.037,0.003,0.075,0.008,0.112c0.002,0.012,0.005,0.025,0.007,0.038 c0.005,0.023,0.008,0.047,0.015,0.072c0.003,0.015,0.008,0.028,0.013,0.04c0.007,0.022,0.013,0.042,0.022,0.063 c0.007,0.015,0.013,0.028,0.02,0.04c0.008,0.02,0.018,0.038,0.03,0.058c0.007,0.013,0.015,0.027,0.025,0.038 c0.012,0.018,0.023,0.035,0.035,0.052c0.01,0.013,0.02,0.025,0.03,0.037c0.013,0.015,0.028,0.032,0.042,0.045 c0.012,0.012,0.023,0.023,0.035,0.035c0.015,0.013,0.032,0.028,0.048,0.04l0.038,0.03c0.005,0.003,0.01,0.007,0.013,0.01 l9.163,6.095C11.668,21.953,11.833,22,12,22c0.167,0,0.332-0.047,0.478-0.144l9.163-6.095l0.015-0.01 c0.013-0.01,0.027-0.02,0.037-0.03c0.018-0.013,0.035-0.028,0.048-0.04c0.013-0.012,0.025-0.023,0.035-0.035 c0.017-0.015,0.03-0.032,0.043-0.045c0.01-0.013,0.02-0.025,0.03-0.037c0.013-0.018,0.025-0.035,0.035-0.052 c0.008-0.013,0.018-0.027,0.025-0.038c0.012-0.02,0.022-0.038,0.03-0.058c0.007-0.013,0.013-0.027,0.02-0.04 c0.008-0.022,0.015-0.042,0.023-0.063c0.003-0.013,0.01-0.027,0.013-0.04c0.007-0.025,0.01-0.048,0.015-0.072 c0.002-0.013,0.005-0.027,0.007-0.037c0.003-0.042,0.007-0.079,0.007-0.117V8.954C22.025,8.915,22.022,8.879,22.016,8.84z M12.862,4.464l6.751,4.49l-3.016,2.013l-3.735-2.492V4.464z M11.138,4.464v4.009l-3.735,2.494L4.389,8.954L11.138,4.464z M3.699,10.562L5.853,12l-2.155,1.438V10.562z M11.138,19.536l-6.749-4.491l3.015-2.011l3.735,2.492V19.536z M12,14.035L8.953,12 L12,9.966L15.047,12L12,14.035z M12.862,19.536v-4.009l3.735-2.492l3.016,2.011L12.862,19.536z M20.303,13.438L18.147,12 l2.156-1.438L20.303,13.438z"})}),edn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M 18.19 5.636 18.19 2 18.188 2 14.553 2 14.19 2.366 12.474 5.636 11.935 6 5.81 6 5.81 10.994 9.177 10.994 9.477 11.357 5.81 18.363 5.81 22 5.811 22 9.447 22 9.81 21.634 11.526 18.364 12.065 18 18.19 18 18.19 13.006 14.823 13.006 14.523 12.641 18.19 5.636z"})}),tdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,22C6.486,22,2,17.514,2,12S6.486,2,12,2c5.514,0,10,4.486,10,10S17.514,22,12,22z M20.434,13.369 c-0.292-0.092-2.644-0.794-5.32-0.365c1.117,3.07,1.572,5.57,1.659,6.09C18.689,17.798,20.053,15.745,20.434,13.369z M15.336,19.876c-0.127-0.749-0.623-3.361-1.822-6.477c-0.019,0.006-0.038,0.013-0.056,0.019c-4.818,1.679-6.547,5.02-6.701,5.334 c1.448,1.129,3.268,1.803,5.243,1.803C13.183,20.555,14.311,20.313,15.336,19.876z M5.654,17.724 c0.193-0.331,2.538-4.213,6.943-5.637c0.111-0.036,0.224-0.07,0.337-0.102c-0.214-0.485-0.448-0.971-0.692-1.45 c-4.266,1.277-8.405,1.223-8.778,1.216c-0.003,0.087-0.004,0.174-0.004,0.261C3.458,14.207,4.29,16.21,5.654,17.724z M3.639,10.264 c0.382,0.005,3.901,0.02,7.897-1.041c-1.415-2.516-2.942-4.631-3.167-4.94C5.979,5.41,4.193,7.613,3.639,10.264z M9.998,3.709 c0.236,0.316,1.787,2.429,3.187,5c3.037-1.138,4.323-2.867,4.477-3.085C16.154,4.286,14.17,3.471,12,3.471 C11.311,3.471,10.641,3.554,9.998,3.709z M18.612,6.612C18.432,6.855,17,8.69,13.842,9.979c0.199,0.407,0.389,0.821,0.567,1.237 c0.063,0.148,0.124,0.295,0.184,0.441c2.842-0.357,5.666,0.215,5.948,0.275C20.522,9.916,19.801,8.065,18.612,6.612z"})}),ndn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,6.134L6.069,9.797L2,6.54l5.883-3.843L12,6.134z M2,13.054l5.883,3.843L12,13.459L6.069,9.797L2,13.054z M12,13.459 l4.116,3.439L22,13.054l-4.069-3.257L12,13.459z M22,6.54l-5.884-3.843L12,6.134l5.931,3.663L22,6.54z M12.011,14.2l-4.129,3.426 l-1.767-1.153v1.291l5.896,3.539l5.897-3.539v-1.291l-1.769,1.153L12.011,14.2z"})}),odn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M9.16033,4.038c0-.27174.02717-.43478.48913-.43478h6.22283c1.087,0,1.68478.92391,2.11957,2.663l.35326,1.38587h1.05978C19.59511,3.712,19.75815,2,19.75815,2s-2.663.29891-4.23913.29891h-7.962L3.29076,2.163v1.1413L4.731,3.57609c1.00543.19022,1.25.40761,1.33152,1.33152,0,0,.08152,2.71739.08152,7.20109s-.08152,7.17391-.08152,7.17391c0,.81522-.32609,1.11413-1.33152,1.30435l-1.44022.27174V22l4.2663-.13587h7.11957c1.60326,0,5.32609.13587,5.32609.13587.08152-.97826.625-5.40761.70652-5.89674H19.7038L18.644,18.52174c-.84239,1.90217-2.06522,2.038-3.42391,2.038H11.1712c-1.3587,0-2.01087-.54348-2.01087-1.712V12.65217s3.0163,0,3.99457.08152c.76087.05435,1.22283.27174,1.46739,1.33152l.32609,1.413h1.16848l-.08152-3.55978.163-3.587H15.02989l-.38043,1.57609c-.24457,1.03261-.40761,1.22283-1.46739,1.33152-1.38587.13587-4.02174.1087-4.02174.1087Z"})}),rdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"})}),sdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M2,8.667V12c5.515,0,10,4.485,10,10h3.333C15.333,14.637,9.363,8.667,2,8.667z M2,2v3.333 c9.19,0,16.667,7.477,16.667,16.667H22C22,10.955,13.045,2,2,2z M4.5,17C3.118,17,2,18.12,2,19.5S3.118,22,4.5,22S7,20.88,7,19.5 S5.882,17,4.5,17z"})}),idn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M6.94026,15.1412c.00437.01213.108.29862.168.44064a6.55008,6.55008,0,1,0,6.03191-9.09557,6.68654,6.68654,0,0,0-2.58357.51467A8.53914,8.53914,0,0,0,8.21268,8.61344L8.209,8.61725V3.22948l9.0504-.00008c.32934-.0036.32934-.46353.32934-.61466s0-.61091-.33035-.61467L7.47248,2a.43.43,0,0,0-.43131.42692v7.58355c0,.24466.30476.42131.58793.4819.553.11812.68074-.05864.81617-.2457l.018-.02481A10.52673,10.52673,0,0,1,9.32258,9.258a5.35268,5.35268,0,1,1,7.58985,7.54976,5.417,5.417,0,0,1-3.80867,1.56365,5.17483,5.17483,0,0,1-2.69822-.74478l.00342-4.61111a2.79372,2.79372,0,0,1,.71372-1.78792,2.61611,2.61611,0,0,1,1.98282-.89477,2.75683,2.75683,0,0,1,1.95525.79477,2.66867,2.66867,0,0,1,.79656,1.909,2.724,2.724,0,0,1-2.75849,2.748,4.94651,4.94651,0,0,1-.86254-.13719c-.31234-.093-.44519.34058-.48892.48349-.16811.54966.08453.65862.13687.67489a3.75751,3.75751,0,0,0,1.25234.18375,3.94634,3.94634,0,1,0-2.82444-6.742,3.67478,3.67478,0,0,0-1.13028,2.584l-.00041.02323c-.0035.11667-.00579,2.881-.00644,3.78811l-.00407-.00451a6.18521,6.18521,0,0,1-1.0851-1.86092c-.10544-.27856-.34358-.22925-.66857-.12917-.14192.04372-.57386.17677-.47833.489Zm4.65165-1.08338a.51346.51346,0,0,0,.19513.31818l.02276.022a.52945.52945,0,0,0,.3517.18416.24242.24242,0,0,0,.16577-.0611c.05473-.05082.67382-.67812.73287-.738l.69041.68819a.28978.28978,0,0,0,.21437.11032.53239.53239,0,0,0,.35708-.19486c.29792-.30419.14885-.46821.07676-.54751l-.69954-.69975.72952-.73469c.16-.17311.01874-.35708-.12218-.498-.20461-.20461-.402-.25742-.52855-.14083l-.7254.72665-.73354-.73375a.20128.20128,0,0,0-.14179-.05695.54135.54135,0,0,0-.34379.19648c-.22561.22555-.274.38149-.15656.5059l.73374.7315-.72942.73072A.26589.26589,0,0,0,11.59191,14.05782Zm1.59866-9.915A8.86081,8.86081,0,0,0,9.854,4.776a.26169.26169,0,0,0-.16938.22759.92978.92978,0,0,0,.08619.42094c.05682.14524.20779.531.50006.41955a8.40969,8.40969,0,0,1,2.91968-.55484,7.87875,7.87875,0,0,1,3.086.62286,8.61817,8.61817,0,0,1,2.30562,1.49315.2781.2781,0,0,0,.18318.07586c.15529,0,.30425-.15253.43167-.29551.21268-.23861.35873-.4369.1492-.63538a8.50425,8.50425,0,0,0-2.62312-1.694A9.0177,9.0177,0,0,0,13.19058,4.14283ZM19.50945,18.6236h0a.93171.93171,0,0,0-.36642-.25406.26589.26589,0,0,0-.27613.06613l-.06943.06929A7.90606,7.90606,0,0,1,7.60639,18.505a7.57284,7.57284,0,0,1-1.696-2.51537,8.58715,8.58715,0,0,1-.5147-1.77754l-.00871-.04864c-.04939-.25873-.28755-.27684-.62981-.22448-.14234.02178-.5755.088-.53426.39969l.001.00712a9.08807,9.08807,0,0,0,15.406,4.99094c.00193-.00192.04753-.04718.0725-.07436C19.79425,19.16234,19.87422,18.98728,19.50945,18.6236Z"})}),adn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M6.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5S9.25,7,6.5,7z M17.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5 S20.25,7,17.5,7z"})}),cdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M17.573,2c0,0-9.197,0-10.668,0S5,3.107,5,3.805s0,16.948,0,16.948c0,0.785,0.422,1.077,0.66,1.172 c0.238,0.097,0.892,0.177,1.285-0.275c0,0,5.035-5.843,5.122-5.93c0.132-0.132,0.132-0.132,0.262-0.132h3.26 c1.368,0,1.588-0.977,1.732-1.552c0.078-0.318,0.692-3.428,1.225-6.122l0.675-3.368C19.56,2.893,19.14,2,17.573,2z M16.495,7.22 c-0.053,0.252-0.372,0.518-0.665,0.518c-0.293,0-4.157,0-4.157,0c-0.467,0-0.802,0.318-0.802,0.787v0.508 c0,0.467,0.337,0.798,0.805,0.798c0,0,3.197,0,3.528,0s0.655,0.362,0.583,0.715c-0.072,0.353-0.407,2.102-0.448,2.295 c-0.04,0.193-0.262,0.523-0.655,0.523c-0.33,0-2.88,0-2.88,0c-0.523,0-0.683,0.068-1.033,0.503 c-0.35,0.437-3.505,4.223-3.505,4.223c-0.032,0.035-0.063,0.027-0.063-0.015V4.852c0-0.298,0.26-0.648,0.648-0.648 c0,0,8.228,0,8.562,0c0.315,0,0.61,0.297,0.528,0.683L16.495,7.22z"})}),ldn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M17.3,17.5c-0.2,0.8-0.5,1.4-1,1.9c-0.4,0.5-1,0.9-1.7,1.2C13.9,20.9,13.1,21,12,21c-0.6,0-1.3-0.1-1.9-0.2 c-0.6-0.1-1.1-0.4-1.6-0.7c-0.5-0.3-0.9-0.7-1.2-1.2c-0.3-0.5-0.5-1.1-0.5-1.7h1.5c0.1,0.5,0.2,0.9,0.5,1.2 c0.2,0.3,0.5,0.6,0.9,0.8c0.3,0.2,0.7,0.3,1.1,0.4c0.4,0.1,0.8,0.1,1.2,0.1c1.4,0,2.5-0.4,3.1-1.2c0.6-0.8,1-2,1-3.5v-1.7h0 c-0.4,0.8-0.9,1.4-1.6,1.9c-0.7,0.5-1.5,0.7-2.4,0.7c-1,0-1.9-0.2-2.6-0.5C8.7,15,8.1,14.5,7.7,14c-0.5-0.6-0.8-1.3-1-2.1 c-0.2-0.8-0.3-1.6-0.3-2.5c0-0.9,0.1-1.7,0.4-2.5c0.3-0.8,0.6-1.5,1.1-2c0.5-0.6,1.1-1,1.8-1.4C10.3,3.2,11.1,3,12,3 c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.9,0.8c0.3,0.3,0.5,0.6,0.6,1h0V3.4h1.5V15 C17.6,15.9,17.5,16.7,17.3,17.5z M13.8,14.1c0.5-0.3,0.9-0.7,1.3-1.1c0.3-0.5,0.6-1,0.8-1.6c0.2-0.6,0.3-1.2,0.3-1.9 c0-0.6-0.1-1.2-0.2-1.9c-0.1-0.6-0.4-1.2-0.7-1.7c-0.3-0.5-0.7-0.9-1.3-1.2c-0.5-0.3-1.1-0.5-1.9-0.5s-1.4,0.2-1.9,0.5 c-0.5,0.3-1,0.7-1.3,1.2C8.5,6.4,8.3,7,8.1,7.6C8,8.2,7.9,8.9,7.9,9.5c0,0.6,0.1,1.3,0.2,1.9C8.3,12,8.6,12.5,8.9,13 c0.3,0.5,0.8,0.8,1.3,1.1c0.5,0.3,1.1,0.4,1.9,0.4C12.7,14.5,13.3,14.4,13.8,14.1z"})}),udn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.02,10.18v3.72v0.01h5.51c-0.26,1.57-1.67,4.22-5.5,4.22c-3.31,0-6.01-2.75-6.01-6.12s2.7-6.12,6.01-6.12 c1.87,0,3.13,0.8,3.85,1.48l2.84-2.76C16.99,2.99,14.73,2,12.03,2c-5.52,0-10,4.48-10,10s4.48,10,10,10c5.77,0,9.6-4.06,9.6-9.77 c0-0.83-0.11-1.42-0.25-2.05H12.02z"})}),ddn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,2C6.477,2,2,6.477,2,12c0,4.419,2.865,8.166,6.839,9.489c0.5,0.09,0.682-0.218,0.682-0.484 c0-0.236-0.009-0.866-0.014-1.699c-2.782,0.602-3.369-1.34-3.369-1.34c-0.455-1.157-1.11-1.465-1.11-1.465 c-0.909-0.62,0.069-0.608,0.069-0.608c1.004,0.071,1.532,1.03,1.532,1.03c0.891,1.529,2.341,1.089,2.91,0.833 c0.091-0.647,0.349-1.086,0.635-1.337c-2.22-0.251-4.555-1.111-4.555-4.943c0-1.091,0.39-1.984,1.03-2.682 C6.546,8.54,6.202,7.524,6.746,6.148c0,0,0.84-0.269,2.75,1.025C10.295,6.95,11.15,6.84,12,6.836 c0.85,0.004,1.705,0.114,2.504,0.336c1.909-1.294,2.748-1.025,2.748-1.025c0.546,1.376,0.202,2.394,0.1,2.646 c0.64,0.699,1.026,1.591,1.026,2.682c0,3.841-2.337,4.687-4.565,4.935c0.359,0.307,0.679,0.917,0.679,1.852 c0,1.335-0.012,2.415-0.012,2.741c0,0.269,0.18,0.579,0.688,0.481C19.138,20.161,22,16.416,22,12C22,6.477,17.523,2,12,2z"})}),pdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M10.8001 4.69937V10.6494C10.8001 11.1001 10.9791 11.5323 11.2978 11.851C11.6165 12.1697 12.0487 12.3487 12.4994 12.3487C12.9501 12.3487 13.3824 12.1697 13.7011 11.851C14.0198 11.5323 14.1988 11.1001 14.1988 10.6494V6.69089C15.2418 7.05861 16.1371 7.75537 16.7496 8.67617C17.3622 9.59698 17.6589 10.6919 17.595 11.796C17.5311 12.9001 17.1101 13.9535 16.3954 14.7975C15.6807 15.6415 14.711 16.2303 13.6325 16.4753C12.5541 16.7202 11.4252 16.608 10.4161 16.1555C9.40691 15.703 8.57217 14.9348 8.03763 13.9667C7.50308 12.9985 7.29769 11.8828 7.45242 10.7877C7.60714 9.69266 8.11359 8.67755 8.89545 7.89537C9.20904 7.57521 9.38364 7.14426 9.38132 6.69611C9.37899 6.24797 9.19994 5.81884 8.88305 5.50195C8.56616 5.18506 8.13704 5.00601 7.68889 5.00369C7.24075 5.00137 6.80979 5.17597 6.48964 5.48956C5.09907 6.8801 4.23369 8.7098 4.04094 10.6669C3.84819 12.624 4.34 14.5873 5.43257 16.2224C6.52515 17.8575 8.15088 19.0632 10.0328 19.634C11.9146 20.2049 13.9362 20.1055 15.753 19.3529C17.5699 18.6003 19.0695 17.241 19.9965 15.5066C20.9234 13.7722 21.2203 11.7701 20.8366 9.84133C20.4528 7.91259 19.4122 6.17658 17.892 4.92911C16.3717 3.68163 14.466 2.99987 12.4994 3C12.0487 3 11.6165 3.17904 11.2978 3.49773C10.9791 3.81643 10.8001 4.24867 10.8001 4.69937Z"})}),fdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"})}),bdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M 12.0002 1.5 C 6.2006 1.5 1.5 6.2011 1.5 11.9998 C 1.5 17.799 6.2006 22.5 12.0002 22.5 C 17.799 22.5 22.5 17.799 22.5 11.9998 C 22.5 6.2011 17.799 1.5 12.0002 1.5 Z M 16.1974 16.2204 C 14.8164 16.2152 13.9346 15.587 13.3345 14.1859 L 13.1816 13.8451 L 11.8541 10.8101 C 11.4271 9.7688 10.3526 9.0712 9.1801 9.0712 C 7.5695 9.0712 6.2593 10.3851 6.2593 12.001 C 6.2593 13.6165 7.5695 14.9303 9.1801 14.9303 C 10.272 14.9303 11.2651 14.3275 11.772 13.3567 C 11.7893 13.3235 11.8239 13.302 11.863 13.3038 C 11.9007 13.3054 11.9353 13.3288 11.9504 13.3632 L 12.4865 14.6046 C 12.5016 14.639 12.4956 14.6778 12.4723 14.7069 C 11.6605 15.6995 10.4602 16.2683 9.1801 16.2683 C 6.8331 16.2683 4.9234 14.3536 4.9234 12.001 C 4.9234 9.6468 6.833 7.732 9.1801 7.732 C 10.9572 7.732 12.3909 8.6907 13.1138 10.3636 C 13.1206 10.3802 13.8412 12.0708 14.4744 13.5191 C 14.8486 14.374 15.1462 14.896 16.1288 14.9292 C 17.0663 14.9613 17.7538 14.4122 17.7538 13.6485 C 17.7538 12.9691 17.3321 12.8004 16.3803 12.4822 C 14.7365 11.9398 13.845 11.3861 13.845 10.0182 C 13.845 8.6809 14.7667 7.8162 16.192 7.8162 C 17.1288 7.8162 17.8155 8.2287 18.2921 9.0768 C 18.305 9.1006 18.3079 9.1281 18.3004 9.1542 C 18.2929 9.1803 18.2748 9.2021 18.2507 9.2138 L 17.3614 9.669 C 17.3178 9.692 17.2643 9.6781 17.2356 9.6385 C 16.9329 9.2135 16.5956 9.0251 16.1423 9.0251 C 15.5512 9.0251 15.122 9.429 15.122 9.9865 C 15.122 10.6738 15.6529 10.8414 16.5339 11.1192 C 16.6491 11.1558 16.7696 11.194 16.8939 11.2343 C 18.2763 11.6865 19.0768 12.2311 19.0768 13.6836 C 19.0769 15.1297 17.8389 16.2204 16.1974 16.2204 Z"})}),hdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"})}),mdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm.5 12c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l7.5 5.6 7.5-5.6V17zm0-9.1L12 13.6 4.5 7.9V7c0-.3.2-.5.5-.5h14c.3 0 .5.2.5.5v.9z"})}),gdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M23.193 7.879c0-5.206-3.411-6.732-3.411-6.732C18.062.357 15.108.025 12.041 0h-.076c-3.068.025-6.02.357-7.74 1.147 0 0-3.411 1.526-3.411 6.732 0 1.192-.023 2.618.015 4.129.124 5.092.934 10.109 5.641 11.355 2.17.574 4.034.695 5.535.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.129.539c-2.165-.074-4.449-.233-4.799-2.891a5.499 5.499 0 0 1-.048-.745s2.125.52 4.817.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.507.475-6.507zm-4.024 6.709h-2.497V8.469c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.312v3.349h-2.483v-3.35c0-1.536-.602-2.312-1.802-2.312-1.085 0-1.628.655-1.628 1.944v6.119H4.832V8.284c0-1.289.328-2.313.987-3.07.68-.758 1.569-1.146 2.674-1.146 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.304z"})}),Mdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M19.24775,14.722a3.57032,3.57032,0,0,1-2.94457,3.52073,3.61886,3.61886,0,0,1-.64652.05634c-.07314-.0008-.10187.02846-.12507.09547A2.38881,2.38881,0,0,1,13.49453,20.094a2.33092,2.33092,0,0,1-1.827-.50716.13635.13635,0,0,0-.19878-.00408,3.191,3.191,0,0,1-2.104.60248,3.26309,3.26309,0,0,1-3.00324-2.71993,2.19076,2.19076,0,0,1-.03512-.30865c-.00156-.08579-.03413-.1189-.11608-.13493a2.86421,2.86421,0,0,1-1.23189-.56111,2.945,2.945,0,0,1-1.166-2.05749,2.97484,2.97484,0,0,1,.87524-2.50774.112.112,0,0,0,.02091-.16107,2.7213,2.7213,0,0,1-.36648-1.48A2.81256,2.81256,0,0,1,6.57673,7.58838a.35764.35764,0,0,0,.28869-.22819,4.2208,4.2208,0,0,1,6.02892-1.90111.25161.25161,0,0,0,.22023.0243,3.65608,3.65608,0,0,1,3.76031.90678A3.57244,3.57244,0,0,1,17.95918,8.626a2.97339,2.97339,0,0,1,.01829.57356.10637.10637,0,0,0,.0853.12792,1.97669,1.97669,0,0,1,1.27939,1.33733,2.00266,2.00266,0,0,1-.57112,2.12652c-.05284.05166-.04168.08328-.01173.13489A3.51189,3.51189,0,0,1,19.24775,14.722Zm-6.35959-.27836a1.6984,1.6984,0,0,0,1.14556,1.61113,3.82039,3.82039,0,0,0,1.036.17935,1.46888,1.46888,0,0,0,.73509-.12255.44082.44082,0,0,0,.26057-.44274.45312.45312,0,0,0-.29211-.43375.97191.97191,0,0,0-.20678-.063c-.21326-.03806-.42754-.0701-.63973-.11215a.54787.54787,0,0,1-.50172-.60926,2.75864,2.75864,0,0,1,.1773-.901c.1763-.535.414-1.045.64183-1.55913A12.686,12.686,0,0,0,15.85,10.47863a1.58461,1.58461,0,0,0,.04861-.87208,1.04531,1.04531,0,0,0-.85432-.83981,1.60658,1.60658,0,0,0-1.23654.16594.27593.27593,0,0,1-.36286-.03413c-.085-.0747-.16594-.15379-.24918-.23055a.98682.98682,0,0,0-1.33577-.04933,6.1468,6.1468,0,0,1-.4989.41615.47762.47762,0,0,1-.51535.03566c-.17448-.09307-.35512-.175-.53531-.25665a1.74949,1.74949,0,0,0-.56476-.2016,1.69943,1.69943,0,0,0-1.61654.91787,8.05815,8.05815,0,0,0-.32952.80126c-.45471,1.2557-.82507,2.53825-1.20838,3.81639a1.24151,1.24151,0,0,0,.51532,1.44389,1.42659,1.42659,0,0,0,1.22008.17166,1.09728,1.09728,0,0,0,.66994-.69764c.44145-1.04111.839-2.09989,1.25981-3.14926.11581-.28876.22792-.57874.35078-.86438a.44548.44548,0,0,1,.69189-.19539.50521.50521,0,0,1,.15044.43836,1.75625,1.75625,0,0,1-.14731.50453c-.27379.69219-.55265,1.38236-.82766,2.074a2.0836,2.0836,0,0,0-.14038.42876.50719.50719,0,0,0,.27082.57722.87236.87236,0,0,0,.66145.02739.99137.99137,0,0,0,.53406-.532q.61571-1.20914,1.228-2.42031.28423-.55863.57585-1.1133a.87189.87189,0,0,1,.29055-.35253.34987.34987,0,0,1,.37634-.01265.30291.30291,0,0,1,.12434.31459.56716.56716,0,0,1-.04655.1915c-.05318.12739-.10286.25669-.16183.38156-.34118.71775-.68754,1.43273-1.02568,2.152A2.00213,2.00213,0,0,0,12.88816,14.44366Zm4.78568,5.28972a.88573.88573,0,0,0-1.77139.00465.8857.8857,0,0,0,1.77139-.00465Zm-14.83838-7.296a.84329.84329,0,1,0,.00827-1.68655.8433.8433,0,0,0-.00827,1.68655Zm10.366-9.43673a.83506.83506,0,1,0-.0091,1.67.83505.83505,0,0,0,.0091-1.67Zm6.85014,5.22a.71651.71651,0,0,0-1.433.0093.71656.71656,0,0,0,1.433-.0093ZM5.37528,6.17908A.63823.63823,0,1,0,6.015,5.54483.62292.62292,0,0,0,5.37528,6.17908Zm6.68214,14.80843a.54949.54949,0,1,0-.55052.541A.54556.54556,0,0,0,12.05742,20.98752Zm8.53235-8.49689a.54777.54777,0,0,0-.54027.54023.53327.53327,0,0,0,.532.52293.51548.51548,0,0,0,.53272-.5237A.53187.53187,0,0,0,20.58977,12.49063ZM7.82846,2.4715a.44927.44927,0,1,0,.44484.44766A.43821.43821,0,0,0,7.82846,2.4715Zm13.775,7.60492a.41186.41186,0,0,0-.40065.39623.40178.40178,0,0,0,.40168.40168A.38994.38994,0,0,0,22,10.48172.39946.39946,0,0,0,21.60349,10.07642ZM5.79193,17.96207a.40469.40469,0,0,0-.397-.39646.399.399,0,0,0-.396.405.39234.39234,0,0,0,.39939.389A.39857.39857,0,0,0,5.79193,17.96207Z"})}),zdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M13.2,12c0,3-2.4,5.4-5.3,5.4S2.6,15,2.6,12s2.4-5.4,5.3-5.4S13.2,9,13.2,12 M19.1,12c0,2.8-1.2,5-2.7,5s-2.7-2.3-2.7-5s1.2-5,2.7-5C17.9,7,19.1,9.2,19.1,12 M21.4,12c0,2.5-0.4,4.5-0.9,4.5c-0.5,0-0.9-2-0.9-4.5s0.4-4.5,0.9-4.5C21,7.5,21.4,9.5,21.4,12"})}),Odn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M20 8.40755C19.9969 6.10922 18.2543 4.22555 16.2097 3.54588C13.6708 2.70188 10.3222 2.82421 7.89775 3.99921C4.95932 5.42355 4.03626 8.54355 4.00186 11.6552C3.97363 14.2136 4.2222 20.9517 7.92225 20.9997C10.6715 21.0356 11.0809 17.3967 12.3529 15.6442C13.258 14.3974 14.4233 14.0452 15.8578 13.6806C18.3233 13.0537 20.0036 11.0551 20 8.40755Z"})}),ydn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"})}),Adn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M21.927,4.194C21.667,3.48,20.982,3,20.222,3h-0.01h-1.721H3.839C3.092,3,2.411,3.47,2.145,4.17 C2.066,4.378,2.026,4.594,2.026,4.814v6.035l0.069,1.2c0.29,2.73,1.707,5.115,3.899,6.778c0.039,0.03,0.079,0.059,0.119,0.089 l0.025,0.018c1.175,0.859,2.491,1.441,3.91,1.727c0.655,0.132,1.325,0.2,1.991,0.2c0.615,0,1.232-0.057,1.839-0.17 c0.073-0.014,0.145-0.028,0.219-0.044c0.02-0.004,0.042-0.012,0.064-0.023c1.359-0.297,2.621-0.864,3.753-1.691l0.025-0.018 c0.04-0.029,0.08-0.058,0.119-0.089c2.192-1.664,3.609-4.049,3.898-6.778l0.069-1.2V4.814C22.026,4.605,22,4.398,21.927,4.194z M17.692,10.481l-4.704,4.512c-0.266,0.254-0.608,0.382-0.949,0.382c-0.342,0-0.684-0.128-0.949-0.382l-4.705-4.512 C5.838,9.957,5.82,9.089,6.344,8.542c0.524-0.547,1.392-0.565,1.939-0.04l3.756,3.601l3.755-3.601 c0.547-0.524,1.415-0.506,1.939,0.04C18.256,9.089,18.238,9.956,17.692,10.481z"})}),vdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M5.27 9.221A2.775 2.775 0 0 0 2.498 11.993a2.785 2.785 0 0 0 1.6 2.511 5.337 5.337 0 0 0 2.374 4.11 9.386 9.386 0 0 0 5.539 1.7 9.386 9.386 0 0 0 5.541-1.7 5.331 5.331 0 0 0 2.372-4.114 2.787 2.787 0 0 0 1.583-2.5 2.775 2.775 0 0 0-2.772-2.772 2.742 2.742 0 0 0-1.688.574 9.482 9.482 0 0 0-4.637-1.348v-.008a2.349 2.349 0 0 1 2.011-2.316 1.97 1.97 0 0 0 1.926 1.521 1.98 1.98 0 0 0 1.978-1.978 1.98 1.98 0 0 0-1.978-1.978 1.985 1.985 0 0 0-1.938 1.578 3.183 3.183 0 0 0-2.849 3.172v.011a9.463 9.463 0 0 0-4.59 1.35 2.741 2.741 0 0 0-1.688-.574Zm6.736 9.1a3.162 3.162 0 0 1-2.921-1.944.215.215 0 0 1 .014-.2.219.219 0 0 1 .168-.106 27.327 27.327 0 0 1 2.74-.133 27.357 27.357 0 0 1 2.74.133.219.219 0 0 1 .168.106.215.215 0 0 1 .014.2 3.158 3.158 0 0 1-2.921 1.944Zm3.743-3.157a1.265 1.265 0 0 1-1.4-1.371 1.954 1.954 0 0 1 .482-1.442 1.15 1.15 0 0 1 .842-.379 1.7 1.7 0 0 1 1.49 1.777 1.323 1.323 0 0 1-.325 1.015 1.476 1.476 0 0 1-1.089.4Zm-7.485 0a1.476 1.476 0 0 1-1.086-.4 1.323 1.323 0 0 1-.325-1.016 1.7 1.7 0 0 1 1.49-1.777 1.151 1.151 0 0 1 .843.379 1.951 1.951 0 0 1 .481 1.441 1.276 1.276 0 0 1-1.403 1.373Z"})}),xdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M10.113,2.699c0.033-0.006,0.067-0.013,0.1-0.02c0.033,0.017,0.066,0.033,0.098,0.051L10.113,2.699z M2.72,10.223 c-0.006,0.034-0.011,0.069-0.017,0.103c0.018,0.032,0.033,0.064,0.051,0.095L2.72,10.223z M21.275,13.771 c0.007-0.035,0.011-0.071,0.018-0.106c-0.018-0.031-0.033-0.064-0.052-0.095L21.275,13.771z M13.563,21.199 c0.032,0.019,0.065,0.035,0.096,0.053c0.036-0.006,0.071-0.011,0.105-0.017L13.563,21.199z M22,16.386 c0,1.494-0.581,2.898-1.637,3.953c-1.056,1.057-2.459,1.637-3.953,1.637c-0.967,0-1.914-0.251-2.75-0.725 c0.036-0.006,0.071-0.011,0.105-0.017l-0.202-0.035c0.032,0.019,0.065,0.035,0.096,0.053c-0.543,0.096-1.099,0.147-1.654,0.147 c-1.275,0-2.512-0.25-3.676-0.743c-1.125-0.474-2.135-1.156-3.002-2.023c-0.867-0.867-1.548-1.877-2.023-3.002 c-0.493-1.164-0.743-2.401-0.743-3.676c0-0.546,0.049-1.093,0.142-1.628c0.018,0.032,0.033,0.064,0.051,0.095L2.72,10.223 c-0.006,0.034-0.011,0.069-0.017,0.103C2.244,9.5,2,8.566,2,7.615c0-1.493,0.582-2.898,1.637-3.953 c1.056-1.056,2.46-1.638,3.953-1.638c0.915,0,1.818,0.228,2.622,0.655c-0.033,0.007-0.067,0.013-0.1,0.02l0.199,0.031 c-0.032-0.018-0.066-0.034-0.098-0.051c0.002,0,0.003-0.001,0.004-0.001c0.586-0.112,1.187-0.169,1.788-0.169 c1.275,0,2.512,0.249,3.676,0.742c1.124,0.476,2.135,1.156,3.002,2.024c0.868,0.867,1.548,1.877,2.024,3.002 c0.493,1.164,0.743,2.401,0.743,3.676c0,0.575-0.054,1.15-0.157,1.712c-0.018-0.031-0.033-0.064-0.052-0.095l0.034,0.201 c0.007-0.035,0.011-0.071,0.018-0.106C21.754,14.494,22,15.432,22,16.386z M16.817,14.138c0-1.331-0.613-2.743-3.033-3.282 l-2.209-0.49c-0.84-0.192-1.807-0.444-1.807-1.237c0-0.794,0.679-1.348,1.903-1.348c2.468,0,2.243,1.696,3.468,1.696 c0.645,0,1.209-0.379,1.209-1.031c0-1.521-2.435-2.663-4.5-2.663c-2.242,0-4.63,0.952-4.63,3.488c0,1.221,0.436,2.521,2.839,3.123 l2.984,0.745c0.903,0.223,1.129,0.731,1.129,1.189c0,0.762-0.758,1.507-2.129,1.507c-2.679,0-2.307-2.062-3.743-2.062 c-0.645,0-1.113,0.444-1.113,1.078c0,1.236,1.501,2.886,4.856,2.886C15.236,17.737,16.817,16.199,16.817,14.138z"})}),wdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.065,2a5.526,5.526,0,0,1,3.132.892A5.854,5.854,0,0,1,17.326,5.4a5.821,5.821,0,0,1,.351,2.33q0,.612-.117,2.487a.809.809,0,0,0,.365.091,1.93,1.93,0,0,0,.664-.176,1.93,1.93,0,0,1,.664-.176,1.3,1.3,0,0,1,.729.234.7.7,0,0,1,.351.6.839.839,0,0,1-.41.7,2.732,2.732,0,0,1-.9.41,3.192,3.192,0,0,0-.9.378.728.728,0,0,0-.41.618,1.575,1.575,0,0,0,.156.56,6.9,6.9,0,0,0,1.334,1.953,5.6,5.6,0,0,0,1.881,1.315,5.875,5.875,0,0,0,1.042.3.42.42,0,0,1,.365.456q0,.911-2.852,1.341a1.379,1.379,0,0,0-.143.507,1.8,1.8,0,0,1-.182.605.451.451,0,0,1-.429.241,5.878,5.878,0,0,1-.807-.085,5.917,5.917,0,0,0-.833-.085,4.217,4.217,0,0,0-.807.065,2.42,2.42,0,0,0-.82.293,6.682,6.682,0,0,0-.755.5q-.351.267-.755.527a3.886,3.886,0,0,1-.989.436A4.471,4.471,0,0,1,11.831,22a4.307,4.307,0,0,1-1.256-.176,3.784,3.784,0,0,1-.976-.436q-.4-.26-.749-.527a6.682,6.682,0,0,0-.755-.5,2.422,2.422,0,0,0-.807-.293,4.432,4.432,0,0,0-.82-.065,5.089,5.089,0,0,0-.853.1,5,5,0,0,1-.762.1.474.474,0,0,1-.456-.241,1.819,1.819,0,0,1-.182-.618,1.411,1.411,0,0,0-.143-.521q-2.852-.429-2.852-1.341a.42.42,0,0,1,.365-.456,5.793,5.793,0,0,0,1.042-.3,5.524,5.524,0,0,0,1.881-1.315,6.789,6.789,0,0,0,1.334-1.953A1.575,1.575,0,0,0,6,12.9a.728.728,0,0,0-.41-.618,3.323,3.323,0,0,0-.9-.384,2.912,2.912,0,0,1-.9-.41.814.814,0,0,1-.41-.684.71.71,0,0,1,.338-.593,1.208,1.208,0,0,1,.716-.241,1.976,1.976,0,0,1,.625.169,2.008,2.008,0,0,0,.69.169.919.919,0,0,0,.416-.091q-.117-1.849-.117-2.474A5.861,5.861,0,0,1,6.385,5.4,5.516,5.516,0,0,1,8.625,2.819,7.075,7.075,0,0,1,12.062,2Z"})}),_dn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M23.994 14.552a3.36 3.36 0 01-3.401 3.171h-8.176a.685.685 0 01-.679-.681V8.238a.749.749 0 01.452-.716S12.942 7 14.526 7a5.357 5.357 0 012.748.755 5.44 5.44 0 012.56 3.546c.282-.08.574-.12.868-.119a3.273 3.273 0 013.292 3.37zM10.718 8.795a.266.266 0 10-.528 0c-.224 2.96-.397 5.735 0 8.685a.265.265 0 00.528 0c.425-2.976.246-5.7 0-8.685zM9.066 9.82a.278.278 0 00-.553 0 33.183 33.183 0 000 7.663.278.278 0 00.55 0c.33-2.544.332-5.12.003-7.664zM7.406 9.56a.269.269 0 00-.535 0c-.253 2.7-.38 5.222 0 7.917a.266.266 0 10.531 0c.394-2.73.272-5.181.004-7.917zM5.754 10.331a.275.275 0 10-.55 0 28.035 28.035 0 000 7.155.272.272 0 00.54 0c.332-2.373.335-4.78.01-7.155zM4.087 12.12a.272.272 0 00-.544 0c-.393 1.843-.208 3.52.016 5.386a.26.26 0 00.512 0c.247-1.892.435-3.53.016-5.386zM2.433 11.838a.282.282 0 00-.56 0c-.349 1.882-.234 3.54.01 5.418.025.285.508.282.54 0 .269-1.907.394-3.517.01-5.418zM.762 12.76a.282.282 0 00-.56 0c-.32 1.264-.22 2.31.023 3.578a.262.262 0 00.521 0c.282-1.293.42-2.317.016-3.578z"})}),kdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,2C6.477,2,2,6.477,2,12c0,5.523,4.477,10,10,10c5.523,0,10-4.477,10-10C22,6.477,17.523,2,12,2 M16.586,16.424 c-0.18,0.295-0.563,0.387-0.857,0.207c-2.348-1.435-5.304-1.76-8.785-0.964c-0.335,0.077-0.67-0.133-0.746-0.469 c-0.077-0.335,0.132-0.67,0.469-0.746c3.809-0.871,7.077-0.496,9.713,1.115C16.673,15.746,16.766,16.13,16.586,16.424 M17.81,13.7 c-0.226,0.367-0.706,0.482-1.072,0.257c-2.687-1.652-6.785-2.131-9.965-1.166C6.36,12.917,5.925,12.684,5.8,12.273 C5.675,11.86,5.908,11.425,6.32,11.3c3.632-1.102,8.147-0.568,11.234,1.328C17.92,12.854,18.035,13.335,17.81,13.7 M17.915,10.865 c-3.223-1.914-8.54-2.09-11.618-1.156C5.804,9.859,5.281,9.58,5.131,9.086C4.982,8.591,5.26,8.069,5.755,7.919 c3.532-1.072,9.404-0.865,13.115,1.338c0.445,0.264,0.59,0.838,0.327,1.282C18.933,10.983,18.359,11.129,17.915,10.865"})}),Sdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 128 128",version:"1.1",children:a.jsx(he,{d:"M28.9700376,63.3244248 C47.6273373,55.1957357 60.0684594,49.8368063 66.2934036,47.2476366 C84.0668845,39.855031 87.7600616,38.5708563 90.1672227,38.528 C90.6966555,38.5191258 91.8804274,38.6503351 92.6472251,39.2725385 C93.294694,39.7979149 93.4728387,40.5076237 93.5580865,41.0057381 C93.6433345,41.5038525 93.7494885,42.63857 93.6651041,43.5252052 C92.7019529,53.6451182 88.5344133,78.2034783 86.4142057,89.5379542 C85.5170662,94.3339958 83.750571,95.9420841 82.0403991,96.0994568 C78.3237996,96.4414641 75.5015827,93.6432685 71.9018743,91.2836143 C66.2690414,87.5912212 63.0868492,85.2926952 57.6192095,81.6896017 C51.3004058,77.5256038 55.3966232,75.2369981 58.9976911,71.4967761 C59.9401076,70.5179421 76.3155302,55.6232293 76.6324771,54.2720454 C76.6721165,54.1030573 76.7089039,53.4731496 76.3346867,53.1405352 C75.9604695,52.8079208 75.4081573,52.921662 75.0095933,53.0121213 C74.444641,53.1403447 65.4461175,59.0880351 48.0140228,70.8551922 C45.4598218,72.6091037 43.1463059,73.4636682 41.0734751,73.4188859 C38.7883453,73.3695169 34.3926725,72.1268388 31.1249416,71.0646282 C27.1169366,69.7617838 23.931454,69.0729605 24.208838,66.8603276 C24.3533167,65.7078514 25.9403832,64.5292172 28.9700376,63.3244248 Z"})}),Cdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M16.3 11.3c-.1 0-.2-.1-.2-.1-.1-2.6-1.5-4-3.9-4-1.4 0-2.6.6-3.3 1.7l1.3.9c.5-.8 1.4-1 2-1 .8 0 1.4.2 1.7.7.3.3.5.8.5 1.3-.7-.1-1.4-.2-2.2-.1-2.2.1-3.7 1.4-3.6 3.2 0 .9.5 1.7 1.3 2.2.7.4 1.5.6 2.4.6 1.2-.1 2.1-.5 2.7-1.3.5-.6.8-1.4.9-2.4.6.3 1 .8 1.2 1.3.4.9.4 2.4-.8 3.6-1.1 1.1-2.3 1.5-4.3 1.5-2.1 0-3.8-.7-4.8-2S5.7 14.3 5.7 12c0-2.3.5-4.1 1.5-5.4 1.1-1.3 2.7-2 4.8-2 2.2 0 3.8.7 4.9 2 .5.7.9 1.5 1.2 2.5l1.5-.4c-.3-1.2-.8-2.2-1.5-3.1-1.3-1.7-3.3-2.6-6-2.6-2.6 0-4.7.9-6 2.6C4.9 7.2 4.3 9.3 4.3 12s.6 4.8 1.9 6.4c1.4 1.7 3.4 2.6 6 2.6 2.3 0 4-.6 5.3-2 1.8-1.8 1.7-4 1.1-5.4-.4-.9-1.2-1.7-2.3-2.3zm-4 3.8c-1 .1-2-.4-2-1.3 0-.7.5-1.5 2.1-1.6h.5c.6 0 1.1.1 1.6.2-.2 2.3-1.3 2.7-2.2 2.7z"})}),qdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 32 32",version:"1.1",children:a.jsx(he,{d:"M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z"})}),Rdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M17.04 21.28h-3.28c-2.84 0-4.94-1.37-4.94-5.02v-5.67H6.08V7.5c2.93-.73 4.11-3.3 4.3-5.48h3.01v4.93h3.47v3.65H13.4v4.93c0 1.47.73 2.01 1.92 2.01h1.73v3.75z"})}),Tdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z"})}),Edn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"})}),Wdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22.396,7.164c-0.093,2.026-1.507,4.799-4.245,8.32C15.322,19.161,12.928,21,10.97,21c-1.214,0-2.24-1.119-3.079-3.359 c-0.56-2.053-1.119-4.106-1.68-6.159C5.588,9.243,4.921,8.122,4.206,8.122c-0.156,0-0.701,0.328-1.634,0.98L1.594,7.841 c1.027-0.902,2.04-1.805,3.037-2.708C6.001,3.95,7.03,3.327,7.715,3.264c1.619-0.156,2.616,0.951,2.99,3.321 c0.404,2.557,0.685,4.147,0.841,4.769c0.467,2.121,0.981,3.181,1.542,3.181c0.435,0,1.09-0.688,1.963-2.065 c0.871-1.376,1.338-2.422,1.401-3.142c0.125-1.187-0.343-1.782-1.401-1.782c-0.498,0-1.012,0.115-1.541,0.341 c1.023-3.35,2.977-4.977,5.862-4.884C21.511,3.066,22.52,4.453,22.396,7.164z"})}),Ndn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22,7.1c0.2,0.4-0.4,1.5-1.6,3.1c-0.2,0.2-0.4,0.5-0.7,0.9c-0.5,0.7-0.9,1.1-0.9,1.4c-0.1,0.3-0.1,0.6,0.1,0.8 c0.1,0.1,0.4,0.4,0.8,0.9h0l0,0c1,0.9,1.6,1.7,2,2.3c0,0,0,0.1,0.1,0.1c0,0.1,0,0.1,0.1,0.3c0,0.1,0,0.2,0,0.4 c0,0.1-0.1,0.2-0.3,0.3c-0.1,0.1-0.4,0.1-0.6,0.1l-2.7,0c-0.2,0-0.4,0-0.6-0.1c-0.2-0.1-0.4-0.1-0.5-0.2l-0.2-0.1 c-0.2-0.1-0.5-0.4-0.7-0.7s-0.5-0.6-0.7-0.8c-0.2-0.2-0.4-0.4-0.6-0.6C14.8,15,14.6,15,14.4,15c0,0,0,0-0.1,0c0,0-0.1,0.1-0.2,0.2 c-0.1,0.1-0.2,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.5c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2l0,0.1 c-0.1,0.1-0.3,0.2-0.6,0.2h-1.2c-0.5,0-1,0-1.5-0.2c-0.5-0.1-1-0.3-1.4-0.6s-0.7-0.5-1.1-0.7s-0.6-0.4-0.7-0.6l-0.3-0.3 c-0.1-0.1-0.2-0.2-0.3-0.3s-0.4-0.5-0.7-0.9s-0.7-1-1.1-1.6c-0.4-0.6-0.8-1.3-1.3-2.2C2.9,9.4,2.5,8.5,2.1,7.5C2,7.4,2,7.3,2,7.2 c0-0.1,0-0.1,0-0.2l0-0.1c0.1-0.1,0.3-0.2,0.6-0.2l2.9,0c0.1,0,0.2,0,0.2,0.1S5.9,6.9,5.9,7L6,7c0.1,0.1,0.2,0.2,0.3,0.3 C6.4,7.7,6.5,8,6.7,8.4C6.9,8.8,7,9,7.1,9.2l0.2,0.3c0.2,0.4,0.4,0.8,0.6,1.1c0.2,0.3,0.4,0.5,0.5,0.7s0.3,0.3,0.4,0.4 c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3-0.1c0,0,0,0,0.1-0.1c0,0,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.3,0.1-0.5c0-0.2,0.1-0.5,0.1-0.8 c0-0.4,0-0.8,0-1.3c0-0.3,0-0.5-0.1-0.8c0-0.2-0.1-0.4-0.1-0.5L9.6,7.6C9.4,7.3,9.1,7.2,8.7,7.1C8.6,7.1,8.6,7,8.7,6.9 C8.9,6.7,9,6.6,9.1,6.5c0.4-0.2,1.2-0.3,2.5-0.3c0.6,0,1,0.1,1.4,0.1c0.1,0,0.3,0.1,0.3,0.1c0.1,0.1,0.2,0.1,0.2,0.3 c0,0.1,0.1,0.2,0.1,0.3s0,0.3,0,0.5c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.7c0,0.3,0,0.6,0,0.9c0,0.1,0,0.2,0,0.4c0,0.2,0,0.4,0,0.5 c0,0.1,0,0.3,0,0.4s0.1,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.2-0.2,0.4-0.4 s0.3-0.4,0.5-0.7c0.2-0.3,0.5-0.7,0.7-1.1c0.4-0.7,0.8-1.5,1.1-2.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.1,0.1-0.1l0,0l0.1,0 c0,0,0,0,0.1,0s0.2,0,0.2,0l3,0c0.3,0,0.5,0,0.7,0S21.9,7,21.9,7L22,7.1z"})}),Bdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M 12.011719 2 C 6.5057187 2 2.0234844 6.478375 2.0214844 11.984375 C 2.0204844 13.744375 2.4814687 15.462563 3.3554688 16.976562 L 2 22 L 7.2324219 20.763672 C 8.6914219 21.559672 10.333859 21.977516 12.005859 21.978516 L 12.009766 21.978516 C 17.514766 21.978516 21.995047 17.499141 21.998047 11.994141 C 22.000047 9.3251406 20.962172 6.8157344 19.076172 4.9277344 C 17.190172 3.0407344 14.683719 2.001 12.011719 2 z M 12.009766 4 C 14.145766 4.001 16.153109 4.8337969 17.662109 6.3417969 C 19.171109 7.8517969 20.000047 9.8581875 19.998047 11.992188 C 19.996047 16.396187 16.413812 19.978516 12.007812 19.978516 C 10.674812 19.977516 9.3544062 19.642812 8.1914062 19.007812 L 7.5175781 18.640625 L 6.7734375 18.816406 L 4.8046875 19.28125 L 5.2851562 17.496094 L 5.5019531 16.695312 L 5.0878906 15.976562 C 4.3898906 14.768562 4.0204844 13.387375 4.0214844 11.984375 C 4.0234844 7.582375 7.6067656 4 12.009766 4 z M 8.4765625 7.375 C 8.3095625 7.375 8.0395469 7.4375 7.8105469 7.6875 C 7.5815469 7.9365 6.9355469 8.5395781 6.9355469 9.7675781 C 6.9355469 10.995578 7.8300781 12.182609 7.9550781 12.349609 C 8.0790781 12.515609 9.68175 15.115234 12.21875 16.115234 C 14.32675 16.946234 14.754891 16.782234 15.212891 16.740234 C 15.670891 16.699234 16.690438 16.137687 16.898438 15.554688 C 17.106437 14.971687 17.106922 14.470187 17.044922 14.367188 C 16.982922 14.263188 16.816406 14.201172 16.566406 14.076172 C 16.317406 13.951172 15.090328 13.348625 14.861328 13.265625 C 14.632328 13.182625 14.464828 13.140625 14.298828 13.390625 C 14.132828 13.640625 13.655766 14.201187 13.509766 14.367188 C 13.363766 14.534188 13.21875 14.556641 12.96875 14.431641 C 12.71875 14.305641 11.914938 14.041406 10.960938 13.191406 C 10.218937 12.530406 9.7182656 11.714844 9.5722656 11.464844 C 9.4272656 11.215844 9.5585938 11.079078 9.6835938 10.955078 C 9.7955938 10.843078 9.9316406 10.663578 10.056641 10.517578 C 10.180641 10.371578 10.223641 10.267562 10.306641 10.101562 C 10.389641 9.9355625 10.347156 9.7890625 10.285156 9.6640625 C 10.223156 9.5390625 9.737625 8.3065 9.515625 7.8125 C 9.328625 7.3975 9.131125 7.3878594 8.953125 7.3808594 C 8.808125 7.3748594 8.6425625 7.375 8.4765625 7.375 z"})}),Ldn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z"})}),Pdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M13.982 10.622 20.54 3h-1.554l-5.693 6.618L8.745 3H3.5l6.876 10.007L3.5 21h1.554l6.012-6.989L15.868 21h5.245l-7.131-10.378Zm-2.128 2.474-.697-.997-5.543-7.93H8l4.474 6.4.697.996 5.815 8.318h-2.387l-4.745-6.787Z"})}),jdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.271,16.718v1.417q-.011,3.257-.067,3.4a.707.707,0,0,1-.569.446,4.637,4.637,0,0,1-2.024-.424A4.609,4.609,0,0,1,7.8,20.565a.844.844,0,0,1-.19-.4.692.692,0,0,1,.044-.29,3.181,3.181,0,0,1,.379-.524q.335-.412,2.019-2.409.011,0,.669-.781a.757.757,0,0,1,.44-.274.965.965,0,0,1,.552.039.945.945,0,0,1,.418.324.732.732,0,0,1,.139.468Zm-1.662-2.8a.783.783,0,0,1-.58.781l-1.339.435q-3.067.981-3.257.981a.711.711,0,0,1-.6-.4,2.636,2.636,0,0,1-.19-.836,9.134,9.134,0,0,1,.011-1.857,3.559,3.559,0,0,1,.335-1.389.659.659,0,0,1,.625-.357,22.629,22.629,0,0,1,2.253.859q.781.324,1.283.524l.937.379a.771.771,0,0,1,.4.34A.982.982,0,0,1,10.609,13.917Zm9.213,3.313a4.467,4.467,0,0,1-1.021,1.8,4.559,4.559,0,0,1-1.512,1.417.671.671,0,0,1-.7-.078q-.156-.112-2.052-3.2l-.524-.859a.761.761,0,0,1-.128-.513.957.957,0,0,1,.217-.513.774.774,0,0,1,.926-.29q.011.011,1.327.446,2.264.736,2.7.887a2.082,2.082,0,0,1,.524.229.673.673,0,0,1,.245.68Zm-7.5-7.049q.056,1.137-.6,1.361-.647.19-1.272-.792L6.237,4.08a.7.7,0,0,1,.212-.691,5.788,5.788,0,0,1,2.314-1,5.928,5.928,0,0,1,2.5-.352.681.681,0,0,1,.547.5q.034.2.245,3.407T12.327,10.181Zm7.384,1.2a.679.679,0,0,1-.29.658q-.167.112-3.67.959-.747.167-1.015.257l.011-.022a.769.769,0,0,1-.513-.044.914.914,0,0,1-.413-.357.786.786,0,0,1,0-.971q.011-.011.836-1.137,1.394-1.908,1.673-2.275a2.423,2.423,0,0,1,.379-.435A.7.7,0,0,1,17.435,8a4.482,4.482,0,0,1,1.372,1.489,4.81,4.81,0,0,1,.9,1.868v.034Z"})}),Idn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"})}),vk=[{isDefault:!0,name:"wordpress",attributes:{service:"wordpress"},title:"WordPress",icon:Ldn},{name:"fivehundredpx",attributes:{service:"fivehundredpx"},title:"500px",icon:idn},{name:"amazon",attributes:{service:"amazon"},title:"Amazon",icon:Kun},{name:"bandcamp",attributes:{service:"bandcamp"},title:"Bandcamp",icon:Yun},{name:"behance",attributes:{service:"behance"},title:"Behance",icon:Zun},{name:"bluesky",attributes:{service:"bluesky"},title:"Bluesky",icon:Qun},{name:"chain",attributes:{service:"chain"},title:"Link",icon:m5e},{name:"codepen",attributes:{service:"codepen"},title:"CodePen",icon:Jun},{name:"deviantart",attributes:{service:"deviantart"},title:"DeviantArt",icon:edn},{name:"dribbble",attributes:{service:"dribbble"},title:"Dribbble",icon:tdn},{name:"dropbox",attributes:{service:"dropbox"},title:"Dropbox",icon:ndn},{name:"etsy",attributes:{service:"etsy"},title:"Etsy",icon:odn},{name:"facebook",attributes:{service:"facebook"},title:"Facebook",icon:rdn},{name:"feed",attributes:{service:"feed"},title:"RSS Feed",icon:sdn},{name:"flickr",attributes:{service:"flickr"},title:"Flickr",icon:adn},{name:"foursquare",attributes:{service:"foursquare"},title:"Foursquare",icon:cdn},{name:"goodreads",attributes:{service:"goodreads"},title:"Goodreads",icon:ldn},{name:"google",attributes:{service:"google"},title:"Google",icon:udn},{name:"github",attributes:{service:"github"},title:"GitHub",icon:ddn},{name:"gravatar",attributes:{service:"gravatar"},title:"Gravatar",icon:pdn},{name:"instagram",attributes:{service:"instagram"},title:"Instagram",icon:fdn},{name:"lastfm",attributes:{service:"lastfm"},title:"Last.fm",icon:bdn},{name:"linkedin",attributes:{service:"linkedin"},title:"LinkedIn",icon:hdn},{name:"mail",attributes:{service:"mail"},title:"Mail",keywords:["email","e-mail"],icon:mdn},{name:"mastodon",attributes:{service:"mastodon"},title:"Mastodon",icon:gdn},{name:"meetup",attributes:{service:"meetup"},title:"Meetup",icon:Mdn},{name:"medium",attributes:{service:"medium"},title:"Medium",icon:zdn},{name:"patreon",attributes:{service:"patreon"},title:"Patreon",icon:Odn},{name:"pinterest",attributes:{service:"pinterest"},title:"Pinterest",icon:ydn},{name:"pocket",attributes:{service:"pocket"},title:"Pocket",icon:Adn},{name:"reddit",attributes:{service:"reddit"},title:"Reddit",icon:vdn},{name:"skype",attributes:{service:"skype"},title:"Skype",icon:xdn},{name:"snapchat",attributes:{service:"snapchat"},title:"Snapchat",icon:wdn},{name:"soundcloud",attributes:{service:"soundcloud"},title:"SoundCloud",icon:_dn},{name:"spotify",attributes:{service:"spotify"},title:"Spotify",icon:kdn},{name:"telegram",attributes:{service:"telegram"},title:"Telegram",icon:Sdn},{name:"threads",attributes:{service:"threads"},title:"Threads",icon:Cdn},{name:"tiktok",attributes:{service:"tiktok"},title:"TikTok",icon:qdn},{name:"tumblr",attributes:{service:"tumblr"},title:"Tumblr",icon:Rdn},{name:"twitch",attributes:{service:"twitch"},title:"Twitch",icon:Tdn},{name:"twitter",attributes:{service:"twitter"},title:"Twitter",icon:Edn},{name:"vimeo",attributes:{service:"vimeo"},title:"Vimeo",icon:Wdn},{name:"vk",attributes:{service:"vk"},title:"VK",icon:Ndn},{name:"whatsapp",attributes:{service:"whatsapp"},title:"WhatsApp",icon:Bdn},{name:"x",attributes:{service:"x"},keywords:["twitter"],title:"X",icon:Pdn},{name:"yelp",attributes:{service:"yelp"},title:"Yelp",icon:jdn},{name:"youtube",attributes:{service:"youtube"},title:"YouTube",icon:Idn}];vk.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.service===n.service)});const Ddn=e=>{const t=vk.find(n=>n.name===e);return t?t.icon:m5e},Fdn=e=>{const t=vk.find(n=>n.name===e);return t?t.title:m("Social Icon")},$dn=({url:e,setAttributes:t,setPopover:n,popoverAnchor:o,clientId:r})=>{const{removeBlock:s}=Oe(Q);return a.jsx(lf,{anchor:o,"aria-label":m("Edit social link"),onClose:()=>{n(!1),o?.focus()},children:a.jsx("form",{className:"block-editor-url-popover__link-editor",onSubmit:i=>{i.preventDefault(),n(!1),o?.focus()},children:a.jsx("div",{className:"block-editor-url-input",children:a.jsx(bI,{value:e,onChange:i=>t({url:i}),placeholder:m("Enter social link"),label:m("Enter social link"),hideLabelFromVision:!0,disableSuggestions:!0,onKeyDown:i=>{e||i.defaultPrevented||![Mc,Ol].includes(i.keyCode)||s(r)},suffix:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{icon:jw,label:m("Apply"),type:"submit",size:"small"})})})})})})},Vdn=({attributes:e,context:t,isSelected:n,setAttributes:o,clientId:r})=>{const{url:s,service:i,label:c="",rel:l}=e,u=Qo(),{showLabels:d,iconColor:p,iconColorValue:f,iconBackgroundColor:b,iconBackgroundColorValue:h}=t,[g,z]=x.useState(!1),A=oe("wp-social-link","wp-block-social-link","wp-social-link-"+i,{"wp-social-link__is-incomplete":!s,[`has-${p}-color`]:p,[`has-${b}-background-color`]:b}),[_,v]=x.useState(null),M=Jr()==="contentOnly",y=Ddn(i),k=Fdn(i),S=c.trim()===""?k:c,C=x.useRef(),R=Be({className:"wp-block-social-link-anchor",ref:xn([v,C]),onClick:()=>z(!0),onKeyDown:T=>{T.keyCode===Gr&&(T.preventDefault(),z(!0))}});return a.jsxs(a.Fragment,{children:[M&&d&&a.jsx(bt,{group:"other",children:a.jsx(so,{popoverProps:{position:"bottom right"},renderToggle:({isOpen:T,onToggle:E})=>a.jsx(Vt,{onClick:E,"aria-haspopup":"true","aria-expanded":T,children:m("Text")}),renderContent:()=>a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"wp-block-social-link__toolbar_content_text",label:m("Text"),help:m("Provide a text label or use the default."),value:c,onChange:T=>o({label:T}),placeholder:k})})}),a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{o({label:void 0})},dropdownMenuProps:u,children:a.jsx(tt,{isShownByDefault:!0,label:m("Text"),hasValue:()=>!!c,onDeselect:()=>{o({label:void 0})},children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Text"),help:m("The text is visible when enabled from the parent Social Icons block."),value:c,onChange:T=>o({label:T}),placeholder:k})})})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:l||"",onChange:T=>o({rel:T})})}),a.jsxs("li",{role:"presentation",className:A,style:{color:f,backgroundColor:h},children:[a.jsxs("button",{"aria-haspopup":"dialog",...R,role:"button",children:[a.jsx(y,{}),a.jsx("span",{className:oe("wp-block-social-link-label",{"screen-reader-text":!d}),children:S})]}),n&&g&&a.jsx($dn,{url:s,setAttributes:o,setPopover:z,popoverAnchor:_,clientId:r})]})]})},QD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/social-link",title:"Social Icon",category:"widgets",parent:["core/social-links"],description:"Display an icon linking to a social profile or site.",textdomain:"default",attributes:{url:{type:"string",role:"content"},service:{type:"string"},label:{type:"string",role:"content"},rel:{type:"string"}},usesContext:["openInNewTab","showLabels","iconColor","iconColorValue","iconBackgroundColor","iconBackgroundColorValue"],supports:{reusable:!1,html:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-social-link-editor"},{name:g5e}=QD,M5e={icon:jde,edit:Vdn,variations:vk},Hdn=()=>it({name:g5e,metadata:QD,settings:M5e}),Udn=Object.freeze(Object.defineProperty({__proto__:null,init:Hdn,metadata:QD,name:g5e,settings:M5e},Symbol.toStringTag,{value:"Module"})),Xdn=e=>{if(e.layout)return e;const{className:t}=e,n="items-justified-",o=new RegExp(`\\b${n}[^ ]*[ ]?\\b`,"g"),r={...e,className:t?.replace(o,"").trim()},s=t?.match(o)?.[0]?.trim();return s&&Object.assign(r,{layout:{type:"flex",justifyContent:s.slice(n.length)}}),r},Gdn=[{attributes:{iconColor:{type:"string"},customIconColor:{type:"string"},iconColorValue:{type:"string"},iconBackgroundColor:{type:"string"},customIconBackgroundColor:{type:"string"},iconBackgroundColorValue:{type:"string"},openInNewTab:{type:"boolean",default:!1},size:{type:"string"}},providesContext:{openInNewTab:"openInNewTab"},supports:{align:["left","center","right"],anchor:!0},migrate:Xdn,save:e=>{const{attributes:{iconBackgroundColorValue:t,iconColorValue:n,itemsJustification:o,size:r}}=e,s=oe(r,{"has-icon-color":n,"has-icon-background-color":t,[`items-justified-${o}`]:o}),i={"--wp--social-links--icon-color":n,"--wp--social-links--icon-background-color":t};return a.jsx("ul",{...Be.save({className:s,style:i}),children:a.jsx(Ht.Content,{})})}}],Kdn=[{name:m("Small"),value:"has-small-icon-size"},{name:m("Normal"),value:"has-normal-icon-size"},{name:m("Large"),value:"has-large-icon-size"},{name:m("Huge"),value:"has-huge-icon-size"}];function Ydn(e){var t;const{clientId:n,attributes:o,iconBackgroundColor:r,iconColor:s,isSelected:i,setAttributes:c,setIconBackgroundColor:l,setIconColor:u}=e,{iconBackgroundColorValue:d,customIconBackgroundColor:p,iconColorValue:f,openInNewTab:b,showLabels:h,size:g}=o,z=G(B=>B(Q).hasSelectedInnerBlock(n),[n]),A=i||z,_=o.className?.includes("is-style-logos-only"),v=Qo(),M=x.useRef({});x.useEffect(()=>{_?(M.current={iconBackgroundColor:r,iconBackgroundColorValue:d,customIconBackgroundColor:p},c({iconBackgroundColor:void 0,customIconBackgroundColor:void 0,iconBackgroundColorValue:void 0})):c({...M.current})},[_]);const y=a.jsx("li",{className:"wp-block-social-links__social-placeholder",children:a.jsxs("div",{className:"wp-block-social-links__social-placeholder-icons",children:[a.jsx("div",{className:"wp-social-link wp-social-link-twitter"}),a.jsx("div",{className:"wp-social-link wp-social-link-facebook"}),a.jsx("div",{className:"wp-social-link wp-social-link-instagram"})]})}),k=oe(g,{"has-visible-labels":h,"has-icon-color":s.color||f,"has-icon-background-color":r.color||d}),S=Be({className:k}),C=Nt(S,{placeholder:!i&&y,templateLock:!1,orientation:(t=o.layout?.orientation)!==null&&t!==void 0?t:"horizontal",__experimentalAppenderTagName:"li",renderAppender:A&&Ht.ButtonBlockAppender}),R={position:"bottom right"},T=[{value:s.color||f,onChange:B=>{u(B),c({iconColorValue:B})},label:m("Icon color"),resetAllFilter:()=>{u(void 0),c({iconColorValue:void 0})}}];_||T.push({value:r.color||d,onChange:B=>{l(B),c({iconBackgroundColorValue:B})},label:m("Icon background"),resetAllFilter:()=>{l(void 0),c({iconBackgroundColorValue:void 0})}});const E=ub();return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"other",children:a.jsx(Lc,{label:m("Size"),text:m("Size"),icon:null,popoverProps:R,children:({onClose:B})=>a.jsx(Cn,{children:Kdn.map(N=>a.jsx(Ct,{icon:(g===N.value||!g&&N.value==="has-normal-icon-size")&&M0,isSelected:g===N.value,onClick:()=>{c({size:N.value})},onClose:B,role:"menuitemradio",children:N.name},N.value))})})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{c({openInNewTab:!1,showLabels:!1})},dropdownMenuProps:v,children:[a.jsx(tt,{isShownByDefault:!0,label:m("Open links in new tab"),hasValue:()=>!!b,onDeselect:()=>c({openInNewTab:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open links in new tab"),checked:b,onChange:()=>c({openInNewTab:!b})})}),a.jsx(tt,{isShownByDefault:!0,label:m("Show text"),hasValue:()=>!!h,onDeselect:()=>c({showLabels:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show text"),checked:h,onChange:()=>c({showLabels:!h})})})]})}),E.hasColorsOrGradients&&a.jsxs(et,{group:"color",children:[T.map(({onChange:B,label:N,value:j,resetAllFilter:I})=>a.jsx(ek,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:j,label:N,onColorChange:B,isShownByDefault:!0,resetAllFilter:I,enableAlpha:!0,clearable:!0}],panelId:n,...E},`social-links-color-${N}`)),!_&&a.jsx(Jx,{textColor:f,backgroundColor:d,isLargeText:!1})]}),a.jsx("ul",{...C})]})}const Zdn={iconColor:"icon-color",iconBackgroundColor:"icon-background-color"},Qdn=AO(Zdn)(Ydn);function Jdn(e){const{attributes:{iconBackgroundColorValue:t,iconColorValue:n,showLabels:o,size:r}}=e,s=oe(r,{"has-visible-labels":o,"has-icon-color":n,"has-icon-background-color":t}),i=Be.save({className:s}),c=Nt.save(i);return a.jsx("ul",{...c})}const JD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/social-links",title:"Social Icons",category:"widgets",allowedBlocks:["core/social-link"],description:"Display icons linking to your social profiles or sites.",keywords:["links"],textdomain:"default",attributes:{iconColor:{type:"string"},customIconColor:{type:"string"},iconColorValue:{type:"string"},iconBackgroundColor:{type:"string"},customIconBackgroundColor:{type:"string"},iconBackgroundColorValue:{type:"string"},openInNewTab:{type:"boolean",default:!1},showLabels:{type:"boolean",default:!1},size:{type:"string"}},providesContext:{openInNewTab:"openInNewTab",showLabels:"showLabels",iconColor:"iconColor",iconColorValue:"iconColorValue",iconBackgroundColor:"iconBackgroundColor",iconBackgroundColorValue:"iconBackgroundColorValue"},supports:{align:["left","center","right"],anchor:!0,__experimentalExposeControlsToChildren:!0,layout:{allowSwitching:!1,allowInheriting:!1,allowVerticalAlignment:!1,default:{type:"flex"}},color:{enableContrastChecker:!1,background:!0,gradients:!0,text:!1,__experimentalDefaultControls:{background:!1}},spacing:{blockGap:["horizontal","vertical"],margin:!0,padding:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0,margin:!0,padding:!1}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"logos-only",label:"Logos Only"},{name:"pill-shape",label:"Pill Shape"}],editorStyle:"wp-block-social-links-editor",style:"wp-block-social-links"},{name:z5e}=JD,O5e={example:{innerBlocks:[{name:"core/social-link",attributes:{service:"wordpress",url:"https://wordpress.org"}},{name:"core/social-link",attributes:{service:"facebook",url:"https://www.facebook.com/WordPress/"}},{name:"core/social-link",attributes:{service:"twitter",url:"https://twitter.com/WordPress"}}]},icon:jde,edit:Qdn,save:Jdn,deprecated:Gdn},epn=()=>it({name:z5e,metadata:JD,settings:O5e}),tpn=Object.freeze(Object.defineProperty({__proto__:null,init:epn,metadata:JD,name:z5e,settings:O5e},Symbol.toStringTag,{value:"Module"})),npn=[{attributes:{height:{type:"number",default:100},width:{type:"number"}},migrate(e){const{height:t,width:n}=e;return{...e,width:n!==void 0?`${n}px`:void 0,height:t!==void 0?`${t}px`:void 0}},save({attributes:e}){return a.jsx("div",{...Be.save({style:{height:e.height,width:e.width},"aria-hidden":!0})})}}],wN=0,{useSpacingSizes:opn}=e0(Ln);function Yoe({label:e,onChange:t,isResizing:n,value:o=""}){const r=vt(Ro,"block-spacer-height-input"),s=opn(),[i]=Un("spacing.units"),c=i?i.filter(b=>b!=="%"):["px","em","rem","vw","vh"],l=U1({availableUnits:c,defaultValues:{px:100,em:10,rem:10,vw:10,vh:25}}),u=b=>{t(b.all)},[d,p]=yo(o),f=Qp(o)?o:[d,n?"px":p].join("");return a.jsxs(a.Fragment,{children:[(!s||s?.length===0)&&a.jsx(Ro,{id:r,isResetValueOnUnitChange:!0,min:wN,onChange:u,value:f,units:l,label:e,__next40pxDefaultSize:!0}),s?.length>0&&a.jsx(vd,{className:"tools-panel-item-spacing",children:a.jsx(z4,{values:{all:f},onChange:u,label:e,sides:["all"],units:l,allowReset:!1,splitOnAxis:!1,showSideInLabel:!1})})]})}function rpn({setAttributes:e,orientation:t,height:n,width:o,isResizing:r}){return a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{e({width:void 0,height:"100px"})},children:[t==="horizontal"&&a.jsx(tt,{label:m("Width"),isShownByDefault:!0,hasValue:()=>o!==void 0,onDeselect:()=>e({width:void 0}),children:a.jsx(Yoe,{label:m("Width"),value:o,onChange:s=>e({width:s}),isResizing:r})}),t!=="horizontal"&&a.jsx(tt,{label:m("Height"),isShownByDefault:!0,hasValue:()=>n!=="100px",onDeselect:()=>e({height:"100px"}),children:a.jsx(Yoe,{label:m("Height"),value:n,onChange:s=>e({height:s}),isResizing:r})})]})})}const{useSpacingSizes:spn}=e0(Ln),Zoe=({orientation:e,onResizeStart:t,onResize:n,onResizeStop:o,isSelected:r,isResizing:s,setIsResizing:i,...c})=>{const l=d=>e==="horizontal"?d.clientWidth:d.clientHeight,u=d=>`${l(d)}px`;return a.jsx(Ca,{className:oe("block-library-spacer__resize-container",{"resize-horizontal":e==="horizontal","is-resizing":s,"is-selected":r}),onResizeStart:(d,p,f)=>{const b=u(f);t(b),n(b)},onResize:(d,p,f)=>{n(u(f)),s||i(!0)},onResizeStop:(d,p,f)=>{const b=l(f);o(`${b}px`),i(!1)},__experimentalShowTooltip:!0,__experimentalTooltipProps:{axis:e==="horizontal"?"x":"y",position:"corner",isVisible:s},showHandle:r,...c})},ipn=({attributes:e,isSelected:t,setAttributes:n,toggleSelection:o,context:r,__unstableParentLayout:s,className:i})=>{const c=G(Z=>Z(Q).getSettings()?.disableCustomSpacingSizes),{orientation:l}=r,{orientation:u,type:d,default:{type:p}={}}=s||{},f=d==="flex"||!d&&p==="flex",b=!u&&f?"horizontal":u||l,{height:h,width:g,style:z={}}=e,{layout:A={}}=z,{selfStretch:_,flexSize:v}=A,M=spn(),[y,k]=x.useState(!1),[S,C]=x.useState(null),[R,T]=x.useState(null),E=()=>o(!1),B=()=>o(!0),N=Z=>{B(),f&&n({style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}}),n({height:Z}),C(null)},j=Z=>{B(),f&&n({style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}}),n({width:Z}),T(null)},I=()=>{if(!f)return S||xh(h)||void 0},P=()=>{if(!f)return R||xh(g)||void 0},$=b==="horizontal"?R||v:S||v,F={height:b==="horizontal"?24:I(),width:b==="horizontal"?P():void 0,minWidth:b==="vertical"&&f?48:void 0,flexBasis:f?$:void 0,flexGrow:f&&y?0:void 0},X=Z=>Z==="horizontal"?a.jsx(Zoe,{minWidth:wN,enable:{top:!1,right:!0,bottom:!1,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},orientation:Z,onResizeStart:E,onResize:T,onResizeStop:j,isSelected:t,isResizing:y,setIsResizing:k}):a.jsx(a.Fragment,{children:a.jsx(Zoe,{minHeight:wN,enable:{top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},orientation:Z,onResizeStart:E,onResize:C,onResizeStop:N,isSelected:t,isResizing:y,setIsResizing:k})});return x.useEffect(()=>{if(f&&_!=="fill"&&_!=="fit"&&!v)if(b==="horizontal"){const Z=aM(g,M)||aM(h,M)||"100px";n({width:"0px",style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}})}else{const Z=aM(h,M)||aM(g,M)||"100px";n({height:"0px",style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}})}else f&&(_==="fill"||_==="fit")?n(b==="horizontal"?{width:void 0}:{height:void 0}):!f&&(_||v)&&(n(b==="horizontal"?{width:v}:{height:v}),n({style:{...z,layout:{...A,flexSize:void 0,selfStretch:void 0}}}))},[z,v,h,b,f,A,_,n,M,g]),a.jsxs(a.Fragment,{children:[a.jsx(vd,{...Be({style:F,className:oe(i,{"custom-sizes-disabled":c})}),children:X(b)}),!f&&a.jsx(rpn,{setAttributes:n,height:S||h,width:R||g,orientation:b,isResizing:y})]})},apn={to:[{type:"block",blocks:["core/separator"],transform:({anchor:e})=>Ee("core/separator",{anchor:e||""})}]};function cpn({attributes:e}){const{height:t,width:n,style:o}=e,{layout:{selfStretch:r}={}}=o||{},s=r==="fill"||r==="fit"?void 0:t;return a.jsx("div",{...Be.save({style:{height:xh(s),width:xh(n)},"aria-hidden":!0})})}const eF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/spacer",title:"Spacer",category:"design",description:"Add white space between blocks and customize its height.",textdomain:"default",attributes:{height:{type:"string",default:"100px"},width:{type:"string"}},usesContext:["orientation"],supports:{anchor:!0,spacing:{margin:["top","bottom"],__experimentalDefaultControls:{margin:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-spacer-editor",style:"wp-block-spacer"},{name:y5e}=eF,A5e={icon:WQe,transforms:apn,edit:ipn,save:cpn,deprecated:npn},lpn=()=>it({name:y5e,metadata:eF,settings:A5e}),upn=Object.freeze(Object.defineProperty({__proto__:null,init:lpn,metadata:eF,name:y5e,settings:A5e},Symbol.toStringTag,{value:"Module"})),Qoe={"subtle-light-gray":"#f3f4f5","subtle-pale-green":"#e9fbe5","subtle-pale-blue":"#e7f5fe","subtle-pale-pink":"#fcf0ef"},QT={content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}},dpn={attributes:{hasFixedLayout:{type:"boolean",default:!1},caption:{type:"rich-text",source:"rich-text",selector:"figcaption"},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:QT}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:QT}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:QT}}}},supports:{anchor:!0,align:!0,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{__experimentalSkipSerialization:!0,color:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,style:!0,width:!0}},__experimentalSelector:".wp-block-table > table",interactivity:{clientNavigation:!0}},save({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,caption:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=P1(e),l=X1(e),u=oe(c.className,l.className,{"has-fixed-layout":t}),d=!Ie.isEmpty(s),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M,colspan:y,rowspan:k},S)=>{const C=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:C||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0,colSpan:y,rowSpan:k},S)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,style:{...c.style,...l.style},children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:s,className:z0("caption")})]})}},JT={content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}},ppn={attributes:{hasFixedLayout:{type:"boolean",default:!1},caption:{type:"string",source:"html",selector:"figcaption",default:""},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:JT}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:JT}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:JT}}}},supports:{anchor:!0,align:!0,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{__experimentalSkipSerialization:!0,color:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,style:!0,width:!0}},__experimentalSelector:".wp-block-table > table"},save({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,caption:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=P1(e),l=X1(e),u=oe(c.className,l.className,{"has-fixed-layout":t}),d=!Ie.isEmpty(s),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M},y)=>{const k=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:k||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0},y)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,style:{...c.style,...l.style},children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:s})]})}},eE={content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}},fpn={attributes:{hasFixedLayout:{type:"boolean",default:!1},backgroundColor:{type:"string"},caption:{type:"string",source:"html",selector:"figcaption",default:""},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:eE}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:eE}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:eE}}}},supports:{anchor:!0,align:!0,__experimentalSelector:".wp-block-table > table"},save:({attributes:e})=>{const{hasFixedLayout:t,head:n,body:o,foot:r,backgroundColor:s,caption:i}=e;if(!n.length&&!o.length&&!r.length)return null;const l=Pt("background-color",s),u=oe(l,{"has-fixed-layout":t,"has-background":!!l}),d=!Ie.isEmpty(i),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M},y)=>{const k=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:k||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0},y)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:i})]})},isEligible:e=>e.backgroundColor&&e.backgroundColor in Qoe&&!e.style,migrate:e=>({...e,backgroundColor:void 0,style:{color:{background:Qoe[e.backgroundColor]}}})},tE={content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"}},bpn={attributes:{hasFixedLayout:{type:"boolean",default:!1},backgroundColor:{type:"string"},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:tE}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:tE}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:tE}}}},supports:{align:!0},save({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,backgroundColor:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=Pt("background-color",s),l=oe(c,{"has-fixed-layout":t,"has-background":!!c}),u=({type:d,rows:p})=>{if(!p.length)return null;const f=`t${d}`;return a.jsx(f,{children:p.map(({cells:b},h)=>a.jsx("tr",{children:b.map(({content:g,tag:z,scope:A},_)=>a.jsx(Ie.Content,{tagName:z,value:g,scope:z==="th"?A:void 0},_))},h))})};return a.jsxs("table",{className:l,children:[a.jsx(u,{type:"head",rows:n}),a.jsx(u,{type:"body",rows:o}),a.jsx(u,{type:"foot",rows:r})]})}},hpn=[dpn,ppn,fpn,bpn],mpn=["align"];function gpn({rowCount:e,columnCount:t}){return{body:Array.from({length:e}).map(()=>({cells:Array.from({length:t}).map(()=>({content:"",tag:"td"}))}))}}function Mpn(e){if(!df(e.head))return e.head[0];if(!df(e.body))return e.body[0];if(!df(e.foot))return e.foot[0]}function zpn(e,t,n){const{sectionName:o,rowIndex:r,columnIndex:s}=t;return e[o]?.[r]?.cells?.[s]?.[n]}function Joe(e,t,n){if(!t)return e;const o=Object.fromEntries(Object.entries(e).filter(([i])=>["head","body","foot"].includes(i))),{sectionName:r,rowIndex:s}=t;return Object.fromEntries(Object.entries(o).map(([i,c])=>r&&r!==i?[i,c]:[i,c.map((l,u)=>s&&s!==u?l:{cells:l.cells.map((d,p)=>Opn({sectionName:i,columnIndex:p,rowIndex:u},t)?n(d):d)})]))}function Opn(e,t){if(!e||!t)return!1;switch(t.type){case"column":return t.type==="column"&&e.columnIndex===t.columnIndex;case"cell":return t.type==="cell"&&e.sectionName===t.sectionName&&e.columnIndex===t.columnIndex&&e.rowIndex===t.rowIndex}}function v5e(e,{sectionName:t,rowIndex:n,columnCount:o}){const r=Mpn(e),s=o===void 0?r?.cells?.length:o;return s?{[t]:[...e[t].slice(0,n),{cells:Array.from({length:s}).map((i,c)=>{var l;const u=(l=r?.cells?.[c])!==null&&l!==void 0?l:{};return{...Object.fromEntries(Object.entries(u).filter(([p])=>mpn.includes(p))),content:"",tag:t==="head"?"th":"td"}})},...e[t].slice(n)]}:e}function ypn(e,{sectionName:t,rowIndex:n}){return{[t]:e[t].filter((o,r)=>r!==n)}}function Apn(e,{columnIndex:t}){const n=Object.fromEntries(Object.entries(e).filter(([o])=>["head","body","foot"].includes(o)));return Object.fromEntries(Object.entries(n).map(([o,r])=>df(r)?[o,r]:[o,r.map(s=>x5e(s)||s.cells.length<t?s:{cells:[...s.cells.slice(0,t),{content:"",tag:o==="head"?"th":"td"},...s.cells.slice(t)]})]))}function vpn(e,{columnIndex:t}){const n=Object.fromEntries(Object.entries(e).filter(([o])=>["head","body","foot"].includes(o)));return Object.fromEntries(Object.entries(n).map(([o,r])=>df(r)?[o,r]:[o,r.map(s=>({cells:s.cells.length>=t?s.cells.filter((i,c)=>c!==t):s.cells})).filter(s=>s.cells.length)]))}function ere(e,t){var n;if(!df(e[t]))return{[t]:[]};const o=(n=e.body?.[0]?.cells?.length)!==null&&n!==void 0?n:1;return v5e(e,{sectionName:t,rowIndex:0,columnCount:o})}function df(e){return!e||!e.length||e.every(x5e)}function x5e(e){return!(e.cells&&e.cells.length)}const xpn=[{icon:$3,title:m("Align column left"),align:"left"},{icon:Rw,title:m("Align column center"),align:"center"},{icon:V3,title:m("Align column right"),align:"right"}],wpn={head:m("Header cell text"),body:m("Body cell text"),foot:m("Footer cell text")},_pn={head:m("Header label"),foot:m("Footer label")};function kpn({name:e,...t}){const n=`t${e}`;return a.jsx(n,{...t})}function Spn({attributes:e,setAttributes:t,insertBlocksAfter:n,isSelected:o}){const{hasFixedLayout:r,head:s,foot:i}=e,[c,l]=x.useState(2),[u,d]=x.useState(2),[p,f]=x.useState(),b=BO(e),h=cu(e),g=x.useRef(),[z,A]=x.useState(!1),_=Qo();function v(J){d(J)}function M(J){l(J)}function y(J){J.preventDefault(),t(gpn({rowCount:parseInt(c,10)||2,columnCount:parseInt(u,10)||2})),A(!0)}function k(){t({hasFixedLayout:!r})}function S(J){p&&t(Joe(e,p,ue=>({...ue,content:J})))}function C(J){if(!p)return;const ue={type:"column",columnIndex:p.columnIndex},ce=Joe(e,ue,me=>({...me,align:J}));t(ce)}function R(){if(p)return zpn(e,p,"align")}function T(){t(ere(e,"head"))}function E(){t(ere(e,"foot"))}function B(J){if(!p)return;const{sectionName:ue,rowIndex:ce}=p,me=ce+J;t(v5e(e,{sectionName:ue,rowIndex:me})),f({sectionName:ue,rowIndex:me,columnIndex:0,type:"cell"})}function N(){B(0)}function j(){B(1)}function I(){if(!p)return;const{sectionName:J,rowIndex:ue}=p;f(),t(ypn(e,{sectionName:J,rowIndex:ue}))}function P(J=0){if(!p)return;const{columnIndex:ue}=p,ce=ue+J;t(Apn(e,{columnIndex:ce})),f({rowIndex:0,columnIndex:ce,type:"cell"})}function $(){P(0)}function F(){P(1)}function X(){if(!p)return;const{sectionName:J,columnIndex:ue}=p;f(),t(vpn(e,{sectionName:J,columnIndex:ue}))}x.useEffect(()=>{o||f()},[o]),x.useEffect(()=>{z&&(g?.current?.querySelector('td div[contentEditable="true"]')?.focus(),A(!1))},[z]);const Z=["head","body","foot"].filter(J=>!df(e[J])),V=[{icon:KQe,title:m("Insert row before"),isDisabled:!p,onClick:N},{icon:GQe,title:m("Insert row after"),isDisabled:!p,onClick:j},{icon:YQe,title:m("Delete row"),isDisabled:!p,onClick:I},{icon:UQe,title:m("Insert column before"),isDisabled:!p,onClick:$},{icon:HQe,title:m("Insert column after"),isDisabled:!p,onClick:F},{icon:XQe,title:m("Delete column"),isDisabled:!p,onClick:X}],ee=Z.map(J=>a.jsx(kpn,{name:J,children:e[J].map(({cells:ue},ce)=>a.jsx("tr",{children:ue.map(({content:me,tag:de,scope:Ae,align:ye,colspan:Ne,rowspan:je},ie)=>a.jsx(de,{scope:de==="th"?Ae:void 0,colSpan:Ne,rowSpan:je,className:oe({[`has-text-align-${ye}`]:ye},"wp-block-table__cell-content"),children:a.jsx(Ie,{value:me,onChange:S,onFocus:()=>{f({sectionName:J,rowIndex:ce,columnIndex:ie,type:"cell"})},"aria-label":wpn[J],placeholder:_pn[J]})},ie))},ce))},J)),te=!Z.length;return a.jsxs("figure",{...Be({ref:g}),children:[!te&&a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{label:m("Change column alignment"),alignmentControls:xpn,value:R(),onChange:J=>C(J)})}),a.jsx(bt,{group:"other",children:a.jsx(Lc,{icon:ZQe,label:m("Edit table"),controls:V})})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({hasFixedLayout:!0,head:[],foot:[]})},dropdownMenuProps:_,children:[a.jsx(tt,{hasValue:()=>r!==!0,label:m("Fixed width table cells"),onDeselect:()=>t({hasFixedLayout:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Fixed width table cells"),checked:!!r,onChange:k})}),!te&&a.jsxs(a.Fragment,{children:[a.jsx(tt,{hasValue:()=>s&&s.length,label:m("Header section"),onDeselect:()=>t({head:[]}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Header section"),checked:!!(s&&s.length),onChange:T})}),a.jsx(tt,{hasValue:()=>i&&i.length,label:m("Footer section"),onDeselect:()=>t({foot:[]}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Footer section"),checked:!!(i&&i.length),onChange:E})})]})]})}),!te&&a.jsx("table",{className:oe(b.className,h.className,{"has-fixed-layout":r,"has-individual-borders":Pd(e?.style?.border)}),style:{...b.style,...h.style},children:ee}),te?a.jsx(vo,{label:m("Table"),icon:a.jsx(Zn,{icon:Zue,showColors:!0}),instructions:m("Insert a table for sharing data."),children:a.jsxs("form",{className:"blocks-table__placeholder-form",onSubmit:y,children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,type:"number",label:m("Column count"),value:u,onChange:v,min:"1",className:"blocks-table__placeholder-input"}),a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,type:"number",label:m("Row count"),value:c,onChange:M,min:"1",className:"blocks-table__placeholder-input"}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Create Table")})]})}):a.jsx(fb,{attributes:e,setAttributes:t,isSelected:o,insertBlocksAfter:n,label:m("Table caption text"),showToolbarButton:o})]})}function Cpn({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,caption:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=P1(e),l=X1(e),u=oe(c.className,l.className,{"has-fixed-layout":t}),d=!Ie.isEmpty(s),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M,colspan:y,rowspan:k},S)=>{const C=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:C||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0,colSpan:y,rowSpan:k},S)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,style:{...c.style,...l.style},children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:s,className:z0("caption")})]})}function tre(e){const t=parseInt(e,10);if(Number.isInteger(t))return t<0||t===1?void 0:t.toString()}const nE=({phrasingContentSchema:e})=>({tr:{allowEmpty:!0,children:{th:{allowEmpty:!0,children:e,attributes:["scope","colspan","rowspan"]},td:{allowEmpty:!0,children:e,attributes:["colspan","rowspan"]}}}}),qpn=e=>({table:{children:{thead:{allowEmpty:!0,children:nE(e)},tfoot:{allowEmpty:!0,children:nE(e)},tbody:{allowEmpty:!0,children:nE(e)}}}}),Rpn={from:[{type:"raw",selector:"table",schema:qpn,transform:e=>{const t=Array.from(e.children).reduce((n,o)=>{if(!o.children.length)return n;const r=o.nodeName.toLowerCase().slice(1),s=Array.from(o.children).reduce((i,c)=>{if(!c.children.length)return i;const l=Array.from(c.children).reduce((u,d)=>{const p=tre(d.getAttribute("rowspan")),f=tre(d.getAttribute("colspan"));return u.push({tag:d.nodeName.toLowerCase(),content:d.innerHTML,rowspan:p,colspan:f}),u},[]);return i.push({cells:l}),i},[]);return n[r]=s,n},{});return Ee("core/table",t)}}]},tF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/table",title:"Table",category:"text",description:"Create structured content in rows and columns to display information.",textdomain:"default",attributes:{hasFixedLayout:{type:"boolean",default:!0},caption:{type:"rich-text",source:"rich-text",selector:"figcaption"},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}}}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}}}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}}}}}},supports:{anchor:!0,align:!0,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{__experimentalSkipSerialization:!0,color:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,style:!0,width:!0}},interactivity:{clientNavigation:!0}},selectors:{root:".wp-block-table > table",spacing:".wp-block-table"},styles:[{name:"regular",label:"Default",isDefault:!0},{name:"stripes",label:"Stripes"}],editorStyle:"wp-block-table-editor",style:"wp-block-table"},{name:w5e}=tF,_5e={icon:Zue,example:{attributes:{head:[{cells:[{content:m("Version"),tag:"th"},{content:m("Jazz Musician"),tag:"th"},{content:m("Release Date"),tag:"th"}]}],body:[{cells:[{content:"5.2",tag:"td"},{content:"Jaco Pastorius",tag:"td"},{content:m("May 7, 2019"),tag:"td"}]},{cells:[{content:"5.1",tag:"td"},{content:"Betty Carter",tag:"td"},{content:m("February 21, 2019"),tag:"td"}]},{cells:[{content:"5.0",tag:"td"},{content:"Bebo Valdés",tag:"td"},{content:m("December 6, 2018"),tag:"td"}]}]},viewportWidth:450},transforms:Rpn,edit:Spn,save:Cpn,deprecated:hpn},Tpn=()=>it({name:w5e,metadata:tF,settings:_5e}),Epn=Object.freeze(Object.defineProperty({__proto__:null,init:Tpn,metadata:tF,name:w5e,settings:_5e},Symbol.toStringTag,{value:"Module"})),nre="wp-block-table-of-contents__entry";function h5({nestedHeadingList:e,disableLinkActivation:t,onClick:n}){return a.jsx(a.Fragment,{children:e.map((o,r)=>{const{content:s,link:i}=o.heading,c=i?a.jsx("a",{className:nre,href:i,"aria-disabled":t||void 0,onClick:t&&typeof n=="function"?n:void 0,children:s}):a.jsx("span",{className:nre,children:s});return a.jsxs("li",{children:[c,o.children?a.jsx("ol",{children:a.jsx(h5,{nestedHeadingList:o.children,disableLinkActivation:t,onClick:t&&typeof n=="function"?n:void 0})}):null]},r)})})}function nF(e){const t=[];return e.forEach((n,o)=>{if(n.content!==""&&n.level===e[0].level)if(e[o+1]?.level>n.level){let r=e.length;for(let s=o+1;s<e.length;s++)if(e[s].level===n.level){r=s;break}t.push({heading:n,children:nF(e.slice(o+1,r))})}else t.push({heading:n,children:null})}),t}function Wpn(e,t){var n,o;const{getBlockAttributes:r,getBlockName:s,getClientIdsWithDescendants:i,getBlocksByName:c}=e(Q),l=(n=e("core/editor").getPermalink())!==null&&n!==void 0?n:null,u=c("core/nextpage").length!==0,{onlyIncludeCurrentPage:d}=(o=r(t))!==null&&o!==void 0?o:{},p=i();let f=1;if(u&&d){const z=p.indexOf(t);for(const[A,_]of p.entries()){if(A>=z)break;s(_)==="core/nextpage"&&f++}}const b=[];let h=1,g=null;typeof l=="string"&&(g=u?tn(l,{page:h}):l);for(const z of p){const A=s(z);if(A==="core/nextpage"){if(h++,d&&h>f)break;typeof l=="string"&&(g=tn(q4(l,["page"]),{page:h}))}else if((!d||h===f)&&A==="core/heading"){const _=r(z),v=typeof g=="string"&&typeof _.anchor=="string"&&_.anchor!=="";b.push({content:v1(_.content.replace(/(<br *\/?>)+/g," ")),level:_.level,link:v?`${g}#${_.anchor}`:null})}}return b}function Npn(e,t,n){const{getBlockAttributes:o}=e(Q),{updateBlockAttributes:r,__unstableMarkNextChangeAsNotPersistent:s}=t(Q),i=o(n);if(i===null)return;const c=Wpn(e,n);N0(c,i.headings)||(s(),r(n,{headings:c}))}function Bpn(e){const t=Fn();x.useEffect(()=>t.subscribe(()=>Npn(t.select,t.dispatch,e)),[t,e])}function k5e({attributes:{headings:e=[],onlyIncludeCurrentPage:t},clientId:n,setAttributes:o}){Bpn(n);const r=Be(),s=vt(k5e,"table-of-contents"),{createWarningNotice:i}=Oe(mt),c=h=>{h.preventDefault(),i(m("Links are disabled in the editor."),{id:`block-library/core/table-of-contents/redirection-prevented/${s}`,type:"snackbar"})},l=G(h=>{const{getBlockRootClientId:g,canInsertBlockType:z}=h(Q),A=g(n);return z("core/list",A)},[n]),{replaceBlocks:u}=Oe(Q),d=Qo(),p=nF(e),f=l&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>u(n,Ee("core/list",{ordered:!0,values:M1(a.jsx(h5,{nestedHeadingList:p}))})),children:m("Convert to static list")})})}),b=a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{o({onlyIncludeCurrentPage:!1})},dropdownMenuProps:d,children:a.jsx(tt,{hasValue:()=>!!t,label:m("Only include current page"),onDeselect:()=>o({onlyIncludeCurrentPage:!1}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Only include current page"),checked:t,onChange:h=>o({onlyIncludeCurrentPage:h}),help:m(t?"Only including headings from the current page (if the post is paginated).":"Include headings from all pages (if the post is paginated).")})})})});return e.length===0?a.jsxs(a.Fragment,{children:[a.jsx("div",{...r,children:a.jsx(vo,{icon:a.jsx(Zn,{icon:Vde}),label:m("Table of Contents"),instructions:m("Start adding Heading blocks to create a table of contents. Headings with HTML anchors will be linked here.")})}),b]}):a.jsxs(a.Fragment,{children:[a.jsx("nav",{...r,children:a.jsx("ol",{children:a.jsx(h5,{nestedHeadingList:p,disableLinkActivation:!0,onClick:c})})}),f,b]})}function Lpn({attributes:{headings:e=[]}}){return e.length===0?null:a.jsx("nav",{...Be.save(),children:a.jsx("ol",{children:a.jsx(h5,{nestedHeadingList:nF(e)})})})}const oF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/table-of-contents",title:"Table of Contents",category:"design",description:"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here.",keywords:["document outline","summary"],textdomain:"default",attributes:{headings:{type:"array",items:{type:"object"},default:[]},onlyIncludeCurrentPage:{type:"boolean",default:!1}},supports:{html:!1,color:{text:!0,background:!0,gradients:!0,link:!0},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-table-of-contents"},{name:S5e}=oF,C5e={icon:Vde,edit:k5e,save:Lpn,example:{innerBlocks:[{name:"core/heading",attributes:{level:2,content:m("Heading")}},{name:"core/heading",attributes:{level:3,content:m("Subheading")}},{name:"core/heading",attributes:{level:2,content:m("Heading")}},{name:"core/heading",attributes:{level:3,content:m("Subheading")}}],attributes:{headings:[{content:m("Heading"),level:2},{content:m("Subheading"),level:3},{content:m("Heading"),level:2},{content:m("Subheading"),level:3}]}}},Ppn=()=>it({name:S5e,metadata:oF,settings:C5e}),jpn=Object.freeze(Object.defineProperty({__proto__:null,init:Ppn,metadata:oF,name:S5e,settings:C5e},Symbol.toStringTag,{value:"Module"})),Ipn={from:[{type:"block",blocks:["core/categories"],transform:()=>Ee("core/tag-cloud")}],to:[{type:"block",blocks:["core/categories"],transform:()=>Ee("core/categories")}]},Dpn=1,Fpn=100,ore=.1,rre=100;function $pn({attributes:e,setAttributes:t}){const{taxonomy:n,showTagCounts:o,numberOfTags:r,smallestFontSize:s,largestFontSize:i}=e,[c]=Un("spacing.units"),l=Qo(),u=U1({availableUnits:c?[...c,"pt"]:["%","px","em","rem","pt"]}),d=G(g=>g(Me).getTaxonomies({per_page:-1}),[]),p=()=>{const g={label:m("- Select -"),value:"",disabled:!0},z=(d??[]).filter(A=>!!A.show_cloud).map(A=>({value:A.slug,label:A.name}));return[g,...z]},f=(g,z)=>{const[A,_]=yo(z);if(!Number.isFinite(A))return;const v={[g]:z};Object.entries({smallestFontSize:s,largestFontSize:i}).forEach(([M,y])=>{const[k,S]=yo(y);M!==g&&S!==_&&(v[M]=`${k}${_}`)}),t(v)},b={...e,style:{...e?.style,border:void 0}},h=a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({taxonomy:"post_tag",showTagCounts:!1,numberOfTags:45,smallestFontSize:"8pt",largestFontSize:"22pt"})},dropdownMenuProps:l,children:[a.jsx(tt,{hasValue:()=>n!=="post_tag",label:m("Taxonomy"),onDeselect:()=>t({taxonomy:"post_tag"}),isShownByDefault:!0,children:a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Taxonomy"),options:p(),value:n,onChange:g=>t({taxonomy:g})})}),a.jsx(tt,{hasValue:()=>s!=="8pt"||i!=="22pt",label:m("Font size"),onDeselect:()=>t({smallestFontSize:"8pt",largestFontSize:"22pt"}),isShownByDefault:!0,children:a.jsxs(Yo,{gap:4,children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{label:m("Smallest size"),value:s,onChange:g=>{f("smallestFontSize",g)},units:u,min:ore,max:rre,size:"__unstable-large"})}),a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{label:m("Largest size"),value:i,onChange:g=>{f("largestFontSize",g)},units:u,min:ore,max:rre,size:"__unstable-large"})})]})}),a.jsx(tt,{hasValue:()=>r!==45,label:m("Number of tags"),onDeselect:()=>t({numberOfTags:45}),isShownByDefault:!0,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of tags"),value:r,onChange:g=>t({numberOfTags:g}),min:Dpn,max:Fpn,required:!0})}),a.jsx(tt,{hasValue:()=>o!==!1,label:m("Show tag counts"),onDeselect:()=>t({showTagCounts:!1}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show tag counts"),checked:o,onChange:()=>t({showTagCounts:!o})})})]})});return a.jsxs(a.Fragment,{children:[h,a.jsx("div",{...Be(),children:a.jsx(I1,{children:a.jsx(FO,{skipBlockSupportAttributes:!0,block:"core/tag-cloud",attributes:b})})})]})}const rF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/tag-cloud",title:"Tag Cloud",category:"widgets",description:"A cloud of popular keywords, each sized by how often it appears.",textdomain:"default",attributes:{numberOfTags:{type:"number",default:45,minimum:1,maximum:100},taxonomy:{type:"string",default:"post_tag"},showTagCounts:{type:"boolean",default:!1},smallestFontSize:{type:"string",default:"8pt"},largestFontSize:{type:"string",default:"22pt"}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"outline",label:"Outline"}],supports:{html:!1,align:!0,spacing:{margin:!0,padding:!0},typography:{lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-tag-cloud-editor"},{name:q5e}=rF,R5e={icon:GP,example:{},edit:$pn,transforms:Ipn},Vpn=()=>it({name:q5e,metadata:rF,settings:R5e}),Hpn=Object.freeze(Object.defineProperty({__proto__:null,init:Vpn,metadata:rF,name:q5e,settings:R5e},Symbol.toStringTag,{value:"Module"}));function sF(e,t){const{templateParts:n,isResolving:o}=G(s=>{const{getEntityRecords:i,isResolving:c}=s(Me),l={per_page:-1};return{templateParts:i("postType","wp_template_part",l),isResolving:c("getEntityRecords",["postType","wp_template_part",l])}},[]);return{templateParts:x.useMemo(()=>n?n.filter(s=>yk(s.theme,s.slug)!==t&&(!e||e==="uncategorized"||s.area===e))||[]:[],[n,e,t]),isResolving:o}}function iF(e,t){return G(n=>{const o=e?`core/template-part/${e}`:"core/template-part",{getBlockRootClientId:r,getPatternsByBlockTypes:s}=n(Q),i=r(t);return s(o,i)},[e,t])}function T5e(e,t){const{saveEntityRecord:n}=Oe(Me);return async(o=[],r=m("Untitled Template Part"))=>{const s=Ti(r).replace(/[^\w-]+/g,"")||"wp-custom-part",i={title:r,slug:s,content:Ks(o),area:e},c=await n("postType","wp_template_part",i);t({slug:c.slug,theme:c.theme,area:void 0})}}function E5e(e){return G(t=>{var n;const o=t(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[],r=o.find(i=>i.area===e),s=o.find(i=>i.area==="uncategorized");return{icon:r?.icon||s?.icon,label:r?.label||m("Template Part"),tagName:(n=r?.area_tag)!==null&&n!==void 0?n:"div"}},[e])}function Upn({areaLabel:e,onClose:t,onSubmit:n}){const[o,r]=x.useState(""),s=i=>{i.preventDefault(),n(o)};return a.jsx(Zo,{title:xe(m("Create new %s"),e.toLowerCase()),onRequestClose:t,focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{onSubmit:s,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{label:m("Name"),value:o,onChange:r,placeholder:m("Custom Template Part"),__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t(),r("")},children:m("Cancel")}),a.jsx(Ce,{variant:"primary",type:"submit",accessibleWhenDisabled:!0,disabled:!o.length,__next40pxDefaultSize:!0,children:m("Create")})]})]})})})}function Xpn({area:e,clientId:t,templatePartId:n,onOpenSelectionModal:o,setAttributes:r}){const{templateParts:s,isResolving:i}=sF(e,n),c=iF(e,t),{isBlockBasedTheme:l,canCreateTemplatePart:u}=G(h=>{const{getCurrentTheme:g,canUser:z}=h(Me);return{isBlockBasedTheme:g()?.is_block_theme,canCreateTemplatePart:z("create",{kind:"postType",name:"wp_template_part"})}},[]),[d,p]=x.useState(!1),f=E5e(e),b=T5e(e,r);return a.jsxs(vo,{icon:f.icon,label:f.label,instructions:xe(m(l?"Choose an existing %s or create a new one.":"Choose an existing %s."),f.label.toLowerCase()),children:[i&&a.jsx(Xn,{}),!i&&!!(s.length||c.length)&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:o,children:m("Choose")}),!i&&l&&u&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>{p(!0)},children:m("Start blank")}),d&&a.jsx(Upn,{areaLabel:f.label,onClose:()=>p(!1),onSubmit:h=>{b([],h)}})]})}function Gpn(e){return{name:yk(e.theme,e.slug),title:e.title.rendered,blocks:Ko(e.content.raw),templatePart:e}}function Kpn({setAttributes:e,onClose:t,templatePartId:n=null,area:o,clientId:r}){const[s,i]=x.useState(""),{templateParts:c}=sF(o,n),l=x.useMemo(()=>{const g=c.map(z=>Gpn(z));return vN(g,s)},[c,s]),u=iF(o,r),d=x.useMemo(()=>vN(u,s),[u,s]),{createSuccessNotice:p}=Oe(mt),f=g=>{e({slug:g.slug,theme:g.theme,area:void 0}),p(xe(m('Template Part "%s" inserted.'),g.title?.rendered||g.slug),{type:"snackbar"}),t()},b=!!l.length,h=!!d.length;return a.jsxs("div",{className:"block-library-template-part__selection-content",children:[a.jsx("div",{className:"block-library-template-part__selection-search",children:a.jsx(iu,{__nextHasNoMarginBottom:!0,onChange:i,value:s,label:m("Search"),placeholder:m("Search")})}),b&&a.jsxs("div",{children:[a.jsx("h2",{children:m("Existing template parts")}),a.jsx(qa,{blockPatterns:l,onClickPattern:g=>{f(g.templatePart)}})]}),!b&&!h&&a.jsx(Ot,{alignment:"center",children:a.jsx("p",{children:m("No results found.")})})]})}function Ypn(e){if(e.id_base!=="block"){let o;return e._embedded.about[0].is_multi?o={idBase:e.id_base,instance:e.instance}:o={id:e.id},W5e(Ee("core/legacy-widget",o))}const t=Ko(e.instance.raw.content,{__unstableSkipAutop:!0});if(!t.length)return;const n=t[0];return n.name==="core/widget-group"?Ee(iie(),void 0,_N(n.innerBlocks)):n.innerBlocks.length>0?jo(n,void 0,_N(n.innerBlocks)):n}function W5e(e){const t=Aie([e]).filter(n=>{if(!n.transforms)return!0;const o=n.transforms?.from?.find(s=>s.blocks&&s.blocks.includes("*")),r=n.transforms?.to?.find(s=>s.blocks&&s.blocks.includes("*"));return!o&&!r});if(t.length)return Kr(e,t[0].name)}function _N(e=[]){return e.flatMap(t=>t.name==="core/legacy-widget"?W5e(t):Ee(t.name,t.attributes,_N(t.innerBlocks))).filter(t=>!!t)}const sre={per_page:-1,_fields:"id,name,description,status,widgets"};function Zpn({area:e,setAttributes:t}){const[n,o]=x.useState(""),[r,s]=x.useState(!1),i=Fn(),{sidebars:c,hasResolved:l}=G(b=>{const{getSidebars:h,hasFinishedResolution:g}=b(Me);return{sidebars:h(sre),hasResolved:g("getSidebars",[sre])}},[]),{createErrorNotice:u}=Oe(mt),d=T5e(e,t),p=x.useMemo(()=>{const b=(c??[]).filter(h=>h.id!=="wp_inactive_widgets"&&h.widgets.length>0).map(h=>({value:h.id,label:h.name}));return b.length?[{value:"",label:m("Select widget area")},...b]:[]},[c]);if(!l)return a.jsx(t1,{marginBottom:"0"});if(l&&!p.length)return null;async function f(b){if(b.preventDefault(),r||!n)return;s(!0);const h=p.find(({value:v})=>v===n),{getWidgets:g}=i.resolveSelect(Me),z=await g({sidebar:h.value,_embed:"about"}),A=new Set,_=z.flatMap(v=>{const M=Ypn(v);return M||(A.add(v.id_base),[])});await d(_,xe(m("Widget area: %s"),h.label)),A.size&&u(xe(m("Unable to import the following widgets: %s."),Array.from(A).join(", ")),{type:"snackbar"}),s(!1)}return a.jsx(t1,{marginBottom:"4",children:a.jsxs(Ot,{as:"form",onSubmit:f,children:[a.jsx(tu,{children:a.jsx(jn,{label:m("Import widget area"),value:n,options:p,onChange:b=>o(b),disabled:!p.length,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0})}),a.jsx(Tn,{style:{marginBottom:"8px",marginTop:"auto"},children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",isBusy:r,"aria-disabled":r||!n,children:We("Import","button label")})})]})})}const Qpn={header:m("The <header> element should represent introductory content, typically a group of introductory or navigational aids."),main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),article:m("The <article> element should represent a self-contained, syndicatable portion of the document."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content."),footer:m("The <footer> element should represent a footer for its nearest sectioning element (e.g.: <section>, <article>, <main> etc.).")};function Jpn({tagName:e,setAttributes:t,isEntityAvailable:n,templatePartId:o,defaultWrapper:r,hasInnerBlocks:s}){const[i,c]=Ao("postType","wp_template_part","area",o),[l,u]=Ao("postType","wp_template_part","title",o),p=G(f=>f(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[],[]).map(({label:f,area:b})=>({label:f,value:b}));return a.jsxs(a.Fragment,{children:[n&&a.jsxs(a.Fragment,{children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Title"),value:l,onChange:f=>{u(f)},onFocus:f=>f.target.select()}),a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Area"),labelPosition:"top",options:p,value:i,onChange:c})]}),a.jsx(jn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:xe(m("Default based on area (%s)"),`<${r}>`),value:""},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"},{label:"<div>",value:"div"}],value:e||"",onChange:f=>t({tagName:f}),help:Qpn[e]}),!s&&a.jsx(Zpn,{area:i,setAttributes:t})]})}function efn(e){if(Jr()==="contentOnly")return!1;if(!e)return Ht.ButtonBlockAppender}function N5e(e){const t=G(o=>{const{getSettings:r}=o(Q);return r()?.supportsLayout},[]),[n]=Un("layout");if(t)return e?.inherit?n||{}:e}function tfn({postId:e,layout:t,tagName:n,blockProps:o}){Jr("disabled");const{content:r,editedBlocks:s}=G(l=>{if(!e)return{};const{getEditedEntityRecord:u}=l(Me),d=u("postType","wp_template_part",e,{context:"view"});return{editedBlocks:d.blocks,content:d.content}},[e]),i=x.useMemo(()=>{if(e)return s||(!r||typeof r!="string"?[]:Ko(r))},[e,s,r]),c=Nt(o,{value:i,onInput:()=>{},onChange:()=>{},renderAppender:!1,layout:N5e(t)});return a.jsx(n,{...c})}function nfn({postId:e,hasInnerBlocks:t,layout:n,tagName:o,blockProps:r}){const s=G(f=>f(Q).getSettings().onNavigateToEntityRecord,[]),[i,c,l]=Ni("postType","wp_template_part",{id:e}),u=Nt(r,{value:i,onInput:c,onChange:l,renderAppender:efn(t),layout:N5e(n)}),p=Jr()==="contentOnly"&&s?{onDoubleClick:()=>s({postId:e,postType:"wp_template_part"})}:{};return a.jsx(o,{...u,...p})}function ofn({postId:e,hasInnerBlocks:t,layout:n,tagName:o,blockProps:r}){const{canViewTemplatePart:s,canEditTemplatePart:i}=G(l=>({canViewTemplatePart:!!l(Me).canUser("read",{kind:"postType",name:"wp_template_part",id:e}),canEditTemplatePart:!!l(Me).canUser("update",{kind:"postType",name:"wp_template_part",id:e})}),[e]);if(!s)return null;const c=i?nfn:tfn;return a.jsx(c,{postId:e,hasInnerBlocks:t,layout:n,tagName:o,blockProps:r})}function rfn({isEntityAvailable:e,area:t,templatePartId:n,isTemplatePartSelectionOpen:o,setIsTemplatePartSelectionOpen:r}){const{templateParts:s}=sF(t,n),i=!!s.length;return e&&i&&(t==="header"||t==="footer")?a.jsx(Ct,{onClick:()=>{r(!0)},"aria-expanded":o,"aria-haspopup":"dialog",children:m("Replace")}):null}function sfn({area:e,clientId:t,isEntityAvailable:n,onSelect:o}){const r=iF(e,t);return n&&!!r.length&&(e==="header"||e==="footer")?a.jsx(Qt,{title:m("Design"),children:a.jsx(qa,{label:m("Templates"),blockPatterns:r,onClickPattern:o,showTitlesAsTooltip:!0})}):null}function ifn({attributes:e,setAttributes:t,clientId:n}){const{createSuccessNotice:o}=Oe(mt),{editEntityRecord:r}=Oe(Me),s=G(E=>E(Me).getCurrentTheme()?.stylesheet,[]),{slug:i,theme:c=s,tagName:l,layout:u={}}=e,d=yk(c,i),p=ok(d),[f,b]=x.useState(!1),{isResolved:h,hasInnerBlocks:g,isMissing:z,area:A,onNavigateToEntityRecord:_,title:v,canUserEdit:M}=G(E=>{const{getEditedEntityRecord:B,hasFinishedResolution:N}=E(Me),{getBlockCount:j,getSettings:I}=E(Q),P=["postType","wp_template_part",d],$=d?B(...P):null,F=$?.area||e.area,X=d?N("getEditedEntityRecord",P):!1,Z=X?E(Me).canUser("update",{kind:"postType",name:"wp_template_part",id:d}):!1;return{hasInnerBlocks:j(n)>0,isResolved:X,isMissing:X&&(!$||Object.keys($).length===0),area:F,onNavigateToEntityRecord:I().onNavigateToEntityRecord,title:$?.title,canUserEdit:!!Z}},[d,e.area,n]),y=E5e(A),k=Be(),S=!i,C=!S&&!z&&h,R=l||y.tagName,T=async E=>{await r("postType","wp_template_part",d,{blocks:E.blocks,content:Ks(E.blocks)}),o(xe(m('Template Part "%s" updated.'),v||i),{type:"snackbar"})};return!g&&(i&&!c||i&&z)?a.jsx(R,{...k,children:a.jsx(Er,{children:xe(m("Template part has been deleted or is unavailable: %s"),i)})}):C&&p?a.jsx(R,{...k,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})}):a.jsxs(a.Fragment,{children:[a.jsxs(TO,{uniqueId:d,children:[C&&_&&M&&a.jsx(bt,{group:"other",children:a.jsx(Vt,{onClick:()=>_({postId:d,postType:"wp_template_part"}),children:m("Edit")})}),M&&a.jsx(et,{group:"advanced",children:a.jsx(Jpn,{tagName:l,setAttributes:t,isEntityAvailable:C,templatePartId:d,defaultWrapper:y.tagName,hasInnerBlocks:g})}),S&&a.jsx(R,{...k,children:a.jsx(Xpn,{area:e.area,templatePartId:d,clientId:n,setAttributes:t,onOpenSelectionModal:()=>b(!0)})}),a.jsx(cb,{children:({selectedClientIds:E})=>E.length===1&&n===E[0]?a.jsx(rfn,{isEntityAvailable:C,area:A,clientId:n,templatePartId:d,isTemplatePartSelectionOpen:f,setIsTemplatePartSelectionOpen:b}):null}),a.jsx(et,{children:a.jsx(sfn,{area:A,clientId:n,isEntityAvailable:C,onSelect:E=>T(E)})}),C&&a.jsx(ofn,{tagName:R,blockProps:k,postId:d,hasInnerBlocks:g,layout:u}),!S&&!h&&a.jsx(R,{...k,children:a.jsx(Xn,{})})]}),f&&a.jsx(Zo,{overlayClassName:"block-editor-template-part__selection-modal",title:xe(m("Choose a %s"),y.label.toLowerCase()),onRequestClose:()=>b(!1),isFullScreen:!0,children:a.jsx(Kpn,{templatePartId:d,clientId:n,area:A,setAttributes:t,onClose:()=>b(!1)})})]})}function afn(e,t){if(t!=="core/template-part")return e;if(e.variations){const n=(r,s)=>{const{area:i,theme:c,slug:l}=r;if(i)return i===s.area;if(!l)return!1;const{getCurrentTheme:u,getEntityRecord:d}=uo(Me),p=d("postType","wp_template_part",`${c||u()?.stylesheet}//${l}`);return p?.slug?p.slug===s.slug:p?.area===s.area},o=e.variations.map(r=>({...r,...!r.isActive&&{isActive:n},...typeof r.icon=="string"&&{icon:h4e(r.icon)}}));return{...e,variations:o}}return e}const aF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/template-part",title:"Template Part",category:"theme",description:"Edit the different global regions of your site, like the header, footer, sidebar, or create your own.",textdomain:"default",attributes:{slug:{type:"string"},theme:{type:"string"},tagName:{type:"string"},area:{type:"string"}},supports:{align:!0,html:!1,reusable:!1,renaming:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-template-part-editor"},{name:B5e}=aF,L5e={icon:Qf,__experimentalLabel:({slug:e,theme:t})=>{if(!e)return;const{getCurrentTheme:n,getEditedEntityRecord:o}=uo(Me),r=o("postType","wp_template_part",(t||n()?.stylesheet)+"//"+e);if(r)return Lt(r.title)||Lre(r.slug||"")},edit:ifn},cfn=()=>{Bn("blocks.registerBlockType","core/template-part",afn);const e=["core/post-template","core/post-content"];return Bn("blockEditor.__unstableCanInsertBlockType","core/block-library/removeTemplatePartsFromPostTemplates",(t,n,o,{getBlock:r,getBlockParentsByBlockName:s})=>{if(n.name!=="core/template-part")return t;for(const i of e)if(r(o)?.name===i||s(o,i).length)return!1;return!0}),it({name:B5e,metadata:aF,settings:L5e})},lfn=Object.freeze(Object.defineProperty({__proto__:null,init:cfn,metadata:aF,name:B5e,settings:L5e},Symbol.toStringTag,{value:"Module"}));function ufn({attributes:e,setAttributes:t,mergedStyle:n}){const{textAlign:o}=e,r=Be({className:oe({[`has-text-align-${o}`]:o}),style:n});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:s=>{t({textAlign:s})}})}),a.jsx("div",{...r,children:a.jsx("div",{className:"wp-block-term-description__placeholder",children:a.jsx("span",{children:m("Term Description")})})})]})}const cF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/term-description",title:"Term Description",category:"theme",description:"Display the description of categories, tags and custom taxonomies when viewing an archive.",textdomain:"default",attributes:{textAlign:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}}},{name:P5e}=cF,j5e={icon:QQe,edit:ufn,example:{}},dfn=()=>it({name:P5e,metadata:cF,settings:j5e}),pfn=Object.freeze(Object.defineProperty({__proto__:null,init:dfn,metadata:cF,name:P5e,settings:j5e},Symbol.toStringTag,{value:"Module"}));function ffn({attributes:e,setAttributes:t}){const{width:n,content:o,columns:r}=e;return Ke("The Text Columns block",{since:"5.3",alternative:"the Columns block"}),a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(yvt,{value:n,onChange:s=>t({width:s}),controls:["center","wide","full"]})}),a.jsx(et,{children:a.jsx(Qt,{children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:r,onChange:s=>t({columns:s}),min:2,max:4,required:!0})})}),a.jsx("div",{...Be({className:`align${n} columns-${r}`}),children:Array.from({length:r}).map((s,i)=>a.jsx("div",{className:"wp-block-column",children:a.jsx(Ie,{tagName:"p",value:o?.[i]?.children,onChange:c=>{t({content:[...o.slice(0,i),{children:c},...o.slice(i+1)]})},"aria-label":xe(m("Column %d text"),i+1),placeholder:m("New Column")})},`column-${i}`))})]})}function bfn({attributes:e}){const{width:t,content:n,columns:o}=e;return a.jsx("div",{...Be.save({className:`align${t} columns-${o}`}),children:Array.from({length:o}).map((r,s)=>a.jsx("div",{className:"wp-block-column",children:a.jsx(Ie.Content,{tagName:"p",value:n?.[s]?.children})},`column-${s}`))})}const hfn={to:[{type:"block",blocks:["core/columns"],transform:({className:e,columns:t,content:n,width:o})=>Ee("core/columns",{align:o==="wide"||o==="full"?o:void 0,className:e,columns:t},n.map(({children:r})=>Ee("core/column",{},[Ee("core/paragraph",{content:r})])))}]},lF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/text-columns",title:"Text Columns (deprecated)",icon:"columns",category:"design",description:"This block is deprecated. Please use the Columns block instead.",textdomain:"default",attributes:{content:{type:"array",source:"query",selector:"p",query:{children:{type:"string",source:"html"}},default:[{},{}]},columns:{type:"number",default:2},width:{type:"string"}},supports:{inserter:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-text-columns-editor",style:"wp-block-text-columns"},{name:I5e}=lF,D5e={transforms:hfn,getEditWrapperProps(e){const{width:t}=e;if(t==="wide"||t==="full")return{"data-align":t}},edit:ffn,save:bfn},mfn=()=>it({name:I5e,metadata:lF,settings:D5e}),gfn=Object.freeze(Object.defineProperty({__proto__:null,init:mfn,metadata:lF,name:I5e,settings:D5e},Symbol.toStringTag,{value:"Module"})),Mfn={attributes:{content:{type:"string",source:"html",selector:"pre",default:""},textAlign:{type:"string"}},save({attributes:e}){const{textAlign:t,content:n}=e;return a.jsx(Ie.Content,{tagName:"pre",style:{textAlign:t},value:n})}},zfn={attributes:{content:{type:"string",source:"html",selector:"pre",default:"",__unstablePreserveWhiteSpace:!0,role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,color:{gradients:!0,link:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},spacing:{padding:!0}},save({attributes:e}){const{textAlign:t,content:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsx("pre",{...Be.save({className:o}),children:a.jsx(Ie.Content,{value:n})})},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Ofn=[zfn,Mfn];function yfn({attributes:e,setAttributes:t,mergeBlocks:n,onRemove:o,insertBlocksAfter:r,style:s}){const{textAlign:i,content:c}=e,l=Be({className:oe({[`has-text-align-${i}`]:i}),style:s});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:i,onChange:u=>{t({textAlign:u})}})}),a.jsx(Ie,{tagName:"pre",identifier:"content",preserveWhiteSpace:!0,value:c,onChange:u=>{t({content:u})},"aria-label":m("Verse text"),placeholder:m("Write verse…"),onRemove:o,onMerge:n,textAlign:i,...l,__unstablePastePlainText:!0,__unstableOnSplitAtDoubleLineEnd:()=>r(Ee(Mr()))})]})}function Afn({attributes:e}){const{textAlign:t,content:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsx("pre",{...Be.save({className:o}),children:a.jsx(Ie.Content,{value:n})})}const vfn={from:[{type:"block",blocks:["core/paragraph"],transform:e=>Ee("core/verse",e)}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>Ee("core/paragraph",e)}]},uF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/verse",title:"Verse",category:"text",description:"Insert poetry. Use special spacing formats. Or quote song lyrics.",keywords:["poetry","poem"],textdomain:"default",attributes:{content:{type:"rich-text",source:"rich-text",selector:"pre",__unstablePreserveWhiteSpace:!0,role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},dimensions:{minHeight:!0,__experimentalDefaultControls:{minHeight:!1}},typography:{fontSize:!0,__experimentalFontFamily:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__experimentalBorder:{radius:!0,width:!0,color:!0,style:!0},interactivity:{clientNavigation:!0}},style:"wp-block-verse",editorStyle:"wp-block-verse-editor"},{name:F5e}=uF,$5e={icon:$w,example:{attributes:{content:m(`WHAT was he doing, the great god Pan, +`+t.content}}},Wan=()=>it({name:gxe,metadata:CD,settings:Mxe}),Nan=Object.freeze(Object.defineProperty({__proto__:null,init:Wan,metadata:CD,name:gxe,settings:Mxe},Symbol.toStringTag,{value:"Module"})),Wh="is-style-solid-color",VO={value:{type:"string",source:"html",selector:"blockquote",multiline:"p"},citation:{type:"string",source:"html",selector:"cite",default:""},mainColor:{type:"string"},customMainColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}};function _oe(e){if(!e)return;const t=e.match(/border-color:([^;]+)[;]?/);if(t&&t[1])return t[1]}function Nf(e){e=e||"<p></p>";const n=`</p>${e}<p>`.split("</p><p>");return n.shift(),n.pop(),n.join("<br>")}const Ban={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",role:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",role:"content"},textAlign:{type:"string"}},save({attributes:e}){const{textAlign:t,citation:n,value:o}=e,r=!Ie.isEmpty(n);return a.jsx("figure",{...Be.save({className:oe({[`has-text-align-${t}`]:t})}),children:a.jsxs("blockquote",{children:[a.jsx(Ie.Content,{value:o,multiline:!0}),r&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})})},migrate({value:e,...t}){return{value:Nf(e),...t}}},Lan={attributes:{...VO},save({attributes:e}){const{mainColor:t,customMainColor:n,customTextColor:o,textColor:r,value:s,citation:i,className:c}=e,l=c?.includes(Wh);let u,d;if(l){const h=Pt("background-color",t);u=oe({"has-background":h||n,[h]:h}),d={backgroundColor:h?void 0:n}}else n&&(d={borderColor:n});const p=Pt("color",r),f=oe({"has-text-color":r||o,[p]:p}),b=p?void 0:{color:o};return a.jsx("figure",{...Be.save({className:u,style:d}),children:a.jsxs("blockquote",{className:f,style:b,children:[a.jsx(Ie.Content,{value:s,multiline:!0}),!Ie.isEmpty(i)&&a.jsx(Ie.Content,{tagName:"cite",value:i})]})})},migrate({value:e,className:t,mainColor:n,customMainColor:o,customTextColor:r,...s}){const i=t?.includes(Wh);let c;return o&&(i?c={color:{background:o}}:c={border:{color:o}}),r&&c&&(c.color={...c.color,text:r}),{value:Nf(e),className:t,backgroundColor:i?n:void 0,borderColor:i?void 0:n,textAlign:i?"left":void 0,style:c,...s}}},Pan={attributes:{...VO,figureStyle:{source:"attribute",selector:"figure",attribute:"style"}},save({attributes:e}){const{mainColor:t,customMainColor:n,textColor:o,customTextColor:r,value:s,citation:i,className:c,figureStyle:l}=e,u=c?.includes(Wh);let d,p;if(u){const g=Pt("background-color",t);d=oe({"has-background":g||n,[g]:g}),p={backgroundColor:g?void 0:n}}else n?p={borderColor:n}:t&&(p={borderColor:_oe(l)});const f=Pt("color",o),b=(o||r)&&oe("has-text-color",{[f]:f}),h=f?void 0:{color:r};return a.jsx("figure",{className:d,style:p,children:a.jsxs("blockquote",{className:b,style:h,children:[a.jsx(Ie.Content,{value:s,multiline:!0}),!Ie.isEmpty(i)&&a.jsx(Ie.Content,{tagName:"cite",value:i})]})})},migrate({value:e,className:t,figureStyle:n,mainColor:o,customMainColor:r,customTextColor:s,...i}){const c=t?.includes(Wh);let l;if(r&&(c?l={color:{background:r}}:l={border:{color:r}}),s&&l&&(l.color={...l.color,text:s}),!c&&o&&n){const u=_oe(n);if(u)return{value:Nf(e),...i,className:t,style:{border:{color:u}}}}return{value:Nf(e),className:t,backgroundColor:c?o:void 0,borderColor:c?void 0:o,textAlign:c?"left":void 0,style:l,...i}}},jan={attributes:VO,save({attributes:e}){const{mainColor:t,customMainColor:n,textColor:o,customTextColor:r,value:s,citation:i,className:c}=e,l=c?.includes(Wh);let u,d;if(l)u=Pt("background-color",t),u||(d={backgroundColor:n});else if(n)d={borderColor:n};else if(t){var p;const g=(p=uo(Q).getSettings().colors)!==null&&p!==void 0?p:[];d={borderColor:Sf(g,t).color}}const f=Pt("color",o),b=o||r?oe("has-text-color",{[f]:f}):void 0,h=f?void 0:{color:r};return a.jsx("figure",{className:u,style:d,children:a.jsxs("blockquote",{className:b,style:h,children:[a.jsx(Ie.Content,{value:s,multiline:!0}),!Ie.isEmpty(i)&&a.jsx(Ie.Content,{tagName:"cite",value:i})]})})},migrate({value:e,className:t,mainColor:n,customMainColor:o,customTextColor:r,...s}){const i=t?.includes(Wh);let c={};return o&&(i?c={color:{background:o}}:c={border:{color:o}}),r&&c&&(c.color={...c.color,text:r}),{value:Nf(e),className:t,backgroundColor:i?n:void 0,borderColor:i?void 0:n,textAlign:i?"left":void 0,style:c,...s}}},Ian={attributes:{...VO},save({attributes:e}){const{value:t,citation:n}=e;return a.jsxs("blockquote",{children:[a.jsx(Ie.Content,{value:t,multiline:!0}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})},migrate({value:e,...t}){return{value:Nf(e),...t}}},Dan={attributes:{...VO,citation:{type:"string",source:"html",selector:"footer"},align:{type:"string",default:"none"}},save({attributes:e}){const{value:t,citation:n,align:o}=e;return a.jsxs("blockquote",{className:`align${o}`,children:[a.jsx(Ie.Content,{value:t,multiline:!0}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"footer",value:n})]})},migrate({value:e,...t}){return{value:Nf(e),...t}}},Fan=[Ban,Lan,Pan,jan,Ian,Dan],$an="figure",Van="blockquote";function Han({attributes:e,setAttributes:t,isSelected:n,insertBlocksAfter:o}){const{textAlign:r,citation:s,value:i}=e,c=Be({className:oe({[`has-text-align-${r}`]:r})}),l=!Ie.isEmpty(s)||n;return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:r,onChange:u=>{t({textAlign:u})}})}),a.jsx($an,{...c,children:a.jsxs(Van,{children:[a.jsx(Ie,{identifier:"value",tagName:"p",value:i,onChange:u=>t({value:u}),"aria-label":m("Pullquote text"),placeholder:m("Add quote"),textAlign:"center"}),l&&a.jsx(Ie,{identifier:"citation",tagName:"cite",style:{display:"block"},value:s,"aria-label":m("Pullquote citation text"),placeholder:m("Add citation"),onChange:u=>t({citation:u}),className:"wp-block-pullquote__citation",__unstableMobileNoFocusOnMount:!0,textAlign:"center",__unstableOnSplitAtEnd:()=>o(Ee(Mr()))})]})})]})}function Uan({attributes:e}){const{textAlign:t,citation:n,value:o}=e,r=!Ie.isEmpty(n);return a.jsx("figure",{...Be.save({className:oe({[`has-text-align-${t}`]:t})}),children:a.jsxs("blockquote",{children:[a.jsx(Ie.Content,{tagName:"p",value:o}),r&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})})}const Xan={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>Ee("core/pullquote",{value:T0({value:Lqe(e.map(({content:t})=>eo({html:t})),` +`)}),anchor:e.anchor})},{type:"block",blocks:["core/heading"],transform:({content:e,anchor:t})=>Ee("core/pullquote",{value:e,anchor:t})}],to:[{type:"block",blocks:["core/paragraph"],transform:({value:e,citation:t})=>{const n=[];return e&&n.push(Ee("core/paragraph",{content:e})),t&&n.push(Ee("core/paragraph",{content:t})),n.length===0?Ee("core/paragraph",{content:""}):n}},{type:"block",blocks:["core/heading"],transform:({value:e,citation:t})=>{if(!e)return Ee("core/heading",{content:t});const n=Ee("core/heading",{content:e});return t?[n,Ee("core/heading",{content:t})]:n}}]},qD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/pullquote",title:"Pullquote",category:"text",description:"Give special visual emphasis to a quote from your text.",textdomain:"default",attributes:{value:{type:"rich-text",source:"rich-text",selector:"p",role:"content"},citation:{type:"rich-text",source:"rich-text",selector:"cite",role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,align:["left","right","wide","full"],background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},color:{gradients:!0,background:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},dimensions:{minHeight:!0,__experimentalDefaultControls:{minHeight:!1}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},__experimentalStyle:{typography:{fontSize:"1.5em",lineHeight:"1.6"}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-pullquote-editor",style:"wp-block-pullquote"},{name:zxe}=qD,Oxe={icon:qQe,example:{attributes:{value:m("One of the hardest things to do in technology is disrupt yourself."),citation:m("Matt Mullenweg")}},transforms:Xan,edit:Han,save:Uan,deprecated:Fan},Gan=()=>it({name:zxe,metadata:qD,settings:Oxe}),Kan=Object.freeze(Object.defineProperty({__proto__:null,init:Gan,metadata:qD,name:zxe,settings:Oxe},Symbol.toStringTag,{value:"Module"})),yN=e=>{const t=e?.reduce((n,o)=>{const{mapById:r,mapByName:s,names:i}=n;return r[o.id]=o,s[o.name]=o,i.push(o.name),n},{mapById:{},mapByName:{},names:[]});return{entities:e,...t}},Yan=(e,t)=>{const n=t.split(".");let o=e;return n.forEach(r=>{o=o?.[r]}),o},koe=(e,t)=>(e||[]).map(n=>({...n,name:Lt(Yan(n,t))})),Zan=()=>{const e=G(r=>{const{getPostTypes:s}=r(Me),i=["attachment"];return s({per_page:-1})?.filter(({viewable:l,slug:u})=>l&&!i.includes(u))},[]),t=x.useMemo(()=>{if(e?.length)return e.reduce((r,s)=>(r[s.slug]=s.taxonomies,r),{})},[e]),n=x.useMemo(()=>(e||[]).map(({labels:r,slug:s})=>({label:r.singular_name,value:s})),[e]),o=x.useMemo(()=>e?.length?e.reduce((r,s)=>(r[s.slug]=s.supports?.["post-formats"]||!1,r),{}):{},[e]);return{postTypesTaxonomiesMap:t,postTypesSelectOptions:n,postTypeFormatSupportMap:o}},yxe=e=>{const t=G(n=>{const{getTaxonomies:o,getPostType:r}=n(Me);return r(e)?.taxonomies?.length>0?o({type:e,per_page:-1}):[]},[e]);return x.useMemo(()=>t?.filter(({visibility:n})=>!!n?.publicly_queryable),[t])};function Qan(e){return G(t=>{const n=t(Me).getPostType(e);return n?.viewable&&n?.hierarchical},[e])}function Jan(e){return G(t=>t(kt).getActiveBlockVariation("core/query",e)?.allowedControls,[e])}function di(e,t){return e?e.includes(t):!0}const ecn=(e,t)=>{const{query:{postType:n,inherit:o},namespace:r}=t,s=e.map(l=>jo(l)),i=[],c=[...s];for(;c.length>0;){const l=c.shift();l.name==="core/query"&&(l.attributes.query={...l.attributes.query,postType:n,inherit:o},r&&(l.attributes.namespace=r),i.push(l.clientId)),l.innerBlocks?.forEach(u=>{c.push(u)})}return{newBlocks:s,queryClientIds:i}};function tcn(e,t){return G(n=>{const o=n(kt).getActiveBlockVariation("core/query",t)?.name;if(!o)return"core/query";const{getBlockRootClientId:r,getPatternsByBlockTypes:s}=n(Q),i=r(e);return s(`core/query/${o}`,i).length>0?`core/query/${o}`:"core/query"},[e,t])}function ncn(e){const{activeVariationName:t,blockVariations:n}=G(r=>{const{getActiveBlockVariation:s,getBlockVariations:i}=r(kt);return{activeVariationName:s("core/query",e)?.name,blockVariations:i("core/query","block")}},[e]);return x.useMemo(()=>{const r=i=>!i.attributes?.namespace;if(!t)return n.filter(r);const s=n.filter(i=>i.attributes?.namespace?.includes(t));return s.length?s:n.filter(r)},[t,n])}const ocn=(e,t)=>G(n=>{const{getBlockRootClientId:o,getPatternsByBlockTypes:r}=n(Q),s=o(e);return r(t,s)},[t,e]),Axe=e=>G(t=>{const{getClientIdsOfDescendants:n,getBlockName:o}=t(Q),r={};return n(e).forEach(s=>{const i=o(s),c=Object.is(An(i,"interactivity"),!0),l=An(i,"interactivity.clientNavigation");c||l?i==="core/post-content"&&(r.hasPostContentBlock=!0):r.hasBlocksFromPlugins=!0}),r.hasUnsupportedBlocks=r.hasBlocksFromPlugins||r.hasPostContentBlock,r},[e]);function rcn(e){if(!e)return{isSingular:!0};let t=!1,n=e==="wp"?"custom":e;const o=["404","blank","single","page","custom"],r=e.includes("-")?e.split("-",1)[0]:e;return(e.includes("-")?e.split("-").slice(1).join("-"):"")&&(n=r),t=o.includes(n),{isSingular:t,templateType:n}}function scn({enhancedPagination:e,setAttributes:t,clientId:n}){const{hasUnsupportedBlocks:o}=Axe(n),r=window.__experimentalFullPageClientSideNavigation;let s=m("Reload the full page—instead of just the posts list—when visitors navigate between pages.");return r?s=m("Experimental full-page client-side navigation setting enabled."):o&&(s=m("Enhancement disabled because there are non-compatible blocks inside the Query block.")),a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Reload full page"),help:s,checked:!e&&!r,disabled:o||r,onChange:i=>{t({enhancedPagination:!i})}})})}const icn=[{label:m("Newest to oldest"),value:"date/desc"},{label:m("Oldest to newest"),value:"date/asc"},{label:m("A → Z"),value:"title/asc"},{label:m("Z → A"),value:"title/desc"}];function acn({order:e,orderBy:t,onChange:n}){return a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Order by"),value:`${t}/${e}`,options:icn,onChange:o=>{const[r,s]=o.split("/");n({order:s,orderBy:r})}})}const ccn={who:"authors",per_page:-1,_fields:"id,name",context:"view"};function lcn({value:e,onChange:t}){const n=G(l=>{const{getUsers:u}=l(Me);return u(ccn)},[]);if(!n)return null;const o=yN(n),s=(e?e.toString().split(","):[]).reduce((l,u)=>{const d=o.mapById[u];return d&&l.push({id:u,value:d.name}),l},[]),i=(l,u)=>{const d=u?.id||l[u]?.id;if(d)return d},c=l=>{const u=Array.from(l.reduce((d,p)=>{const f=i(o.mapByName,p);return f&&d.add(f),d},new Set));t({author:u.join(",")})};return a.jsx(ip,{label:m("Authors"),value:s,suggestions:o.names,onChange:c,__experimentalShowHowTo:!1,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0})}const Lp=[],Soe={order:"asc",_fields:"id,title",context:"view"};function ucn({parents:e,postType:t,onChange:n}){const[o,r]=x.useState(""),[s,i]=x.useState(Lp),[c,l]=x.useState(Lp),u=C1(r,250),{searchResults:d,searchHasResolved:p}=G(z=>{if(!o)return{searchResults:Lp,searchHasResolved:!0};const{getEntityRecords:A,hasFinishedResolution:_}=z(Me),v=["postType",t,{...Soe,search:o,orderby:"relevance",exclude:e,per_page:20}];return{searchResults:A(...v),searchHasResolved:_("getEntityRecords",v)}},[o,e]),f=G(z=>{if(!e?.length)return Lp;const{getEntityRecords:A}=z(Me);return A("postType",t,{...Soe,include:e,per_page:e.length})},[e]);x.useEffect(()=>{if(e?.length||i(Lp),!f?.length)return;const z=yN(koe(f,"title.rendered")),A=e.reduce((_,v)=>{const M=z.mapById[v];return M&&_.push({id:v,value:M.name}),_},[]);i(A)},[e,f]);const b=x.useMemo(()=>d?.length?yN(koe(d,"title.rendered")):Lp,[d]);x.useEffect(()=>{p&&l(b.names)},[b.names,p]);const h=(z,A)=>{const _=A?.id||z?.[A]?.id;if(_)return _},g=z=>{const A=Array.from(z.reduce((_,v)=>{const M=h(b.mapByName,v);return M&&_.add(M),_},new Set));l(Lp),n({parents:A})};return a.jsx(ip,{__next40pxDefaultSize:!0,label:m("Parents"),value:s,onInputChange:u,suggestions:c,onChange:g,__experimentalShowHowTo:!1,__nextHasNoMarginBottom:!0})}const n2=[],Coe={order:"asc",_fields:"id,name",context:"view"},dcn=(e,t)=>{const n=t?.id||e?.find(r=>r.name===t)?.id;if(n)return n;const o=t.toLocaleLowerCase();return e?.find(r=>r.name.toLocaleLowerCase()===o)?.id};function pcn({onChange:e,query:t}){const{postType:n,taxQuery:o}=t,r=yxe(n);return!r||r.length===0?null:a.jsx(dt,{spacing:4,children:r.map(s=>{const i=o?.[s.slug]||[],c=l=>e({taxQuery:{...o,[s.slug]:l}});return a.jsx(fcn,{taxonomy:s,termIds:i,onChange:c},s.slug)})})}function fcn({taxonomy:e,termIds:t,onChange:n}){const[o,r]=x.useState(""),[s,i]=x.useState(n2),[c,l]=x.useState(n2),u=C1(r,250),{searchResults:d,searchHasResolved:p}=G(h=>{if(!o)return{searchResults:n2,searchHasResolved:!0};const{getEntityRecords:g,hasFinishedResolution:z}=h(Me),A=["taxonomy",e.slug,{...Coe,search:o,orderby:"name",exclude:t,per_page:20}];return{searchResults:g(...A),searchHasResolved:z("getEntityRecords",A)}},[o,t]),f=G(h=>{if(!t?.length)return n2;const{getEntityRecords:g}=h(Me);return g("taxonomy",e.slug,{...Coe,include:t,per_page:t.length})},[t]);x.useEffect(()=>{if(t?.length||i(n2),!f?.length)return;const h=t.reduce((g,z)=>{const A=f.find(_=>_.id===z);return A&&g.push({id:z,value:A.name}),g},[]);i(h)},[t,f]),x.useEffect(()=>{p&&l(d.map(h=>h.name))},[d,p]);const b=h=>{const g=new Set;for(const z of h){const A=dcn(d,z);A&&g.add(A)}l(n2),n(Array.from(g))};return a.jsx("div",{className:"block-library-query-inspector__taxonomy-control",children:a.jsx(ip,{label:e.name,value:s,onInputChange:u,suggestions:c,displayTransform:Lt,onChange:b,__experimentalShowHowTo:!1,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0})})}const bcn=[{value:"aside",label:m("Aside")},{value:"audio",label:m("Audio")},{value:"chat",label:m("Chat")},{value:"gallery",label:m("Gallery")},{value:"image",label:m("Image")},{value:"link",label:m("Link")},{value:"quote",label:m("Quote")},{value:"standard",label:m("Standard")},{value:"status",label:m("Status")},{value:"video",label:m("Video")}].sort((e,t)=>{const n=e.label.toUpperCase(),o=t.label.toUpperCase();return n<o?-1:n>o?1:0});function hcn(e,t){return e.map(n=>t.find(o=>o.label.toLocaleLowerCase()===n.toLocaleLowerCase())?.value).filter(Boolean)}function mcn({onChange:e,query:{format:t}}){const n=Array.isArray(t)?t:[t],{supportedFormats:o}=G(c=>({supportedFormats:c(Me).getThemeSupports().formats}),[]),r=bcn.filter(c=>o.includes(c.value)),s=n.map(c=>r.find(l=>l.value===c)?.label).filter(Boolean),i=r.filter(c=>!n.includes(c.value)).map(c=>c.label);return a.jsx(ip,{label:m("Formats"),value:s,suggestions:i,onChange:c=>{e({format:hcn(c,r)})},__experimentalShowHowTo:!1,__experimentalExpandOnFocus:!0,__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0})}const gcn=[{label:m("Include"),value:""},{label:m("Exclude"),value:"exclude"},{label:m("Only"),value:"only"}];function Mcn({value:e,onChange:t}){return a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Sticky posts"),options:gcn,value:e,onChange:t,help:m("Sticky posts always appear first, regardless of their publish date.")})}const qoe=1,Roe=100,zcn=({perPage:e,offset:t=0,onChange:n})=>a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Items per page"),min:qoe,max:Roe,onChange:o=>{isNaN(o)||o<qoe||o>Roe||n({perPage:o,offset:t})},value:parseInt(e,10)}),Toe=0,Ocn=100,ycn=({offset:e=0,onChange:t})=>a.jsx(g0,{__next40pxDefaultSize:!0,label:m("Offset"),value:e,min:Toe,onChange:n=>{isNaN(n)||n<Toe||n>Ocn||t({offset:n})}}),Acn=({pages:e,onChange:t})=>a.jsx(g0,{__next40pxDefaultSize:!0,label:m("Max pages to show"),value:e,min:0,onChange:n=>{isNaN(n)||n<0||t({pages:n})},help:m("Limit the pages you want to show, even if the query has more results. To show all pages use 0 (zero).")});function vcn(e){const{attributes:t,setQuery:n,setDisplayLayout:o,isSingular:r}=e,{query:s,displayLayout:i}=t,{order:c,orderBy:l,author:u,pages:d,postType:p,perPage:f,offset:b,sticky:h,inherit:g,taxQuery:z,parents:A,format:_}=s,v=Jan(t),M=p==="post",{postTypesTaxonomiesMap:y,postTypesSelectOptions:k,postTypeFormatSupportMap:S}=Zan(),C=yxe(p),R=Qan(p),T=we=>{const re={postType:we},pe=y[we],ke=Object.entries(z||{}).reduce((se,[L,U])=>(pe.includes(L)&&(se[L]=U),se),{});re.taxQuery=Object.keys(ke).length?ke:void 0,we!=="post"&&(re.sticky=""),re.parents=[],S[we]||(re.format=[]),n(re)},[E,B]=x.useState(s.search),N=x.useCallback(F1(()=>{s.search!==E&&n({search:E})},250),[E,s.search]);x.useEffect(()=>(N(),N.cancel),[E,N]);const j=!r&&di(v,"inherit"),I=!g&&di(v,"postType"),P=m("Post type"),$=m("Select the type of content to display: posts, pages, or custom post types."),F=!1,X=!g&&di(v,"order"),Z=!g&&M&&di(v,"sticky"),V=j||I||F||X||Z,ee=!!C?.length&&di(v,"taxQuery"),te=di(v,"author"),J=di(v,"search"),ue=di(v,"parents")&&R,ce=S[p],me=G(we=>{if(!ce||!di(v,"format"))return!1;const re=we(Me).getThemeSupports();return re.formats&&re.formats.length>0&&re.formats.some(pe=>pe!=="standard")},[v,ce]),de=ee||te||J||ue||me,Ae=Qo(),ye=di(v,"postCount"),Ne=di(v,"offset"),je=di(v,"pages"),ie=ye||Ne||je;return a.jsxs(a.Fragment,{children:[V&&a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({postType:"post",order:"desc",orderBy:"date",sticky:"",inherit:!0})},dropdownMenuProps:Ae,children:[j&&a.jsx(tt,{hasValue:()=>!g,label:m("Query type"),onDeselect:()=>n({inherit:!0}),isShownByDefault:!0,children:a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Query type"),isBlock:!0,onChange:we=>{n({inherit:we==="default"})},help:m(g?"Display a list of posts or custom post types based on the current template.":"Display a list of posts or custom post types based on specific criteria."),value:g?"default":"custom",children:[a.jsx(Kn,{value:"default",label:m("Default")}),a.jsx(Kn,{value:"custom",label:m("Custom")})]})}),I&&a.jsx(tt,{hasValue:()=>p!=="post",label:P,onDeselect:()=>T("post"),isShownByDefault:!0,children:k.length>2?a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,options:k,value:p,label:P,onChange:T,help:$}):a.jsx(Do,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,isBlock:!0,value:p,label:P,onChange:T,help:$,children:k.map(we=>a.jsx(Kn,{value:we.value,label:we.label},we.value))})}),F,X&&a.jsx(tt,{hasValue:()=>c!=="desc"||l!=="date",label:m("Order by"),onDeselect:()=>n({order:"desc",orderBy:"date"}),isShownByDefault:!0,children:a.jsx(acn,{order:c,orderBy:l,onChange:n})}),Z&&a.jsx(tt,{hasValue:()=>!!h,label:m("Sticky posts"),onDeselect:()=>n({sticky:""}),isShownByDefault:!0,children:a.jsx(Mcn,{value:h,onChange:we=>n({sticky:we})})})]}),!g&&ie&&a.jsxs(En,{className:"block-library-query-toolspanel__display",label:m("Display"),resetAll:()=>{n({offset:0,pages:0})},dropdownMenuProps:Ae,children:[a.jsx(tt,{label:m("Items per page"),hasValue:()=>f>0,children:a.jsx(zcn,{perPage:f,offset:b,onChange:n})}),a.jsx(tt,{label:m("Offset"),hasValue:()=>b>0,onDeselect:()=>n({offset:0}),children:a.jsx(ycn,{offset:b,onChange:n})}),a.jsx(tt,{label:m("Max pages to show"),hasValue:()=>d>0,onDeselect:()=>n({pages:0}),children:a.jsx(Acn,{pages:d,onChange:n})})]}),!g&&de&&a.jsxs(En,{className:"block-library-query-toolspanel__filters",label:m("Filters"),resetAll:()=>{n({author:"",parents:[],search:"",taxQuery:null,format:[]}),B("")},dropdownMenuProps:Ae,children:[ee&&a.jsx(tt,{label:m("Taxonomies"),hasValue:()=>Object.values(z||{}).some(we=>!!we.length),onDeselect:()=>n({taxQuery:null}),children:a.jsx(pcn,{onChange:n,query:s})}),te&&a.jsx(tt,{hasValue:()=>!!u,label:m("Authors"),onDeselect:()=>n({author:""}),children:a.jsx(lcn,{value:u,onChange:n})}),J&&a.jsx(tt,{hasValue:()=>!!E,label:m("Keyword"),onDeselect:()=>B(""),children:a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Keyword"),value:E,onChange:B})}),ue&&a.jsx(tt,{hasValue:()=>!!A?.length,label:m("Parents"),onDeselect:()=>n({parents:[]}),children:a.jsx(ucn,{parents:A,postType:p,onChange:n})}),me&&a.jsx(tt,{hasValue:()=>!!_?.length,label:m("Formats"),onDeselect:()=>n({format:[]}),children:a.jsx(mcn,{onChange:n,query:s})})]})]})}const Eoe="wp-block-query-enhanced-pagination-modal__description";function xcn({clientId:e,attributes:{enhancedPagination:t},setAttributes:n}){const[o,r]=x.useState(!1),{hasBlocksFromPlugins:s,hasPostContentBlock:i,hasUnsupportedBlocks:c}=Axe(e);x.useEffect(()=>{t&&c&&!window.__experimentalFullPageClientSideNavigation&&(n({enhancedPagination:!1}),r(!0))},[t,c,n]);const l=()=>{r(!1)};let u=m('If you still want to prevent full page reloads, remove that block, then disable "Reload full page" again in the Query Block settings.');return s?u=m("Currently, avoiding full page reloads is not possible when non-interactive or non-client Navigation compatible blocks from plugins are present inside the Query block.")+" "+u:i&&(u=m("Currently, avoiding full page reloads is not possible when a Content block is present inside the Query block.")+" "+u),o&&a.jsx(Zo,{title:m("Query block: Reload full page enabled"),className:"wp-block-query__enhanced-pagination-modal",aria:{describedby:Eoe},role:"alertdialog",focusOnMount:"firstElement",isDismissible:!1,onRequestClose:l,children:a.jsxs(dt,{alignment:"right",spacing:5,children:[a.jsx("span",{id:Eoe,children:u}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:l,children:m("OK")})]})})}function Woe(e=""){return e=ms(e),e=e.trim().toLowerCase(),e}function wcn(e,t){const n=Woe(t),o=Woe(e.title);let r=0;return n===o?r+=30:o.startsWith(n)?r+=20:n.split(" ").every(c=>o.includes(c))&&(r+=10),r}function AN(e=[],t=""){if(!t)return e;const n=e.map(o=>[o,wcn(o,t)]).filter(([,o])=>o>0);return n.sort(([,o],[,r])=>r-o),n.map(([o])=>o)}function _cn({clientId:e,attributes:t,setIsPatternSelectionModalOpen:n}){return a.jsx(Zo,{overlayClassName:"block-library-query-pattern__selection-modal",title:m("Choose a pattern"),onRequestClose:()=>n(!1),isFullScreen:!0,children:a.jsx(vxe,{clientId:e,attributes:t})})}function RD(e,t){const n=tcn(e,t);return ocn(e,n)}function vxe({clientId:e,attributes:t,showTitlesAsTooltip:n=!1,showSearch:o=!0}){const[r,s]=x.useState(""),{replaceBlock:i,selectBlock:c}=Oe(Q),l=RD(e,t),u=x.useMemo(()=>({previewPostType:t.query.postType}),[t.query.postType]),d=x.useMemo(()=>AN(l,r),[l,r]),p=(f,b)=>{const{newBlocks:h,queryClientIds:g}=ecn(b,t);i(e,h),g[0]&&c(g[0])};return a.jsxs("div",{className:"block-library-query-pattern__selection-content",children:[o&&a.jsx("div",{className:"block-library-query-pattern__selection-search",children:a.jsx(su,{__nextHasNoMarginBottom:!0,onChange:s,value:r,label:m("Search"),placeholder:m("Search")})}),a.jsx(uO,{value:u,children:a.jsx(qa,{blockPatterns:d,onClickPattern:p,showTitlesAsTooltip:n})})]})}function kcn({clientId:e,attributes:t}){return RD(e,t).length?a.jsx(Wn,{className:"wp-block-template-part__block-control-group",children:a.jsx($s,{children:a.jsx(so,{contentClassName:"block-editor-block-settings-menu__popover",focusOnMount:"firstElement",expandOnMobile:!0,renderToggle:({isOpen:o,onToggle:r})=>a.jsx(Vt,{"aria-haspopup":"true","aria-expanded":o,onClick:r,children:m("Change design")}),renderContent:()=>a.jsx(vxe,{clientId:e,attributes:t,showSearch:!1,showTitlesAsTooltip:!0})})})}):null}const Scn=3,Ccn=[["core/post-template"]];function xxe({attributes:e,setAttributes:t,clientId:n,context:o,name:r}){const{queryId:s,query:i,displayLayout:c,enhancedPagination:l,tagName:u="div",query:{inherit:d}={}}=e,{templateSlug:p}=o,{isSingular:f}=rcn(p),{__unstableMarkNextChangeAsNotPersistent:b}=Oe(Q),h=vt(xxe),g=Be(),z=Nt(g,{template:Ccn}),{postsPerPage:A}=G(y=>{const{getSettings:k}=y(Q),{getEntityRecord:S,getEntityRecordEdits:C,canUser:R}=y(Me),T=R("read",{kind:"root",name:"site"})?+S("root","site")?.posts_per_page:+k().postsPerPage;return{postsPerPage:+C("root","site")?.posts_per_page||T||Scn}},[]),_=x.useCallback(y=>t({query:{...i,...y}}),[i,t]);x.useEffect(()=>{const y={};(d&&i.perPage!==A||!i.perPage&&A)&&(y.perPage=A),f&&i.inherit&&(y.inherit=!1),Object.keys(y).length&&(b(),_(y))},[i.perPage,i.inherit,A,d,f,b,_]),x.useEffect(()=>{Number.isFinite(s)||(b(),t({queryId:h}))},[s,h,b,t]);const v=y=>t({displayLayout:{...c,...y}}),M={main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content.")};return a.jsxs(a.Fragment,{children:[a.jsx(xcn,{attributes:e,setAttributes:t,clientId:n}),a.jsx(et,{children:a.jsx(vcn,{name:r,attributes:e,setQuery:_,setDisplayLayout:v,setAttributes:t,clientId:n,isSingular:f})}),a.jsx(bt,{children:a.jsx(kcn,{attributes:e,clientId:n})}),a.jsxs(et,{group:"advanced",children:[a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<div>)"),value:"div"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<aside>",value:"aside"}],value:u,onChange:y=>t({tagName:y}),help:M[u]}),a.jsx(scn,{enhancedPagination:l,setAttributes:t,clientId:n})]}),a.jsx(u,{...z})]})}function qcn({attributes:e,clientId:t,name:n,openPatternSelectionModal:o}){const[r,s]=x.useState(!1),i=Be(),{blockType:c,activeBlockVariation:l}=G(f=>{const{getActiveBlockVariation:b,getBlockType:h}=f(kt);return{blockType:h(n),activeBlockVariation:b(n,e)}},[n,e]),u=!!RD(t,e).length,d=l?.icon?.src||l?.icon||c?.icon?.src,p=l?.title||c?.title;return r?a.jsx(Rcn,{clientId:t,attributes:e,icon:d,label:p}):a.jsx("div",{...i,children:a.jsxs(vo,{icon:d,label:p,instructions:m("Choose a pattern for the query loop or start blank."),children:[!!u&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:o,children:m("Choose")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>{s(!0)},children:m("Start blank")})]})})}function Rcn({clientId:e,attributes:t,icon:n,label:o}){const r=ncn(t),{replaceInnerBlocks:s}=Oe(Q),i=Be();return a.jsx("div",{...i,children:a.jsx(Dze,{icon:n,label:o,variations:r,onSelect:c=>{c.innerBlocks&&s(e,Ad(c.innerBlocks),!1)}})})}const Tcn=e=>{const{clientId:t,attributes:n}=e,[o,r]=x.useState(!1),i=G(c=>!!c(Q).getBlocks(t).length,[t])?xxe:qcn;return a.jsxs(a.Fragment,{children:[a.jsx(i,{...e,openPatternSelectionModal:()=>r(!0)}),o&&a.jsx(_cn,{clientId:t,attributes:n,setIsPatternSelectionModalOpen:r})]})};function Ecn({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})}const Wcn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M41 9H7v3h34V9zm-22 5H7v1h12v-1zM7 26h12v1H7v-1zm34-5H7v3h34v-3zM7 38h12v1H7v-1zm34-5H7v3h34v-3z"})}),Ncn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M41 9H7v3h34V9zm-4 5H7v1h30v-1zm4 3H7v1h34v-1zM7 20h30v1H7v-1zm0 12h30v1H7v-1zm34 3H7v1h34v-1zM7 38h30v1H7v-1zm34-11H7v3h34v-3z"})}),Bcn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M41 9H7v3h34V9zm-22 5H7v1h12v-1zm22 3H7v1h34v-1zM7 20h34v1H7v-1zm0 12h12v1H7v-1zm34 3H7v1h34v-1zM7 38h34v1H7v-1zm34-11H7v3h34v-3z"})}),Lcn=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",children:a.jsx(he,{d:"M7 9h34v6H7V9zm12 8H7v1h12v-1zm18 3H7v1h30v-1zm0 18H7v1h30v-1zM7 35h12v1H7v-1zm34-8H7v6h34v-6z"})}),Pcn=[{name:"title-date",title:m("Title & Date"),icon:Wcn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-date"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]},{name:"title-excerpt",title:m("Title & Excerpt"),icon:Ncn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-excerpt"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]},{name:"title-date-excerpt",title:m("Title, Date, & Excerpt"),icon:Bcn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-date"],["core/post-excerpt"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]},{name:"image-date-title",title:m("Image, Date, & Title"),icon:Lcn,attributes:{},innerBlocks:[["core/post-template",{},[["core/post-featured-image"],["core/post-date"],["core/post-title"]]],["core/query-pagination"],["core/query-no-results"]],scope:["block"]}],{cleanEmptyObject:YT}=e0(jn),wxe=e=>{const{query:t}=e,{categoryIds:n,tagIds:o,...r}=t;return(t.categoryIds?.length||t.tagIds?.length)&&(r.taxQuery={category:t.categoryIds?.length?t.categoryIds:void 0,post_tag:t.tagIds?.length?t.tagIds:void 0}),{...e,query:r}},_xe=(e,t)=>{const{style:n,backgroundColor:o,gradient:r,textColor:s,...i}=e;if(!(o||r||s||n?.color||n?.elements?.link))return[e,t];if(n&&(i.style=YT({...n,color:void 0,elements:{...n.elements,link:void 0}})),jcn(t)){const u=t[0],p=n?.color||n?.elements?.link||u.attributes.style?YT({...u.attributes.style,color:n?.color,elements:n?.elements?.link?{link:n?.elements?.link}:void 0}):void 0,f=Ee("core/group",{...u.attributes,backgroundColor:o,gradient:r,textColor:s,style:p},u.innerBlocks);return[i,[f]]}const l=Ee("core/group",{backgroundColor:o,gradient:r,textColor:s,style:YT({color:n?.color,elements:n?.elements?.link?{link:n?.elements?.link}:void 0})},t);return[i,[l]]},jcn=(e=[])=>e.length===1&&e[0].name==="core/group",TD=e=>{const{layout:t=null}=e;if(!t)return e;const{inherit:n=null,contentSize:o=null,...r}=t;return n||o?{...e,layout:{...r,contentSize:o,type:"constrained"}}:e},kxe=(e=[])=>{let t=null;for(const n of e)if(n.name==="core/post-template"){t=n;break}else n.innerBlocks.length&&(t=kxe(n.innerBlocks));return t},Sxe=(e=[],t)=>(e.forEach((n,o)=>{n.name==="core/post-template"?e.splice(o,1,t):n.innerBlocks.length&&(n.innerBlocks=Sxe(n.innerBlocks,t))}),e),HO=(e,t)=>{const{displayLayout:n=null,...o}=e;if(!n)return[e,t];const r=kxe(t);if(!r)return[e,t];const{type:s,columns:i}=n,c=s==="flex"?"grid":"default",l=Ee("core/post-template",{...r.attributes,layout:{type:c,...i&&{columnCount:i}}},r.innerBlocks);return[o,Sxe(t,l)]},Icn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0}},layout:{type:"object",default:{type:"list"}}},supports:{html:!1},migrate(e,t){const n=wxe(e),{layout:o,...r}=n,s={...r,displayLayout:n.layout};return HO(s,t)},save(){return a.jsx(Ht.Content,{})}},Dcn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},layout:!0},isEligible:({query:{categoryIds:e,tagIds:t}={}})=>e||t,migrate(e,t){const n=wxe(e),[o,r]=_xe(n,t),s=TD(o);return HO(s,r)},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})}},Fcn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[]}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}},namespace:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},layout:!0},isEligible(e){const{style:t,backgroundColor:n,gradient:o,textColor:r}=e;return n||o||r||t?.color||t?.elements?.link},migrate(e,t){const[n,o]=_xe(e,t),r=TD(n);return HO(r,o)},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})}},$cn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[]}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}},namespace:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},layout:!0},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})},isEligible:({layout:e})=>e?.inherit||e?.contentSize&&e?.type!=="constrained",migrate(e,t){const n=TD(e);return HO(n,t)}},Vcn={attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[]}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}},namespace:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,layout:!0},save({attributes:{tagName:e="div"}}){const t=Be.save(),n=Nt.save(t);return a.jsx(e,{...n})},isEligible:({displayLayout:e})=>!!e,migrate:HO},Hcn=[Vcn,$cn,Fcn,Dcn,Icn],ED={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query",title:"Query Loop",category:"theme",description:"An advanced block that allows displaying post types based on different query parameters and visual configurations.",keywords:["posts","list","blog","blogs","custom post types"],textdomain:"default",attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0,taxQuery:null,parents:[],format:[]}},tagName:{type:"string",default:"div"},namespace:{type:"string"},enhancedPagination:{type:"boolean",default:!1}},usesContext:["templateSlug"],providesContext:{queryId:"queryId",query:"query",displayLayout:"displayLayout",enhancedPagination:"enhancedPagination"},supports:{align:["wide","full"],html:!1,layout:!0,interactivity:!0},editorStyle:"wp-block-query-editor"},{name:Cxe}=ED,qxe={icon:hde,edit:Tcn,example:{viewportWidth:650,attributes:{namespace:"core/posts-list",query:{perPage:4,pages:1,offset:0,postType:"post",order:"desc",orderBy:"date",author:"",search:"",sticky:"exclude",inherit:!1}},innerBlocks:[{name:"core/post-template",attributes:{layout:{type:"grid",columnCount:2}},innerBlocks:[{name:"core/post-title"},{name:"core/post-date"},{name:"core/post-excerpt"}]}]},save:Ecn,variations:Pcn,deprecated:Hcn},Ucn=()=>it({name:Cxe,metadata:ED,settings:qxe}),Xcn=Object.freeze(Object.defineProperty({__proto__:null,init:Ucn,metadata:ED,name:Cxe,settings:qxe},Symbol.toStringTag,{value:"Module"})),Gcn=[["core/paragraph",{placeholder:m("Add text or blocks that will display when a query returns no results.")}]];function Kcn(){const e=Be(),t=Nt(e,{template:Gcn});return a.jsx("div",{...t})}function Ycn(){return a.jsx(Ht.Content,{})}const WD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-no-results",title:"No results",category:"theme",description:"Contains the block elements used to render content when no query results are found.",ancestor:["core/query"],textdomain:"default",usesContext:["queryId","query"],supports:{align:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:Rxe}=WD,Txe={icon:hde,edit:Kcn,save:Ycn,example:{innerBlocks:[{name:"core/paragraph",attributes:{content:m("No posts were found.")}}]}},Zcn=()=>it({name:Rxe,metadata:WD,settings:Txe}),Qcn=Object.freeze(Object.defineProperty({__proto__:null,init:Zcn,metadata:WD,name:Rxe,settings:Txe},Symbol.toStringTag,{value:"Module"}));function Jcn({value:e,onChange:t}){return a.jsxs(Do,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Arrow"),value:e,onChange:t,help:m("A decorative arrow appended to the next and previous page link."),isBlock:!0,children:[a.jsx(Kn,{value:"none",label:We("None","Arrow option for Query Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"arrow",label:We("Arrow","Arrow option for Query Pagination Next/Previous blocks")}),a.jsx(Kn,{value:"chevron",label:We("Chevron","Arrow option for Query Pagination Next/Previous blocks")})]})}function eln({value:e,onChange:t}){return a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show label text"),help:m('Make label text visible, e.g. "Next Page".'),onChange:t,checked:e===!0})}const tln=[["core/query-pagination-previous"],["core/query-pagination-numbers"],["core/query-pagination-next"]];function nln({attributes:{paginationArrow:e,showLabel:t},setAttributes:n,clientId:o}){const r=G(u=>{const{getBlocks:d}=u(Q);return d(o)?.find(f=>["core/query-pagination-next","core/query-pagination-previous"].includes(f.name))},[o]),{__unstableMarkNextChangeAsNotPersistent:s}=Oe(Q),i=Qo(),c=Be(),l=Nt(c,{template:tln});return x.useEffect(()=>{e==="none"&&!t&&(s(),n({showLabel:!0}))},[e,n,t,s]),a.jsxs(a.Fragment,{children:[r&&a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{n({paginationArrow:"none",showLabel:!0})},dropdownMenuProps:i,children:[a.jsx(tt,{hasValue:()=>e!=="none",label:m("Pagination arrow"),onDeselect:()=>n({paginationArrow:"none"}),isShownByDefault:!0,children:a.jsx(Jcn,{value:e,onChange:u=>{n({paginationArrow:u})}})}),e!=="none"&&a.jsx(tt,{hasValue:()=>!t,label:m("Show text"),onDeselect:()=>n({showLabel:!0}),isShownByDefault:!0,children:a.jsx(eln,{value:t,onChange:u=>{n({showLabel:u})}})})]})}),a.jsx("nav",{...l})]})}function oln(){return a.jsx(Ht.Content,{})}const rln=[{save(){return a.jsx("div",{...Be.save(),children:a.jsx(Ht.Content,{})})}}],ND={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination",title:"Pagination",category:"theme",ancestor:["core/query"],allowedBlocks:["core/query-pagination-previous","core/query-pagination-numbers","core/query-pagination-next"],description:"Displays a paginated navigation to next/previous set of posts, when applicable.",textdomain:"default",attributes:{paginationArrow:{type:"string",default:"none"},showLabel:{type:"boolean",default:!0}},usesContext:["queryId","query"],providesContext:{paginationArrow:"paginationArrow",showLabel:"showLabel"},supports:{align:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},layout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-query-pagination-editor",style:"wp-block-query-pagination"},{name:Exe}=ND,Wxe={icon:qde,edit:nln,save:oln,deprecated:rln},sln=()=>it({name:Exe,metadata:ND,settings:Wxe}),iln=Object.freeze(Object.defineProperty({__proto__:null,init:sln,metadata:ND,name:Exe,settings:Wxe},Symbol.toStringTag,{value:"Module"})),aln={none:"",arrow:"→",chevron:"»"};function cln({attributes:{label:e},setAttributes:t,context:{paginationArrow:n,showLabel:o}}){const r=aln[n];return a.jsxs("a",{href:"#pagination-next-pseudo-link",onClick:s=>s.preventDefault(),...Be(),children:[o&&a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Next page link"),placeholder:m("Next Page"),value:e,onChange:s=>t({label:s})}),r&&a.jsx("span",{className:`wp-block-query-pagination-next-arrow is-arrow-${n}`,"aria-hidden":!0,children:r})]})}const BD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination-next",title:"Next Page",category:"theme",parent:["core/query-pagination"],description:"Displays the next posts page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["queryId","query","paginationArrow","showLabel","enhancedPagination"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:Nxe}=BD,Bxe={icon:Rde,edit:cln},lln=()=>it({name:Nxe,metadata:BD,settings:Bxe}),uln=Object.freeze(Object.defineProperty({__proto__:null,init:lln,metadata:BD,name:Nxe,settings:Bxe},Symbol.toStringTag,{value:"Module"})),Gg=(e,t="a",n="")=>a.jsx(t,{className:`page-numbers ${n}`,children:e},e),dln=e=>{const t=[];for(let n=1;n<=e;n++)t.push(Gg(n));t.push(Gg(e+1,"span","current"));for(let n=1;n<=e;n++)t.push(Gg(e+1+n));return t.push(Gg("...","span","dots")),t.push(Gg(e*2+3)),a.jsx(a.Fragment,{children:t})};function pln({attributes:e,setAttributes:t}){const{midSize:n}=e,o=dln(parseInt(n,10)),r=Qo();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>t({midSize:2}),dropdownMenuProps:r,children:a.jsx(tt,{label:m("Number of links"),hasValue:()=>n!==void 0,onDeselect:()=>t({midSize:2}),isShownByDefault:!0,children:a.jsx(bo,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Number of links"),help:m("Specify how many links can appear before and after the current page number. Links to the first, current and last page are always visible."),value:n,onChange:s=>{t({midSize:parseInt(s,10)})},min:0,max:5,withInputField:!1})})})}),a.jsx("div",{...Be(),children:o})]})}const LD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination-numbers",title:"Page Numbers",category:"theme",parent:["core/query-pagination"],description:"Displays a list of page numbers for pagination.",textdomain:"default",attributes:{midSize:{type:"number",default:2}},usesContext:["queryId","query","enhancedPagination"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-query-pagination-numbers-editor"},{name:Lxe}=LD,Pxe={icon:Tde,edit:pln,example:{}},fln=()=>it({name:Lxe,metadata:LD,settings:Pxe}),bln=Object.freeze(Object.defineProperty({__proto__:null,init:fln,metadata:LD,name:Lxe,settings:Pxe},Symbol.toStringTag,{value:"Module"})),hln={none:"",arrow:"←",chevron:"«"};function mln({attributes:{label:e},setAttributes:t,context:{paginationArrow:n,showLabel:o}}){const r=hln[n];return a.jsxs("a",{href:"#pagination-previous-pseudo-link",onClick:s=>s.preventDefault(),...Be(),children:[r&&a.jsx("span",{className:`wp-block-query-pagination-previous-arrow is-arrow-${n}`,"aria-hidden":!0,children:r}),o&&a.jsx(Gd,{__experimentalVersion:2,tagName:"span","aria-label":m("Previous page link"),placeholder:m("Previous Page"),value:e,onChange:s=>t({label:s})})]})}const PD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-pagination-previous",title:"Previous Page",category:"theme",parent:["core/query-pagination"],description:"Displays the previous posts page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["queryId","query","paginationArrow","showLabel","enhancedPagination"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}}},{name:jxe}=PD,Ixe={icon:Ede,edit:mln},gln=()=>it({name:jxe,metadata:PD,settings:Ixe}),Mln=Object.freeze(Object.defineProperty({__proto__:null,init:gln,metadata:PD,name:jxe,settings:Ixe},Symbol.toStringTag,{value:"Module"}));function zln(){const e=G(i=>{const{getCurrentPostId:c,getCurrentPostType:l,getCurrentTemplateId:u}=i("core/editor"),d=l(),p=u()||(d==="wp_template"?c():null);return p?i(Me).getEditedEntityRecord("postType","wp_template",p)?.slug:null},[]),t=e?.match(/^(category|tag|taxonomy-([^-]+))$|^(((category|tag)|taxonomy-([^-]+))-(.+))$/);let n,o,r=!1,s;if(t)t[1]?n=t[2]?t[2]:t[1]:t[3]&&(n=t[6]?t[6]:t[4],o=t[7]),n=n==="tag"?"post_tag":n;else{const i=e?.match(/^(author)$|^author-(.+)$/);i&&(r=!0,i[2]&&(s=i[2]))}return G(i=>{const{getEntityRecords:c,getTaxonomy:l,getAuthors:u}=i(Me);let d,p;if(n&&(d=l(n)?.labels?.singular_name),o){const f=c("taxonomy",n,{slug:o,per_page:1});f&&f[0]&&(p=f[0].name)}if(r&&(d="Author",s)){const f=u({slug:s});f&&f[0]&&(p=f[0].name)}return{archiveTypeLabel:d,archiveNameLabel:p}},[s,r,n,o])}const Oln=["archive","search"];function yln({attributes:{type:e,level:t,levelOptions:n,textAlign:o,showPrefix:r,showSearchTerm:s},setAttributes:i}){const{archiveTypeLabel:c,archiveNameLabel:l}=zln(),u=Qo(),d=`h${t}`,p=Be({className:oe("wp-block-query-title__placeholder",{[`has-text-align-${o}`]:o})});if(!Oln.includes(e))return a.jsx("div",{...p,children:a.jsx(Er,{children:m("Provided type is not supported.")})});let f;if(e==="archive"){let b;c?r?l?b=xe(We("%1$s: %2$s","archive label"),c,l):b=xe(m("%s: Name"),c):l?b=l:b=xe(m("%s name"),c):b=m(r?"Archive type: Name":"Archive title"),f=a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>i({showPrefix:!0}),dropdownMenuProps:u,children:a.jsx(tt,{hasValue:()=>!r,label:m("Show archive type in title"),onDeselect:()=>i({showPrefix:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show archive type in title"),onChange:()=>i({showPrefix:!r}),checked:r})})})}),a.jsx(d,{...p,children:b})]})}return e==="search"&&(f=a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>i({showSearchTerm:!0}),children:a.jsx(tt,{hasValue:()=>!s,label:m("Show search term in title"),onDeselect:()=>i({showSearchTerm:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show search term in title"),onChange:()=>i({showSearchTerm:!s}),checked:s})})})}),a.jsx(d,{...p,children:m(s?"Search results for: “search term”":"Search results")})]})),a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:t,options:n,onChange:b=>i({level:b})}),a.jsx(nr,{value:o,onChange:b=>{i({textAlign:b})}})]}),f]})}const Dxe=[{isDefault:!0,name:"archive-title",title:m("Archive Title"),description:m("Display the archive title based on the queried object."),icon:yz,attributes:{type:"archive"},scope:["inserter"]},{isDefault:!1,name:"search-title",title:m("Search Results Title"),description:m("Display the search results title based on the queried object."),icon:yz,attributes:{type:"search"},scope:["inserter"]}];Dxe.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.type===n.type)});const Aln={attributes:{type:{type:"string"},textAlign:{type:"string"},level:{type:"number",default:1}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},vln=[Aln],jD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-title",title:"Query Title",category:"theme",description:"Display the query title.",textdomain:"default",attributes:{type:{type:"string"},textAlign:{type:"string"},level:{type:"number",default:1},levelOptions:{type:"array"},showPrefix:{type:"boolean",default:!0},showSearchTerm:{type:"boolean",default:!0}},example:{attributes:{type:"search"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-query-title"},{name:Fxe}=jD,$xe={icon:yz,edit:yln,variations:Dxe,deprecated:vln},xln=()=>it({name:Fxe,metadata:jD,settings:$xe}),wln=Object.freeze(Object.defineProperty({__proto__:null,init:xln,metadata:jD,name:Fxe,settings:$xe},Symbol.toStringTag,{value:"Module"})),Noe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:a.jsx(he,{d:"M4 11h4v2H4v-2zm6 0h6v2h-6v-2zm8 0h2v2h-2v-2z"})}),Boe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:a.jsx(he,{d:"M4 13h2v-2H4v2zm4 0h10v-2H8v2zm12 0h2v-2h-2v2z"})}),_ln=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",children:a.jsx(he,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2Zm.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12Zm-7-6-4.1 5h8.8v-3h-1.5v1.5h-4.2l2.9-3.5-2.9-3.5h4.2V10h1.5V7H7.4l4.1 5Z"})});function kln({attributes:e,setAttributes:t}){const{displayType:n}=e,o=Be(),r=()=>{switch(n){case"total-results":return Noe;case"range-display":return Boe}},s=[{role:"menuitemradio",title:m("Total results"),isActive:n==="total-results",icon:Noe,onClick:()=>{t({displayType:"total-results"})}},{role:"menuitemradio",title:m("Range display"),isActive:n==="range-display",icon:Boe,onClick:()=>{t({displayType:"range-display"})}}],i=a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Lc,{icon:r(),label:m("Change display type"),controls:s})})}),c=()=>n==="total-results"?a.jsx(a.Fragment,{children:m("12 results found")}):n==="range-display"?a.jsx(a.Fragment,{children:m("Displaying 1 – 10 of 12")}):null;return a.jsxs("div",{...o,children:[i,c()]})}const ID={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/query-total",title:"Query Total",category:"theme",ancestor:["core/query"],description:"Display the total number of results in a query.",textdomain:"default",attributes:{displayType:{type:"string",default:"total-results"}},usesContext:["queryId","query"],supports:{align:["wide","full"],html:!1,spacing:{margin:!0,padding:!0},color:{gradients:!0,text:!0,__experimentalDefaultControls:{background:!0}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-query-total"},{name:Vxe}=ID,Hxe={icon:_ln,edit:kln},Sln=()=>it({name:Vxe,metadata:ID,settings:Hxe}),Cln=Object.freeze(Object.defineProperty({__proto__:null,init:Sln,metadata:ID,name:Vxe,settings:Hxe},Symbol.toStringTag,{value:"Module"})),Bf=e=>{const{value:t,...n}=e;return[{...n},t?ew(t,{type:"array",source:"query",selector:"p",query:{content:{type:"string",source:"html"}}}).map(({content:o})=>Ee("core/paragraph",{content:o})):Ee("core/paragraph")]},Uxe=["left","right","center"],Lf=(e,t)=>{const{align:n,...o}=e;return[Uxe.includes(n)?{...o,textAlign:n}:e,t]},qln=(e,t)=>[{...e,className:e.className?e.className+" is-style-large":"is-style-large"},t],Rln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:"",role:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",role:"content"},align:{type:"string"}},supports:{anchor:!0,html:!1,__experimentalOnEnter:!0,__experimentalOnMerge:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}}},isEligible:({align:e})=>Uxe.includes(e),save({attributes:e}){const{align:t,citation:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsxs("blockquote",{...Be.save({className:o}),children:[a.jsx(Ht.Content,{}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})},migrate:Lf},Tln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:"",role:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",role:"content"},align:{type:"string"}},supports:{anchor:!0,__experimentalSlashInserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0}}},save({attributes:e}){const{align:t,value:n,citation:o}=e,r=oe({[`has-text-align-${t}`]:t});return a.jsxs("blockquote",{...Be.save({className:r}),children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"cite",value:o})]})},migrate(e){return Lf(...Bf(e))}},Eln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:""},citation:{type:"string",source:"html",selector:"cite",default:""},align:{type:"string"}},migrate(e){return Lf(...Bf(e))},save({attributes:e}){const{align:t,value:n,citation:o}=e;return a.jsxs("blockquote",{style:{textAlign:t||null},children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"cite",value:o})]})}},Wln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:""},citation:{type:"string",source:"html",selector:"cite",default:""},align:{type:"string"},style:{type:"number",default:1}},migrate(e){if(e.style===2){const{style:t,...n}=e;return Lf(...qln(...Bf(n)))}return Lf(...Bf(e))},save({attributes:e}){const{align:t,value:n,citation:o,style:r}=e;return a.jsxs("blockquote",{className:r===2?"is-large":"",style:{textAlign:t||null},children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"cite",value:o})]})}},Nln={attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:""},citation:{type:"string",source:"html",selector:"footer",default:""},align:{type:"string"},style:{type:"number",default:1}},migrate(e){if(!isNaN(parseInt(e.style))){const{style:t,...n}=e;return Lf(...Bf(n))}return Lf(...Bf(e))},save({attributes:e}){const{align:t,value:n,citation:o,style:r}=e;return a.jsxs("blockquote",{className:`blocks-quote-style-${r}`,style:{textAlign:t||null},children:[a.jsx(Ie.Content,{multiline:!0,value:n}),!Ie.isEmpty(o)&&a.jsx(Ie.Content,{tagName:"footer",value:o})]})}},Bln=[Rln,Tln,Eln,Wln,Nln],Lln=f0.OS==="web",Pln=[["core/paragraph",{}]],jln=(e,t)=>{const n=Fn(),{updateBlockAttributes:o,replaceInnerBlocks:r}=Oe(Q);x.useEffect(()=>{if(!e.value)return;const[s,i]=Bf(e);Ke("Value attribute on the quote block",{since:"6.0",version:"6.5",alternative:"inner blocks"}),n.batch(()=>{o(t,s),r(t,i)})},[e.value])};function Iln({attributes:e,setAttributes:t,insertBlocksAfter:n,clientId:o,className:r,style:s,isSelected:i}){const{textAlign:c}=e;jln(e,o);const l=Be({className:oe(r,{[`has-text-align-${c}`]:c}),...!Lln}),u=Nt(l,{template:Pln,templateInsertUpdatesSelection:!0,__experimentalCaptureToolbars:!0,renderAppender:!1});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:c,onChange:d=>{t({textAlign:d})}})}),a.jsxs(z7e,{...u,children:[u.children,a.jsx(fb,{attributeKey:"citation",tagName:"cite",style:{display:"block"},isSelected:i,attributes:e,setAttributes:t,__unstableMobileNoFocusOnMount:!0,icon:Fw,label:m("Quote citation"),placeholder:m("Add citation"),addLabel:m("Add citation"),removeLabel:m("Remove citation"),excludeElementClassName:!0,className:"wp-block-quote__citation",insertBlocksAfter:n})]})]})}function Dln({attributes:e}){const{textAlign:t,citation:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsxs("blockquote",{...Be.save({className:o}),children:[a.jsx(Ht.Content,{}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"cite",value:n})]})}const Fln={from:[{type:"block",blocks:["core/pullquote"],transform:({value:e,align:t,citation:n,anchor:o,fontSize:r,style:s})=>Ee("core/quote",{align:t,citation:n,anchor:o,fontSize:r,style:s},[Ee("core/paragraph",{content:e})])},{type:"prefix",prefix:">",transform:e=>Ee("core/quote",{},[Ee("core/paragraph",{content:e})])},{type:"raw",schema:()=>({blockquote:{children:"*"}}),selector:"blockquote",transform:(e,t)=>Ee("core/quote",{},t({HTML:e.innerHTML,mode:"BLOCKS"}))},{type:"block",isMultiBlock:!0,blocks:["*"],isMatch:({},e)=>e.length===1?["core/paragraph","core/heading","core/list","core/pullquote"].includes(e[0].name):!e.some(({name:t})=>t==="core/quote"),__experimentalConvert:e=>Ee("core/quote",{},e.map(t=>Ee(t.name,t.attributes,t.innerBlocks)))}],to:[{type:"block",blocks:["core/pullquote"],isMatch:({},e)=>e.innerBlocks.every(({name:t})=>t==="core/paragraph"),transform:({align:e,citation:t,anchor:n,fontSize:o,style:r},s)=>{const i=s.map(({attributes:c})=>`${c.content}`).join("<br>");return Ee("core/pullquote",{value:i,align:e,citation:t,anchor:n,fontSize:o,style:r})}},{type:"block",blocks:["core/paragraph"],transform:({citation:e},t)=>Ie.isEmpty(e)?t:[...t,Ee("core/paragraph",{content:e})]},{type:"block",blocks:["core/group"],transform:({citation:e,anchor:t},n)=>Ee("core/group",{anchor:t},Ie.isEmpty(e)?n:[...n,Ee("core/paragraph",{content:e})])}],ungroup:({citation:e},t)=>Ie.isEmpty(e)?t:[...t,Ee("core/paragraph",{content:e})]},DD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/quote",title:"Quote",category:"text",description:'Give quoted text visual emphasis. "In quoting others, we cite ourselves." — Julio Cortázar',keywords:["blockquote","cite"],textdomain:"default",attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:"",role:"content"},citation:{type:"rich-text",source:"rich-text",selector:"cite",role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,align:["left","right","wide","full"],html:!1,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,radius:!0,style:!0,width:!0}},dimensions:{minHeight:!0,__experimentalDefaultControls:{minHeight:!1}},__experimentalOnEnter:!0,__experimentalOnMerge:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,heading:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},layout:{allowEditing:!1},spacing:{blockGap:!0,padding:!0,margin:!0},interactivity:{clientNavigation:!0}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"plain",label:"Plain"}],editorStyle:"wp-block-quote-editor",style:"wp-block-quote"},{name:Xxe}=DD,Gxe={icon:RQe,example:{attributes:{citation:"Julio Cortázar"},innerBlocks:[{name:"core/paragraph",attributes:{content:m("In quoting others, we cite ourselves.")}}]},transforms:Fln,edit:Iln,save:Dln,deprecated:Bln},$ln=()=>it({name:Xxe,metadata:DD,settings:Gxe}),Vln=Object.freeze(Object.defineProperty({__proto__:null,init:$ln,metadata:DD,name:Xxe,settings:Gxe},Symbol.toStringTag,{value:"Module"})),{useLayoutClasses:Hln}=e0(jn),{hasOverridableBlocks:Uln}=e0(Vi),Xln=["full","wide","left","right"],Gln=(e,t)=>{const n=x.useRef();return x.useMemo(()=>{if(!e?.length)return{};let o=n.current;if(o===void 0){const s=t?.type==="constrained",i=e.some(c=>Xln.includes(c.attributes.align));o=s&&i?"full":null,n.current=o}return{alignment:o,layout:o?t:void 0}},[e,t])};function Kln(){const e=Be();return a.jsx("div",{...e,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})})}const Loe=()=>{};function Yln(e){const{ref:t}=e.attributes;return nk(t)?a.jsx(Kln,{}):a.jsx(TO,{uniqueId:t,children:a.jsx(Qln,{...e})})}function Zln({recordId:e,canOverrideBlocks:t,hasContent:n,handleEditOriginal:o,resetContent:r}){const s=G(i=>!!i(Me).canUser("update",{kind:"postType",name:"wp_block",id:e}),[e]);return a.jsxs(a.Fragment,{children:[s&&!!o&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:o,children:m("Edit original")})})}),t&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:r,disabled:!n,children:m("Reset")})})})]})}function Qln({name:e,attributes:{ref:t,content:n},__unstableParentLayout:o,setAttributes:r}){const{record:s,hasResolved:i}=Y5("postType","wp_block",t),[c]=ya("postType","wp_block",{id:t}),l=i&&!s,{__unstableMarkLastChangeAsPersistent:u}=Oe(Q),{onNavigateToEntityRecord:d,hasPatternOverridesSource:p}=G(y=>{const{getSettings:k}=y(Q);return{onNavigateToEntityRecord:k().onNavigateToEntityRecord,hasPatternOverridesSource:!!vl("core/pattern-overrides")}},[]),f=x.useMemo(()=>p&&Uln(c),[p,c]),{alignment:b,layout:h}=Gln(c,o),g=Hln({layout:h},e),z=Be({className:oe("block-library-block__reusable-block-container",h&&g,{[`align${b}`]:b})}),A=Nt(z,{layout:h,value:c,onInput:Loe,onChange:Loe,renderAppender:c?.length?void 0:Ht.ButtonBlockAppender}),_=()=>{d({postId:t,postType:"wp_block"})},v=()=>{n&&(u(),r({content:void 0}))};let M=null;return l&&(M=a.jsx(Er,{children:m("Block has been deleted or is unavailable.")})),i||(M=a.jsx(vo,{children:a.jsx(Xn,{})})),a.jsxs(a.Fragment,{children:[i&&!l&&a.jsx(Zln,{recordId:t,canOverrideBlocks:f,hasContent:!!n,handleEditOriginal:d?_:void 0,resetContent:v}),M===null?a.jsx("div",{...A}):a.jsx("div",{...z,children:M})]})}const Jln=e=>typeof e=="object"&&!Array.isArray(e)&&e!==null,eun={attributes:{ref:{type:"number"},content:{type:"object"}},supports:{customClassName:!1,html:!1,inserter:!1,renaming:!1},isEligible({content:e}){return!!e&&Object.keys(e).every(t=>e[t].values&&Jln(e[t].values))},migrate(e){const{content:t,...n}=e;if(t&&Object.keys(t).length){const o={...t};for(const r in t)o[r]=t[r].values;return{...n,content:o}}return e}},tun={attributes:{ref:{type:"number"},overrides:{type:"object"}},supports:{customClassName:!1,html:!1,inserter:!1,renaming:!1},isEligible({overrides:e}){return!!e},migrate(e){const{overrides:t,...n}=e,o={};return Object.keys(t).forEach(r=>{o[r]=t[r]}),{...n,content:o}}},nun=[eun,tun],FD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/block",title:"Pattern",category:"reusable",description:"Reuse this design across your site.",keywords:["reusable"],textdomain:"default",attributes:{ref:{type:"number"},content:{type:"object",default:{}}},providesContext:{"pattern/overrides":"content"},supports:{customClassName:!1,html:!1,inserter:!1,renaming:!1,interactivity:{clientNavigation:!0}}},{name:Kxe}=FD,Yxe={deprecated:nun,edit:Yln,icon:Bd,__experimentalLabel:({ref:e})=>{if(!e)return;const t=uo(Me).getEditedEntityRecord("postType","wp_block",e);if(t?.title)return Lt(t.title)}},oun=()=>it({name:Kxe,metadata:FD,settings:Yxe}),run=Object.freeze(Object.defineProperty({__proto__:null,init:oun,metadata:FD,name:Kxe,settings:Yxe},Symbol.toStringTag,{value:"Module"}));function sun({attributes:{content:e,linkTarget:t},setAttributes:n,insertBlocksAfter:o}){const r=Be();return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:s=>n({linkTarget:s?"_blank":"_self"}),checked:t==="_blank"})})}),a.jsx(Ie,{identifier:"content",tagName:"a","aria-label":m("“Read more” link text"),placeholder:m("Read more"),value:e,onChange:s=>n({content:s}),__unstableOnSplitAtEnd:()=>o(Ee(Mr())),withoutInteractiveFormatting:!0,...r})]})}const $D={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/read-more",title:"Read More",category:"theme",description:"Displays the link of a post, page, or any other content-type.",textdomain:"default",attributes:{content:{type:"string"},linkTarget:{type:"string",default:"_self"}},usesContext:["postId"],supports:{html:!1,color:{gradients:!0,text:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0,textDecoration:!0}},spacing:{margin:["top","bottom"],padding:!0,__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalDefaultControls:{width:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-read-more"},{name:Zxe}=$D,Qxe={icon:xa,edit:sun,example:{attributes:{content:m("Read more")}}},iun=()=>it({name:Zxe,metadata:$D,settings:Qxe}),aun=Object.freeze(Object.defineProperty({__proto__:null,init:iun,metadata:$D,name:Zxe,settings:Qxe},Symbol.toStringTag,{value:"Module"})),cun=1,lun=20;function uun({attributes:e,setAttributes:t}){const[n,o]=x.useState(!e.feedURL),{blockLayout:r,columns:s,displayAuthor:i,displayDate:c,displayExcerpt:l,excerptLength:u,feedURL:d,itemsToShow:p}=e;function f(A){return()=>{const _=e[A];t({[A]:!_})}}function b(A){A.preventDefault(),d&&(t({feedURL:jf(d)}),o(!1))}const h=Be(),g=m("RSS URL");if(n)return a.jsx("div",{...h,children:a.jsx(vo,{icon:Lde,label:g,instructions:m("Display entries from any RSS or Atom feed."),children:a.jsxs("form",{onSubmit:b,className:"wp-block-rss__placeholder-form",children:[a.jsx(N1,{__next40pxDefaultSize:!0,label:g,type:"url",hideLabelFromVision:!0,placeholder:m("Enter URL here…"),value:d,onChange:A=>t({feedURL:A}),className:"wp-block-rss__placeholder-input"}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Apply")})]})})});const z=[{icon:Nd,title:m("Edit RSS URL"),onClick:()=>o(!0)},{icon:jw,title:We("List view","RSS block display setting"),onClick:()=>t({blockLayout:"list"}),isActive:r==="list"},{icon:X3,title:We("Grid view","RSS block display setting"),onClick:()=>t({blockLayout:"grid"}),isActive:r==="grid"}];return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Wn,{controls:z})}),a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of items"),value:p,onChange:A=>t({itemsToShow:A}),min:cun,max:lun,required:!0}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display author"),checked:i,onChange:f("displayAuthor")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display date"),checked:c,onChange:f("displayDate")}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Display excerpt"),checked:l,onChange:f("displayExcerpt")}),l&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Max number of words in excerpt"),value:u,onChange:A=>t({excerptLength:A}),min:10,max:100,required:!0}),r==="grid"&&a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:s,onChange:A=>t({columns:A}),min:2,max:6,required:!0})]})}),a.jsx("div",{...h,children:a.jsx(I1,{children:a.jsx(FO,{block:"core/rss",attributes:e})})})]})}const VD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/rss",title:"RSS",category:"widgets",description:"Display entries from any RSS or Atom feed.",keywords:["atom","feed"],textdomain:"default",attributes:{columns:{type:"number",default:2},blockLayout:{type:"string",default:"list"},feedURL:{type:"string",default:""},itemsToShow:{type:"number",default:5},displayExcerpt:{type:"boolean",default:!1},displayAuthor:{type:"boolean",default:!1},displayDate:{type:"boolean",default:!1},excerptLength:{type:"number",default:55}},supports:{align:!0,html:!1,interactivity:{clientNavigation:!0},color:{background:!0,text:!0,gradients:!0,link:!0}},editorStyle:"wp-block-rss-editor",style:"wp-block-rss"},{name:Jxe}=VD,e5e={icon:Lde,example:{attributes:{feedURL:"https://wordpress.org"}},edit:uun},dun=()=>it({name:Jxe,metadata:VD,settings:e5e}),pun=Object.freeze(Object.defineProperty({__proto__:null,init:dun,metadata:VD,name:Jxe,settings:e5e},Symbol.toStringTag,{value:"Module"})),Poe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(S0,{x:"7",y:"10",width:"10",height:"4",rx:"1",fill:"currentColor"})}),joe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"15.25",width:"6.5",height:"9.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",strokeWidth:"1.5",fill:"none"}),a.jsx(S0,{x:"16",y:"10",width:"4",height:"4",rx:"1",fill:"currentColor"})]}),Ioe=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"15.25",width:"6.5",height:"14.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",strokeWidth:"1.5",fill:"none"}),a.jsx(S0,{x:"14",y:"10",width:"4",height:"4",rx:"1",fill:"currentColor"})]}),Doe=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(S0,{x:"4.75",y:"15.25",width:"6.5",height:"14.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",fill:"none",strokeWidth:"1.5"})}),fun=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"7.75",width:"14.5",height:"8.5",rx:"1.25",stroke:"currentColor",fill:"none",strokeWidth:"1.5"}),a.jsx(S0,{x:"8",y:"11",width:"8",height:"2",fill:"currentColor"})]}),bun=a.jsxs(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:[a.jsx(S0,{x:"4.75",y:"17.25",width:"5.5",height:"14.5",transform:"rotate(-90 4.75 17.25)",stroke:"currentColor",fill:"none",strokeWidth:"1.5"}),a.jsx(S0,{x:"4",y:"7",width:"10",height:"2",fill:"currentColor"})]}),Foe=50,$oe=350,Voe=220;function Hoe(e){return e==="%"}const Uoe="4px",Xoe=[25,50,75,100];function hun({className:e,attributes:t,setAttributes:n,toggleSelection:o,isSelected:r,clientId:s}){const{label:i,showLabel:c,placeholder:l,width:u,widthUnit:d,align:p,buttonText:f,buttonPosition:b,buttonUseIcon:h,isSearchFieldHidden:g,style:z}=t,A=G(Ae=>{const{getBlockParentsByBlockName:ye,wasBlockJustInserted:Ne}=Ae(Q);return!!ye(s,"core/navigation")?.length&&Ne(s)},[s]),{__unstableMarkNextChangeAsNotPersistent:_}=Oe(Q);x.useEffect(()=>{A&&(_(),n({showLabel:!1,buttonUseIcon:!0,buttonPosition:"button-inside"}))},[_,A,n]);const v=z?.border?.radius;let M=au(t);typeof v=="number"&&(M={...M,style:{...M.style,borderRadius:`${v}px`}});const y=BO(t),[k,S]=Un("typography.fluid","layout"),C=kI(t,{typography:{fluid:k},layout:{wideSize:S?.wideSize}}),T=`wp-block-search__width-${vt(Ro)}`,E=b==="button-inside",B=b==="button-outside",N=b==="no-button",j=b==="button-only",I=x.useRef(),P=x.useRef(),$=U1({availableUnits:["%","px"],defaultValues:{"%":Foe,px:$oe}});x.useEffect(()=>{j&&!r&&n({isSearchFieldHidden:!0})},[j,r,n]),x.useEffect(()=>{!j||!r||n({isSearchFieldHidden:!1})},[j,r,n,u]);const F=()=>oe(e,E?"wp-block-search__button-inside":void 0,B?"wp-block-search__button-outside":void 0,N?"wp-block-search__no-button":void 0,j?"wp-block-search__button-only":void 0,!h&&!N?"wp-block-search__text-button":void 0,h&&!N?"wp-block-search__icon-button":void 0,j&&g?"wp-block-search__searchfield-hidden":void 0),X=[{role:"menuitemradio",title:m("Button outside"),isActive:b==="button-outside",icon:joe,onClick:()=>{n({buttonPosition:"button-outside",isSearchFieldHidden:!1})}},{role:"menuitemradio",title:m("Button inside"),isActive:b==="button-inside",icon:Ioe,onClick:()=>{n({buttonPosition:"button-inside",isSearchFieldHidden:!1})}},{role:"menuitemradio",title:m("No button"),isActive:b==="no-button",icon:Doe,onClick:()=>{n({buttonPosition:"no-button",isSearchFieldHidden:!1})}},{role:"menuitemradio",title:m("Button only"),isActive:b==="button-only",icon:Poe,onClick:()=>{n({buttonPosition:"button-only",isSearchFieldHidden:!0})}}],Z=()=>{switch(b){case"button-inside":return Ioe;case"button-outside":return joe;case"no-button":return Doe;case"button-only":return Poe}},V=()=>j?{}:{right:p!=="right",left:p==="right"},ee=()=>{const Ae=oe("wp-block-search__input",E?void 0:M.className,C.className),ye={...E?{borderRadius:v}:M.style,...C.style,textDecoration:void 0};return a.jsx("input",{type:"search",className:Ae,style:ye,"aria-label":m("Optional placeholder text"),placeholder:l?void 0:m("Optional placeholder…"),value:l,onChange:Ne=>n({placeholder:Ne.target.value}),ref:I})},te=()=>{const Ae=oe("wp-block-search__button",y.className,C.className,E?void 0:M.className,h?"has-icon":void 0,z0("button")),ye={...y.style,...C.style,...E?{borderRadius:v}:M.style},Ne=()=>{j&&n({isSearchFieldHidden:!g})};return a.jsxs(a.Fragment,{children:[h&&a.jsx("button",{type:"button",className:Ae,style:ye,"aria-label":f?v1(f):m("Search"),onClick:Ne,ref:P,children:a.jsx(wn,{icon:Dw})}),!h&&a.jsx(Ie,{identifier:"buttonText",className:Ae,style:ye,"aria-label":m("Button text"),placeholder:m("Add button text…"),withoutInteractiveFormatting:!0,value:f,onChange:je=>n({buttonText:je}),onClick:Ne})]})},J=a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsxs(Wn,{children:[a.jsx(Vt,{title:m("Show search label"),icon:bun,onClick:()=>{n({showLabel:!c})},className:c?"is-pressed":void 0}),a.jsx(Lc,{icon:Z(),label:m("Change button position"),controls:X}),!N&&a.jsx(Vt,{title:m("Use button with icon"),icon:fun,onClick:()=>{n({buttonUseIcon:!h})},className:h?"is-pressed":void 0})]})}),a.jsx(et,{children:a.jsx(Qt,{title:m("Settings"),children:a.jsxs(dt,{className:"wp-block-search__inspector-controls",spacing:4,children:[a.jsx(Ro,{__next40pxDefaultSize:!0,label:m("Width"),id:T,min:Hoe(d)?0:Voe,max:Hoe(d)?100:void 0,step:1,onChange:Ae=>{const ye=Ae===""?void 0:parseInt(Ae,10);n({width:ye})},onUnitChange:Ae=>{n({width:Ae==="%"?Foe:$oe,widthUnit:Ae})},__unstableInputWidth:"80px",value:`${u}${d}`,units:$}),a.jsx(Do,{label:m("Percentage Width"),value:Xoe.includes(u)&&d==="%"?u:void 0,hideLabelFromVision:!0,onChange:Ae=>{n({width:Ae,widthUnit:"%"})},isBlock:!0,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,children:Xoe.map(Ae=>a.jsx(Kn,{value:Ae,label:xe(m("%d%%"),Ae)},Ae))})]})})})]}),ue=Ae=>Ae?`calc(${Ae} + ${Uoe})`:void 0,ce=()=>{const Ae=E?M.style:{borderRadius:M.style?.borderRadius,borderTopLeftRadius:M.style?.borderTopLeftRadius,borderTopRightRadius:M.style?.borderTopRightRadius,borderBottomLeftRadius:M.style?.borderBottomLeftRadius,borderBottomRightRadius:M.style?.borderBottomRightRadius},ye=v!==void 0&&parseInt(v,10)!==0;if(E&&ye){if(typeof v=="object"){const{topLeft:je,topRight:ie,bottomLeft:we,bottomRight:re}=v;return{...Ae,borderTopLeftRadius:ue(je),borderTopRightRadius:ue(ie),borderBottomLeftRadius:ue(we),borderBottomRightRadius:ue(re)}}const Ne=Number.isInteger(v)?`${v}px`:v;Ae.borderRadius=`calc(${Ne} + ${Uoe})`}return Ae},me=Be({className:F(),style:{...C.style,textDecoration:void 0}}),de=oe("wp-block-search__label",C.className);return a.jsxs("div",{...me,children:[J,c&&a.jsx(Ie,{identifier:"label",className:de,"aria-label":m("Label text"),placeholder:m("Add label…"),withoutInteractiveFormatting:!0,value:i,onChange:Ae=>n({label:Ae}),style:C.style}),a.jsxs(Ca,{size:{width:u===void 0?"auto":`${u}${d}`,height:"auto"},className:oe("wp-block-search__inside-wrapper",E?M.className:void 0),style:ce(),minWidth:Voe,enable:V(),onResizeStart:(Ae,ye,Ne)=>{n({width:parseInt(Ne.offsetWidth,10),widthUnit:"px"}),o(!1)},onResizeStop:(Ae,ye,Ne,je)=>{n({width:parseInt(u+je.width,10)}),o(!0)},showHandle:r,children:[(E||B||j)&&a.jsxs(a.Fragment,{children:[ee(),te()]}),N&&ee()]})]})}const mun=[{name:"default",isDefault:!0,attributes:{buttonText:m("Search"),label:m("Search")}}],HD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/search",title:"Search",category:"widgets",description:"Help visitors find your content.",keywords:["find"],textdomain:"default",attributes:{label:{type:"string",role:"content"},showLabel:{type:"boolean",default:!0},placeholder:{type:"string",default:"",role:"content"},width:{type:"number"},widthUnit:{type:"string"},buttonText:{type:"string",role:"content"},buttonPosition:{type:"string",default:"button-outside"},buttonUseIcon:{type:"boolean",default:!1},query:{type:"object",default:{}},isSearchFieldHidden:{type:"boolean",default:!1}},supports:{align:["left","center","right"],color:{gradients:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{background:!0,text:!0}},interactivity:!0,typography:{__experimentalSkipSerialization:!0,__experimentalSelector:".wp-block-search__label, .wp-block-search__input, .wp-block-search__button",fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{color:!0,radius:!0,width:!0,__experimentalSkipSerialization:!0,__experimentalDefaultControls:{color:!0,radius:!0,width:!0}},spacing:{margin:!0},html:!1},editorStyle:"wp-block-search-editor",style:"wp-block-search"},{name:t5e}=HD,n5e={icon:Dw,example:{attributes:{buttonText:m("Search"),label:m("Search")},viewportWidth:400},variations:mun,edit:hun},gun=()=>it({name:t5e,metadata:HD,settings:n5e}),Mun=Object.freeze(Object.defineProperty({__proto__:null,init:gun,metadata:HD,name:t5e,settings:n5e},Symbol.toStringTag,{value:"Module"}));function zun(e,t,n){const[o,r]=x.useState(!1),s=Fr(t);x.useEffect(()=>{e==="css"&&!t&&!s&&r(!0)},[t,s,e]),x.useEffect(()=>{e==="css"&&(o&&t||s&&t!==s)&&(n({opacity:"alpha-channel"}),r(!1))},[o,t,s])}const Oun={div:m("The <div> element should only be used if the separator is a design element that should not be announced.")};function yun({attributes:e,setAttributes:t}){const{backgroundColor:n,opacity:o,style:r,tagName:s}=e,i=BO(e),c=i?.style?.backgroundColor,l=!!r?.color?.background;zun(o,c,t);const u=Pt("color",n),d=oe({"has-text-color":n||c,[u]:u,"has-css-opacity":o==="css","has-alpha-channel-opacity":o==="alpha-channel"},i.className),p={color:c,backgroundColor:c},f=s==="hr"?M7e:s;return a.jsxs(a.Fragment,{children:[a.jsx(et,{group:"advanced",children:a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:m("Default (<hr>)"),value:"hr"},{label:"<div>",value:"div"}],value:s,onChange:b=>t({tagName:b}),help:Oun[s]})}),a.jsx(f,{...Be({className:d,style:l?p:void 0})})]})}function Aun({attributes:e}){const{backgroundColor:t,style:n,opacity:o,tagName:r}=e,s=n?.color?.background,i=P1(e),c=Pt("color",t),l=oe({"has-text-color":t||s,[c]:c,"has-css-opacity":o==="css","has-alpha-channel-opacity":o==="alpha-channel"},i.className),u={backgroundColor:i?.style?.backgroundColor,color:c?void 0:s};return a.jsx(r,{...Be.save({className:l,style:u})})}const vun={from:[{type:"enter",regExp:/^-{3,}$/,transform:()=>Ee("core/separator")},{type:"raw",selector:"hr",schema:{hr:{}}}],to:[{type:"block",blocks:["core/spacer"],transform:({anchor:e})=>Ee("core/spacer",{anchor:e||""})}]},xun={attributes:{color:{type:"string"},customColor:{type:"string"}},save({attributes:e}){const{color:t,customColor:n}=e,o=Pt("background-color",t),r=Pt("color",t),s=oe({"has-text-color has-background":t||n,[o]:o,[r]:r}),i={backgroundColor:o?void 0:n,color:r?void 0:n};return a.jsx("hr",{...Be.save({className:s,style:i})})},migrate(e){const{color:t,customColor:n,...o}=e;return{...o,backgroundColor:t||void 0,opacity:"css",style:n?{color:{background:n}}:void 0,tagName:"hr"}}},wun=[xun],UD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/separator",title:"Separator",category:"design",description:"Create a break between ideas or sections with a horizontal separator.",keywords:["horizontal-line","hr","divider"],textdomain:"default",attributes:{opacity:{type:"string",default:"alpha-channel"},tagName:{type:"string",enum:["hr","div"],default:"hr"}},supports:{anchor:!0,align:["center","wide","full"],color:{enableContrastChecker:!1,__experimentalSkipSerialization:!0,gradients:!0,background:!0,text:!1,__experimentalDefaultControls:{background:!0}},spacing:{margin:["top","bottom"]},interactivity:{clientNavigation:!0}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"wide",label:"Wide Line"},{name:"dots",label:"Dots"}],editorStyle:"wp-block-separator-editor",style:"wp-block-separator"},{name:o5e}=UD,r5e={icon:NQe,example:{attributes:{customColor:"#065174",className:"is-style-wide"}},transforms:vun,edit:yun,save:Aun,deprecated:wun},_un=()=>it({name:o5e,metadata:UD,settings:r5e}),kun=Object.freeze(Object.defineProperty({__proto__:null,init:_un,metadata:UD,name:o5e,settings:r5e},Symbol.toStringTag,{value:"Module"}));function s5e({attributes:e,setAttributes:t}){const o=`blocks-shortcode-input-${vt(s5e)}`;return a.jsx("div",{...Be(),children:a.jsx(vo,{icon:Ide,label:m("Shortcode"),children:a.jsx(Gd,{className:"blocks-shortcode__textarea",id:o,value:e.text,"aria-label":m("Shortcode text"),placeholder:m("Write shortcode here…"),onChange:r=>t({text:r})})})})}function Sun({attributes:e}){return a.jsx(i0,{children:e.text})}const Cun={from:[{type:"shortcode",tag:"[a-z][a-z0-9_-]*",attributes:{text:{type:"string",shortcode:(e,{content:t})=>_ie(wie(t))}},priority:20}]},XD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/shortcode",title:"Shortcode",category:"widgets",description:"Insert additional custom elements with a WordPress shortcode.",textdomain:"default",attributes:{text:{type:"string",source:"raw"}},supports:{className:!1,customClassName:!1,html:!1},editorStyle:"wp-block-shortcode-editor"},{name:i5e}=XD,a5e={icon:Ide,transforms:Cun,edit:s5e,save:Sun},qun=()=>it({name:i5e,metadata:XD,settings:a5e}),Run=Object.freeze(Object.defineProperty({__proto__:null,init:qun,metadata:XD,name:i5e,settings:a5e},Symbol.toStringTag,{value:"Module"})),vN=["image"],c5e="image/*",Tun=({alt:e,attributes:{align:t,width:n,height:o,isLink:r,linkTarget:s,shouldSyncIcon:i},isSelected:c,setAttributes:l,setLogo:u,logoUrl:d,siteUrl:p,logoId:f,iconId:b,setIcon:h,canUserEdit:g})=>{const z=Yn("medium"),_=!["wide","full"].includes(t)&&z,[{naturalWidth:v,naturalHeight:M},y]=x.useState({}),[k,S]=x.useState(!1),{toggleSelection:C}=Oe(Q),{imageEditing:R,maxWidth:T,title:E}=G(ye=>{const Ne=ye(Q).getSettings();return{title:ye(Me).getEntityRecord("root","__unstableBase")?.name,imageEditing:Ne.imageEditing,maxWidth:Ne.maxWidth}},[]);x.useEffect(()=>{i&&f!==b&&l({shouldSyncIcon:!1})},[]),x.useEffect(()=>{c||S(!1)},[c]);function B(){C(!1)}function N(){C(!0)}const j=a.jsxs(a.Fragment,{children:[a.jsx("img",{className:"custom-logo",src:d,alt:e,onLoad:ye=>{y({naturalWidth:ye.target.naturalWidth,naturalHeight:ye.target.naturalHeight})}}),Nr(d)&&a.jsx(Xn,{})]});let I=j;if(r&&(I=a.jsx("a",{href:p,className:"custom-logo-link",rel:"home",title:E,onClick:ye=>ye.preventDefault(),children:j})),!_||!v||!M)return a.jsx("div",{style:{width:n,height:o},children:I});const P=120,$=n||P,F=v/M,X=$/F,Z=v<M?id:Math.ceil(id*F),V=M<v?id:Math.ceil(id/F),ee=T*2.5;let te=!1,J=!1;t==="center"?(te=!0,J=!0):jt()?t==="left"?te=!0:J=!0:t==="right"?J=!0:te=!0;const ue=f&&v&&M&&R,ce=ue&&k?a.jsx(Qze,{id:f,url:d,width:$,height:X,naturalHeight:M,naturalWidth:v,onSaveImage:ye=>{u(ye.id)},onFinishEditing:()=>{S(!1)}}):a.jsx(Ca,{size:{width:$,height:X},showHandle:c,minWidth:Z,maxWidth:ee,minHeight:V,maxHeight:ee/F,lockAspectRatio:!0,enable:{top:!1,right:te,bottom:!0,left:J},onResizeStart:B,onResizeStop:(ye,Ne,je,ie)=>{N(),l({width:parseInt($+ie.width,10),height:parseInt(X+ie.height,10)})},children:I}),de=!window?.__experimentalUseCustomizerSiteLogoUrl?p+"/wp-admin/options-general.php":p+"/wp-admin/customize.php?autofocus[section]=title_tagline",Ae=cr(m("Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. To use a custom icon that is different from your site logo, use the <a>Site Icon settings</a>."),{a:a.jsx("a",{href:de,target:"_blank",rel:"noopener noreferrer"})});return a.jsxs(a.Fragment,{children:[a.jsx(et,{children:a.jsxs(Qt,{title:m("Settings"),children:[a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Image width"),onChange:ye=>l({width:ye}),min:Z,max:ee,initialPosition:Math.min(P,ee),value:n||"",disabled:!_}),a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Link image to home"),onChange:()=>l({isLink:!r}),checked:r}),r&&a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:ye=>l({linkTarget:ye?"_blank":"_self"}),checked:s==="_blank"})}),g&&a.jsx(a.Fragment,{children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Use as Site Icon"),onChange:ye=>{l({shouldSyncIcon:ye}),h(ye?f:void 0)},checked:!!i,help:Ae})})]})}),a.jsx(bt,{group:"block",children:ue&&!k&&a.jsx(Vt,{onClick:()=>S(!0),icon:tde,label:m("Crop")})}),ce]})};function Goe({mediaURL:e,...t}){return a.jsx(Pc,{...t,mediaURL:e,allowedTypes:vN,accept:c5e})}const Koe=({media:e,itemGroupProps:t})=>{const{alt_text:n,source_url:o,slug:r,media_details:s}=e??{},i=s?.sizes?.full?.file||r;return a.jsx(tb,{...t,as:"span",children:a.jsxs(Ot,{justify:"flex-start",as:"span",children:[a.jsx("img",{src:o,alt:n}),a.jsx(Tn,{as:"span",children:a.jsx(zs,{numberOfLines:1,className:"block-library-site-logo__inspector-media-replace-title",children:i})})]})})};function Eun({attributes:e,className:t,setAttributes:n,isSelected:o}){const{width:r,shouldSyncIcon:s}=e,{siteLogoId:i,canUserEdit:c,url:l,siteIconId:u,mediaItemData:d,isRequestingMediaItem:p}=G(F=>{const{canUser:X,getEntityRecord:Z,getEditedEntityRecord:V}=F(Me),ee=X("update",{kind:"root",name:"site"}),te=ee?V("root","site"):void 0,J=Z("root","__unstableBase"),ue=ee?te?.site_logo:J?.site_logo,ce=te?.site_icon,me=ue&&F(Me).getMedia(ue,{context:"view"}),de=!!ue&&!F(Me).hasFinishedResolution("getMedia",[ue,{context:"view"}]);return{siteLogoId:ue,canUserEdit:ee,url:J?.home,mediaItemData:me,isRequestingMediaItem:de,siteIconId:ce}},[]),{getSettings:f}=G(Q),[b,h]=x.useState(),{editEntityRecord:g}=Oe(Me),z=(F,X=!1)=>{(s||X)&&A(F),g("root","site",void 0,{site_logo:F})},A=F=>g("root","site",void 0,{site_icon:F??null}),{alt_text:_,source_url:v}=d??{},M=F=>{if(s===void 0){const X=!u;n({shouldSyncIcon:X}),y(F,X);return}y(F)},y=(F,X=!1)=>{if(F){if(!F.id&&F.url){h(F.url),z(void 0);return}z(F.id,X)}},k=()=>{z(null),n({width:void 0})},{createErrorNotice:S}=Oe(mt),C=F=>{S(F,{type:"snackbar"}),h()},R=F=>{if(F?.length>1){C(m("Only one image can be used as a site logo."));return}f().mediaUpload({allowedTypes:vN,filesList:F,onFileChange([X]){if(Nr(X?.url)){h(X.url);return}M(X)},onError:C})},T={mediaURL:v,name:m(v?"Replace":"Choose logo"),onSelect:y,onError:C,onReset:k},E=c&&a.jsx(bt,{group:"other",children:a.jsx(Goe,{...T})});let B;const N=i===void 0||p;N&&(B=a.jsx(Xn,{})),x.useEffect(()=>{v&&b&&h()},[v,b]),(v||b)&&(B=a.jsxs(a.Fragment,{children:[a.jsx(Tun,{alt:_,attributes:e,className:t,isSelected:o,setAttributes:n,logoUrl:b||v,setLogo:z,logoId:d?.id||i,siteUrl:l,setIcon:A,iconId:u,canUserEdit:c}),c&&a.jsx(Tz,{onFilesDrop:R})]}));const j=F=>{const X=oe("block-editor-media-placeholder",t);return a.jsx(vo,{className:X,preview:B,withIllustration:!0,style:{width:r},children:F})},I=oe(t,{"is-default-size":!r,"is-transient":b}),P=Be({className:I}),$=(c||v)&&a.jsx(et,{children:a.jsx(Qt,{title:m("Media"),children:a.jsx("div",{className:"block-library-site-logo__inspector-media-replace-container",children:c?a.jsxs(a.Fragment,{children:[a.jsx(Goe,{...T,name:v?a.jsx(Koe,{media:d}):m("Choose logo"),renderToggle:F=>a.jsx(Ce,{...F,__next40pxDefaultSize:!0,children:b?a.jsx(Xn,{}):F.children})}),a.jsx(Tz,{onFilesDrop:R})]}):a.jsx(Koe,{media:d,itemGroupProps:{isBordered:!0,className:"block-library-site-logo__inspector-readonly-logo-preview"}})})})});return a.jsxs("div",{...P,children:[E,$,(!!v||!!b)&&B,(N||!b&&!v&&!c)&&a.jsx(vo,{className:"site-logo_placeholder",withIllustration:!0,children:N&&a.jsx("span",{className:"components-placeholder__preview",children:a.jsx(Xn,{})})}),!N&&!b&&!v&&c&&a.jsx(iu,{onSelect:M,accept:c5e,allowedTypes:vN,onError:C,placeholder:j,mediaLibraryButton:({open:F})=>a.jsx(Ce,{__next40pxDefaultSize:!0,icon:cm,variant:"primary",label:m("Choose logo"),showTooltip:!0,tooltipPosition:"middle right",onClick:()=>{F()}})})]})}const Wun={to:[{type:"block",blocks:["core/site-title"],transform:({isLink:e,linkTarget:t})=>Ee("core/site-title",{isLink:e,linkTarget:t})}]},GD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/site-logo",title:"Site Logo",category:"theme",description:"Display an image to represent this site. Update this block and the changes apply everywhere.",textdomain:"default",attributes:{width:{type:"number"},isLink:{type:"boolean",default:!0,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"},shouldSyncIcon:{type:"boolean"}},example:{viewportWidth:500,attributes:{width:350,className:"block-editor-block-types-list__site-logo-example"}},supports:{html:!1,align:!0,alignWide:!1,color:{__experimentalDuotone:"img, .components-placeholder__illustration, .components-placeholder::before",text:!1,background:!1},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"rounded",label:"Rounded"}],editorStyle:"wp-block-site-logo-editor",style:"wp-block-site-logo"},{name:l5e}=GD,u5e={icon:LQe,example:{},edit:Eun,transforms:Wun},Nun=()=>it({name:l5e,metadata:GD,settings:u5e}),Bun=Object.freeze(Object.defineProperty({__proto__:null,init:Nun,metadata:GD,name:l5e,settings:u5e},Symbol.toStringTag,{value:"Module"}));function Lun({attributes:e,setAttributes:t,insertBlocksAfter:n}){const{textAlign:o,level:r,levelOptions:s}=e,{canUserEdit:i,tagline:c}=G(b=>{const{canUser:h,getEntityRecord:g,getEditedEntityRecord:z}=b(Me),A=h("update",{kind:"root",name:"site"}),_=A?z("root","site"):{},v=g("root","__unstableBase");return{canUserEdit:A,tagline:A?_?.description:v?.description}},[]),l=r===0?"p":`h${r}`,{editEntityRecord:u}=Oe(Me);function d(b){u("root","site",void 0,{description:b})}const p=Be({className:oe({[`has-text-align-${o}`]:o,"wp-block-site-tagline__placeholder":!i&&!c})}),f=i?a.jsx(Ie,{allowedFormats:[],onChange:d,"aria-label":m("Site tagline text"),placeholder:m("Write site tagline…"),tagName:l,value:c,disableLineBreaks:!0,__unstableOnSplitAtEnd:()=>n(Ee(Mr())),...p}):a.jsx(l,{...p,children:c||m("Site Tagline placeholder")});return a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:r,options:s,onChange:b=>t({level:b})}),a.jsx(nr,{onChange:b=>t({textAlign:b}),value:o})]}),f]})}const Pun=a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",children:a.jsx(he,{d:"M4 10.5h16V9H4v1.5ZM4 15h9v-1.5H4V15Z"})}),jun={attributes:{textAlign:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Iun=[jun],KD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/site-tagline",title:"Site Tagline",category:"theme",description:"Describe in a few words what the site is about. The tagline can be used in search results or when sharing on social networks even if it’s not displayed in the theme design.",keywords:["description"],textdomain:"default",attributes:{textAlign:{type:"string"},level:{type:"number",default:0},levelOptions:{type:"array",default:[0,1,2,3,4,5,6]}},example:{viewportWidth:350,attributes:{textAlign:"center"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},editorStyle:"wp-block-site-tagline-editor",style:"wp-block-site-tagline"},{name:d5e}=KD,p5e={icon:Pun,edit:Lun,deprecated:Iun},Dun=()=>it({name:d5e,metadata:KD,settings:p5e}),Fun=Object.freeze(Object.defineProperty({__proto__:null,init:Dun,metadata:KD,name:d5e,settings:p5e},Symbol.toStringTag,{value:"Module"}));function $un({attributes:e,setAttributes:t,insertBlocksAfter:n}){const{level:o,levelOptions:r,textAlign:s,isLink:i,linkTarget:c}=e,{canUserEdit:l,title:u}=G(z=>{const{canUser:A,getEntityRecord:_,getEditedEntityRecord:v}=z(Me),M=A("update",{kind:"root",name:"site"}),y=M?v("root","site"):{},k=_("root","__unstableBase");return{canUserEdit:M,title:M?y?.title:k?.name}},[]),{editEntityRecord:d}=Oe(Me),p=Qo();function f(z){d("root","site",void 0,{title:z})}const b=o===0?"p":`h${o}`,h=Be({className:oe({[`has-text-align-${s}`]:s,"wp-block-site-title__placeholder":!l&&!u})}),g=l?a.jsx(b,{...h,children:a.jsx(Ie,{tagName:i?"a":"span",href:i?"#site-title-pseudo-link":void 0,"aria-label":m("Site title text"),placeholder:m("Write site title…"),value:u,onChange:f,allowedFormats:[],disableLineBreaks:!0,__unstableOnSplitAtEnd:()=>n(Ee(Mr()))})}):a.jsx(b,{...h,children:i?a.jsx("a",{href:"#site-title-pseudo-link",onClick:z=>z.preventDefault(),children:Lt(u)||m("Site Title placeholder")}):a.jsx("span",{children:Lt(u)||m("Site Title placeholder")})});return a.jsxs(a.Fragment,{children:[a.jsxs(bt,{group:"block",children:[a.jsx(Cm,{value:o,options:r,onChange:z=>t({level:z})}),a.jsx(nr,{value:s,onChange:z=>{t({textAlign:z})}})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({isLink:!0,linkTarget:"_self"})},dropdownMenuProps:p,children:[a.jsx(tt,{hasValue:()=>!i,label:m("Make title link to home"),onDeselect:()=>t({isLink:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Make title link to home"),onChange:()=>t({isLink:!i}),checked:i})}),i&&a.jsx(tt,{hasValue:()=>c!=="_self",label:m("Open in new tab"),onDeselect:()=>t({linkTarget:"_self"}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open in new tab"),onChange:z=>t({linkTarget:z?"_blank":"_self"}),checked:c==="_blank"})})]})}),g]})}const Vun={attributes:{level:{type:"number",default:1},textAlign:{type:"string"},isLink:{type:"boolean",default:!0},linkTarget:{type:"string",default:"_self"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0}},save(){return null},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Hun=[Vun],Uun={to:[{type:"block",blocks:["core/site-logo"],transform:({isLink:e,linkTarget:t})=>Ee("core/site-logo",{isLink:e,linkTarget:t})}]},YD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/site-title",title:"Site Title",category:"theme",description:"Displays the name of this site. Update the block, and the changes apply everywhere it’s used. This will also appear in the browser title bar and in search results.",textdomain:"default",attributes:{level:{type:"number",default:1},levelOptions:{type:"array",default:[0,1,2,3,4,5,6]},textAlign:{type:"string"},isLink:{type:"boolean",default:!0,role:"content"},linkTarget:{type:"string",default:"_self",role:"content"}},example:{viewportWidth:500},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0,link:!0}},spacing:{padding:!0,margin:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0}},editorStyle:"wp-block-site-title-editor",style:"wp-block-site-title"},{name:f5e}=YD,b5e={icon:bQe,example:{viewportWidth:350,attributes:{textAlign:"center"}},edit:$un,transforms:Uun,deprecated:Hun},Xun=()=>it({name:f5e,metadata:YD,settings:b5e}),Gun=Object.freeze(Object.defineProperty({__proto__:null,init:Xun,metadata:YD,name:f5e,settings:b5e},Symbol.toStringTag,{value:"Module"})),Kun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M13.582,8.182C11.934,8.367,9.78,8.49,8.238,9.166c-1.781,0.769-3.03,2.337-3.03,4.644 c0,2.953,1.86,4.429,4.253,4.429c2.02,0,3.125-0.477,4.685-2.065c0.516,0.747,0.685,1.109,1.629,1.894 c0.212,0.114,0.483,0.103,0.672-0.066l0.006,0.006c0.567-0.505,1.599-1.401,2.18-1.888c0.231-0.188,0.19-0.496,0.009-0.754 c-0.52-0.718-1.072-1.303-1.072-2.634V8.305c0-1.876,0.133-3.599-1.249-4.891C15.23,2.369,13.422,2,12.04,2 C9.336,2,6.318,3.01,5.686,6.351C5.618,6.706,5.877,6.893,6.109,6.945l2.754,0.298C9.121,7.23,9.308,6.977,9.357,6.72 c0.236-1.151,1.2-1.706,2.284-1.706c0.584,0,1.249,0.215,1.595,0.738c0.398,0.584,0.346,1.384,0.346,2.061V8.182z M13.049,14.088 c-0.451,0.8-1.169,1.291-1.967,1.291c-1.09,0-1.728-0.83-1.728-2.061c0-2.42,2.171-2.86,4.227-2.86v0.615 C13.582,12.181,13.608,13.104,13.049,14.088z M20.683,19.339C18.329,21.076,14.917,22,11.979,22c-4.118,0-7.826-1.522-10.632-4.057 c-0.22-0.199-0.024-0.471,0.241-0.317c3.027,1.762,6.771,2.823,10.639,2.823c2.608,0,5.476-0.541,8.115-1.66 C20.739,18.62,21.072,19.051,20.683,19.339z M21.336,21.043c-0.194,0.163-0.379,0.076-0.293-0.139 c0.284-0.71,0.92-2.298,0.619-2.684c-0.301-0.386-1.99-0.183-2.749-0.092c-0.23,0.027-0.266-0.173-0.059-0.319 c1.348-0.946,3.555-0.673,3.811-0.356C22.925,17.773,22.599,19.986,21.336,21.043z"})}),Yun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289"})}),Zun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M7.799,5.698c0.589,0,1.12,0.051,1.606,0.156c0.482,0.102,0.894,0.273,1.241,0.507c0.344,0.235,0.612,0.546,0.804,0.938 c0.188,0.387,0.281,0.871,0.281,1.443c0,0.619-0.141,1.137-0.421,1.551c-0.284,0.413-0.7,0.751-1.255,1.014 c0.756,0.218,1.317,0.601,1.689,1.146c0.374,0.549,0.557,1.205,0.557,1.975c0,0.623-0.12,1.161-0.359,1.612 c-0.241,0.457-0.569,0.828-0.973,1.114c-0.408,0.288-0.876,0.5-1.399,0.637C9.052,17.931,8.514,18,7.963,18H2V5.698H7.799 M7.449,10.668c0.481,0,0.878-0.114,1.192-0.345c0.311-0.228,0.463-0.603,0.463-1.119c0-0.286-0.051-0.523-0.152-0.707 C8.848,8.315,8.711,8.171,8.536,8.07C8.362,7.966,8.166,7.894,7.94,7.854c-0.224-0.044-0.457-0.06-0.697-0.06H4.709v2.874H7.449z M7.6,15.905c0.267,0,0.521-0.024,0.759-0.077c0.243-0.053,0.457-0.137,0.637-0.261c0.182-0.12,0.332-0.283,0.441-0.491 C9.547,14.87,9.6,14.602,9.6,14.278c0-0.633-0.18-1.084-0.533-1.357c-0.356-0.27-0.83-0.404-1.413-0.404H4.709v3.388L7.6,15.905z M16.162,15.864c0.367,0.358,0.897,0.538,1.583,0.538c0.493,0,0.92-0.125,1.277-0.374c0.354-0.248,0.571-0.514,0.654-0.79h2.155 c-0.347,1.072-0.872,1.838-1.589,2.299C19.534,18,18.67,18.23,17.662,18.23c-0.701,0-1.332-0.113-1.899-0.337 c-0.567-0.227-1.041-0.544-1.439-0.958c-0.389-0.415-0.689-0.907-0.904-1.484c-0.213-0.574-0.32-1.21-0.32-1.899 c0-0.666,0.11-1.288,0.329-1.863c0.222-0.577,0.529-1.075,0.933-1.492c0.406-0.42,0.885-0.751,1.444-0.994 c0.558-0.241,1.175-0.363,1.857-0.363c0.754,0,1.414,0.145,1.98,0.44c0.563,0.291,1.026,0.686,1.389,1.181 c0.363,0.493,0.622,1.057,0.783,1.69c0.16,0.632,0.217,1.292,0.171,1.983h-6.428C15.557,14.84,15.795,15.506,16.162,15.864 M18.973,11.184c-0.291-0.321-0.783-0.496-1.384-0.496c-0.39,0-0.714,0.066-0.973,0.2c-0.254,0.132-0.461,0.297-0.621,0.491 c-0.157,0.197-0.265,0.405-0.328,0.628c-0.063,0.217-0.101,0.413-0.111,0.587h3.98C19.478,11.969,19.265,11.509,18.973,11.184z M15.057,7.738h4.985V6.524h-4.985L15.057,7.738z"})}),Qun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z"})}),h5e=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})}),Jun=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22.016,8.84c-0.002-0.013-0.005-0.025-0.007-0.037c-0.005-0.025-0.008-0.048-0.015-0.072 c-0.003-0.015-0.01-0.028-0.013-0.042c-0.008-0.02-0.015-0.04-0.023-0.062c-0.007-0.015-0.013-0.028-0.02-0.042 c-0.008-0.02-0.018-0.037-0.03-0.057c-0.007-0.013-0.017-0.027-0.025-0.038c-0.012-0.018-0.023-0.035-0.035-0.052 c-0.01-0.013-0.02-0.025-0.03-0.037c-0.015-0.017-0.028-0.032-0.043-0.045c-0.01-0.012-0.022-0.023-0.035-0.035 c-0.015-0.015-0.032-0.028-0.048-0.04c-0.012-0.01-0.025-0.02-0.037-0.03c-0.005-0.003-0.01-0.008-0.015-0.012l-9.161-6.096 c-0.289-0.192-0.666-0.192-0.955,0L2.359,8.237C2.354,8.24,2.349,8.245,2.344,8.249L2.306,8.277 c-0.017,0.013-0.033,0.027-0.048,0.04C2.246,8.331,2.234,8.342,2.222,8.352c-0.015,0.015-0.028,0.03-0.042,0.047 c-0.012,0.013-0.022,0.023-0.03,0.037C2.139,8.453,2.125,8.471,2.115,8.488C2.107,8.501,2.099,8.514,2.09,8.526 C2.079,8.548,2.069,8.565,2.06,8.585C2.054,8.6,2.047,8.613,2.04,8.626C2.032,8.648,2.025,8.67,2.019,8.69 c-0.005,0.013-0.01,0.027-0.013,0.042C1.999,8.755,1.995,8.778,1.99,8.803C1.989,8.817,1.985,8.828,1.984,8.84 C1.978,8.879,1.975,8.915,1.975,8.954v6.093c0,0.037,0.003,0.075,0.008,0.112c0.002,0.012,0.005,0.025,0.007,0.038 c0.005,0.023,0.008,0.047,0.015,0.072c0.003,0.015,0.008,0.028,0.013,0.04c0.007,0.022,0.013,0.042,0.022,0.063 c0.007,0.015,0.013,0.028,0.02,0.04c0.008,0.02,0.018,0.038,0.03,0.058c0.007,0.013,0.015,0.027,0.025,0.038 c0.012,0.018,0.023,0.035,0.035,0.052c0.01,0.013,0.02,0.025,0.03,0.037c0.013,0.015,0.028,0.032,0.042,0.045 c0.012,0.012,0.023,0.023,0.035,0.035c0.015,0.013,0.032,0.028,0.048,0.04l0.038,0.03c0.005,0.003,0.01,0.007,0.013,0.01 l9.163,6.095C11.668,21.953,11.833,22,12,22c0.167,0,0.332-0.047,0.478-0.144l9.163-6.095l0.015-0.01 c0.013-0.01,0.027-0.02,0.037-0.03c0.018-0.013,0.035-0.028,0.048-0.04c0.013-0.012,0.025-0.023,0.035-0.035 c0.017-0.015,0.03-0.032,0.043-0.045c0.01-0.013,0.02-0.025,0.03-0.037c0.013-0.018,0.025-0.035,0.035-0.052 c0.008-0.013,0.018-0.027,0.025-0.038c0.012-0.02,0.022-0.038,0.03-0.058c0.007-0.013,0.013-0.027,0.02-0.04 c0.008-0.022,0.015-0.042,0.023-0.063c0.003-0.013,0.01-0.027,0.013-0.04c0.007-0.025,0.01-0.048,0.015-0.072 c0.002-0.013,0.005-0.027,0.007-0.037c0.003-0.042,0.007-0.079,0.007-0.117V8.954C22.025,8.915,22.022,8.879,22.016,8.84z M12.862,4.464l6.751,4.49l-3.016,2.013l-3.735-2.492V4.464z M11.138,4.464v4.009l-3.735,2.494L4.389,8.954L11.138,4.464z M3.699,10.562L5.853,12l-2.155,1.438V10.562z M11.138,19.536l-6.749-4.491l3.015-2.011l3.735,2.492V19.536z M12,14.035L8.953,12 L12,9.966L15.047,12L12,14.035z M12.862,19.536v-4.009l3.735-2.492l3.016,2.011L12.862,19.536z M20.303,13.438L18.147,12 l2.156-1.438L20.303,13.438z"})}),edn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M 18.19 5.636 18.19 2 18.188 2 14.553 2 14.19 2.366 12.474 5.636 11.935 6 5.81 6 5.81 10.994 9.177 10.994 9.477 11.357 5.81 18.363 5.81 22 5.811 22 9.447 22 9.81 21.634 11.526 18.364 12.065 18 18.19 18 18.19 13.006 14.823 13.006 14.523 12.641 18.19 5.636z"})}),tdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,22C6.486,22,2,17.514,2,12S6.486,2,12,2c5.514,0,10,4.486,10,10S17.514,22,12,22z M20.434,13.369 c-0.292-0.092-2.644-0.794-5.32-0.365c1.117,3.07,1.572,5.57,1.659,6.09C18.689,17.798,20.053,15.745,20.434,13.369z M15.336,19.876c-0.127-0.749-0.623-3.361-1.822-6.477c-0.019,0.006-0.038,0.013-0.056,0.019c-4.818,1.679-6.547,5.02-6.701,5.334 c1.448,1.129,3.268,1.803,5.243,1.803C13.183,20.555,14.311,20.313,15.336,19.876z M5.654,17.724 c0.193-0.331,2.538-4.213,6.943-5.637c0.111-0.036,0.224-0.07,0.337-0.102c-0.214-0.485-0.448-0.971-0.692-1.45 c-4.266,1.277-8.405,1.223-8.778,1.216c-0.003,0.087-0.004,0.174-0.004,0.261C3.458,14.207,4.29,16.21,5.654,17.724z M3.639,10.264 c0.382,0.005,3.901,0.02,7.897-1.041c-1.415-2.516-2.942-4.631-3.167-4.94C5.979,5.41,4.193,7.613,3.639,10.264z M9.998,3.709 c0.236,0.316,1.787,2.429,3.187,5c3.037-1.138,4.323-2.867,4.477-3.085C16.154,4.286,14.17,3.471,12,3.471 C11.311,3.471,10.641,3.554,9.998,3.709z M18.612,6.612C18.432,6.855,17,8.69,13.842,9.979c0.199,0.407,0.389,0.821,0.567,1.237 c0.063,0.148,0.124,0.295,0.184,0.441c2.842-0.357,5.666,0.215,5.948,0.275C20.522,9.916,19.801,8.065,18.612,6.612z"})}),ndn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,6.134L6.069,9.797L2,6.54l5.883-3.843L12,6.134z M2,13.054l5.883,3.843L12,13.459L6.069,9.797L2,13.054z M12,13.459 l4.116,3.439L22,13.054l-4.069-3.257L12,13.459z M22,6.54l-5.884-3.843L12,6.134l5.931,3.663L22,6.54z M12.011,14.2l-4.129,3.426 l-1.767-1.153v1.291l5.896,3.539l5.897-3.539v-1.291l-1.769,1.153L12.011,14.2z"})}),odn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M9.16033,4.038c0-.27174.02717-.43478.48913-.43478h6.22283c1.087,0,1.68478.92391,2.11957,2.663l.35326,1.38587h1.05978C19.59511,3.712,19.75815,2,19.75815,2s-2.663.29891-4.23913.29891h-7.962L3.29076,2.163v1.1413L4.731,3.57609c1.00543.19022,1.25.40761,1.33152,1.33152,0,0,.08152,2.71739.08152,7.20109s-.08152,7.17391-.08152,7.17391c0,.81522-.32609,1.11413-1.33152,1.30435l-1.44022.27174V22l4.2663-.13587h7.11957c1.60326,0,5.32609.13587,5.32609.13587.08152-.97826.625-5.40761.70652-5.89674H19.7038L18.644,18.52174c-.84239,1.90217-2.06522,2.038-3.42391,2.038H11.1712c-1.3587,0-2.01087-.54348-2.01087-1.712V12.65217s3.0163,0,3.99457.08152c.76087.05435,1.22283.27174,1.46739,1.33152l.32609,1.413h1.16848l-.08152-3.55978.163-3.587H15.02989l-.38043,1.57609c-.24457,1.03261-.40761,1.22283-1.46739,1.33152-1.38587.13587-4.02174.1087-4.02174.1087Z"})}),rdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"})}),sdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M2,8.667V12c5.515,0,10,4.485,10,10h3.333C15.333,14.637,9.363,8.667,2,8.667z M2,2v3.333 c9.19,0,16.667,7.477,16.667,16.667H22C22,10.955,13.045,2,2,2z M4.5,17C3.118,17,2,18.12,2,19.5S3.118,22,4.5,22S7,20.88,7,19.5 S5.882,17,4.5,17z"})}),idn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M6.94026,15.1412c.00437.01213.108.29862.168.44064a6.55008,6.55008,0,1,0,6.03191-9.09557,6.68654,6.68654,0,0,0-2.58357.51467A8.53914,8.53914,0,0,0,8.21268,8.61344L8.209,8.61725V3.22948l9.0504-.00008c.32934-.0036.32934-.46353.32934-.61466s0-.61091-.33035-.61467L7.47248,2a.43.43,0,0,0-.43131.42692v7.58355c0,.24466.30476.42131.58793.4819.553.11812.68074-.05864.81617-.2457l.018-.02481A10.52673,10.52673,0,0,1,9.32258,9.258a5.35268,5.35268,0,1,1,7.58985,7.54976,5.417,5.417,0,0,1-3.80867,1.56365,5.17483,5.17483,0,0,1-2.69822-.74478l.00342-4.61111a2.79372,2.79372,0,0,1,.71372-1.78792,2.61611,2.61611,0,0,1,1.98282-.89477,2.75683,2.75683,0,0,1,1.95525.79477,2.66867,2.66867,0,0,1,.79656,1.909,2.724,2.724,0,0,1-2.75849,2.748,4.94651,4.94651,0,0,1-.86254-.13719c-.31234-.093-.44519.34058-.48892.48349-.16811.54966.08453.65862.13687.67489a3.75751,3.75751,0,0,0,1.25234.18375,3.94634,3.94634,0,1,0-2.82444-6.742,3.67478,3.67478,0,0,0-1.13028,2.584l-.00041.02323c-.0035.11667-.00579,2.881-.00644,3.78811l-.00407-.00451a6.18521,6.18521,0,0,1-1.0851-1.86092c-.10544-.27856-.34358-.22925-.66857-.12917-.14192.04372-.57386.17677-.47833.489Zm4.65165-1.08338a.51346.51346,0,0,0,.19513.31818l.02276.022a.52945.52945,0,0,0,.3517.18416.24242.24242,0,0,0,.16577-.0611c.05473-.05082.67382-.67812.73287-.738l.69041.68819a.28978.28978,0,0,0,.21437.11032.53239.53239,0,0,0,.35708-.19486c.29792-.30419.14885-.46821.07676-.54751l-.69954-.69975.72952-.73469c.16-.17311.01874-.35708-.12218-.498-.20461-.20461-.402-.25742-.52855-.14083l-.7254.72665-.73354-.73375a.20128.20128,0,0,0-.14179-.05695.54135.54135,0,0,0-.34379.19648c-.22561.22555-.274.38149-.15656.5059l.73374.7315-.72942.73072A.26589.26589,0,0,0,11.59191,14.05782Zm1.59866-9.915A8.86081,8.86081,0,0,0,9.854,4.776a.26169.26169,0,0,0-.16938.22759.92978.92978,0,0,0,.08619.42094c.05682.14524.20779.531.50006.41955a8.40969,8.40969,0,0,1,2.91968-.55484,7.87875,7.87875,0,0,1,3.086.62286,8.61817,8.61817,0,0,1,2.30562,1.49315.2781.2781,0,0,0,.18318.07586c.15529,0,.30425-.15253.43167-.29551.21268-.23861.35873-.4369.1492-.63538a8.50425,8.50425,0,0,0-2.62312-1.694A9.0177,9.0177,0,0,0,13.19058,4.14283ZM19.50945,18.6236h0a.93171.93171,0,0,0-.36642-.25406.26589.26589,0,0,0-.27613.06613l-.06943.06929A7.90606,7.90606,0,0,1,7.60639,18.505a7.57284,7.57284,0,0,1-1.696-2.51537,8.58715,8.58715,0,0,1-.5147-1.77754l-.00871-.04864c-.04939-.25873-.28755-.27684-.62981-.22448-.14234.02178-.5755.088-.53426.39969l.001.00712a9.08807,9.08807,0,0,0,15.406,4.99094c.00193-.00192.04753-.04718.0725-.07436C19.79425,19.16234,19.87422,18.98728,19.50945,18.6236Z"})}),adn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M6.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5S9.25,7,6.5,7z M17.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5 S20.25,7,17.5,7z"})}),cdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M17.573,2c0,0-9.197,0-10.668,0S5,3.107,5,3.805s0,16.948,0,16.948c0,0.785,0.422,1.077,0.66,1.172 c0.238,0.097,0.892,0.177,1.285-0.275c0,0,5.035-5.843,5.122-5.93c0.132-0.132,0.132-0.132,0.262-0.132h3.26 c1.368,0,1.588-0.977,1.732-1.552c0.078-0.318,0.692-3.428,1.225-6.122l0.675-3.368C19.56,2.893,19.14,2,17.573,2z M16.495,7.22 c-0.053,0.252-0.372,0.518-0.665,0.518c-0.293,0-4.157,0-4.157,0c-0.467,0-0.802,0.318-0.802,0.787v0.508 c0,0.467,0.337,0.798,0.805,0.798c0,0,3.197,0,3.528,0s0.655,0.362,0.583,0.715c-0.072,0.353-0.407,2.102-0.448,2.295 c-0.04,0.193-0.262,0.523-0.655,0.523c-0.33,0-2.88,0-2.88,0c-0.523,0-0.683,0.068-1.033,0.503 c-0.35,0.437-3.505,4.223-3.505,4.223c-0.032,0.035-0.063,0.027-0.063-0.015V4.852c0-0.298,0.26-0.648,0.648-0.648 c0,0,8.228,0,8.562,0c0.315,0,0.61,0.297,0.528,0.683L16.495,7.22z"})}),ldn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M17.3,17.5c-0.2,0.8-0.5,1.4-1,1.9c-0.4,0.5-1,0.9-1.7,1.2C13.9,20.9,13.1,21,12,21c-0.6,0-1.3-0.1-1.9-0.2 c-0.6-0.1-1.1-0.4-1.6-0.7c-0.5-0.3-0.9-0.7-1.2-1.2c-0.3-0.5-0.5-1.1-0.5-1.7h1.5c0.1,0.5,0.2,0.9,0.5,1.2 c0.2,0.3,0.5,0.6,0.9,0.8c0.3,0.2,0.7,0.3,1.1,0.4c0.4,0.1,0.8,0.1,1.2,0.1c1.4,0,2.5-0.4,3.1-1.2c0.6-0.8,1-2,1-3.5v-1.7h0 c-0.4,0.8-0.9,1.4-1.6,1.9c-0.7,0.5-1.5,0.7-2.4,0.7c-1,0-1.9-0.2-2.6-0.5C8.7,15,8.1,14.5,7.7,14c-0.5-0.6-0.8-1.3-1-2.1 c-0.2-0.8-0.3-1.6-0.3-2.5c0-0.9,0.1-1.7,0.4-2.5c0.3-0.8,0.6-1.5,1.1-2c0.5-0.6,1.1-1,1.8-1.4C10.3,3.2,11.1,3,12,3 c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.9,0.8c0.3,0.3,0.5,0.6,0.6,1h0V3.4h1.5V15 C17.6,15.9,17.5,16.7,17.3,17.5z M13.8,14.1c0.5-0.3,0.9-0.7,1.3-1.1c0.3-0.5,0.6-1,0.8-1.6c0.2-0.6,0.3-1.2,0.3-1.9 c0-0.6-0.1-1.2-0.2-1.9c-0.1-0.6-0.4-1.2-0.7-1.7c-0.3-0.5-0.7-0.9-1.3-1.2c-0.5-0.3-1.1-0.5-1.9-0.5s-1.4,0.2-1.9,0.5 c-0.5,0.3-1,0.7-1.3,1.2C8.5,6.4,8.3,7,8.1,7.6C8,8.2,7.9,8.9,7.9,9.5c0,0.6,0.1,1.3,0.2,1.9C8.3,12,8.6,12.5,8.9,13 c0.3,0.5,0.8,0.8,1.3,1.1c0.5,0.3,1.1,0.4,1.9,0.4C12.7,14.5,13.3,14.4,13.8,14.1z"})}),udn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.02,10.18v3.72v0.01h5.51c-0.26,1.57-1.67,4.22-5.5,4.22c-3.31,0-6.01-2.75-6.01-6.12s2.7-6.12,6.01-6.12 c1.87,0,3.13,0.8,3.85,1.48l2.84-2.76C16.99,2.99,14.73,2,12.03,2c-5.52,0-10,4.48-10,10s4.48,10,10,10c5.77,0,9.6-4.06,9.6-9.77 c0-0.83-0.11-1.42-0.25-2.05H12.02z"})}),ddn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,2C6.477,2,2,6.477,2,12c0,4.419,2.865,8.166,6.839,9.489c0.5,0.09,0.682-0.218,0.682-0.484 c0-0.236-0.009-0.866-0.014-1.699c-2.782,0.602-3.369-1.34-3.369-1.34c-0.455-1.157-1.11-1.465-1.11-1.465 c-0.909-0.62,0.069-0.608,0.069-0.608c1.004,0.071,1.532,1.03,1.532,1.03c0.891,1.529,2.341,1.089,2.91,0.833 c0.091-0.647,0.349-1.086,0.635-1.337c-2.22-0.251-4.555-1.111-4.555-4.943c0-1.091,0.39-1.984,1.03-2.682 C6.546,8.54,6.202,7.524,6.746,6.148c0,0,0.84-0.269,2.75,1.025C10.295,6.95,11.15,6.84,12,6.836 c0.85,0.004,1.705,0.114,2.504,0.336c1.909-1.294,2.748-1.025,2.748-1.025c0.546,1.376,0.202,2.394,0.1,2.646 c0.64,0.699,1.026,1.591,1.026,2.682c0,3.841-2.337,4.687-4.565,4.935c0.359,0.307,0.679,0.917,0.679,1.852 c0,1.335-0.012,2.415-0.012,2.741c0,0.269,0.18,0.579,0.688,0.481C19.138,20.161,22,16.416,22,12C22,6.477,17.523,2,12,2z"})}),pdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M10.8001 4.69937V10.6494C10.8001 11.1001 10.9791 11.5323 11.2978 11.851C11.6165 12.1697 12.0487 12.3487 12.4994 12.3487C12.9501 12.3487 13.3824 12.1697 13.7011 11.851C14.0198 11.5323 14.1988 11.1001 14.1988 10.6494V6.69089C15.2418 7.05861 16.1371 7.75537 16.7496 8.67617C17.3622 9.59698 17.6589 10.6919 17.595 11.796C17.5311 12.9001 17.1101 13.9535 16.3954 14.7975C15.6807 15.6415 14.711 16.2303 13.6325 16.4753C12.5541 16.7202 11.4252 16.608 10.4161 16.1555C9.40691 15.703 8.57217 14.9348 8.03763 13.9667C7.50308 12.9985 7.29769 11.8828 7.45242 10.7877C7.60714 9.69266 8.11359 8.67755 8.89545 7.89537C9.20904 7.57521 9.38364 7.14426 9.38132 6.69611C9.37899 6.24797 9.19994 5.81884 8.88305 5.50195C8.56616 5.18506 8.13704 5.00601 7.68889 5.00369C7.24075 5.00137 6.80979 5.17597 6.48964 5.48956C5.09907 6.8801 4.23369 8.7098 4.04094 10.6669C3.84819 12.624 4.34 14.5873 5.43257 16.2224C6.52515 17.8575 8.15088 19.0632 10.0328 19.634C11.9146 20.2049 13.9362 20.1055 15.753 19.3529C17.5699 18.6003 19.0695 17.241 19.9965 15.5066C20.9234 13.7722 21.2203 11.7701 20.8366 9.84133C20.4528 7.91259 19.4122 6.17658 17.892 4.92911C16.3717 3.68163 14.466 2.99987 12.4994 3C12.0487 3 11.6165 3.17904 11.2978 3.49773C10.9791 3.81643 10.8001 4.24867 10.8001 4.69937Z"})}),fdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"})}),bdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M 12.0002 1.5 C 6.2006 1.5 1.5 6.2011 1.5 11.9998 C 1.5 17.799 6.2006 22.5 12.0002 22.5 C 17.799 22.5 22.5 17.799 22.5 11.9998 C 22.5 6.2011 17.799 1.5 12.0002 1.5 Z M 16.1974 16.2204 C 14.8164 16.2152 13.9346 15.587 13.3345 14.1859 L 13.1816 13.8451 L 11.8541 10.8101 C 11.4271 9.7688 10.3526 9.0712 9.1801 9.0712 C 7.5695 9.0712 6.2593 10.3851 6.2593 12.001 C 6.2593 13.6165 7.5695 14.9303 9.1801 14.9303 C 10.272 14.9303 11.2651 14.3275 11.772 13.3567 C 11.7893 13.3235 11.8239 13.302 11.863 13.3038 C 11.9007 13.3054 11.9353 13.3288 11.9504 13.3632 L 12.4865 14.6046 C 12.5016 14.639 12.4956 14.6778 12.4723 14.7069 C 11.6605 15.6995 10.4602 16.2683 9.1801 16.2683 C 6.8331 16.2683 4.9234 14.3536 4.9234 12.001 C 4.9234 9.6468 6.833 7.732 9.1801 7.732 C 10.9572 7.732 12.3909 8.6907 13.1138 10.3636 C 13.1206 10.3802 13.8412 12.0708 14.4744 13.5191 C 14.8486 14.374 15.1462 14.896 16.1288 14.9292 C 17.0663 14.9613 17.7538 14.4122 17.7538 13.6485 C 17.7538 12.9691 17.3321 12.8004 16.3803 12.4822 C 14.7365 11.9398 13.845 11.3861 13.845 10.0182 C 13.845 8.6809 14.7667 7.8162 16.192 7.8162 C 17.1288 7.8162 17.8155 8.2287 18.2921 9.0768 C 18.305 9.1006 18.3079 9.1281 18.3004 9.1542 C 18.2929 9.1803 18.2748 9.2021 18.2507 9.2138 L 17.3614 9.669 C 17.3178 9.692 17.2643 9.6781 17.2356 9.6385 C 16.9329 9.2135 16.5956 9.0251 16.1423 9.0251 C 15.5512 9.0251 15.122 9.429 15.122 9.9865 C 15.122 10.6738 15.6529 10.8414 16.5339 11.1192 C 16.6491 11.1558 16.7696 11.194 16.8939 11.2343 C 18.2763 11.6865 19.0768 12.2311 19.0768 13.6836 C 19.0769 15.1297 17.8389 16.2204 16.1974 16.2204 Z"})}),hdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"})}),mdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm.5 12c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l7.5 5.6 7.5-5.6V17zm0-9.1L12 13.6 4.5 7.9V7c0-.3.2-.5.5-.5h14c.3 0 .5.2.5.5v.9z"})}),gdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M23.193 7.879c0-5.206-3.411-6.732-3.411-6.732C18.062.357 15.108.025 12.041 0h-.076c-3.068.025-6.02.357-7.74 1.147 0 0-3.411 1.526-3.411 6.732 0 1.192-.023 2.618.015 4.129.124 5.092.934 10.109 5.641 11.355 2.17.574 4.034.695 5.535.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.129.539c-2.165-.074-4.449-.233-4.799-2.891a5.499 5.499 0 0 1-.048-.745s2.125.52 4.817.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.507.475-6.507zm-4.024 6.709h-2.497V8.469c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.312v3.349h-2.483v-3.35c0-1.536-.602-2.312-1.802-2.312-1.085 0-1.628.655-1.628 1.944v6.119H4.832V8.284c0-1.289.328-2.313.987-3.07.68-.758 1.569-1.146 2.674-1.146 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.304z"})}),Mdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M19.24775,14.722a3.57032,3.57032,0,0,1-2.94457,3.52073,3.61886,3.61886,0,0,1-.64652.05634c-.07314-.0008-.10187.02846-.12507.09547A2.38881,2.38881,0,0,1,13.49453,20.094a2.33092,2.33092,0,0,1-1.827-.50716.13635.13635,0,0,0-.19878-.00408,3.191,3.191,0,0,1-2.104.60248,3.26309,3.26309,0,0,1-3.00324-2.71993,2.19076,2.19076,0,0,1-.03512-.30865c-.00156-.08579-.03413-.1189-.11608-.13493a2.86421,2.86421,0,0,1-1.23189-.56111,2.945,2.945,0,0,1-1.166-2.05749,2.97484,2.97484,0,0,1,.87524-2.50774.112.112,0,0,0,.02091-.16107,2.7213,2.7213,0,0,1-.36648-1.48A2.81256,2.81256,0,0,1,6.57673,7.58838a.35764.35764,0,0,0,.28869-.22819,4.2208,4.2208,0,0,1,6.02892-1.90111.25161.25161,0,0,0,.22023.0243,3.65608,3.65608,0,0,1,3.76031.90678A3.57244,3.57244,0,0,1,17.95918,8.626a2.97339,2.97339,0,0,1,.01829.57356.10637.10637,0,0,0,.0853.12792,1.97669,1.97669,0,0,1,1.27939,1.33733,2.00266,2.00266,0,0,1-.57112,2.12652c-.05284.05166-.04168.08328-.01173.13489A3.51189,3.51189,0,0,1,19.24775,14.722Zm-6.35959-.27836a1.6984,1.6984,0,0,0,1.14556,1.61113,3.82039,3.82039,0,0,0,1.036.17935,1.46888,1.46888,0,0,0,.73509-.12255.44082.44082,0,0,0,.26057-.44274.45312.45312,0,0,0-.29211-.43375.97191.97191,0,0,0-.20678-.063c-.21326-.03806-.42754-.0701-.63973-.11215a.54787.54787,0,0,1-.50172-.60926,2.75864,2.75864,0,0,1,.1773-.901c.1763-.535.414-1.045.64183-1.55913A12.686,12.686,0,0,0,15.85,10.47863a1.58461,1.58461,0,0,0,.04861-.87208,1.04531,1.04531,0,0,0-.85432-.83981,1.60658,1.60658,0,0,0-1.23654.16594.27593.27593,0,0,1-.36286-.03413c-.085-.0747-.16594-.15379-.24918-.23055a.98682.98682,0,0,0-1.33577-.04933,6.1468,6.1468,0,0,1-.4989.41615.47762.47762,0,0,1-.51535.03566c-.17448-.09307-.35512-.175-.53531-.25665a1.74949,1.74949,0,0,0-.56476-.2016,1.69943,1.69943,0,0,0-1.61654.91787,8.05815,8.05815,0,0,0-.32952.80126c-.45471,1.2557-.82507,2.53825-1.20838,3.81639a1.24151,1.24151,0,0,0,.51532,1.44389,1.42659,1.42659,0,0,0,1.22008.17166,1.09728,1.09728,0,0,0,.66994-.69764c.44145-1.04111.839-2.09989,1.25981-3.14926.11581-.28876.22792-.57874.35078-.86438a.44548.44548,0,0,1,.69189-.19539.50521.50521,0,0,1,.15044.43836,1.75625,1.75625,0,0,1-.14731.50453c-.27379.69219-.55265,1.38236-.82766,2.074a2.0836,2.0836,0,0,0-.14038.42876.50719.50719,0,0,0,.27082.57722.87236.87236,0,0,0,.66145.02739.99137.99137,0,0,0,.53406-.532q.61571-1.20914,1.228-2.42031.28423-.55863.57585-1.1133a.87189.87189,0,0,1,.29055-.35253.34987.34987,0,0,1,.37634-.01265.30291.30291,0,0,1,.12434.31459.56716.56716,0,0,1-.04655.1915c-.05318.12739-.10286.25669-.16183.38156-.34118.71775-.68754,1.43273-1.02568,2.152A2.00213,2.00213,0,0,0,12.88816,14.44366Zm4.78568,5.28972a.88573.88573,0,0,0-1.77139.00465.8857.8857,0,0,0,1.77139-.00465Zm-14.83838-7.296a.84329.84329,0,1,0,.00827-1.68655.8433.8433,0,0,0-.00827,1.68655Zm10.366-9.43673a.83506.83506,0,1,0-.0091,1.67.83505.83505,0,0,0,.0091-1.67Zm6.85014,5.22a.71651.71651,0,0,0-1.433.0093.71656.71656,0,0,0,1.433-.0093ZM5.37528,6.17908A.63823.63823,0,1,0,6.015,5.54483.62292.62292,0,0,0,5.37528,6.17908Zm6.68214,14.80843a.54949.54949,0,1,0-.55052.541A.54556.54556,0,0,0,12.05742,20.98752Zm8.53235-8.49689a.54777.54777,0,0,0-.54027.54023.53327.53327,0,0,0,.532.52293.51548.51548,0,0,0,.53272-.5237A.53187.53187,0,0,0,20.58977,12.49063ZM7.82846,2.4715a.44927.44927,0,1,0,.44484.44766A.43821.43821,0,0,0,7.82846,2.4715Zm13.775,7.60492a.41186.41186,0,0,0-.40065.39623.40178.40178,0,0,0,.40168.40168A.38994.38994,0,0,0,22,10.48172.39946.39946,0,0,0,21.60349,10.07642ZM5.79193,17.96207a.40469.40469,0,0,0-.397-.39646.399.399,0,0,0-.396.405.39234.39234,0,0,0,.39939.389A.39857.39857,0,0,0,5.79193,17.96207Z"})}),zdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M13.2,12c0,3-2.4,5.4-5.3,5.4S2.6,15,2.6,12s2.4-5.4,5.3-5.4S13.2,9,13.2,12 M19.1,12c0,2.8-1.2,5-2.7,5s-2.7-2.3-2.7-5s1.2-5,2.7-5C17.9,7,19.1,9.2,19.1,12 M21.4,12c0,2.5-0.4,4.5-0.9,4.5c-0.5,0-0.9-2-0.9-4.5s0.4-4.5,0.9-4.5C21,7.5,21.4,9.5,21.4,12"})}),Odn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M20 8.40755C19.9969 6.10922 18.2543 4.22555 16.2097 3.54588C13.6708 2.70188 10.3222 2.82421 7.89775 3.99921C4.95932 5.42355 4.03626 8.54355 4.00186 11.6552C3.97363 14.2136 4.2222 20.9517 7.92225 20.9997C10.6715 21.0356 11.0809 17.3967 12.3529 15.6442C13.258 14.3974 14.4233 14.0452 15.8578 13.6806C18.3233 13.0537 20.0036 11.0551 20 8.40755Z"})}),ydn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"})}),Adn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M21.927,4.194C21.667,3.48,20.982,3,20.222,3h-0.01h-1.721H3.839C3.092,3,2.411,3.47,2.145,4.17 C2.066,4.378,2.026,4.594,2.026,4.814v6.035l0.069,1.2c0.29,2.73,1.707,5.115,3.899,6.778c0.039,0.03,0.079,0.059,0.119,0.089 l0.025,0.018c1.175,0.859,2.491,1.441,3.91,1.727c0.655,0.132,1.325,0.2,1.991,0.2c0.615,0,1.232-0.057,1.839-0.17 c0.073-0.014,0.145-0.028,0.219-0.044c0.02-0.004,0.042-0.012,0.064-0.023c1.359-0.297,2.621-0.864,3.753-1.691l0.025-0.018 c0.04-0.029,0.08-0.058,0.119-0.089c2.192-1.664,3.609-4.049,3.898-6.778l0.069-1.2V4.814C22.026,4.605,22,4.398,21.927,4.194z M17.692,10.481l-4.704,4.512c-0.266,0.254-0.608,0.382-0.949,0.382c-0.342,0-0.684-0.128-0.949-0.382l-4.705-4.512 C5.838,9.957,5.82,9.089,6.344,8.542c0.524-0.547,1.392-0.565,1.939-0.04l3.756,3.601l3.755-3.601 c0.547-0.524,1.415-0.506,1.939,0.04C18.256,9.089,18.238,9.956,17.692,10.481z"})}),vdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M5.27 9.221A2.775 2.775 0 0 0 2.498 11.993a2.785 2.785 0 0 0 1.6 2.511 5.337 5.337 0 0 0 2.374 4.11 9.386 9.386 0 0 0 5.539 1.7 9.386 9.386 0 0 0 5.541-1.7 5.331 5.331 0 0 0 2.372-4.114 2.787 2.787 0 0 0 1.583-2.5 2.775 2.775 0 0 0-2.772-2.772 2.742 2.742 0 0 0-1.688.574 9.482 9.482 0 0 0-4.637-1.348v-.008a2.349 2.349 0 0 1 2.011-2.316 1.97 1.97 0 0 0 1.926 1.521 1.98 1.98 0 0 0 1.978-1.978 1.98 1.98 0 0 0-1.978-1.978 1.985 1.985 0 0 0-1.938 1.578 3.183 3.183 0 0 0-2.849 3.172v.011a9.463 9.463 0 0 0-4.59 1.35 2.741 2.741 0 0 0-1.688-.574Zm6.736 9.1a3.162 3.162 0 0 1-2.921-1.944.215.215 0 0 1 .014-.2.219.219 0 0 1 .168-.106 27.327 27.327 0 0 1 2.74-.133 27.357 27.357 0 0 1 2.74.133.219.219 0 0 1 .168.106.215.215 0 0 1 .014.2 3.158 3.158 0 0 1-2.921 1.944Zm3.743-3.157a1.265 1.265 0 0 1-1.4-1.371 1.954 1.954 0 0 1 .482-1.442 1.15 1.15 0 0 1 .842-.379 1.7 1.7 0 0 1 1.49 1.777 1.323 1.323 0 0 1-.325 1.015 1.476 1.476 0 0 1-1.089.4Zm-7.485 0a1.476 1.476 0 0 1-1.086-.4 1.323 1.323 0 0 1-.325-1.016 1.7 1.7 0 0 1 1.49-1.777 1.151 1.151 0 0 1 .843.379 1.951 1.951 0 0 1 .481 1.441 1.276 1.276 0 0 1-1.403 1.373Z"})}),xdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M10.113,2.699c0.033-0.006,0.067-0.013,0.1-0.02c0.033,0.017,0.066,0.033,0.098,0.051L10.113,2.699z M2.72,10.223 c-0.006,0.034-0.011,0.069-0.017,0.103c0.018,0.032,0.033,0.064,0.051,0.095L2.72,10.223z M21.275,13.771 c0.007-0.035,0.011-0.071,0.018-0.106c-0.018-0.031-0.033-0.064-0.052-0.095L21.275,13.771z M13.563,21.199 c0.032,0.019,0.065,0.035,0.096,0.053c0.036-0.006,0.071-0.011,0.105-0.017L13.563,21.199z M22,16.386 c0,1.494-0.581,2.898-1.637,3.953c-1.056,1.057-2.459,1.637-3.953,1.637c-0.967,0-1.914-0.251-2.75-0.725 c0.036-0.006,0.071-0.011,0.105-0.017l-0.202-0.035c0.032,0.019,0.065,0.035,0.096,0.053c-0.543,0.096-1.099,0.147-1.654,0.147 c-1.275,0-2.512-0.25-3.676-0.743c-1.125-0.474-2.135-1.156-3.002-2.023c-0.867-0.867-1.548-1.877-2.023-3.002 c-0.493-1.164-0.743-2.401-0.743-3.676c0-0.546,0.049-1.093,0.142-1.628c0.018,0.032,0.033,0.064,0.051,0.095L2.72,10.223 c-0.006,0.034-0.011,0.069-0.017,0.103C2.244,9.5,2,8.566,2,7.615c0-1.493,0.582-2.898,1.637-3.953 c1.056-1.056,2.46-1.638,3.953-1.638c0.915,0,1.818,0.228,2.622,0.655c-0.033,0.007-0.067,0.013-0.1,0.02l0.199,0.031 c-0.032-0.018-0.066-0.034-0.098-0.051c0.002,0,0.003-0.001,0.004-0.001c0.586-0.112,1.187-0.169,1.788-0.169 c1.275,0,2.512,0.249,3.676,0.742c1.124,0.476,2.135,1.156,3.002,2.024c0.868,0.867,1.548,1.877,2.024,3.002 c0.493,1.164,0.743,2.401,0.743,3.676c0,0.575-0.054,1.15-0.157,1.712c-0.018-0.031-0.033-0.064-0.052-0.095l0.034,0.201 c0.007-0.035,0.011-0.071,0.018-0.106C21.754,14.494,22,15.432,22,16.386z M16.817,14.138c0-1.331-0.613-2.743-3.033-3.282 l-2.209-0.49c-0.84-0.192-1.807-0.444-1.807-1.237c0-0.794,0.679-1.348,1.903-1.348c2.468,0,2.243,1.696,3.468,1.696 c0.645,0,1.209-0.379,1.209-1.031c0-1.521-2.435-2.663-4.5-2.663c-2.242,0-4.63,0.952-4.63,3.488c0,1.221,0.436,2.521,2.839,3.123 l2.984,0.745c0.903,0.223,1.129,0.731,1.129,1.189c0,0.762-0.758,1.507-2.129,1.507c-2.679,0-2.307-2.062-3.743-2.062 c-0.645,0-1.113,0.444-1.113,1.078c0,1.236,1.501,2.886,4.856,2.886C15.236,17.737,16.817,16.199,16.817,14.138z"})}),wdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.065,2a5.526,5.526,0,0,1,3.132.892A5.854,5.854,0,0,1,17.326,5.4a5.821,5.821,0,0,1,.351,2.33q0,.612-.117,2.487a.809.809,0,0,0,.365.091,1.93,1.93,0,0,0,.664-.176,1.93,1.93,0,0,1,.664-.176,1.3,1.3,0,0,1,.729.234.7.7,0,0,1,.351.6.839.839,0,0,1-.41.7,2.732,2.732,0,0,1-.9.41,3.192,3.192,0,0,0-.9.378.728.728,0,0,0-.41.618,1.575,1.575,0,0,0,.156.56,6.9,6.9,0,0,0,1.334,1.953,5.6,5.6,0,0,0,1.881,1.315,5.875,5.875,0,0,0,1.042.3.42.42,0,0,1,.365.456q0,.911-2.852,1.341a1.379,1.379,0,0,0-.143.507,1.8,1.8,0,0,1-.182.605.451.451,0,0,1-.429.241,5.878,5.878,0,0,1-.807-.085,5.917,5.917,0,0,0-.833-.085,4.217,4.217,0,0,0-.807.065,2.42,2.42,0,0,0-.82.293,6.682,6.682,0,0,0-.755.5q-.351.267-.755.527a3.886,3.886,0,0,1-.989.436A4.471,4.471,0,0,1,11.831,22a4.307,4.307,0,0,1-1.256-.176,3.784,3.784,0,0,1-.976-.436q-.4-.26-.749-.527a6.682,6.682,0,0,0-.755-.5,2.422,2.422,0,0,0-.807-.293,4.432,4.432,0,0,0-.82-.065,5.089,5.089,0,0,0-.853.1,5,5,0,0,1-.762.1.474.474,0,0,1-.456-.241,1.819,1.819,0,0,1-.182-.618,1.411,1.411,0,0,0-.143-.521q-2.852-.429-2.852-1.341a.42.42,0,0,1,.365-.456,5.793,5.793,0,0,0,1.042-.3,5.524,5.524,0,0,0,1.881-1.315,6.789,6.789,0,0,0,1.334-1.953A1.575,1.575,0,0,0,6,12.9a.728.728,0,0,0-.41-.618,3.323,3.323,0,0,0-.9-.384,2.912,2.912,0,0,1-.9-.41.814.814,0,0,1-.41-.684.71.71,0,0,1,.338-.593,1.208,1.208,0,0,1,.716-.241,1.976,1.976,0,0,1,.625.169,2.008,2.008,0,0,0,.69.169.919.919,0,0,0,.416-.091q-.117-1.849-.117-2.474A5.861,5.861,0,0,1,6.385,5.4,5.516,5.516,0,0,1,8.625,2.819,7.075,7.075,0,0,1,12.062,2Z"})}),_dn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M23.994 14.552a3.36 3.36 0 01-3.401 3.171h-8.176a.685.685 0 01-.679-.681V8.238a.749.749 0 01.452-.716S12.942 7 14.526 7a5.357 5.357 0 012.748.755 5.44 5.44 0 012.56 3.546c.282-.08.574-.12.868-.119a3.273 3.273 0 013.292 3.37zM10.718 8.795a.266.266 0 10-.528 0c-.224 2.96-.397 5.735 0 8.685a.265.265 0 00.528 0c.425-2.976.246-5.7 0-8.685zM9.066 9.82a.278.278 0 00-.553 0 33.183 33.183 0 000 7.663.278.278 0 00.55 0c.33-2.544.332-5.12.003-7.664zM7.406 9.56a.269.269 0 00-.535 0c-.253 2.7-.38 5.222 0 7.917a.266.266 0 10.531 0c.394-2.73.272-5.181.004-7.917zM5.754 10.331a.275.275 0 10-.55 0 28.035 28.035 0 000 7.155.272.272 0 00.54 0c.332-2.373.335-4.78.01-7.155zM4.087 12.12a.272.272 0 00-.544 0c-.393 1.843-.208 3.52.016 5.386a.26.26 0 00.512 0c.247-1.892.435-3.53.016-5.386zM2.433 11.838a.282.282 0 00-.56 0c-.349 1.882-.234 3.54.01 5.418.025.285.508.282.54 0 .269-1.907.394-3.517.01-5.418zM.762 12.76a.282.282 0 00-.56 0c-.32 1.264-.22 2.31.023 3.578a.262.262 0 00.521 0c.282-1.293.42-2.317.016-3.578z"})}),kdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12,2C6.477,2,2,6.477,2,12c0,5.523,4.477,10,10,10c5.523,0,10-4.477,10-10C22,6.477,17.523,2,12,2 M16.586,16.424 c-0.18,0.295-0.563,0.387-0.857,0.207c-2.348-1.435-5.304-1.76-8.785-0.964c-0.335,0.077-0.67-0.133-0.746-0.469 c-0.077-0.335,0.132-0.67,0.469-0.746c3.809-0.871,7.077-0.496,9.713,1.115C16.673,15.746,16.766,16.13,16.586,16.424 M17.81,13.7 c-0.226,0.367-0.706,0.482-1.072,0.257c-2.687-1.652-6.785-2.131-9.965-1.166C6.36,12.917,5.925,12.684,5.8,12.273 C5.675,11.86,5.908,11.425,6.32,11.3c3.632-1.102,8.147-0.568,11.234,1.328C17.92,12.854,18.035,13.335,17.81,13.7 M17.915,10.865 c-3.223-1.914-8.54-2.09-11.618-1.156C5.804,9.859,5.281,9.58,5.131,9.086C4.982,8.591,5.26,8.069,5.755,7.919 c3.532-1.072,9.404-0.865,13.115,1.338c0.445,0.264,0.59,0.838,0.327,1.282C18.933,10.983,18.359,11.129,17.915,10.865"})}),Sdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 128 128",version:"1.1",children:a.jsx(he,{d:"M28.9700376,63.3244248 C47.6273373,55.1957357 60.0684594,49.8368063 66.2934036,47.2476366 C84.0668845,39.855031 87.7600616,38.5708563 90.1672227,38.528 C90.6966555,38.5191258 91.8804274,38.6503351 92.6472251,39.2725385 C93.294694,39.7979149 93.4728387,40.5076237 93.5580865,41.0057381 C93.6433345,41.5038525 93.7494885,42.63857 93.6651041,43.5252052 C92.7019529,53.6451182 88.5344133,78.2034783 86.4142057,89.5379542 C85.5170662,94.3339958 83.750571,95.9420841 82.0403991,96.0994568 C78.3237996,96.4414641 75.5015827,93.6432685 71.9018743,91.2836143 C66.2690414,87.5912212 63.0868492,85.2926952 57.6192095,81.6896017 C51.3004058,77.5256038 55.3966232,75.2369981 58.9976911,71.4967761 C59.9401076,70.5179421 76.3155302,55.6232293 76.6324771,54.2720454 C76.6721165,54.1030573 76.7089039,53.4731496 76.3346867,53.1405352 C75.9604695,52.8079208 75.4081573,52.921662 75.0095933,53.0121213 C74.444641,53.1403447 65.4461175,59.0880351 48.0140228,70.8551922 C45.4598218,72.6091037 43.1463059,73.4636682 41.0734751,73.4188859 C38.7883453,73.3695169 34.3926725,72.1268388 31.1249416,71.0646282 C27.1169366,69.7617838 23.931454,69.0729605 24.208838,66.8603276 C24.3533167,65.7078514 25.9403832,64.5292172 28.9700376,63.3244248 Z"})}),Cdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M16.3 11.3c-.1 0-.2-.1-.2-.1-.1-2.6-1.5-4-3.9-4-1.4 0-2.6.6-3.3 1.7l1.3.9c.5-.8 1.4-1 2-1 .8 0 1.4.2 1.7.7.3.3.5.8.5 1.3-.7-.1-1.4-.2-2.2-.1-2.2.1-3.7 1.4-3.6 3.2 0 .9.5 1.7 1.3 2.2.7.4 1.5.6 2.4.6 1.2-.1 2.1-.5 2.7-1.3.5-.6.8-1.4.9-2.4.6.3 1 .8 1.2 1.3.4.9.4 2.4-.8 3.6-1.1 1.1-2.3 1.5-4.3 1.5-2.1 0-3.8-.7-4.8-2S5.7 14.3 5.7 12c0-2.3.5-4.1 1.5-5.4 1.1-1.3 2.7-2 4.8-2 2.2 0 3.8.7 4.9 2 .5.7.9 1.5 1.2 2.5l1.5-.4c-.3-1.2-.8-2.2-1.5-3.1-1.3-1.7-3.3-2.6-6-2.6-2.6 0-4.7.9-6 2.6C4.9 7.2 4.3 9.3 4.3 12s.6 4.8 1.9 6.4c1.4 1.7 3.4 2.6 6 2.6 2.3 0 4-.6 5.3-2 1.8-1.8 1.7-4 1.1-5.4-.4-.9-1.2-1.7-2.3-2.3zm-4 3.8c-1 .1-2-.4-2-1.3 0-.7.5-1.5 2.1-1.6h.5c.6 0 1.1.1 1.6.2-.2 2.3-1.3 2.7-2.2 2.7z"})}),qdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 32 32",version:"1.1",children:a.jsx(he,{d:"M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z"})}),Rdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M17.04 21.28h-3.28c-2.84 0-4.94-1.37-4.94-5.02v-5.67H6.08V7.5c2.93-.73 4.11-3.3 4.3-5.48h3.01v4.93h3.47v3.65H13.4v4.93c0 1.47.73 2.01 1.92 2.01h1.73v3.75z"})}),Tdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z"})}),Edn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"})}),Wdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22.396,7.164c-0.093,2.026-1.507,4.799-4.245,8.32C15.322,19.161,12.928,21,10.97,21c-1.214,0-2.24-1.119-3.079-3.359 c-0.56-2.053-1.119-4.106-1.68-6.159C5.588,9.243,4.921,8.122,4.206,8.122c-0.156,0-0.701,0.328-1.634,0.98L1.594,7.841 c1.027-0.902,2.04-1.805,3.037-2.708C6.001,3.95,7.03,3.327,7.715,3.264c1.619-0.156,2.616,0.951,2.99,3.321 c0.404,2.557,0.685,4.147,0.841,4.769c0.467,2.121,0.981,3.181,1.542,3.181c0.435,0,1.09-0.688,1.963-2.065 c0.871-1.376,1.338-2.422,1.401-3.142c0.125-1.187-0.343-1.782-1.401-1.782c-0.498,0-1.012,0.115-1.541,0.341 c1.023-3.35,2.977-4.977,5.862-4.884C21.511,3.066,22.52,4.453,22.396,7.164z"})}),Ndn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M22,7.1c0.2,0.4-0.4,1.5-1.6,3.1c-0.2,0.2-0.4,0.5-0.7,0.9c-0.5,0.7-0.9,1.1-0.9,1.4c-0.1,0.3-0.1,0.6,0.1,0.8 c0.1,0.1,0.4,0.4,0.8,0.9h0l0,0c1,0.9,1.6,1.7,2,2.3c0,0,0,0.1,0.1,0.1c0,0.1,0,0.1,0.1,0.3c0,0.1,0,0.2,0,0.4 c0,0.1-0.1,0.2-0.3,0.3c-0.1,0.1-0.4,0.1-0.6,0.1l-2.7,0c-0.2,0-0.4,0-0.6-0.1c-0.2-0.1-0.4-0.1-0.5-0.2l-0.2-0.1 c-0.2-0.1-0.5-0.4-0.7-0.7s-0.5-0.6-0.7-0.8c-0.2-0.2-0.4-0.4-0.6-0.6C14.8,15,14.6,15,14.4,15c0,0,0,0-0.1,0c0,0-0.1,0.1-0.2,0.2 c-0.1,0.1-0.2,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.5c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2l0,0.1 c-0.1,0.1-0.3,0.2-0.6,0.2h-1.2c-0.5,0-1,0-1.5-0.2c-0.5-0.1-1-0.3-1.4-0.6s-0.7-0.5-1.1-0.7s-0.6-0.4-0.7-0.6l-0.3-0.3 c-0.1-0.1-0.2-0.2-0.3-0.3s-0.4-0.5-0.7-0.9s-0.7-1-1.1-1.6c-0.4-0.6-0.8-1.3-1.3-2.2C2.9,9.4,2.5,8.5,2.1,7.5C2,7.4,2,7.3,2,7.2 c0-0.1,0-0.1,0-0.2l0-0.1c0.1-0.1,0.3-0.2,0.6-0.2l2.9,0c0.1,0,0.2,0,0.2,0.1S5.9,6.9,5.9,7L6,7c0.1,0.1,0.2,0.2,0.3,0.3 C6.4,7.7,6.5,8,6.7,8.4C6.9,8.8,7,9,7.1,9.2l0.2,0.3c0.2,0.4,0.4,0.8,0.6,1.1c0.2,0.3,0.4,0.5,0.5,0.7s0.3,0.3,0.4,0.4 c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3-0.1c0,0,0,0,0.1-0.1c0,0,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.3,0.1-0.5c0-0.2,0.1-0.5,0.1-0.8 c0-0.4,0-0.8,0-1.3c0-0.3,0-0.5-0.1-0.8c0-0.2-0.1-0.4-0.1-0.5L9.6,7.6C9.4,7.3,9.1,7.2,8.7,7.1C8.6,7.1,8.6,7,8.7,6.9 C8.9,6.7,9,6.6,9.1,6.5c0.4-0.2,1.2-0.3,2.5-0.3c0.6,0,1,0.1,1.4,0.1c0.1,0,0.3,0.1,0.3,0.1c0.1,0.1,0.2,0.1,0.2,0.3 c0,0.1,0.1,0.2,0.1,0.3s0,0.3,0,0.5c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.7c0,0.3,0,0.6,0,0.9c0,0.1,0,0.2,0,0.4c0,0.2,0,0.4,0,0.5 c0,0.1,0,0.3,0,0.4s0.1,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.2-0.2,0.4-0.4 s0.3-0.4,0.5-0.7c0.2-0.3,0.5-0.7,0.7-1.1c0.4-0.7,0.8-1.5,1.1-2.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.1,0.1-0.1l0,0l0.1,0 c0,0,0,0,0.1,0s0.2,0,0.2,0l3,0c0.3,0,0.5,0,0.7,0S21.9,7,21.9,7L22,7.1z"})}),Bdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M 12.011719 2 C 6.5057187 2 2.0234844 6.478375 2.0214844 11.984375 C 2.0204844 13.744375 2.4814687 15.462563 3.3554688 16.976562 L 2 22 L 7.2324219 20.763672 C 8.6914219 21.559672 10.333859 21.977516 12.005859 21.978516 L 12.009766 21.978516 C 17.514766 21.978516 21.995047 17.499141 21.998047 11.994141 C 22.000047 9.3251406 20.962172 6.8157344 19.076172 4.9277344 C 17.190172 3.0407344 14.683719 2.001 12.011719 2 z M 12.009766 4 C 14.145766 4.001 16.153109 4.8337969 17.662109 6.3417969 C 19.171109 7.8517969 20.000047 9.8581875 19.998047 11.992188 C 19.996047 16.396187 16.413812 19.978516 12.007812 19.978516 C 10.674812 19.977516 9.3544062 19.642812 8.1914062 19.007812 L 7.5175781 18.640625 L 6.7734375 18.816406 L 4.8046875 19.28125 L 5.2851562 17.496094 L 5.5019531 16.695312 L 5.0878906 15.976562 C 4.3898906 14.768562 4.0204844 13.387375 4.0214844 11.984375 C 4.0234844 7.582375 7.6067656 4 12.009766 4 z M 8.4765625 7.375 C 8.3095625 7.375 8.0395469 7.4375 7.8105469 7.6875 C 7.5815469 7.9365 6.9355469 8.5395781 6.9355469 9.7675781 C 6.9355469 10.995578 7.8300781 12.182609 7.9550781 12.349609 C 8.0790781 12.515609 9.68175 15.115234 12.21875 16.115234 C 14.32675 16.946234 14.754891 16.782234 15.212891 16.740234 C 15.670891 16.699234 16.690438 16.137687 16.898438 15.554688 C 17.106437 14.971687 17.106922 14.470187 17.044922 14.367188 C 16.982922 14.263188 16.816406 14.201172 16.566406 14.076172 C 16.317406 13.951172 15.090328 13.348625 14.861328 13.265625 C 14.632328 13.182625 14.464828 13.140625 14.298828 13.390625 C 14.132828 13.640625 13.655766 14.201187 13.509766 14.367188 C 13.363766 14.534188 13.21875 14.556641 12.96875 14.431641 C 12.71875 14.305641 11.914938 14.041406 10.960938 13.191406 C 10.218937 12.530406 9.7182656 11.714844 9.5722656 11.464844 C 9.4272656 11.215844 9.5585938 11.079078 9.6835938 10.955078 C 9.7955938 10.843078 9.9316406 10.663578 10.056641 10.517578 C 10.180641 10.371578 10.223641 10.267562 10.306641 10.101562 C 10.389641 9.9355625 10.347156 9.7890625 10.285156 9.6640625 C 10.223156 9.5390625 9.737625 8.3065 9.515625 7.8125 C 9.328625 7.3975 9.131125 7.3878594 8.953125 7.3808594 C 8.808125 7.3748594 8.6425625 7.375 8.4765625 7.375 z"})}),Ldn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg",children:a.jsx(he,{d:"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z"})}),Pdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M13.982 10.622 20.54 3h-1.554l-5.693 6.618L8.745 3H3.5l6.876 10.007L3.5 21h1.554l6.012-6.989L15.868 21h5.245l-7.131-10.378Zm-2.128 2.474-.697-.997-5.543-7.93H8l4.474 6.4.697.996 5.815 8.318h-2.387l-4.745-6.787Z"})}),jdn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M12.271,16.718v1.417q-.011,3.257-.067,3.4a.707.707,0,0,1-.569.446,4.637,4.637,0,0,1-2.024-.424A4.609,4.609,0,0,1,7.8,20.565a.844.844,0,0,1-.19-.4.692.692,0,0,1,.044-.29,3.181,3.181,0,0,1,.379-.524q.335-.412,2.019-2.409.011,0,.669-.781a.757.757,0,0,1,.44-.274.965.965,0,0,1,.552.039.945.945,0,0,1,.418.324.732.732,0,0,1,.139.468Zm-1.662-2.8a.783.783,0,0,1-.58.781l-1.339.435q-3.067.981-3.257.981a.711.711,0,0,1-.6-.4,2.636,2.636,0,0,1-.19-.836,9.134,9.134,0,0,1,.011-1.857,3.559,3.559,0,0,1,.335-1.389.659.659,0,0,1,.625-.357,22.629,22.629,0,0,1,2.253.859q.781.324,1.283.524l.937.379a.771.771,0,0,1,.4.34A.982.982,0,0,1,10.609,13.917Zm9.213,3.313a4.467,4.467,0,0,1-1.021,1.8,4.559,4.559,0,0,1-1.512,1.417.671.671,0,0,1-.7-.078q-.156-.112-2.052-3.2l-.524-.859a.761.761,0,0,1-.128-.513.957.957,0,0,1,.217-.513.774.774,0,0,1,.926-.29q.011.011,1.327.446,2.264.736,2.7.887a2.082,2.082,0,0,1,.524.229.673.673,0,0,1,.245.68Zm-7.5-7.049q.056,1.137-.6,1.361-.647.19-1.272-.792L6.237,4.08a.7.7,0,0,1,.212-.691,5.788,5.788,0,0,1,2.314-1,5.928,5.928,0,0,1,2.5-.352.681.681,0,0,1,.547.5q.034.2.245,3.407T12.327,10.181Zm7.384,1.2a.679.679,0,0,1-.29.658q-.167.112-3.67.959-.747.167-1.015.257l.011-.022a.769.769,0,0,1-.513-.044.914.914,0,0,1-.413-.357.786.786,0,0,1,0-.971q.011-.011.836-1.137,1.394-1.908,1.673-2.275a2.423,2.423,0,0,1,.379-.435A.7.7,0,0,1,17.435,8a4.482,4.482,0,0,1,1.372,1.489,4.81,4.81,0,0,1,.9,1.868v.034Z"})}),Idn=()=>a.jsx(ge,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",children:a.jsx(he,{d:"M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"})}),Ak=[{isDefault:!0,name:"wordpress",attributes:{service:"wordpress"},title:"WordPress",icon:Ldn},{name:"fivehundredpx",attributes:{service:"fivehundredpx"},title:"500px",icon:idn},{name:"amazon",attributes:{service:"amazon"},title:"Amazon",icon:Kun},{name:"bandcamp",attributes:{service:"bandcamp"},title:"Bandcamp",icon:Yun},{name:"behance",attributes:{service:"behance"},title:"Behance",icon:Zun},{name:"bluesky",attributes:{service:"bluesky"},title:"Bluesky",icon:Qun},{name:"chain",attributes:{service:"chain"},title:"Link",icon:h5e},{name:"codepen",attributes:{service:"codepen"},title:"CodePen",icon:Jun},{name:"deviantart",attributes:{service:"deviantart"},title:"DeviantArt",icon:edn},{name:"dribbble",attributes:{service:"dribbble"},title:"Dribbble",icon:tdn},{name:"dropbox",attributes:{service:"dropbox"},title:"Dropbox",icon:ndn},{name:"etsy",attributes:{service:"etsy"},title:"Etsy",icon:odn},{name:"facebook",attributes:{service:"facebook"},title:"Facebook",icon:rdn},{name:"feed",attributes:{service:"feed"},title:"RSS Feed",icon:sdn},{name:"flickr",attributes:{service:"flickr"},title:"Flickr",icon:adn},{name:"foursquare",attributes:{service:"foursquare"},title:"Foursquare",icon:cdn},{name:"goodreads",attributes:{service:"goodreads"},title:"Goodreads",icon:ldn},{name:"google",attributes:{service:"google"},title:"Google",icon:udn},{name:"github",attributes:{service:"github"},title:"GitHub",icon:ddn},{name:"gravatar",attributes:{service:"gravatar"},title:"Gravatar",icon:pdn},{name:"instagram",attributes:{service:"instagram"},title:"Instagram",icon:fdn},{name:"lastfm",attributes:{service:"lastfm"},title:"Last.fm",icon:bdn},{name:"linkedin",attributes:{service:"linkedin"},title:"LinkedIn",icon:hdn},{name:"mail",attributes:{service:"mail"},title:"Mail",keywords:["email","e-mail"],icon:mdn},{name:"mastodon",attributes:{service:"mastodon"},title:"Mastodon",icon:gdn},{name:"meetup",attributes:{service:"meetup"},title:"Meetup",icon:Mdn},{name:"medium",attributes:{service:"medium"},title:"Medium",icon:zdn},{name:"patreon",attributes:{service:"patreon"},title:"Patreon",icon:Odn},{name:"pinterest",attributes:{service:"pinterest"},title:"Pinterest",icon:ydn},{name:"pocket",attributes:{service:"pocket"},title:"Pocket",icon:Adn},{name:"reddit",attributes:{service:"reddit"},title:"Reddit",icon:vdn},{name:"skype",attributes:{service:"skype"},title:"Skype",icon:xdn},{name:"snapchat",attributes:{service:"snapchat"},title:"Snapchat",icon:wdn},{name:"soundcloud",attributes:{service:"soundcloud"},title:"SoundCloud",icon:_dn},{name:"spotify",attributes:{service:"spotify"},title:"Spotify",icon:kdn},{name:"telegram",attributes:{service:"telegram"},title:"Telegram",icon:Sdn},{name:"threads",attributes:{service:"threads"},title:"Threads",icon:Cdn},{name:"tiktok",attributes:{service:"tiktok"},title:"TikTok",icon:qdn},{name:"tumblr",attributes:{service:"tumblr"},title:"Tumblr",icon:Rdn},{name:"twitch",attributes:{service:"twitch"},title:"Twitch",icon:Tdn},{name:"twitter",attributes:{service:"twitter"},title:"Twitter",icon:Edn},{name:"vimeo",attributes:{service:"vimeo"},title:"Vimeo",icon:Wdn},{name:"vk",attributes:{service:"vk"},title:"VK",icon:Ndn},{name:"whatsapp",attributes:{service:"whatsapp"},title:"WhatsApp",icon:Bdn},{name:"x",attributes:{service:"x"},keywords:["twitter"],title:"X",icon:Pdn},{name:"yelp",attributes:{service:"yelp"},title:"Yelp",icon:jdn},{name:"youtube",attributes:{service:"youtube"},title:"YouTube",icon:Idn}];Ak.forEach(e=>{e.isActive||(e.isActive=(t,n)=>t.service===n.service)});const Ddn=e=>{const t=Ak.find(n=>n.name===e);return t?t.icon:h5e},Fdn=e=>{const t=Ak.find(n=>n.name===e);return t?t.title:m("Social Icon")},$dn=({url:e,setAttributes:t,setPopover:n,popoverAnchor:o,clientId:r})=>{const{removeBlock:s}=Oe(Q);return a.jsx(lf,{anchor:o,"aria-label":m("Edit social link"),onClose:()=>{n(!1),o?.focus()},children:a.jsx("form",{className:"block-editor-url-popover__link-editor",onSubmit:i=>{i.preventDefault(),n(!1),o?.focus()},children:a.jsx("div",{className:"block-editor-url-input",children:a.jsx(fI,{value:e,onChange:i=>t({url:i}),placeholder:m("Enter social link"),label:m("Enter social link"),hideLabelFromVision:!0,disableSuggestions:!0,onKeyDown:i=>{e||i.defaultPrevented||![Mc,zl].includes(i.keyCode)||s(r)},suffix:a.jsx(eO,{variant:"control",children:a.jsx(Ce,{icon:Pw,label:m("Apply"),type:"submit",size:"small"})})})})})})},Vdn=({attributes:e,context:t,isSelected:n,setAttributes:o,clientId:r})=>{const{url:s,service:i,label:c="",rel:l}=e,u=Qo(),{showLabels:d,iconColor:p,iconColorValue:f,iconBackgroundColor:b,iconBackgroundColorValue:h}=t,[g,z]=x.useState(!1),A=oe("wp-social-link","wp-block-social-link","wp-social-link-"+i,{"wp-social-link__is-incomplete":!s,[`has-${p}-color`]:p,[`has-${b}-background-color`]:b}),[_,v]=x.useState(null),M=Jr()==="contentOnly",y=Ddn(i),k=Fdn(i),S=c.trim()===""?k:c,C=x.useRef(),R=Be({className:"wp-block-social-link-anchor",ref:xn([v,C]),onClick:()=>z(!0),onKeyDown:T=>{T.keyCode===Gr&&(T.preventDefault(),z(!0))}});return a.jsxs(a.Fragment,{children:[M&&d&&a.jsx(bt,{group:"other",children:a.jsx(so,{popoverProps:{position:"bottom right"},renderToggle:({isOpen:T,onToggle:E})=>a.jsx(Vt,{onClick:E,"aria-haspopup":"true","aria-expanded":T,children:m("Text")}),renderContent:()=>a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"wp-block-social-link__toolbar_content_text",label:m("Text"),help:m("Provide a text label or use the default."),value:c,onChange:T=>o({label:T}),placeholder:k})})}),a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{o({label:void 0})},dropdownMenuProps:u,children:a.jsx(tt,{isShownByDefault:!0,label:m("Text"),hasValue:()=>!!c,onDeselect:()=>{o({label:void 0})},children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Text"),help:m("The text is visible when enabled from the parent Social Icons block."),value:c,onChange:T=>o({label:T}),placeholder:k})})})}),a.jsx(et,{group:"advanced",children:a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Link rel"),value:l||"",onChange:T=>o({rel:T})})}),a.jsxs("li",{role:"presentation",className:A,style:{color:f,backgroundColor:h},children:[a.jsxs("button",{"aria-haspopup":"dialog",...R,role:"button",children:[a.jsx(y,{}),a.jsx("span",{className:oe("wp-block-social-link-label",{"screen-reader-text":!d}),children:S})]}),n&&g&&a.jsx($dn,{url:s,setAttributes:o,setPopover:z,popoverAnchor:_,clientId:r})]})]})},ZD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/social-link",title:"Social Icon",category:"widgets",parent:["core/social-links"],description:"Display an icon linking to a social profile or site.",textdomain:"default",attributes:{url:{type:"string",role:"content"},service:{type:"string"},label:{type:"string",role:"content"},rel:{type:"string"}},usesContext:["openInNewTab","showLabels","iconColor","iconColorValue","iconBackgroundColor","iconBackgroundColorValue"],supports:{reusable:!1,html:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-social-link-editor"},{name:m5e}=ZD,g5e={icon:jde,edit:Vdn,variations:Ak},Hdn=()=>it({name:m5e,metadata:ZD,settings:g5e}),Udn=Object.freeze(Object.defineProperty({__proto__:null,init:Hdn,metadata:ZD,name:m5e,settings:g5e},Symbol.toStringTag,{value:"Module"})),Xdn=e=>{if(e.layout)return e;const{className:t}=e,n="items-justified-",o=new RegExp(`\\b${n}[^ ]*[ ]?\\b`,"g"),r={...e,className:t?.replace(o,"").trim()},s=t?.match(o)?.[0]?.trim();return s&&Object.assign(r,{layout:{type:"flex",justifyContent:s.slice(n.length)}}),r},Gdn=[{attributes:{iconColor:{type:"string"},customIconColor:{type:"string"},iconColorValue:{type:"string"},iconBackgroundColor:{type:"string"},customIconBackgroundColor:{type:"string"},iconBackgroundColorValue:{type:"string"},openInNewTab:{type:"boolean",default:!1},size:{type:"string"}},providesContext:{openInNewTab:"openInNewTab"},supports:{align:["left","center","right"],anchor:!0},migrate:Xdn,save:e=>{const{attributes:{iconBackgroundColorValue:t,iconColorValue:n,itemsJustification:o,size:r}}=e,s=oe(r,{"has-icon-color":n,"has-icon-background-color":t,[`items-justified-${o}`]:o}),i={"--wp--social-links--icon-color":n,"--wp--social-links--icon-background-color":t};return a.jsx("ul",{...Be.save({className:s,style:i}),children:a.jsx(Ht.Content,{})})}}],Kdn=[{name:m("Small"),value:"has-small-icon-size"},{name:m("Normal"),value:"has-normal-icon-size"},{name:m("Large"),value:"has-large-icon-size"},{name:m("Huge"),value:"has-huge-icon-size"}];function Ydn(e){var t;const{clientId:n,attributes:o,iconBackgroundColor:r,iconColor:s,isSelected:i,setAttributes:c,setIconBackgroundColor:l,setIconColor:u}=e,{iconBackgroundColorValue:d,customIconBackgroundColor:p,iconColorValue:f,openInNewTab:b,showLabels:h,size:g}=o,z=G(B=>B(Q).hasSelectedInnerBlock(n),[n]),A=i||z,_=o.className?.includes("is-style-logos-only"),v=Qo(),M=x.useRef({});x.useEffect(()=>{_?(M.current={iconBackgroundColor:r,iconBackgroundColorValue:d,customIconBackgroundColor:p},c({iconBackgroundColor:void 0,customIconBackgroundColor:void 0,iconBackgroundColorValue:void 0})):c({...M.current})},[_]);const y=a.jsx("li",{className:"wp-block-social-links__social-placeholder",children:a.jsxs("div",{className:"wp-block-social-links__social-placeholder-icons",children:[a.jsx("div",{className:"wp-social-link wp-social-link-twitter"}),a.jsx("div",{className:"wp-social-link wp-social-link-facebook"}),a.jsx("div",{className:"wp-social-link wp-social-link-instagram"})]})}),k=oe(g,{"has-visible-labels":h,"has-icon-color":s.color||f,"has-icon-background-color":r.color||d}),S=Be({className:k}),C=Nt(S,{placeholder:!i&&y,templateLock:!1,orientation:(t=o.layout?.orientation)!==null&&t!==void 0?t:"horizontal",__experimentalAppenderTagName:"li",renderAppender:A&&Ht.ButtonBlockAppender}),R={position:"bottom right"},T=[{value:s.color||f,onChange:B=>{u(B),c({iconColorValue:B})},label:m("Icon color"),resetAllFilter:()=>{u(void 0),c({iconColorValue:void 0})}}];_||T.push({value:r.color||d,onChange:B=>{l(B),c({iconBackgroundColorValue:B})},label:m("Icon background"),resetAllFilter:()=>{l(void 0),c({iconBackgroundColorValue:void 0})}});const E=ub();return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"other",children:a.jsx(Lc,{label:m("Size"),text:m("Size"),icon:null,popoverProps:R,children:({onClose:B})=>a.jsx(Cn,{children:Kdn.map(N=>a.jsx(Ct,{icon:(g===N.value||!g&&N.value==="has-normal-icon-size")&&M0,isSelected:g===N.value,onClick:()=>{c({size:N.value})},onClose:B,role:"menuitemradio",children:N.name},N.value))})})}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{c({openInNewTab:!1,showLabels:!1})},dropdownMenuProps:v,children:[a.jsx(tt,{isShownByDefault:!0,label:m("Open links in new tab"),hasValue:()=>!!b,onDeselect:()=>c({openInNewTab:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Open links in new tab"),checked:b,onChange:()=>c({openInNewTab:!b})})}),a.jsx(tt,{isShownByDefault:!0,label:m("Show text"),hasValue:()=>!!h,onDeselect:()=>c({showLabels:!1}),children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show text"),checked:h,onChange:()=>c({showLabels:!h})})})]})}),E.hasColorsOrGradients&&a.jsxs(et,{group:"color",children:[T.map(({onChange:B,label:N,value:j,resetAllFilter:I})=>a.jsx(J_,{__experimentalIsRenderedInSidebar:!0,settings:[{colorValue:j,label:N,onColorChange:B,isShownByDefault:!0,resetAllFilter:I,enableAlpha:!0,clearable:!0}],panelId:n,...E},`social-links-color-${N}`)),!_&&a.jsx(Qx,{textColor:f,backgroundColor:d,isLargeText:!1})]}),a.jsx("ul",{...C})]})}const Zdn={iconColor:"icon-color",iconBackgroundColor:"icon-background-color"},Qdn=AO(Zdn)(Ydn);function Jdn(e){const{attributes:{iconBackgroundColorValue:t,iconColorValue:n,showLabels:o,size:r}}=e,s=oe(r,{"has-visible-labels":o,"has-icon-color":n,"has-icon-background-color":t}),i=Be.save({className:s}),c=Nt.save(i);return a.jsx("ul",{...c})}const QD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/social-links",title:"Social Icons",category:"widgets",allowedBlocks:["core/social-link"],description:"Display icons linking to your social profiles or sites.",keywords:["links"],textdomain:"default",attributes:{iconColor:{type:"string"},customIconColor:{type:"string"},iconColorValue:{type:"string"},iconBackgroundColor:{type:"string"},customIconBackgroundColor:{type:"string"},iconBackgroundColorValue:{type:"string"},openInNewTab:{type:"boolean",default:!1},showLabels:{type:"boolean",default:!1},size:{type:"string"}},providesContext:{openInNewTab:"openInNewTab",showLabels:"showLabels",iconColor:"iconColor",iconColorValue:"iconColorValue",iconBackgroundColor:"iconBackgroundColor",iconBackgroundColorValue:"iconBackgroundColorValue"},supports:{align:["left","center","right"],anchor:!0,__experimentalExposeControlsToChildren:!0,layout:{allowSwitching:!1,allowInheriting:!1,allowVerticalAlignment:!1,default:{type:"flex"}},color:{enableContrastChecker:!1,background:!0,gradients:!0,text:!1,__experimentalDefaultControls:{background:!1}},spacing:{blockGap:["horizontal","vertical"],margin:!0,padding:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0,margin:!0,padding:!1}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"logos-only",label:"Logos Only"},{name:"pill-shape",label:"Pill Shape"}],editorStyle:"wp-block-social-links-editor",style:"wp-block-social-links"},{name:M5e}=QD,z5e={example:{innerBlocks:[{name:"core/social-link",attributes:{service:"wordpress",url:"https://wordpress.org"}},{name:"core/social-link",attributes:{service:"facebook",url:"https://www.facebook.com/WordPress/"}},{name:"core/social-link",attributes:{service:"twitter",url:"https://twitter.com/WordPress"}}]},icon:jde,edit:Qdn,save:Jdn,deprecated:Gdn},epn=()=>it({name:M5e,metadata:QD,settings:z5e}),tpn=Object.freeze(Object.defineProperty({__proto__:null,init:epn,metadata:QD,name:M5e,settings:z5e},Symbol.toStringTag,{value:"Module"})),npn=[{attributes:{height:{type:"number",default:100},width:{type:"number"}},migrate(e){const{height:t,width:n}=e;return{...e,width:n!==void 0?`${n}px`:void 0,height:t!==void 0?`${t}px`:void 0}},save({attributes:e}){return a.jsx("div",{...Be.save({style:{height:e.height,width:e.width},"aria-hidden":!0})})}}],xN=0,{useSpacingSizes:opn}=e0(jn);function Yoe({label:e,onChange:t,isResizing:n,value:o=""}){const r=vt(Ro,"block-spacer-height-input"),s=opn(),[i]=Un("spacing.units"),c=i?i.filter(b=>b!=="%"):["px","em","rem","vw","vh"],l=U1({availableUnits:c,defaultValues:{px:100,em:10,rem:10,vw:10,vh:25}}),u=b=>{t(b.all)},[d,p]=yo(o),f=Qp(o)?o:[d,n?"px":p].join("");return a.jsxs(a.Fragment,{children:[(!s||s?.length===0)&&a.jsx(Ro,{id:r,isResetValueOnUnitChange:!0,min:xN,onChange:u,value:f,units:l,label:e,__next40pxDefaultSize:!0}),s?.length>0&&a.jsx(vd,{className:"tools-panel-item-spacing",children:a.jsx(M4,{values:{all:f},onChange:u,label:e,sides:["all"],units:l,allowReset:!1,splitOnAxis:!1,showSideInLabel:!1})})]})}function rpn({setAttributes:e,orientation:t,height:n,width:o,isResizing:r}){return a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{e({width:void 0,height:"100px"})},children:[t==="horizontal"&&a.jsx(tt,{label:m("Width"),isShownByDefault:!0,hasValue:()=>o!==void 0,onDeselect:()=>e({width:void 0}),children:a.jsx(Yoe,{label:m("Width"),value:o,onChange:s=>e({width:s}),isResizing:r})}),t!=="horizontal"&&a.jsx(tt,{label:m("Height"),isShownByDefault:!0,hasValue:()=>n!=="100px",onDeselect:()=>e({height:"100px"}),children:a.jsx(Yoe,{label:m("Height"),value:n,onChange:s=>e({height:s}),isResizing:r})})]})})}const{useSpacingSizes:spn}=e0(jn),Zoe=({orientation:e,onResizeStart:t,onResize:n,onResizeStop:o,isSelected:r,isResizing:s,setIsResizing:i,...c})=>{const l=d=>e==="horizontal"?d.clientWidth:d.clientHeight,u=d=>`${l(d)}px`;return a.jsx(Ca,{className:oe("block-library-spacer__resize-container",{"resize-horizontal":e==="horizontal","is-resizing":s,"is-selected":r}),onResizeStart:(d,p,f)=>{const b=u(f);t(b),n(b)},onResize:(d,p,f)=>{n(u(f)),s||i(!0)},onResizeStop:(d,p,f)=>{const b=l(f);o(`${b}px`),i(!1)},__experimentalShowTooltip:!0,__experimentalTooltipProps:{axis:e==="horizontal"?"x":"y",position:"corner",isVisible:s},showHandle:r,...c})},ipn=({attributes:e,isSelected:t,setAttributes:n,toggleSelection:o,context:r,__unstableParentLayout:s,className:i})=>{const c=G(Z=>Z(Q).getSettings()?.disableCustomSpacingSizes),{orientation:l}=r,{orientation:u,type:d,default:{type:p}={}}=s||{},f=d==="flex"||!d&&p==="flex",b=!u&&f?"horizontal":u||l,{height:h,width:g,style:z={}}=e,{layout:A={}}=z,{selfStretch:_,flexSize:v}=A,M=spn(),[y,k]=x.useState(!1),[S,C]=x.useState(null),[R,T]=x.useState(null),E=()=>o(!1),B=()=>o(!0),N=Z=>{B(),f&&n({style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}}),n({height:Z}),C(null)},j=Z=>{B(),f&&n({style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}}),n({width:Z}),T(null)},I=()=>{if(!f)return S||xh(h)||void 0},P=()=>{if(!f)return R||xh(g)||void 0},$=b==="horizontal"?R||v:S||v,F={height:b==="horizontal"?24:I(),width:b==="horizontal"?P():void 0,minWidth:b==="vertical"&&f?48:void 0,flexBasis:f?$:void 0,flexGrow:f&&y?0:void 0},X=Z=>Z==="horizontal"?a.jsx(Zoe,{minWidth:xN,enable:{top:!1,right:!0,bottom:!1,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},orientation:Z,onResizeStart:E,onResize:T,onResizeStop:j,isSelected:t,isResizing:y,setIsResizing:k}):a.jsx(a.Fragment,{children:a.jsx(Zoe,{minHeight:xN,enable:{top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},orientation:Z,onResizeStart:E,onResize:C,onResizeStop:N,isSelected:t,isResizing:y,setIsResizing:k})});return x.useEffect(()=>{if(f&&_!=="fill"&&_!=="fit"&&!v)if(b==="horizontal"){const Z=aM(g,M)||aM(h,M)||"100px";n({width:"0px",style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}})}else{const Z=aM(h,M)||aM(g,M)||"100px";n({height:"0px",style:{...z,layout:{...A,flexSize:Z,selfStretch:"fixed"}}})}else f&&(_==="fill"||_==="fit")?n(b==="horizontal"?{width:void 0}:{height:void 0}):!f&&(_||v)&&(n(b==="horizontal"?{width:v}:{height:v}),n({style:{...z,layout:{...A,flexSize:void 0,selfStretch:void 0}}}))},[z,v,h,b,f,A,_,n,M,g]),a.jsxs(a.Fragment,{children:[a.jsx(vd,{...Be({style:F,className:oe(i,{"custom-sizes-disabled":c})}),children:X(b)}),!f&&a.jsx(rpn,{setAttributes:n,height:S||h,width:R||g,orientation:b,isResizing:y})]})},apn={to:[{type:"block",blocks:["core/separator"],transform:({anchor:e})=>Ee("core/separator",{anchor:e||""})}]};function cpn({attributes:e}){const{height:t,width:n,style:o}=e,{layout:{selfStretch:r}={}}=o||{},s=r==="fill"||r==="fit"?void 0:t;return a.jsx("div",{...Be.save({style:{height:xh(s),width:xh(n)},"aria-hidden":!0})})}const JD={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/spacer",title:"Spacer",category:"design",description:"Add white space between blocks and customize its height.",textdomain:"default",attributes:{height:{type:"string",default:"100px"},width:{type:"string"}},usesContext:["orientation"],supports:{anchor:!0,spacing:{margin:["top","bottom"],__experimentalDefaultControls:{margin:!0}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-spacer-editor",style:"wp-block-spacer"},{name:O5e}=JD,y5e={icon:EQe,transforms:apn,edit:ipn,save:cpn,deprecated:npn},lpn=()=>it({name:O5e,metadata:JD,settings:y5e}),upn=Object.freeze(Object.defineProperty({__proto__:null,init:lpn,metadata:JD,name:O5e,settings:y5e},Symbol.toStringTag,{value:"Module"})),Qoe={"subtle-light-gray":"#f3f4f5","subtle-pale-green":"#e9fbe5","subtle-pale-blue":"#e7f5fe","subtle-pale-pink":"#fcf0ef"},ZT={content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}},dpn={attributes:{hasFixedLayout:{type:"boolean",default:!1},caption:{type:"rich-text",source:"rich-text",selector:"figcaption"},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:ZT}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:ZT}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:ZT}}}},supports:{anchor:!0,align:!0,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{__experimentalSkipSerialization:!0,color:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,style:!0,width:!0}},__experimentalSelector:".wp-block-table > table",interactivity:{clientNavigation:!0}},save({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,caption:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=P1(e),l=X1(e),u=oe(c.className,l.className,{"has-fixed-layout":t}),d=!Ie.isEmpty(s),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M,colspan:y,rowspan:k},S)=>{const C=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:C||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0,colSpan:y,rowSpan:k},S)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,style:{...c.style,...l.style},children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:s,className:z0("caption")})]})}},QT={content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}},ppn={attributes:{hasFixedLayout:{type:"boolean",default:!1},caption:{type:"string",source:"html",selector:"figcaption",default:""},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:QT}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:QT}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:QT}}}},supports:{anchor:!0,align:!0,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{__experimentalSkipSerialization:!0,color:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,style:!0,width:!0}},__experimentalSelector:".wp-block-table > table"},save({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,caption:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=P1(e),l=X1(e),u=oe(c.className,l.className,{"has-fixed-layout":t}),d=!Ie.isEmpty(s),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M},y)=>{const k=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:k||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0},y)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,style:{...c.style,...l.style},children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:s})]})}},JT={content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}},fpn={attributes:{hasFixedLayout:{type:"boolean",default:!1},backgroundColor:{type:"string"},caption:{type:"string",source:"html",selector:"figcaption",default:""},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:JT}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:JT}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:JT}}}},supports:{anchor:!0,align:!0,__experimentalSelector:".wp-block-table > table"},save:({attributes:e})=>{const{hasFixedLayout:t,head:n,body:o,foot:r,backgroundColor:s,caption:i}=e;if(!n.length&&!o.length&&!r.length)return null;const l=Pt("background-color",s),u=oe(l,{"has-fixed-layout":t,"has-background":!!l}),d=!Ie.isEmpty(i),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M},y)=>{const k=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:k||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0},y)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:i})]})},isEligible:e=>e.backgroundColor&&e.backgroundColor in Qoe&&!e.style,migrate:e=>({...e,backgroundColor:void 0,style:{color:{background:Qoe[e.backgroundColor]}}})},eE={content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"}},bpn={attributes:{hasFixedLayout:{type:"boolean",default:!1},backgroundColor:{type:"string"},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:eE}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:eE}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:eE}}}},supports:{align:!0},save({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,backgroundColor:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=Pt("background-color",s),l=oe(c,{"has-fixed-layout":t,"has-background":!!c}),u=({type:d,rows:p})=>{if(!p.length)return null;const f=`t${d}`;return a.jsx(f,{children:p.map(({cells:b},h)=>a.jsx("tr",{children:b.map(({content:g,tag:z,scope:A},_)=>a.jsx(Ie.Content,{tagName:z,value:g,scope:z==="th"?A:void 0},_))},h))})};return a.jsxs("table",{className:l,children:[a.jsx(u,{type:"head",rows:n}),a.jsx(u,{type:"body",rows:o}),a.jsx(u,{type:"foot",rows:r})]})}},hpn=[dpn,ppn,fpn,bpn],mpn=["align"];function gpn({rowCount:e,columnCount:t}){return{body:Array.from({length:e}).map(()=>({cells:Array.from({length:t}).map(()=>({content:"",tag:"td"}))}))}}function Mpn(e){if(!df(e.head))return e.head[0];if(!df(e.body))return e.body[0];if(!df(e.foot))return e.foot[0]}function zpn(e,t,n){const{sectionName:o,rowIndex:r,columnIndex:s}=t;return e[o]?.[r]?.cells?.[s]?.[n]}function Joe(e,t,n){if(!t)return e;const o=Object.fromEntries(Object.entries(e).filter(([i])=>["head","body","foot"].includes(i))),{sectionName:r,rowIndex:s}=t;return Object.fromEntries(Object.entries(o).map(([i,c])=>r&&r!==i?[i,c]:[i,c.map((l,u)=>s&&s!==u?l:{cells:l.cells.map((d,p)=>Opn({sectionName:i,columnIndex:p,rowIndex:u},t)?n(d):d)})]))}function Opn(e,t){if(!e||!t)return!1;switch(t.type){case"column":return t.type==="column"&&e.columnIndex===t.columnIndex;case"cell":return t.type==="cell"&&e.sectionName===t.sectionName&&e.columnIndex===t.columnIndex&&e.rowIndex===t.rowIndex}}function A5e(e,{sectionName:t,rowIndex:n,columnCount:o}){const r=Mpn(e),s=o===void 0?r?.cells?.length:o;return s?{[t]:[...e[t].slice(0,n),{cells:Array.from({length:s}).map((i,c)=>{var l;const u=(l=r?.cells?.[c])!==null&&l!==void 0?l:{};return{...Object.fromEntries(Object.entries(u).filter(([p])=>mpn.includes(p))),content:"",tag:t==="head"?"th":"td"}})},...e[t].slice(n)]}:e}function ypn(e,{sectionName:t,rowIndex:n}){return{[t]:e[t].filter((o,r)=>r!==n)}}function Apn(e,{columnIndex:t}){const n=Object.fromEntries(Object.entries(e).filter(([o])=>["head","body","foot"].includes(o)));return Object.fromEntries(Object.entries(n).map(([o,r])=>df(r)?[o,r]:[o,r.map(s=>v5e(s)||s.cells.length<t?s:{cells:[...s.cells.slice(0,t),{content:"",tag:o==="head"?"th":"td"},...s.cells.slice(t)]})]))}function vpn(e,{columnIndex:t}){const n=Object.fromEntries(Object.entries(e).filter(([o])=>["head","body","foot"].includes(o)));return Object.fromEntries(Object.entries(n).map(([o,r])=>df(r)?[o,r]:[o,r.map(s=>({cells:s.cells.length>=t?s.cells.filter((i,c)=>c!==t):s.cells})).filter(s=>s.cells.length)]))}function ere(e,t){var n;if(!df(e[t]))return{[t]:[]};const o=(n=e.body?.[0]?.cells?.length)!==null&&n!==void 0?n:1;return A5e(e,{sectionName:t,rowIndex:0,columnCount:o})}function df(e){return!e||!e.length||e.every(v5e)}function v5e(e){return!(e.cells&&e.cells.length)}const xpn=[{icon:$3,title:m("Align column left"),align:"left"},{icon:qw,title:m("Align column center"),align:"center"},{icon:V3,title:m("Align column right"),align:"right"}],wpn={head:m("Header cell text"),body:m("Body cell text"),foot:m("Footer cell text")},_pn={head:m("Header label"),foot:m("Footer label")};function kpn({name:e,...t}){const n=`t${e}`;return a.jsx(n,{...t})}function Spn({attributes:e,setAttributes:t,insertBlocksAfter:n,isSelected:o}){const{hasFixedLayout:r,head:s,foot:i}=e,[c,l]=x.useState(2),[u,d]=x.useState(2),[p,f]=x.useState(),b=BO(e),h=au(e),g=x.useRef(),[z,A]=x.useState(!1),_=Qo();function v(J){d(J)}function M(J){l(J)}function y(J){J.preventDefault(),t(gpn({rowCount:parseInt(c,10)||2,columnCount:parseInt(u,10)||2})),A(!0)}function k(){t({hasFixedLayout:!r})}function S(J){p&&t(Joe(e,p,ue=>({...ue,content:J})))}function C(J){if(!p)return;const ue={type:"column",columnIndex:p.columnIndex},ce=Joe(e,ue,me=>({...me,align:J}));t(ce)}function R(){if(p)return zpn(e,p,"align")}function T(){t(ere(e,"head"))}function E(){t(ere(e,"foot"))}function B(J){if(!p)return;const{sectionName:ue,rowIndex:ce}=p,me=ce+J;t(A5e(e,{sectionName:ue,rowIndex:me})),f({sectionName:ue,rowIndex:me,columnIndex:0,type:"cell"})}function N(){B(0)}function j(){B(1)}function I(){if(!p)return;const{sectionName:J,rowIndex:ue}=p;f(),t(ypn(e,{sectionName:J,rowIndex:ue}))}function P(J=0){if(!p)return;const{columnIndex:ue}=p,ce=ue+J;t(Apn(e,{columnIndex:ce})),f({rowIndex:0,columnIndex:ce,type:"cell"})}function $(){P(0)}function F(){P(1)}function X(){if(!p)return;const{sectionName:J,columnIndex:ue}=p;f(),t(vpn(e,{sectionName:J,columnIndex:ue}))}x.useEffect(()=>{o||f()},[o]),x.useEffect(()=>{z&&(g?.current?.querySelector('td div[contentEditable="true"]')?.focus(),A(!1))},[z]);const Z=["head","body","foot"].filter(J=>!df(e[J])),V=[{icon:GQe,title:m("Insert row before"),isDisabled:!p,onClick:N},{icon:XQe,title:m("Insert row after"),isDisabled:!p,onClick:j},{icon:KQe,title:m("Delete row"),isDisabled:!p,onClick:I},{icon:HQe,title:m("Insert column before"),isDisabled:!p,onClick:$},{icon:VQe,title:m("Insert column after"),isDisabled:!p,onClick:F},{icon:UQe,title:m("Delete column"),isDisabled:!p,onClick:X}],ee=Z.map(J=>a.jsx(kpn,{name:J,children:e[J].map(({cells:ue},ce)=>a.jsx("tr",{children:ue.map(({content:me,tag:de,scope:Ae,align:ye,colspan:Ne,rowspan:je},ie)=>a.jsx(de,{scope:de==="th"?Ae:void 0,colSpan:Ne,rowSpan:je,className:oe({[`has-text-align-${ye}`]:ye},"wp-block-table__cell-content"),children:a.jsx(Ie,{value:me,onChange:S,onFocus:()=>{f({sectionName:J,rowIndex:ce,columnIndex:ie,type:"cell"})},"aria-label":wpn[J],placeholder:_pn[J]})},ie))},ce))},J)),te=!Z.length;return a.jsxs("figure",{...Be({ref:g}),children:[!te&&a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{label:m("Change column alignment"),alignmentControls:xpn,value:R(),onChange:J=>C(J)})}),a.jsx(bt,{group:"other",children:a.jsx(Lc,{icon:YQe,label:m("Edit table"),controls:V})})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({hasFixedLayout:!0,head:[],foot:[]})},dropdownMenuProps:_,children:[a.jsx(tt,{hasValue:()=>r!==!0,label:m("Fixed width table cells"),onDeselect:()=>t({hasFixedLayout:!0}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Fixed width table cells"),checked:!!r,onChange:k})}),!te&&a.jsxs(a.Fragment,{children:[a.jsx(tt,{hasValue:()=>s&&s.length,label:m("Header section"),onDeselect:()=>t({head:[]}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Header section"),checked:!!(s&&s.length),onChange:T})}),a.jsx(tt,{hasValue:()=>i&&i.length,label:m("Footer section"),onDeselect:()=>t({foot:[]}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Footer section"),checked:!!(i&&i.length),onChange:E})})]})]})}),!te&&a.jsx("table",{className:oe(b.className,h.className,{"has-fixed-layout":r,"has-individual-borders":Pd(e?.style?.border)}),style:{...b.style,...h.style},children:ee}),te?a.jsx(vo,{label:m("Table"),icon:a.jsx(Zn,{icon:Zue,showColors:!0}),instructions:m("Insert a table for sharing data."),children:a.jsxs("form",{className:"blocks-table__placeholder-form",onSubmit:y,children:[a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,type:"number",label:m("Column count"),value:u,onChange:v,min:"1",className:"blocks-table__placeholder-input"}),a.jsx(dn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,type:"number",label:m("Row count"),value:c,onChange:M,min:"1",className:"blocks-table__placeholder-input"}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",children:m("Create Table")})]})}):a.jsx(fb,{attributes:e,setAttributes:t,isSelected:o,insertBlocksAfter:n,label:m("Table caption text"),showToolbarButton:o})]})}function Cpn({attributes:e}){const{hasFixedLayout:t,head:n,body:o,foot:r,caption:s}=e;if(!n.length&&!o.length&&!r.length)return null;const c=P1(e),l=X1(e),u=oe(c.className,l.className,{"has-fixed-layout":t}),d=!Ie.isEmpty(s),p=({type:f,rows:b})=>{if(!b.length)return null;const h=`t${f}`;return a.jsx(h,{children:b.map(({cells:g},z)=>a.jsx("tr",{children:g.map(({content:A,tag:_,scope:v,align:M,colspan:y,rowspan:k},S)=>{const C=oe({[`has-text-align-${M}`]:M});return a.jsx(Ie.Content,{className:C||void 0,"data-align":M,tagName:_,value:A,scope:_==="th"?v:void 0,colSpan:y,rowSpan:k},S)})},z))})};return a.jsxs("figure",{...Be.save(),children:[a.jsxs("table",{className:u===""?void 0:u,style:{...c.style,...l.style},children:[a.jsx(p,{type:"head",rows:n}),a.jsx(p,{type:"body",rows:o}),a.jsx(p,{type:"foot",rows:r})]}),d&&a.jsx(Ie.Content,{tagName:"figcaption",value:s,className:z0("caption")})]})}function tre(e){const t=parseInt(e,10);if(Number.isInteger(t))return t<0||t===1?void 0:t.toString()}const tE=({phrasingContentSchema:e})=>({tr:{allowEmpty:!0,children:{th:{allowEmpty:!0,children:e,attributes:["scope","colspan","rowspan"]},td:{allowEmpty:!0,children:e,attributes:["colspan","rowspan"]}}}}),qpn=e=>({table:{children:{thead:{allowEmpty:!0,children:tE(e)},tfoot:{allowEmpty:!0,children:tE(e)},tbody:{allowEmpty:!0,children:tE(e)}}}}),Rpn={from:[{type:"raw",selector:"table",schema:qpn,transform:e=>{const t=Array.from(e.children).reduce((n,o)=>{if(!o.children.length)return n;const r=o.nodeName.toLowerCase().slice(1),s=Array.from(o.children).reduce((i,c)=>{if(!c.children.length)return i;const l=Array.from(c.children).reduce((u,d)=>{const p=tre(d.getAttribute("rowspan")),f=tre(d.getAttribute("colspan"));return u.push({tag:d.nodeName.toLowerCase(),content:d.innerHTML,rowspan:p,colspan:f}),u},[]);return i.push({cells:l}),i},[]);return n[r]=s,n},{});return Ee("core/table",t)}}]},eF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/table",title:"Table",category:"text",description:"Create structured content in rows and columns to display information.",textdomain:"default",attributes:{hasFixedLayout:{type:"boolean",default:!0},caption:{type:"rich-text",source:"rich-text",selector:"figcaption"},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}}}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}}}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"rich-text",source:"rich-text"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"},colspan:{type:"string",source:"attribute",attribute:"colspan"},rowspan:{type:"string",source:"attribute",attribute:"rowspan"}}}}}},supports:{anchor:!0,align:!0,color:{__experimentalSkipSerialization:!0,gradients:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{__experimentalSkipSerialization:!0,color:!0,style:!0,width:!0,__experimentalDefaultControls:{color:!0,style:!0,width:!0}},interactivity:{clientNavigation:!0}},selectors:{root:".wp-block-table > table",spacing:".wp-block-table"},styles:[{name:"regular",label:"Default",isDefault:!0},{name:"stripes",label:"Stripes"}],editorStyle:"wp-block-table-editor",style:"wp-block-table"},{name:x5e}=eF,w5e={icon:Zue,example:{attributes:{head:[{cells:[{content:m("Version"),tag:"th"},{content:m("Jazz Musician"),tag:"th"},{content:m("Release Date"),tag:"th"}]}],body:[{cells:[{content:"5.2",tag:"td"},{content:"Jaco Pastorius",tag:"td"},{content:m("May 7, 2019"),tag:"td"}]},{cells:[{content:"5.1",tag:"td"},{content:"Betty Carter",tag:"td"},{content:m("February 21, 2019"),tag:"td"}]},{cells:[{content:"5.0",tag:"td"},{content:"Bebo Valdés",tag:"td"},{content:m("December 6, 2018"),tag:"td"}]}]},viewportWidth:450},transforms:Rpn,edit:Spn,save:Cpn,deprecated:hpn},Tpn=()=>it({name:x5e,metadata:eF,settings:w5e}),Epn=Object.freeze(Object.defineProperty({__proto__:null,init:Tpn,metadata:eF,name:x5e,settings:w5e},Symbol.toStringTag,{value:"Module"})),nre="wp-block-table-of-contents__entry";function b5({nestedHeadingList:e,disableLinkActivation:t,onClick:n}){return a.jsx(a.Fragment,{children:e.map((o,r)=>{const{content:s,link:i}=o.heading,c=i?a.jsx("a",{className:nre,href:i,"aria-disabled":t||void 0,onClick:t&&typeof n=="function"?n:void 0,children:s}):a.jsx("span",{className:nre,children:s});return a.jsxs("li",{children:[c,o.children?a.jsx("ol",{children:a.jsx(b5,{nestedHeadingList:o.children,disableLinkActivation:t,onClick:t&&typeof n=="function"?n:void 0})}):null]},r)})})}function tF(e){const t=[];return e.forEach((n,o)=>{if(n.content!==""&&n.level===e[0].level)if(e[o+1]?.level>n.level){let r=e.length;for(let s=o+1;s<e.length;s++)if(e[s].level===n.level){r=s;break}t.push({heading:n,children:tF(e.slice(o+1,r))})}else t.push({heading:n,children:null})}),t}function Wpn(e,t){var n,o;const{getBlockAttributes:r,getBlockName:s,getClientIdsWithDescendants:i,getBlocksByName:c}=e(Q),l=(n=e("core/editor").getPermalink())!==null&&n!==void 0?n:null,u=c("core/nextpage").length!==0,{onlyIncludeCurrentPage:d}=(o=r(t))!==null&&o!==void 0?o:{},p=i();let f=1;if(u&&d){const z=p.indexOf(t);for(const[A,_]of p.entries()){if(A>=z)break;s(_)==="core/nextpage"&&f++}}const b=[];let h=1,g=null;typeof l=="string"&&(g=u?tn(l,{page:h}):l);for(const z of p){const A=s(z);if(A==="core/nextpage"){if(h++,d&&h>f)break;typeof l=="string"&&(g=tn(C4(l,["page"]),{page:h}))}else if((!d||h===f)&&A==="core/heading"){const _=r(z),v=typeof g=="string"&&typeof _.anchor=="string"&&_.anchor!=="";b.push({content:v1(_.content.replace(/(<br *\/?>)+/g," ")),level:_.level,link:v?`${g}#${_.anchor}`:null})}}return b}function Npn(e,t,n){const{getBlockAttributes:o}=e(Q),{updateBlockAttributes:r,__unstableMarkNextChangeAsNotPersistent:s}=t(Q),i=o(n);if(i===null)return;const c=Wpn(e,n);N0(c,i.headings)||(s(),r(n,{headings:c}))}function Bpn(e){const t=Fn();x.useEffect(()=>t.subscribe(()=>Npn(t.select,t.dispatch,e)),[t,e])}function _5e({attributes:{headings:e=[],onlyIncludeCurrentPage:t},clientId:n,setAttributes:o}){Bpn(n);const r=Be(),s=vt(_5e,"table-of-contents"),{createWarningNotice:i}=Oe(mt),c=h=>{h.preventDefault(),i(m("Links are disabled in the editor."),{id:`block-library/core/table-of-contents/redirection-prevented/${s}`,type:"snackbar"})},l=G(h=>{const{getBlockRootClientId:g,canInsertBlockType:z}=h(Q),A=g(n);return z("core/list",A)},[n]),{replaceBlocks:u}=Oe(Q),d=Qo(),p=tF(e),f=l&&a.jsx(bt,{children:a.jsx(Wn,{children:a.jsx(Vt,{onClick:()=>u(n,Ee("core/list",{ordered:!0,values:M1(a.jsx(b5,{nestedHeadingList:p}))})),children:m("Convert to static list")})})}),b=a.jsx(et,{children:a.jsx(En,{label:m("Settings"),resetAll:()=>{o({onlyIncludeCurrentPage:!1})},dropdownMenuProps:d,children:a.jsx(tt,{hasValue:()=>!!t,label:m("Only include current page"),onDeselect:()=>o({onlyIncludeCurrentPage:!1}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Only include current page"),checked:t,onChange:h=>o({onlyIncludeCurrentPage:h}),help:m(t?"Only including headings from the current page (if the post is paginated).":"Include headings from all pages (if the post is paginated).")})})})});return e.length===0?a.jsxs(a.Fragment,{children:[a.jsx("div",{...r,children:a.jsx(vo,{icon:a.jsx(Zn,{icon:Vde}),label:m("Table of Contents"),instructions:m("Start adding Heading blocks to create a table of contents. Headings with HTML anchors will be linked here.")})}),b]}):a.jsxs(a.Fragment,{children:[a.jsx("nav",{...r,children:a.jsx("ol",{children:a.jsx(b5,{nestedHeadingList:p,disableLinkActivation:!0,onClick:c})})}),f,b]})}function Lpn({attributes:{headings:e=[]}}){return e.length===0?null:a.jsx("nav",{...Be.save(),children:a.jsx("ol",{children:a.jsx(b5,{nestedHeadingList:tF(e)})})})}const nF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,__experimental:!0,name:"core/table-of-contents",title:"Table of Contents",category:"design",description:"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here.",keywords:["document outline","summary"],textdomain:"default",attributes:{headings:{type:"array",items:{type:"object"},default:[]},onlyIncludeCurrentPage:{type:"boolean",default:!1}},supports:{html:!1,color:{text:!0,background:!0,gradients:!0,link:!0},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},style:"wp-block-table-of-contents"},{name:k5e}=nF,S5e={icon:Vde,edit:_5e,save:Lpn,example:{innerBlocks:[{name:"core/heading",attributes:{level:2,content:m("Heading")}},{name:"core/heading",attributes:{level:3,content:m("Subheading")}},{name:"core/heading",attributes:{level:2,content:m("Heading")}},{name:"core/heading",attributes:{level:3,content:m("Subheading")}}],attributes:{headings:[{content:m("Heading"),level:2},{content:m("Subheading"),level:3},{content:m("Heading"),level:2},{content:m("Subheading"),level:3}]}}},Ppn=()=>it({name:k5e,metadata:nF,settings:S5e}),jpn=Object.freeze(Object.defineProperty({__proto__:null,init:Ppn,metadata:nF,name:k5e,settings:S5e},Symbol.toStringTag,{value:"Module"})),Ipn={from:[{type:"block",blocks:["core/categories"],transform:()=>Ee("core/tag-cloud")}],to:[{type:"block",blocks:["core/categories"],transform:()=>Ee("core/categories")}]},Dpn=1,Fpn=100,ore=.1,rre=100;function $pn({attributes:e,setAttributes:t}){const{taxonomy:n,showTagCounts:o,numberOfTags:r,smallestFontSize:s,largestFontSize:i}=e,[c]=Un("spacing.units"),l=Qo(),u=U1({availableUnits:c?[...c,"pt"]:["%","px","em","rem","pt"]}),d=G(g=>g(Me).getTaxonomies({per_page:-1}),[]),p=()=>{const g={label:m("- Select -"),value:"",disabled:!0},z=(d??[]).filter(A=>!!A.show_cloud).map(A=>({value:A.slug,label:A.name}));return[g,...z]},f=(g,z)=>{const[A,_]=yo(z);if(!Number.isFinite(A))return;const v={[g]:z};Object.entries({smallestFontSize:s,largestFontSize:i}).forEach(([M,y])=>{const[k,S]=yo(y);M!==g&&S!==_&&(v[M]=`${k}${_}`)}),t(v)},b={...e,style:{...e?.style,border:void 0}},h=a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{t({taxonomy:"post_tag",showTagCounts:!1,numberOfTags:45,smallestFontSize:"8pt",largestFontSize:"22pt"})},dropdownMenuProps:l,children:[a.jsx(tt,{hasValue:()=>n!=="post_tag",label:m("Taxonomy"),onDeselect:()=>t({taxonomy:"post_tag"}),isShownByDefault:!0,children:a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Taxonomy"),options:p(),value:n,onChange:g=>t({taxonomy:g})})}),a.jsx(tt,{hasValue:()=>s!=="8pt"||i!=="22pt",label:m("Font size"),onDeselect:()=>t({smallestFontSize:"8pt",largestFontSize:"22pt"}),isShownByDefault:!0,children:a.jsxs(Yo,{gap:4,children:[a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{label:m("Smallest size"),value:s,onChange:g=>{f("smallestFontSize",g)},units:u,min:ore,max:rre,size:"__unstable-large"})}),a.jsx(Tn,{isBlock:!0,children:a.jsx(Ro,{label:m("Largest size"),value:i,onChange:g=>{f("largestFontSize",g)},units:u,min:ore,max:rre,size:"__unstable-large"})})]})}),a.jsx(tt,{hasValue:()=>r!==45,label:m("Number of tags"),onDeselect:()=>t({numberOfTags:45}),isShownByDefault:!0,children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Number of tags"),value:r,onChange:g=>t({numberOfTags:g}),min:Dpn,max:Fpn,required:!0})}),a.jsx(tt,{hasValue:()=>o!==!1,label:m("Show tag counts"),onDeselect:()=>t({showTagCounts:!1}),isShownByDefault:!0,children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Show tag counts"),checked:o,onChange:()=>t({showTagCounts:!o})})})]})});return a.jsxs(a.Fragment,{children:[h,a.jsx("div",{...Be(),children:a.jsx(I1,{children:a.jsx(FO,{skipBlockSupportAttributes:!0,block:"core/tag-cloud",attributes:b})})})]})}const oF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/tag-cloud",title:"Tag Cloud",category:"widgets",description:"A cloud of popular keywords, each sized by how often it appears.",textdomain:"default",attributes:{numberOfTags:{type:"number",default:45,minimum:1,maximum:100},taxonomy:{type:"string",default:"post_tag"},showTagCounts:{type:"boolean",default:!1},smallestFontSize:{type:"string",default:"8pt"},largestFontSize:{type:"string",default:"22pt"}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"outline",label:"Outline"}],supports:{html:!1,align:!0,spacing:{margin:!0,padding:!0},typography:{lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}},editorStyle:"wp-block-tag-cloud-editor"},{name:C5e}=oF,q5e={icon:XP,example:{},edit:$pn,transforms:Ipn},Vpn=()=>it({name:C5e,metadata:oF,settings:q5e}),Hpn=Object.freeze(Object.defineProperty({__proto__:null,init:Vpn,metadata:oF,name:C5e,settings:q5e},Symbol.toStringTag,{value:"Module"}));function rF(e,t){const{templateParts:n,isResolving:o}=G(s=>{const{getEntityRecords:i,isResolving:c}=s(Me),l={per_page:-1};return{templateParts:i("postType","wp_template_part",l),isResolving:c("getEntityRecords",["postType","wp_template_part",l])}},[]);return{templateParts:x.useMemo(()=>n?n.filter(s=>Ok(s.theme,s.slug)!==t&&(!e||e==="uncategorized"||s.area===e))||[]:[],[n,e,t]),isResolving:o}}function sF(e,t){return G(n=>{const o=e?`core/template-part/${e}`:"core/template-part",{getBlockRootClientId:r,getPatternsByBlockTypes:s}=n(Q),i=r(t);return s(o,i)},[e,t])}function R5e(e,t){const{saveEntityRecord:n}=Oe(Me);return async(o=[],r=m("Untitled Template Part"))=>{const s=Ti(r).replace(/[^\w-]+/g,"")||"wp-custom-part",i={title:r,slug:s,content:Ks(o),area:e},c=await n("postType","wp_template_part",i);t({slug:c.slug,theme:c.theme,area:void 0})}}function T5e(e){return G(t=>{var n;const o=t(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[],r=o.find(i=>i.area===e),s=o.find(i=>i.area==="uncategorized");return{icon:r?.icon||s?.icon,label:r?.label||m("Template Part"),tagName:(n=r?.area_tag)!==null&&n!==void 0?n:"div"}},[e])}function Upn({areaLabel:e,onClose:t,onSubmit:n}){const[o,r]=x.useState(""),s=i=>{i.preventDefault(),n(o)};return a.jsx(Zo,{title:xe(m("Create new %s"),e.toLowerCase()),onRequestClose:t,focusOnMount:"firstContentElement",size:"small",children:a.jsx("form",{onSubmit:s,children:a.jsxs(dt,{spacing:"5",children:[a.jsx(dn,{label:m("Name"),value:o,onChange:r,placeholder:m("Custom Template Part"),__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0}),a.jsxs(Ot,{justify:"right",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>{t(),r("")},children:m("Cancel")}),a.jsx(Ce,{variant:"primary",type:"submit",accessibleWhenDisabled:!0,disabled:!o.length,__next40pxDefaultSize:!0,children:m("Create")})]})]})})})}function Xpn({area:e,clientId:t,templatePartId:n,onOpenSelectionModal:o,setAttributes:r}){const{templateParts:s,isResolving:i}=rF(e,n),c=sF(e,t),{isBlockBasedTheme:l,canCreateTemplatePart:u}=G(h=>{const{getCurrentTheme:g,canUser:z}=h(Me);return{isBlockBasedTheme:g()?.is_block_theme,canCreateTemplatePart:z("create",{kind:"postType",name:"wp_template_part"})}},[]),[d,p]=x.useState(!1),f=T5e(e),b=R5e(e,r);return a.jsxs(vo,{icon:f.icon,label:f.label,instructions:xe(m(l?"Choose an existing %s or create a new one.":"Choose an existing %s."),f.label.toLowerCase()),children:[i&&a.jsx(Xn,{}),!i&&!!(s.length||c.length)&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:o,children:m("Choose")}),!i&&l&&u&&a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",onClick:()=>{p(!0)},children:m("Start blank")}),d&&a.jsx(Upn,{areaLabel:f.label,onClose:()=>p(!1),onSubmit:h=>{b([],h)}})]})}function Gpn(e){return{name:Ok(e.theme,e.slug),title:e.title.rendered,blocks:Ko(e.content.raw),templatePart:e}}function Kpn({setAttributes:e,onClose:t,templatePartId:n=null,area:o,clientId:r}){const[s,i]=x.useState(""),{templateParts:c}=rF(o,n),l=x.useMemo(()=>{const g=c.map(z=>Gpn(z));return AN(g,s)},[c,s]),u=sF(o,r),d=x.useMemo(()=>AN(u,s),[u,s]),{createSuccessNotice:p}=Oe(mt),f=g=>{e({slug:g.slug,theme:g.theme,area:void 0}),p(xe(m('Template Part "%s" inserted.'),g.title?.rendered||g.slug),{type:"snackbar"}),t()},b=!!l.length,h=!!d.length;return a.jsxs("div",{className:"block-library-template-part__selection-content",children:[a.jsx("div",{className:"block-library-template-part__selection-search",children:a.jsx(su,{__nextHasNoMarginBottom:!0,onChange:i,value:s,label:m("Search"),placeholder:m("Search")})}),b&&a.jsxs("div",{children:[a.jsx("h2",{children:m("Existing template parts")}),a.jsx(qa,{blockPatterns:l,onClickPattern:g=>{f(g.templatePart)}})]}),!b&&!h&&a.jsx(Ot,{alignment:"center",children:a.jsx("p",{children:m("No results found.")})})]})}function Ypn(e){if(e.id_base!=="block"){let o;return e._embedded.about[0].is_multi?o={idBase:e.id_base,instance:e.instance}:o={id:e.id},E5e(Ee("core/legacy-widget",o))}const t=Ko(e.instance.raw.content,{__unstableSkipAutop:!0});if(!t.length)return;const n=t[0];return n.name==="core/widget-group"?Ee(iie(),void 0,wN(n.innerBlocks)):n.innerBlocks.length>0?jo(n,void 0,wN(n.innerBlocks)):n}function E5e(e){const t=Aie([e]).filter(n=>{if(!n.transforms)return!0;const o=n.transforms?.from?.find(s=>s.blocks&&s.blocks.includes("*")),r=n.transforms?.to?.find(s=>s.blocks&&s.blocks.includes("*"));return!o&&!r});if(t.length)return Kr(e,t[0].name)}function wN(e=[]){return e.flatMap(t=>t.name==="core/legacy-widget"?E5e(t):Ee(t.name,t.attributes,wN(t.innerBlocks))).filter(t=>!!t)}const sre={per_page:-1,_fields:"id,name,description,status,widgets"};function Zpn({area:e,setAttributes:t}){const[n,o]=x.useState(""),[r,s]=x.useState(!1),i=Fn(),{sidebars:c,hasResolved:l}=G(b=>{const{getSidebars:h,hasFinishedResolution:g}=b(Me);return{sidebars:h(sre),hasResolved:g("getSidebars",[sre])}},[]),{createErrorNotice:u}=Oe(mt),d=R5e(e,t),p=x.useMemo(()=>{const b=(c??[]).filter(h=>h.id!=="wp_inactive_widgets"&&h.widgets.length>0).map(h=>({value:h.id,label:h.name}));return b.length?[{value:"",label:m("Select widget area")},...b]:[]},[c]);if(!l)return a.jsx(t1,{marginBottom:"0"});if(l&&!p.length)return null;async function f(b){if(b.preventDefault(),r||!n)return;s(!0);const h=p.find(({value:v})=>v===n),{getWidgets:g}=i.resolveSelect(Me),z=await g({sidebar:h.value,_embed:"about"}),A=new Set,_=z.flatMap(v=>{const M=Ypn(v);return M||(A.add(v.id_base),[])});await d(_,xe(m("Widget area: %s"),h.label)),A.size&&u(xe(m("Unable to import the following widgets: %s."),Array.from(A).join(", ")),{type:"snackbar"}),s(!1)}return a.jsx(t1,{marginBottom:"4",children:a.jsxs(Ot,{as:"form",onSubmit:f,children:[a.jsx(eu,{children:a.jsx(Pn,{label:m("Import widget area"),value:n,options:p,onChange:b=>o(b),disabled:!p.length,__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0})}),a.jsx(Tn,{style:{marginBottom:"8px",marginTop:"auto"},children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",isBusy:r,"aria-disabled":r||!n,children:We("Import","button label")})})]})})}const Qpn={header:m("The <header> element should represent introductory content, typically a group of introductory or navigational aids."),main:m("The <main> element should be used for the primary content of your document only."),section:m("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),article:m("The <article> element should represent a self-contained, syndicatable portion of the document."),aside:m("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content."),footer:m("The <footer> element should represent a footer for its nearest sectioning element (e.g.: <section>, <article>, <main> etc.).")};function Jpn({tagName:e,setAttributes:t,isEntityAvailable:n,templatePartId:o,defaultWrapper:r,hasInnerBlocks:s}){const[i,c]=Ao("postType","wp_template_part","area",o),[l,u]=Ao("postType","wp_template_part","title",o),p=G(f=>f(Me).getEntityRecord("root","__unstableBase")?.default_template_part_areas||[],[]).map(({label:f,area:b})=>({label:f,value:b}));return a.jsxs(a.Fragment,{children:[n&&a.jsxs(a.Fragment,{children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Title"),value:l,onChange:f=>{u(f)},onFocus:f=>f.target.select()}),a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Area"),labelPosition:"top",options:p,value:i,onChange:c})]}),a.jsx(Pn,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("HTML element"),options:[{label:xe(m("Default based on area (%s)"),`<${r}>`),value:""},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"},{label:"<div>",value:"div"}],value:e||"",onChange:f=>t({tagName:f}),help:Qpn[e]}),!s&&a.jsx(Zpn,{area:i,setAttributes:t})]})}function efn(e){if(Jr()==="contentOnly")return!1;if(!e)return Ht.ButtonBlockAppender}function W5e(e){const t=G(o=>{const{getSettings:r}=o(Q);return r()?.supportsLayout},[]),[n]=Un("layout");if(t)return e?.inherit?n||{}:e}function tfn({postId:e,layout:t,tagName:n,blockProps:o}){Jr("disabled");const{content:r,editedBlocks:s}=G(l=>{if(!e)return{};const{getEditedEntityRecord:u}=l(Me),d=u("postType","wp_template_part",e,{context:"view"});return{editedBlocks:d.blocks,content:d.content}},[e]),i=x.useMemo(()=>{if(e)return s||(!r||typeof r!="string"?[]:Ko(r))},[e,s,r]),c=Nt(o,{value:i,onInput:()=>{},onChange:()=>{},renderAppender:!1,layout:W5e(t)});return a.jsx(n,{...c})}function nfn({postId:e,hasInnerBlocks:t,layout:n,tagName:o,blockProps:r}){const s=G(f=>f(Q).getSettings().onNavigateToEntityRecord,[]),[i,c,l]=ya("postType","wp_template_part",{id:e}),u=Nt(r,{value:i,onInput:c,onChange:l,renderAppender:efn(t),layout:W5e(n)}),p=Jr()==="contentOnly"&&s?{onDoubleClick:()=>s({postId:e,postType:"wp_template_part"})}:{};return a.jsx(o,{...u,...p})}function ofn({postId:e,hasInnerBlocks:t,layout:n,tagName:o,blockProps:r}){const{canViewTemplatePart:s,canEditTemplatePart:i}=G(l=>({canViewTemplatePart:!!l(Me).canUser("read",{kind:"postType",name:"wp_template_part",id:e}),canEditTemplatePart:!!l(Me).canUser("update",{kind:"postType",name:"wp_template_part",id:e})}),[e]);if(!s)return null;const c=i?nfn:tfn;return a.jsx(c,{postId:e,hasInnerBlocks:t,layout:n,tagName:o,blockProps:r})}function rfn({isEntityAvailable:e,area:t,templatePartId:n,isTemplatePartSelectionOpen:o,setIsTemplatePartSelectionOpen:r}){const{templateParts:s}=rF(t,n),i=!!s.length;return e&&i&&(t==="header"||t==="footer")?a.jsx(Ct,{onClick:()=>{r(!0)},"aria-expanded":o,"aria-haspopup":"dialog",children:m("Replace")}):null}function sfn({area:e,clientId:t,isEntityAvailable:n,onSelect:o}){const r=sF(e,t);return n&&!!r.length&&(e==="header"||e==="footer")?a.jsx(Qt,{title:m("Design"),children:a.jsx(qa,{label:m("Templates"),blockPatterns:r,onClickPattern:o,showTitlesAsTooltip:!0})}):null}function ifn({attributes:e,setAttributes:t,clientId:n}){const{createSuccessNotice:o}=Oe(mt),{editEntityRecord:r}=Oe(Me),s=G(E=>E(Me).getCurrentTheme()?.stylesheet,[]),{slug:i,theme:c=s,tagName:l,layout:u={}}=e,d=Ok(c,i),p=nk(d),[f,b]=x.useState(!1),{isResolved:h,hasInnerBlocks:g,isMissing:z,area:A,onNavigateToEntityRecord:_,title:v,canUserEdit:M}=G(E=>{const{getEditedEntityRecord:B,hasFinishedResolution:N}=E(Me),{getBlockCount:j,getSettings:I}=E(Q),P=["postType","wp_template_part",d],$=d?B(...P):null,F=$?.area||e.area,X=d?N("getEditedEntityRecord",P):!1,Z=X?E(Me).canUser("update",{kind:"postType",name:"wp_template_part",id:d}):!1;return{hasInnerBlocks:j(n)>0,isResolved:X,isMissing:X&&(!$||Object.keys($).length===0),area:F,onNavigateToEntityRecord:I().onNavigateToEntityRecord,title:$?.title,canUserEdit:!!Z}},[d,e.area,n]),y=T5e(A),k=Be(),S=!i,C=!S&&!z&&h,R=l||y.tagName,T=async E=>{await r("postType","wp_template_part",d,{blocks:E.blocks,content:Ks(E.blocks)}),o(xe(m('Template Part "%s" updated.'),v||i),{type:"snackbar"})};return!g&&(i&&!c||i&&z)?a.jsx(R,{...k,children:a.jsx(Er,{children:xe(m("Template part has been deleted or is unavailable: %s"),i)})}):C&&p?a.jsx(R,{...k,children:a.jsx(Er,{children:m("Block cannot be rendered inside itself.")})}):a.jsxs(a.Fragment,{children:[a.jsxs(TO,{uniqueId:d,children:[C&&_&&M&&a.jsx(bt,{group:"other",children:a.jsx(Vt,{onClick:()=>_({postId:d,postType:"wp_template_part"}),children:m("Edit")})}),M&&a.jsx(et,{group:"advanced",children:a.jsx(Jpn,{tagName:l,setAttributes:t,isEntityAvailable:C,templatePartId:d,defaultWrapper:y.tagName,hasInnerBlocks:g})}),S&&a.jsx(R,{...k,children:a.jsx(Xpn,{area:e.area,templatePartId:d,clientId:n,setAttributes:t,onOpenSelectionModal:()=>b(!0)})}),a.jsx(cb,{children:({selectedClientIds:E})=>E.length===1&&n===E[0]?a.jsx(rfn,{isEntityAvailable:C,area:A,clientId:n,templatePartId:d,isTemplatePartSelectionOpen:f,setIsTemplatePartSelectionOpen:b}):null}),a.jsx(et,{children:a.jsx(sfn,{area:A,clientId:n,isEntityAvailable:C,onSelect:E=>T(E)})}),C&&a.jsx(ofn,{tagName:R,blockProps:k,postId:d,hasInnerBlocks:g,layout:u}),!S&&!h&&a.jsx(R,{...k,children:a.jsx(Xn,{})})]}),f&&a.jsx(Zo,{overlayClassName:"block-editor-template-part__selection-modal",title:xe(m("Choose a %s"),y.label.toLowerCase()),onRequestClose:()=>b(!1),isFullScreen:!0,children:a.jsx(Kpn,{templatePartId:d,clientId:n,area:A,setAttributes:t,onClose:()=>b(!1)})})]})}function afn(e,t){if(t!=="core/template-part")return e;if(e.variations){const n=(r,s)=>{const{area:i,theme:c,slug:l}=r;if(i)return i===s.area;if(!l)return!1;const{getCurrentTheme:u,getEntityRecord:d}=uo(Me),p=d("postType","wp_template_part",`${c||u()?.stylesheet}//${l}`);return p?.slug?p.slug===s.slug:p?.area===s.area},o=e.variations.map(r=>({...r,...!r.isActive&&{isActive:n},...typeof r.icon=="string"&&{icon:b4e(r.icon)}}));return{...e,variations:o}}return e}const iF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/template-part",title:"Template Part",category:"theme",description:"Edit the different global regions of your site, like the header, footer, sidebar, or create your own.",textdomain:"default",attributes:{slug:{type:"string"},theme:{type:"string"},tagName:{type:"string"},area:{type:"string"}},supports:{align:!0,html:!1,reusable:!1,renaming:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-template-part-editor"},{name:N5e}=iF,B5e={icon:Qf,__experimentalLabel:({slug:e,theme:t})=>{if(!e)return;const{getCurrentTheme:n,getEditedEntityRecord:o}=uo(Me),r=o("postType","wp_template_part",(t||n()?.stylesheet)+"//"+e);if(r)return Lt(r.title)||Lre(r.slug||"")},edit:ifn},cfn=()=>{Bn("blocks.registerBlockType","core/template-part",afn);const e=["core/post-template","core/post-content"];return Bn("blockEditor.__unstableCanInsertBlockType","core/block-library/removeTemplatePartsFromPostTemplates",(t,n,o,{getBlock:r,getBlockParentsByBlockName:s})=>{if(n.name!=="core/template-part")return t;for(const i of e)if(r(o)?.name===i||s(o,i).length)return!1;return!0}),it({name:N5e,metadata:iF,settings:B5e})},lfn=Object.freeze(Object.defineProperty({__proto__:null,init:cfn,metadata:iF,name:N5e,settings:B5e},Symbol.toStringTag,{value:"Module"}));function ufn({attributes:e,setAttributes:t,mergedStyle:n}){const{textAlign:o}=e,r=Be({className:oe({[`has-text-align-${o}`]:o}),style:n});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{group:"block",children:a.jsx(nr,{value:o,onChange:s=>{t({textAlign:s})}})}),a.jsx("div",{...r,children:a.jsx("div",{className:"wp-block-term-description__placeholder",children:a.jsx("span",{children:m("Term Description")})})})]})}const aF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/term-description",title:"Term Description",category:"theme",description:"Display the description of categories, tags and custom taxonomies when viewing an archive.",textdomain:"default",attributes:{textAlign:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{link:!0,__experimentalDefaultControls:{background:!0,text:!0}},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!0,color:!0,width:!0,style:!0}}}},{name:L5e}=aF,P5e={icon:ZQe,edit:ufn,example:{}},dfn=()=>it({name:L5e,metadata:aF,settings:P5e}),pfn=Object.freeze(Object.defineProperty({__proto__:null,init:dfn,metadata:aF,name:L5e,settings:P5e},Symbol.toStringTag,{value:"Module"}));function ffn({attributes:e,setAttributes:t}){const{width:n,content:o,columns:r}=e;return Ke("The Text Columns block",{since:"5.3",alternative:"the Columns block"}),a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Ovt,{value:n,onChange:s=>t({width:s}),controls:["center","wide","full"]})}),a.jsx(et,{children:a.jsx(Qt,{children:a.jsx(bo,{__nextHasNoMarginBottom:!0,__next40pxDefaultSize:!0,label:m("Columns"),value:r,onChange:s=>t({columns:s}),min:2,max:4,required:!0})})}),a.jsx("div",{...Be({className:`align${n} columns-${r}`}),children:Array.from({length:r}).map((s,i)=>a.jsx("div",{className:"wp-block-column",children:a.jsx(Ie,{tagName:"p",value:o?.[i]?.children,onChange:c=>{t({content:[...o.slice(0,i),{children:c},...o.slice(i+1)]})},"aria-label":xe(m("Column %d text"),i+1),placeholder:m("New Column")})},`column-${i}`))})]})}function bfn({attributes:e}){const{width:t,content:n,columns:o}=e;return a.jsx("div",{...Be.save({className:`align${t} columns-${o}`}),children:Array.from({length:o}).map((r,s)=>a.jsx("div",{className:"wp-block-column",children:a.jsx(Ie.Content,{tagName:"p",value:n?.[s]?.children})},`column-${s}`))})}const hfn={to:[{type:"block",blocks:["core/columns"],transform:({className:e,columns:t,content:n,width:o})=>Ee("core/columns",{align:o==="wide"||o==="full"?o:void 0,className:e,columns:t},n.map(({children:r})=>Ee("core/column",{},[Ee("core/paragraph",{content:r})])))}]},cF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/text-columns",title:"Text Columns (deprecated)",icon:"columns",category:"design",description:"This block is deprecated. Please use the Columns block instead.",textdomain:"default",attributes:{content:{type:"array",source:"query",selector:"p",query:{children:{type:"string",source:"html"}},default:[{},{}]},columns:{type:"number",default:2},width:{type:"string"}},supports:{inserter:!1,interactivity:{clientNavigation:!0}},editorStyle:"wp-block-text-columns-editor",style:"wp-block-text-columns"},{name:j5e}=cF,I5e={transforms:hfn,getEditWrapperProps(e){const{width:t}=e;if(t==="wide"||t==="full")return{"data-align":t}},edit:ffn,save:bfn},mfn=()=>it({name:j5e,metadata:cF,settings:I5e}),gfn=Object.freeze(Object.defineProperty({__proto__:null,init:mfn,metadata:cF,name:j5e,settings:I5e},Symbol.toStringTag,{value:"Module"})),Mfn={attributes:{content:{type:"string",source:"html",selector:"pre",default:""},textAlign:{type:"string"}},save({attributes:e}){const{textAlign:t,content:n}=e;return a.jsx(Ie.Content,{tagName:"pre",style:{textAlign:t},value:n})}},zfn={attributes:{content:{type:"string",source:"html",selector:"pre",default:"",__unstablePreserveWhiteSpace:!0,role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,color:{gradients:!0,link:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},spacing:{padding:!0}},save({attributes:e}){const{textAlign:t,content:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsx("pre",{...Be.save({className:o}),children:a.jsx(Ie.Content,{value:n})})},migrate:A1,isEligible({style:e}){return e?.typography?.fontFamily}},Ofn=[zfn,Mfn];function yfn({attributes:e,setAttributes:t,mergeBlocks:n,onRemove:o,insertBlocksAfter:r,style:s}){const{textAlign:i,content:c}=e,l=Be({className:oe({[`has-text-align-${i}`]:i}),style:s});return a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(jz,{value:i,onChange:u=>{t({textAlign:u})}})}),a.jsx(Ie,{tagName:"pre",identifier:"content",preserveWhiteSpace:!0,value:c,onChange:u=>{t({content:u})},"aria-label":m("Verse text"),placeholder:m("Write verse…"),onRemove:o,onMerge:n,textAlign:i,...l,__unstablePastePlainText:!0,__unstableOnSplitAtDoubleLineEnd:()=>r(Ee(Mr()))})]})}function Afn({attributes:e}){const{textAlign:t,content:n}=e,o=oe({[`has-text-align-${t}`]:t});return a.jsx("pre",{...Be.save({className:o}),children:a.jsx(Ie.Content,{value:n})})}const vfn={from:[{type:"block",blocks:["core/paragraph"],transform:e=>Ee("core/verse",e)}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>Ee("core/paragraph",e)}]},lF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/verse",title:"Verse",category:"text",description:"Insert poetry. Use special spacing formats. Or quote song lyrics.",keywords:["poetry","poem"],textdomain:"default",attributes:{content:{type:"rich-text",source:"rich-text",selector:"pre",__unstablePreserveWhiteSpace:!0,role:"content"},textAlign:{type:"string"}},supports:{anchor:!0,background:{backgroundImage:!0,backgroundSize:!0,__experimentalDefaultControls:{backgroundImage:!0}},color:{gradients:!0,link:!0,__experimentalDefaultControls:{background:!0,text:!0}},dimensions:{minHeight:!0,__experimentalDefaultControls:{minHeight:!1}},typography:{fontSize:!0,__experimentalFontFamily:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalTextDecoration:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},__experimentalBorder:{radius:!0,width:!0,color:!0,style:!0},interactivity:{clientNavigation:!0}},style:"wp-block-verse",editorStyle:"wp-block-verse-editor"},{name:D5e}=lF,F5e={icon:Fw,example:{attributes:{content:m(`WHAT was he doing, the great god Pan, Down in the reeds by the river? Spreading ruin and scattering ban, Splashing and paddling with hoofs of a goat, And breaking the golden lilies afloat With the dragon-fly on the river.`)}},transforms:vfn,deprecated:Ofn,merge(e,t){return{content:e.content+` -`+t.content}},edit:yfn,save:Afn},xfn=()=>it({name:F5e,metadata:uF,settings:$5e}),wfn=Object.freeze(Object.defineProperty({__proto__:null,init:xfn,metadata:uF,name:F5e,settings:$5e},Symbol.toStringTag,{value:"Module"}));function dF({tracks:e=[]}){return e.map(t=>a.jsx("track",{...t},t.src))}const _fn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/video",title:"Video",category:"media",description:"Embed a video from your media library or upload a new one.",keywords:["movie"],textdomain:"default",attributes:{autoplay:{type:"boolean",source:"attribute",selector:"video",attribute:"autoplay"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},controls:{type:"boolean",source:"attribute",selector:"video",attribute:"controls",default:!0},id:{type:"number",role:"content"},loop:{type:"boolean",source:"attribute",selector:"video",attribute:"loop"},muted:{type:"boolean",source:"attribute",selector:"video",attribute:"muted"},poster:{type:"string",source:"attribute",selector:"video",attribute:"poster"},preload:{type:"string",source:"attribute",selector:"video",attribute:"preload",default:"metadata"},blob:{type:"string",role:"local"},src:{type:"string",source:"attribute",selector:"video",attribute:"src",role:"content"},playsInline:{type:"boolean",source:"attribute",selector:"video",attribute:"playsinline"},tracks:{role:"content",type:"array",items:{type:"object"},default:[]}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-video-editor",style:"wp-block-video"},{attributes:kfn}=_fn,Sfn={attributes:kfn,save({attributes:e}){const{autoplay:t,caption:n,controls:o,loop:r,muted:s,poster:i,preload:c,src:l,playsInline:u,tracks:d}=e;return a.jsxs("figure",{...Be.save(),children:[l&&a.jsx("video",{autoPlay:t,controls:o,loop:r,muted:s,poster:i,preload:c!=="metadata"?c:void 0,src:l,playsInline:u,children:a.jsx(dF,{tracks:d})}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n})]})}},Cfn=[Sfn];function qfn({poster:e,setAttributes:t,instanceId:n}){const o=x.useRef(),r=["image"],s=`video-block__poster-image-description-${n}`;function i(l){t({poster:l.url})}function c(){t({poster:void 0}),o.current.focus()}return a.jsx(tt,{label:m("Poster image"),isShownByDefault:!0,hasValue:()=>!!e,onDeselect:()=>{t({poster:""})},children:a.jsx(Hd,{children:a.jsxs("div",{className:"editor-video-poster-control",children:[a.jsx(no.VisualLabel,{children:m("Poster image")}),a.jsx(ab,{title:m("Select poster image"),onSelect:i,allowedTypes:r,render:({open:l})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:l,ref:o,"aria-describedby":s,children:m(e?"Replace":"Select")})}),a.jsx("p",{id:s,hidden:!0,children:e?xe(m("The current poster image url is %s"),e):m("There is no poster image currently selected")}),!!e&&a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:c,variant:"tertiary",children:m("Remove")})]})})})}const Rfn=[{value:"auto",label:m("Auto")},{value:"metadata",label:m("Metadata")},{value:"none",label:We("None","Preload value")}],Tfn=({setAttributes:e,attributes:t})=>{const{autoplay:n,controls:o,loop:r,muted:s,playsInline:i,preload:c}=t,l=m("Autoplay may cause usability issues for some users."),u=f0.select({web:x.useCallback(f=>f?l:null,[]),native:l}),d=x.useMemo(()=>{const f=b=>h=>{e({[b]:h})};return{autoplay:f("autoplay"),loop:f("loop"),muted:f("muted"),controls:f("controls"),playsInline:f("playsInline")}},[]),p=x.useCallback(f=>{e({preload:f})},[]);return a.jsxs(a.Fragment,{children:[a.jsx(tt,{label:m("Autoplay"),isShownByDefault:!0,hasValue:()=>!!n,onDeselect:()=>{e({autoplay:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Autoplay"),onChange:d.autoplay,checked:!!n,help:u})}),a.jsx(tt,{label:m("Loop"),isShownByDefault:!0,hasValue:()=>!!r,onDeselect:()=>{e({loop:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Loop"),onChange:d.loop,checked:!!r})}),a.jsx(tt,{label:m("Muted"),isShownByDefault:!0,hasValue:()=>!!s,onDeselect:()=>{e({muted:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Muted"),onChange:d.muted,checked:!!s})}),a.jsx(tt,{label:m("Playback controls"),isShownByDefault:!0,hasValue:()=>!o,onDeselect:()=>{e({controls:!0})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Playback controls"),onChange:d.controls,checked:!!o})}),a.jsx(tt,{label:m("Play inline"),isShownByDefault:!0,hasValue:()=>!!i,onDeselect:()=>{e({playsInline:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Play inline"),onChange:d.playsInline,checked:i,help:m("When enabled, videos will play directly within the webpage on mobile browsers, instead of opening in a fullscreen player.")})}),a.jsx(tt,{label:m("Preload"),isShownByDefault:!0,hasValue:()=>c!=="metadata",onDeselect:()=>{e({preload:"metadata"})},children:a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Preload"),value:c,onChange:p,options:Rfn,hideCancelButton:!0})})]})},ire=["text/vtt"],are="subtitles",Efn=[{label:m("Subtitles"),value:"subtitles"},{label:m("Captions"),value:"captions"},{label:m("Descriptions"),value:"descriptions"},{label:m("Chapters"),value:"chapters"},{label:m("Metadata"),value:"metadata"}];function Wfn({tracks:e,onEditPress:t}){const n=e.map((o,r)=>a.jsxs(Ot,{className:"block-library-video-tracks-editor__track-list-track",children:[a.jsx("span",{children:o.label}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>t(r),"aria-label":xe(We("Edit %s","text tracks"),o.label),children:m("Edit")})]},r));return a.jsx(Cn,{label:m("Text tracks"),className:"block-library-video-tracks-editor__track-list",children:n})}function Nfn({track:e,onChange:t,onClose:n,onRemove:o}){const{src:r="",label:s="",srcLang:i="",kind:c=are}=e,l=r.startsWith("blob:")?"":If(r)||"";return a.jsxs(dt,{className:"block-library-video-tracks-editor__single-track-editor",spacing:"4",children:[a.jsx("span",{className:"block-library-video-tracks-editor__single-track-editor-edit-track-label",children:m("Edit track")}),a.jsxs("span",{children:[m("File"),": ",a.jsx("b",{children:l})]}),a.jsxs(nO,{columns:2,gap:4,children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,onChange:u=>t({...e,label:u}),label:m("Label"),value:s,help:m("Title of track")}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,onChange:u=>t({...e,srcLang:u}),label:m("Source language"),value:i,help:m("Language tag (en, fr, etc.)")})]}),a.jsxs(dt,{spacing:"8",children:[a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"block-library-video-tracks-editor__single-track-editor-kind-select",options:Efn,value:c,label:m("Kind"),onChange:u=>{t({...e,kind:u})}}),a.jsxs(Ot,{className:"block-library-video-tracks-editor__single-track-editor-buttons-container",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,isDestructive:!0,variant:"link",onClick:o,children:m("Remove track")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:()=>{const u={};let d=!1;s===""&&(u.label=m("English"),d=!0),i===""&&(u.srcLang="en",d=!0),e.kind===void 0&&(u.kind=are,d=!0),d&&t({...e,...u}),n()},children:m("Apply")})]})]})]})}function Bfn({tracks:e=[],onChange:t}){const n=G(i=>i(Q).getSettings().mediaUpload,[]),[o,r]=x.useState(null),s=x.useRef();return x.useEffect(()=>{s.current?.focus()},[o]),n?a.jsx(so,{contentClassName:"block-library-video-tracks-editor",focusOnMount:!0,popoverProps:{ref:s},renderToggle:({isOpen:i,onToggle:c})=>{const l=()=>{i||r(null),c()};return a.jsx(Wn,{children:a.jsx(Vt,{"aria-expanded":i,"aria-haspopup":"true",onClick:l,children:m("Text tracks")})})},renderContent:()=>o!==null?a.jsx(Nfn,{track:e[o],onChange:i=>{const c=[...e];c[o]=i,t(c)},onClose:()=>r(null),onRemove:()=>{t(e.filter((i,c)=>c!==o)),r(null)}}):a.jsxs(a.Fragment,{children:[e.length===0&&a.jsxs("div",{className:"block-library-video-tracks-editor__tracks-informative-message",children:[a.jsx("h2",{className:"block-library-video-tracks-editor__tracks-informative-message-title",children:m("Text tracks")}),a.jsx("p",{className:"block-library-video-tracks-editor__tracks-informative-message-description",children:m("Tracks can be subtitles, captions, chapters, or descriptions. They help make your content more accessible to a wider range of users.")})]}),a.jsxs(pm,{children:[a.jsx(Wfn,{tracks:e,onEditPress:r}),a.jsxs(Cn,{className:"block-library-video-tracks-editor__add-tracks-container",label:m("Add tracks"),children:[a.jsx(ab,{onSelect:({url:i})=>{const c=e.length;t([...e,{src:i}]),r(c)},allowedTypes:ire,render:({open:i})=>a.jsx(Ct,{icon:DP,onClick:i,children:m("Open Media Library")})}),a.jsx(Hd,{children:a.jsx(qx,{onChange:i=>{const c=i.target.files,l=e.length;n({allowedTypes:ire,filesList:c,onFileChange:([{url:u}])=>{const d=[...e];d[l]||(d[l]={}),d[l]={...e[l],src:u},t(d),r(l)}})},accept:".vtt,text/vtt",render:({openFileDialog:i})=>a.jsx(Ct,{icon:cm,onClick:()=>{i()},children:We("Upload","verb")})})})]})]})]})}):null}const oE=["video"];function V5e({isSelected:e,attributes:t,className:n,setAttributes:o,insertBlocksAfter:r,onReplace:s}){const i=vt(V5e),c=x.useRef(),{id:l,controls:u,poster:d,src:p,tracks:f}=t,[b,h]=x.useState(t.blob),g=Qo();pk({url:b,allowedTypes:oE,onChange:z,onError:v}),x.useEffect(()=>{c.current&&c.current.load()},[d]);function z(S){if(!S||!S.url){o({src:void 0,id:void 0,poster:void 0,caption:void 0,blob:void 0}),h();return}if(Nr(S.url)){h(S.url);return}o({blob:void 0,src:S.url,id:S.id,poster:S.image?.src!==S.icon?S.image?.src:void 0,caption:S.caption}),h()}function A(S){if(S!==p){const C=fk({attributes:{url:S}});if(C!==void 0&&s){s(C);return}o({blob:void 0,src:S,id:void 0,poster:void 0}),h()}}const{createErrorNotice:_}=Oe(mt);function v(S){_(S,{type:"snackbar"})}const M=S=>a.jsx(vo,{className:"block-editor-media-placeholder",withIllustration:!e,icon:P8,label:m("Video"),instructions:m("Drag and drop a video, upload, or choose from your library."),children:S}),y=oe(n,{"is-transient":!!b}),k=Be({className:y});return!p&&!b?a.jsx("div",{...k,children:a.jsx(au,{icon:a.jsx(Zn,{icon:P8}),onSelect:z,onSelectURL:A,accept:"video/*",allowedTypes:oE,value:t,onError:v,placeholder:M})}):a.jsxs(a.Fragment,{children:[e&&a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Bfn,{tracks:f,onChange:S=>{o({tracks:S})}})}),a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:l,mediaURL:p,allowedTypes:oE,accept:"video/*",onSelect:z,onSelectURL:A,onError:v,onReset:()=>z(void 0)})})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{o({autoplay:!1,controls:!0,loop:!1,muted:!1,playsInline:!1,preload:"metadata",poster:""})},dropdownMenuProps:g,children:[a.jsx(Tfn,{setAttributes:o,attributes:t}),a.jsx(qfn,{poster:d,setAttributes:o,instanceId:i})]})}),a.jsxs("figure",{...k,children:[a.jsx(I1,{isDisabled:!e,children:a.jsx("video",{controls:u,poster:d,src:p||b,ref:c,children:a.jsx(dF,{tracks:f})})}),!!b&&a.jsx(Xn,{}),a.jsx(fb,{attributes:t,setAttributes:o,isSelected:e,insertBlocksAfter:r,label:m("Video caption text"),showToolbarButton:e})]})]})}function Lfn({attributes:e}){const{autoplay:t,caption:n,controls:o,loop:r,muted:s,poster:i,preload:c,src:l,playsInline:u,tracks:d}=e;return a.jsxs("figure",{...Be.save(),children:[l&&a.jsx("video",{autoPlay:t,controls:o,loop:r,muted:s,poster:i,preload:c!=="metadata"?c:void 0,src:l,playsInline:u,children:a.jsx(dF,{tracks:d})}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:n})]})}const Pfn={from:[{type:"files",isMatch(e){return e.length===1&&e[0].type.indexOf("video/")===0},transform(e){const t=e[0];return Ee("core/video",{blob:ls(t)})}},{type:"shortcode",tag:"video",attributes:{src:{type:"string",shortcode:({named:{src:e,mp4:t,m4v:n,webm:o,ogv:r,flv:s}})=>e||t||n||o||r||s},poster:{type:"string",shortcode:({named:{poster:e}})=>e},loop:{type:"string",shortcode:({named:{loop:e}})=>e},autoplay:{type:"string",shortcode:({named:{autoplay:e}})=>e},preload:{type:"string",shortcode:({named:{preload:e}})=>e}}},{type:"raw",isMatch:e=>e.nodeName==="P"&&e.children.length===1&&e.firstChild.nodeName==="VIDEO",transform:e=>{const t=e.firstChild,n={autoplay:t.hasAttribute("autoplay")?!0:void 0,controls:t.hasAttribute("controls")?void 0:!1,loop:t.hasAttribute("loop")?!0:void 0,muted:t.hasAttribute("muted")?!0:void 0,preload:t.getAttribute("preload")||void 0,playsInline:t.hasAttribute("playsinline")?!0:void 0,poster:t.getAttribute("poster")||void 0,src:t.getAttribute("src")||void 0};return Nr(n.src)&&(n.blob=n.src,delete n.src),Ee("core/video",n)}}]},pF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/video",title:"Video",category:"media",description:"Embed a video from your media library or upload a new one.",keywords:["movie"],textdomain:"default",attributes:{autoplay:{type:"boolean",source:"attribute",selector:"video",attribute:"autoplay"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},controls:{type:"boolean",source:"attribute",selector:"video",attribute:"controls",default:!0},id:{type:"number",role:"content"},loop:{type:"boolean",source:"attribute",selector:"video",attribute:"loop"},muted:{type:"boolean",source:"attribute",selector:"video",attribute:"muted"},poster:{type:"string",source:"attribute",selector:"video",attribute:"poster"},preload:{type:"string",source:"attribute",selector:"video",attribute:"preload",default:"metadata"},blob:{type:"string",role:"local"},src:{type:"string",source:"attribute",selector:"video",attribute:"src",role:"content"},playsInline:{type:"boolean",source:"attribute",selector:"video",attribute:"playsinline"},tracks:{role:"content",type:"array",items:{type:"object"},default:[]}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-video-editor",style:"wp-block-video"},{name:H5e}=pF,U5e={icon:P8,example:{attributes:{src:"https://upload.wikimedia.org/wikipedia/commons/c/ca/Wood_thrush_in_Central_Park_switch_sides_%2816510%29.webm",caption:m("Wood thrush singing in Central Park, NYC.")}},transforms:Pfn,deprecated:Cfn,edit:V5e,save:Lfn},jfn=()=>it({name:H5e,metadata:pF,settings:U5e}),Ifn=Object.freeze(Object.defineProperty({__proto__:null,init:jfn,metadata:pF,name:H5e,settings:U5e},Symbol.toStringTag,{value:"Module"}));function Dfn({context:{postType:e,postId:t}}){const[n,o]=Ao("postType",e,"meta",t),r=typeof n?.footnotes=="string",s=n?.footnotes?JSON.parse(n.footnotes):[],i=Be();return r?s.length?a.jsx("ol",{...i,children:s.map(({id:c,content:l})=>a.jsxs("li",{onMouseDown:u=>{u.target===u.currentTarget&&(u.target.firstElementChild.focus(),u.preventDefault())},children:[a.jsx(Ie,{id:c,tagName:"span",value:l,identifier:c,onFocus:u=>{u.target.textContent.trim()||u.target.scrollIntoView()},onChange:u=>{o({...n,footnotes:JSON.stringify(s.map(d=>d.id===c?{content:u,id:c}:d))})}})," ",a.jsx("a",{href:`#${c}-link`,children:"↩︎"})]},c))}):a.jsx("div",{...i,children:a.jsx(vo,{icon:a.jsx(Zn,{icon:Mz}),label:m("Footnotes"),instructions:m("Footnotes found in blocks within this document will be displayed here.")})}):a.jsx("div",{...i,children:a.jsx(vo,{icon:a.jsx(Zn,{icon:Mz}),label:m("Footnotes"),instructions:m("Footnotes are not supported here. Add this block to post or page content.")})})}const{usesContextKey:Ffn}=e0(Ln),X5e="core/footnote",cre="core/post-content",$fn="core/block",Vfn={title:m("Footnote"),tagName:"sup",className:"fn",attributes:{"data-fn":"data-fn"},interactive:!0,contentEditable:!1,[Ffn]:["postType","postId"],edit:function({value:t,onChange:n,isObjectActive:o,context:{postType:r,postId:s}}){const i=Fn(),{getSelectedBlockClientId:c,getBlocks:l,getBlockRootClientId:u,getBlockName:d,getBlockParentsByBlockName:p}=i.select(Q),f=G(z=>{if(!z(kt).getBlockType("core/footnotes"))return!1;const A=z(Q).getSettings().allowedBlockTypes;if(A===!1||Array.isArray(A)&&!A.includes("core/footnotes")||typeof z(Me).getEntityRecord("postType",r,s)?.meta?.footnotes!="string")return!1;const{getBlockParentsByBlockName:v,getSelectedBlockClientId:M}=z(Q),y=v(M(),$fn);return!y||y.length===0},[r,s]),{selectionChange:b,insertBlock:h}=Oe(Q);if(!f)return null;function g(){i.batch(()=>{let z;if(o)z=t.replacements[t.start]?.attributes?.["data-fn"];else{z=Is();const y=J0e(t,{type:X5e,attributes:{"data-fn":z},innerHTML:`<a href="#${z}" id="${z}-link">*</a>`},t.end,t.end);y.start=y.end-1,n(y)}const A=c(),_=p(A,cre),v=_.length?l(_[0]):l();let M=null;{const y=[...v];for(;y.length;){const k=y.shift();if(k.name==="core/footnotes"){M=k;break}y.push(...k.innerBlocks)}}if(!M){let y=u(A);for(;y&&d(y)!==cre;)y=u(y);M=Ee("core/footnotes"),h(M,void 0,y)}b(M.clientId,z,0,0)})}return a.jsx(Zs,{icon:Mz,title:m("Footnote"),onClick:g,isActive:o})}},fF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/footnotes",title:"Footnotes",category:"text",description:"Display footnotes added to the page.",keywords:["references"],textdomain:"default",usesContext:["postId","postType"],supports:{__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!1,color:!1,width:!1,style:!1}},color:{background:!0,link:!0,text:!0,__experimentalDefaultControls:{link:!0,text:!0}},html:!1,multiple:!1,reusable:!1,inserter:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-footnotes"},{name:G5e}=fF,K5e={icon:Mz,edit:Dfn},Hfn=()=>{Q0e(X5e,Vfn),it({name:G5e,metadata:fF,settings:K5e})},Ufn=Object.freeze(Object.defineProperty({__proto__:null,init:Hfn,metadata:fF,name:G5e,settings:K5e},Symbol.toStringTag,{value:"Module"}));var rE,lre;function Xfn(){return lre||(lre=1,rE=function(t){return t&&"__experimental"in t&&t.__experimental!==!1}),rE}var Gfn=Xfn();const Kfn=Zr(Gfn);function Yfn(){const{registerShortcut:e}=Oe(ji),{replaceBlocks:t}=Oe(Q),{getBlockName:n,getSelectedBlockClientId:o,getBlockAttributes:r}=G(Q),s=(i,c)=>{i.preventDefault();const l=o();if(l===null)return;const u=n(l),d=u==="core/paragraph",p=u==="core/heading";if(!d&&!p)return;const f=c===0?"core/paragraph":"core/heading",b=r(l);if(d&&c===0||p&&b.level===c)return;const h=u==="core/paragraph"?"align":"textAlign",g=f==="core/paragraph"?"align":"textAlign";t(l,Ee(f,{level:c,content:b.content,[g]:b[h]}))};return x.useEffect(()=>{e({name:"core/block-editor/transform-heading-to-paragraph",category:"block-library",description:m("Transform heading to paragraph."),keyCombination:{modifier:"access",character:"0"},aliases:[{modifier:"access",character:"7"}]}),[1,2,3,4,5,6].forEach(i=>{e({name:`core/block-editor/transform-paragraph-to-heading-${i}`,category:"block-library",description:m("Transform paragraph to heading."),keyCombination:{modifier:"access",character:`${i}`}})})},[e]),p0("core/block-editor/transform-heading-to-paragraph",i=>s(i,0)),p0("core/block-editor/transform-paragraph-to-heading-1",i=>s(i,1)),p0("core/block-editor/transform-paragraph-to-heading-2",i=>s(i,2)),p0("core/block-editor/transform-paragraph-to-heading-3",i=>s(i,3)),p0("core/block-editor/transform-paragraph-to-heading-4",i=>s(i,4)),p0("core/block-editor/transform-paragraph-to-heading-5",i=>s(i,5)),p0("core/block-editor/transform-paragraph-to-heading-6",i=>s(i,6)),null}const Y5e={};OZt(Y5e,{BlockKeyboardShortcuts:Yfn});const Zfn=()=>{const e=[ein,Trn,Qon,kon,p0n,y0n,Vln,lZt,NZt,KZt,nQt,aQt,uQt,SQt,WQt,YQt,lJt,ztn,wtn,inn,Mnn,Pon,lrn,Lrn,Xrn,Z0n,t1n,i1n,Ssn,Dsn,Hsn,Wsn,Nan,Kan,run,pun,Mun,kun,Run,Udn,tpn,upn,Epn,Hpn,gfn,wfn,Ifn,Ufn,osn,hsn,vsn,Bun,Gun,Fun,Xcn,lfn,MZt,qan,Vin,nan,Ein,sin,lin,gin,Oin,win,Iin,Oan,san,fan,wan,iln,uln,bln,Mln,Qcn,Cln,aun,iJt,bJt,gJt,AJt,wJt,SJt,IJt,uen,YJt,een,oen,VJt,Ain,jpn,orn,x0n,pfn,wln,pin];return window?.__experimentalEnableFormBlocks&&(e.push(xnn),e.push(Enn),e.push(Pnn),e.push(Vnn)),window?.wp?.oldEditor&&(window?.wp?.needsClassicBlock||!window?.__experimentalDisableTinymce||new URLSearchParams(window?.location?.search).get("requiresTinymce"))&&e.push(OQt),e.filter(Boolean)},Qfn=()=>Zfn().filter(({metadata:e})=>!Kfn(e)),Jfn=(e=Qfn())=>{e.forEach(({init:t})=>t()),fLe(fD),window.wp&&window.wp.oldEditor&&e.some(({name:t})=>t===a5)&&dLe(a5),pLe(Ok),bLe(I9)},ebn="0.1.0",m5="?";function kN(e,t,n,o){const r={filename:e,function:t==="<anonymous>"?m5:t,in_app:!0};return n!==void 0&&(r.lineno=n),o!==void 0&&(r.colno=o),r}const tbn=/^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i,nbn=/^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,obn=/\((\S*)(?::(\d+))(?::(\d+))\)/,rbn=e=>{const t=tbn.exec(e);if(t){const[,o,r,s]=t;return kN(o,m5,+r,+s)}const n=nbn.exec(e);if(n){if(n[2]&&n[2].indexOf("eval")===0){const i=obn.exec(n[2]);i&&(n[2]=i[1],n[3]=i[2],n[4]=i[3])}const r=n[1]||m5,s=n[2];return kN(s,r,n[3]?+n[3]:void 0,n[4]?+n[4]:void 0)}},sbn=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i,ibn=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,abn=e=>{const t=sbn.exec(e);if(t){if(t[3]&&t[3].indexOf(" > eval")>-1){const s=ibn.exec(t[3]);s&&(t[1]=t[1]||"eval",t[3]=s[1],t[4]=s[2],t[5]="")}const o=t[3],r=t[1]||m5;return kN(o,r,t[4]?+t[4]:void 0,t[5]?+t[5]:void 0)}},ure=50,cbn=[rbn,abn],lbn=e=>{const t=e.stacktrace||e.stack||"",n=[],o=t.split(` -`);for(let s=0;s<o.length;s++){const i=o[s];if(!(i.length>1024)&&!i.match(/\S*Error: /)){for(const c of cbn){const l=c(i);if(l){n.push(l);break}}if(n.length>=ure)break}}const r=Array.from(n).reverse();return r.slice(0,ure).map(s=>({...s,filename:s.filename||r[r.length-1].filename}))},ubn=e=>{const t=e?.message;return t?typeof t.error?.message=="string"?t.error.message:t:"No error message"},dbn=e=>{const t={type:e?.name,message:ubn(e)},n=lbn(e);return n.length&&(t.stacktrace=n),t.type===void 0&&t.message===""&&(t.message="Unknown error"),t},pbn=(e,{context:t,tags:n}={})=>({...dbn(e),context:{...t},tags:{...n,gutenberg_kit_version:ebn}});function fbn(){window.editorDelegate&&window.editorDelegate.onEditorLoaded(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorLoaded",body:{}})}function bbn(){window.editorDelegate&&window.editorDelegate.onEditorContentChanged(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorContentChanged"})}function hbn(e,t){window.editorDelegate&&window.editorDelegate.onEditorHistoryChanged(e,t),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorHistoryChanged",body:{hasUndo:e,hasRedo:t}})}function mbn(e){window.editorDelegate&&window.editorDelegate.openMediaLibrary(JSON.stringify(e)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"openMediaLibrary",body:e})}function UO(){if(window.GBKit)return window.GBKit;if(window.editorDelegate)try{return JSON.parse(window.editorDelegate.getEditorConfiguration())}catch{return{}}try{return JSON.parse(localStorage.getItem("GBKit"))||{}}catch{return{}}}function gbn(){const{post:e}=UO();return e?{id:e.id,title:{raw:decodeURIComponent(e.title)},content:{raw:decodeURIComponent(e.content)},type:e.type||"post"}:{type:"post",status:"auto-draft",id:-1}}function Mbn(e,{context:t,tags:n,isHandled:o,handledBy:r}={context:{},tags:{},isHandled:!1,handledBy:"Unknown"}){const s={...pbn(e,{context:t,tags:n}),isHandled:o,handledBy:r};window.editorDelegate&&window.editorDelegate.onEditorExceptionLogged(JSON.stringify(s)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorExceptionLogged",body:s})}function zbn(){const{siteApiRoot:e="",authHeader:t}=UO();Tt.use(Tt.createRootURLMiddleware(e)),Tt.use(Obn),Tt.use(ybn),Tt.use(Abn(t)),Tt.use(vbn),Tt.use(xbn),Tt.use(Tt.createPreloadingMiddleware({"/wp/v2/types?context=view":{body:{post:{description:"",hierarchical:!1,has_archive:!1,name:"Posts",slug:"post",taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}},page:{description:"",hierarchical:!0,has_archive:!1,name:"Pages",slug:"page",taxonomies:[],rest_base:"pages",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}}}},"/wp/v2/types/post?context=edit":{body:{name:"Posts",slug:"post",supports:{title:!0,editor:!0,author:!0,thumbnail:!0,excerpt:!0,trackbacks:!0,"custom-fields":!0,comments:!0,revisions:!0,"post-formats":!0,autosave:!0},taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1}}}))}function Obn(e,t){return e.mode="cors",delete e.headers["x-wp-api-fetch-from-editor"],t(e)}function ybn(e,t){const{siteApiNamespace:n}=UO();return e.path&&n&&!e.path.includes(n)&&(e.path=e.path.replace(/^(?<apiPath>\/?(?:[\w.-]+\/){2})/,`$<apiPath>${n}/`)),t(e)}function Abn(e){return(t,n)=>(t.headers=t.headers||{},e&&(t.headers.Authorization=e),n(t))}function vbn(e,t){return[/^\/wp\/v2\/posts\/-?\d+/,/^\/wp\/v2\/pages\/-?\d+/].some(r=>r.test(e.path))?Promise.resolve([]):t(e)}function xbn(e,t){return e.path&&e.path.startsWith("/wp/v2/media")&&e.method==="POST"&&e.body instanceof FormData&&e.body.get("post")==="-1"&&e.body.delete("post"),t(e)}function wbn(e){const{clientId:t}=e,{innerBlocks:n}=G(o=>o(Q).getBlock(t),[t]);return a.jsx("div",{...Be({className:"widget"}),children:n.length===0?a.jsx(_bn,{...e}):a.jsx(kbn,{...e})})}function _bn({clientId:e}){return a.jsxs(a.Fragment,{children:[a.jsx(vo,{className:"wp-block-widget-group__placeholder",icon:a.jsx(Zn,{icon:Zf}),label:m("Widget Group"),children:a.jsx(j_,{rootClientId:e})}),a.jsx(Ht,{renderAppender:!1})]})}function kbn({attributes:e,setAttributes:t}){var n;return a.jsxs(a.Fragment,{children:[a.jsx(Ie,{tagName:"h2",identifier:"title",className:"widget-title",allowedFormats:[],placeholder:m("Title"),value:(n=e.title)!==null&&n!==void 0?n:"",onChange:o=>t({title:o})}),a.jsx(Ht,{})]})}function Sbn({attributes:e}){return a.jsxs(a.Fragment,{children:[a.jsx(Ie.Content,{tagName:"h2",className:"widget-title",value:e.title}),a.jsx("div",{className:"wp-widget-group__inner-blocks",children:a.jsx(Ht.Content,{})})]})}const Cbn={attributes:{title:{type:"string"}},supports:{html:!1,inserter:!0,customClassName:!0,reusable:!1},save({attributes:e}){return a.jsxs(a.Fragment,{children:[a.jsx(Ie.Content,{tagName:"h2",className:"widget-title",value:e.title}),a.jsx(Ht.Content,{})]})}},qbn=[Cbn];m("Widget Group"),m("Create a classic widget layout with a title that’s styled by your theme for your widget areas.");var Rbn=Object.create;function SN(){var e=Rbn(null);return e.__=void 0,delete e.__,e}var Z5e=function(t,n,o){this.path=t,this.matcher=n,this.delegate=o};Z5e.prototype.to=function(t,n){var o=this.delegate;if(o&&o.willAddRoute&&(t=o.willAddRoute(this.matcher.target,t)),this.matcher.add(this.path,t),n){if(n.length===0)throw new Error("You must have an argument in the function passed to `to`");this.matcher.addChild(this.path,t,n,this.delegate)}};var g5=function(t){this.routes=SN(),this.children=SN(),this.target=t};g5.prototype.add=function(t,n){this.routes[t]=n};g5.prototype.addChild=function(t,n,o,r){var s=new g5(n);this.children[t]=s;var i=bF(t,s,r);r&&r.contextEntered&&r.contextEntered(n,i),o(i)};function bF(e,t,n){function o(r,s){var i=e+r;if(s)s(bF(i,t,n));else return new Z5e(i,t,n)}return o}function Tbn(e,t,n){for(var o=0,r=0;r<e.length;r++)o+=e[r].path.length;t=t.substr(o);var s={path:t,handler:n};e.push(s)}function Q5e(e,t,n,o){for(var r=t.routes,s=Object.keys(r),i=0;i<s.length;i++){var c=s[i],l=e.slice();Tbn(l,c,r[c]);var u=t.children[c];u?Q5e(l,u,n,o):n.call(o,l)}}var Ebn=function(e,t){var n=new g5;e(bF("",n,this.delegate)),Q5e([],n,function(o){t?t(this,o):this.add(o)},this)};function J5e(e){return e.split("/").map(hF).join("/")}var Wbn=/%|\//g;function hF(e){return e.length<3||e.indexOf("%")===-1?e:decodeURIComponent(e).replace(Wbn,encodeURIComponent)}var Nbn=/%(?:2(?:4|6|B|C)|3(?:B|D|A)|40)/g;function ewe(e){return encodeURIComponent(e).replace(Nbn,decodeURIComponent)}var Bbn=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\)/g,xk=Array.isArray,Lbn=Object.prototype.hasOwnProperty;function twe(e,t){if(typeof e!="object"||e===null)throw new Error("You must pass an object as the second argument to `generate`.");if(!Lbn.call(e,t))throw new Error("You must provide param `"+t+"` to `generate`.");var n=e[t],o=typeof n=="string"?n:""+n;if(o.length===0)throw new Error("You must provide a param `"+t+"`.");return o}var XO=[];XO[0]=function(e,t){for(var n=t,o=e.value,r=0;r<o.length;r++){var s=o.charCodeAt(r);n=n.put(s,!1,!1)}return n};XO[1]=function(e,t){return t.put(47,!0,!0)};XO[2]=function(e,t){return t.put(-1,!1,!0)};XO[4]=function(e,t){return t};var GO=[];GO[0]=function(e){return e.value.replace(Bbn,"\\$1")};GO[1]=function(){return"([^/]+)"};GO[2]=function(){return"(.+)"};GO[4]=function(){return""};var KO=[];KO[0]=function(e){return e.value};KO[1]=function(e,t){var n=twe(t,e.value);return D1.ENCODE_AND_DECODE_PATH_SEGMENTS?ewe(n):n};KO[2]=function(e,t){return twe(t,e.value)};KO[4]=function(){return""};var dre=Object.freeze({}),M5=Object.freeze([]);function Pbn(e,t,n){t.length>0&&t.charCodeAt(0)===47&&(t=t.substr(1));for(var o=t.split("/"),r=void 0,s=void 0,i=0;i<o.length;i++){var c=o[i],l=0,u=0;c===""?u=4:c.charCodeAt(0)===58?u=1:c.charCodeAt(0)===42?u=2:u=0,l=2<<u,l&12&&(c=c.slice(1),r=r||[],r.push(c),s=s||[],s.push((l&4)!==0)),l&14&&n[u]++,e.push({type:u,value:hF(c)})}return{names:r||M5,shouldDecodes:s||M5}}function pre(e,t,n){return e.char===t&&e.negate===n}var Nh=function(t,n,o,r,s){this.states=t,this.id=n,this.char=o,this.negate=r,this.nextStates=s?n:null,this.pattern="",this._regex=void 0,this.handlers=void 0,this.types=void 0};Nh.prototype.regex=function(){return this._regex||(this._regex=new RegExp(this.pattern)),this._regex};Nh.prototype.get=function(t,n){var o=this,r=this.nextStates;if(r!==null)if(xk(r))for(var s=0;s<r.length;s++){var i=o.states[r[s]];if(pre(i,t,n))return i}else{var c=this.states[r];if(pre(c,t,n))return c}};Nh.prototype.put=function(t,n,o){var r;if(r=this.get(t,n))return r;var s=this.states;return r=new Nh(s,s.length,t,n,o),s[s.length]=r,this.nextStates==null?this.nextStates=r.id:xk(this.nextStates)?this.nextStates.push(r.id):this.nextStates=[this.nextStates,r.id],r};Nh.prototype.match=function(t){var n=this,o=this.nextStates;if(!o)return[];var r=[];if(xk(o))for(var s=0;s<o.length;s++){var i=n.states[o[s]];fre(i,t)&&r.push(i)}else{var c=this.states[o];fre(c,t)&&r.push(c)}return r};function fre(e,t){return e.negate?e.char!==t&&e.char!==-1:e.char===t||e.char===-1}function jbn(e){return e.sort(function(t,n){var o=t.types||[0,0,0],r=o[0],s=o[1],i=o[2],c=n.types||[0,0,0],l=c[0],u=c[1],d=c[2];if(i!==d)return i-d;if(i){if(r!==l)return l-r;if(s!==u)return u-s}return s!==u?s-u:r!==l?l-r:0})}function Ibn(e,t){for(var n=[],o=0,r=e.length;o<r;o++){var s=e[o];n=n.concat(s.match(t))}return n}var wk=function(t){this.length=0,this.queryParams=t||{}};wk.prototype.splice=Array.prototype.splice;wk.prototype.slice=Array.prototype.slice;wk.prototype.push=Array.prototype.push;function Dbn(e,t,n){var o=e.handlers,r=e.regex();if(!r||!o)throw new Error("state not initialized");var s=t.match(r),i=1,c=new wk(n);c.length=o.length;for(var l=0;l<o.length;l++){var u=o[l],d=u.names,p=u.shouldDecodes,f=dre,b=!1;if(d!==M5&&p!==M5)for(var h=0;h<d.length;h++){b=!0;var g=d[h],z=s&&s[i++];f===dre&&(f={}),D1.ENCODE_AND_DECODE_PATH_SEGMENTS&&p[h]?f[g]=z&&decodeURIComponent(z):f[g]=z}c[l]={handler:u.handler,params:f,isDynamic:b}}return c}function bre(e){e=e.replace(/\+/gm,"%20");var t;try{t=decodeURIComponent(e)}catch{t=""}return t}var D1=function(){this.names=SN();var t=[],n=new Nh(t,0,-1,!0,!1);t[0]=n,this.states=t,this.rootState=n};D1.prototype.add=function(t,n){for(var o=this.rootState,r="^",s=[0,0,0],i=new Array(t.length),c=[],l=!0,u=0,d=0;d<t.length;d++){for(var p=t[d],f=Pbn(c,p.path,s),b=f.names,h=f.shouldDecodes;u<c.length;u++){var g=c[u];g.type!==4&&(l=!1,o=o.put(47,!1,!1),r+="/",o=XO[g.type](g,o),r+=GO[g.type](g))}i[d]={handler:p.handler,names:b,shouldDecodes:h}}l&&(o=o.put(47,!1,!1),r+="/"),o.handlers=i,o.pattern=r+"$",o.types=s;var z;typeof n=="object"&&n!==null&&n.as&&(z=n.as),z&&(this.names[z]={segments:c,handlers:i})};D1.prototype.handlersFor=function(t){var n=this.names[t];if(!n)throw new Error("There is no route named "+t);for(var o=new Array(n.handlers.length),r=0;r<n.handlers.length;r++){var s=n.handlers[r];o[r]=s}return o};D1.prototype.hasRoute=function(t){return!!this.names[t]};D1.prototype.generate=function(t,n){var o=this.names[t],r="";if(!o)throw new Error("There is no route named "+t);for(var s=o.segments,i=0;i<s.length;i++){var c=s[i];c.type!==4&&(r+="/",r+=KO[c.type](c,n))}return r.charAt(0)!=="/"&&(r="/"+r),n&&n.queryParams&&(r+=this.generateQueryString(n.queryParams)),r};D1.prototype.generateQueryString=function(t){var n=[],o=Object.keys(t);o.sort();for(var r=0;r<o.length;r++){var s=o[r],i=t[s];if(i!=null){var c=encodeURIComponent(s);if(xk(i))for(var l=0;l<i.length;l++){var u=s+"[]="+encodeURIComponent(i[l]);n.push(u)}else c+="="+encodeURIComponent(i),n.push(c)}}return n.length===0?"":"?"+n.join("&")};D1.prototype.parseQueryString=function(t){for(var n=t.split("&"),o={},r=0;r<n.length;r++){var s=n[r].split("="),i=bre(s[0]),c=i.length,l=!1,u=void 0;s.length===1?u="true":(c>2&&i.slice(c-2)==="[]"&&(l=!0,i=i.slice(0,c-2),o[i]||(o[i]=[])),u=s[1]?bre(s[1]):""),l?o[i].push(u):o[i]=u}return o};D1.prototype.recognize=function(t){var n,o=[this.rootState],r={},s=!1,i=t.indexOf("#");i!==-1&&(t=t.substr(0,i));var c=t.indexOf("?");if(c!==-1){var l=t.substr(c+1,t.length);t=t.substr(0,c),r=this.parseQueryString(l)}t.charAt(0)!=="/"&&(t="/"+t);var u=t;D1.ENCODE_AND_DECODE_PATH_SEGMENTS?t=J5e(t):(t=decodeURI(t),u=decodeURI(u));var d=t.length;d>1&&t.charAt(d-1)==="/"&&(t=t.substr(0,d-1),u=u.substr(0,u.length-1),s=!0);for(var p=0;p<t.length&&(o=Ibn(o,t.charCodeAt(p)),!!o.length);p++);for(var f=[],b=0;b<o.length;b++)o[b].handlers&&f.push(o[b]);o=jbn(f);var h=f[0];return h&&h.handlers&&(s&&h.pattern&&h.pattern.slice(-5)==="(.+)$"&&(u=u+"/"),n=Dbn(h,u,r)),n};D1.VERSION="0.3.4";D1.ENCODE_AND_DECODE_PATH_SEGMENTS=!0;D1.Normalizer={normalizeSegment:hF,normalizePath:J5e,encodePathSegment:ewe};D1.prototype.map=Ebn;var w2;(function(e){e.Pop="POP",e.Push="PUSH",e.Replace="REPLACE"})(w2||(w2={}));var hre=function(e){return e},mre="beforeunload",Fbn="popstate";function $bn(e){e===void 0&&(e={});var t=e,n=t.window,o=n===void 0?document.defaultView:n,r=o.history;function s(){var S=o.location,C=S.pathname,R=S.search,T=S.hash,E=r.state||{};return[E.idx,hre({pathname:C,search:R,hash:T,state:E.usr||null,key:E.key||"default"})]}var i=null;function c(){if(i)b.call(i),i=null;else{var S=w2.Pop,C=s(),R=C[0],T=C[1];if(b.length){if(R!=null){var E=d-R;E&&(i={action:S,location:T,retry:function(){y(E*-1)}},y(E))}}else _(S)}}o.addEventListener(Fbn,c);var l=w2.Pop,u=s(),d=u[0],p=u[1],f=Mre(),b=Mre();d==null&&(d=0,r.replaceState(uz({},r.state,{idx:d}),""));function h(S){return typeof S=="string"?S:Hbn(S)}function g(S,C){return C===void 0&&(C=null),hre(uz({pathname:p.pathname,hash:"",search:""},typeof S=="string"?Ubn(S):S,{state:C,key:Vbn()}))}function z(S,C){return[{usr:S.state,key:S.key,idx:C},h(S)]}function A(S,C,R){return!b.length||(b.call({action:S,location:C,retry:R}),!1)}function _(S){l=S;var C=s();d=C[0],p=C[1],f.call({action:l,location:p})}function v(S,C){var R=w2.Push,T=g(S,C);function E(){v(S,C)}if(A(R,T,E)){var B=z(T,d+1),N=B[0],j=B[1];try{r.pushState(N,"",j)}catch{o.location.assign(j)}_(R)}}function M(S,C){var R=w2.Replace,T=g(S,C);function E(){M(S,C)}if(A(R,T,E)){var B=z(T,d),N=B[0],j=B[1];r.replaceState(N,"",j),_(R)}}function y(S){r.go(S)}var k={get action(){return l},get location(){return p},createHref:h,push:v,replace:M,go:y,back:function(){y(-1)},forward:function(){y(1)},listen:function(C){return f.push(C)},block:function(C){var R=b.push(C);return b.length===1&&o.addEventListener(mre,gre),function(){R(),b.length||o.removeEventListener(mre,gre)}}};return k}function gre(e){e.preventDefault(),e.returnValue=""}function Mre(){var e=[];return{get length(){return e.length},push:function(n){return e.push(n),function(){e=e.filter(function(o){return o!==n})}},call:function(n){e.forEach(function(o){return o&&o(n)})}}}function Vbn(){return Math.random().toString(36).substr(2,8)}function Hbn(e){var t=e.pathname,n=t===void 0?"/":t,o=e.search,r=o===void 0?"":o,s=e.hash,i=s===void 0?"":s;return r&&r!=="?"&&(n+=r.charAt(0)==="?"?r:"?"+r),i&&i!=="#"&&(n+=i.charAt(0)==="#"?i:"#"+i),n}function Ubn(e){var t={};if(e){var n=e.indexOf("#");n>=0&&(t.hash=e.substr(n),e=e.substr(0,n));var o=e.indexOf("?");o>=0&&(t.search=e.substr(o),e=e.substr(0,o)),e&&(t.pathname=e)}return t}const z5=$bn(),nwe=x.createContext(null),mF=x.createContext({pathArg:"p"}),zre=new WeakMap;function Ore(){const e=z5.location;let t=zre.get(e);return t||(t={...e,query:Object.fromEntries(new URLSearchParams(e.search))},zre.set(e,t)),t}function Xbn(){const e=x.useContext(nwe);if(!e)throw new Error("useLocation must be used within a RouterProvider");return e}function owe(){const{pathArg:e,beforeNavigate:t}=x.useContext(mF),n=Ts(async(o,r={})=>{var s;const i=Lh(o),c=(s=Aa("http://domain.com/"+o))!==null&&s!==void 0?s:"",l=()=>{const d=t?t({path:c,query:i}):{path:c,query:i};return z5.push({search:w5({[e]:d.path,...d.query})},r.state)};if(!window.matchMedia("(min-width: 782px)").matches||!document.startViewTransition||!r.transition){l();return}await new Promise(d=>{var p;const f=(p=r.transition)!==null&&p!==void 0?p:"";document.documentElement.classList.add(f),document.startViewTransition(()=>l()).finished.finally(()=>{document.documentElement.classList.remove(f),d()})})});return x.useMemo(()=>({navigate:n,back:z5.back}),[n])}function Gbn(e,t,n){const{query:o={}}=e;return x.useMemo(()=>{const{[n]:r="/",...s}=o,i=t.recognize(r)?.[0];if(!i)return{name:"404",path:tn(r,s),areas:{},widths:{},query:s,params:{}};const c=i.handler,l=(u={})=>Object.fromEntries(Object.entries(u).map(([d,p])=>typeof p=="function"?[d,p({query:s,params:i.params})]:[d,p]));return{name:c.name,areas:l(c.areas),widths:l(c.widths),params:i.params,query:s,path:tn(r,s)}},[t,o,n])}function Kbn({routes:e,pathArg:t,beforeNavigate:n,children:o}){const r=x.useSyncExternalStore(z5.listen,Ore,Ore),s=x.useMemo(()=>{const l=new D1;return e.forEach(u=>{l.add([{path:u.path,handler:u}],{as:u.name})}),l},[e]),i=Gbn(r,s,t),c=x.useMemo(()=>({beforeNavigate:n,pathArg:t}),[n,t]);return a.jsx(mF.Provider,{value:c,children:a.jsx(nwe.Provider,{value:i,children:o})})}function rwe(e,t={}){var n;const o=owe(),{pathArg:r,beforeNavigate:s}=x.useContext(mF);function i(p){p?.preventDefault(),o.navigate(e,t)}const c=Lh(e),l=(n=Aa("http://domain.com/"+e))!==null&&n!==void 0?n:"",u=x.useMemo(()=>s?s({path:l,query:c}):{path:l,query:c},[l,c,s]),[d]=window.location.href.split("?");return{href:`${d}?${w5({[r]:u.path,...u.query})}`,onClick:i}}function Ybn({to:e,options:t,children:n,...o}){const{href:r,onClick:s}=rwe(e,t);return a.jsx("a",{href:r,onClick:s,...o,children:n})}const{lock:Zbn,unlock:pgn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/router"),gF={};Zbn(gF,{useHistory:owe,useLocation:Xbn,RouterProvider:Kbn,useLink:rwe,Link:Ybn});const{lock:Qbn,unlock:swe}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/core-commands"),{useHistory:Jbn}=swe(gF),e2n=()=>function(){const t=Aa(window.location.href)?.includes("site-editor.php"),n=Jbn(),o=G(l=>l(Me).getCurrentTheme()?.is_block_theme,[]),{saveEntityRecord:r}=Oe(Me),{createErrorNotice:s}=Oe(mt),i=x.useCallback(async({close:l})=>{try{const u=await r("postType","page",{status:"draft"},{throwOnError:!0});u?.id&&n.navigate(`/page/${u.id}?canvas=edit`)}catch(u){const d=u.message&&u.code!=="unknown_error"?u.message:m("An error occurred while creating the item.");s(d,{type:"snackbar"})}finally{l()}},[s,n,r]);return{isLoading:!1,commands:x.useMemo(()=>{const l=t&&o?i:()=>document.location.href="post-new.php?post_type=page";return[{name:"core/add-new-page",label:m("Add new page"),icon:Fs,callback:l}]},[i,t,o])}};function t2n(){u8t({name:"core/add-new-post",label:m("Add new post"),icon:Fs,callback:()=>{document.location.assign("post-new.php")}}),xi({name:"core/add-new-page",hook:e2n()})}function n2n(e=[],t=""){if(!Array.isArray(e)||!e.length)return[];if(!t)return e;const n=[],o=[];for(let r=0;r<e.length;r++){const s=e[r];s?.title?.raw?.toLowerCase()?.includes(t?.toLowerCase())?n.push(s):o.push(s)}return n.concat(o)}const{useHistory:MF}=swe(gF),iwe={post:wde,page:wa,wp_template:ou,wp_template_part:Qf};function o2n(e){const[t,n]=x.useState(""),o=C1(n,250);return x.useEffect(()=>(o(e),()=>o.cancel()),[o,e]),t}const yre=e=>function({search:n}){const o=MF(),{isBlockBasedTheme:r,canCreateTemplate:s}=G(d=>({isBlockBasedTheme:d(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:d(Me).canUser("create",{kind:"postType",name:"wp_template"})}),[]),i=o2n(n),{records:c,isLoading:l}=G(d=>{if(!i)return{isLoading:!1};const p={search:i,per_page:10,orderby:"relevance",status:["publish","future","draft","pending","private"]};return{records:d(Me).getEntityRecords("postType",e,p),isLoading:!d(Me).hasFinishedResolution("getEntityRecords",["postType",e,p])}},[i]);return{commands:x.useMemo(()=>(c??[]).map(d=>{const p={name:e+"-"+d.id,searchLabel:d.title?.rendered+" "+d.id,label:d.title?.rendered?Lt(d.title?.rendered):m("(no title)"),icon:iwe[e]};if(!s||e==="post"||e==="page"&&!r)return{...p,callback:({close:b})=>{const h={post:d.id,action:"edit"},g=tn("post.php",h);document.location=g,b()}};const f=Aa(window.location.href)?.includes("site-editor.php");return{...p,callback:({close:b})=>{f?o.navigate(`/${e}/${d.id}?canvas=edit`):document.location=tn("site-editor.php",{p:`/${e}/${d.id}`,canvas:"edit"}),b()}}}),[s,c,r,o]),isLoading:l}},Are=e=>function({search:n}){const o=MF(),{isBlockBasedTheme:r,canCreateTemplate:s}=G(d=>({isBlockBasedTheme:d(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:d(Me).canUser("create",{kind:"postType",name:e})}),[]),{records:i,isLoading:c}=G(d=>{const{getEntityRecords:p}=d(Me),f={per_page:-1};return{records:p("postType",e,f),isLoading:!d(Me).hasFinishedResolution("getEntityRecords",["postType",e,f])}},[]),l=x.useMemo(()=>n2n(i,n).slice(0,10),[i,n]);return{commands:x.useMemo(()=>{if(!s||!r&&!e==="wp_template_part")return[];const d=Aa(window.location.href)?.includes("site-editor.php"),p=[];return p.push(...l.map(f=>({name:e+"-"+f.id,searchLabel:f.title?.rendered+" "+f.id,label:f.title?.rendered?f.title?.rendered:m("(no title)"),icon:iwe[e],callback:({close:b})=>{d?o.navigate(`/${e}/${f.id}?canvas=edit`):document.location=tn("site-editor.php",{p:`/${e}/${f.id}`,canvas:"edit"}),b()}}))),l?.length>0&&e==="wp_template_part"&&p.push({name:"core/edit-site/open-template-parts",label:m("Template parts"),icon:Qf,callback:({close:f})=>{d?o.navigate("/pattern?postType=wp_template_part&categoryId=all-parts"):document.location=tn("site-editor.php",{p:"/pattern",postType:"wp_template_part",categoryId:"all-parts"}),f()}}),p},[s,r,l,o]),isLoading:c}},r2n=()=>function(){const t=MF(),n=Aa(window.location.href)?.includes("site-editor.php"),{isBlockBasedTheme:o,canCreateTemplate:r}=G(i=>({isBlockBasedTheme:i(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:i(Me).canUser("create",{kind:"postType",name:"wp_template"})}),[]);return{commands:x.useMemo(()=>{const i=[];return r&&o&&(i.push({name:"core/edit-site/open-navigation",label:m("Navigation"),icon:G3,callback:({close:c})=>{n?t.navigate("/navigation"):document.location=tn("site-editor.php",{p:"/navigation"}),c()}}),i.push({name:"core/edit-site/open-styles",label:m("Styles"),icon:Fde,callback:({close:c})=>{n?t.navigate("/styles"):document.location=tn("site-editor.php",{p:"/styles"}),c()}}),i.push({name:"core/edit-site/open-pages",label:m("Pages"),icon:wa,callback:({close:c})=>{n?t.navigate("/page"):document.location=tn("site-editor.php",{p:"/page"}),c()}}),i.push({name:"core/edit-site/open-templates",label:m("Templates"),icon:ou,callback:({close:c})=>{n?t.navigate("/template"):document.location=tn("site-editor.php",{p:"/template"}),c()}})),i.push({name:"core/edit-site/open-patterns",label:m("Patterns"),icon:Bd,callback:({close:c})=>{r?(n?t.navigate("/pattern"):document.location=tn("site-editor.php",{p:"/pattern"}),c()):document.location.href="edit.php?post_type=wp_block"}}),i},[t,n,r,o]),isLoading:!1}};function s2n(){xi({name:"core/edit-site/navigate-pages",hook:yre("page")}),xi({name:"core/edit-site/navigate-posts",hook:yre("post")}),xi({name:"core/edit-site/navigate-templates",hook:Are("wp_template")}),xi({name:"core/edit-site/navigate-template-parts",hook:Are("wp_template_part")}),xi({name:"core/edit-site/basic-navigation",hook:r2n(),context:"site-editor"})}function i2n(){t2n(),s2n()}const awe={};Qbn(awe,{useCommands:i2n});const{lock:fgn,unlock:l0}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/edit-post");l0(jc);const a2n="core/edit-post";function c2n(e=!1,t){switch(t.type){case"REQUEST_META_BOX_UPDATES":return!0;case"META_BOX_UPDATES_SUCCESS":case"META_BOX_UPDATES_FAILURE":return!1;default:return e}}function l2n(e=[],t){const n=[...e];for(const o of t){const r=n.findIndex(s=>s.id===o.id);r!==-1?n[r]=o:n.push(o)}return n}function u2n(e={},t){switch(t.type){case"SET_META_BOXES_PER_LOCATIONS":{const n={...e};for(const[o,r]of Object.entries(t.metaBoxesPerLocation))n[o]=l2n(n[o],r);return n}}return e}function d2n(e=!1,t){switch(t.type){case"META_BOXES_INITIALIZED":return!0}return e}const p2n=J0({isSaving:c2n,locations:u2n,initialized:d2n}),f2n=J0({metaBoxes:p2n}),b2n=e=>{const t=document.querySelector(`.edit-post-meta-boxes-area.is-${e} .metabox-location-${e}`);return t||document.querySelector("#metaboxes .metabox-location-"+e)},{interfaceStore:Bh}=l0(jc),h2n=e=>({registry:t})=>{t.dispatch(Bh).enableComplementaryArea("core",e)},m2n=()=>({registry:e})=>e.dispatch(Bh).disableComplementaryArea("core"),g2n=e=>({registry:t})=>(Ke("select( 'core/edit-post' ).openModal( name )",{since:"6.3",alternative:"select( 'core/interface').openModal( name )"}),t.dispatch(Bh).openModal(e)),M2n=()=>({registry:e})=>(Ke("select( 'core/edit-post' ).closeModal()",{since:"6.3",alternative:"select( 'core/interface').closeModal()"}),e.dispatch(Bh).closeModal()),z2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).openPublishSidebar",{since:"6.6",alternative:"dispatch( 'core/editor').openPublishSidebar"}),e.dispatch(_e).openPublishSidebar()},O2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).closePublishSidebar",{since:"6.6",alternative:"dispatch( 'core/editor').closePublishSidebar"}),e.dispatch(_e).closePublishSidebar()},y2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).togglePublishSidebar",{since:"6.6",alternative:"dispatch( 'core/editor').togglePublishSidebar"}),e.dispatch(_e).togglePublishSidebar()},A2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).toggleEditorPanelEnabled",{since:"6.5",alternative:"dispatch( 'core/editor').toggleEditorPanelEnabled"}),t.dispatch(_e).toggleEditorPanelEnabled(e)},v2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).toggleEditorPanelOpened",{since:"6.5",alternative:"dispatch( 'core/editor').toggleEditorPanelOpened"}),t.dispatch(_e).toggleEditorPanelOpened(e)},x2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).removeEditorPanel",{since:"6.5",alternative:"dispatch( 'core/editor').removeEditorPanel"}),t.dispatch(_e).removeEditorPanel(e)},w2n=e=>({registry:t})=>t.dispatch(ht).toggle("core/edit-post",e),_2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).switchEditorMode",{since:"6.6",alternative:"dispatch( 'core/editor').switchEditorMode"}),t.dispatch(_e).switchEditorMode(e)},k2n=e=>({registry:t})=>{const n=t.select(Bh).isItemPinned("core",e);t.dispatch(Bh)[n?"unpinItem":"pinItem"]("core",e)};function S2n(){return Ke("dispatch( 'core/edit-post' ).updatePreferredStyleVariations",{since:"6.6",hint:"Preferred Style Variations are not supported anymore."}),{type:"NOTHING"}}const C2n=e=>({registry:t})=>{l0(t.dispatch(_e)).showBlockTypes(e)},q2n=e=>({registry:t})=>{l0(t.dispatch(_e)).hideBlockTypes(e)};function R2n(e){return{type:"SET_META_BOXES_PER_LOCATIONS",metaBoxesPerLocation:e}}const T2n=()=>async({registry:e,select:t,dispatch:n})=>{n({type:"REQUEST_META_BOX_UPDATES"}),window.tinyMCE&&window.tinyMCE.triggerSave();const o=new window.FormData(document.querySelector(".metabox-base-form")),r=o.get("post_ID"),s=o.get("post_type"),i=e.select(Me).getEditedEntityRecord("postType",s,r),c=[i.comment_status?["comment_status",i.comment_status]:!1,i.ping_status?["ping_status",i.ping_status]:!1,i.sticky?["sticky",i.sticky]:!1,i.author?["post_author",i.author]:!1].filter(Boolean),l=t.getActiveMetaBoxLocations(),d=[o,...l.map(p=>new window.FormData(b2n(p)))].reduce((p,f)=>{for(const[b,h]of f)p.append(b,h);return p},new window.FormData);c.forEach(([p,f])=>d.append(p,f));try{await Tt({url:window._wpMetaBoxUrl,method:"POST",body:d,parse:!1}),n.metaBoxUpdatesSuccess()}catch{n.metaBoxUpdatesFailure()}};function E2n(){return{type:"META_BOX_UPDATES_SUCCESS"}}function W2n(){return{type:"META_BOX_UPDATES_FAILURE"}}const N2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).__experimentalSetPreviewDeviceType",{since:"6.5",version:"6.7",hint:"registry.dispatch( editorStore ).setDeviceType"}),t.dispatch(_e).setDeviceType(e)},B2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).setIsInserterOpened",{since:"6.5",alternative:"dispatch( 'core/editor').setIsInserterOpened"}),t.dispatch(_e).setIsInserterOpened(e)},L2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).setIsListViewOpened",{since:"6.5",alternative:"dispatch( 'core/editor').setIsListViewOpened"}),t.dispatch(_e).setIsListViewOpened(e)};function P2n(){return Ke("dispatch( 'core/edit-post' ).setIsEditingTemplate",{since:"6.5",alternative:"dispatch( 'core/editor').setRenderingMode"}),{type:"NOTHING"}}function j2n(){return Ke("dispatch( 'core/edit-post' ).__unstableCreateTemplate",{since:"6.5"}),{type:"NOTHING"}}let vre=!1;const I2n=()=>({registry:e,select:t,dispatch:n})=>{if(!e.select(_e).__unstableIsEditorReady()||vre)return;const r=e.select(_e).getCurrentPostType();window.postboxes.page!==r&&window.postboxes.add_postbox_toggles(r),vre=!0,C4("editor.savePost","core/edit-post/save-metaboxes",async(s,i)=>{!i.isAutosave&&t.hasMetaBoxes()&&await n.requestMetaBoxUpdates()}),n({type:"META_BOXES_INITIALIZED"})},D2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).toggleDistractionFree",{since:"6.6",alternative:"dispatch( 'core/editor').toggleDistractionFree"}),e.dispatch(_e).toggleDistractionFree()},F2n=()=>({registry:e})=>{const t=e.select(ht).get("core/edit-post","fullscreenMode");e.dispatch(ht).toggle("core/edit-post","fullscreenMode"),e.dispatch(mt).createInfoNotice(m(t?"Fullscreen mode activated.":"Fullscreen mode deactivated."),{id:"core/edit-post/toggle-fullscreen-mode/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{e.dispatch(ht).toggle("core/edit-post","fullscreenMode")}}]})},$2n=Object.freeze(Object.defineProperty({__proto__:null,__experimentalSetPreviewDeviceType:N2n,__unstableCreateTemplate:j2n,closeGeneralSidebar:m2n,closeModal:M2n,closePublishSidebar:O2n,hideBlockTypes:q2n,initializeMetaBoxes:I2n,metaBoxUpdatesFailure:W2n,metaBoxUpdatesSuccess:E2n,openGeneralSidebar:h2n,openModal:g2n,openPublishSidebar:z2n,removeEditorPanel:x2n,requestMetaBoxUpdates:T2n,setAvailableMetaBoxesPerLocation:R2n,setIsEditingTemplate:P2n,setIsInserterOpened:B2n,setIsListViewOpened:L2n,showBlockTypes:C2n,switchEditorMode:_2n,toggleDistractionFree:D2n,toggleEditorPanelEnabled:A2n,toggleEditorPanelOpened:v2n,toggleFeature:w2n,toggleFullscreenMode:F2n,togglePinnedPluginItem:k2n,togglePublishSidebar:y2n,updatePreferredStyleVariations:S2n},Symbol.toStringTag,{value:"Module"})),{interfaceStore:YO}=l0(jc),V2n=[],H2n={},U2n=At(e=>()=>{var t;return(t=e(ht).get("core","editorMode"))!==null&&t!==void 0?t:"visual"}),X2n=At(e=>()=>{const t=e(YO).getActiveComplementaryArea("core");return["edit-post/document","edit-post/block"].includes(t)}),G2n=At(e=>()=>{const t=e(YO).getActiveComplementaryArea("core");return!!t&&!["edit-post/document","edit-post/block"].includes(t)}),K2n=At(e=>()=>e(YO).getActiveComplementaryArea("core"));function Y2n(e,t){var n;const o=e?.reduce((s,i)=>({...s,[i]:{enabled:!1}}),{}),r=t?.reduce((s,i)=>{const c=s?.[i];return{...s,[i]:{...c,opened:!0}}},o??{});return(n=r??o)!==null&&n!==void 0?n:H2n}const cwe=At(e=>()=>{Ke("select( 'core/edit-post' ).getPreferences",{since:"6.0",alternative:"select( 'core/preferences' ).get"});const t=["editorMode","hiddenBlockTypes"].reduce((s,i)=>{const c=e(ht).get("core",i);return{...s,[i]:c}},{}),n=e(ht).get("core","inactivePanels"),o=e(ht).get("core","openPanels"),r=Y2n(n,o);return{...t,panels:r}});function Z2n(e,t,n){Ke("select( 'core/edit-post' ).getPreference",{since:"6.0",alternative:"select( 'core/preferences' ).get"});const r=cwe(e)[t];return r===void 0?n:r}const Q2n=At(e=>()=>{var t;return(t=e(ht).get("core","hiddenBlockTypes"))!==null&&t!==void 0?t:V2n}),J2n=At(e=>()=>(Ke("select( 'core/edit-post' ).isPublishSidebarOpened",{since:"6.6",alternative:"select( 'core/editor' ).isPublishSidebarOpened"}),e(_e).isPublishSidebarOpened())),ehn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isEditorPanelRemoved",{since:"6.5",alternative:"select( 'core/editor' ).isEditorPanelRemoved"}),e(_e).isEditorPanelRemoved(n))),thn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isEditorPanelEnabled",{since:"6.5",alternative:"select( 'core/editor' ).isEditorPanelEnabled"}),e(_e).isEditorPanelEnabled(n))),nhn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isEditorPanelOpened",{since:"6.5",alternative:"select( 'core/editor' ).isEditorPanelOpened"}),e(_e).isEditorPanelOpened(n))),ohn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isModalActive",{since:"6.3",alternative:"select( 'core/interface' ).isModalActive"}),!!e(YO).isModalActive(n))),rhn=At(e=>(t,n)=>!!e(ht).get("core/edit-post",n)),shn=At(e=>(t,n)=>e(YO).isItemPinned("core",n)),lwe=It(e=>Object.keys(e.metaBoxes.locations).filter(t=>zF(e,t)),e=>[e.metaBoxes.locations]),ihn=At(e=>(t,n)=>zF(t,n)&&OF(t,n)?.some(({id:o})=>e(_e).isEditorPanelEnabled(`meta-box-${o}`)));function zF(e,t){const n=OF(e,t);return!!n&&n.length!==0}function OF(e,t){return e.metaBoxes.locations[t]}const ahn=It(e=>Object.values(e.metaBoxes.locations).flat(),e=>[e.metaBoxes.locations]);function chn(e){return lwe(e).length>0}function lhn(e){return e.metaBoxes.isSaving}const uhn=At(e=>()=>(Ke("select( 'core/edit-site' ).__experimentalGetPreviewDeviceType",{since:"6.5",version:"6.7",alternative:"select( 'core/editor' ).getDeviceType"}),e(_e).getDeviceType())),dhn=At(e=>()=>(Ke("select( 'core/edit-post' ).isInserterOpened",{since:"6.5",alternative:"select( 'core/editor' ).isInserterOpened"}),e(_e).isInserterOpened())),phn=At(e=>()=>(Ke("select( 'core/edit-post' ).__experimentalGetInsertionPoint",{since:"6.5",version:"6.7"}),l0(e(_e)).getInserter())),fhn=At(e=>()=>(Ke("select( 'core/edit-post' ).isListViewOpened",{since:"6.5",alternative:"select( 'core/editor' ).isListViewOpened"}),e(_e).isListViewOpened())),bhn=At(e=>()=>(Ke("select( 'core/edit-post' ).isEditingTemplate",{since:"6.5",alternative:"select( 'core/editor' ).getRenderingMode"}),e(_e).getCurrentPostType()==="wp_template"));function hhn(e){return e.metaBoxes.initialized}const mhn=At(e=>()=>{const{id:t,type:n}=e(_e).getCurrentPost(),o=l0(e(Me)).getTemplateId(n,t);if(o)return e(Me).getEditedEntityRecord("postType","wp_template",o)}),ghn=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetInsertionPoint:phn,__experimentalGetPreviewDeviceType:uhn,areMetaBoxesInitialized:hhn,getActiveGeneralSidebarName:K2n,getActiveMetaBoxLocations:lwe,getAllMetaBoxes:ahn,getEditedPostTemplate:mhn,getEditorMode:U2n,getHiddenBlockTypes:Q2n,getMetaBoxesPerLocation:OF,getPreference:Z2n,getPreferences:cwe,hasMetaBoxes:chn,isEditingTemplate:bhn,isEditorPanelEnabled:thn,isEditorPanelOpened:nhn,isEditorPanelRemoved:ehn,isEditorSidebarOpened:X2n,isFeatureActive:rhn,isInserterOpened:dhn,isListViewOpened:fhn,isMetaBoxLocationActive:zF,isMetaBoxLocationVisible:ihn,isModalActive:ohn,isPluginItemPinned:shn,isPluginSidebarOpened:G2n,isPublishSidebarOpened:J2n,isSavingMetaBoxes:lhn},Symbol.toStringTag,{value:"Module"})),_k=x1(a2n,{reducer:f2n,actions:$2n,selectors:ghn});Us(_k);function Mhn(e){return tn("post.php",{post:e,action:"edit"})}class zhn extends x.Component{constructor(){super(...arguments),this.state={historyId:null}}componentDidUpdate(t){const{postId:n,postStatus:o}=this.props,{historyId:r}=this.state;(n!==t.postId||n!==r)&&o!=="auto-draft"&&n&&this.setBrowserURL(n)}setBrowserURL(t){window.history.replaceState({id:t},"Post "+t,Mhn(t)),this.setState(()=>({historyId:t}))}render(){return null}}Xl(e=>{const{getCurrentPost:t}=e(_e),n=t();let{id:o,status:r,type:s}=n;return["wp_template","wp_template_part"].includes(s)&&(o=n.wp_id),{postId:o,postStatus:r}})(zhn);const{PreferenceBaseOption:Ohn}=l0(cp);function yhn(){const e=document.getElementById("toggle-custom-fields-form");e.querySelector('[name="_wp_http_referer"]').setAttribute("value",d6e(window.location.href)),e.submit()}function Ahn({willEnable:e}){const[t,n]=x.useState(!1);return a.jsxs(a.Fragment,{children:[a.jsx("p",{className:"edit-post-preferences-modal__custom-fields-confirmation-message",children:m("A page reload is required for this change. Make sure your content is saved before reloading.")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",isBusy:t,accessibleWhenDisabled:!0,disabled:t,onClick:()=>{n(!0),yhn()},children:m(e?"Show & Reload Page":"Hide & Reload Page")})]})}function vhn({label:e}){const t=G(r=>!!r(_e).getEditorSettings().enableCustomFields,[]),[n,o]=x.useState(t);return a.jsx(Ohn,{label:e,isChecked:n,onChange:o,children:n!==t&&a.jsx(Ahn,{willEnable:n})})}const{PreferenceBaseOption:xhn}=l0(cp);function whn(e){const{toggleEditorPanelEnabled:t}=Oe(_e),{isChecked:n,isRemoved:o}=G(r=>{const{isEditorPanelEnabled:s,isEditorPanelRemoved:i}=r(_e);return{isChecked:s(e.panelName),isRemoved:i(e.panelName)}},[e.panelName]);return o?null:a.jsx(xhn,{isChecked:n,onChange:()=>t(e.panelName),...e})}const{PreferencesModalSection:_hn}=l0(cp);function khn({areCustomFieldsRegistered:e,metaBoxes:t,...n}){const o=t.filter(({id:r})=>r!=="postcustom");return!e&&o.length===0?null:a.jsxs(_hn,{...n,children:[e&&a.jsx(vhn,{label:m("Custom fields")}),o.map(({id:r,title:s})=>a.jsx(whn,{label:s,panelName:`meta-box-${r}`},r))]})}Xl(e=>{const{getEditorSettings:t}=e(_e),{getAllMetaBoxes:n}=e(_k);return{areCustomFieldsRegistered:t().enableCustomFields!==void 0,metaBoxes:n()}})(khn);l0(cp);l0(jc);l0(jc);l0(Ln);l0(awe);l0(Sze);l0(jc);l0(Y5e);l0(jc);Aa(window.location.href)?.includes("site-editor.php");l0(jc);const sE="core/bold",iE=m("Bold"),Shn={name:sE,title:iE,tagName:"strong",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:sE,title:iE}))}function s(){n(zc(t,{type:sE})),o()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"primary",character:"b",onUse:r}),a.jsx(Zs,{name:"bold",icon:LZe,title:iE,onClick:s,isActive:e,shortcutType:"primary",shortcutCharacter:"b"}),a.jsx(gI,{inputType:"formatBold",onInput:r})]})}},aE="core/code",cE=m("Inline code"),Chn={name:aE,title:cE,tagName:"code",className:null,__unstableInputRule(e){const t="`",{start:n,text:o}=e;if(o[n-1]!==t||n-2<0)return e;const s=o.lastIndexOf(t,n-2);if(s===-1)return e;const i=s,c=n-2;return i===c||(e=fa(e,i,i+1),e=fa(e,c,c+1),e=qi(e,{type:aE},i,c)),e},edit({value:e,onChange:t,onFocus:n,isActive:o}){function r(){t(zc(e,{type:aE,title:cE})),n()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"access",character:"x",onUse:r}),a.jsx(Zs,{icon:EP,title:cE,onClick:r,isActive:o,role:"menuitemcheckbox"})]})}},qhn=["image"],yF="core/image",uwe=m("Inline image"),dwe={name:yF,title:uwe,keywords:[m("photo"),m("media")],object:!0,tagName:"img",className:null,attributes:{className:"class",style:"style",url:"src",alt:"alt"},edit:Thn};function Rhn({value:e,onChange:t,activeObjectAttributes:n,contentRef:o}){const{style:r,alt:s}=n,i=r?.replace(/\D/g,""),[c,l]=x.useState(i),[u,d]=x.useState(s),p=c!==i||u!==s,f=u3({editableContentElement:o.current,settings:dwe});return a.jsx(Io,{placement:"bottom",focusOnMount:!1,anchor:f,className:"block-editor-format-toolbar__image-popover",children:a.jsx("form",{className:"block-editor-format-toolbar__image-container-content",onSubmit:b=>{const h=e.replacements.slice();h[e.start]={type:yF,attributes:{...n,style:i?`width: ${c}px;`:"",alt:u}},t({...e,replacements:h}),b.preventDefault()},children:a.jsxs(dt,{spacing:4,children:[a.jsx(g0,{__next40pxDefaultSize:!0,label:m("Width"),value:c,min:1,onChange:b=>{l(b)}}),a.jsx(Pi,{label:m("Alternative text"),__nextHasNoMarginBottom:!0,value:u,onChange:b=>{d(b)},help:a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]})}),a.jsx(Ot,{justify:"right",children:a.jsx(Ce,{disabled:!p,accessibleWhenDisabled:!0,variant:"primary",type:"submit",size:"compact",children:m("Apply")})})]})})})}function Thn({value:e,onChange:t,onFocus:n,isObjectActive:o,activeObjectAttributes:r,contentRef:s}){return a.jsxs(Hd,{children:[a.jsx(ab,{allowedTypes:qhn,onSelect:({id:i,url:c,alt:l,width:u})=>{t(J0e(e,{type:yF,attributes:{className:`wp-image-${i}`,style:`width: ${Math.min(u,150)}px;`,url:c,alt:l}})),n()},render:({open:i})=>a.jsx(Zs,{icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 18.5h16V17H4v1.5zM16 13v1.5h4V13h-4zM5.1 15h7.8c.6 0 1.1-.5 1.1-1.1V6.1c0-.6-.5-1.1-1.1-1.1H5.1C4.5 5 4 5.5 4 6.1v7.8c0 .6.5 1.1 1.1 1.1zm.4-8.5h7V10l-1-1c-.3-.3-.8-.3-1 0l-1.6 1.5-1.2-.7c-.3-.2-.6-.2-.9 0l-1.3 1V6.5zm0 6.1l1.8-1.3 1.3.8c.3.2.7.2.9-.1l1.5-1.4 1.5 1.4v1.5h-7v-.9z"})}),title:uwe,onClick:i,isActive:o})}),o&&a.jsx(Rhn,{value:e,onChange:t,activeObjectAttributes:r,contentRef:s})]})}const lE="core/italic",uE=m("Italic"),Ehn={name:lE,title:uE,tagName:"em",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:lE,title:uE}))}function s(){n(zc(t,{type:lE})),o()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"primary",character:"i",onUse:r}),a.jsx(Zs,{name:"italic",icon:DZe,title:uE,onClick:s,isActive:e,shortcutType:"primary",shortcutCharacter:"i"}),a.jsx(gI,{inputType:"formatItalic",onInput:r})]})}};function pwe(e){if(!e)return!1;const t=e.trim();if(!t)return!1;if(/^\S+:/.test(t)){const n=x5(t);if(!NN(n)||n.startsWith("http")&&!/^https?:\/\/[^\/\s]/i.test(t))return!1;const o=BN(t);if(!c6e(o))return!1;const r=Aa(t);if(r&&!l6e(r))return!1;const s=LN(t);if(s&&!u6e(s))return!1;const i=p6e(t);if(i&&!yE(i))return!1}return!(t.startsWith("#")&&!yE(t))}function Whn({url:e,type:t,id:n,opensInNewWindow:o,nofollow:r}){const s={type:"core/link",attributes:{url:e}};return t&&(s.attributes.type=t),n&&(s.attributes.id=n),o&&(s.attributes.target="_blank",s.attributes.rel=s.attributes.rel?s.attributes.rel+" noreferrer noopener":"noreferrer noopener"),r&&(s.attributes.rel=s.attributes.rel?s.attributes.rel+" nofollow":"nofollow"),s}function fwe(e,t,n=e.start,o=e.end){const r={start:null,end:null},{formats:s}=e;let i,c;if(!s?.length)return r;const l=s.slice(),u=l[n]?.find(({type:h})=>h===t.type),d=l[o]?.find(({type:h})=>h===t.type),p=l[o-1]?.find(({type:h})=>h===t.type);if(u)i=u,c=n;else if(d)i=d,c=o;else if(p)i=p,c=o-1;else return r;const f=l[c].indexOf(i),b=[l,c,i,f];return n=Nhn(...b),o=Bhn(...b),n=n<0?0:n,{start:n,end:o}}function bwe(e,t,n,o,r){let s=t;const c={forwards:1,backwards:-1}[r]||1,l=c*-1;for(;e[s]&&e[s][o]===n;)s=s+c;return s=s+l,s}const hwe=(e,...t)=>(...n)=>e(...n,...t),Nhn=hwe(bwe,"backwards"),Bhn=hwe(bwe,"forwards"),Lhn=[...kc.DEFAULT_LINK_SETTINGS,{id:"nofollow",title:m("Mark as nofollow")}];function Phn({isActive:e,activeAttributes:t,value:n,onChange:o,onFocusOutside:r,stopAddingLink:s,contentRef:i,focusOnMount:c}){const u=jhn(n,e).text,{selectionChange:d}=Oe(Q),{createPageEntity:p,userCanCreatePages:f,selectionStart:b}=G(M=>{const{getSettings:y,getSelectionStart:k}=M(Q),S=y();return{createPageEntity:S.__experimentalCreatePageEntity,userCanCreatePages:S.__experimentalUserCanCreatePages,selectionStart:k()}},[]),h=x.useMemo(()=>({url:t.url,type:t.type,id:t.id,opensInNewTab:t.target==="_blank",nofollow:t.rel?.includes("nofollow"),title:u}),[t.id,t.rel,t.target,t.type,t.url,u]);function g(){const M=Yd(n,"core/link");o(M),s(),Yt(m("Link removed."),"assertive")}function z(M){const k=!h?.url;M={...h,...M};const S=jf(M.url),C=Whn({url:S,type:M.type,id:M.id!==void 0&&M.id!==null?String(M.id):void 0,opensInNewWindow:M.opensInNewTab,nofollow:M.nofollow}),R=M.title||S;let T;if(Gl(n)&&!e){const E=E0(n,R);T=qi(E,C,n.start,n.start+R.length),o(T),s(),d({clientId:b.clientId,identifier:b.attributeKey,start:n.start+R.length+1});return}else if(R===u)T=qi(n,C);else{T=eo({text:R}),T=qi(T,C,0,R.length);const E=fwe(n,{type:"core/link"}),[B,N]=nB(n,E.start,E.start),j=jqe(N,u,T);T=Bqe(B,j)}o(T),k||s(),pwe(S)?Yt(m(e?"Link edited.":"Link inserted."),"assertive"):Yt(m("Warning: the link has been inserted but may have errors. Please test it."),"assertive")}const A=u3({editableContentElement:i.current,settings:{...gwe,isActive:e}});async function _(M){const y=await p({title:M,status:"draft"});return{id:y.id,type:y.type,title:y.title.rendered,url:y.link,kind:"post-type"}}function v(M){return cr(xe(m("Create page: <mark>%s</mark>"),M),{mark:a.jsx("mark",{})})}return a.jsx(Io,{anchor:A,animate:!1,onClose:s,onFocusOutside:r,placement:"bottom",offset:8,shift:!0,focusOnMount:c,constrainTabbing:!0,children:a.jsx(kc,{value:h,onChange:z,onRemove:g,hasRichPreviews:!0,createSuggestion:p&&_,withCreateSuggestion:f,createSuggestionButtonText:v,hasTextControl:!0,settings:Lhn,showInitialSuggestions:!0,suggestionsQuery:{initialSuggestionsSearchOptions:{type:"post",subtype:"page",perPage:20}}})})}function jhn(e,t){let n=e.start,o=e.end;if(t){const r=fwe(e,{type:"core/link"});n=r.start,o=r.end+1}return Q2(e,n,o)}const _2="core/link",mwe=m("Link");function Ihn({isActive:e,activeAttributes:t,value:n,onChange:o,onFocus:r,contentRef:s}){const[i,c]=x.useState(!1),[l,u]=x.useState(null);x.useEffect(()=>{e||c(!1)},[e]),x.useLayoutEffect(()=>{const z=s.current;if(!z)return;function A(_){const v=_.target.closest("[contenteditable] a");!v||!e||(c(!0),u({el:v,action:"click"}))}return z.addEventListener("click",A),()=>{z.removeEventListener("click",A)}},[s,e]);function d(z){const A=Jp(Q2(n));!e&&A&&Pf(A)&&pwe(A)?o(qi(n,{type:_2,attributes:{url:A}})):!e&&A&&Kre(A)?o(qi(n,{type:_2,attributes:{url:`mailto:${A}`}})):!e&&A&&a6e(A)?o(qi(n,{type:_2,attributes:{url:`tel:${A.replace(/\D/g,"")}`}})):(z&&u({el:z,action:null}),c(!0))}function p(){c(!1),l?.el?.tagName==="BUTTON"?l.el.focus():r(),u(null)}function f(){c(!1),u(null)}function b(){o(Yd(n,_2)),Yt(m("Link removed."),"assertive")}const h=!(l?.el?.tagName==="A"&&l?.action==="click"),g=!Gl(n);return a.jsxs(a.Fragment,{children:[g&&a.jsx(Xd,{type:"primary",character:"k",onUse:d}),a.jsx(Xd,{type:"primaryShift",character:"k",onUse:b}),a.jsx(Zs,{name:"link",icon:xa,title:e?m("Link"):mwe,onClick:z=>{d(z.currentTarget)},isActive:e||i,shortcutType:"primary",shortcutCharacter:"k","aria-haspopup":"true","aria-expanded":i}),i&&a.jsx(Phn,{stopAddingLink:p,onFocusOutside:f,isActive:e,activeAttributes:t,value:n,onChange:o,contentRef:s,focusOnMount:h?"firstElement":!1})]})}const gwe={name:_2,title:mwe,tagName:"a",className:null,attributes:{url:"href",type:"data-type",id:"data-id",_id:"id",target:"target",rel:"rel"},__unstablePasteRule(e,{html:t,plainText:n}){const o=(t||n).replace(/<[^>]+>/g,"").trim();if(!Pf(o)||!/^https?:/.test(o))return e;window.console.log(`Created link: +`+t.content}},edit:yfn,save:Afn},xfn=()=>it({name:D5e,metadata:lF,settings:F5e}),wfn=Object.freeze(Object.defineProperty({__proto__:null,init:xfn,metadata:lF,name:D5e,settings:F5e},Symbol.toStringTag,{value:"Module"}));function uF({tracks:e=[]}){return e.map(t=>a.jsx("track",{...t},t.src))}const _fn={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/video",title:"Video",category:"media",description:"Embed a video from your media library or upload a new one.",keywords:["movie"],textdomain:"default",attributes:{autoplay:{type:"boolean",source:"attribute",selector:"video",attribute:"autoplay"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},controls:{type:"boolean",source:"attribute",selector:"video",attribute:"controls",default:!0},id:{type:"number",role:"content"},loop:{type:"boolean",source:"attribute",selector:"video",attribute:"loop"},muted:{type:"boolean",source:"attribute",selector:"video",attribute:"muted"},poster:{type:"string",source:"attribute",selector:"video",attribute:"poster"},preload:{type:"string",source:"attribute",selector:"video",attribute:"preload",default:"metadata"},blob:{type:"string",role:"local"},src:{type:"string",source:"attribute",selector:"video",attribute:"src",role:"content"},playsInline:{type:"boolean",source:"attribute",selector:"video",attribute:"playsinline"},tracks:{role:"content",type:"array",items:{type:"object"},default:[]}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-video-editor",style:"wp-block-video"},{attributes:kfn}=_fn,Sfn={attributes:kfn,save({attributes:e}){const{autoplay:t,caption:n,controls:o,loop:r,muted:s,poster:i,preload:c,src:l,playsInline:u,tracks:d}=e;return a.jsxs("figure",{...Be.save(),children:[l&&a.jsx("video",{autoPlay:t,controls:o,loop:r,muted:s,poster:i,preload:c!=="metadata"?c:void 0,src:l,playsInline:u,children:a.jsx(uF,{tracks:d})}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{tagName:"figcaption",value:n})]})}},Cfn=[Sfn];function qfn({poster:e,setAttributes:t,instanceId:n}){const o=x.useRef(),r=["image"],s=`video-block__poster-image-description-${n}`;function i(l){t({poster:l.url})}function c(){t({poster:void 0}),o.current.focus()}return a.jsx(tt,{label:m("Poster image"),isShownByDefault:!0,hasValue:()=>!!e,onDeselect:()=>{t({poster:""})},children:a.jsx(Hd,{children:a.jsxs("div",{className:"editor-video-poster-control",children:[a.jsx(no.VisualLabel,{children:m("Poster image")}),a.jsx(ab,{title:m("Select poster image"),onSelect:i,allowedTypes:r,render:({open:l})=>a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:l,ref:o,"aria-describedby":s,children:m(e?"Replace":"Select")})}),a.jsx("p",{id:s,hidden:!0,children:e?xe(m("The current poster image url is %s"),e):m("There is no poster image currently selected")}),!!e&&a.jsx(Ce,{__next40pxDefaultSize:!0,onClick:c,variant:"tertiary",children:m("Remove")})]})})})}const Rfn=[{value:"auto",label:m("Auto")},{value:"metadata",label:m("Metadata")},{value:"none",label:We("None","Preload value")}],Tfn=({setAttributes:e,attributes:t})=>{const{autoplay:n,controls:o,loop:r,muted:s,playsInline:i,preload:c}=t,l=m("Autoplay may cause usability issues for some users."),u=f0.select({web:x.useCallback(f=>f?l:null,[]),native:l}),d=x.useMemo(()=>{const f=b=>h=>{e({[b]:h})};return{autoplay:f("autoplay"),loop:f("loop"),muted:f("muted"),controls:f("controls"),playsInline:f("playsInline")}},[]),p=x.useCallback(f=>{e({preload:f})},[]);return a.jsxs(a.Fragment,{children:[a.jsx(tt,{label:m("Autoplay"),isShownByDefault:!0,hasValue:()=>!!n,onDeselect:()=>{e({autoplay:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Autoplay"),onChange:d.autoplay,checked:!!n,help:u})}),a.jsx(tt,{label:m("Loop"),isShownByDefault:!0,hasValue:()=>!!r,onDeselect:()=>{e({loop:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Loop"),onChange:d.loop,checked:!!r})}),a.jsx(tt,{label:m("Muted"),isShownByDefault:!0,hasValue:()=>!!s,onDeselect:()=>{e({muted:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Muted"),onChange:d.muted,checked:!!s})}),a.jsx(tt,{label:m("Playback controls"),isShownByDefault:!0,hasValue:()=>!o,onDeselect:()=>{e({controls:!0})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Playback controls"),onChange:d.controls,checked:!!o})}),a.jsx(tt,{label:m("Play inline"),isShownByDefault:!0,hasValue:()=>!!i,onDeselect:()=>{e({playsInline:!1})},children:a.jsx(lt,{__nextHasNoMarginBottom:!0,label:m("Play inline"),onChange:d.playsInline,checked:i,help:m("When enabled, videos will play directly within the webpage on mobile browsers, instead of opening in a fullscreen player.")})}),a.jsx(tt,{label:m("Preload"),isShownByDefault:!0,hasValue:()=>c!=="metadata",onDeselect:()=>{e({preload:"metadata"})},children:a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Preload"),value:c,onChange:p,options:Rfn,hideCancelButton:!0})})]})},ire=["text/vtt"],are="subtitles",Efn=[{label:m("Subtitles"),value:"subtitles"},{label:m("Captions"),value:"captions"},{label:m("Descriptions"),value:"descriptions"},{label:m("Chapters"),value:"chapters"},{label:m("Metadata"),value:"metadata"}];function Wfn({tracks:e,onEditPress:t}){const n=e.map((o,r)=>a.jsxs(Ot,{className:"block-library-video-tracks-editor__track-list-track",children:[a.jsx("span",{children:o.label}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"tertiary",onClick:()=>t(r),"aria-label":xe(We("Edit %s","text tracks"),o.label),children:m("Edit")})]},r));return a.jsx(Cn,{label:m("Text tracks"),className:"block-library-video-tracks-editor__track-list",children:n})}function Nfn({track:e,onChange:t,onClose:n,onRemove:o}){const{src:r="",label:s="",srcLang:i="",kind:c=are}=e,l=r.startsWith("blob:")?"":If(r)||"";return a.jsxs(dt,{className:"block-library-video-tracks-editor__single-track-editor",spacing:"4",children:[a.jsx("span",{className:"block-library-video-tracks-editor__single-track-editor-edit-track-label",children:m("Edit track")}),a.jsxs("span",{children:[m("File"),": ",a.jsx("b",{children:l})]}),a.jsxs(nO,{columns:2,gap:4,children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,onChange:u=>t({...e,label:u}),label:m("Label"),value:s,help:m("Title of track")}),a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,onChange:u=>t({...e,srcLang:u}),label:m("Source language"),value:i,help:m("Language tag (en, fr, etc.)")})]}),a.jsxs(dt,{spacing:"8",children:[a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,className:"block-library-video-tracks-editor__single-track-editor-kind-select",options:Efn,value:c,label:m("Kind"),onChange:u=>{t({...e,kind:u})}}),a.jsxs(Ot,{className:"block-library-video-tracks-editor__single-track-editor-buttons-container",children:[a.jsx(Ce,{__next40pxDefaultSize:!0,isDestructive:!0,variant:"link",onClick:o,children:m("Remove track")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",onClick:()=>{const u={};let d=!1;s===""&&(u.label=m("English"),d=!0),i===""&&(u.srcLang="en",d=!0),e.kind===void 0&&(u.kind=are,d=!0),d&&t({...e,...u}),n()},children:m("Apply")})]})]})]})}function Bfn({tracks:e=[],onChange:t}){const n=G(i=>i(Q).getSettings().mediaUpload,[]),[o,r]=x.useState(null),s=x.useRef();return x.useEffect(()=>{s.current?.focus()},[o]),n?a.jsx(so,{contentClassName:"block-library-video-tracks-editor",focusOnMount:!0,popoverProps:{ref:s},renderToggle:({isOpen:i,onToggle:c})=>{const l=()=>{i||r(null),c()};return a.jsx(Wn,{children:a.jsx(Vt,{"aria-expanded":i,"aria-haspopup":"true",onClick:l,children:m("Text tracks")})})},renderContent:()=>o!==null?a.jsx(Nfn,{track:e[o],onChange:i=>{const c=[...e];c[o]=i,t(c)},onClose:()=>r(null),onRemove:()=>{t(e.filter((i,c)=>c!==o)),r(null)}}):a.jsxs(a.Fragment,{children:[e.length===0&&a.jsxs("div",{className:"block-library-video-tracks-editor__tracks-informative-message",children:[a.jsx("h2",{className:"block-library-video-tracks-editor__tracks-informative-message-title",children:m("Text tracks")}),a.jsx("p",{className:"block-library-video-tracks-editor__tracks-informative-message-description",children:m("Tracks can be subtitles, captions, chapters, or descriptions. They help make your content more accessible to a wider range of users.")})]}),a.jsxs(pm,{children:[a.jsx(Wfn,{tracks:e,onEditPress:r}),a.jsxs(Cn,{className:"block-library-video-tracks-editor__add-tracks-container",label:m("Add tracks"),children:[a.jsx(ab,{onSelect:({url:i})=>{const c=e.length;t([...e,{src:i}]),r(c)},allowedTypes:ire,render:({open:i})=>a.jsx(Ct,{icon:IP,onClick:i,children:m("Open Media Library")})}),a.jsx(Hd,{children:a.jsx(Cx,{onChange:i=>{const c=i.target.files,l=e.length;n({allowedTypes:ire,filesList:c,onFileChange:([{url:u}])=>{const d=[...e];d[l]||(d[l]={}),d[l]={...e[l],src:u},t(d),r(l)}})},accept:".vtt,text/vtt",render:({openFileDialog:i})=>a.jsx(Ct,{icon:cm,onClick:()=>{i()},children:We("Upload","verb")})})})]})]})]})}):null}const nE=["video"];function $5e({isSelected:e,attributes:t,className:n,setAttributes:o,insertBlocksAfter:r,onReplace:s}){const i=vt($5e),c=x.useRef(),{id:l,controls:u,poster:d,src:p,tracks:f}=t,[b,h]=x.useState(t.blob),g=Qo();dk({url:b,allowedTypes:nE,onChange:z,onError:v}),x.useEffect(()=>{c.current&&c.current.load()},[d]);function z(S){if(!S||!S.url){o({src:void 0,id:void 0,poster:void 0,caption:void 0,blob:void 0}),h();return}if(Nr(S.url)){h(S.url);return}o({blob:void 0,src:S.url,id:S.id,poster:S.image?.src!==S.icon?S.image?.src:void 0,caption:S.caption}),h()}function A(S){if(S!==p){const C=pk({attributes:{url:S}});if(C!==void 0&&s){s(C);return}o({blob:void 0,src:S,id:void 0,poster:void 0}),h()}}const{createErrorNotice:_}=Oe(mt);function v(S){_(S,{type:"snackbar"})}const M=S=>a.jsx(vo,{className:"block-editor-media-placeholder",withIllustration:!e,icon:L8,label:m("Video"),instructions:m("Drag and drop a video, upload, or choose from your library."),children:S}),y=oe(n,{"is-transient":!!b}),k=Be({className:y});return!p&&!b?a.jsx("div",{...k,children:a.jsx(iu,{icon:a.jsx(Zn,{icon:L8}),onSelect:z,onSelectURL:A,accept:"video/*",allowedTypes:nE,value:t,onError:v,placeholder:M})}):a.jsxs(a.Fragment,{children:[e&&a.jsxs(a.Fragment,{children:[a.jsx(bt,{children:a.jsx(Bfn,{tracks:f,onChange:S=>{o({tracks:S})}})}),a.jsx(bt,{group:"other",children:a.jsx(Pc,{mediaId:l,mediaURL:p,allowedTypes:nE,accept:"video/*",onSelect:z,onSelectURL:A,onError:v,onReset:()=>z(void 0)})})]}),a.jsx(et,{children:a.jsxs(En,{label:m("Settings"),resetAll:()=>{o({autoplay:!1,controls:!0,loop:!1,muted:!1,playsInline:!1,preload:"metadata",poster:""})},dropdownMenuProps:g,children:[a.jsx(Tfn,{setAttributes:o,attributes:t}),a.jsx(qfn,{poster:d,setAttributes:o,instanceId:i})]})}),a.jsxs("figure",{...k,children:[a.jsx(I1,{isDisabled:!e,children:a.jsx("video",{controls:u,poster:d,src:p||b,ref:c,children:a.jsx(uF,{tracks:f})})}),!!b&&a.jsx(Xn,{}),a.jsx(fb,{attributes:t,setAttributes:o,isSelected:e,insertBlocksAfter:r,label:m("Video caption text"),showToolbarButton:e})]})]})}function Lfn({attributes:e}){const{autoplay:t,caption:n,controls:o,loop:r,muted:s,poster:i,preload:c,src:l,playsInline:u,tracks:d}=e;return a.jsxs("figure",{...Be.save(),children:[l&&a.jsx("video",{autoPlay:t,controls:o,loop:r,muted:s,poster:i,preload:c!=="metadata"?c:void 0,src:l,playsInline:u,children:a.jsx(uF,{tracks:d})}),!Ie.isEmpty(n)&&a.jsx(Ie.Content,{className:z0("caption"),tagName:"figcaption",value:n})]})}const Pfn={from:[{type:"files",isMatch(e){return e.length===1&&e[0].type.indexOf("video/")===0},transform(e){const t=e[0];return Ee("core/video",{blob:ls(t)})}},{type:"shortcode",tag:"video",attributes:{src:{type:"string",shortcode:({named:{src:e,mp4:t,m4v:n,webm:o,ogv:r,flv:s}})=>e||t||n||o||r||s},poster:{type:"string",shortcode:({named:{poster:e}})=>e},loop:{type:"string",shortcode:({named:{loop:e}})=>e},autoplay:{type:"string",shortcode:({named:{autoplay:e}})=>e},preload:{type:"string",shortcode:({named:{preload:e}})=>e}}},{type:"raw",isMatch:e=>e.nodeName==="P"&&e.children.length===1&&e.firstChild.nodeName==="VIDEO",transform:e=>{const t=e.firstChild,n={autoplay:t.hasAttribute("autoplay")?!0:void 0,controls:t.hasAttribute("controls")?void 0:!1,loop:t.hasAttribute("loop")?!0:void 0,muted:t.hasAttribute("muted")?!0:void 0,preload:t.getAttribute("preload")||void 0,playsInline:t.hasAttribute("playsinline")?!0:void 0,poster:t.getAttribute("poster")||void 0,src:t.getAttribute("src")||void 0};return Nr(n.src)&&(n.blob=n.src,delete n.src),Ee("core/video",n)}}]},dF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/video",title:"Video",category:"media",description:"Embed a video from your media library or upload a new one.",keywords:["movie"],textdomain:"default",attributes:{autoplay:{type:"boolean",source:"attribute",selector:"video",attribute:"autoplay"},caption:{type:"rich-text",source:"rich-text",selector:"figcaption",role:"content"},controls:{type:"boolean",source:"attribute",selector:"video",attribute:"controls",default:!0},id:{type:"number",role:"content"},loop:{type:"boolean",source:"attribute",selector:"video",attribute:"loop"},muted:{type:"boolean",source:"attribute",selector:"video",attribute:"muted"},poster:{type:"string",source:"attribute",selector:"video",attribute:"poster"},preload:{type:"string",source:"attribute",selector:"video",attribute:"preload",default:"metadata"},blob:{type:"string",role:"local"},src:{type:"string",source:"attribute",selector:"video",attribute:"src",role:"content"},playsInline:{type:"boolean",source:"attribute",selector:"video",attribute:"playsinline"},tracks:{role:"content",type:"array",items:{type:"object"},default:[]}},supports:{anchor:!0,align:!0,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},interactivity:{clientNavigation:!0}},editorStyle:"wp-block-video-editor",style:"wp-block-video"},{name:V5e}=dF,H5e={icon:L8,example:{attributes:{src:"https://upload.wikimedia.org/wikipedia/commons/c/ca/Wood_thrush_in_Central_Park_switch_sides_%2816510%29.webm",caption:m("Wood thrush singing in Central Park, NYC.")}},transforms:Pfn,deprecated:Cfn,edit:$5e,save:Lfn},jfn=()=>it({name:V5e,metadata:dF,settings:H5e}),Ifn=Object.freeze(Object.defineProperty({__proto__:null,init:jfn,metadata:dF,name:V5e,settings:H5e},Symbol.toStringTag,{value:"Module"}));function Dfn({context:{postType:e,postId:t}}){const[n,o]=Ao("postType",e,"meta",t),r=typeof n?.footnotes=="string",s=n?.footnotes?JSON.parse(n.footnotes):[],i=Be();return r?s.length?a.jsx("ol",{...i,children:s.map(({id:c,content:l})=>a.jsxs("li",{onMouseDown:u=>{u.target===u.currentTarget&&(u.target.firstElementChild.focus(),u.preventDefault())},children:[a.jsx(Ie,{id:c,tagName:"span",value:l,identifier:c,onFocus:u=>{u.target.textContent.trim()||u.target.scrollIntoView()},onChange:u=>{o({...n,footnotes:JSON.stringify(s.map(d=>d.id===c?{content:u,id:c}:d))})}})," ",a.jsx("a",{href:`#${c}-link`,children:"↩︎"})]},c))}):a.jsx("div",{...i,children:a.jsx(vo,{icon:a.jsx(Zn,{icon:Mz}),label:m("Footnotes"),instructions:m("Footnotes found in blocks within this document will be displayed here.")})}):a.jsx("div",{...i,children:a.jsx(vo,{icon:a.jsx(Zn,{icon:Mz}),label:m("Footnotes"),instructions:m("Footnotes are not supported here. Add this block to post or page content.")})})}const{usesContextKey:Ffn}=e0(jn),U5e="core/footnote",cre="core/post-content",$fn="core/block",Vfn={title:m("Footnote"),tagName:"sup",className:"fn",attributes:{"data-fn":"data-fn"},interactive:!0,contentEditable:!1,[Ffn]:["postType","postId"],edit:function({value:t,onChange:n,isObjectActive:o,context:{postType:r,postId:s}}){const i=Fn(),{getSelectedBlockClientId:c,getBlocks:l,getBlockRootClientId:u,getBlockName:d,getBlockParentsByBlockName:p}=i.select(Q),f=G(z=>{if(!z(kt).getBlockType("core/footnotes"))return!1;const A=z(Q).getSettings().allowedBlockTypes;if(A===!1||Array.isArray(A)&&!A.includes("core/footnotes")||typeof z(Me).getEntityRecord("postType",r,s)?.meta?.footnotes!="string")return!1;const{getBlockParentsByBlockName:v,getSelectedBlockClientId:M}=z(Q),y=v(M(),$fn);return!y||y.length===0},[r,s]),{selectionChange:b,insertBlock:h}=Oe(Q);if(!f)return null;function g(){i.batch(()=>{let z;if(o)z=t.replacements[t.start]?.attributes?.["data-fn"];else{z=Is();const y=J0e(t,{type:U5e,attributes:{"data-fn":z},innerHTML:`<a href="#${z}" id="${z}-link">*</a>`},t.end,t.end);y.start=y.end-1,n(y)}const A=c(),_=p(A,cre),v=_.length?l(_[0]):l();let M=null;{const y=[...v];for(;y.length;){const k=y.shift();if(k.name==="core/footnotes"){M=k;break}y.push(...k.innerBlocks)}}if(!M){let y=u(A);for(;y&&d(y)!==cre;)y=u(y);M=Ee("core/footnotes"),h(M,void 0,y)}b(M.clientId,z,0,0)})}return a.jsx(Zs,{icon:Mz,title:m("Footnote"),onClick:g,isActive:o})}},pF={$schema:"https://schemas.wp.org/trunk/block.json",apiVersion:3,name:"core/footnotes",title:"Footnotes",category:"text",description:"Display footnotes added to the page.",keywords:["references"],textdomain:"default",usesContext:["postId","postType"],supports:{__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0,__experimentalDefaultControls:{radius:!1,color:!1,width:!1,style:!1}},color:{background:!0,link:!0,text:!0,__experimentalDefaultControls:{link:!0,text:!0}},html:!1,multiple:!1,reusable:!1,inserter:!1,spacing:{margin:!0,padding:!0,__experimentalDefaultControls:{margin:!1,padding:!1}},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalWritingMode:!0,__experimentalDefaultControls:{fontSize:!0}},interactivity:{clientNavigation:!0}},style:"wp-block-footnotes"},{name:X5e}=pF,G5e={icon:Mz,edit:Dfn},Hfn=()=>{Q0e(U5e,Vfn),it({name:X5e,metadata:pF,settings:G5e})},Ufn=Object.freeze(Object.defineProperty({__proto__:null,init:Hfn,metadata:pF,name:X5e,settings:G5e},Symbol.toStringTag,{value:"Module"}));var oE,lre;function Xfn(){return lre||(lre=1,oE=function(t){return t&&"__experimental"in t&&t.__experimental!==!1}),oE}var Gfn=Xfn();const Kfn=Zr(Gfn);function Yfn(){const{registerShortcut:e}=Oe(Pi),{replaceBlocks:t}=Oe(Q),{getBlockName:n,getSelectedBlockClientId:o,getBlockAttributes:r}=G(Q),s=(i,c)=>{i.preventDefault();const l=o();if(l===null)return;const u=n(l),d=u==="core/paragraph",p=u==="core/heading";if(!d&&!p)return;const f=c===0?"core/paragraph":"core/heading",b=r(l);if(d&&c===0||p&&b.level===c)return;const h=u==="core/paragraph"?"align":"textAlign",g=f==="core/paragraph"?"align":"textAlign";t(l,Ee(f,{level:c,content:b.content,[g]:b[h]}))};return x.useEffect(()=>{e({name:"core/block-editor/transform-heading-to-paragraph",category:"block-library",description:m("Transform heading to paragraph."),keyCombination:{modifier:"access",character:"0"},aliases:[{modifier:"access",character:"7"}]}),[1,2,3,4,5,6].forEach(i=>{e({name:`core/block-editor/transform-paragraph-to-heading-${i}`,category:"block-library",description:m("Transform paragraph to heading."),keyCombination:{modifier:"access",character:`${i}`}})})},[e]),p0("core/block-editor/transform-heading-to-paragraph",i=>s(i,0)),p0("core/block-editor/transform-paragraph-to-heading-1",i=>s(i,1)),p0("core/block-editor/transform-paragraph-to-heading-2",i=>s(i,2)),p0("core/block-editor/transform-paragraph-to-heading-3",i=>s(i,3)),p0("core/block-editor/transform-paragraph-to-heading-4",i=>s(i,4)),p0("core/block-editor/transform-paragraph-to-heading-5",i=>s(i,5)),p0("core/block-editor/transform-paragraph-to-heading-6",i=>s(i,6)),null}const K5e={};OZt(K5e,{BlockKeyboardShortcuts:Yfn});const Zfn=()=>{const e=[ein,Trn,Qon,kon,p0n,y0n,Vln,lZt,NZt,KZt,nQt,aQt,uQt,SQt,WQt,YQt,lJt,ztn,wtn,inn,Mnn,Pon,lrn,Lrn,Xrn,Z0n,t1n,i1n,Ssn,Dsn,Hsn,Wsn,Nan,Kan,run,pun,Mun,kun,Run,Udn,tpn,upn,Epn,Hpn,gfn,wfn,Ifn,Ufn,osn,hsn,vsn,Bun,Gun,Fun,Xcn,lfn,MZt,qan,Vin,nan,Ein,sin,lin,gin,Oin,win,Iin,Oan,san,fan,wan,iln,uln,bln,Mln,Qcn,Cln,aun,iJt,bJt,gJt,AJt,wJt,SJt,IJt,uen,YJt,een,oen,VJt,Ain,jpn,orn,x0n,pfn,wln,pin];return window?.__experimentalEnableFormBlocks&&(e.push(xnn),e.push(Enn),e.push(Pnn),e.push(Vnn)),window?.wp?.oldEditor&&(window?.wp?.needsClassicBlock||!window?.__experimentalDisableTinymce||new URLSearchParams(window?.location?.search).get("requiresTinymce"))&&e.push(OQt),e.filter(Boolean)},Qfn=()=>Zfn().filter(({metadata:e})=>!Kfn(e)),Jfn=(e=Qfn())=>{e.forEach(({init:t})=>t()),pLe(pD),window.wp&&window.wp.oldEditor&&e.some(({name:t})=>t===i5)&&uLe(i5),dLe(zk),fLe(j9)},ebn="0.1.0",h5="?";function _N(e,t,n,o){const r={filename:e,function:t==="<anonymous>"?h5:t,in_app:!0};return n!==void 0&&(r.lineno=n),o!==void 0&&(r.colno=o),r}const tbn=/^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i,nbn=/^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,obn=/\((\S*)(?::(\d+))(?::(\d+))\)/,rbn=e=>{const t=tbn.exec(e);if(t){const[,o,r,s]=t;return _N(o,h5,+r,+s)}const n=nbn.exec(e);if(n){if(n[2]&&n[2].indexOf("eval")===0){const i=obn.exec(n[2]);i&&(n[2]=i[1],n[3]=i[2],n[4]=i[3])}const r=n[1]||h5,s=n[2];return _N(s,r,n[3]?+n[3]:void 0,n[4]?+n[4]:void 0)}},sbn=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i,ibn=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,abn=e=>{const t=sbn.exec(e);if(t){if(t[3]&&t[3].indexOf(" > eval")>-1){const s=ibn.exec(t[3]);s&&(t[1]=t[1]||"eval",t[3]=s[1],t[4]=s[2],t[5]="")}const o=t[3],r=t[1]||h5;return _N(o,r,t[4]?+t[4]:void 0,t[5]?+t[5]:void 0)}},ure=50,cbn=[rbn,abn],lbn=e=>{const t=e.stacktrace||e.stack||"",n=[],o=t.split(` +`);for(let s=0;s<o.length;s++){const i=o[s];if(!(i.length>1024)&&!i.match(/\S*Error: /)){for(const c of cbn){const l=c(i);if(l){n.push(l);break}}if(n.length>=ure)break}}const r=Array.from(n).reverse();return r.slice(0,ure).map(s=>({...s,filename:s.filename||r[r.length-1].filename}))},ubn=e=>{const t=e?.message;return t?typeof t.error?.message=="string"?t.error.message:t:"No error message"},dbn=e=>{const t={type:e?.name,message:ubn(e)},n=lbn(e);return n.length&&(t.stacktrace=n),t.type===void 0&&t.message===""&&(t.message="Unknown error"),t},pbn=(e,{context:t,tags:n}={})=>({...dbn(e),context:{...t},tags:{...n,gutenberg_kit_version:ebn}});function fbn(){window.editorDelegate&&window.editorDelegate.onEditorLoaded(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorLoaded",body:{}})}function bbn(){window.editorDelegate&&window.editorDelegate.onEditorContentChanged(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorContentChanged"})}function hbn(e,t){window.editorDelegate&&window.editorDelegate.onEditorHistoryChanged(e,t),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorHistoryChanged",body:{hasUndo:e,hasRedo:t}})}function mbn(e){window.editorDelegate&&window.editorDelegate.openMediaLibrary(JSON.stringify(e)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"openMediaLibrary",body:e})}function UO(){if(window.GBKit)return window.GBKit;if(window.editorDelegate)try{return JSON.parse(window.editorDelegate.getEditorConfiguration())}catch{return{}}try{return JSON.parse(localStorage.getItem("GBKit"))||{}}catch{return{}}}function gbn(){const{post:e}=UO();return e?{id:e.id,type:e.type||"post",status:e.status,title:{raw:decodeURIComponent(e.title)},content:{raw:decodeURIComponent(e.content)}}:{id:-1,type:"post",status:"auto-draft",title:{raw:""},content:{raw:""}}}function Mbn(e,{context:t,tags:n,isHandled:o,handledBy:r}={context:{},tags:{},isHandled:!1,handledBy:"Unknown"}){const s={...pbn(e,{context:t,tags:n}),isHandled:o,handledBy:r};window.editorDelegate&&window.editorDelegate.onEditorExceptionLogged(JSON.stringify(s)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorExceptionLogged",body:s})}function zbn(){const{siteApiRoot:e="",authHeader:t}=UO();Tt.use(Tt.createRootURLMiddleware(e)),Tt.use(Obn),Tt.use(ybn),Tt.use(Abn(t)),Tt.use(vbn),Tt.use(xbn),Tt.use(Tt.createPreloadingMiddleware({"/wp/v2/types?context=view":{body:{post:{description:"",hierarchical:!1,has_archive:!1,name:"Posts",slug:"post",taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}},page:{description:"",hierarchical:!0,has_archive:!1,name:"Pages",slug:"page",taxonomies:[],rest_base:"pages",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}}}},"/wp/v2/types/post?context=edit":{body:{name:"Posts",slug:"post",supports:{title:!0,editor:!0,author:!0,thumbnail:!0,excerpt:!0,trackbacks:!0,"custom-fields":!0,comments:!0,revisions:!0,"post-formats":!0,autosave:!0},taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1}}}))}function Obn(e,t){return e.mode="cors",delete e.headers["x-wp-api-fetch-from-editor"],t(e)}function ybn(e,t){const{siteApiNamespace:n}=UO();return e.path&&n&&!e.path.includes(n)&&(e.path=e.path.replace(/^(?<apiPath>\/?(?:[\w.-]+\/){2})/,`$<apiPath>${n}/`)),t(e)}function Abn(e){return(t,n)=>(t.headers=t.headers||{},e&&(t.headers.Authorization=e),n(t))}function vbn(e,t){return[/^\/wp\/v2\/posts\/-?\d+/,/^\/wp\/v2\/pages\/-?\d+/].some(r=>r.test(e.path))?Promise.resolve([]):t(e)}function xbn(e,t){return e.path&&e.path.startsWith("/wp/v2/media")&&e.method==="POST"&&e.body instanceof FormData&&e.body.get("post")==="-1"&&e.body.delete("post"),t(e)}function wbn(e){const{clientId:t}=e,{innerBlocks:n}=G(o=>o(Q).getBlock(t),[t]);return a.jsx("div",{...Be({className:"widget"}),children:n.length===0?a.jsx(_bn,{...e}):a.jsx(kbn,{...e})})}function _bn({clientId:e}){return a.jsxs(a.Fragment,{children:[a.jsx(vo,{className:"wp-block-widget-group__placeholder",icon:a.jsx(Zn,{icon:Zf}),label:m("Widget Group"),children:a.jsx(P_,{rootClientId:e})}),a.jsx(Ht,{renderAppender:!1})]})}function kbn({attributes:e,setAttributes:t}){var n;return a.jsxs(a.Fragment,{children:[a.jsx(Ie,{tagName:"h2",identifier:"title",className:"widget-title",allowedFormats:[],placeholder:m("Title"),value:(n=e.title)!==null&&n!==void 0?n:"",onChange:o=>t({title:o})}),a.jsx(Ht,{})]})}function Sbn({attributes:e}){return a.jsxs(a.Fragment,{children:[a.jsx(Ie.Content,{tagName:"h2",className:"widget-title",value:e.title}),a.jsx("div",{className:"wp-widget-group__inner-blocks",children:a.jsx(Ht.Content,{})})]})}const Cbn={attributes:{title:{type:"string"}},supports:{html:!1,inserter:!0,customClassName:!0,reusable:!1},save({attributes:e}){return a.jsxs(a.Fragment,{children:[a.jsx(Ie.Content,{tagName:"h2",className:"widget-title",value:e.title}),a.jsx(Ht.Content,{})]})}},qbn=[Cbn];m("Widget Group"),m("Create a classic widget layout with a title that’s styled by your theme for your widget areas.");var Rbn=Object.create;function kN(){var e=Rbn(null);return e.__=void 0,delete e.__,e}var Y5e=function(t,n,o){this.path=t,this.matcher=n,this.delegate=o};Y5e.prototype.to=function(t,n){var o=this.delegate;if(o&&o.willAddRoute&&(t=o.willAddRoute(this.matcher.target,t)),this.matcher.add(this.path,t),n){if(n.length===0)throw new Error("You must have an argument in the function passed to `to`");this.matcher.addChild(this.path,t,n,this.delegate)}};var m5=function(t){this.routes=kN(),this.children=kN(),this.target=t};m5.prototype.add=function(t,n){this.routes[t]=n};m5.prototype.addChild=function(t,n,o,r){var s=new m5(n);this.children[t]=s;var i=fF(t,s,r);r&&r.contextEntered&&r.contextEntered(n,i),o(i)};function fF(e,t,n){function o(r,s){var i=e+r;if(s)s(fF(i,t,n));else return new Y5e(i,t,n)}return o}function Tbn(e,t,n){for(var o=0,r=0;r<e.length;r++)o+=e[r].path.length;t=t.substr(o);var s={path:t,handler:n};e.push(s)}function Z5e(e,t,n,o){for(var r=t.routes,s=Object.keys(r),i=0;i<s.length;i++){var c=s[i],l=e.slice();Tbn(l,c,r[c]);var u=t.children[c];u?Z5e(l,u,n,o):n.call(o,l)}}var Ebn=function(e,t){var n=new m5;e(fF("",n,this.delegate)),Z5e([],n,function(o){t?t(this,o):this.add(o)},this)};function Q5e(e){return e.split("/").map(bF).join("/")}var Wbn=/%|\//g;function bF(e){return e.length<3||e.indexOf("%")===-1?e:decodeURIComponent(e).replace(Wbn,encodeURIComponent)}var Nbn=/%(?:2(?:4|6|B|C)|3(?:B|D|A)|40)/g;function J5e(e){return encodeURIComponent(e).replace(Nbn,decodeURIComponent)}var Bbn=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\)/g,vk=Array.isArray,Lbn=Object.prototype.hasOwnProperty;function ewe(e,t){if(typeof e!="object"||e===null)throw new Error("You must pass an object as the second argument to `generate`.");if(!Lbn.call(e,t))throw new Error("You must provide param `"+t+"` to `generate`.");var n=e[t],o=typeof n=="string"?n:""+n;if(o.length===0)throw new Error("You must provide a param `"+t+"`.");return o}var XO=[];XO[0]=function(e,t){for(var n=t,o=e.value,r=0;r<o.length;r++){var s=o.charCodeAt(r);n=n.put(s,!1,!1)}return n};XO[1]=function(e,t){return t.put(47,!0,!0)};XO[2]=function(e,t){return t.put(-1,!1,!0)};XO[4]=function(e,t){return t};var GO=[];GO[0]=function(e){return e.value.replace(Bbn,"\\$1")};GO[1]=function(){return"([^/]+)"};GO[2]=function(){return"(.+)"};GO[4]=function(){return""};var KO=[];KO[0]=function(e){return e.value};KO[1]=function(e,t){var n=ewe(t,e.value);return D1.ENCODE_AND_DECODE_PATH_SEGMENTS?J5e(n):n};KO[2]=function(e,t){return ewe(t,e.value)};KO[4]=function(){return""};var dre=Object.freeze({}),g5=Object.freeze([]);function Pbn(e,t,n){t.length>0&&t.charCodeAt(0)===47&&(t=t.substr(1));for(var o=t.split("/"),r=void 0,s=void 0,i=0;i<o.length;i++){var c=o[i],l=0,u=0;c===""?u=4:c.charCodeAt(0)===58?u=1:c.charCodeAt(0)===42?u=2:u=0,l=2<<u,l&12&&(c=c.slice(1),r=r||[],r.push(c),s=s||[],s.push((l&4)!==0)),l&14&&n[u]++,e.push({type:u,value:bF(c)})}return{names:r||g5,shouldDecodes:s||g5}}function pre(e,t,n){return e.char===t&&e.negate===n}var Nh=function(t,n,o,r,s){this.states=t,this.id=n,this.char=o,this.negate=r,this.nextStates=s?n:null,this.pattern="",this._regex=void 0,this.handlers=void 0,this.types=void 0};Nh.prototype.regex=function(){return this._regex||(this._regex=new RegExp(this.pattern)),this._regex};Nh.prototype.get=function(t,n){var o=this,r=this.nextStates;if(r!==null)if(vk(r))for(var s=0;s<r.length;s++){var i=o.states[r[s]];if(pre(i,t,n))return i}else{var c=this.states[r];if(pre(c,t,n))return c}};Nh.prototype.put=function(t,n,o){var r;if(r=this.get(t,n))return r;var s=this.states;return r=new Nh(s,s.length,t,n,o),s[s.length]=r,this.nextStates==null?this.nextStates=r.id:vk(this.nextStates)?this.nextStates.push(r.id):this.nextStates=[this.nextStates,r.id],r};Nh.prototype.match=function(t){var n=this,o=this.nextStates;if(!o)return[];var r=[];if(vk(o))for(var s=0;s<o.length;s++){var i=n.states[o[s]];fre(i,t)&&r.push(i)}else{var c=this.states[o];fre(c,t)&&r.push(c)}return r};function fre(e,t){return e.negate?e.char!==t&&e.char!==-1:e.char===t||e.char===-1}function jbn(e){return e.sort(function(t,n){var o=t.types||[0,0,0],r=o[0],s=o[1],i=o[2],c=n.types||[0,0,0],l=c[0],u=c[1],d=c[2];if(i!==d)return i-d;if(i){if(r!==l)return l-r;if(s!==u)return u-s}return s!==u?s-u:r!==l?l-r:0})}function Ibn(e,t){for(var n=[],o=0,r=e.length;o<r;o++){var s=e[o];n=n.concat(s.match(t))}return n}var xk=function(t){this.length=0,this.queryParams=t||{}};xk.prototype.splice=Array.prototype.splice;xk.prototype.slice=Array.prototype.slice;xk.prototype.push=Array.prototype.push;function Dbn(e,t,n){var o=e.handlers,r=e.regex();if(!r||!o)throw new Error("state not initialized");var s=t.match(r),i=1,c=new xk(n);c.length=o.length;for(var l=0;l<o.length;l++){var u=o[l],d=u.names,p=u.shouldDecodes,f=dre,b=!1;if(d!==g5&&p!==g5)for(var h=0;h<d.length;h++){b=!0;var g=d[h],z=s&&s[i++];f===dre&&(f={}),D1.ENCODE_AND_DECODE_PATH_SEGMENTS&&p[h]?f[g]=z&&decodeURIComponent(z):f[g]=z}c[l]={handler:u.handler,params:f,isDynamic:b}}return c}function bre(e){e=e.replace(/\+/gm,"%20");var t;try{t=decodeURIComponent(e)}catch{t=""}return t}var D1=function(){this.names=kN();var t=[],n=new Nh(t,0,-1,!0,!1);t[0]=n,this.states=t,this.rootState=n};D1.prototype.add=function(t,n){for(var o=this.rootState,r="^",s=[0,0,0],i=new Array(t.length),c=[],l=!0,u=0,d=0;d<t.length;d++){for(var p=t[d],f=Pbn(c,p.path,s),b=f.names,h=f.shouldDecodes;u<c.length;u++){var g=c[u];g.type!==4&&(l=!1,o=o.put(47,!1,!1),r+="/",o=XO[g.type](g,o),r+=GO[g.type](g))}i[d]={handler:p.handler,names:b,shouldDecodes:h}}l&&(o=o.put(47,!1,!1),r+="/"),o.handlers=i,o.pattern=r+"$",o.types=s;var z;typeof n=="object"&&n!==null&&n.as&&(z=n.as),z&&(this.names[z]={segments:c,handlers:i})};D1.prototype.handlersFor=function(t){var n=this.names[t];if(!n)throw new Error("There is no route named "+t);for(var o=new Array(n.handlers.length),r=0;r<n.handlers.length;r++){var s=n.handlers[r];o[r]=s}return o};D1.prototype.hasRoute=function(t){return!!this.names[t]};D1.prototype.generate=function(t,n){var o=this.names[t],r="";if(!o)throw new Error("There is no route named "+t);for(var s=o.segments,i=0;i<s.length;i++){var c=s[i];c.type!==4&&(r+="/",r+=KO[c.type](c,n))}return r.charAt(0)!=="/"&&(r="/"+r),n&&n.queryParams&&(r+=this.generateQueryString(n.queryParams)),r};D1.prototype.generateQueryString=function(t){var n=[],o=Object.keys(t);o.sort();for(var r=0;r<o.length;r++){var s=o[r],i=t[s];if(i!=null){var c=encodeURIComponent(s);if(vk(i))for(var l=0;l<i.length;l++){var u=s+"[]="+encodeURIComponent(i[l]);n.push(u)}else c+="="+encodeURIComponent(i),n.push(c)}}return n.length===0?"":"?"+n.join("&")};D1.prototype.parseQueryString=function(t){for(var n=t.split("&"),o={},r=0;r<n.length;r++){var s=n[r].split("="),i=bre(s[0]),c=i.length,l=!1,u=void 0;s.length===1?u="true":(c>2&&i.slice(c-2)==="[]"&&(l=!0,i=i.slice(0,c-2),o[i]||(o[i]=[])),u=s[1]?bre(s[1]):""),l?o[i].push(u):o[i]=u}return o};D1.prototype.recognize=function(t){var n,o=[this.rootState],r={},s=!1,i=t.indexOf("#");i!==-1&&(t=t.substr(0,i));var c=t.indexOf("?");if(c!==-1){var l=t.substr(c+1,t.length);t=t.substr(0,c),r=this.parseQueryString(l)}t.charAt(0)!=="/"&&(t="/"+t);var u=t;D1.ENCODE_AND_DECODE_PATH_SEGMENTS?t=Q5e(t):(t=decodeURI(t),u=decodeURI(u));var d=t.length;d>1&&t.charAt(d-1)==="/"&&(t=t.substr(0,d-1),u=u.substr(0,u.length-1),s=!0);for(var p=0;p<t.length&&(o=Ibn(o,t.charCodeAt(p)),!!o.length);p++);for(var f=[],b=0;b<o.length;b++)o[b].handlers&&f.push(o[b]);o=jbn(f);var h=f[0];return h&&h.handlers&&(s&&h.pattern&&h.pattern.slice(-5)==="(.+)$"&&(u=u+"/"),n=Dbn(h,u,r)),n};D1.VERSION="0.3.4";D1.ENCODE_AND_DECODE_PATH_SEGMENTS=!0;D1.Normalizer={normalizeSegment:bF,normalizePath:Q5e,encodePathSegment:J5e};D1.prototype.map=Ebn;var w2;(function(e){e.Pop="POP",e.Push="PUSH",e.Replace="REPLACE"})(w2||(w2={}));var hre=function(e){return e},mre="beforeunload",Fbn="popstate";function $bn(e){e===void 0&&(e={});var t=e,n=t.window,o=n===void 0?document.defaultView:n,r=o.history;function s(){var S=o.location,C=S.pathname,R=S.search,T=S.hash,E=r.state||{};return[E.idx,hre({pathname:C,search:R,hash:T,state:E.usr||null,key:E.key||"default"})]}var i=null;function c(){if(i)b.call(i),i=null;else{var S=w2.Pop,C=s(),R=C[0],T=C[1];if(b.length){if(R!=null){var E=d-R;E&&(i={action:S,location:T,retry:function(){y(E*-1)}},y(E))}}else _(S)}}o.addEventListener(Fbn,c);var l=w2.Pop,u=s(),d=u[0],p=u[1],f=Mre(),b=Mre();d==null&&(d=0,r.replaceState(uz({},r.state,{idx:d}),""));function h(S){return typeof S=="string"?S:Hbn(S)}function g(S,C){return C===void 0&&(C=null),hre(uz({pathname:p.pathname,hash:"",search:""},typeof S=="string"?Ubn(S):S,{state:C,key:Vbn()}))}function z(S,C){return[{usr:S.state,key:S.key,idx:C},h(S)]}function A(S,C,R){return!b.length||(b.call({action:S,location:C,retry:R}),!1)}function _(S){l=S;var C=s();d=C[0],p=C[1],f.call({action:l,location:p})}function v(S,C){var R=w2.Push,T=g(S,C);function E(){v(S,C)}if(A(R,T,E)){var B=z(T,d+1),N=B[0],j=B[1];try{r.pushState(N,"",j)}catch{o.location.assign(j)}_(R)}}function M(S,C){var R=w2.Replace,T=g(S,C);function E(){M(S,C)}if(A(R,T,E)){var B=z(T,d),N=B[0],j=B[1];r.replaceState(N,"",j),_(R)}}function y(S){r.go(S)}var k={get action(){return l},get location(){return p},createHref:h,push:v,replace:M,go:y,back:function(){y(-1)},forward:function(){y(1)},listen:function(C){return f.push(C)},block:function(C){var R=b.push(C);return b.length===1&&o.addEventListener(mre,gre),function(){R(),b.length||o.removeEventListener(mre,gre)}}};return k}function gre(e){e.preventDefault(),e.returnValue=""}function Mre(){var e=[];return{get length(){return e.length},push:function(n){return e.push(n),function(){e=e.filter(function(o){return o!==n})}},call:function(n){e.forEach(function(o){return o&&o(n)})}}}function Vbn(){return Math.random().toString(36).substr(2,8)}function Hbn(e){var t=e.pathname,n=t===void 0?"/":t,o=e.search,r=o===void 0?"":o,s=e.hash,i=s===void 0?"":s;return r&&r!=="?"&&(n+=r.charAt(0)==="?"?r:"?"+r),i&&i!=="#"&&(n+=i.charAt(0)==="#"?i:"#"+i),n}function Ubn(e){var t={};if(e){var n=e.indexOf("#");n>=0&&(t.hash=e.substr(n),e=e.substr(0,n));var o=e.indexOf("?");o>=0&&(t.search=e.substr(o),e=e.substr(0,o)),e&&(t.pathname=e)}return t}const M5=$bn(),twe=x.createContext(null),hF=x.createContext({pathArg:"p"}),zre=new WeakMap;function Ore(){const e=M5.location;let t=zre.get(e);return t||(t={...e,query:Object.fromEntries(new URLSearchParams(e.search))},zre.set(e,t)),t}function Xbn(){const e=x.useContext(twe);if(!e)throw new Error("useLocation must be used within a RouterProvider");return e}function nwe(){const{pathArg:e,beforeNavigate:t}=x.useContext(hF),n=Ts(async(o,r={})=>{var s;const i=Lh(o),c=(s=Aa("http://domain.com/"+o))!==null&&s!==void 0?s:"",l=()=>{const d=t?t({path:c,query:i}):{path:c,query:i};return M5.push({search:x5({[e]:d.path,...d.query})},r.state)};if(!window.matchMedia("(min-width: 782px)").matches||!document.startViewTransition||!r.transition){l();return}await new Promise(d=>{var p;const f=(p=r.transition)!==null&&p!==void 0?p:"";document.documentElement.classList.add(f),document.startViewTransition(()=>l()).finished.finally(()=>{document.documentElement.classList.remove(f),d()})})});return x.useMemo(()=>({navigate:n,back:M5.back}),[n])}function Gbn(e,t,n){const{query:o={}}=e;return x.useMemo(()=>{const{[n]:r="/",...s}=o,i=t.recognize(r)?.[0];if(!i)return{name:"404",path:tn(r,s),areas:{},widths:{},query:s,params:{}};const c=i.handler,l=(u={})=>Object.fromEntries(Object.entries(u).map(([d,p])=>typeof p=="function"?[d,p({query:s,params:i.params})]:[d,p]));return{name:c.name,areas:l(c.areas),widths:l(c.widths),params:i.params,query:s,path:tn(r,s)}},[t,o,n])}function Kbn({routes:e,pathArg:t,beforeNavigate:n,children:o}){const r=x.useSyncExternalStore(M5.listen,Ore,Ore),s=x.useMemo(()=>{const l=new D1;return e.forEach(u=>{l.add([{path:u.path,handler:u}],{as:u.name})}),l},[e]),i=Gbn(r,s,t),c=x.useMemo(()=>({beforeNavigate:n,pathArg:t}),[n,t]);return a.jsx(hF.Provider,{value:c,children:a.jsx(twe.Provider,{value:i,children:o})})}function owe(e,t={}){var n;const o=nwe(),{pathArg:r,beforeNavigate:s}=x.useContext(hF);function i(p){p?.preventDefault(),o.navigate(e,t)}const c=Lh(e),l=(n=Aa("http://domain.com/"+e))!==null&&n!==void 0?n:"",u=x.useMemo(()=>s?s({path:l,query:c}):{path:l,query:c},[l,c,s]),[d]=window.location.href.split("?");return{href:`${d}?${x5({[r]:u.path,...u.query})}`,onClick:i}}function Ybn({to:e,options:t,children:n,...o}){const{href:r,onClick:s}=owe(e,t);return a.jsx("a",{href:r,onClick:s,...o,children:n})}const{lock:Zbn,unlock:ugn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/router"),mF={};Zbn(mF,{useHistory:nwe,useLocation:Xbn,RouterProvider:Kbn,useLink:owe,Link:Ybn});const{lock:Qbn,unlock:rwe}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/core-commands"),{useHistory:Jbn}=rwe(mF),e2n=()=>function(){const t=Aa(window.location.href)?.includes("site-editor.php"),n=Jbn(),o=G(l=>l(Me).getCurrentTheme()?.is_block_theme,[]),{saveEntityRecord:r}=Oe(Me),{createErrorNotice:s}=Oe(mt),i=x.useCallback(async({close:l})=>{try{const u=await r("postType","page",{status:"draft"},{throwOnError:!0});u?.id&&n.navigate(`/page/${u.id}?canvas=edit`)}catch(u){const d=u.message&&u.code!=="unknown_error"?u.message:m("An error occurred while creating the item.");s(d,{type:"snackbar"})}finally{l()}},[s,n,r]);return{isLoading:!1,commands:x.useMemo(()=>{const l=t&&o?i:()=>document.location.href="post-new.php?post_type=page";return[{name:"core/add-new-page",label:m("Add new page"),icon:Fs,callback:l}]},[i,t,o])}};function t2n(){l8t({name:"core/add-new-post",label:m("Add new post"),icon:Fs,callback:()=>{document.location.assign("post-new.php")}}),xi({name:"core/add-new-page",hook:e2n()})}function n2n(e=[],t=""){if(!Array.isArray(e)||!e.length)return[];if(!t)return e;const n=[],o=[];for(let r=0;r<e.length;r++){const s=e[r];s?.title?.raw?.toLowerCase()?.includes(t?.toLowerCase())?n.push(s):o.push(s)}return n.concat(o)}const{useHistory:gF}=rwe(mF),swe={post:wde,page:wa,wp_template:nu,wp_template_part:Qf};function o2n(e){const[t,n]=x.useState(""),o=C1(n,250);return x.useEffect(()=>(o(e),()=>o.cancel()),[o,e]),t}const yre=e=>function({search:n}){const o=gF(),{isBlockBasedTheme:r,canCreateTemplate:s}=G(d=>({isBlockBasedTheme:d(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:d(Me).canUser("create",{kind:"postType",name:"wp_template"})}),[]),i=o2n(n),{records:c,isLoading:l}=G(d=>{if(!i)return{isLoading:!1};const p={search:i,per_page:10,orderby:"relevance",status:["publish","future","draft","pending","private"]};return{records:d(Me).getEntityRecords("postType",e,p),isLoading:!d(Me).hasFinishedResolution("getEntityRecords",["postType",e,p])}},[i]);return{commands:x.useMemo(()=>(c??[]).map(d=>{const p={name:e+"-"+d.id,searchLabel:d.title?.rendered+" "+d.id,label:d.title?.rendered?Lt(d.title?.rendered):m("(no title)"),icon:swe[e]};if(!s||e==="post"||e==="page"&&!r)return{...p,callback:({close:b})=>{const h={post:d.id,action:"edit"},g=tn("post.php",h);document.location=g,b()}};const f=Aa(window.location.href)?.includes("site-editor.php");return{...p,callback:({close:b})=>{f?o.navigate(`/${e}/${d.id}?canvas=edit`):document.location=tn("site-editor.php",{p:`/${e}/${d.id}`,canvas:"edit"}),b()}}}),[s,c,r,o]),isLoading:l}},Are=e=>function({search:n}){const o=gF(),{isBlockBasedTheme:r,canCreateTemplate:s}=G(d=>({isBlockBasedTheme:d(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:d(Me).canUser("create",{kind:"postType",name:e})}),[]),{records:i,isLoading:c}=G(d=>{const{getEntityRecords:p}=d(Me),f={per_page:-1};return{records:p("postType",e,f),isLoading:!d(Me).hasFinishedResolution("getEntityRecords",["postType",e,f])}},[]),l=x.useMemo(()=>n2n(i,n).slice(0,10),[i,n]);return{commands:x.useMemo(()=>{if(!s||!r&&!e==="wp_template_part")return[];const d=Aa(window.location.href)?.includes("site-editor.php"),p=[];return p.push(...l.map(f=>({name:e+"-"+f.id,searchLabel:f.title?.rendered+" "+f.id,label:f.title?.rendered?f.title?.rendered:m("(no title)"),icon:swe[e],callback:({close:b})=>{d?o.navigate(`/${e}/${f.id}?canvas=edit`):document.location=tn("site-editor.php",{p:`/${e}/${f.id}`,canvas:"edit"}),b()}}))),l?.length>0&&e==="wp_template_part"&&p.push({name:"core/edit-site/open-template-parts",label:m("Template parts"),icon:Qf,callback:({close:f})=>{d?o.navigate("/pattern?postType=wp_template_part&categoryId=all-parts"):document.location=tn("site-editor.php",{p:"/pattern",postType:"wp_template_part",categoryId:"all-parts"}),f()}}),p},[s,r,l,o]),isLoading:c}},r2n=()=>function(){const t=gF(),n=Aa(window.location.href)?.includes("site-editor.php"),{isBlockBasedTheme:o,canCreateTemplate:r}=G(i=>({isBlockBasedTheme:i(Me).getCurrentTheme()?.is_block_theme,canCreateTemplate:i(Me).canUser("create",{kind:"postType",name:"wp_template"})}),[]);return{commands:x.useMemo(()=>{const i=[];return r&&o&&(i.push({name:"core/edit-site/open-navigation",label:m("Navigation"),icon:G3,callback:({close:c})=>{n?t.navigate("/navigation"):document.location=tn("site-editor.php",{p:"/navigation"}),c()}}),i.push({name:"core/edit-site/open-styles",label:m("Styles"),icon:Fde,callback:({close:c})=>{n?t.navigate("/styles"):document.location=tn("site-editor.php",{p:"/styles"}),c()}}),i.push({name:"core/edit-site/open-pages",label:m("Pages"),icon:wa,callback:({close:c})=>{n?t.navigate("/page"):document.location=tn("site-editor.php",{p:"/page"}),c()}}),i.push({name:"core/edit-site/open-templates",label:m("Templates"),icon:nu,callback:({close:c})=>{n?t.navigate("/template"):document.location=tn("site-editor.php",{p:"/template"}),c()}})),i.push({name:"core/edit-site/open-patterns",label:m("Patterns"),icon:Bd,callback:({close:c})=>{r?(n?t.navigate("/pattern"):document.location=tn("site-editor.php",{p:"/pattern"}),c()):document.location.href="edit.php?post_type=wp_block"}}),i},[t,n,r,o]),isLoading:!1}};function s2n(){xi({name:"core/edit-site/navigate-pages",hook:yre("page")}),xi({name:"core/edit-site/navigate-posts",hook:yre("post")}),xi({name:"core/edit-site/navigate-templates",hook:Are("wp_template")}),xi({name:"core/edit-site/navigate-template-parts",hook:Are("wp_template_part")}),xi({name:"core/edit-site/basic-navigation",hook:r2n(),context:"site-editor"})}function i2n(){t2n(),s2n()}const iwe={};Qbn(iwe,{useCommands:i2n});const{lock:dgn,unlock:l0}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/edit-post");l0(cu);const a2n="core/edit-post";function c2n(e=!1,t){switch(t.type){case"REQUEST_META_BOX_UPDATES":return!0;case"META_BOX_UPDATES_SUCCESS":case"META_BOX_UPDATES_FAILURE":return!1;default:return e}}function l2n(e=[],t){const n=[...e];for(const o of t){const r=n.findIndex(s=>s.id===o.id);r!==-1?n[r]=o:n.push(o)}return n}function u2n(e={},t){switch(t.type){case"SET_META_BOXES_PER_LOCATIONS":{const n={...e};for(const[o,r]of Object.entries(t.metaBoxesPerLocation))n[o]=l2n(n[o],r);return n}}return e}function d2n(e=!1,t){switch(t.type){case"META_BOXES_INITIALIZED":return!0}return e}const p2n=J0({isSaving:c2n,locations:u2n,initialized:d2n}),f2n=J0({metaBoxes:p2n}),b2n=e=>{const t=document.querySelector(`.edit-post-meta-boxes-area.is-${e} .metabox-location-${e}`);return t||document.querySelector("#metaboxes .metabox-location-"+e)},{interfaceStore:Bh}=l0(cu),h2n=e=>({registry:t})=>{t.dispatch(Bh).enableComplementaryArea("core",e)},m2n=()=>({registry:e})=>e.dispatch(Bh).disableComplementaryArea("core"),g2n=e=>({registry:t})=>(Ke("select( 'core/edit-post' ).openModal( name )",{since:"6.3",alternative:"select( 'core/interface').openModal( name )"}),t.dispatch(Bh).openModal(e)),M2n=()=>({registry:e})=>(Ke("select( 'core/edit-post' ).closeModal()",{since:"6.3",alternative:"select( 'core/interface').closeModal()"}),e.dispatch(Bh).closeModal()),z2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).openPublishSidebar",{since:"6.6",alternative:"dispatch( 'core/editor').openPublishSidebar"}),e.dispatch(_e).openPublishSidebar()},O2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).closePublishSidebar",{since:"6.6",alternative:"dispatch( 'core/editor').closePublishSidebar"}),e.dispatch(_e).closePublishSidebar()},y2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).togglePublishSidebar",{since:"6.6",alternative:"dispatch( 'core/editor').togglePublishSidebar"}),e.dispatch(_e).togglePublishSidebar()},A2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).toggleEditorPanelEnabled",{since:"6.5",alternative:"dispatch( 'core/editor').toggleEditorPanelEnabled"}),t.dispatch(_e).toggleEditorPanelEnabled(e)},v2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).toggleEditorPanelOpened",{since:"6.5",alternative:"dispatch( 'core/editor').toggleEditorPanelOpened"}),t.dispatch(_e).toggleEditorPanelOpened(e)},x2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).removeEditorPanel",{since:"6.5",alternative:"dispatch( 'core/editor').removeEditorPanel"}),t.dispatch(_e).removeEditorPanel(e)},w2n=e=>({registry:t})=>t.dispatch(ht).toggle("core/edit-post",e),_2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).switchEditorMode",{since:"6.6",alternative:"dispatch( 'core/editor').switchEditorMode"}),t.dispatch(_e).switchEditorMode(e)},k2n=e=>({registry:t})=>{const n=t.select(Bh).isItemPinned("core",e);t.dispatch(Bh)[n?"unpinItem":"pinItem"]("core",e)};function S2n(){return Ke("dispatch( 'core/edit-post' ).updatePreferredStyleVariations",{since:"6.6",hint:"Preferred Style Variations are not supported anymore."}),{type:"NOTHING"}}const C2n=e=>({registry:t})=>{l0(t.dispatch(_e)).showBlockTypes(e)},q2n=e=>({registry:t})=>{l0(t.dispatch(_e)).hideBlockTypes(e)};function R2n(e){return{type:"SET_META_BOXES_PER_LOCATIONS",metaBoxesPerLocation:e}}const T2n=()=>async({registry:e,select:t,dispatch:n})=>{n({type:"REQUEST_META_BOX_UPDATES"}),window.tinyMCE&&window.tinyMCE.triggerSave();const o=new window.FormData(document.querySelector(".metabox-base-form")),r=o.get("post_ID"),s=o.get("post_type"),i=e.select(Me).getEditedEntityRecord("postType",s,r),c=[i.comment_status?["comment_status",i.comment_status]:!1,i.ping_status?["ping_status",i.ping_status]:!1,i.sticky?["sticky",i.sticky]:!1,i.author?["post_author",i.author]:!1].filter(Boolean),l=t.getActiveMetaBoxLocations(),d=[o,...l.map(p=>new window.FormData(b2n(p)))].reduce((p,f)=>{for(const[b,h]of f)p.append(b,h);return p},new window.FormData);c.forEach(([p,f])=>d.append(p,f));try{await Tt({url:window._wpMetaBoxUrl,method:"POST",body:d,parse:!1}),n.metaBoxUpdatesSuccess()}catch{n.metaBoxUpdatesFailure()}};function E2n(){return{type:"META_BOX_UPDATES_SUCCESS"}}function W2n(){return{type:"META_BOX_UPDATES_FAILURE"}}const N2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).__experimentalSetPreviewDeviceType",{since:"6.5",version:"6.7",hint:"registry.dispatch( editorStore ).setDeviceType"}),t.dispatch(_e).setDeviceType(e)},B2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).setIsInserterOpened",{since:"6.5",alternative:"dispatch( 'core/editor').setIsInserterOpened"}),t.dispatch(_e).setIsInserterOpened(e)},L2n=e=>({registry:t})=>{Ke("dispatch( 'core/edit-post' ).setIsListViewOpened",{since:"6.5",alternative:"dispatch( 'core/editor').setIsListViewOpened"}),t.dispatch(_e).setIsListViewOpened(e)};function P2n(){return Ke("dispatch( 'core/edit-post' ).setIsEditingTemplate",{since:"6.5",alternative:"dispatch( 'core/editor').setRenderingMode"}),{type:"NOTHING"}}function j2n(){return Ke("dispatch( 'core/edit-post' ).__unstableCreateTemplate",{since:"6.5"}),{type:"NOTHING"}}let vre=!1;const I2n=()=>({registry:e,select:t,dispatch:n})=>{if(!e.select(_e).__unstableIsEditorReady()||vre)return;const r=e.select(_e).getCurrentPostType();window.postboxes.page!==r&&window.postboxes.add_postbox_toggles(r),vre=!0,S4("editor.savePost","core/edit-post/save-metaboxes",async(s,i)=>{!i.isAutosave&&t.hasMetaBoxes()&&await n.requestMetaBoxUpdates()}),n({type:"META_BOXES_INITIALIZED"})},D2n=()=>({registry:e})=>{Ke("dispatch( 'core/edit-post' ).toggleDistractionFree",{since:"6.6",alternative:"dispatch( 'core/editor').toggleDistractionFree"}),e.dispatch(_e).toggleDistractionFree()},F2n=()=>({registry:e})=>{const t=e.select(ht).get("core/edit-post","fullscreenMode");e.dispatch(ht).toggle("core/edit-post","fullscreenMode"),e.dispatch(mt).createInfoNotice(m(t?"Fullscreen mode activated.":"Fullscreen mode deactivated."),{id:"core/edit-post/toggle-fullscreen-mode/notice",type:"snackbar",actions:[{label:m("Undo"),onClick:()=>{e.dispatch(ht).toggle("core/edit-post","fullscreenMode")}}]})},$2n=Object.freeze(Object.defineProperty({__proto__:null,__experimentalSetPreviewDeviceType:N2n,__unstableCreateTemplate:j2n,closeGeneralSidebar:m2n,closeModal:M2n,closePublishSidebar:O2n,hideBlockTypes:q2n,initializeMetaBoxes:I2n,metaBoxUpdatesFailure:W2n,metaBoxUpdatesSuccess:E2n,openGeneralSidebar:h2n,openModal:g2n,openPublishSidebar:z2n,removeEditorPanel:x2n,requestMetaBoxUpdates:T2n,setAvailableMetaBoxesPerLocation:R2n,setIsEditingTemplate:P2n,setIsInserterOpened:B2n,setIsListViewOpened:L2n,showBlockTypes:C2n,switchEditorMode:_2n,toggleDistractionFree:D2n,toggleEditorPanelEnabled:A2n,toggleEditorPanelOpened:v2n,toggleFeature:w2n,toggleFullscreenMode:F2n,togglePinnedPluginItem:k2n,togglePublishSidebar:y2n,updatePreferredStyleVariations:S2n},Symbol.toStringTag,{value:"Module"})),{interfaceStore:YO}=l0(cu),V2n=[],H2n={},U2n=At(e=>()=>{var t;return(t=e(ht).get("core","editorMode"))!==null&&t!==void 0?t:"visual"}),X2n=At(e=>()=>{const t=e(YO).getActiveComplementaryArea("core");return["edit-post/document","edit-post/block"].includes(t)}),G2n=At(e=>()=>{const t=e(YO).getActiveComplementaryArea("core");return!!t&&!["edit-post/document","edit-post/block"].includes(t)}),K2n=At(e=>()=>e(YO).getActiveComplementaryArea("core"));function Y2n(e,t){var n;const o=e?.reduce((s,i)=>({...s,[i]:{enabled:!1}}),{}),r=t?.reduce((s,i)=>{const c=s?.[i];return{...s,[i]:{...c,opened:!0}}},o??{});return(n=r??o)!==null&&n!==void 0?n:H2n}const awe=At(e=>()=>{Ke("select( 'core/edit-post' ).getPreferences",{since:"6.0",alternative:"select( 'core/preferences' ).get"});const t=["editorMode","hiddenBlockTypes"].reduce((s,i)=>{const c=e(ht).get("core",i);return{...s,[i]:c}},{}),n=e(ht).get("core","inactivePanels"),o=e(ht).get("core","openPanels"),r=Y2n(n,o);return{...t,panels:r}});function Z2n(e,t,n){Ke("select( 'core/edit-post' ).getPreference",{since:"6.0",alternative:"select( 'core/preferences' ).get"});const r=awe(e)[t];return r===void 0?n:r}const Q2n=At(e=>()=>{var t;return(t=e(ht).get("core","hiddenBlockTypes"))!==null&&t!==void 0?t:V2n}),J2n=At(e=>()=>(Ke("select( 'core/edit-post' ).isPublishSidebarOpened",{since:"6.6",alternative:"select( 'core/editor' ).isPublishSidebarOpened"}),e(_e).isPublishSidebarOpened())),ehn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isEditorPanelRemoved",{since:"6.5",alternative:"select( 'core/editor' ).isEditorPanelRemoved"}),e(_e).isEditorPanelRemoved(n))),thn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isEditorPanelEnabled",{since:"6.5",alternative:"select( 'core/editor' ).isEditorPanelEnabled"}),e(_e).isEditorPanelEnabled(n))),nhn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isEditorPanelOpened",{since:"6.5",alternative:"select( 'core/editor' ).isEditorPanelOpened"}),e(_e).isEditorPanelOpened(n))),ohn=At(e=>(t,n)=>(Ke("select( 'core/edit-post' ).isModalActive",{since:"6.3",alternative:"select( 'core/interface' ).isModalActive"}),!!e(YO).isModalActive(n))),rhn=At(e=>(t,n)=>!!e(ht).get("core/edit-post",n)),shn=At(e=>(t,n)=>e(YO).isItemPinned("core",n)),cwe=It(e=>Object.keys(e.metaBoxes.locations).filter(t=>MF(e,t)),e=>[e.metaBoxes.locations]),ihn=At(e=>(t,n)=>MF(t,n)&&zF(t,n)?.some(({id:o})=>e(_e).isEditorPanelEnabled(`meta-box-${o}`)));function MF(e,t){const n=zF(e,t);return!!n&&n.length!==0}function zF(e,t){return e.metaBoxes.locations[t]}const ahn=It(e=>Object.values(e.metaBoxes.locations).flat(),e=>[e.metaBoxes.locations]);function chn(e){return cwe(e).length>0}function lhn(e){return e.metaBoxes.isSaving}const uhn=At(e=>()=>(Ke("select( 'core/edit-site' ).__experimentalGetPreviewDeviceType",{since:"6.5",version:"6.7",alternative:"select( 'core/editor' ).getDeviceType"}),e(_e).getDeviceType())),dhn=At(e=>()=>(Ke("select( 'core/edit-post' ).isInserterOpened",{since:"6.5",alternative:"select( 'core/editor' ).isInserterOpened"}),e(_e).isInserterOpened())),phn=At(e=>()=>(Ke("select( 'core/edit-post' ).__experimentalGetInsertionPoint",{since:"6.5",version:"6.7"}),l0(e(_e)).getInserter())),fhn=At(e=>()=>(Ke("select( 'core/edit-post' ).isListViewOpened",{since:"6.5",alternative:"select( 'core/editor' ).isListViewOpened"}),e(_e).isListViewOpened())),bhn=At(e=>()=>(Ke("select( 'core/edit-post' ).isEditingTemplate",{since:"6.5",alternative:"select( 'core/editor' ).getRenderingMode"}),e(_e).getCurrentPostType()==="wp_template"));function hhn(e){return e.metaBoxes.initialized}const mhn=At(e=>()=>{const{id:t,type:n}=e(_e).getCurrentPost(),o=l0(e(Me)).getTemplateId(n,t);if(o)return e(Me).getEditedEntityRecord("postType","wp_template",o)}),ghn=Object.freeze(Object.defineProperty({__proto__:null,__experimentalGetInsertionPoint:phn,__experimentalGetPreviewDeviceType:uhn,areMetaBoxesInitialized:hhn,getActiveGeneralSidebarName:K2n,getActiveMetaBoxLocations:cwe,getAllMetaBoxes:ahn,getEditedPostTemplate:mhn,getEditorMode:U2n,getHiddenBlockTypes:Q2n,getMetaBoxesPerLocation:zF,getPreference:Z2n,getPreferences:awe,hasMetaBoxes:chn,isEditingTemplate:bhn,isEditorPanelEnabled:thn,isEditorPanelOpened:nhn,isEditorPanelRemoved:ehn,isEditorSidebarOpened:X2n,isFeatureActive:rhn,isInserterOpened:dhn,isListViewOpened:fhn,isMetaBoxLocationActive:MF,isMetaBoxLocationVisible:ihn,isModalActive:ohn,isPluginItemPinned:shn,isPluginSidebarOpened:G2n,isPublishSidebarOpened:J2n,isSavingMetaBoxes:lhn},Symbol.toStringTag,{value:"Module"})),wk=x1(a2n,{reducer:f2n,actions:$2n,selectors:ghn});Us(wk);function Mhn(e){return tn("post.php",{post:e,action:"edit"})}class zhn extends x.Component{constructor(){super(...arguments),this.state={historyId:null}}componentDidUpdate(t){const{postId:n,postStatus:o}=this.props,{historyId:r}=this.state;(n!==t.postId||n!==r)&&o!=="auto-draft"&&n&&this.setBrowserURL(n)}setBrowserURL(t){window.history.replaceState({id:t},"Post "+t,Mhn(t)),this.setState(()=>({historyId:t}))}render(){return null}}Ul(e=>{const{getCurrentPost:t}=e(_e),n=t();let{id:o,status:r,type:s}=n;return["wp_template","wp_template_part"].includes(s)&&(o=n.wp_id),{postId:o,postStatus:r}})(zhn);const{PreferenceBaseOption:Ohn}=l0(cp);function yhn(){const e=document.getElementById("toggle-custom-fields-form");e.querySelector('[name="_wp_http_referer"]').setAttribute("value",u6e(window.location.href)),e.submit()}function Ahn({willEnable:e}){const[t,n]=x.useState(!1);return a.jsxs(a.Fragment,{children:[a.jsx("p",{className:"edit-post-preferences-modal__custom-fields-confirmation-message",children:m("A page reload is required for this change. Make sure your content is saved before reloading.")}),a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"secondary",isBusy:t,accessibleWhenDisabled:!0,disabled:t,onClick:()=>{n(!0),yhn()},children:m(e?"Show & Reload Page":"Hide & Reload Page")})]})}function vhn({label:e}){const t=G(r=>!!r(_e).getEditorSettings().enableCustomFields,[]),[n,o]=x.useState(t);return a.jsx(Ohn,{label:e,isChecked:n,onChange:o,children:n!==t&&a.jsx(Ahn,{willEnable:n})})}const{PreferenceBaseOption:xhn}=l0(cp);function whn(e){const{toggleEditorPanelEnabled:t}=Oe(_e),{isChecked:n,isRemoved:o}=G(r=>{const{isEditorPanelEnabled:s,isEditorPanelRemoved:i}=r(_e);return{isChecked:s(e.panelName),isRemoved:i(e.panelName)}},[e.panelName]);return o?null:a.jsx(xhn,{isChecked:n,onChange:()=>t(e.panelName),...e})}const{PreferencesModalSection:_hn}=l0(cp);function khn({areCustomFieldsRegistered:e,metaBoxes:t,...n}){const o=t.filter(({id:r})=>r!=="postcustom");return!e&&o.length===0?null:a.jsxs(_hn,{...n,children:[e&&a.jsx(vhn,{label:m("Custom fields")}),o.map(({id:r,title:s})=>a.jsx(whn,{label:s,panelName:`meta-box-${r}`},r))]})}Ul(e=>{const{getEditorSettings:t}=e(_e),{getAllMetaBoxes:n}=e(wk);return{areCustomFieldsRegistered:t().enableCustomFields!==void 0,metaBoxes:n()}})(khn);l0(cp);l0(cu);l0(cu);l0(jn);l0(iwe);l0(Sze);l0(cu);l0(K5e);l0(cu);Aa(window.location.href)?.includes("site-editor.php");l0(cu);const rE="core/bold",sE=m("Bold"),Shn={name:rE,title:sE,tagName:"strong",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:rE,title:sE}))}function s(){n(zc(t,{type:rE})),o()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"primary",character:"b",onUse:r}),a.jsx(Zs,{name:"bold",icon:BZe,title:sE,onClick:s,isActive:e,shortcutType:"primary",shortcutCharacter:"b"}),a.jsx(mI,{inputType:"formatBold",onInput:r})]})}},iE="core/code",aE=m("Inline code"),Chn={name:iE,title:aE,tagName:"code",className:null,__unstableInputRule(e){const t="`",{start:n,text:o}=e;if(o[n-1]!==t||n-2<0)return e;const s=o.lastIndexOf(t,n-2);if(s===-1)return e;const i=s,c=n-2;return i===c||(e=pa(e,i,i+1),e=pa(e,c,c+1),e=qi(e,{type:iE},i,c)),e},edit({value:e,onChange:t,onFocus:n,isActive:o}){function r(){t(zc(e,{type:iE,title:aE})),n()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"access",character:"x",onUse:r}),a.jsx(Zs,{icon:TP,title:aE,onClick:r,isActive:o,role:"menuitemcheckbox"})]})}},qhn=["image"],OF="core/image",lwe=m("Inline image"),uwe={name:OF,title:lwe,keywords:[m("photo"),m("media")],object:!0,tagName:"img",className:null,attributes:{className:"class",style:"style",url:"src",alt:"alt"},edit:Thn};function Rhn({value:e,onChange:t,activeObjectAttributes:n,contentRef:o}){const{style:r,alt:s}=n,i=r?.replace(/\D/g,""),[c,l]=x.useState(i),[u,d]=x.useState(s),p=c!==i||u!==s,f=u3({editableContentElement:o.current,settings:uwe});return a.jsx(Io,{placement:"bottom",focusOnMount:!1,anchor:f,className:"block-editor-format-toolbar__image-popover",children:a.jsx("form",{className:"block-editor-format-toolbar__image-container-content",onSubmit:b=>{const h=e.replacements.slice();h[e.start]={type:OF,attributes:{...n,style:i?`width: ${c}px;`:"",alt:u}},t({...e,replacements:h}),b.preventDefault()},children:a.jsxs(dt,{spacing:4,children:[a.jsx(g0,{__next40pxDefaultSize:!0,label:m("Width"),value:c,min:1,onChange:b=>{l(b)}}),a.jsx(Li,{label:m("Alternative text"),__nextHasNoMarginBottom:!0,value:u,onChange:b=>{d(b)},help:a.jsxs(a.Fragment,{children:[a.jsx(hr,{href:m("https://www.w3.org/WAI/tutorials/images/decision-tree/"),children:m("Describe the purpose of the image.")}),a.jsx("br",{}),m("Leave empty if decorative.")]})}),a.jsx(Ot,{justify:"right",children:a.jsx(Ce,{disabled:!p,accessibleWhenDisabled:!0,variant:"primary",type:"submit",size:"compact",children:m("Apply")})})]})})})}function Thn({value:e,onChange:t,onFocus:n,isObjectActive:o,activeObjectAttributes:r,contentRef:s}){return a.jsxs(Hd,{children:[a.jsx(ab,{allowedTypes:qhn,onSelect:({id:i,url:c,alt:l,width:u})=>{t(J0e(e,{type:OF,attributes:{className:`wp-image-${i}`,style:`width: ${Math.min(u,150)}px;`,url:c,alt:l}})),n()},render:({open:i})=>a.jsx(Zs,{icon:a.jsx(ge,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:a.jsx(he,{d:"M4 18.5h16V17H4v1.5zM16 13v1.5h4V13h-4zM5.1 15h7.8c.6 0 1.1-.5 1.1-1.1V6.1c0-.6-.5-1.1-1.1-1.1H5.1C4.5 5 4 5.5 4 6.1v7.8c0 .6.5 1.1 1.1 1.1zm.4-8.5h7V10l-1-1c-.3-.3-.8-.3-1 0l-1.6 1.5-1.2-.7c-.3-.2-.6-.2-.9 0l-1.3 1V6.5zm0 6.1l1.8-1.3 1.3.8c.3.2.7.2.9-.1l1.5-1.4 1.5 1.4v1.5h-7v-.9z"})}),title:lwe,onClick:i,isActive:o})}),o&&a.jsx(Rhn,{value:e,onChange:t,activeObjectAttributes:r,contentRef:s})]})}const cE="core/italic",lE=m("Italic"),Ehn={name:cE,title:lE,tagName:"em",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:cE,title:lE}))}function s(){n(zc(t,{type:cE})),o()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"primary",character:"i",onUse:r}),a.jsx(Zs,{name:"italic",icon:IZe,title:lE,onClick:s,isActive:e,shortcutType:"primary",shortcutCharacter:"i"}),a.jsx(mI,{inputType:"formatItalic",onInput:r})]})}};function dwe(e){if(!e)return!1;const t=e.trim();if(!t)return!1;if(/^\S+:/.test(t)){const n=v5(t);if(!WN(n)||n.startsWith("http")&&!/^https?:\/\/[^\/\s]/i.test(t))return!1;const o=NN(t);if(!a6e(o))return!1;const r=Aa(t);if(r&&!c6e(r))return!1;const s=BN(t);if(s&&!l6e(s))return!1;const i=d6e(t);if(i&&!OE(i))return!1}return!(t.startsWith("#")&&!OE(t))}function Whn({url:e,type:t,id:n,opensInNewWindow:o,nofollow:r}){const s={type:"core/link",attributes:{url:e}};return t&&(s.attributes.type=t),n&&(s.attributes.id=n),o&&(s.attributes.target="_blank",s.attributes.rel=s.attributes.rel?s.attributes.rel+" noreferrer noopener":"noreferrer noopener"),r&&(s.attributes.rel=s.attributes.rel?s.attributes.rel+" nofollow":"nofollow"),s}function pwe(e,t,n=e.start,o=e.end){const r={start:null,end:null},{formats:s}=e;let i,c;if(!s?.length)return r;const l=s.slice(),u=l[n]?.find(({type:h})=>h===t.type),d=l[o]?.find(({type:h})=>h===t.type),p=l[o-1]?.find(({type:h})=>h===t.type);if(u)i=u,c=n;else if(d)i=d,c=o;else if(p)i=p,c=o-1;else return r;const f=l[c].indexOf(i),b=[l,c,i,f];return n=Nhn(...b),o=Bhn(...b),n=n<0?0:n,{start:n,end:o}}function fwe(e,t,n,o,r){let s=t;const c={forwards:1,backwards:-1}[r]||1,l=c*-1;for(;e[s]&&e[s][o]===n;)s=s+c;return s=s+l,s}const bwe=(e,...t)=>(...n)=>e(...n,...t),Nhn=bwe(fwe,"backwards"),Bhn=bwe(fwe,"forwards"),Lhn=[...kc.DEFAULT_LINK_SETTINGS,{id:"nofollow",title:m("Mark as nofollow")}];function Phn({isActive:e,activeAttributes:t,value:n,onChange:o,onFocusOutside:r,stopAddingLink:s,contentRef:i,focusOnMount:c}){const u=jhn(n,e).text,{selectionChange:d}=Oe(Q),{createPageEntity:p,userCanCreatePages:f,selectionStart:b}=G(M=>{const{getSettings:y,getSelectionStart:k}=M(Q),S=y();return{createPageEntity:S.__experimentalCreatePageEntity,userCanCreatePages:S.__experimentalUserCanCreatePages,selectionStart:k()}},[]),h=x.useMemo(()=>({url:t.url,type:t.type,id:t.id,opensInNewTab:t.target==="_blank",nofollow:t.rel?.includes("nofollow"),title:u}),[t.id,t.rel,t.target,t.type,t.url,u]);function g(){const M=Yd(n,"core/link");o(M),s(),Yt(m("Link removed."),"assertive")}function z(M){const k=!h?.url;M={...h,...M};const S=jf(M.url),C=Whn({url:S,type:M.type,id:M.id!==void 0&&M.id!==null?String(M.id):void 0,opensInNewWindow:M.opensInNewTab,nofollow:M.nofollow}),R=M.title||S;let T;if(Xl(n)&&!e){const E=E0(n,R);T=qi(E,C,n.start,n.start+R.length),o(T),s(),d({clientId:b.clientId,identifier:b.attributeKey,start:n.start+R.length+1});return}else if(R===u)T=qi(n,C);else{T=eo({text:R}),T=qi(T,C,0,R.length);const E=pwe(n,{type:"core/link"}),[B,N]=tB(n,E.start,E.start),j=Pqe(N,u,T);T=Nqe(B,j)}o(T),k||s(),dwe(S)?Yt(m(e?"Link edited.":"Link inserted."),"assertive"):Yt(m("Warning: the link has been inserted but may have errors. Please test it."),"assertive")}const A=u3({editableContentElement:i.current,settings:{...mwe,isActive:e}});async function _(M){const y=await p({title:M,status:"draft"});return{id:y.id,type:y.type,title:y.title.rendered,url:y.link,kind:"post-type"}}function v(M){return cr(xe(m("Create page: <mark>%s</mark>"),M),{mark:a.jsx("mark",{})})}return a.jsx(Io,{anchor:A,animate:!1,onClose:s,onFocusOutside:r,placement:"bottom",offset:8,shift:!0,focusOnMount:c,constrainTabbing:!0,children:a.jsx(kc,{value:h,onChange:z,onRemove:g,hasRichPreviews:!0,createSuggestion:p&&_,withCreateSuggestion:f,createSuggestionButtonText:v,hasTextControl:!0,settings:Lhn,showInitialSuggestions:!0,suggestionsQuery:{initialSuggestionsSearchOptions:{type:"post",subtype:"page",perPage:20}}})})}function jhn(e,t){let n=e.start,o=e.end;if(t){const r=pwe(e,{type:"core/link"});n=r.start,o=r.end+1}return Q2(e,n,o)}const _2="core/link",hwe=m("Link");function Ihn({isActive:e,activeAttributes:t,value:n,onChange:o,onFocus:r,contentRef:s}){const[i,c]=x.useState(!1),[l,u]=x.useState(null);x.useEffect(()=>{e||c(!1)},[e]),x.useLayoutEffect(()=>{const z=s.current;if(!z)return;function A(_){const v=_.target.closest("[contenteditable] a");!v||!e||(c(!0),u({el:v,action:"click"}))}return z.addEventListener("click",A),()=>{z.removeEventListener("click",A)}},[s,e]);function d(z){const A=Jp(Q2(n));!e&&A&&Pf(A)&&dwe(A)?o(qi(n,{type:_2,attributes:{url:A}})):!e&&A&&Kre(A)?o(qi(n,{type:_2,attributes:{url:`mailto:${A}`}})):!e&&A&&i6e(A)?o(qi(n,{type:_2,attributes:{url:`tel:${A.replace(/\D/g,"")}`}})):(z&&u({el:z,action:null}),c(!0))}function p(){c(!1),l?.el?.tagName==="BUTTON"?l.el.focus():r(),u(null)}function f(){c(!1),u(null)}function b(){o(Yd(n,_2)),Yt(m("Link removed."),"assertive")}const h=!(l?.el?.tagName==="A"&&l?.action==="click"),g=!Xl(n);return a.jsxs(a.Fragment,{children:[g&&a.jsx(Xd,{type:"primary",character:"k",onUse:d}),a.jsx(Xd,{type:"primaryShift",character:"k",onUse:b}),a.jsx(Zs,{name:"link",icon:xa,title:e?m("Link"):hwe,onClick:z=>{d(z.currentTarget)},isActive:e||i,shortcutType:"primary",shortcutCharacter:"k","aria-haspopup":"true","aria-expanded":i}),i&&a.jsx(Phn,{stopAddingLink:p,onFocusOutside:f,isActive:e,activeAttributes:t,value:n,onChange:o,contentRef:s,focusOnMount:h?"firstElement":!1})]})}const mwe={name:_2,title:hwe,tagName:"a",className:null,attributes:{url:"href",type:"data-type",id:"data-id",_id:"id",target:"target",rel:"rel"},__unstablePasteRule(e,{html:t,plainText:n}){const o=(t||n).replace(/<[^>]+>/g,"").trim();if(!Pf(o)||!/^https?:/.test(o))return e;window.console.log(`Created link: -`,o);const r={type:_2,attributes:{url:Lt(o)}};return Gl(e)?E0(e,qi(eo({text:n}),r,0,n.length)):qi(e,r)},edit:Ihn},xre="core/strikethrough",dE=m("Strikethrough"),Dhn={name:xre,title:dE,tagName:"s",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:xre,title:dE})),o()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"access",character:"d",onUse:r}),a.jsx(Zs,{icon:cde,title:dE,onClick:r,isActive:e,role:"menuitemcheckbox"})]})}},wre="core/underline",_re=m("Underline"),Fhn={name:wre,title:_re,tagName:"span",className:null,attributes:{style:"style"},edit({value:e,onChange:t}){const n=()=>{t(zc(e,{type:wre,attributes:{style:"text-decoration: underline;"},title:_re}))};return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"primary",character:"u",onUse:n}),a.jsx(gI,{inputType:"formatUnderline",onInput:n})]})}},{lock:bgn,unlock:$hn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/format-library"),{Tabs:Ev}=$hn(tr),kre=[{name:"color",title:m("Text")},{name:"backgroundColor",title:m("Background")}];function Vhn(e=""){return e.split(";").reduce((t,n)=>{if(n){const[o,r]=n.split(":");o==="color"&&(t.color=r),o==="background-color"&&r!==kk&&(t.backgroundColor=r)}return t},{})}function Hhn(e="",t){return e.split(" ").reduce((n,o)=>{if(o.startsWith("has-")&&o.endsWith("-color")){const r=o.replace(/^has-/,"").replace(/-color$/,""),s=Sf(t,r);n.color=s.color}return n},{})}function AF(e,t,n){const o=tB(e,t);return o?{...Vhn(o.attributes.style),...Hhn(o.attributes.class,n)}:{}}function Uhn(e,t,n,o){const{color:r,backgroundColor:s}={...AF(e,t,n),...o};if(!r&&!s)return Yd(e,t);const i=[],c=[],l={};if(s?i.push(["background-color",s].join(":")):i.push(["background-color",kk].join(":")),r){const u=_2e(n,r);u?c.push(Pt("color",u.slug)):i.push(["color",r].join(":"))}return i.length&&(l.style=i.join(";")),c.length&&(l.class=c.join(" ")),qi(e,{type:t,attributes:l})}function Xhn({name:e,property:t,value:n,onChange:o}){const r=G(i=>{var c;const{getSettings:l}=i(Q);return(c=l().colors)!==null&&c!==void 0?c:[]},[]),s=x.useMemo(()=>AF(n,e,r),[e,n,r]);return a.jsx(Hze,{value:s[t],onChange:i=>{o(Uhn(n,e,r,{[t]:i}))}})}function Ghn({name:e,value:t,onChange:n,onClose:o,contentRef:r,isActive:s}){const i=u3({editableContentElement:r.current,settings:{...zwe,isActive:s}});return a.jsx(Io,{onClose:o,className:"format-library__inline-color-popover",anchor:i,children:a.jsxs(Ev,{children:[a.jsx(Ev.TabList,{children:kre.map(c=>a.jsx(Ev.Tab,{tabId:c.name,children:c.title},c.name))}),kre.map(c=>a.jsx(Ev.TabPanel,{tabId:c.name,focusable:!1,children:a.jsx(Xhn,{name:e,property:c.name,value:t,onChange:n})},c.name))]})})}const kk="rgba(0, 0, 0, 0)",_4="core/text-color",Mwe=m("Highlight"),Khn=[];function CN(e,t){const{ownerDocument:n}=e,{defaultView:o}=n,s=o.getComputedStyle(e).getPropertyValue(t);return t==="background-color"&&s===kk&&e.parentElement?CN(e.parentElement,t):s}function Yhn(e,{color:t,backgroundColor:n}){if(!(!t&&!n))return{color:t||CN(e,"color"),backgroundColor:n===kk?CN(e,"background-color"):n}}function Zhn({value:e,onChange:t,isActive:n,activeAttributes:o,contentRef:r}){const[s,i=Khn]=Un("color.custom","color.palette"),[c,l]=x.useState(!1),u=x.useMemo(()=>Yhn(r.current,AF(e,_4,i)),[r,e,i]),d=!!i.length||s;return!d&&!n?null:a.jsxs(a.Fragment,{children:[a.jsx(Zs,{className:"format-library-text-color-button",isActive:n,icon:a.jsx(wn,{icon:Object.keys(o).length?sJe:wZe,style:u}),title:Mwe,onClick:d?()=>l(!0):()=>t(Yd(e,_4)),role:"menuitemcheckbox"}),c&&a.jsx(Ghn,{name:_4,onClose:()=>l(!1),activeAttributes:o,value:e,onChange:t,contentRef:r,isActive:n})]})}const zwe={name:_4,title:Mwe,tagName:"mark",className:"has-inline-color",attributes:{style:"style",class:"class"},edit:Zhn},Sre="core/subscript",pE=m("Subscript"),Qhn={name:Sre,title:pE,tagName:"sub",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:Sre,title:pE}))}function s(){r(),o()}return a.jsx(Zs,{icon:$Qe,title:pE,onClick:s,isActive:e,role:"menuitemcheckbox"})}},Cre="core/superscript",fE=m("Superscript"),Jhn={name:Cre,title:fE,tagName:"sup",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:Cre,title:fE}))}function s(){r(),o()}return a.jsx(Zs,{icon:VQe,title:fE,onClick:s,isActive:e,role:"menuitemcheckbox"})}},qre="core/keyboard",bE=m("Keyboard input"),emn={name:qre,title:bE,tagName:"kbd",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:qre,title:bE}))}function s(){r(),o()}return a.jsx(Zs,{icon:Que,title:bE,onClick:s,isActive:e,role:"menuitemcheckbox"})}},qN="core/unknown",Rre=m("Clear Unknown Formatting");function tmn(e){return Gl(e)?!1:Q2(e).formats.some(n=>n.some(o=>o.type===qN))}const nmn={name:qN,title:Rre,tagName:"*",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){if(!e&&!tmn(t))return null;function r(){n(Yd(t,qN)),o()}return a.jsx(Zs,{name:"unknown",icon:tQe,title:Rre,onClick:r,isActive:!0})}},vF="core/language",O5=m("Language"),Owe={name:vF,tagName:"bdo",className:null,edit:omn,title:O5};function omn({isActive:e,value:t,onChange:n,contentRef:o}){const[r,s]=x.useState(!1),i=()=>{s(c=>!c)};return a.jsxs(a.Fragment,{children:[a.jsx(Zs,{icon:lQe,label:O5,title:O5,onClick:()=>{e?n(Yd(t,vF)):i()},isActive:e,role:"menuitemcheckbox"}),r&&a.jsx(rmn,{value:t,onChange:n,onClose:i,contentRef:o})]})}function rmn({value:e,contentRef:t,onChange:n,onClose:o}){const r=u3({editableContentElement:t.current,settings:Owe}),[s,i]=x.useState(""),[c,l]=x.useState("ltr");return a.jsx(Io,{className:"block-editor-format-toolbar__language-popover",anchor:r,onClose:o,children:a.jsxs(dt,{as:"form",spacing:4,className:"block-editor-format-toolbar__language-container-content",onSubmit:u=>{u.preventDefault(),n(qi(e,{type:vF,attributes:{lang:s,dir:c}})),o()},children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:O5,value:s,onChange:u=>i(u),help:m('A valid language attribute, like "en" or "fr".')}),a.jsx(jn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Text direction"),value:c,options:[{label:m("Left to right"),value:"ltr"},{label:m("Right to left"),value:"rtl"}],onChange:u=>l(u)}),a.jsx(Ot,{alignment:"right",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",text:m("Apply")})})]})})}const smn="core/non-breaking-space",imn=m("Non breaking space"),amn={name:smn,title:imn,tagName:"nbsp",className:null,edit({value:e,onChange:t}){function n(){t(E0(e," "))}return a.jsx(Xd,{type:"primaryShift",character:" ",onUse:n})}},cmn=[Shn,Chn,dwe,Ehn,gwe,Dhn,Fhn,zwe,Qhn,Jhn,emn,nmn,Owe,amn];cmn.forEach(({name:e,...t})=>Q0e(e,t));const lmn=({className:e})=>{const[t,n]=x.useState(!1),{isSelected:o}=G(u=>{const{getSelectedBlockClientId:d}=u(Q);return{isSelected:d()!==null}}),{isInserterOpened:r}=G(u=>({isInserterOpened:u(_e).isInserterOpened()}),[]),{setIsInserterOpened:s}=Oe(_e);function i(){n(!0)}function c(){n(!1)}const l=oe("gutenberg-kit-editor-toolbar",e);return a.jsxs(a.Fragment,{children:[a.jsxs(h2e,{className:l,label:"Editor toolbar",variant:"unstyled",children:[a.jsx(Wn,{children:a.jsx(xm,{open:r,onToggle:s})}),o&&a.jsx(Wn,{children:a.jsx(Vt,{title:m("Open Settings"),icon:ede,onClick:i})}),a.jsx(pI,{hideDragHandle:!0})]}),t&&a.jsx(Io,{className:"block-settings-menu",variant:"unstyled",placement:"overlay",children:a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"block-settings-menu__header",children:a.jsx(Ce,{className:"block-settings-menu__close",icon:im,onClick:c})}),a.jsx(z3e,{})]})})]})},{lock:hgn,unlock:ZO}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/editor"),umn=".gutenberg-kit-visual-editor__post-title-wrapper .wp-block-post-title{font-size:20px}.block-editor-default-block-appender__content{opacity:.62}",dmn=".editor-visual-editor__post-title-wrapper>:where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:var(--wp--style--global--content-size);margin-left:auto!important;margin-right:auto!important}.editor-visual-editor__post-title-wrapper>.alignwide{max-width:1340px}.editor-visual-editor__post-title-wrapper>.alignfull{max-width:none}:root :where(.is-layout-flow)>:first-child{margin-block-start:0}:root :where(.is-layout-flow)>:last-child{margin-block-end:0}:root :where(.is-layout-flow)>*{margin-block-start:1.2rem;margin-block-end:0}:root :where(.is-layout-constrained)>:first-child{margin-block-start:0}:root :where(.is-layout-constrained)>:last-child{margin-block-end:0}:root :where(.is-layout-constrained)>*{margin-block-start:1.2rem;margin-block-end:0}",{getLayoutStyles:pmn}=ZO(Ln);function fmn(){const{hasThemeStyleSupport:e,editorSettings:t}=G(n=>({hasThemeStyleSupport:n(_k).isFeatureActive("themeStyles"),editorSettings:n(_e).getEditorSettings()}),[]);return x.useMemo(()=>{const n=[...t?.defaultEditorStyles??[]];!t.disableLayoutStyles&&!e&&n.push({css:pmn({style:{},selector:"body",hasBlockGapSupport:!1,hasFallbackGapSupport:!0,fallbackGapValue:"0.5em"})}),e||n.push({css:umn});const o=e?t.styles??[]:n;return[{css:dmn},...o]},[t.defaultEditorStyles,t.disableLayoutStyles,t.styles,e])}function bmn(){const{insertBlock:e}=Oe(Q),{blockCount:t}=G(o=>{const{getBlockCount:r}=o(Q);return{blockCount:r()}}),n=()=>{const o=Ee("core/paragraph");e(o,t)};return a.jsx("button",{"aria-label":m("Add paragraph block"),onClick:n,className:"gutenberg-kit-default-block-appender"})}const{ExperimentalBlockCanvas:hmn,LayoutStyle:Wv,useLayoutClasses:mmn,useLayoutStyles:gmn}=ZO(Ln),Mmn=`.is-root-container.alignwide { max-width: var(--wp--style--global--wide-size); margin-left: auto; margin-right: auto;} +`,o);const r={type:_2,attributes:{url:Lt(o)}};return Xl(e)?E0(e,qi(eo({text:n}),r,0,n.length)):qi(e,r)},edit:Ihn},xre="core/strikethrough",uE=m("Strikethrough"),Dhn={name:xre,title:uE,tagName:"s",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:xre,title:uE})),o()}return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"access",character:"d",onUse:r}),a.jsx(Zs,{icon:cde,title:uE,onClick:r,isActive:e,role:"menuitemcheckbox"})]})}},wre="core/underline",_re=m("Underline"),Fhn={name:wre,title:_re,tagName:"span",className:null,attributes:{style:"style"},edit({value:e,onChange:t}){const n=()=>{t(zc(e,{type:wre,attributes:{style:"text-decoration: underline;"},title:_re}))};return a.jsxs(a.Fragment,{children:[a.jsx(Xd,{type:"primary",character:"u",onUse:n}),a.jsx(mI,{inputType:"formatUnderline",onInput:n})]})}},{lock:pgn,unlock:$hn}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/format-library"),{Tabs:Tv}=$hn(tr),kre=[{name:"color",title:m("Text")},{name:"backgroundColor",title:m("Background")}];function Vhn(e=""){return e.split(";").reduce((t,n)=>{if(n){const[o,r]=n.split(":");o==="color"&&(t.color=r),o==="background-color"&&r!==_k&&(t.backgroundColor=r)}return t},{})}function Hhn(e="",t){return e.split(" ").reduce((n,o)=>{if(o.startsWith("has-")&&o.endsWith("-color")){const r=o.replace(/^has-/,"").replace(/-color$/,""),s=Sf(t,r);n.color=s.color}return n},{})}function yF(e,t,n){const o=eB(e,t);return o?{...Vhn(o.attributes.style),...Hhn(o.attributes.class,n)}:{}}function Uhn(e,t,n,o){const{color:r,backgroundColor:s}={...yF(e,t,n),...o};if(!r&&!s)return Yd(e,t);const i=[],c=[],l={};if(s?i.push(["background-color",s].join(":")):i.push(["background-color",_k].join(":")),r){const u=_2e(n,r);u?c.push(Pt("color",u.slug)):i.push(["color",r].join(":"))}return i.length&&(l.style=i.join(";")),c.length&&(l.class=c.join(" ")),qi(e,{type:t,attributes:l})}function Xhn({name:e,property:t,value:n,onChange:o}){const r=G(i=>{var c;const{getSettings:l}=i(Q);return(c=l().colors)!==null&&c!==void 0?c:[]},[]),s=x.useMemo(()=>yF(n,e,r),[e,n,r]);return a.jsx(Hze,{value:s[t],onChange:i=>{o(Uhn(n,e,r,{[t]:i}))}})}function Ghn({name:e,value:t,onChange:n,onClose:o,contentRef:r,isActive:s}){const i=u3({editableContentElement:r.current,settings:{...Mwe,isActive:s}});return a.jsx(Io,{onClose:o,className:"format-library__inline-color-popover",anchor:i,children:a.jsxs(Tv,{children:[a.jsx(Tv.TabList,{children:kre.map(c=>a.jsx(Tv.Tab,{tabId:c.name,children:c.title},c.name))}),kre.map(c=>a.jsx(Tv.TabPanel,{tabId:c.name,focusable:!1,children:a.jsx(Xhn,{name:e,property:c.name,value:t,onChange:n})},c.name))]})})}const _k="rgba(0, 0, 0, 0)",w4="core/text-color",gwe=m("Highlight"),Khn=[];function SN(e,t){const{ownerDocument:n}=e,{defaultView:o}=n,s=o.getComputedStyle(e).getPropertyValue(t);return t==="background-color"&&s===_k&&e.parentElement?SN(e.parentElement,t):s}function Yhn(e,{color:t,backgroundColor:n}){if(!(!t&&!n))return{color:t||SN(e,"color"),backgroundColor:n===_k?SN(e,"background-color"):n}}function Zhn({value:e,onChange:t,isActive:n,activeAttributes:o,contentRef:r}){const[s,i=Khn]=Un("color.custom","color.palette"),[c,l]=x.useState(!1),u=x.useMemo(()=>Yhn(r.current,yF(e,w4,i)),[r,e,i]),d=!!i.length||s;return!d&&!n?null:a.jsxs(a.Fragment,{children:[a.jsx(Zs,{className:"format-library-text-color-button",isActive:n,icon:a.jsx(wn,{icon:Object.keys(o).length?rJe:xZe,style:u}),title:gwe,onClick:d?()=>l(!0):()=>t(Yd(e,w4)),role:"menuitemcheckbox"}),c&&a.jsx(Ghn,{name:w4,onClose:()=>l(!1),activeAttributes:o,value:e,onChange:t,contentRef:r,isActive:n})]})}const Mwe={name:w4,title:gwe,tagName:"mark",className:"has-inline-color",attributes:{style:"style",class:"class"},edit:Zhn},Sre="core/subscript",dE=m("Subscript"),Qhn={name:Sre,title:dE,tagName:"sub",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:Sre,title:dE}))}function s(){r(),o()}return a.jsx(Zs,{icon:FQe,title:dE,onClick:s,isActive:e,role:"menuitemcheckbox"})}},Cre="core/superscript",pE=m("Superscript"),Jhn={name:Cre,title:pE,tagName:"sup",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:Cre,title:pE}))}function s(){r(),o()}return a.jsx(Zs,{icon:$Qe,title:pE,onClick:s,isActive:e,role:"menuitemcheckbox"})}},qre="core/keyboard",fE=m("Keyboard input"),emn={name:qre,title:fE,tagName:"kbd",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){function r(){n(zc(t,{type:qre,title:fE}))}function s(){r(),o()}return a.jsx(Zs,{icon:Que,title:fE,onClick:s,isActive:e,role:"menuitemcheckbox"})}},CN="core/unknown",Rre=m("Clear Unknown Formatting");function tmn(e){return Xl(e)?!1:Q2(e).formats.some(n=>n.some(o=>o.type===CN))}const nmn={name:CN,title:Rre,tagName:"*",className:null,edit({isActive:e,value:t,onChange:n,onFocus:o}){if(!e&&!tmn(t))return null;function r(){n(Yd(t,CN)),o()}return a.jsx(Zs,{name:"unknown",icon:eQe,title:Rre,onClick:r,isActive:!0})}},AF="core/language",z5=m("Language"),zwe={name:AF,tagName:"bdo",className:null,edit:omn,title:z5};function omn({isActive:e,value:t,onChange:n,contentRef:o}){const[r,s]=x.useState(!1),i=()=>{s(c=>!c)};return a.jsxs(a.Fragment,{children:[a.jsx(Zs,{icon:cQe,label:z5,title:z5,onClick:()=>{e?n(Yd(t,AF)):i()},isActive:e,role:"menuitemcheckbox"}),r&&a.jsx(rmn,{value:t,onChange:n,onClose:i,contentRef:o})]})}function rmn({value:e,contentRef:t,onChange:n,onClose:o}){const r=u3({editableContentElement:t.current,settings:zwe}),[s,i]=x.useState(""),[c,l]=x.useState("ltr");return a.jsx(Io,{className:"block-editor-format-toolbar__language-popover",anchor:r,onClose:o,children:a.jsxs(dt,{as:"form",spacing:4,className:"block-editor-format-toolbar__language-container-content",onSubmit:u=>{u.preventDefault(),n(qi(e,{type:AF,attributes:{lang:s,dir:c}})),o()},children:[a.jsx(dn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:z5,value:s,onChange:u=>i(u),help:m('A valid language attribute, like "en" or "fr".')}),a.jsx(Pn,{__next40pxDefaultSize:!0,__nextHasNoMarginBottom:!0,label:m("Text direction"),value:c,options:[{label:m("Left to right"),value:"ltr"},{label:m("Right to left"),value:"rtl"}],onChange:u=>l(u)}),a.jsx(Ot,{alignment:"right",children:a.jsx(Ce,{__next40pxDefaultSize:!0,variant:"primary",type:"submit",text:m("Apply")})})]})})}const smn="core/non-breaking-space",imn=m("Non breaking space"),amn={name:smn,title:imn,tagName:"nbsp",className:null,edit({value:e,onChange:t}){function n(){t(E0(e," "))}return a.jsx(Xd,{type:"primaryShift",character:" ",onUse:n})}},cmn=[Shn,Chn,uwe,Ehn,mwe,Dhn,Fhn,Mwe,Qhn,Jhn,emn,nmn,zwe,amn];cmn.forEach(({name:e,...t})=>Q0e(e,t));const lmn=({className:e})=>{const[t,n]=x.useState(!1),{isSelected:o}=G(u=>{const{getSelectedBlockClientId:d}=u(Q);return{isSelected:d()!==null}}),{isInserterOpened:r}=G(u=>({isInserterOpened:u(_e).isInserterOpened()}),[]),{setIsInserterOpened:s}=Oe(_e);function i(){n(!0)}function c(){n(!1)}const l=oe("gutenberg-kit-editor-toolbar",e);return a.jsxs(a.Fragment,{children:[a.jsxs(h2e,{className:l,label:"Editor toolbar",variant:"unstyled",children:[a.jsx(Wn,{children:a.jsx(xm,{open:r,onToggle:s})}),o&&a.jsx(Wn,{children:a.jsx(Vt,{title:m("Open Settings"),icon:ede,onClick:i})}),a.jsx(dI,{hideDragHandle:!0})]}),t&&a.jsx(Io,{className:"block-settings-menu",variant:"unstyled",placement:"overlay",children:a.jsxs(a.Fragment,{children:[a.jsx("div",{className:"block-settings-menu__header",children:a.jsx(Ce,{className:"block-settings-menu__close",icon:im,onClick:c})}),a.jsx(z3e,{})]})})]})},{lock:fgn,unlock:vF}=P0("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/editor"),umn=".gutenberg-kit-visual-editor__post-title-wrapper .wp-block-post-title{font-size:20px}.block-editor-default-block-appender__content{opacity:.62}",dmn=".editor-visual-editor__post-title-wrapper>:where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:var(--wp--style--global--content-size);margin-left:auto!important;margin-right:auto!important}.editor-visual-editor__post-title-wrapper>.alignwide{max-width:1340px}.editor-visual-editor__post-title-wrapper>.alignfull{max-width:none}:root :where(.is-layout-flow)>:first-child{margin-block-start:0}:root :where(.is-layout-flow)>:last-child{margin-block-end:0}:root :where(.is-layout-flow)>*{margin-block-start:1.2rem;margin-block-end:0}:root :where(.is-layout-constrained)>:first-child{margin-block-start:0}:root :where(.is-layout-constrained)>:last-child{margin-block-end:0}:root :where(.is-layout-constrained)>*{margin-block-start:1.2rem;margin-block-end:0}",{getLayoutStyles:pmn}=vF(jn);function fmn(){const{hasThemeStyleSupport:e,editorSettings:t}=G(n=>({hasThemeStyleSupport:n(wk).isFeatureActive("themeStyles"),editorSettings:n(_e).getEditorSettings()}),[]);return x.useMemo(()=>{const n=[...t?.defaultEditorStyles??[]];!t.disableLayoutStyles&&!e&&n.push({css:pmn({style:{},selector:"body",hasBlockGapSupport:!1,hasFallbackGapSupport:!0,fallbackGapValue:"0.5em"})}),e||n.push({css:umn});const o=e?t.styles??[]:n;return[{css:dmn},...o]},[t.defaultEditorStyles,t.disableLayoutStyles,t.styles,e])}function bmn(){const{insertBlock:e}=Oe(Q),{blockCount:t}=G(o=>{const{getBlockCount:r}=o(Q);return{blockCount:r()}}),n=()=>{const o=Ee("core/paragraph");e(o,t)};return a.jsx("button",{"aria-label":m("Add paragraph block"),onClick:n,className:"gutenberg-kit-default-block-appender"})}const{ExperimentalBlockCanvas:hmn,LayoutStyle:Ev,useLayoutClasses:mmn,useLayoutStyles:gmn}=vF(jn),Mmn=`.is-root-container.alignwide { max-width: var(--wp--style--global--wide-size); margin-left: auto; margin-right: auto;} .is-root-container.alignwide:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: var(--wp--style--global--wide-size);} .is-root-container.alignfull { max-width: none; margin-left: auto; margin-right: auto;} - .is-root-container.alignfull:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: none;}`;function zmn({hideTitle:e}){const t=x.useRef(),{renderingMode:n,hasThemeStyleSupport:o,themeHasDisabledLayoutStyles:r,themeSupportsLayout:s,hasRootPaddingAwareAlignments:i}=G(z=>{const{getRenderingMode:A}=z(_e),_=A(),{getSettings:v}=ZO(z(Q)),M=v();return{renderingMode:_,hasThemeStyleSupport:z(_k).isFeatureActive("themeStyles"),themeSupportsLayout:M.supportsLayout,themeHasDisabledLayoutStyles:M.disableLayoutStyles,hasRootPaddingAwareAlignments:M.__experimentalFeatures?.useRootPaddingAwareAlignments}},[]),c=fmn(),l=oe("gutenberg-kit-visual-editor",{"has-root-padding":!o||!i}),u=oe("gutenberg-kit-visual-editor__post-title-wrapper","editor-visual-editor__post-title-wrapper",{"has-global-padding":o&&i}),d={align:"full",layout:{type:"constrained"}},{layout:p={},align:f=""}=d,b=mmn(d,"core/post-content"),h=gmn(d,"core/post-content",".block-editor-block-list__layout.is-root-container"),g=oe(s&&b,f&&`align${f}`,{"is-layout-flow":!s,"has-global-padding":o&&i});return a.jsxs("div",{className:l,children:[a.jsxs(hmn,{shouldIframe:!1,height:"100%",styles:c,children:[s&&!r&&n==="post-only"&&a.jsxs(a.Fragment,{children:[a.jsx(Wv,{selector:".editor-visual-editor__post-title-wrapper",layout:p}),a.jsx(Wv,{selector:".block-editor-block-list__layout.is-root-container",layout:p}),f&&a.jsx(Wv,{css:Mmn}),h&&a.jsx(Wv,{layout:p,css:h})]}),!e&&a.jsx("div",{className:u,children:a.jsx(Rye,{ref:t})}),a.jsx(I_,{className:g,layout:p}),a.jsx(bmn,{})]}),a.jsx(lmn,{className:"gutenberg-kit-visual-editor__toolbar"}),a.jsx(Io.Slot,{})]})}function Omn(){const{hasUndo:e,hasRedo:t}=G(n=>{const o=n(_e);return{hasUndo:o.hasEditorUndo(),hasRedo:o.hasEditorRedo()}},[]);x.useEffect(()=>{hbn(e,t)},[e,t])}window.editor=window.editor||{};function ymn(e,t){const{editEntityRecord:n}=Oe(Me),{undo:o,redo:r,switchEditorMode:s}=Oe(_e),{getEditedPostAttribute:i,getEditedPostContent:c}=G(_e),l=x.useCallback(p=>{n("postType",e.type,e.id,p)},[n,e.id,e.type]),u=x.useRef(e.title.raw),d=x.useRef(null);d.current===null&&(d.current=Ks(Ko(e.content.raw||""))),x.useEffect(()=>(window.editor.setContent=p=>{l({content:decodeURIComponent(p)})},window.editor.setTitle=p=>{l({title:decodeURIComponent(p)})},window.editor.getContent=(p=!1)=>(p&&Tre(t.current),c()),window.editor.getTitleAndContent=(p=!1)=>{p&&Tre(t.current);const f=i("title"),b=c(),h=f!==u.current||b!==d.current;return h&&(u.current=f,d.current=b),{title:f,content:b,changed:h}},window.editor.undo=()=>{o()},window.editor.redo=()=>{r()},window.editor.switchEditorMode=p=>{s(p)},()=>{delete window.editor.setContent,delete window.editor.setTitle,delete window.editor.getContent,delete window.editor.getTitleAndContent,delete window.editor.undo,delete window.editor.redo,delete window.editor.switchEditorMode}),[t,l,i,c,r,s,o])}function Tre(e){const t=e?.ownerDocument.activeElement;if(t&&t.contentEditable==="true"){const n=new Event("compositionend");t.dispatchEvent(n)}}function Amn(){x.useEffect(()=>(C4("editor.ErrorBoundary.errorLogged","GutenbergKit",e=>{Mbn(e,{isHandled:!0,handledBy:"editor.ErrorBoundary.errorLogged"})}),()=>{zE("editor.ErrorBoundary.errorLogged","GutenbergKit")}),[])}const vmn=[{name:"post",baseURL:"/wp/v2/posts"},{name:"page",baseURL:"/wp/v2/pages"},{name:"attachment",baseURL:"/wp/v2/media"},{name:"wp_block",baseURL:"/wp/v2/blocks"}].map(e=>({kind:"postType",...e,transientEdits:{blocks:!0,selection:!0},mergedEdits:{meta:!0},rawAttributes:["title","excerpt","content"]}));function xmn(e){const{addEntities:t,receiveEntityRecords:n}=Oe(Me),{setEditedPost:o,setupEditor:r}=Oe(_e);x.useEffect(()=>{t(vmn),n("postType",e.type,e),r(e,{}),fbn(),o(e.type,e.id)},[])}function wmn(){x.useEffect(()=>(Bn("editor.MediaUpload","GutenbergKit",()=>_mn),()=>{OE("editor.MediaUpload","GutenbergKit")}),[])}function _mn({render:e,...t}){const{open:n}=kmn(t);return e({open:n})}function kmn({onSelect:e,...t}){return x.useEffect(()=>(window.editor.setMediaUploadAttachment=o=>{e(t.multiple?o:o[0])},()=>{window.editor.setMediaUploadAttachment=()=>{}}),[e,t.multiple]),{open:x.useCallback(()=>mbn(t),[t])}}const{useBlockEditorSettings:Smn}=ZO(jc);function Cmn(e){const{blockPatterns:t,editorSettings:n,hasUploadPermissions:o,reusableBlocks:r}=G(c=>{const{getEntityRecord:l,getEntityRecords:u}=c(Me),{getEditorSettings:d}=c(_e),p=l("root","user",e.author);return{editorSettings:d(),blockPatterns:c(Me).getBlockPatterns(),hasUploadPermissions:p?.capabilities?.upload_files??!0,reusableBlocks:u("postType","wp_block")}},[e.author]),s=Smn(n,e.type,e.id,"visual");return x.useMemo(()=>({...s,hasFixedToolbar:!0,mediaUpload:o?WOe:void 0,__experimentalReusableBlocks:r,__experimentalBlockPatterns:t}),[s,t,o,r])}function qmn({hideTitle:e}){return a.jsxs("div",{className:"gutenberg-kit-text-editor",children:[!e&&a.jsx(Tye,{}),a.jsx(GI,{})]})}const{ExperimentalBlockEditorProvider:Rmn}=ZO(Ln);function Tmn({post:e,children:t,hideTitle:n}){const o=x.useRef(null);ymn(e,o),Omn(),Amn(),xmn(e),wmn();const[r,s,i]=Ni("postType",e.type,{id:e.id}),c=Cmn(e),{isReady:l,mode:u,isRichEditingEnabled:d}=G(p=>{const{__unstableIsEditorReady:f,getEditorSettings:b,getEditorMode:h}=p(_e),g=b();return{isReady:f(),mode:h(),isRichEditingEnabled:g.richEditingEnabled}},[]);return l?a.jsx("div",{className:"gutenberg-kit-editor",ref:o,children:a.jsxs(Rmn,{value:r,onInput:s,onChange:i,settings:c,useSubRegistry:!1,children:[u==="visual"&&d&&a.jsx(zmn,{hideTitle:n}),(u==="text"||!d)&&a.jsx(qmn,{autoFocus:!0,hideTitle:n}),t]})}):null}function Emn({className:e}){const{notice:t,clearNotice:n}=Wmn(),o=[{label:"Retry",onClick:()=>window.location.href="remote.html",variant:"primary"},{label:"Dismiss",onClick:n,variant:"secondary"}];return t?a.jsx("div",{className:e,children:a.jsx(L1,{actions:o,status:"warning",isDismissible:!1,children:t})}):null}function Wmn(){const[e,t]=x.useState(null);return x.useEffect(()=>{const o=new URL(window.location.href).searchParams.get("error");let r=null;switch(o){case Nmn:r=m("Oops! We couldn't load your site's editor and plugins. Don't worry, you can use the default editor for now.");break;default:r=null}t(r)},[]),x.useEffect(()=>{if(e){const n=setTimeout(()=>{t(null)},2e4);return()=>clearTimeout(n)}},[e]),{notice:e,clearNotice:()=>t(null)}}const Nmn="remote_editor_load_error";function Bmn(e){return a.jsxs(gUt,{canCopyContent:!0,children:[a.jsx($Ht,{autosave:bbn}),a.jsx(Tmn,{...e,children:a.jsx(sUt,{})}),a.jsx(Emn,{className:"gutenberg-kit-layout__load-notice"})]})}window.GBKit=UO();zbn();Lmn();function Lmn(){const{themeStyles:e,hideTitle:t}=UO();Tt({path:"/wp-block-editor/v1/settings"}).then(o=>{kr(_e).updateEditorSettings(o)}).catch(()=>{const o={defaultEditorStyles:[{css:iZt}]};kr(_e).updateEditorSettings(o)}),kr(ht).setDefaults("core/edit-post",{themeStyles:e}),Jfn();const n=gbn();Nre.createRoot(document.getElementById("root")).render(a.jsx(x.StrictMode,{children:a.jsx(Bmn,{post:n,hideTitle:t})}))}});export default Pmn(); + .is-root-container.alignfull:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: none;}`;function zmn({hideTitle:e}){const t=x.useRef(),{renderingMode:n,hasThemeStyleSupport:o,themeHasDisabledLayoutStyles:r,themeSupportsLayout:s,hasRootPaddingAwareAlignments:i}=G(z=>{const{getRenderingMode:A}=z(_e),_=A(),{getSettings:v}=vF(z(Q)),M=v();return{renderingMode:_,hasThemeStyleSupport:z(wk).isFeatureActive("themeStyles"),themeSupportsLayout:M.supportsLayout,themeHasDisabledLayoutStyles:M.disableLayoutStyles,hasRootPaddingAwareAlignments:M.__experimentalFeatures?.useRootPaddingAwareAlignments}},[]),c=fmn(),l=oe("gutenberg-kit-visual-editor",{"has-root-padding":!o||!i}),u=oe("gutenberg-kit-visual-editor__post-title-wrapper","editor-visual-editor__post-title-wrapper",{"has-global-padding":o&&i}),d={align:"full",layout:{type:"constrained"}},{layout:p={},align:f=""}=d,b=mmn(d,"core/post-content"),h=gmn(d,"core/post-content",".block-editor-block-list__layout.is-root-container"),g=oe(s&&b,f&&`align${f}`,{"is-layout-flow":!s,"has-global-padding":o&&i});return a.jsxs("div",{className:l,children:[a.jsxs(hmn,{shouldIframe:!1,height:"100%",styles:c,children:[s&&!r&&n==="post-only"&&a.jsxs(a.Fragment,{children:[a.jsx(Ev,{selector:".editor-visual-editor__post-title-wrapper",layout:p}),a.jsx(Ev,{selector:".block-editor-block-list__layout.is-root-container",layout:p}),f&&a.jsx(Ev,{css:Mmn}),h&&a.jsx(Ev,{layout:p,css:h})]}),!e&&a.jsx("div",{className:u,children:a.jsx(qye,{ref:t})}),a.jsx(j_,{className:g,layout:p}),a.jsx(bmn,{})]}),a.jsx(lmn,{className:"gutenberg-kit-visual-editor__toolbar"}),a.jsx(Io.Slot,{})]})}function Omn(){const{hasUndo:e,hasRedo:t}=G(n=>{const o=n(_e);return{hasUndo:o.hasEditorUndo(),hasRedo:o.hasEditorRedo()}},[]);x.useEffect(()=>{hbn(e,t)},[e,t])}window.editor=window.editor||{};function ymn(e,t){const{editEntityRecord:n}=Oe(Me),{undo:o,redo:r,switchEditorMode:s}=Oe(_e),{getEditedPostAttribute:i,getEditedPostContent:c}=G(_e),l=x.useCallback(p=>{n("postType",e.type,e.id,p)},[n,e.id,e.type]),u=x.useRef(e.title.raw),d=x.useRef(null);d.current===null&&(d.current=Ks(Ko(e.content.raw||""))),x.useEffect(()=>(window.editor.setContent=p=>{l({content:decodeURIComponent(p)})},window.editor.setTitle=p=>{l({title:decodeURIComponent(p)})},window.editor.getContent=(p=!1)=>(p&&Tre(t.current),c()),window.editor.getTitleAndContent=(p=!1)=>{p&&Tre(t.current);const f=i("title"),b=c(),h=f!==u.current||b!==d.current;return h&&(u.current=f,d.current=b),{title:f,content:b,changed:h}},window.editor.undo=()=>{o()},window.editor.redo=()=>{r()},window.editor.switchEditorMode=p=>{s(p)},()=>{delete window.editor.setContent,delete window.editor.setTitle,delete window.editor.getContent,delete window.editor.getTitleAndContent,delete window.editor.undo,delete window.editor.redo,delete window.editor.switchEditorMode}),[t,l,i,c,r,s,o])}function Tre(e){const t=e?.ownerDocument.activeElement;if(t&&t.contentEditable==="true"){const n=new Event("compositionend");t.dispatchEvent(n)}}function Amn(){x.useEffect(()=>(S4("editor.ErrorBoundary.errorLogged","GutenbergKit",e=>{Mbn(e,{isHandled:!0,handledBy:"editor.ErrorBoundary.errorLogged"})}),()=>{ME("editor.ErrorBoundary.errorLogged","GutenbergKit")}),[])}const vmn=[{name:"post",baseURL:"/wp/v2/posts"},{name:"page",baseURL:"/wp/v2/pages"},{name:"attachment",baseURL:"/wp/v2/media"},{name:"wp_block",baseURL:"/wp/v2/blocks"}].map(e=>({kind:"postType",...e,transientEdits:{blocks:!0,selection:!0},mergedEdits:{meta:!0},rawAttributes:["title","excerpt","content"]}));function xmn(e){const{addEntities:t,receiveEntityRecords:n}=Oe(Me),{setEditedPost:o,setupEditor:r}=Oe(_e);x.useEffect(()=>{t(vmn),n("postType",e.type,e),r(e,{}),fbn(),o(e.type,e.id)},[])}function wmn(){x.useEffect(()=>(Bn("editor.MediaUpload","GutenbergKit",()=>_mn),()=>{zE("editor.MediaUpload","GutenbergKit")}),[])}function _mn({render:e,...t}){const{open:n}=kmn(t);return e({open:n})}function kmn({onSelect:e,...t}){return x.useEffect(()=>(window.editor.setMediaUploadAttachment=o=>{e(t.multiple?o:o[0])},()=>{window.editor.setMediaUploadAttachment=()=>{}}),[e,t.multiple]),{open:x.useCallback(()=>mbn(t),[t])}}function Smn({hideTitle:e}){return a.jsxs("div",{className:"gutenberg-kit-text-editor",children:[!e&&a.jsx(Rye,{}),a.jsx(XI,{})]})}function Cmn({post:e,children:t,hideTitle:n}){const o=x.useRef(null);ymn(e,o),Omn(),Amn(),xmn(e),wmn();const{isReady:r,mode:s,isRichEditingEnabled:i,currentPost:c}=G(l=>{const{__unstableIsEditorReady:u,getEditorSettings:d,getEditorMode:p}=l(_e),f=d(),{getEntityRecord:b}=l(Me),h=b("postType",e.type,e.id);return{isReady:u(),mode:p(),isRichEditingEnabled:f.richEditingEnabled,currentPost:h}},[e.id,e.type]);return r?a.jsx("div",{className:"gutenberg-kit-editor",ref:o,children:a.jsxs(HOe,{post:c,settings:qmn,useSubRegistry:!1,children:[s==="visual"&&i&&a.jsx(zmn,{hideTitle:n}),(s==="text"||!i)&&a.jsx(Smn,{autoFocus:!0,hideTitle:n}),t]})}):null}const qmn={};function Rmn({className:e}){const{notice:t,clearNotice:n}=Tmn(),o=[{label:"Retry",onClick:()=>window.location.href="remote.html",variant:"primary"},{label:"Dismiss",onClick:n,variant:"secondary"}];return t?a.jsx("div",{className:e,children:a.jsx(L1,{actions:o,status:"warning",isDismissible:!1,children:t})}):null}function Tmn(){const[e,t]=x.useState(null);return x.useEffect(()=>{const o=new URL(window.location.href).searchParams.get("error");let r=null;switch(o){case Emn:r=m("Oops! We couldn't load your site's editor and plugins. Don't worry, you can use the default editor for now.");break;default:r=null}t(r)},[]),x.useEffect(()=>{if(e){const n=setTimeout(()=>{t(null)},2e4);return()=>clearTimeout(n)}},[e]),{notice:e,clearNotice:()=>t(null)}}const Emn="remote_editor_load_error";function Wmn(e){return a.jsxs(gUt,{canCopyContent:!0,children:[a.jsx($Ht,{autosave:bbn}),a.jsx(Cmn,{...e,children:a.jsx(sUt,{})}),a.jsx(Rmn,{className:"gutenberg-kit-layout__load-notice"})]})}window.GBKit=UO();zbn();Nmn();function Nmn(){const{themeStyles:e,hideTitle:t}=UO();Tt({path:"/wp-block-editor/v1/settings"}).then(r=>{kr(_e).updateEditorSettings(r)}).catch(()=>{const r={defaultEditorStyles:[{css:iZt}]};kr(_e).updateEditorSettings(r)});const n=kr(ht);n.setDefaults("core",{fixedToolbar:!0}),n.setDefaults("core/edit-post",{themeStyles:e}),Jfn();const o=gbn();Nre.createRoot(document.getElementById("root")).render(a.jsx(x.StrictMode,{children:a.jsx(Wmn,{post:o,hideTitle:t})}))}});export default Bmn(); diff --git a/ios/Sources/GutenbergKit/Gutenberg/assets/index-BzYJLdTZ.js b/ios/Sources/GutenbergKit/Gutenberg/assets/index-BzYJLdTZ.js new file mode 100644 index 00000000..503cc74f --- /dev/null +++ b/ios/Sources/GutenbergKit/Gutenberg/assets/index-BzYJLdTZ.js @@ -0,0 +1,4 @@ +import{o as V,l as K,e as W,a as Z,b as q}from"./remote-DPWJk5ym.js";import"@wordpress/block-editor/build-style/default-editor-styles.css?inline";function F(t){var e,o,n="";if(typeof t=="string"||typeof t=="number")n+=t;else if(typeof t=="object")if(Array.isArray(t)){var s=t.length;for(e=0;e<s;e++)t[e]&&(o=F(t[e]))&&(n&&(n+=" "),n+=o)}else for(o in t)t[o]&&(n&&(n+=" "),n+=o);return n}function b(){for(var t,e,o=0,n="",s=arguments.length;o<s;o++)(t=arguments[o])&&(e=F(t))&&(n&&(n+=" "),n+=e);return n}const{SVG:Q,Path:Y}=window.wp.primitives,{jsx:x}=window.ReactJSXRuntime,tt=x(Q,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:x(Y,{d:"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"})}),{SVG:et,Path:ot}=window.wp.primitives,{jsx:$}=window.ReactJSXRuntime,nt=$(et,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:$(ot,{fillRule:"evenodd",d:"M10.289 4.836A1 1 0 0111.275 4h1.306a1 1 0 01.987.836l.244 1.466c.787.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 011.216.437l.653 1.13a1 1 0 01-.23 1.273l-1.148.944a6.025 6.025 0 010 2.435l1.149.946a1 1 0 01.23 1.272l-.653 1.13a1 1 0 01-1.216.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 01-.987.836h-1.306a1 1 0 01-.986-.836l-.244-1.466a5.995 5.995 0 01-2.108-1.218l-1.394.522a1 1 0 01-1.217-.436l-.653-1.131a1 1 0 01.23-1.272l1.149-.946a6.026 6.026 0 010-2.435l-1.148-.944a1 1 0 01-.23-1.272l.653-1.131a1 1 0 011.217-.437l1.393.522a5.994 5.994 0 012.108-1.218l.244-1.466zM14.929 12a3 3 0 11-6 0 3 3 0 016 0z",clipRule:"evenodd"})}),{Fragment:C,jsx:g,jsxs:E}=window.ReactJSXRuntime,{useState:st}=window.wp.element,{BlockInspector:it,BlockToolbar:rt,Inserter:at,store:lt}=window.wp.blockEditor,{useSelect:L,useDispatch:dt}=window.wp.data,{Button:ct,Popover:ut,Toolbar:wt,ToolbarGroup:A,ToolbarButton:pt}=window.wp.components,{__:gt}=window.wp.i18n,{store:P}=window.wp.editor,mt=({className:t})=>{const[e,o]=st(!1),{isSelected:n}=L(c=>{const{getSelectedBlockClientId:r}=c(lt);return{isSelected:r()!==null}}),{isInserterOpened:s}=L(c=>({isInserterOpened:c(P).isInserterOpened()}),[]),{setIsInserterOpened:a}=dt(P);function l(){o(!0)}function w(){o(!1)}const d=b("gutenberg-kit-editor-toolbar",t);return E(C,{children:[E(wt,{className:d,label:"Editor toolbar",variant:"unstyled",children:[g(A,{children:g(at,{open:s,onToggle:a})}),n&&g(A,{children:g(pt,{title:gt("Open Settings"),icon:nt,onClick:l})}),g(rt,{hideDragHandle:!0})]}),e&&g(ut,{className:"block-settings-menu",variant:"unstyled",placement:"overlay",children:E(C,{children:[g("div",{className:"block-settings-menu__header",children:g(ct,{className:"block-settings-menu__close",icon:tt,onClick:w})}),g(it,{})]})})]})},{__dangerousOptInToUnstableAPIsOnlyForCoreModules:ht}=window.wp.privateApis,{lock:Je,unlock:_}=ht("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/editor"),ft=".gutenberg-kit-visual-editor__post-title-wrapper .wp-block-post-title{font-size:20px}.block-editor-default-block-appender__content{opacity:.62}",yt=".editor-visual-editor__post-title-wrapper>:where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:var(--wp--style--global--content-size);margin-left:auto!important;margin-right:auto!important}.editor-visual-editor__post-title-wrapper>.alignwide{max-width:1340px}.editor-visual-editor__post-title-wrapper>.alignfull{max-width:none}:root :where(.is-layout-flow)>:first-child{margin-block-start:0}:root :where(.is-layout-flow)>:last-child{margin-block-end:0}:root :where(.is-layout-flow)>*{margin-block-start:1.2rem;margin-block-end:0}:root :where(.is-layout-constrained)>:first-child{margin-block-start:0}:root :where(.is-layout-constrained)>:last-child{margin-block-end:0}:root :where(.is-layout-constrained)>*{margin-block-start:1.2rem;margin-block-end:0}",{store:bt}=window.wp.editor,{useSelect:St}=window.wp.data,{privateApis:kt}=window.wp.blockEditor,{store:Et}=window.wp.editPost,{useMemo:vt}=window.wp.element,{getLayoutStyles:Rt}=_(kt);function _t(){const{hasThemeStyleSupport:t,editorSettings:e}=St(o=>({hasThemeStyleSupport:o(Et).isFeatureActive("themeStyles"),editorSettings:o(bt).getEditorSettings()}),[]);return vt(()=>{const o=[...e?.defaultEditorStyles??[]];!e.disableLayoutStyles&&!t&&o.push({css:Rt({style:{},selector:"body",hasBlockGapSupport:!1,hasFallbackGapSupport:!0,fallbackGapValue:"0.5em"})}),t||o.push({css:ft});const n=t?e.styles??[]:o;return[{css:yt},...n]},[e.defaultEditorStyles,e.disableLayoutStyles,e.styles,t])}const{jsx:xt}=window.ReactJSXRuntime,{createBlock:$t}=window.wp.blocks,{useDispatch:Ct,useSelect:Lt}=window.wp.data,{__:At}=window.wp.i18n,{store:T}=window.wp.blockEditor;function Pt(){const{insertBlock:t}=Ct(T),{blockCount:e}=Lt(n=>{const{getBlockCount:s}=n(T);return{blockCount:s()}}),o=()=>{const n=$t("core/paragraph");t(n,e)};return xt("button",{"aria-label":At("Add paragraph block"),onClick:o,className:"gutenberg-kit-default-block-appender"})}const{Fragment:Tt,jsx:u,jsxs:v}=window.ReactJSXRuntime,{useRef:jt}=window.wp.element,{BlockList:Bt,privateApis:Mt,store:Dt}=window.wp.blockEditor,{Popover:It}=window.wp.components,{store:Nt,PostTitle:Ut}=window.wp.editor,{useSelect:Ot}=window.wp.data,{store:Ft}=window.wp.editPost,{ExperimentalBlockCanvas:Gt,LayoutStyle:f,useLayoutClasses:Jt,useLayoutStyles:Xt}=_(Mt),Ht=`.is-root-container.alignwide { max-width: var(--wp--style--global--wide-size); margin-left: auto; margin-right: auto;} + .is-root-container.alignwide:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: var(--wp--style--global--wide-size);} + .is-root-container.alignfull { max-width: none; margin-left: auto; margin-right: auto;} + .is-root-container.alignfull:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: none;}`;function zt({hideTitle:t}){const e=jt(),{renderingMode:o,hasThemeStyleSupport:n,themeHasDisabledLayoutStyles:s,themeSupportsLayout:a,hasRootPaddingAwareAlignments:l}=Ot(S=>{const{getRenderingMode:X}=S(Nt),H=X(),{getSettings:z}=_(S(Dt)),k=z();return{renderingMode:H,hasThemeStyleSupport:S(Ft).isFeatureActive("themeStyles"),themeSupportsLayout:k.supportsLayout,themeHasDisabledLayoutStyles:k.disableLayoutStyles,hasRootPaddingAwareAlignments:k.__experimentalFeatures?.useRootPaddingAwareAlignments}},[]),w=_t(),d=b("gutenberg-kit-visual-editor",{"has-root-padding":!n||!l}),c=b("gutenberg-kit-visual-editor__post-title-wrapper","editor-visual-editor__post-title-wrapper",{"has-global-padding":n&&l}),r={align:"full",layout:{type:"constrained"}},{layout:i={},align:p=""}=r,m=Jt(r,"core/post-content"),h=Xt(r,"core/post-content",".block-editor-block-list__layout.is-root-container"),J=b(a&&m,p&&`align${p}`,{"is-layout-flow":!a,"has-global-padding":n&&l});return v("div",{className:d,children:[v(Gt,{shouldIframe:!1,height:"100%",styles:w,children:[a&&!s&&o==="post-only"&&v(Tt,{children:[u(f,{selector:".editor-visual-editor__post-title-wrapper",layout:i}),u(f,{selector:".block-editor-block-list__layout.is-root-container",layout:i}),p&&u(f,{css:Ht}),h&&u(f,{layout:i,css:h})]}),!t&&u("div",{className:c,children:u(Ut,{ref:e})}),u(Bt,{className:J,layout:i}),u(Pt,{})]}),u(mt,{className:"gutenberg-kit-visual-editor__toolbar"}),u(It.Slot,{})]})}const{useEffect:Vt}=window.wp.element,{useSelect:Kt}=window.wp.data,{store:Wt}=window.wp.editor;function Zt(){const{hasUndo:t,hasRedo:e}=Kt(o=>{const n=o(Wt);return{hasUndo:n.hasEditorUndo(),hasRedo:n.hasEditorRedo()}},[]);Vt(()=>{V(t,e)},[t,e])}const{useEffect:qt,useCallback:Qt,useRef:j}=window.wp.element,{useDispatch:B,useSelect:Yt}=window.wp.data,{store:te}=window.wp.coreData,{store:M}=window.wp.editor,{parse:ee,serialize:oe}=window.wp.blocks;window.editor=window.editor||{};function ne(t,e){const{editEntityRecord:o}=B(te),{undo:n,redo:s,switchEditorMode:a}=B(M),{getEditedPostAttribute:l,getEditedPostContent:w}=Yt(M),d=Qt(i=>{o("postType",t.type,t.id,i)},[o,t.id,t.type]),c=j(t.title.raw),r=j(null);r.current===null&&(r.current=oe(ee(t.content.raw||""))),qt(()=>(window.editor.setContent=i=>{d({content:decodeURIComponent(i)})},window.editor.setTitle=i=>{d({title:decodeURIComponent(i)})},window.editor.getContent=(i=!1)=>(i&&D(e.current),w()),window.editor.getTitleAndContent=(i=!1)=>{i&&D(e.current);const p=l("title"),m=w(),h=p!==c.current||m!==r.current;return h&&(c.current=p,r.current=m),{title:p,content:m,changed:h}},window.editor.undo=()=>{n()},window.editor.redo=()=>{s()},window.editor.switchEditorMode=i=>{a(i)},()=>{delete window.editor.setContent,delete window.editor.setTitle,delete window.editor.getContent,delete window.editor.getTitleAndContent,delete window.editor.undo,delete window.editor.redo,delete window.editor.switchEditorMode}),[e,d,l,w,s,a,n])}function D(t){const e=t?.ownerDocument.activeElement;if(e&&e.contentEditable==="true"){const o=new Event("compositionend");e.dispatchEvent(o)}}const{useEffect:se}=window.wp.element,{addAction:ie,removeAction:re}=window.wp.hooks;function ae(){se(()=>(ie("editor.ErrorBoundary.errorLogged","GutenbergKit",t=>{K(t,{isHandled:!0,handledBy:"editor.ErrorBoundary.errorLogged"})}),()=>{re("editor.ErrorBoundary.errorLogged","GutenbergKit")}),[])}const le=[{name:"post",baseURL:"/wp/v2/posts"},{name:"page",baseURL:"/wp/v2/pages"},{name:"attachment",baseURL:"/wp/v2/media"},{name:"wp_block",baseURL:"/wp/v2/blocks"}].map(t=>({kind:"postType",...t,transientEdits:{blocks:!0,selection:!0},mergedEdits:{meta:!0},rawAttributes:["title","excerpt","content"]})),{useEffect:de}=window.wp.element,{useDispatch:I}=window.wp.data,{store:ce}=window.wp.coreData,{store:ue}=window.wp.editor;function we(t){const{addEntities:e,receiveEntityRecords:o}=I(ce),{setEditedPost:n,setupEditor:s}=I(ue);de(()=>{e(le),o("postType",t.type,t),s(t,{}),W(),n(t.type,t.id)},[])}const{addFilter:pe,removeFilter:ge}=window.wp.hooks,{useCallback:me,useEffect:G}=window.wp.element;function he(){G(()=>(pe("editor.MediaUpload","GutenbergKit",()=>fe),()=>{ge("editor.MediaUpload","GutenbergKit")}),[])}function fe({render:t,...e}){const{open:o}=ye(e);return t({open:o})}function ye({onSelect:t,...e}){return G(()=>(window.editor.setMediaUploadAttachment=n=>{t(e.multiple?n:n[0])},()=>{window.editor.setMediaUploadAttachment=()=>{}}),[t,e.multiple]),{open:me(()=>Z(e),[e])}}const{jsx:N,jsxs:be}=window.ReactJSXRuntime,{PostTitleRaw:Se,PostTextEditor:ke}=window.wp.editor;function Ee({hideTitle:t}){return be("div",{className:"gutenberg-kit-text-editor",children:[!t&&N(Se,{}),N(ke,{})]})}const{jsx:R,jsxs:ve}=window.ReactJSXRuntime,{store:Re}=window.wp.coreData,{useSelect:_e}=window.wp.data,{store:xe,EditorProvider:$e}=window.wp.editor,{useRef:Ce}=window.wp.element;function Le({post:t,children:e,hideTitle:o}){const n=Ce(null);ne(t,n),Zt(),ae(),we(t),he();const{isReady:s,mode:a,isRichEditingEnabled:l,currentPost:w}=_e(d=>{const{__unstableIsEditorReady:c,getEditorSettings:r,getEditorMode:i}=d(xe),p=r(),{getEntityRecord:m}=d(Re),h=m("postType",t.type,t.id);return{isReady:c(),mode:i(),isRichEditingEnabled:p.richEditingEnabled,currentPost:h}},[t.id,t.type]);return s?R("div",{className:"gutenberg-kit-editor",ref:n,children:ve($e,{post:w,settings:Ae,useSubRegistry:!1,children:[a==="visual"&&l&&R(zt,{hideTitle:o}),(a==="text"||!l)&&R(Ee,{autoFocus:!0,hideTitle:o}),e]})}):null}const Ae={},{jsx:U}=window.ReactJSXRuntime,{Notice:Pe}=window.wp.components,{__:Te}=window.wp.i18n,{useState:je,useEffect:O}=window.wp.element;function Be({className:t}){const{notice:e,clearNotice:o}=Me(),n=[{label:"Retry",onClick:()=>window.location.href="remote.html",variant:"primary"},{label:"Dismiss",onClick:o,variant:"secondary"}];return e?U("div",{className:t,children:U(Pe,{actions:n,status:"warning",isDismissible:!1,children:e})}):null}function Me(){const[t,e]=je(null);return O(()=>{const n=new URL(window.location.href).searchParams.get("error");let s=null;switch(n){case De:s=Te("Oops! We couldn't load your site's editor and plugins. Don't worry, you can use the default editor for now.");break;default:s=null}e(s)},[]),O(()=>{if(t){const o=setTimeout(()=>{e(null)},2e4);return()=>clearTimeout(o)}},[t]),{notice:t,clearNotice:()=>e(null)}}const De="remote_editor_load_error",{jsx:y,jsxs:Ie}=window.ReactJSXRuntime,{EditorSnackbars:Ne,ErrorBoundary:Ue,AutosaveMonitor:Oe}=window.wp.editor;function Xe(t){return Ie(Ue,{canCopyContent:!0,children:[y(Oe,{autosave:q}),y(Le,{...t,children:y(Ne,{})}),y(Be,{className:"gutenberg-kit-layout__load-notice"})]})}export{Xe as default}; diff --git a/ios/Sources/GutenbergKit/Gutenberg/assets/index-D84i1b9O.js b/ios/Sources/GutenbergKit/Gutenberg/assets/index-D84i1b9O.js deleted file mode 100644 index 8b44ea41..00000000 --- a/ios/Sources/GutenbergKit/Gutenberg/assets/index-D84i1b9O.js +++ /dev/null @@ -1,4 +0,0 @@ -import{o as V,l as W,e as Z,a as q,b as Q}from"./remote-CSkotQ-G.js";import"@wordpress/block-editor/build-style/default-editor-styles.css?inline";function J(t){var e,n,o="";if(typeof t=="string"||typeof t=="number")o+=t;else if(typeof t=="object")if(Array.isArray(t)){var s=t.length;for(e=0;e<s;e++)t[e]&&(n=J(t[e]))&&(o&&(o+=" "),o+=n)}else for(n in t)t[n]&&(o&&(o+=" "),o+=n);return o}function S(){for(var t,e,n=0,o="",s=arguments.length;n<s;n++)(t=arguments[n])&&(e=J(t))&&(o&&(o+=" "),o+=e);return o}const{SVG:Y,Path:tt}=window.wp.primitives,{jsx:$}=window.ReactJSXRuntime,et=$(Y,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:$(tt,{d:"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"})}),{SVG:ot,Path:nt}=window.wp.primitives,{jsx:C}=window.ReactJSXRuntime,st=C(ot,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",children:C(nt,{fillRule:"evenodd",d:"M10.289 4.836A1 1 0 0111.275 4h1.306a1 1 0 01.987.836l.244 1.466c.787.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 011.216.437l.653 1.13a1 1 0 01-.23 1.273l-1.148.944a6.025 6.025 0 010 2.435l1.149.946a1 1 0 01.23 1.272l-.653 1.13a1 1 0 01-1.216.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 01-.987.836h-1.306a1 1 0 01-.986-.836l-.244-1.466a5.995 5.995 0 01-2.108-1.218l-1.394.522a1 1 0 01-1.217-.436l-.653-1.131a1 1 0 01.23-1.272l1.149-.946a6.026 6.026 0 010-2.435l-1.148-.944a1 1 0 01-.23-1.272l.653-1.131a1 1 0 011.217-.437l1.393.522a5.994 5.994 0 012.108-1.218l.244-1.466zM14.929 12a3 3 0 11-6 0 3 3 0 016 0z",clipRule:"evenodd"})}),{Fragment:B,jsx:g,jsxs:_}=window.ReactJSXRuntime,{useState:it}=window.wp.element,{BlockInspector:rt,BlockToolbar:at,Inserter:lt,store:dt}=window.wp.blockEditor,{useSelect:P,useDispatch:ct}=window.wp.data,{Button:ut,Popover:wt,Toolbar:pt,ToolbarGroup:A,ToolbarButton:gt}=window.wp.components,{__:mt}=window.wp.i18n,{store:L}=window.wp.editor,ht=({className:t})=>{const[e,n]=it(!1),{isSelected:o}=P(d=>{const{getSelectedBlockClientId:r}=d(dt);return{isSelected:r()!==null}}),{isInserterOpened:s}=P(d=>({isInserterOpened:d(L).isInserterOpened()}),[]),{setIsInserterOpened:a}=ct(L);function c(){n(!0)}function l(){n(!1)}const u=S("gutenberg-kit-editor-toolbar",t);return _(B,{children:[_(pt,{className:u,label:"Editor toolbar",variant:"unstyled",children:[g(A,{children:g(lt,{open:s,onToggle:a})}),o&&g(A,{children:g(gt,{title:mt("Open Settings"),icon:st,onClick:c})}),g(at,{hideDragHandle:!0})]}),e&&g(wt,{className:"block-settings-menu",variant:"unstyled",placement:"overlay",children:_(B,{children:[g("div",{className:"block-settings-menu__header",children:g(ut,{className:"block-settings-menu__close",icon:et,onClick:l})}),g(rt,{})]})})]})},{__dangerousOptInToUnstableAPIsOnlyForCoreModules:ft}=window.wp.privateApis,{lock:qe,unlock:f}=ft("I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.","@wordpress/editor"),bt=".gutenberg-kit-visual-editor__post-title-wrapper .wp-block-post-title{font-size:20px}.block-editor-default-block-appender__content{opacity:.62}",yt=".editor-visual-editor__post-title-wrapper>:where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:var(--wp--style--global--content-size);margin-left:auto!important;margin-right:auto!important}.editor-visual-editor__post-title-wrapper>.alignwide{max-width:1340px}.editor-visual-editor__post-title-wrapper>.alignfull{max-width:none}:root :where(.is-layout-flow)>:first-child{margin-block-start:0}:root :where(.is-layout-flow)>:last-child{margin-block-end:0}:root :where(.is-layout-flow)>*{margin-block-start:1.2rem;margin-block-end:0}:root :where(.is-layout-constrained)>:first-child{margin-block-start:0}:root :where(.is-layout-constrained)>:last-child{margin-block-end:0}:root :where(.is-layout-constrained)>*{margin-block-start:1.2rem;margin-block-end:0}",{store:St}=window.wp.editor,{useSelect:kt}=window.wp.data,{privateApis:Et}=window.wp.blockEditor,{store:vt}=window.wp.editPost,{useMemo:_t}=window.wp.element,{getLayoutStyles:Rt}=f(Et);function xt(){const{hasThemeStyleSupport:t,editorSettings:e}=kt(n=>({hasThemeStyleSupport:n(vt).isFeatureActive("themeStyles"),editorSettings:n(St).getEditorSettings()}),[]);return _t(()=>{const n=[...e?.defaultEditorStyles??[]];!e.disableLayoutStyles&&!t&&n.push({css:Rt({style:{},selector:"body",hasBlockGapSupport:!1,hasFallbackGapSupport:!0,fallbackGapValue:"0.5em"})}),t||n.push({css:bt});const o=t?e.styles??[]:n;return[{css:yt},...o]},[e.defaultEditorStyles,e.disableLayoutStyles,e.styles,t])}const{jsx:$t}=window.ReactJSXRuntime,{createBlock:Ct}=window.wp.blocks,{useDispatch:Bt,useSelect:Pt}=window.wp.data,{__:At}=window.wp.i18n,{store:T}=window.wp.blockEditor;function Lt(){const{insertBlock:t}=Bt(T),{blockCount:e}=Pt(o=>{const{getBlockCount:s}=o(T);return{blockCount:s()}}),n=()=>{const o=Ct("core/paragraph");t(o,e)};return $t("button",{"aria-label":At("Add paragraph block"),onClick:n,className:"gutenberg-kit-default-block-appender"})}const{Fragment:Tt,jsx:w,jsxs:R}=window.ReactJSXRuntime,{useRef:jt}=window.wp.element,{BlockList:Mt,privateApis:Dt,store:It}=window.wp.blockEditor,{Popover:Ut}=window.wp.components,{store:Nt,PostTitle:Ft}=window.wp.editor,{useSelect:Gt}=window.wp.data,{store:Ot}=window.wp.editPost,{ExperimentalBlockCanvas:Jt,LayoutStyle:b,useLayoutClasses:Xt,useLayoutStyles:Ht}=f(Dt),zt=`.is-root-container.alignwide { max-width: var(--wp--style--global--wide-size); margin-left: auto; margin-right: auto;} - .is-root-container.alignwide:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: var(--wp--style--global--wide-size);} - .is-root-container.alignfull { max-width: none; margin-left: auto; margin-right: auto;} - .is-root-container.alignfull:where(.is-layout-flow) > :not(.alignleft):not(.alignright) { max-width: none;}`;function Kt({hideTitle:t}){const e=jt(),{renderingMode:n,hasThemeStyleSupport:o,themeHasDisabledLayoutStyles:s,themeSupportsLayout:a,hasRootPaddingAwareAlignments:c}=Gt(E=>{const{getRenderingMode:H}=E(Nt),z=H(),{getSettings:K}=f(E(It)),v=K();return{renderingMode:z,hasThemeStyleSupport:E(Ot).isFeatureActive("themeStyles"),themeSupportsLayout:v.supportsLayout,themeHasDisabledLayoutStyles:v.disableLayoutStyles,hasRootPaddingAwareAlignments:v.__experimentalFeatures?.useRootPaddingAwareAlignments}},[]),l=xt(),u=S("gutenberg-kit-visual-editor",{"has-root-padding":!o||!c}),d=S("gutenberg-kit-visual-editor__post-title-wrapper","editor-visual-editor__post-title-wrapper",{"has-global-padding":o&&c}),r={align:"full",layout:{type:"constrained"}},{layout:i={},align:p=""}=r,m=Xt(r,"core/post-content"),h=Ht(r,"core/post-content",".block-editor-block-list__layout.is-root-container"),k=S(a&&m,p&&`align${p}`,{"is-layout-flow":!a,"has-global-padding":o&&c});return R("div",{className:u,children:[R(Jt,{shouldIframe:!1,height:"100%",styles:l,children:[a&&!s&&n==="post-only"&&R(Tt,{children:[w(b,{selector:".editor-visual-editor__post-title-wrapper",layout:i}),w(b,{selector:".block-editor-block-list__layout.is-root-container",layout:i}),p&&w(b,{css:zt}),h&&w(b,{layout:i,css:h})]}),!t&&w("div",{className:d,children:w(Ft,{ref:e})}),w(Mt,{className:k,layout:i}),w(Lt,{})]}),w(ht,{className:"gutenberg-kit-visual-editor__toolbar"}),w(Ut.Slot,{})]})}const{useEffect:Vt}=window.wp.element,{useSelect:Wt}=window.wp.data,{store:Zt}=window.wp.editor;function qt(){const{hasUndo:t,hasRedo:e}=Wt(n=>{const o=n(Zt);return{hasUndo:o.hasEditorUndo(),hasRedo:o.hasEditorRedo()}},[]);Vt(()=>{V(t,e)},[t,e])}const{useEffect:Qt,useCallback:Yt,useRef:j}=window.wp.element,{useDispatch:M,useSelect:te}=window.wp.data,{store:ee}=window.wp.coreData,{store:D}=window.wp.editor,{parse:oe,serialize:ne}=window.wp.blocks;window.editor=window.editor||{};function se(t,e){const{editEntityRecord:n}=M(ee),{undo:o,redo:s,switchEditorMode:a}=M(D),{getEditedPostAttribute:c,getEditedPostContent:l}=te(D),u=Yt(i=>{n("postType",t.type,t.id,i)},[n,t.id,t.type]),d=j(t.title.raw),r=j(null);r.current===null&&(r.current=ne(oe(t.content.raw||""))),Qt(()=>(window.editor.setContent=i=>{u({content:decodeURIComponent(i)})},window.editor.setTitle=i=>{u({title:decodeURIComponent(i)})},window.editor.getContent=(i=!1)=>(i&&I(e.current),l()),window.editor.getTitleAndContent=(i=!1)=>{i&&I(e.current);const p=c("title"),m=l(),h=p!==d.current||m!==r.current;return h&&(d.current=p,r.current=m),{title:p,content:m,changed:h}},window.editor.undo=()=>{o()},window.editor.redo=()=>{s()},window.editor.switchEditorMode=i=>{a(i)},()=>{delete window.editor.setContent,delete window.editor.setTitle,delete window.editor.getContent,delete window.editor.getTitleAndContent,delete window.editor.undo,delete window.editor.redo,delete window.editor.switchEditorMode}),[e,u,c,l,s,a,o])}function I(t){const e=t?.ownerDocument.activeElement;if(e&&e.contentEditable==="true"){const n=new Event("compositionend");e.dispatchEvent(n)}}const{useEffect:ie}=window.wp.element,{addAction:re,removeAction:ae}=window.wp.hooks;function le(){ie(()=>(re("editor.ErrorBoundary.errorLogged","GutenbergKit",t=>{W(t,{isHandled:!0,handledBy:"editor.ErrorBoundary.errorLogged"})}),()=>{ae("editor.ErrorBoundary.errorLogged","GutenbergKit")}),[])}const de=[{name:"post",baseURL:"/wp/v2/posts"},{name:"page",baseURL:"/wp/v2/pages"},{name:"attachment",baseURL:"/wp/v2/media"},{name:"wp_block",baseURL:"/wp/v2/blocks"}].map(t=>({kind:"postType",...t,transientEdits:{blocks:!0,selection:!0},mergedEdits:{meta:!0},rawAttributes:["title","excerpt","content"]})),{useEffect:ce}=window.wp.element,{useDispatch:U}=window.wp.data,{store:ue}=window.wp.coreData,{store:we}=window.wp.editor;function pe(t){const{addEntities:e,receiveEntityRecords:n}=U(ue),{setEditedPost:o,setupEditor:s}=U(we);ce(()=>{e(de),n("postType",t.type,t),s(t,{}),Z(),o(t.type,t.id)},[])}const{addFilter:ge,removeFilter:me}=window.wp.hooks,{useCallback:he,useEffect:X}=window.wp.element;function fe(){X(()=>(ge("editor.MediaUpload","GutenbergKit",()=>be),()=>{me("editor.MediaUpload","GutenbergKit")}),[])}function be({render:t,...e}){const{open:n}=ye(e);return t({open:n})}function ye({onSelect:t,...e}){return X(()=>(window.editor.setMediaUploadAttachment=o=>{t(e.multiple?o:o[0])},()=>{window.editor.setMediaUploadAttachment=()=>{}}),[t,e.multiple]),{open:he(()=>q(e),[e])}}const{useSelect:Se}=window.wp.data,{useMemo:ke}=window.wp.element,{store:N}=window.wp.coreData,{store:Ee,mediaUpload:ve,privateApis:_e}=window.wp.editor,{useBlockEditorSettings:Re}=f(_e);function xe(t){const{blockPatterns:e,editorSettings:n,hasUploadPermissions:o,reusableBlocks:s}=Se(l=>{const{getEntityRecord:u,getEntityRecords:d}=l(N),{getEditorSettings:r}=l(Ee),i=u("root","user",t.author);return{editorSettings:r(),blockPatterns:l(N).getBlockPatterns(),hasUploadPermissions:i?.capabilities?.upload_files??!0,reusableBlocks:d("postType","wp_block")}},[t.author]),a=Re(n,t.type,t.id,"visual");return ke(()=>({...a,hasFixedToolbar:!0,mediaUpload:o?ve:void 0,__experimentalReusableBlocks:s,__experimentalBlockPatterns:e}),[a,e,o,s])}const{jsx:F,jsxs:$e}=window.ReactJSXRuntime,{PostTitleRaw:Ce,PostTextEditor:Be}=window.wp.editor;function Pe({hideTitle:t}){return $e("div",{className:"gutenberg-kit-text-editor",children:[!t&&F(Ce,{}),F(Be,{})]})}const{jsx:x,jsxs:Ae}=window.ReactJSXRuntime,{useEntityBlockEditor:Le}=window.wp.coreData,{privateApis:Te}=window.wp.blockEditor,{useSelect:je}=window.wp.data,{store:Me}=window.wp.editor,{useRef:De}=window.wp.element,{ExperimentalBlockEditorProvider:Ie}=f(Te);function Ue({post:t,children:e,hideTitle:n}){const o=De(null);se(t,o),qt(),le(),pe(t),fe();const[s,a,c]=Le("postType",t.type,{id:t.id}),l=xe(t),{isReady:u,mode:d,isRichEditingEnabled:r}=je(i=>{const{__unstableIsEditorReady:p,getEditorSettings:m,getEditorMode:h}=i(Me),k=m();return{isReady:p(),mode:h(),isRichEditingEnabled:k.richEditingEnabled}},[]);return u?x("div",{className:"gutenberg-kit-editor",ref:o,children:Ae(Ie,{value:s,onInput:a,onChange:c,settings:l,useSubRegistry:!1,children:[d==="visual"&&r&&x(Kt,{hideTitle:n}),(d==="text"||!r)&&x(Pe,{autoFocus:!0,hideTitle:n}),e]})}):null}const{jsx:G}=window.ReactJSXRuntime,{Notice:Ne}=window.wp.components,{__:Fe}=window.wp.i18n,{useState:Ge,useEffect:O}=window.wp.element;function Oe({className:t}){const{notice:e,clearNotice:n}=Je(),o=[{label:"Retry",onClick:()=>window.location.href="remote.html",variant:"primary"},{label:"Dismiss",onClick:n,variant:"secondary"}];return e?G("div",{className:t,children:G(Ne,{actions:o,status:"warning",isDismissible:!1,children:e})}):null}function Je(){const[t,e]=Ge(null);return O(()=>{const o=new URL(window.location.href).searchParams.get("error");let s=null;switch(o){case Xe:s=Fe("Oops! We couldn't load your site's editor and plugins. Don't worry, you can use the default editor for now.");break;default:s=null}e(s)},[]),O(()=>{if(t){const n=setTimeout(()=>{e(null)},2e4);return()=>clearTimeout(n)}},[t]),{notice:t,clearNotice:()=>e(null)}}const Xe="remote_editor_load_error",{jsx:y,jsxs:He}=window.ReactJSXRuntime,{EditorSnackbars:ze,ErrorBoundary:Ke,AutosaveMonitor:Ve}=window.wp.editor;function Qe(t){return He(Ke,{canCopyContent:!0,children:[y(Ve,{autosave:Q}),y(Ue,{...t,children:y(ze,{})}),y(Oe,{className:"gutenberg-kit-layout__load-notice"})]})}export{Qe as default}; diff --git a/ios/Sources/GutenbergKit/Gutenberg/assets/remote-CSkotQ-G.js b/ios/Sources/GutenbergKit/Gutenberg/assets/remote-CSkotQ-G.js deleted file mode 100644 index 003f325a..00000000 --- a/ios/Sources/GutenbergKit/Gutenberg/assets/remote-CSkotQ-G.js +++ /dev/null @@ -1,3 +0,0 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-D84i1b9O.js","./index-BBJZD2BL.css"])))=>i.map(i=>d[i]); -import we from"@wordpress/block-editor/build-style/default-editor-styles.css?inline";(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))n(s);new MutationObserver(s=>{for(const i of s)if(i.type==="childList")for(const a of i.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function r(s){const i={};return s.integrity&&(i.integrity=s.integrity),s.referrerPolicy&&(i.referrerPolicy=s.referrerPolicy),s.crossOrigin==="use-credentials"?i.credentials="include":s.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function n(s){if(s.ep)return;s.ep=!0;const i=r(s);fetch(s.href,i)}})();const ge="modulepreload",me=function(e,t){return new URL(e,t).href},q={},ye=function(t,r,n){let s=Promise.resolve();if(r&&r.length>0){const a=document.getElementsByTagName("link"),c=document.querySelector("meta[property=csp-nonce]"),u=c?.nonce||c?.getAttribute("nonce");s=Promise.allSettled(r.map(l=>{if(l=me(l,n),l in q)return;q[l]=!0;const w=l.endsWith(".css"),o=w?'[rel="stylesheet"]':"";if(!!n)for(let _=a.length-1;_>=0;_--){const f=a[_];if(f.href===l&&(!w||f.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${l}"]${o}`))return;const h=document.createElement("link");if(h.rel=w?"stylesheet":ge,w||(h.as="script"),h.crossOrigin="",h.href=l,u&&h.setAttribute("nonce",u),document.head.appendChild(h),w)return new Promise((_,f)=>{h.addEventListener("load",_),h.addEventListener("error",()=>f(new Error(`Unable to preload CSS for ${l}`)))})}))}function i(a){const c=new Event("vite:preloadError",{cancelable:!0});if(c.payload=a,window.dispatchEvent(c),!c.defaultPrevented)throw a}return s.then(a=>{for(const c of a||[])c.status==="rejected"&&i(c.reason);return t().catch(i)})};var H={},K;function _e(){return K||(K=1,function(e){(function(){var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function r(c){return s(a(c),arguments)}function n(c,u){return r.apply(null,[c].concat(u||[]))}function s(c,u){var l=1,w=c.length,o,m="",h,_,f,S,A,k,P,d;for(h=0;h<w;h++)if(typeof c[h]=="string")m+=c[h];else if(typeof c[h]=="object"){if(f=c[h],f.keys)for(o=u[l],_=0;_<f.keys.length;_++){if(o==null)throw new Error(r('[sprintf] Cannot access property "%s" of undefined value "%s"',f.keys[_],f.keys[_-1]));o=o[f.keys[_]]}else f.param_no?o=u[f.param_no]:o=u[l++];if(t.not_type.test(f.type)&&t.not_primitive.test(f.type)&&o instanceof Function&&(o=o()),t.numeric_arg.test(f.type)&&typeof o!="number"&&isNaN(o))throw new TypeError(r("[sprintf] expecting number but found %T",o));switch(t.number.test(f.type)&&(P=o>=0),f.type){case"b":o=parseInt(o,10).toString(2);break;case"c":o=String.fromCharCode(parseInt(o,10));break;case"d":case"i":o=parseInt(o,10);break;case"j":o=JSON.stringify(o,null,f.width?parseInt(f.width):0);break;case"e":o=f.precision?parseFloat(o).toExponential(f.precision):parseFloat(o).toExponential();break;case"f":o=f.precision?parseFloat(o).toFixed(f.precision):parseFloat(o);break;case"g":o=f.precision?String(Number(o.toPrecision(f.precision))):parseFloat(o);break;case"o":o=(parseInt(o,10)>>>0).toString(8);break;case"s":o=String(o),o=f.precision?o.substring(0,f.precision):o;break;case"t":o=String(!!o),o=f.precision?o.substring(0,f.precision):o;break;case"T":o=Object.prototype.toString.call(o).slice(8,-1).toLowerCase(),o=f.precision?o.substring(0,f.precision):o;break;case"u":o=parseInt(o,10)>>>0;break;case"v":o=o.valueOf(),o=f.precision?o.substring(0,f.precision):o;break;case"x":o=(parseInt(o,10)>>>0).toString(16);break;case"X":o=(parseInt(o,10)>>>0).toString(16).toUpperCase();break}t.json.test(f.type)?m+=o:(t.number.test(f.type)&&(!P||f.sign)?(d=P?"+":"-",o=o.toString().replace(t.sign,"")):d="",A=f.pad_char?f.pad_char==="0"?"0":f.pad_char.charAt(1):" ",k=f.width-(d+o).length,S=f.width&&k>0?A.repeat(k):"",m+=f.align?d+o+S:A==="0"?d+S+o:S+d+o)}return m}var i=Object.create(null);function a(c){if(i[c])return i[c];for(var u=c,l,w=[],o=0;u;){if((l=t.text.exec(u))!==null)w.push(l[0]);else if((l=t.modulo.exec(u))!==null)w.push("%");else if((l=t.placeholder.exec(u))!==null){if(l[2]){o|=1;var m=[],h=l[2],_=[];if((_=t.key.exec(h))!==null)for(m.push(_[1]);(h=h.substring(_[0].length))!=="";)if((_=t.key_access.exec(h))!==null)m.push(_[1]);else if((_=t.index_access.exec(h))!==null)m.push(_[1]);else throw new SyntaxError("[sprintf] failed to parse named argument key");else throw new SyntaxError("[sprintf] failed to parse named argument key");l[2]=m}else o|=2;if(o===3)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");w.push({placeholder:l[0],param_no:l[1],keys:l[2],sign:l[3],pad_char:l[4],align:l[5],width:l[6],precision:l[7],type:l[8]})}else throw new SyntaxError("[sprintf] unexpected placeholder");u=u.substring(l[0].length)}return i[c]=w}e.sprintf=r,e.vsprintf=n,typeof window<"u"&&(window.sprintf=r,window.vsprintf=n)})()}(H)),H}_e();var I,se,O,ae;I={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1};se=["(","?"];O={")":["("],":":["?","?:"]};ae=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;function be(e){for(var t=[],r=[],n,s,i,a;n=e.match(ae);){for(s=n[0],i=e.substr(0,n.index).trim(),i&&t.push(i);a=r.pop();){if(O[s]){if(O[s][0]===a){s=O[s][1]||s;break}}else if(se.indexOf(a)>=0||I[a]<I[s]){r.push(a);break}t.push(a)}O[s]||r.push(s),e=e.substr(n.index+s.length)}return e=e.trim(),e&&t.push(e),t.concat(r.reverse())}var ve={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,r){if(e)throw t;return r}};function Ee(e,t){var r=[],n,s,i,a,c,u;for(n=0;n<e.length;n++){if(c=e[n],a=ve[c],a){for(s=a.length,i=Array(s);s--;)i[s]=r.pop();try{u=a.apply(null,i)}catch(l){return l}}else t.hasOwnProperty(c)?u=t[c]:u=+c;r.push(u)}return r[0]}function xe(e){var t=be(e);return function(r){return Ee(t,r)}}function Se(e){var t=xe(e);return function(r){return+t({n:r})}}var B={contextDelimiter:"",onMissingKey:null};function Ae(e){var t,r,n;for(t=e.split(";"),r=0;r<t.length;r++)if(n=t[r].trim(),n.indexOf("plural=")===0)return n.substr(7)}function N(e,t){var r;this.data=e,this.pluralForms={},this.options={};for(r in B)this.options[r]=t!==void 0&&r in t?t[r]:B[r]}N.prototype.getPluralForm=function(e,t){var r=this.pluralForms[e],n,s,i;return r||(n=this.data[e][""],i=n["Plural-Forms"]||n["plural-forms"]||n.plural_forms,typeof i!="function"&&(s=Ae(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),i=Se(s)),r=this.pluralForms[e]=i),r(t)};N.prototype.dcnpgettext=function(e,t,r,n,s){var i,a,c;return s===void 0?i=0:i=this.getPluralForm(e,s),a=r,t&&(a=t+this.options.contextDelimiter+r),c=this.data[e][a],c&&c[i]?c[i]:(this.options.onMissingKey&&this.options.onMissingKey(r,e),i===0?r:n)};const G={"":{plural_forms(e){return e===1?0:1}}},ke=/^i18n\.(n?gettext|has_translation)(_|$)/,Pe=(e,t,r)=>{const n=new N({}),s=new Set,i=()=>{s.forEach(d=>d())},a=d=>(s.add(d),()=>s.delete(d)),c=(d="default")=>n.data[d],u=(d,p="default")=>{n.data[p]={...n.data[p],...d},n.data[p][""]={...G[""],...n.data[p]?.[""]},delete n.pluralForms[p]},l=(d,p)=>{u(d,p),i()},w=(d,p="default")=>{n.data[p]={...n.data[p],...d,"":{...G[""],...n.data[p]?.[""],...d?.[""]}},delete n.pluralForms[p],i()},o=(d,p)=>{n.data={},n.pluralForms={},l(d,p)},m=(d="default",p,g,v,E)=>(n.data[d]||u(void 0,d),n.dcnpgettext(d,p,g,v,E)),h=(d="default")=>d,_=(d,p)=>{let g=m(p,void 0,d);return r?(g=r.applyFilters("i18n.gettext",g,d,p),r.applyFilters("i18n.gettext_"+h(p),g,d,p)):g},f=(d,p,g)=>{let v=m(g,p,d);return r?(v=r.applyFilters("i18n.gettext_with_context",v,d,p,g),r.applyFilters("i18n.gettext_with_context_"+h(g),v,d,p,g)):v},S=(d,p,g,v)=>{let E=m(v,void 0,d,p,g);return r?(E=r.applyFilters("i18n.ngettext",E,d,p,g,v),r.applyFilters("i18n.ngettext_"+h(v),E,d,p,g,v)):E},A=(d,p,g,v,E)=>{let T=m(E,v,d,p,g);return r?(T=r.applyFilters("i18n.ngettext_with_context",T,d,p,g,v,E),r.applyFilters("i18n.ngettext_with_context_"+h(E),T,d,p,g,v,E)):T},k=()=>f("ltr","text direction")==="rtl",P=(d,p,g)=>{const v=p?p+""+d:d;let E=!!n.data?.[g??"default"]?.[v];return r&&(E=r.applyFilters("i18n.has_translation",E,d,p,g),E=r.applyFilters("i18n.has_translation_"+h(g),E,d,p,g)),E};if(r){const d=p=>{ke.test(p)&&i()};r.addAction("hookAdded","core/i18n",d),r.addAction("hookRemoved","core/i18n",d)}return{getLocaleData:c,setLocaleData:l,addLocaleData:w,resetLocaleData:o,subscribe:a,__:_,_x:f,_n:S,_nx:A,isRTL:k,hasTranslation:P}};function oe(e){return typeof e!="string"||e===""?(console.error("The namespace must be a non-empty string."),!1):/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)?!0:(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}function $(e){return typeof e!="string"||e===""?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)?!0:(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}function J(e,t){return function(n,s,i,a=10){const c=e[t];if(!$(n)||!oe(s))return;if(typeof i!="function"){console.error("The hook callback must be a function.");return}if(typeof a!="number"){console.error("If specified, the hook priority must be a number.");return}const u={callback:i,priority:a,namespace:s};if(c[n]){const l=c[n].handlers;let w;for(w=l.length;w>0&&!(a>=l[w-1].priority);w--);w===l.length?l[w]=u:l.splice(w,0,u),c.__current.forEach(o=>{o.name===n&&o.currentIndex>=w&&o.currentIndex++})}else c[n]={handlers:[u],runs:0};n!=="hookAdded"&&e.doAction("hookAdded",n,s,i,a)}}function M(e,t,r=!1){return function(s,i){const a=e[t];if(!$(s)||!r&&!oe(i))return;if(!a[s])return 0;let c=0;if(r)c=a[s].handlers.length,a[s]={runs:a[s].runs,handlers:[]};else{const u=a[s].handlers;for(let l=u.length-1;l>=0;l--)u[l].namespace===i&&(u.splice(l,1),c++,a.__current.forEach(w=>{w.name===s&&w.currentIndex>=l&&w.currentIndex--}))}return s!=="hookRemoved"&&e.doAction("hookRemoved",s,i),c}}function Q(e,t){return function(n,s){const i=e[t];return typeof s<"u"?n in i&&i[n].handlers.some(a=>a.namespace===s):n in i}}function D(e,t,r,n){return function(i,...a){const c=e[t];c[i]||(c[i]={handlers:[],runs:0}),c[i].runs++;const u=c[i].handlers;if(!u||!u.length)return r?a[0]:void 0;const l={name:i,currentIndex:0};async function w(){try{c.__current.add(l);let m=r?a[0]:void 0;for(;l.currentIndex<u.length;)m=await u[l.currentIndex].callback.apply(null,a),r&&(a[0]=m),l.currentIndex++;return r?m:void 0}finally{c.__current.delete(l)}}function o(){try{c.__current.add(l);let m=r?a[0]:void 0;for(;l.currentIndex<u.length;)m=u[l.currentIndex].callback.apply(null,a),r&&(a[0]=m),l.currentIndex++;return r?m:void 0}finally{c.__current.delete(l)}}return(n?w:o)()}}function X(e,t){return function(){var n;const s=e[t];return(n=Array.from(s.__current).at(-1)?.name)!==null&&n!==void 0?n:null}}function V(e,t){return function(n){const s=e[t];return typeof n>"u"?s.__current.size>0:Array.from(s.__current).some(i=>i.name===n)}}function Z(e,t){return function(n){const s=e[t];if($(n))return s[n]&&s[n].runs?s[n].runs:0}}class Oe{constructor(){this.actions=Object.create(null),this.actions.__current=new Set,this.filters=Object.create(null),this.filters.__current=new Set,this.addAction=J(this,"actions"),this.addFilter=J(this,"filters"),this.removeAction=M(this,"actions"),this.removeFilter=M(this,"filters"),this.hasAction=Q(this,"actions"),this.hasFilter=Q(this,"filters"),this.removeAllActions=M(this,"actions",!0),this.removeAllFilters=M(this,"filters",!0),this.doAction=D(this,"actions",!1,!1),this.doActionAsync=D(this,"actions",!1,!0),this.applyFilters=D(this,"filters",!0,!1),this.applyFiltersAsync=D(this,"filters",!0,!0),this.currentAction=X(this,"actions"),this.currentFilter=X(this,"filters"),this.doingAction=V(this,"actions"),this.doingFilter=V(this,"filters"),this.didAction=Z(this,"actions"),this.didFilter=Z(this,"filters")}}function Re(){return new Oe}const Te=Re(),b=Pe(void 0,void 0,Te);b.getLocaleData.bind(b);b.setLocaleData.bind(b);b.resetLocaleData.bind(b);b.subscribe.bind(b);const F=b.__.bind(b);b._x.bind(b);b._n.bind(b);b._nx.bind(b);b.isRTL.bind(b);b.hasTranslation.bind(b);function Me(e){const t=(r,n)=>{const{headers:s={}}=r;for(const i in s)if(i.toLowerCase()==="x-wp-nonce"&&s[i]===t.nonce)return n(r);return n({...r,headers:{...s,"X-WP-Nonce":t.nonce}})};return t.nonce=e,t}const ce=(e,t)=>{let r=e.path,n,s;return typeof e.namespace=="string"&&typeof e.endpoint=="string"&&(n=e.namespace.replace(/^\/|\/$/g,""),s=e.endpoint.replace(/^\//,""),s?r=n+"/"+s:r=n),delete e.namespace,delete e.endpoint,t({...e,path:r})},De=e=>(t,r)=>ce(t,n=>{let s=n.url,i=n.path,a;return typeof i=="string"&&(a=e,e.indexOf("?")!==-1&&(i=i.replace("?","&")),i=i.replace(/^\//,""),typeof a=="string"&&a.indexOf("?")!==-1&&(i=i.replace("?","&")),s=a+i),r({...n,url:s})});function Le(e){let t;try{t=new URL(e,"http://example.com").search.substring(1)}catch{}if(t)return t}function le(e){let t="";const r=Object.entries(e);let n;for(;n=r.shift();){let[s,i]=n;if(Array.isArray(i)||i&&i.constructor===Object){const c=Object.entries(i).reverse();for(const[u,l]of c)r.unshift([`${s}[${u}]`,l])}else i!==void 0&&(i===null&&(i=""),t+="&"+[s,i].map(encodeURIComponent).join("="))}return t.substr(1)}function Fe(e){try{return decodeURIComponent(e)}catch{return e}}function Ce(e,t,r){const n=t.length,s=n-1;for(let i=0;i<n;i++){let a=t[i];!a&&Array.isArray(e)&&(a=e.length.toString()),a=["__proto__","constructor","prototype"].includes(a)?a.toUpperCase():a;const c=!isNaN(Number(t[i+1]));e[a]=i===s?r:e[a]||(c?[]:{}),Array.isArray(e[a])&&!c&&(e[a]={...e[a]}),e=e[a]}}function C(e){return(Le(e)||"").replace(/\+/g,"%20").split("&").reduce((t,r)=>{const[n,s=""]=r.split("=").filter(Boolean).map(Fe);if(n){const i=n.replace(/\]/g,"").split("[");Ce(t,i,s)}return t},Object.create(null))}function x(e="",t){if(!t||!Object.keys(t).length)return e;let r=e;const n=e.indexOf("?");return n!==-1&&(t=Object.assign(C(e),t),r=r.substr(0,n)),r+"?"+le(t)}function j(e,t){return C(e)[t]}function W(e,t){return j(e,t)!==void 0}function Y(e,...t){const r=e.indexOf("?");if(r===-1)return e;const n=C(e),s=e.substr(0,r);t.forEach(a=>delete n[a]);const i=le(n);return i?s+"?"+i:s}function ee(e){const t=e.split("?"),r=t[1],n=t[0];return r?n+"?"+r.split("&").map(s=>s.split("=")).map(s=>s.map(decodeURIComponent)).sort((s,i)=>s[0].localeCompare(i[0])).map(s=>s.map(encodeURIComponent)).map(s=>s.join("=")).join("&"):n}function He(e){const t=Object.fromEntries(Object.entries(e).map(([r,n])=>[ee(r),n]));return(r,n)=>{const{parse:s=!0}=r;let i=r.path;if(!i&&r.url){const{rest_route:u,...l}=C(r.url);typeof u=="string"&&(i=x(u,l))}if(typeof i!="string")return n(r);const a=r.method||"GET",c=ee(i);if(a==="GET"&&t[c]){const u=t[c];return delete t[c],te(u,!!s)}else if(a==="OPTIONS"&&t[a]&&t[a][c]){const u=t[a][c];return delete t[a][c],te(u,!!s)}return n(r)}}function te(e,t){return Promise.resolve(t?e.body:new window.Response(JSON.stringify(e.body),{status:200,statusText:"OK",headers:e.headers}))}const Ie=({path:e,url:t,...r},n)=>({...r,url:t&&x(t,n),path:e&&x(e,n)}),re=e=>e.json?e.json():Promise.reject(e),je=e=>{if(!e)return{};const t=e.match(/<([^>]+)>; rel="next"/);return t?{next:t[1]}:{}},ne=e=>{const{next:t}=je(e.headers.get("link"));return t},Ue=e=>{const t=!!e.path&&e.path.indexOf("per_page=-1")!==-1,r=!!e.url&&e.url.indexOf("per_page=-1")!==-1;return t||r},ue=async(e,t)=>{if(e.parse===!1||!Ue(e))return t(e);const r=await y({...Ie(e,{per_page:100}),parse:!1}),n=await re(r);if(!Array.isArray(n))return n;let s=ne(r);if(!s)return n;let i=[].concat(n);for(;s;){const a=await y({...e,path:void 0,url:s,parse:!1}),c=await re(a);i=i.concat(c),s=ne(a)}return i},Ne=new Set(["PATCH","PUT","DELETE"]),$e="GET",ze=(e,t)=>{const{method:r=$e}=e;return Ne.has(r.toUpperCase())&&(e={...e,headers:{...e.headers,"X-HTTP-Method-Override":r,"Content-Type":"application/json"},method:"POST"}),t(e)},qe=(e,t)=>(typeof e.url=="string"&&!W(e.url,"_locale")&&(e.url=x(e.url,{_locale:"user"})),typeof e.path=="string"&&!W(e.path,"_locale")&&(e.path=x(e.path,{_locale:"user"})),t(e)),Ke=(e,t=!0)=>t?e.status===204?null:e.json?e.json():Promise.reject(e):e,Be=e=>{const t={code:"invalid_json",message:F("The response is not a valid JSON response.")};if(!e||!e.json)throw t;return e.json().catch(()=>{throw t})},de=(e,t=!0)=>Promise.resolve(Ke(e,t)).catch(r=>z(r,t));function z(e,t=!0){if(!t)throw e;return Be(e).then(r=>{const n={code:"unknown_error",message:F("An unknown error occurred.")};throw r||n})}function Ge(e){const t=!!e.method&&e.method==="POST";return(!!e.path&&e.path.indexOf("/wp/v2/media")!==-1||!!e.url&&e.url.indexOf("/wp/v2/media")!==-1)&&t}const Je=(e,t)=>{if(!Ge(e))return t(e);let r=0;const n=5,s=i=>(r++,t({path:`/wp/v2/media/${i}/post-process`,method:"POST",data:{action:"create-image-subsizes"},parse:!1}).catch(()=>r<n?s(i):(t({path:`/wp/v2/media/${i}?force=true`,method:"DELETE"}),Promise.reject())));return t({...e,parse:!1}).catch(i=>{if(!i.headers)return Promise.reject(i);const a=i.headers.get("x-wp-upload-attachment-id");return i.status>=500&&i.status<600&&a?s(a).catch(()=>e.parse!==!1?Promise.reject({code:"post_process",message:F("Media upload failed. If this is a photo or a large image, please scale it down and try again.")}):Promise.reject(i)):z(i,e.parse)}).then(i=>de(i,e.parse))},Qe=e=>(t,r)=>{if(typeof t.url=="string"){const n=j(t.url,"wp_theme_preview");n===void 0?t.url=x(t.url,{wp_theme_preview:e}):n===""&&(t.url=Y(t.url,"wp_theme_preview"))}if(typeof t.path=="string"){const n=j(t.path,"wp_theme_preview");n===void 0?t.path=x(t.path,{wp_theme_preview:e}):n===""&&(t.path=Y(t.path,"wp_theme_preview"))}return r(t)},Xe={Accept:"application/json, */*;q=0.1"},Ve={credentials:"include"},fe=[qe,ce,ze,ue];function Ze(e){fe.unshift(e)}const pe=e=>{if(e.status>=200&&e.status<300)return e;throw e},We=e=>{const{url:t,path:r,data:n,parse:s=!0,...i}=e;let{body:a,headers:c}=e;return c={...Xe,...c},n&&(a=JSON.stringify(n),c["Content-Type"]="application/json"),window.fetch(t||r||window.location.href,{...Ve,...i,body:a,headers:c}).then(l=>Promise.resolve(l).then(pe).catch(w=>z(w,s)).then(w=>de(w,s)),l=>{throw l&&l.name==="AbortError"?l:{code:"fetch_error",message:F("You are probably offline.")}})};let he=We;function Ye(e){he=e}function y(e){return fe.reduceRight((r,n)=>s=>n(s,r),he)(e).catch(r=>r.code!=="rest_cookie_invalid_nonce"?Promise.reject(r):window.fetch(y.nonceEndpoint).then(pe).then(n=>n.text()).then(n=>(y.nonceMiddleware.nonce=n,y(e))))}y.use=Ze;y.setFetchHandler=Ye;y.createNonceMiddleware=Me;y.createPreloadingMiddleware=He;y.createRootURLMiddleware=De;y.fetchAllMiddleware=ue;y.mediaUploadMiddleware=Je;y.createThemePreviewMiddleware=Qe;const et="0.1.0",L="?";function U(e,t,r,n){const s={filename:e,function:t==="<anonymous>"?L:t,in_app:!0};return r!==void 0&&(s.lineno=r),n!==void 0&&(s.colno=n),s}const tt=/^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i,rt=/^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,nt=/\((\S*)(?::(\d+))(?::(\d+))\)/,it=e=>{const t=tt.exec(e);if(t){const[,n,s,i]=t;return U(n,L,+s,+i)}const r=rt.exec(e);if(r){if(r[2]&&r[2].indexOf("eval")===0){const a=nt.exec(r[2]);a&&(r[2]=a[1],r[3]=a[2],r[4]=a[3])}const s=r[1]||L,i=r[2];return U(i,s,r[3]?+r[3]:void 0,r[4]?+r[4]:void 0)}},st=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i,at=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,ot=e=>{const t=st.exec(e);if(t){if(t[3]&&t[3].indexOf(" > eval")>-1){const i=at.exec(t[3]);i&&(t[1]=t[1]||"eval",t[3]=i[1],t[4]=i[2],t[5]="")}const n=t[3],s=t[1]||L;return U(n,s,t[4]?+t[4]:void 0,t[5]?+t[5]:void 0)}},ie=50,ct=[it,ot],lt=e=>{const t=e.stacktrace||e.stack||"",r=[],n=t.split(` -`);for(let i=0;i<n.length;i++){const a=n[i];if(!(a.length>1024)&&!a.match(/\S*Error: /)){for(const c of ct){const u=c(a);if(u){r.push(u);break}}if(r.length>=ie)break}}const s=Array.from(r).reverse();return s.slice(0,ie).map(i=>({...i,filename:i.filename||s[s.length-1].filename}))},ut=e=>{const t=e?.message;return t?typeof t.error?.message=="string"?t.error.message:t:"No error message"},dt=e=>{const t={type:e?.name,message:ut(e)},r=lt(e);return r.length&&(t.stacktrace=r),t.type===void 0&&t.message===""&&(t.message="Unknown error"),t},ft=(e,{context:t,tags:r}={})=>({...dt(e),context:{...t},tags:{...r,gutenberg_kit_version:et}});function kt(){window.editorDelegate&&window.editorDelegate.onEditorLoaded(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorLoaded",body:{}})}function Pt(){window.editorDelegate&&window.editorDelegate.onEditorContentChanged(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorContentChanged"})}function Ot(e,t){window.editorDelegate&&window.editorDelegate.onEditorHistoryChanged(e,t),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorHistoryChanged",body:{hasUndo:e,hasRedo:t}})}function Rt(e){window.editorDelegate&&window.editorDelegate.openMediaLibrary(JSON.stringify(e)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"openMediaLibrary",body:e})}function R(){if(window.GBKit)return window.GBKit;if(window.editorDelegate)try{return JSON.parse(window.editorDelegate.getEditorConfiguration())}catch{return{}}try{return JSON.parse(localStorage.getItem("GBKit"))||{}}catch{return{}}}function pt(){const{post:e}=R();return e?{id:e.id,title:{raw:decodeURIComponent(e.title)},content:{raw:decodeURIComponent(e.content)},type:e.type||"post"}:{type:"post",status:"auto-draft",id:-1}}function Tt(e,{context:t,tags:r,isHandled:n,handledBy:s}={context:{},tags:{},isHandled:!1,handledBy:"Unknown"}){const i={...ft(e,{context:t,tags:r}),isHandled:n,handledBy:s};window.editorDelegate&&window.editorDelegate.onEditorExceptionLogged(JSON.stringify(i)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorExceptionLogged",body:i})}function ht(){const{siteApiRoot:e="",authHeader:t}=R();y.use(y.createRootURLMiddleware(e)),y.use(wt),y.use(gt),y.use(mt(t)),y.use(yt),y.use(_t),y.use(y.createPreloadingMiddleware({"/wp/v2/types?context=view":{body:{post:{description:"",hierarchical:!1,has_archive:!1,name:"Posts",slug:"post",taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}},page:{description:"",hierarchical:!0,has_archive:!1,name:"Pages",slug:"page",taxonomies:[],rest_base:"pages",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}}}},"/wp/v2/types/post?context=edit":{body:{name:"Posts",slug:"post",supports:{title:!0,editor:!0,author:!0,thumbnail:!0,excerpt:!0,trackbacks:!0,"custom-fields":!0,comments:!0,revisions:!0,"post-formats":!0,autosave:!0},taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1}}}))}function wt(e,t){return e.mode="cors",delete e.headers["x-wp-api-fetch-from-editor"],t(e)}function gt(e,t){const{siteApiNamespace:r}=R();return e.path&&r&&!e.path.includes(r)&&(e.path=e.path.replace(/^(?<apiPath>\/?(?:[\w.-]+\/){2})/,`$<apiPath>${r}/`)),t(e)}function mt(e){return(t,r)=>(t.headers=t.headers||{},e&&(t.headers.Authorization=e),r(t))}function yt(e,t){return[/^\/wp\/v2\/posts\/-?\d+/,/^\/wp\/v2\/pages\/-?\d+/].some(s=>s.test(e.path))?Promise.resolve([]):t(e)}function _t(e,t){return e.path&&e.path.startsWith("/wp/v2/media")&&e.method==="POST"&&e.body instanceof FormData&&e.body.get("post")==="-1"&&e.body.delete("post"),t(e)}window.GBKit=R();window.wp=window.wp||{};window.wp.apiFetch=y;ht();bt();async function bt(){try{const{themeStyles:e,hideTitle:t,siteURL:r}=R(),{styles:n,scripts:s}=await y({url:`${r}/wp-json/__experimental/wp-block-editor/v1/editor-assets`});await vt([...n,...s].join(""));const{dispatch:i}=window.wp.data,{store:a}=window.wp.editor,{store:c}=window.wp.preferences;y({path:"/wp-block-editor/v1/settings"}).then(h=>{i(a).updateEditorSettings(h)}).catch(()=>{const h={defaultEditorStyles:[{css:we}]};i(a).updateEditorSettings(h)}),i(c).setDefaults("core/edit-post",{themeStyles:e});const u=pt(),{default:l}=await ye(async()=>{const{default:h}=await import("./index-D84i1b9O.js");return{default:h}},__vite__mapDeps([0,1]),import.meta.url),{createRoot:w,createElement:o,StrictMode:m}=window.wp.element;w(document.getElementById("root")).render(o(m,null,o(l,{post:u,hideTitle:t})))}catch{window.location.href="index.html?error=remote_editor_load_error"}}async function vt(e){const t=new window.DOMParser().parseFromString(e,"text/html"),r=Array.from(t.querySelectorAll('link[rel="stylesheet"],script')).filter(n=>n.id&&!xt.test(n.src));for(const n of r)await St(n)}const Et=["api-fetch"],xt=new RegExp(Et.flatMap(e=>[`wp-content/plugins/gutenberg/build/${e.replace(/\\/g,"\\\\").replace(/\//g,"\\/")}\\b`,`wp-includes/js/dist/${e.replace(/\\/g,"\\\\").replace(/\//g,"\\/")}\\b`]).join("|"));function St(e){return new Promise(t=>{const r=document.createElement(e.nodeName);["id","rel","src","href","type"].forEach(n=>{e[n]&&(r[n]=e[n])}),e.innerHTML&&r.appendChild(document.createTextNode(e.innerHTML)),r.onload=()=>t(!0),r.onerror=()=>{t(!1)},document.body.appendChild(r),(r.nodeName.toLowerCase()==="link"||r.nodeName.toLowerCase()==="script"&&!r.src)&&t()})}export{Rt as a,Pt as b,kt as e,Tt as l,Ot as o}; diff --git a/ios/Sources/GutenbergKit/Gutenberg/assets/remote-DPWJk5ym.js b/ios/Sources/GutenbergKit/Gutenberg/assets/remote-DPWJk5ym.js new file mode 100644 index 00000000..7e00c3d6 --- /dev/null +++ b/ios/Sources/GutenbergKit/Gutenberg/assets/remote-DPWJk5ym.js @@ -0,0 +1,3 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-BzYJLdTZ.js","./index-BBJZD2BL.css"])))=>i.map(i=>d[i]); +import we from"@wordpress/block-editor/build-style/default-editor-styles.css?inline";(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))n(i);new MutationObserver(i=>{for(const s of i)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function r(i){const s={};return i.integrity&&(s.integrity=i.integrity),i.referrerPolicy&&(s.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?s.credentials="include":i.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function n(i){if(i.ep)return;i.ep=!0;const s=r(i);fetch(i.href,s)}})();const ge="modulepreload",me=function(e,t){return new URL(e,t).href},q={},ye=function(t,r,n){let i=Promise.resolve();if(r&&r.length>0){const a=document.getElementsByTagName("link"),c=document.querySelector("meta[property=csp-nonce]"),u=c?.nonce||c?.getAttribute("nonce");i=Promise.allSettled(r.map(l=>{if(l=me(l,n),l in q)return;q[l]=!0;const h=l.endsWith(".css"),o=h?'[rel="stylesheet"]':"";if(!!n)for(let _=a.length-1;_>=0;_--){const d=a[_];if(d.href===l&&(!h||d.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${l}"]${o}`))return;const w=document.createElement("link");if(w.rel=h?"stylesheet":ge,h||(w.as="script"),w.crossOrigin="",w.href=l,u&&w.setAttribute("nonce",u),document.head.appendChild(w),h)return new Promise((_,d)=>{w.addEventListener("load",_),w.addEventListener("error",()=>d(new Error(`Unable to preload CSS for ${l}`)))})}))}function s(a){const c=new Event("vite:preloadError",{cancelable:!0});if(c.payload=a,window.dispatchEvent(c),!c.defaultPrevented)throw a}return i.then(a=>{for(const c of a||[])c.status==="rejected"&&s(c.reason);return t().catch(s)})};var H={},K;function _e(){return K||(K=1,function(e){(function(){var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function r(c){return i(a(c),arguments)}function n(c,u){return r.apply(null,[c].concat(u||[]))}function i(c,u){var l=1,h=c.length,o,g="",w,_,d,S,A,k,P,f;for(w=0;w<h;w++)if(typeof c[w]=="string")g+=c[w];else if(typeof c[w]=="object"){if(d=c[w],d.keys)for(o=u[l],_=0;_<d.keys.length;_++){if(o==null)throw new Error(r('[sprintf] Cannot access property "%s" of undefined value "%s"',d.keys[_],d.keys[_-1]));o=o[d.keys[_]]}else d.param_no?o=u[d.param_no]:o=u[l++];if(t.not_type.test(d.type)&&t.not_primitive.test(d.type)&&o instanceof Function&&(o=o()),t.numeric_arg.test(d.type)&&typeof o!="number"&&isNaN(o))throw new TypeError(r("[sprintf] expecting number but found %T",o));switch(t.number.test(d.type)&&(P=o>=0),d.type){case"b":o=parseInt(o,10).toString(2);break;case"c":o=String.fromCharCode(parseInt(o,10));break;case"d":case"i":o=parseInt(o,10);break;case"j":o=JSON.stringify(o,null,d.width?parseInt(d.width):0);break;case"e":o=d.precision?parseFloat(o).toExponential(d.precision):parseFloat(o).toExponential();break;case"f":o=d.precision?parseFloat(o).toFixed(d.precision):parseFloat(o);break;case"g":o=d.precision?String(Number(o.toPrecision(d.precision))):parseFloat(o);break;case"o":o=(parseInt(o,10)>>>0).toString(8);break;case"s":o=String(o),o=d.precision?o.substring(0,d.precision):o;break;case"t":o=String(!!o),o=d.precision?o.substring(0,d.precision):o;break;case"T":o=Object.prototype.toString.call(o).slice(8,-1).toLowerCase(),o=d.precision?o.substring(0,d.precision):o;break;case"u":o=parseInt(o,10)>>>0;break;case"v":o=o.valueOf(),o=d.precision?o.substring(0,d.precision):o;break;case"x":o=(parseInt(o,10)>>>0).toString(16);break;case"X":o=(parseInt(o,10)>>>0).toString(16).toUpperCase();break}t.json.test(d.type)?g+=o:(t.number.test(d.type)&&(!P||d.sign)?(f=P?"+":"-",o=o.toString().replace(t.sign,"")):f="",A=d.pad_char?d.pad_char==="0"?"0":d.pad_char.charAt(1):" ",k=d.width-(f+o).length,S=d.width&&k>0?A.repeat(k):"",g+=d.align?f+o+S:A==="0"?f+S+o:S+f+o)}return g}var s=Object.create(null);function a(c){if(s[c])return s[c];for(var u=c,l,h=[],o=0;u;){if((l=t.text.exec(u))!==null)h.push(l[0]);else if((l=t.modulo.exec(u))!==null)h.push("%");else if((l=t.placeholder.exec(u))!==null){if(l[2]){o|=1;var g=[],w=l[2],_=[];if((_=t.key.exec(w))!==null)for(g.push(_[1]);(w=w.substring(_[0].length))!=="";)if((_=t.key_access.exec(w))!==null)g.push(_[1]);else if((_=t.index_access.exec(w))!==null)g.push(_[1]);else throw new SyntaxError("[sprintf] failed to parse named argument key");else throw new SyntaxError("[sprintf] failed to parse named argument key");l[2]=g}else o|=2;if(o===3)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");h.push({placeholder:l[0],param_no:l[1],keys:l[2],sign:l[3],pad_char:l[4],align:l[5],width:l[6],precision:l[7],type:l[8]})}else throw new SyntaxError("[sprintf] unexpected placeholder");u=u.substring(l[0].length)}return s[c]=h}e.sprintf=r,e.vsprintf=n,typeof window<"u"&&(window.sprintf=r,window.vsprintf=n)})()}(H)),H}_e();var I,ie,O,ae;I={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1};ie=["(","?"];O={")":["("],":":["?","?:"]};ae=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;function be(e){for(var t=[],r=[],n,i,s,a;n=e.match(ae);){for(i=n[0],s=e.substr(0,n.index).trim(),s&&t.push(s);a=r.pop();){if(O[i]){if(O[i][0]===a){i=O[i][1]||i;break}}else if(ie.indexOf(a)>=0||I[a]<I[i]){r.push(a);break}t.push(a)}O[i]||r.push(i),e=e.substr(n.index+i.length)}return e=e.trim(),e&&t.push(e),t.concat(r.reverse())}var ve={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,r){if(e)throw t;return r}};function Ee(e,t){var r=[],n,i,s,a,c,u;for(n=0;n<e.length;n++){if(c=e[n],a=ve[c],a){for(i=a.length,s=Array(i);i--;)s[i]=r.pop();try{u=a.apply(null,s)}catch(l){return l}}else t.hasOwnProperty(c)?u=t[c]:u=+c;r.push(u)}return r[0]}function xe(e){var t=be(e);return function(r){return Ee(t,r)}}function Se(e){var t=xe(e);return function(r){return+t({n:r})}}var B={contextDelimiter:"",onMissingKey:null};function Ae(e){var t,r,n;for(t=e.split(";"),r=0;r<t.length;r++)if(n=t[r].trim(),n.indexOf("plural=")===0)return n.substr(7)}function N(e,t){var r;this.data=e,this.pluralForms={},this.options={};for(r in B)this.options[r]=t!==void 0&&r in t?t[r]:B[r]}N.prototype.getPluralForm=function(e,t){var r=this.pluralForms[e],n,i,s;return r||(n=this.data[e][""],s=n["Plural-Forms"]||n["plural-forms"]||n.plural_forms,typeof s!="function"&&(i=Ae(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),s=Se(i)),r=this.pluralForms[e]=s),r(t)};N.prototype.dcnpgettext=function(e,t,r,n,i){var s,a,c;return i===void 0?s=0:s=this.getPluralForm(e,i),a=r,t&&(a=t+this.options.contextDelimiter+r),c=this.data[e][a],c&&c[s]?c[s]:(this.options.onMissingKey&&this.options.onMissingKey(r,e),s===0?r:n)};const G={"":{plural_forms(e){return e===1?0:1}}},ke=/^i18n\.(n?gettext|has_translation)(_|$)/,Pe=(e,t,r)=>{const n=new N({}),i=new Set,s=()=>{i.forEach(f=>f())},a=f=>(i.add(f),()=>i.delete(f)),c=(f="default")=>n.data[f],u=(f,p="default")=>{n.data[p]={...n.data[p],...f},n.data[p][""]={...G[""],...n.data[p]?.[""]},delete n.pluralForms[p]},l=(f,p)=>{u(f,p),s()},h=(f,p="default")=>{n.data[p]={...n.data[p],...f,"":{...G[""],...n.data[p]?.[""],...f?.[""]}},delete n.pluralForms[p],s()},o=(f,p)=>{n.data={},n.pluralForms={},l(f,p)},g=(f="default",p,m,v,E)=>(n.data[f]||u(void 0,f),n.dcnpgettext(f,p,m,v,E)),w=(f="default")=>f,_=(f,p)=>{let m=g(p,void 0,f);return r?(m=r.applyFilters("i18n.gettext",m,f,p),r.applyFilters("i18n.gettext_"+w(p),m,f,p)):m},d=(f,p,m)=>{let v=g(m,p,f);return r?(v=r.applyFilters("i18n.gettext_with_context",v,f,p,m),r.applyFilters("i18n.gettext_with_context_"+w(m),v,f,p,m)):v},S=(f,p,m,v)=>{let E=g(v,void 0,f,p,m);return r?(E=r.applyFilters("i18n.ngettext",E,f,p,m,v),r.applyFilters("i18n.ngettext_"+w(v),E,f,p,m,v)):E},A=(f,p,m,v,E)=>{let R=g(E,v,f,p,m);return r?(R=r.applyFilters("i18n.ngettext_with_context",R,f,p,m,v,E),r.applyFilters("i18n.ngettext_with_context_"+w(E),R,f,p,m,v,E)):R},k=()=>d("ltr","text direction")==="rtl",P=(f,p,m)=>{const v=p?p+""+f:f;let E=!!n.data?.[m??"default"]?.[v];return r&&(E=r.applyFilters("i18n.has_translation",E,f,p,m),E=r.applyFilters("i18n.has_translation_"+w(m),E,f,p,m)),E};if(r){const f=p=>{ke.test(p)&&s()};r.addAction("hookAdded","core/i18n",f),r.addAction("hookRemoved","core/i18n",f)}return{getLocaleData:c,setLocaleData:l,addLocaleData:h,resetLocaleData:o,subscribe:a,__:_,_x:d,_n:S,_nx:A,isRTL:k,hasTranslation:P}};function oe(e){return typeof e!="string"||e===""?(console.error("The namespace must be a non-empty string."),!1):/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)?!0:(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)}function $(e){return typeof e!="string"||e===""?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)?!0:(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)}function J(e,t){return function(n,i,s,a=10){const c=e[t];if(!$(n)||!oe(i))return;if(typeof s!="function"){console.error("The hook callback must be a function.");return}if(typeof a!="number"){console.error("If specified, the hook priority must be a number.");return}const u={callback:s,priority:a,namespace:i};if(c[n]){const l=c[n].handlers;let h;for(h=l.length;h>0&&!(a>=l[h-1].priority);h--);h===l.length?l[h]=u:l.splice(h,0,u),c.__current.forEach(o=>{o.name===n&&o.currentIndex>=h&&o.currentIndex++})}else c[n]={handlers:[u],runs:0};n!=="hookAdded"&&e.doAction("hookAdded",n,i,s,a)}}function D(e,t,r=!1){return function(i,s){const a=e[t];if(!$(i)||!r&&!oe(s))return;if(!a[i])return 0;let c=0;if(r)c=a[i].handlers.length,a[i]={runs:a[i].runs,handlers:[]};else{const u=a[i].handlers;for(let l=u.length-1;l>=0;l--)u[l].namespace===s&&(u.splice(l,1),c++,a.__current.forEach(h=>{h.name===i&&h.currentIndex>=l&&h.currentIndex--}))}return i!=="hookRemoved"&&e.doAction("hookRemoved",i,s),c}}function Q(e,t){return function(n,i){const s=e[t];return typeof i<"u"?n in s&&s[n].handlers.some(a=>a.namespace===i):n in s}}function M(e,t,r,n){return function(s,...a){const c=e[t];c[s]||(c[s]={handlers:[],runs:0}),c[s].runs++;const u=c[s].handlers;if(!u||!u.length)return r?a[0]:void 0;const l={name:s,currentIndex:0};async function h(){try{c.__current.add(l);let g=r?a[0]:void 0;for(;l.currentIndex<u.length;)g=await u[l.currentIndex].callback.apply(null,a),r&&(a[0]=g),l.currentIndex++;return r?g:void 0}finally{c.__current.delete(l)}}function o(){try{c.__current.add(l);let g=r?a[0]:void 0;for(;l.currentIndex<u.length;)g=u[l.currentIndex].callback.apply(null,a),r&&(a[0]=g),l.currentIndex++;return r?g:void 0}finally{c.__current.delete(l)}}return(n?h:o)()}}function X(e,t){return function(){var n;const i=e[t];return(n=Array.from(i.__current).at(-1)?.name)!==null&&n!==void 0?n:null}}function V(e,t){return function(n){const i=e[t];return typeof n>"u"?i.__current.size>0:Array.from(i.__current).some(s=>s.name===n)}}function Z(e,t){return function(n){const i=e[t];if($(n))return i[n]&&i[n].runs?i[n].runs:0}}class Oe{constructor(){this.actions=Object.create(null),this.actions.__current=new Set,this.filters=Object.create(null),this.filters.__current=new Set,this.addAction=J(this,"actions"),this.addFilter=J(this,"filters"),this.removeAction=D(this,"actions"),this.removeFilter=D(this,"filters"),this.hasAction=Q(this,"actions"),this.hasFilter=Q(this,"filters"),this.removeAllActions=D(this,"actions",!0),this.removeAllFilters=D(this,"filters",!0),this.doAction=M(this,"actions",!1,!1),this.doActionAsync=M(this,"actions",!1,!0),this.applyFilters=M(this,"filters",!0,!1),this.applyFiltersAsync=M(this,"filters",!0,!0),this.currentAction=X(this,"actions"),this.currentFilter=X(this,"filters"),this.doingAction=V(this,"actions"),this.doingFilter=V(this,"filters"),this.didAction=Z(this,"actions"),this.didFilter=Z(this,"filters")}}function Te(){return new Oe}const Re=Te(),b=Pe(void 0,void 0,Re);b.getLocaleData.bind(b);b.setLocaleData.bind(b);b.resetLocaleData.bind(b);b.subscribe.bind(b);const F=b.__.bind(b);b._x.bind(b);b._n.bind(b);b._nx.bind(b);b.isRTL.bind(b);b.hasTranslation.bind(b);function De(e){const t=(r,n)=>{const{headers:i={}}=r;for(const s in i)if(s.toLowerCase()==="x-wp-nonce"&&i[s]===t.nonce)return n(r);return n({...r,headers:{...i,"X-WP-Nonce":t.nonce}})};return t.nonce=e,t}const ce=(e,t)=>{let r=e.path,n,i;return typeof e.namespace=="string"&&typeof e.endpoint=="string"&&(n=e.namespace.replace(/^\/|\/$/g,""),i=e.endpoint.replace(/^\//,""),i?r=n+"/"+i:r=n),delete e.namespace,delete e.endpoint,t({...e,path:r})},Me=e=>(t,r)=>ce(t,n=>{let i=n.url,s=n.path,a;return typeof s=="string"&&(a=e,e.indexOf("?")!==-1&&(s=s.replace("?","&")),s=s.replace(/^\//,""),typeof a=="string"&&a.indexOf("?")!==-1&&(s=s.replace("?","&")),i=a+s),r({...n,url:i})});function Le(e){let t;try{t=new URL(e,"http://example.com").search.substring(1)}catch{}if(t)return t}function le(e){let t="";const r=Object.entries(e);let n;for(;n=r.shift();){let[i,s]=n;if(Array.isArray(s)||s&&s.constructor===Object){const c=Object.entries(s).reverse();for(const[u,l]of c)r.unshift([`${i}[${u}]`,l])}else s!==void 0&&(s===null&&(s=""),t+="&"+[i,s].map(encodeURIComponent).join("="))}return t.substr(1)}function Fe(e){try{return decodeURIComponent(e)}catch{return e}}function Ce(e,t,r){const n=t.length,i=n-1;for(let s=0;s<n;s++){let a=t[s];!a&&Array.isArray(e)&&(a=e.length.toString()),a=["__proto__","constructor","prototype"].includes(a)?a.toUpperCase():a;const c=!isNaN(Number(t[s+1]));e[a]=s===i?r:e[a]||(c?[]:{}),Array.isArray(e[a])&&!c&&(e[a]={...e[a]}),e=e[a]}}function C(e){return(Le(e)||"").replace(/\+/g,"%20").split("&").reduce((t,r)=>{const[n,i=""]=r.split("=").filter(Boolean).map(Fe);if(n){const s=n.replace(/\]/g,"").split("[");Ce(t,s,i)}return t},Object.create(null))}function x(e="",t){if(!t||!Object.keys(t).length)return e;let r=e;const n=e.indexOf("?");return n!==-1&&(t=Object.assign(C(e),t),r=r.substr(0,n)),r+"?"+le(t)}function j(e,t){return C(e)[t]}function W(e,t){return j(e,t)!==void 0}function Y(e,...t){const r=e.indexOf("?");if(r===-1)return e;const n=C(e),i=e.substr(0,r);t.forEach(a=>delete n[a]);const s=le(n);return s?i+"?"+s:i}function ee(e){const t=e.split("?"),r=t[1],n=t[0];return r?n+"?"+r.split("&").map(i=>i.split("=")).map(i=>i.map(decodeURIComponent)).sort((i,s)=>i[0].localeCompare(s[0])).map(i=>i.map(encodeURIComponent)).map(i=>i.join("=")).join("&"):n}function He(e){const t=Object.fromEntries(Object.entries(e).map(([r,n])=>[ee(r),n]));return(r,n)=>{const{parse:i=!0}=r;let s=r.path;if(!s&&r.url){const{rest_route:u,...l}=C(r.url);typeof u=="string"&&(s=x(u,l))}if(typeof s!="string")return n(r);const a=r.method||"GET",c=ee(s);if(a==="GET"&&t[c]){const u=t[c];return delete t[c],te(u,!!i)}else if(a==="OPTIONS"&&t[a]&&t[a][c]){const u=t[a][c];return delete t[a][c],te(u,!!i)}return n(r)}}function te(e,t){return Promise.resolve(t?e.body:new window.Response(JSON.stringify(e.body),{status:200,statusText:"OK",headers:e.headers}))}const Ie=({path:e,url:t,...r},n)=>({...r,url:t&&x(t,n),path:e&&x(e,n)}),re=e=>e.json?e.json():Promise.reject(e),je=e=>{if(!e)return{};const t=e.match(/<([^>]+)>; rel="next"/);return t?{next:t[1]}:{}},ne=e=>{const{next:t}=je(e.headers.get("link"));return t},Ue=e=>{const t=!!e.path&&e.path.indexOf("per_page=-1")!==-1,r=!!e.url&&e.url.indexOf("per_page=-1")!==-1;return t||r},ue=async(e,t)=>{if(e.parse===!1||!Ue(e))return t(e);const r=await y({...Ie(e,{per_page:100}),parse:!1}),n=await re(r);if(!Array.isArray(n))return n;let i=ne(r);if(!i)return n;let s=[].concat(n);for(;i;){const a=await y({...e,path:void 0,url:i,parse:!1}),c=await re(a);s=s.concat(c),i=ne(a)}return s},Ne=new Set(["PATCH","PUT","DELETE"]),$e="GET",ze=(e,t)=>{const{method:r=$e}=e;return Ne.has(r.toUpperCase())&&(e={...e,headers:{...e.headers,"X-HTTP-Method-Override":r,"Content-Type":"application/json"},method:"POST"}),t(e)},qe=(e,t)=>(typeof e.url=="string"&&!W(e.url,"_locale")&&(e.url=x(e.url,{_locale:"user"})),typeof e.path=="string"&&!W(e.path,"_locale")&&(e.path=x(e.path,{_locale:"user"})),t(e)),Ke=(e,t=!0)=>t?e.status===204?null:e.json?e.json():Promise.reject(e):e,Be=e=>{const t={code:"invalid_json",message:F("The response is not a valid JSON response.")};if(!e||!e.json)throw t;return e.json().catch(()=>{throw t})},de=(e,t=!0)=>Promise.resolve(Ke(e,t)).catch(r=>z(r,t));function z(e,t=!0){if(!t)throw e;return Be(e).then(r=>{const n={code:"unknown_error",message:F("An unknown error occurred.")};throw r||n})}function Ge(e){const t=!!e.method&&e.method==="POST";return(!!e.path&&e.path.indexOf("/wp/v2/media")!==-1||!!e.url&&e.url.indexOf("/wp/v2/media")!==-1)&&t}const Je=(e,t)=>{if(!Ge(e))return t(e);let r=0;const n=5,i=s=>(r++,t({path:`/wp/v2/media/${s}/post-process`,method:"POST",data:{action:"create-image-subsizes"},parse:!1}).catch(()=>r<n?i(s):(t({path:`/wp/v2/media/${s}?force=true`,method:"DELETE"}),Promise.reject())));return t({...e,parse:!1}).catch(s=>{if(!s.headers)return Promise.reject(s);const a=s.headers.get("x-wp-upload-attachment-id");return s.status>=500&&s.status<600&&a?i(a).catch(()=>e.parse!==!1?Promise.reject({code:"post_process",message:F("Media upload failed. If this is a photo or a large image, please scale it down and try again.")}):Promise.reject(s)):z(s,e.parse)}).then(s=>de(s,e.parse))},Qe=e=>(t,r)=>{if(typeof t.url=="string"){const n=j(t.url,"wp_theme_preview");n===void 0?t.url=x(t.url,{wp_theme_preview:e}):n===""&&(t.url=Y(t.url,"wp_theme_preview"))}if(typeof t.path=="string"){const n=j(t.path,"wp_theme_preview");n===void 0?t.path=x(t.path,{wp_theme_preview:e}):n===""&&(t.path=Y(t.path,"wp_theme_preview"))}return r(t)},Xe={Accept:"application/json, */*;q=0.1"},Ve={credentials:"include"},fe=[qe,ce,ze,ue];function Ze(e){fe.unshift(e)}const pe=e=>{if(e.status>=200&&e.status<300)return e;throw e},We=e=>{const{url:t,path:r,data:n,parse:i=!0,...s}=e;let{body:a,headers:c}=e;return c={...Xe,...c},n&&(a=JSON.stringify(n),c["Content-Type"]="application/json"),window.fetch(t||r||window.location.href,{...Ve,...s,body:a,headers:c}).then(l=>Promise.resolve(l).then(pe).catch(h=>z(h,i)).then(h=>de(h,i)),l=>{throw l&&l.name==="AbortError"?l:{code:"fetch_error",message:F("You are probably offline.")}})};let he=We;function Ye(e){he=e}function y(e){return fe.reduceRight((r,n)=>i=>n(i,r),he)(e).catch(r=>r.code!=="rest_cookie_invalid_nonce"?Promise.reject(r):window.fetch(y.nonceEndpoint).then(pe).then(n=>n.text()).then(n=>(y.nonceMiddleware.nonce=n,y(e))))}y.use=Ze;y.setFetchHandler=Ye;y.createNonceMiddleware=De;y.createPreloadingMiddleware=He;y.createRootURLMiddleware=Me;y.fetchAllMiddleware=ue;y.mediaUploadMiddleware=Je;y.createThemePreviewMiddleware=Qe;const et="0.1.0",L="?";function U(e,t,r,n){const i={filename:e,function:t==="<anonymous>"?L:t,in_app:!0};return r!==void 0&&(i.lineno=r),n!==void 0&&(i.colno=n),i}const tt=/^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i,rt=/^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,nt=/\((\S*)(?::(\d+))(?::(\d+))\)/,st=e=>{const t=tt.exec(e);if(t){const[,n,i,s]=t;return U(n,L,+i,+s)}const r=rt.exec(e);if(r){if(r[2]&&r[2].indexOf("eval")===0){const a=nt.exec(r[2]);a&&(r[2]=a[1],r[3]=a[2],r[4]=a[3])}const i=r[1]||L,s=r[2];return U(s,i,r[3]?+r[3]:void 0,r[4]?+r[4]:void 0)}},it=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i,at=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,ot=e=>{const t=it.exec(e);if(t){if(t[3]&&t[3].indexOf(" > eval")>-1){const s=at.exec(t[3]);s&&(t[1]=t[1]||"eval",t[3]=s[1],t[4]=s[2],t[5]="")}const n=t[3],i=t[1]||L;return U(n,i,t[4]?+t[4]:void 0,t[5]?+t[5]:void 0)}},se=50,ct=[st,ot],lt=e=>{const t=e.stacktrace||e.stack||"",r=[],n=t.split(` +`);for(let s=0;s<n.length;s++){const a=n[s];if(!(a.length>1024)&&!a.match(/\S*Error: /)){for(const c of ct){const u=c(a);if(u){r.push(u);break}}if(r.length>=se)break}}const i=Array.from(r).reverse();return i.slice(0,se).map(s=>({...s,filename:s.filename||i[i.length-1].filename}))},ut=e=>{const t=e?.message;return t?typeof t.error?.message=="string"?t.error.message:t:"No error message"},dt=e=>{const t={type:e?.name,message:ut(e)},r=lt(e);return r.length&&(t.stacktrace=r),t.type===void 0&&t.message===""&&(t.message="Unknown error"),t},ft=(e,{context:t,tags:r}={})=>({...dt(e),context:{...t},tags:{...r,gutenberg_kit_version:et}});function kt(){window.editorDelegate&&window.editorDelegate.onEditorLoaded(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorLoaded",body:{}})}function Pt(){window.editorDelegate&&window.editorDelegate.onEditorContentChanged(),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorContentChanged"})}function Ot(e,t){window.editorDelegate&&window.editorDelegate.onEditorHistoryChanged(e,t),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorHistoryChanged",body:{hasUndo:e,hasRedo:t}})}function Tt(e){window.editorDelegate&&window.editorDelegate.openMediaLibrary(JSON.stringify(e)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"openMediaLibrary",body:e})}function T(){if(window.GBKit)return window.GBKit;if(window.editorDelegate)try{return JSON.parse(window.editorDelegate.getEditorConfiguration())}catch{return{}}try{return JSON.parse(localStorage.getItem("GBKit"))||{}}catch{return{}}}function pt(){const{post:e}=T();return e?{id:e.id,type:e.type||"post",status:e.status,title:{raw:decodeURIComponent(e.title)},content:{raw:decodeURIComponent(e.content)}}:{id:-1,type:"post",status:"auto-draft",title:{raw:""},content:{raw:""}}}function Rt(e,{context:t,tags:r,isHandled:n,handledBy:i}={context:{},tags:{},isHandled:!1,handledBy:"Unknown"}){const s={...ft(e,{context:t,tags:r}),isHandled:n,handledBy:i};window.editorDelegate&&window.editorDelegate.onEditorExceptionLogged(JSON.stringify(s)),window.webkit&&window.webkit.messageHandlers.editorDelegate.postMessage({message:"onEditorExceptionLogged",body:s})}function ht(){const{siteApiRoot:e="",authHeader:t}=T();y.use(y.createRootURLMiddleware(e)),y.use(wt),y.use(gt),y.use(mt(t)),y.use(yt),y.use(_t),y.use(y.createPreloadingMiddleware({"/wp/v2/types?context=view":{body:{post:{description:"",hierarchical:!1,has_archive:!1,name:"Posts",slug:"post",taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}},page:{description:"",hierarchical:!0,has_archive:!1,name:"Pages",slug:"page",taxonomies:[],rest_base:"pages",rest_namespace:"wp/v2",template:[],template_lock:!1,_links:{}}}},"/wp/v2/types/post?context=edit":{body:{name:"Posts",slug:"post",supports:{title:!0,editor:!0,author:!0,thumbnail:!0,excerpt:!0,trackbacks:!0,"custom-fields":!0,comments:!0,revisions:!0,"post-formats":!0,autosave:!0},taxonomies:["category","post_tag"],rest_base:"posts",rest_namespace:"wp/v2",template:[],template_lock:!1}}}))}function wt(e,t){return e.mode="cors",delete e.headers["x-wp-api-fetch-from-editor"],t(e)}function gt(e,t){const{siteApiNamespace:r}=T();return e.path&&r&&!e.path.includes(r)&&(e.path=e.path.replace(/^(?<apiPath>\/?(?:[\w.-]+\/){2})/,`$<apiPath>${r}/`)),t(e)}function mt(e){return(t,r)=>(t.headers=t.headers||{},e&&(t.headers.Authorization=e),r(t))}function yt(e,t){return[/^\/wp\/v2\/posts\/-?\d+/,/^\/wp\/v2\/pages\/-?\d+/].some(i=>i.test(e.path))?Promise.resolve([]):t(e)}function _t(e,t){return e.path&&e.path.startsWith("/wp/v2/media")&&e.method==="POST"&&e.body instanceof FormData&&e.body.get("post")==="-1"&&e.body.delete("post"),t(e)}window.GBKit=T();window.wp=window.wp||{};window.wp.apiFetch=y;ht();bt();async function bt(){try{const{themeStyles:e,hideTitle:t,siteURL:r}=T(),{styles:n,scripts:i}=await y({url:`${r}/wp-json/__experimental/wp-block-editor/v1/editor-assets`});await vt([...n,...i].join(""));const{dispatch:s}=window.wp.data,{store:a}=window.wp.editor,{store:c}=window.wp.preferences;y({path:"/wp-block-editor/v1/settings"}).then(d=>{s(a).updateEditorSettings(d)}).catch(()=>{const d={defaultEditorStyles:[{css:we}]};s(a).updateEditorSettings(d)});const u=s(c);u.setDefaults("core",{fixedToolbar:!0}),u.setDefaults("core/edit-post",{themeStyles:e});const l=pt(),{default:h}=await ye(async()=>{const{default:d}=await import("./index-BzYJLdTZ.js");return{default:d}},__vite__mapDeps([0,1]),import.meta.url),{createRoot:o,createElement:g,StrictMode:w}=window.wp.element,{registerCoreBlocks:_}=window.wp.blockLibrary;_(),o(document.getElementById("root")).render(g(w,null,g(h,{post:l,hideTitle:t})))}catch{window.location.href="index.html?error=remote_editor_load_error"}}async function vt(e){const t=new window.DOMParser().parseFromString(e,"text/html"),r=Array.from(t.querySelectorAll('link[rel="stylesheet"],script')).filter(n=>n.id&&!xt.test(n.src));for(const n of r)await St(n)}const Et=["api-fetch"],xt=new RegExp(Et.flatMap(e=>[`wp-content/plugins/gutenberg/build/${e.replace(/\\/g,"\\\\").replace(/\//g,"\\/")}\\b`,`wp-includes/js/dist/${e.replace(/\\/g,"\\\\").replace(/\//g,"\\/")}\\b`]).join("|"));function St(e){return new Promise(t=>{const r=document.createElement(e.nodeName);["id","rel","src","href","type"].forEach(n=>{e[n]&&(r[n]=e[n])}),e.innerHTML&&r.appendChild(document.createTextNode(e.innerHTML)),r.onload=()=>t(!0),r.onerror=()=>{t(!1)},document.body.appendChild(r),(r.nodeName.toLowerCase()==="link"||r.nodeName.toLowerCase()==="script"&&!r.src)&&t()})}export{Tt as a,Pt as b,kt as e,Rt as l,Ot as o}; diff --git a/ios/Sources/GutenbergKit/Gutenberg/index.html b/ios/Sources/GutenbergKit/Gutenberg/index.html index 57d030ef..8ce01d98 100644 --- a/ios/Sources/GutenbergKit/Gutenberg/index.html +++ b/ios/Sources/GutenbergKit/Gutenberg/index.html @@ -7,7 +7,7 @@ content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>Gutenberg</title> - <script type="module" crossorigin src="./assets/index-B5TqVEgG.js"></script> + <script type="module" crossorigin src="./assets/index-BMmsRBi8.js"></script> <link rel="stylesheet" crossorigin href="./assets/index-D8B9VPyX.css"> </head> <body class="gutenberg-kit"> diff --git a/ios/Sources/GutenbergKit/Gutenberg/remote.html b/ios/Sources/GutenbergKit/Gutenberg/remote.html index 795933ec..211cfe13 100644 --- a/ios/Sources/GutenbergKit/Gutenberg/remote.html +++ b/ios/Sources/GutenbergKit/Gutenberg/remote.html @@ -7,7 +7,7 @@ content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>Gutenberg</title> - <script type="module" crossorigin src="./assets/remote-CSkotQ-G.js"></script> + <script type="module" crossorigin src="./assets/remote-DPWJk5ym.js"></script> <link rel="stylesheet" crossorigin href="./assets/remote-Dr0bnDmT.css"> </head> <body class="gutenberg-kit">